blob: 141e33004a7605c31fcdd7814f5e0fdc767d3e08 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * \file drm_stub.h
3 * Stub support
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 */
7
8/*
9 * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
10 *
11 * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
12 * All Rights Reserved.
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a
15 * copy of this software and associated documentation files (the "Software"),
16 * to deal in the Software without restriction, including without limitation
17 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 * and/or sell copies of the Software, and to permit persons to whom the
19 * Software is furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice (including the next
22 * paragraph) shall be included in all copies or substantial portions of the
23 * Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 * DEALINGS IN THE SOFTWARE.
32 */
33
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include "drmP.h"
37#include "drm_core.h"
38
Dave Airlieb5e89ed2005-09-25 14:28:13 +100039unsigned int drm_debug = 0; /* 1 to enable debug output */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040EXPORT_SYMBOL(drm_debug);
41
Dave Airlieb5e89ed2005-09-25 14:28:13 +100042MODULE_AUTHOR(CORE_AUTHOR);
43MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_LICENSE("GPL and additional rights");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045MODULE_PARM_DESC(debug, "Enable debug output");
46
Dave Jonesc0758142005-10-03 15:02:20 -040047module_param_named(debug, drm_debug, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Dave Airlie2c14f282008-04-21 16:47:32 +100049struct idr drm_minors_idr;
50
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080051struct class *drm_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct proc_dir_entry *drm_proc_root;
53
Dave Airlie2c14f282008-04-21 16:47:32 +100054static int drm_minor_get_id(struct drm_device *dev, int type)
55{
56 int new_id;
57 int ret;
58 int base = 0, limit = 63;
59
60again:
61 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
62 DRM_ERROR("Out of memory expanding drawable idr\n");
63 return -ENOMEM;
64 }
65 mutex_lock(&dev->struct_mutex);
66 ret = idr_get_new_above(&drm_minors_idr, NULL,
67 base, &new_id);
68 mutex_unlock(&dev->struct_mutex);
69 if (ret == -EAGAIN) {
70 goto again;
71 } else if (ret) {
72 return ret;
73 }
74
75 if (new_id >= limit) {
76 idr_remove(&drm_minors_idr, new_id);
77 return -EINVAL;
78 }
79 return new_id;
80}
81
Dave Airlie84b1fd12007-07-11 15:53:27 +100082static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +100083 const struct pci_device_id *ent,
84 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 int retcode;
87
Dave Airliebd1b3312007-05-26 05:01:51 +100088 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +100089 INIT_LIST_HEAD(&dev->ctxlist);
90 INIT_LIST_HEAD(&dev->vmalist);
91 INIT_LIST_HEAD(&dev->maplist);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 spin_lock_init(&dev->count_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100094 spin_lock_init(&dev->drw_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=8163e412006-10-24 23:30:01 +100095 spin_lock_init(&dev->tasklet_lock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +110096 spin_lock_init(&dev->lock.spinlock);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +110098 mutex_init(&dev->struct_mutex);
99 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Dave Airlie45ea5dcd2007-07-17 14:20:07 +1000101 idr_init(&dev->drw_idr);
102
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000103 dev->pdev = pdev;
Eric Anholt2f02cc32006-09-22 04:19:34 +1000104 dev->pci_device = pdev->device;
105 dev->pci_vendor = pdev->vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000108 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000111 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000112 return -ENOMEM;
113 }
Dave Airlie836cf042005-07-10 19:27:04 +1000114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /* the DRM has 6 basic counters */
116 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000117 dev->types[0] = _DRM_STAT_LOCK;
118 dev->types[1] = _DRM_STAT_OPENS;
119 dev->types[2] = _DRM_STAT_CLOSES;
120 dev->types[3] = _DRM_STAT_IOCTLS;
121 dev->types[4] = _DRM_STAT_LOCKS;
122 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +1000127 if (drm_device_is_agp(dev))
128 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000129 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
130 && (dev->agp == NULL)) {
131 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 retcode = -EINVAL;
133 goto error_out_unreg;
134 }
135 if (drm_core_has_MTRR(dev)) {
136 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000137 dev->agp->agp_mtrr =
138 mtrr_add(dev->agp->agp_info.aper_base,
139 dev->agp->agp_info.aper_size *
140 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 }
143
Dave Airlie2716a022007-11-22 18:23:13 +1000144 if (dev->driver->load)
145 if ((retcode = dev->driver->load(dev, ent->driver_data)))
146 goto error_out_unreg;
147
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000148 retcode = drm_ctxbitmap_init(dev);
149 if (retcode) {
150 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 goto error_out_unreg;
152 }
153
Eric Anholt673a3942008-07-30 12:06:12 -0700154 if (driver->driver_features & DRIVER_GEM) {
155 retcode = drm_gem_init(dev);
156 if (retcode) {
157 DRM_ERROR("Cannot initialize graphics execution "
158 "manager (GEM)\n");
159 goto error_out_unreg;
160 }
161 }
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000164
165 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100166 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return retcode;
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/**
172 * Get a secondary minor number.
173 *
174 * \param dev device data structure
175 * \param sec-minor structure to hold the assigned minor
176 * \return negative number on failure.
177 *
178 * Search an empty entry and initialize it to the given parameters, and
179 * create the proc init entry via proc_init(). This routines assigns
180 * minor numbers to secondary heads of multi-headed cards
181 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000182static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Dave Airlie2c14f282008-04-21 16:47:32 +1000184 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000186 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 DRM_DEBUG("\n");
189
Dave Airlie2c14f282008-04-21 16:47:32 +1000190 minor_id = drm_minor_get_id(dev, type);
191 if (minor_id < 0)
192 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000193
Dave Airlie2c14f282008-04-21 16:47:32 +1000194 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
195 if (!new_minor) {
196 ret = -ENOMEM;
197 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000199
200 new_minor->type = type;
201 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
202 new_minor->dev = dev;
203 new_minor->index = minor_id;
204
205 idr_replace(&drm_minors_idr, new_minor, minor_id);
206
207 if (type == DRM_MINOR_LEGACY) {
208 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
209 if (ret) {
210 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
211 goto err_mem;
212 }
213 } else
214 new_minor->dev_root = NULL;
215
216 ret = drm_sysfs_device_add(new_minor);
217 if (ret) {
218 printk(KERN_ERR
219 "DRM: Error sysfs_device_add.\n");
220 goto err_g2;
221 }
222 *minor = new_minor;
223
224 DRM_DEBUG("new minor assigned %d\n", minor_id);
225 return 0;
226
227
228err_g2:
229 if (new_minor->type == DRM_MINOR_LEGACY)
230 drm_proc_cleanup(new_minor, drm_proc_root);
231err_mem:
232 kfree(new_minor);
233err_idr:
234 idr_remove(&drm_minors_idr, minor_id);
235 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return ret;
237}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238
Dave Airliec94f7022005-07-07 21:03:38 +1000239/**
240 * Register.
241 *
242 * \param pdev - PCI device structure
243 * \param ent entry from the PCI ID table with device type flags
244 * \return zero on success or a negative number on failure.
245 *
246 * Attempt to gets inter module "drm" information. If we are first
247 * then register the character device and inter module information.
248 * Try and register, if we fail to register, backout previous work.
249 */
250int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000251 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000252{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000253 struct drm_device *dev;
Dave Airliec94f7022005-07-07 21:03:38 +1000254 int ret;
255
256 DRM_DEBUG("\n");
257
258 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
259 if (!dev)
260 return -ENOMEM;
261
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100262 ret = pci_enable_device(pdev);
263 if (ret)
264 goto err_g1;
Dave Airliec94f7022005-07-07 21:03:38 +1000265
Dave Airlie19a8f59a2008-02-07 14:48:32 +1000266 pci_set_master(pdev);
Dave Airliec94f7022005-07-07 21:03:38 +1000267 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
268 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100269 goto err_g2;
Dave Airliec94f7022005-07-07 21:03:38 +1000270 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000271 if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100272 goto err_g2;
Dave Airliebc5f4522007-11-05 12:50:58 +1000273
Dave Airlie22eae942005-11-10 22:16:34 +1100274 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
275 driver->name, driver->major, driver->minor, driver->patchlevel,
Dave Airlie2c14f282008-04-21 16:47:32 +1000276 driver->date, dev->primary->index);
Dave Airliec94f7022005-07-07 21:03:38 +1000277
278 return 0;
279
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100280err_g2:
281 pci_disable_device(pdev);
282err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000283 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
284 return ret;
285}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/**
288 * Put a device minor number.
289 *
290 * \param dev device data structure
291 * \return always zero
292 *
293 * Cleans up the proc resources. If it is the last minor then release the foreign
294 * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
295 * unregisters the character device.
296 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000297int drm_put_dev(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
300
301 if (dev->unique) {
302 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
303 dev->unique = NULL;
304 dev->unique_len = 0;
305 }
306 if (dev->devname) {
307 drm_free(dev->devname, strlen(dev->devname) + 1,
308 DRM_MEM_DRIVER);
309 dev->devname = NULL;
310 }
311 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
312 return 0;
313}
314
315/**
316 * Put a secondary minor number.
317 *
318 * \param sec_minor - structure to be released
319 * \return always zero
320 *
321 * Cleans up the proc resources. Not legal for this to be the
322 * last minor released.
323 *
324 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000325int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Dave Airlie2c14f282008-04-21 16:47:32 +1000327 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700328
Dave Airlie2c14f282008-04-21 16:47:32 +1000329 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000330
Dave Airlie2c14f282008-04-21 16:47:32 +1000331 if (minor->type == DRM_MINOR_LEGACY)
332 drm_proc_cleanup(minor, drm_proc_root);
333 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000334
Dave Airlie2c14f282008-04-21 16:47:32 +1000335 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336
Dave Airlie2c14f282008-04-21 16:47:32 +1000337 kfree(minor);
338 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return 0;
340}