blob: 6d7b083c5b776d482d3b0a21f60a43adebd8f66d [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "drmP.h"
38#include "drm_core.h"
39
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040unsigned int drm_debug = 0; /* 1 to enable debug output */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041EXPORT_SYMBOL(drm_debug);
42
Mario Kleiner27641c32010-10-23 04:20:23 +020043unsigned int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */
44EXPORT_SYMBOL(drm_vblank_offdelay);
45
46unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */
47EXPORT_SYMBOL(drm_timestamp_precision);
48
Dave Airlieb5e89ed2005-09-25 14:28:13 +100049MODULE_AUTHOR(CORE_AUTHOR);
50MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_LICENSE("GPL and additional rights");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_PARM_DESC(debug, "Enable debug output");
Mario Kleiner27641c32010-10-23 04:20:23 +020053MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
54MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Dave Jonesc0758142005-10-03 15:02:20 -040056module_param_named(debug, drm_debug, int, 0600);
Mario Kleiner27641c32010-10-23 04:20:23 +020057module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
58module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Dave Airlie2c14f282008-04-21 16:47:32 +100060struct idr drm_minors_idr;
61
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080062struct class *drm_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063struct proc_dir_entry *drm_proc_root;
Ben Gamari955b12d2009-02-17 20:08:49 -050064struct dentry *drm_debugfs_root;
Joe Perches5ad3d882011-04-17 20:35:51 -070065
66int drm_err(const char *func, const char *format, ...)
67{
68 struct va_format vaf;
69 va_list args;
70 int r;
71
72 va_start(args, format);
73
74 vaf.fmt = format;
75 vaf.va = &args;
76
77 r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
78
79 va_end(args);
80
81 return r;
82}
83EXPORT_SYMBOL(drm_err);
84
yakui_zhao4fefcb22009-06-02 14:09:47 +080085void drm_ut_debug_printk(unsigned int request_level,
86 const char *prefix,
87 const char *function_name,
88 const char *format, ...)
89{
90 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
yakui_zhao4fefcb22009-06-02 14:09:47 +080092 if (drm_debug & request_level) {
93 if (function_name)
94 printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
95 va_start(args, format);
96 vprintk(format, args);
97 va_end(args);
98 }
99}
100EXPORT_SYMBOL(drm_ut_debug_printk);
Joe Perches5ad3d882011-04-17 20:35:51 -0700101
Dave Airlie2c14f282008-04-21 16:47:32 +1000102static int drm_minor_get_id(struct drm_device *dev, int type)
103{
104 int new_id;
105 int ret;
106 int base = 0, limit = 63;
107
Dave Airlief453ba02008-11-07 14:05:41 -0800108 if (type == DRM_MINOR_CONTROL) {
109 base += 64;
110 limit = base + 127;
111 } else if (type == DRM_MINOR_RENDER) {
112 base += 128;
113 limit = base + 255;
114 }
115
Dave Airlie2c14f282008-04-21 16:47:32 +1000116again:
117 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
118 DRM_ERROR("Out of memory expanding drawable idr\n");
119 return -ENOMEM;
120 }
121 mutex_lock(&dev->struct_mutex);
122 ret = idr_get_new_above(&drm_minors_idr, NULL,
123 base, &new_id);
124 mutex_unlock(&dev->struct_mutex);
125 if (ret == -EAGAIN) {
126 goto again;
127 } else if (ret) {
128 return ret;
129 }
130
131 if (new_id >= limit) {
132 idr_remove(&drm_minors_idr, new_id);
133 return -EINVAL;
134 }
135 return new_id;
136}
137
Dave Airlie7c1c2872008-11-28 14:22:24 +1000138struct drm_master *drm_master_create(struct drm_minor *minor)
139{
140 struct drm_master *master;
141
Eric Anholt9a298b22009-03-24 12:23:04 -0700142 master = kzalloc(sizeof(*master), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000143 if (!master)
144 return NULL;
145
146 kref_init(&master->refcount);
147 spin_lock_init(&master->lock.spinlock);
148 init_waitqueue_head(&master->lock.lock_queue);
149 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
150 INIT_LIST_HEAD(&master->magicfree);
151 master->minor = minor;
152
153 list_add_tail(&master->head, &minor->master_list);
154
155 return master;
156}
157
158struct drm_master *drm_master_get(struct drm_master *master)
159{
160 kref_get(&master->refcount);
161 return master;
162}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100163EXPORT_SYMBOL(drm_master_get);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000164
165static void drm_master_destroy(struct kref *kref)
166{
167 struct drm_master *master = container_of(kref, struct drm_master, refcount);
168 struct drm_magic_entry *pt, *next;
169 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000170 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000171
172 list_del(&master->head);
173
174 if (dev->driver->master_destroy)
175 dev->driver->master_destroy(dev, master);
176
Dave Airliec1ff85d2009-01-19 17:17:58 +1000177 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
178 if (r_list->master == master) {
179 drm_rmmap_locked(dev, r_list->map);
180 r_list = NULL;
181 }
182 }
183
Dave Airlie7c1c2872008-11-28 14:22:24 +1000184 if (master->unique) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700185 kfree(master->unique);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000186 master->unique = NULL;
187 master->unique_len = 0;
188 }
189
Chris Wilson6e350232010-07-24 18:29:36 +0100190 kfree(dev->devname);
191 dev->devname = NULL;
192
Dave Airlie7c1c2872008-11-28 14:22:24 +1000193 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
194 list_del(&pt->head);
195 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
Eric Anholt9a298b22009-03-24 12:23:04 -0700196 kfree(pt);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000197 }
198
199 drm_ht_remove(&master->magiclist);
200
Eric Anholt9a298b22009-03-24 12:23:04 -0700201 kfree(master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000202}
203
204void drm_master_put(struct drm_master **master)
205{
206 kref_put(&(*master)->refcount, drm_master_destroy);
207 *master = NULL;
208}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100209EXPORT_SYMBOL(drm_master_put);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000210
211int drm_setmaster_ioctl(struct drm_device *dev, void *data,
212 struct drm_file *file_priv)
213{
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000214 int ret = 0;
215
Jonas Bonn6b008422009-04-16 09:00:02 +0200216 if (file_priv->is_master)
217 return 0;
218
Dave Airlie7c1c2872008-11-28 14:22:24 +1000219 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
220 return -EINVAL;
221
222 if (!file_priv->master)
223 return -EINVAL;
224
225 if (!file_priv->minor->master &&
226 file_priv->minor->master != file_priv->master) {
227 mutex_lock(&dev->struct_mutex);
228 file_priv->minor->master = drm_master_get(file_priv->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200229 file_priv->is_master = 1;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000230 if (dev->driver->master_set) {
231 ret = dev->driver->master_set(dev, file_priv, false);
232 if (unlikely(ret != 0)) {
233 file_priv->is_master = 0;
234 drm_master_put(&file_priv->minor->master);
235 }
236 }
Helge Bahmann5ad8b7d2009-03-04 21:49:14 +1000237 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000238 }
239
240 return 0;
241}
242
243int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
244 struct drm_file *file_priv)
245{
Jonas Bonn6b008422009-04-16 09:00:02 +0200246 if (!file_priv->is_master)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000247 return -EINVAL;
Jonas Bonn6b008422009-04-16 09:00:02 +0200248
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000249 if (!file_priv->minor->master)
250 return -EINVAL;
251
Dave Airlie7c1c2872008-11-28 14:22:24 +1000252 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000253 if (dev->driver->master_drop)
254 dev->driver->master_drop(dev, file_priv, false);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000255 drm_master_put(&file_priv->minor->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200256 file_priv->is_master = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000257 mutex_unlock(&dev->struct_mutex);
258 return 0;
259}
260
Jordan Crousedcdb1672010-05-27 13:40:25 -0600261int drm_fill_in_dev(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000262 const struct pci_device_id *ent,
263 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int retcode;
266
Dave Airliebd1b3312007-05-26 05:01:51 +1000267 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000268 INIT_LIST_HEAD(&dev->ctxlist);
269 INIT_LIST_HEAD(&dev->vmalist);
270 INIT_LIST_HEAD(&dev->maplist);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000271 INIT_LIST_HEAD(&dev->vblank_event_list);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 spin_lock_init(&dev->count_lock);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000274 spin_lock_init(&dev->event_lock);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100275 mutex_init(&dev->struct_mutex);
276 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000278 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000279 return -ENOMEM;
280 }
Dave Airlie836cf042005-07-10 19:27:04 +1000281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* the DRM has 6 basic counters */
283 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284 dev->types[0] = _DRM_STAT_LOCK;
285 dev->types[1] = _DRM_STAT_OPENS;
286 dev->types[2] = _DRM_STAT_CLOSES;
287 dev->types[3] = _DRM_STAT_IOCTLS;
288 dev->types[4] = _DRM_STAT_LOCKS;
289 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000292
Dave Airlie8410ea32010-12-15 03:16:38 +1000293 if (dev->driver->bus->agp_init) {
294 retcode = dev->driver->bus->agp_init(dev);
295 if (retcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 goto error_out_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Dave Airlie2716a022007-11-22 18:23:13 +1000299
Dave Airlie8410ea32010-12-15 03:16:38 +1000300
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000301 retcode = drm_ctxbitmap_init(dev);
302 if (retcode) {
303 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 goto error_out_unreg;
305 }
306
Eric Anholt673a3942008-07-30 12:06:12 -0700307 if (driver->driver_features & DRIVER_GEM) {
308 retcode = drm_gem_init(dev);
309 if (retcode) {
310 DRM_ERROR("Cannot initialize graphics execution "
311 "manager (GEM)\n");
312 goto error_out_unreg;
313 }
314 }
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000317
318 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100319 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return retcode;
321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/**
325 * Get a secondary minor number.
326 *
327 * \param dev device data structure
328 * \param sec-minor structure to hold the assigned minor
329 * \return negative number on failure.
330 *
331 * Search an empty entry and initialize it to the given parameters, and
332 * create the proc init entry via proc_init(). This routines assigns
333 * minor numbers to secondary heads of multi-headed cards
334 */
Jordan Crousedcdb1672010-05-27 13:40:25 -0600335int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Dave Airlie2c14f282008-04-21 16:47:32 +1000337 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000339 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 DRM_DEBUG("\n");
342
Dave Airlie2c14f282008-04-21 16:47:32 +1000343 minor_id = drm_minor_get_id(dev, type);
344 if (minor_id < 0)
345 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346
Dave Airlie2c14f282008-04-21 16:47:32 +1000347 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
348 if (!new_minor) {
349 ret = -ENOMEM;
350 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000352
353 new_minor->type = type;
354 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
355 new_minor->dev = dev;
356 new_minor->index = minor_id;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000357 INIT_LIST_HEAD(&new_minor->master_list);
Dave Airlie2c14f282008-04-21 16:47:32 +1000358
359 idr_replace(&drm_minors_idr, new_minor, minor_id);
360
361 if (type == DRM_MINOR_LEGACY) {
362 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
363 if (ret) {
364 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
365 goto err_mem;
366 }
367 } else
Ben Gamari955b12d2009-02-17 20:08:49 -0500368 new_minor->proc_root = NULL;
369
370#if defined(CONFIG_DEBUG_FS)
371 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
372 if (ret) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900373 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
Ben Gamari955b12d2009-02-17 20:08:49 -0500374 goto err_g2;
375 }
376#endif
Dave Airlie2c14f282008-04-21 16:47:32 +1000377
378 ret = drm_sysfs_device_add(new_minor);
379 if (ret) {
380 printk(KERN_ERR
381 "DRM: Error sysfs_device_add.\n");
382 goto err_g2;
383 }
384 *minor = new_minor;
385
386 DRM_DEBUG("new minor assigned %d\n", minor_id);
387 return 0;
388
389
390err_g2:
391 if (new_minor->type == DRM_MINOR_LEGACY)
392 drm_proc_cleanup(new_minor, drm_proc_root);
393err_mem:
394 kfree(new_minor);
395err_idr:
396 idr_remove(&drm_minors_idr, minor_id);
397 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return ret;
399}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000400
Dave Airliec94f7022005-07-07 21:03:38 +1000401/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * Put a secondary minor number.
403 *
404 * \param sec_minor - structure to be released
405 * \return always zero
406 *
407 * Cleans up the proc resources. Not legal for this to be the
408 * last minor released.
409 *
410 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000411int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Dave Airlie2c14f282008-04-21 16:47:32 +1000413 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700414
Dave Airlie2c14f282008-04-21 16:47:32 +1000415 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000416
Dave Airlie2c14f282008-04-21 16:47:32 +1000417 if (minor->type == DRM_MINOR_LEGACY)
418 drm_proc_cleanup(minor, drm_proc_root);
Ben Gamari955b12d2009-02-17 20:08:49 -0500419#if defined(CONFIG_DEBUG_FS)
420 drm_debugfs_cleanup(minor);
421#endif
422
Dave Airlie2c14f282008-04-21 16:47:32 +1000423 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000424
Dave Airlie2c14f282008-04-21 16:47:32 +1000425 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000426
Dave Airlie2c14f282008-04-21 16:47:32 +1000427 kfree(minor);
428 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 0;
430}
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500431
432/**
433 * Called via drm_exit() at module unload time or when pci device is
434 * unplugged.
435 *
436 * Cleans up all DRM device, calling drm_lastclose().
437 *
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500438 */
439void drm_put_dev(struct drm_device *dev)
440{
Julia Lawallecca0682009-07-11 09:50:09 +0200441 struct drm_driver *driver;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500442 struct drm_map_list *r_list, *list_temp;
443
444 DRM_DEBUG("\n");
445
446 if (!dev) {
447 DRM_ERROR("cleanup called no dev\n");
448 return;
449 }
Julia Lawallecca0682009-07-11 09:50:09 +0200450 driver = dev->driver;
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500451
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500452 drm_lastclose(dev);
453
454 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
455 dev->agp && dev->agp->agp_mtrr >= 0) {
456 int retval;
457 retval = mtrr_del(dev->agp->agp_mtrr,
458 dev->agp->agp_info.aper_base,
459 dev->agp->agp_info.aper_size * 1024 * 1024);
460 DRM_DEBUG("mtrr_del=%d\n", retval);
461 }
462
463 if (dev->driver->unload)
464 dev->driver->unload(dev);
465
466 if (drm_core_has_AGP(dev) && dev->agp) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700467 kfree(dev->agp);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500468 dev->agp = NULL;
469 }
470
Jesse Barnesb78315f2010-03-26 11:07:16 -0700471 drm_vblank_cleanup(dev);
472
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500473 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
474 drm_rmmap(dev, r_list->map);
Ben Skeggs30ddbd92009-03-02 11:13:04 +1000475 drm_ht_remove(&dev->map_hash);
476
477 drm_ctxbitmap_cleanup(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500478
479 if (drm_core_check_feature(dev, DRIVER_MODESET))
480 drm_put_minor(&dev->control);
481
482 if (driver->driver_features & DRIVER_GEM)
483 drm_gem_destroy(dev);
484
485 drm_put_minor(&dev->primary);
486
Dave Airliea250b9f2010-12-15 07:13:55 +1000487 list_del(&dev->driver_item);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500488 if (dev->devname) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700489 kfree(dev->devname);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500490 dev->devname = NULL;
491 }
Eric Anholt9a298b22009-03-24 12:23:04 -0700492 kfree(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500493}
494EXPORT_SYMBOL(drm_put_dev);