blob: 1b3e0ff57b45392df76051d4a7cf260280a9aace [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;
Ben Gamari955b12d2009-02-17 20:08:49 -050053struct dentry *drm_debugfs_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dave Airlie2c14f282008-04-21 16:47:32 +100055static int drm_minor_get_id(struct drm_device *dev, int type)
56{
57 int new_id;
58 int ret;
59 int base = 0, limit = 63;
60
Dave Airlief453ba02008-11-07 14:05:41 -080061 if (type == DRM_MINOR_CONTROL) {
62 base += 64;
63 limit = base + 127;
64 } else if (type == DRM_MINOR_RENDER) {
65 base += 128;
66 limit = base + 255;
67 }
68
Dave Airlie2c14f282008-04-21 16:47:32 +100069again:
70 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
71 DRM_ERROR("Out of memory expanding drawable idr\n");
72 return -ENOMEM;
73 }
74 mutex_lock(&dev->struct_mutex);
75 ret = idr_get_new_above(&drm_minors_idr, NULL,
76 base, &new_id);
77 mutex_unlock(&dev->struct_mutex);
78 if (ret == -EAGAIN) {
79 goto again;
80 } else if (ret) {
81 return ret;
82 }
83
84 if (new_id >= limit) {
85 idr_remove(&drm_minors_idr, new_id);
86 return -EINVAL;
87 }
88 return new_id;
89}
90
Dave Airlie7c1c2872008-11-28 14:22:24 +100091struct drm_master *drm_master_create(struct drm_minor *minor)
92{
93 struct drm_master *master;
94
95 master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER);
96 if (!master)
97 return NULL;
98
99 kref_init(&master->refcount);
100 spin_lock_init(&master->lock.spinlock);
101 init_waitqueue_head(&master->lock.lock_queue);
102 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
103 INIT_LIST_HEAD(&master->magicfree);
104 master->minor = minor;
105
106 list_add_tail(&master->head, &minor->master_list);
107
108 return master;
109}
110
111struct drm_master *drm_master_get(struct drm_master *master)
112{
113 kref_get(&master->refcount);
114 return master;
115}
116
117static void drm_master_destroy(struct kref *kref)
118{
119 struct drm_master *master = container_of(kref, struct drm_master, refcount);
120 struct drm_magic_entry *pt, *next;
121 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000122 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000123
124 list_del(&master->head);
125
126 if (dev->driver->master_destroy)
127 dev->driver->master_destroy(dev, master);
128
Dave Airliec1ff85d2009-01-19 17:17:58 +1000129 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
130 if (r_list->master == master) {
131 drm_rmmap_locked(dev, r_list->map);
132 r_list = NULL;
133 }
134 }
135
Dave Airlie7c1c2872008-11-28 14:22:24 +1000136 if (master->unique) {
Vegard Nossum1147c9c2008-12-02 13:38:47 +1000137 drm_free(master->unique, master->unique_size, DRM_MEM_DRIVER);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000138 master->unique = NULL;
139 master->unique_len = 0;
140 }
141
142 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
143 list_del(&pt->head);
144 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
145 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
146 }
147
148 drm_ht_remove(&master->magiclist);
149
Dave Airlie7c1c2872008-11-28 14:22:24 +1000150 drm_free(master, sizeof(*master), DRM_MEM_DRIVER);
151}
152
153void drm_master_put(struct drm_master **master)
154{
155 kref_put(&(*master)->refcount, drm_master_destroy);
156 *master = NULL;
157}
158
159int drm_setmaster_ioctl(struct drm_device *dev, void *data,
160 struct drm_file *file_priv)
161{
Jonas Bonn6b008422009-04-16 09:00:02 +0200162 if (file_priv->is_master)
163 return 0;
164
Dave Airlie7c1c2872008-11-28 14:22:24 +1000165 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
166 return -EINVAL;
167
168 if (!file_priv->master)
169 return -EINVAL;
170
171 if (!file_priv->minor->master &&
172 file_priv->minor->master != file_priv->master) {
173 mutex_lock(&dev->struct_mutex);
174 file_priv->minor->master = drm_master_get(file_priv->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200175 file_priv->is_master = 1;
Helge Bahmann5ad8b7d2009-03-04 21:49:14 +1000176 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000177 }
178
179 return 0;
180}
181
182int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
183 struct drm_file *file_priv)
184{
Jonas Bonn6b008422009-04-16 09:00:02 +0200185 if (!file_priv->is_master)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000186 return -EINVAL;
Jonas Bonn6b008422009-04-16 09:00:02 +0200187
Dave Airlie7c1c2872008-11-28 14:22:24 +1000188 mutex_lock(&dev->struct_mutex);
189 drm_master_put(&file_priv->minor->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200190 file_priv->is_master = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000191 mutex_unlock(&dev->struct_mutex);
192 return 0;
193}
194
Dave Airlie84b1fd12007-07-11 15:53:27 +1000195static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000196 const struct pci_device_id *ent,
197 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 int retcode;
200
Dave Airliebd1b3312007-05-26 05:01:51 +1000201 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000202 INIT_LIST_HEAD(&dev->ctxlist);
203 INIT_LIST_HEAD(&dev->vmalist);
204 INIT_LIST_HEAD(&dev->maplist);
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 spin_lock_init(&dev->count_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000207 spin_lock_init(&dev->drw_lock);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000208 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100209 mutex_init(&dev->struct_mutex);
210 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Dave Airlie45ea5dcd2007-07-17 14:20:07 +1000212 idr_init(&dev->drw_idr);
213
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000214 dev->pdev = pdev;
Eric Anholt2f02cc32006-09-22 04:19:34 +1000215 dev->pci_device = pdev->device;
216 dev->pci_vendor = pdev->vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000219 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000222 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000223 return -ENOMEM;
224 }
Dave Airlie836cf042005-07-10 19:27:04 +1000225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* the DRM has 6 basic counters */
227 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000228 dev->types[0] = _DRM_STAT_LOCK;
229 dev->types[1] = _DRM_STAT_OPENS;
230 dev->types[2] = _DRM_STAT_CLOSES;
231 dev->types[3] = _DRM_STAT_IOCTLS;
232 dev->types[4] = _DRM_STAT_LOCKS;
233 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +1000238 if (drm_device_is_agp(dev))
239 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000240 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
241 && (dev->agp == NULL)) {
242 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 retcode = -EINVAL;
244 goto error_out_unreg;
245 }
246 if (drm_core_has_MTRR(dev)) {
247 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248 dev->agp->agp_mtrr =
249 mtrr_add(dev->agp->agp_info.aper_base,
250 dev->agp->agp_info.aper_size *
251 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 }
254
Dave Airlie2716a022007-11-22 18:23:13 +1000255
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256 retcode = drm_ctxbitmap_init(dev);
257 if (retcode) {
258 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 goto error_out_unreg;
260 }
261
Eric Anholt673a3942008-07-30 12:06:12 -0700262 if (driver->driver_features & DRIVER_GEM) {
263 retcode = drm_gem_init(dev);
264 if (retcode) {
265 DRM_ERROR("Cannot initialize graphics execution "
266 "manager (GEM)\n");
267 goto error_out_unreg;
268 }
269 }
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000272
273 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100274 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return retcode;
276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/**
280 * Get a secondary minor number.
281 *
282 * \param dev device data structure
283 * \param sec-minor structure to hold the assigned minor
284 * \return negative number on failure.
285 *
286 * Search an empty entry and initialize it to the given parameters, and
287 * create the proc init entry via proc_init(). This routines assigns
288 * minor numbers to secondary heads of multi-headed cards
289 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000290static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Dave Airlie2c14f282008-04-21 16:47:32 +1000292 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000294 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 DRM_DEBUG("\n");
297
Dave Airlie2c14f282008-04-21 16:47:32 +1000298 minor_id = drm_minor_get_id(dev, type);
299 if (minor_id < 0)
300 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000301
Dave Airlie2c14f282008-04-21 16:47:32 +1000302 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
303 if (!new_minor) {
304 ret = -ENOMEM;
305 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000307
308 new_minor->type = type;
309 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
310 new_minor->dev = dev;
311 new_minor->index = minor_id;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000312 INIT_LIST_HEAD(&new_minor->master_list);
Dave Airlie2c14f282008-04-21 16:47:32 +1000313
314 idr_replace(&drm_minors_idr, new_minor, minor_id);
315
316 if (type == DRM_MINOR_LEGACY) {
317 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
318 if (ret) {
319 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
320 goto err_mem;
321 }
322 } else
Ben Gamari955b12d2009-02-17 20:08:49 -0500323 new_minor->proc_root = NULL;
324
325#if defined(CONFIG_DEBUG_FS)
326 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
327 if (ret) {
328 DRM_ERROR("DRM: Failed to initialize /debugfs/dri.\n");
329 goto err_g2;
330 }
331#endif
Dave Airlie2c14f282008-04-21 16:47:32 +1000332
333 ret = drm_sysfs_device_add(new_minor);
334 if (ret) {
335 printk(KERN_ERR
336 "DRM: Error sysfs_device_add.\n");
337 goto err_g2;
338 }
339 *minor = new_minor;
340
341 DRM_DEBUG("new minor assigned %d\n", minor_id);
342 return 0;
343
344
345err_g2:
346 if (new_minor->type == DRM_MINOR_LEGACY)
347 drm_proc_cleanup(new_minor, drm_proc_root);
348err_mem:
349 kfree(new_minor);
350err_idr:
351 idr_remove(&drm_minors_idr, minor_id);
352 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return ret;
354}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000355
Dave Airliec94f7022005-07-07 21:03:38 +1000356/**
357 * Register.
358 *
359 * \param pdev - PCI device structure
360 * \param ent entry from the PCI ID table with device type flags
361 * \return zero on success or a negative number on failure.
362 *
363 * Attempt to gets inter module "drm" information. If we are first
364 * then register the character device and inter module information.
365 * Try and register, if we fail to register, backout previous work.
366 */
367int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000368 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000369{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000370 struct drm_device *dev;
Dave Airliec94f7022005-07-07 21:03:38 +1000371 int ret;
372
373 DRM_DEBUG("\n");
374
375 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
376 if (!dev)
377 return -ENOMEM;
378
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100379 ret = pci_enable_device(pdev);
380 if (ret)
381 goto err_g1;
Dave Airliec94f7022005-07-07 21:03:38 +1000382
Dave Airlie19a8f59a2008-02-07 14:48:32 +1000383 pci_set_master(pdev);
Dave Airliec94f7022005-07-07 21:03:38 +1000384 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
385 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100386 goto err_g2;
Dave Airliec94f7022005-07-07 21:03:38 +1000387 }
Dave Airliebc5f4522007-11-05 12:50:58 +1000388
Dave Airlief453ba02008-11-07 14:05:41 -0800389 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500390 pci_set_drvdata(pdev, dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800391 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
392 if (ret)
393 goto err_g2;
394 }
395
396 if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
397 goto err_g3;
398
399 if (dev->driver->load) {
400 ret = dev->driver->load(dev, ent->driver_data);
401 if (ret)
Dave Airliea9d51a52008-12-07 12:02:21 +1000402 goto err_g3;
Dave Airlief453ba02008-11-07 14:05:41 -0800403 }
404
405 /* setup the grouping for the legacy output */
406 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
407 ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
408 if (ret)
409 goto err_g3;
410 }
Dave Airliea9d51a52008-12-07 12:02:21 +1000411
Dave Airliee7f7ab42008-11-28 13:43:47 +1000412 list_add_tail(&dev->driver_item, &driver->device_list);
413
Benjamin Herrenschmidtcd00f952009-02-06 16:46:27 +1100414 DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
Dave Airlie22eae942005-11-10 22:16:34 +1100415 driver->name, driver->major, driver->minor, driver->patchlevel,
Benjamin Herrenschmidtcd00f952009-02-06 16:46:27 +1100416 driver->date, pci_name(pdev), dev->primary->index);
Dave Airliec94f7022005-07-07 21:03:38 +1000417
418 return 0;
419
Dave Airliea9d51a52008-12-07 12:02:21 +1000420err_g3:
421 drm_put_minor(&dev->primary);
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100422err_g2:
423 pci_disable_device(pdev);
424err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000425 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
426 return ret;
427}
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500428EXPORT_SYMBOL(drm_get_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430/**
431 * Put a secondary minor number.
432 *
433 * \param sec_minor - structure to be released
434 * \return always zero
435 *
436 * Cleans up the proc resources. Not legal for this to be the
437 * last minor released.
438 *
439 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000440int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Dave Airlie2c14f282008-04-21 16:47:32 +1000442 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700443
Dave Airlie2c14f282008-04-21 16:47:32 +1000444 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000445
Dave Airlie2c14f282008-04-21 16:47:32 +1000446 if (minor->type == DRM_MINOR_LEGACY)
447 drm_proc_cleanup(minor, drm_proc_root);
Ben Gamari955b12d2009-02-17 20:08:49 -0500448#if defined(CONFIG_DEBUG_FS)
449 drm_debugfs_cleanup(minor);
450#endif
451
Dave Airlie2c14f282008-04-21 16:47:32 +1000452 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000453
Dave Airlie2c14f282008-04-21 16:47:32 +1000454 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000455
Dave Airlie2c14f282008-04-21 16:47:32 +1000456 kfree(minor);
457 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return 0;
459}
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500460
461/**
462 * Called via drm_exit() at module unload time or when pci device is
463 * unplugged.
464 *
465 * Cleans up all DRM device, calling drm_lastclose().
466 *
467 * \sa drm_init
468 */
469void drm_put_dev(struct drm_device *dev)
470{
471 struct drm_driver *driver = dev->driver;
472 struct drm_map_list *r_list, *list_temp;
473
474 DRM_DEBUG("\n");
475
476 if (!dev) {
477 DRM_ERROR("cleanup called no dev\n");
478 return;
479 }
480
481 drm_vblank_cleanup(dev);
482
483 drm_lastclose(dev);
484
485 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
486 dev->agp && dev->agp->agp_mtrr >= 0) {
487 int retval;
488 retval = mtrr_del(dev->agp->agp_mtrr,
489 dev->agp->agp_info.aper_base,
490 dev->agp->agp_info.aper_size * 1024 * 1024);
491 DRM_DEBUG("mtrr_del=%d\n", retval);
492 }
493
494 if (dev->driver->unload)
495 dev->driver->unload(dev);
496
497 if (drm_core_has_AGP(dev) && dev->agp) {
498 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
499 dev->agp = NULL;
500 }
501
502 drm_ht_remove(&dev->map_hash);
503 drm_ctxbitmap_cleanup(dev);
504
505 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
506 drm_rmmap(dev, r_list->map);
507
508 if (drm_core_check_feature(dev, DRIVER_MODESET))
509 drm_put_minor(&dev->control);
510
511 if (driver->driver_features & DRIVER_GEM)
512 drm_gem_destroy(dev);
513
514 drm_put_minor(&dev->primary);
515
516 if (dev->devname) {
517 drm_free(dev->devname, strlen(dev->devname) + 1,
518 DRM_MEM_DRIVER);
519 dev->devname = NULL;
520 }
521 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
522}
523EXPORT_SYMBOL(drm_put_dev);