blob: 46bb923b097c39ad6fef2c37f29e59ae0c648f42 [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
Dave Airlief453ba02008-11-07 14:05:41 -080060 if (type == DRM_MINOR_CONTROL) {
61 base += 64;
62 limit = base + 127;
63 } else if (type == DRM_MINOR_RENDER) {
64 base += 128;
65 limit = base + 255;
66 }
67
Dave Airlie2c14f282008-04-21 16:47:32 +100068again:
69 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
70 DRM_ERROR("Out of memory expanding drawable idr\n");
71 return -ENOMEM;
72 }
73 mutex_lock(&dev->struct_mutex);
74 ret = idr_get_new_above(&drm_minors_idr, NULL,
75 base, &new_id);
76 mutex_unlock(&dev->struct_mutex);
77 if (ret == -EAGAIN) {
78 goto again;
79 } else if (ret) {
80 return ret;
81 }
82
83 if (new_id >= limit) {
84 idr_remove(&drm_minors_idr, new_id);
85 return -EINVAL;
86 }
87 return new_id;
88}
89
Dave Airlie7c1c2872008-11-28 14:22:24 +100090struct drm_master *drm_master_create(struct drm_minor *minor)
91{
92 struct drm_master *master;
93
94 master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER);
95 if (!master)
96 return NULL;
97
98 kref_init(&master->refcount);
99 spin_lock_init(&master->lock.spinlock);
100 init_waitqueue_head(&master->lock.lock_queue);
101 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
102 INIT_LIST_HEAD(&master->magicfree);
103 master->minor = minor;
104
105 list_add_tail(&master->head, &minor->master_list);
106
107 return master;
108}
109
110struct drm_master *drm_master_get(struct drm_master *master)
111{
112 kref_get(&master->refcount);
113 return master;
114}
115
116static void drm_master_destroy(struct kref *kref)
117{
118 struct drm_master *master = container_of(kref, struct drm_master, refcount);
119 struct drm_magic_entry *pt, *next;
120 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000121 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000122
123 list_del(&master->head);
124
125 if (dev->driver->master_destroy)
126 dev->driver->master_destroy(dev, master);
127
Dave Airliec1ff85d2009-01-19 17:17:58 +1000128 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
129 if (r_list->master == master) {
130 drm_rmmap_locked(dev, r_list->map);
131 r_list = NULL;
132 }
133 }
134
Dave Airlie7c1c2872008-11-28 14:22:24 +1000135 if (master->unique) {
Vegard Nossum1147c9c2008-12-02 13:38:47 +1000136 drm_free(master->unique, master->unique_size, DRM_MEM_DRIVER);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000137 master->unique = NULL;
138 master->unique_len = 0;
139 }
140
141 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
142 list_del(&pt->head);
143 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
144 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
145 }
146
147 drm_ht_remove(&master->magiclist);
148
149 if (master->lock.hw_lock) {
150 if (dev->sigdata.lock == master->lock.hw_lock)
151 dev->sigdata.lock = NULL;
152 master->lock.hw_lock = NULL;
153 master->lock.file_priv = NULL;
154 wake_up_interruptible(&master->lock.lock_queue);
155 }
156
157 drm_free(master, sizeof(*master), DRM_MEM_DRIVER);
158}
159
160void drm_master_put(struct drm_master **master)
161{
162 kref_put(&(*master)->refcount, drm_master_destroy);
163 *master = NULL;
164}
165
166int drm_setmaster_ioctl(struct drm_device *dev, void *data,
167 struct drm_file *file_priv)
168{
169 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
170 return -EINVAL;
171
172 if (!file_priv->master)
173 return -EINVAL;
174
175 if (!file_priv->minor->master &&
176 file_priv->minor->master != file_priv->master) {
177 mutex_lock(&dev->struct_mutex);
178 file_priv->minor->master = drm_master_get(file_priv->master);
179 mutex_lock(&dev->struct_mutex);
180 }
181
182 return 0;
183}
184
185int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
186 struct drm_file *file_priv)
187{
188 if (!file_priv->master)
189 return -EINVAL;
190 mutex_lock(&dev->struct_mutex);
191 drm_master_put(&file_priv->minor->master);
192 mutex_unlock(&dev->struct_mutex);
193 return 0;
194}
195
Dave Airlie84b1fd12007-07-11 15:53:27 +1000196static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000197 const struct pci_device_id *ent,
198 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 int retcode;
201
Dave Airliebd1b3312007-05-26 05:01:51 +1000202 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000203 INIT_LIST_HEAD(&dev->ctxlist);
204 INIT_LIST_HEAD(&dev->vmalist);
205 INIT_LIST_HEAD(&dev->maplist);
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 spin_lock_init(&dev->count_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000208 spin_lock_init(&dev->drw_lock);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100210 mutex_init(&dev->struct_mutex);
211 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Dave Airlie45ea5dcd2007-07-17 14:20:07 +1000213 idr_init(&dev->drw_idr);
214
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 dev->pdev = pdev;
Eric Anholt2f02cc32006-09-22 04:19:34 +1000216 dev->pci_device = pdev->device;
217 dev->pci_vendor = pdev->vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000220 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000223 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000224 return -ENOMEM;
225 }
Dave Airlie836cf042005-07-10 19:27:04 +1000226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* the DRM has 6 basic counters */
228 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 dev->types[0] = _DRM_STAT_LOCK;
230 dev->types[1] = _DRM_STAT_OPENS;
231 dev->types[2] = _DRM_STAT_CLOSES;
232 dev->types[3] = _DRM_STAT_IOCTLS;
233 dev->types[4] = _DRM_STAT_LOCKS;
234 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +1000239 if (drm_device_is_agp(dev))
240 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000241 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
242 && (dev->agp == NULL)) {
243 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 retcode = -EINVAL;
245 goto error_out_unreg;
246 }
247 if (drm_core_has_MTRR(dev)) {
248 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000249 dev->agp->agp_mtrr =
250 mtrr_add(dev->agp->agp_info.aper_base,
251 dev->agp->agp_info.aper_size *
252 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 }
255
Dave Airlie2716a022007-11-22 18:23:13 +1000256
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000257 retcode = drm_ctxbitmap_init(dev);
258 if (retcode) {
259 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto error_out_unreg;
261 }
262
Eric Anholt673a3942008-07-30 12:06:12 -0700263 if (driver->driver_features & DRIVER_GEM) {
264 retcode = drm_gem_init(dev);
265 if (retcode) {
266 DRM_ERROR("Cannot initialize graphics execution "
267 "manager (GEM)\n");
268 goto error_out_unreg;
269 }
270 }
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000273
274 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100275 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return retcode;
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/**
281 * Get a secondary minor number.
282 *
283 * \param dev device data structure
284 * \param sec-minor structure to hold the assigned minor
285 * \return negative number on failure.
286 *
287 * Search an empty entry and initialize it to the given parameters, and
288 * create the proc init entry via proc_init(). This routines assigns
289 * minor numbers to secondary heads of multi-headed cards
290 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000291static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Dave Airlie2c14f282008-04-21 16:47:32 +1000293 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000295 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 DRM_DEBUG("\n");
298
Dave Airlie2c14f282008-04-21 16:47:32 +1000299 minor_id = drm_minor_get_id(dev, type);
300 if (minor_id < 0)
301 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302
Dave Airlie2c14f282008-04-21 16:47:32 +1000303 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
304 if (!new_minor) {
305 ret = -ENOMEM;
306 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000308
309 new_minor->type = type;
310 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
311 new_minor->dev = dev;
312 new_minor->index = minor_id;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000313 INIT_LIST_HEAD(&new_minor->master_list);
Dave Airlie2c14f282008-04-21 16:47:32 +1000314
315 idr_replace(&drm_minors_idr, new_minor, minor_id);
316
317 if (type == DRM_MINOR_LEGACY) {
318 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
319 if (ret) {
320 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
321 goto err_mem;
322 }
323 } else
324 new_minor->dev_root = NULL;
325
326 ret = drm_sysfs_device_add(new_minor);
327 if (ret) {
328 printk(KERN_ERR
329 "DRM: Error sysfs_device_add.\n");
330 goto err_g2;
331 }
332 *minor = new_minor;
333
334 DRM_DEBUG("new minor assigned %d\n", minor_id);
335 return 0;
336
337
338err_g2:
339 if (new_minor->type == DRM_MINOR_LEGACY)
340 drm_proc_cleanup(new_minor, drm_proc_root);
341err_mem:
342 kfree(new_minor);
343err_idr:
344 idr_remove(&drm_minors_idr, minor_id);
345 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return ret;
347}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348
Dave Airliec94f7022005-07-07 21:03:38 +1000349/**
350 * Register.
351 *
352 * \param pdev - PCI device structure
353 * \param ent entry from the PCI ID table with device type flags
354 * \return zero on success or a negative number on failure.
355 *
356 * Attempt to gets inter module "drm" information. If we are first
357 * then register the character device and inter module information.
358 * Try and register, if we fail to register, backout previous work.
359 */
360int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000361 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000362{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000363 struct drm_device *dev;
Dave Airliec94f7022005-07-07 21:03:38 +1000364 int ret;
365
366 DRM_DEBUG("\n");
367
368 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
369 if (!dev)
370 return -ENOMEM;
371
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100372 ret = pci_enable_device(pdev);
373 if (ret)
374 goto err_g1;
Dave Airliec94f7022005-07-07 21:03:38 +1000375
Dave Airlie19a8f59a2008-02-07 14:48:32 +1000376 pci_set_master(pdev);
Dave Airliec94f7022005-07-07 21:03:38 +1000377 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
378 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100379 goto err_g2;
Dave Airliec94f7022005-07-07 21:03:38 +1000380 }
Dave Airliebc5f4522007-11-05 12:50:58 +1000381
Dave Airlief453ba02008-11-07 14:05:41 -0800382 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
383 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
384 if (ret)
385 goto err_g2;
386 }
387
388 if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
389 goto err_g3;
390
391 if (dev->driver->load) {
392 ret = dev->driver->load(dev, ent->driver_data);
393 if (ret)
Dave Airliea9d51a52008-12-07 12:02:21 +1000394 goto err_g3;
Dave Airlief453ba02008-11-07 14:05:41 -0800395 }
396
397 /* setup the grouping for the legacy output */
398 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
399 ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
400 if (ret)
401 goto err_g3;
402 }
Dave Airliea9d51a52008-12-07 12:02:21 +1000403
Dave Airliee7f7ab42008-11-28 13:43:47 +1000404 list_add_tail(&dev->driver_item, &driver->device_list);
405
Dave Airlie22eae942005-11-10 22:16:34 +1100406 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
407 driver->name, driver->major, driver->minor, driver->patchlevel,
Dave Airlie2c14f282008-04-21 16:47:32 +1000408 driver->date, dev->primary->index);
Dave Airliec94f7022005-07-07 21:03:38 +1000409
410 return 0;
411
Dave Airliea9d51a52008-12-07 12:02:21 +1000412err_g3:
413 drm_put_minor(&dev->primary);
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100414err_g2:
415 pci_disable_device(pdev);
416err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000417 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
418 return ret;
419}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/**
422 * Put a device minor number.
423 *
424 * \param dev device data structure
425 * \return always zero
426 *
427 * Cleans up the proc resources. If it is the last minor then release the foreign
428 * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
429 * unregisters the character device.
430 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000431int drm_put_dev(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (dev->devname) {
436 drm_free(dev->devname, strlen(dev->devname) + 1,
437 DRM_MEM_DRIVER);
438 dev->devname = NULL;
439 }
440 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
441 return 0;
442}
443
444/**
445 * Put a secondary minor number.
446 *
447 * \param sec_minor - structure to be released
448 * \return always zero
449 *
450 * Cleans up the proc resources. Not legal for this to be the
451 * last minor released.
452 *
453 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000454int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Dave Airlie2c14f282008-04-21 16:47:32 +1000456 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700457
Dave Airlie2c14f282008-04-21 16:47:32 +1000458 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000459
Dave Airlie2c14f282008-04-21 16:47:32 +1000460 if (minor->type == DRM_MINOR_LEGACY)
461 drm_proc_cleanup(minor, drm_proc_root);
462 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000463
Dave Airlie2c14f282008-04-21 16:47:32 +1000464 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000465
Dave Airlie2c14f282008-04-21 16:47:32 +1000466 kfree(minor);
467 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}