blob: 327ca19cda855e1d44e3bcc2aca30f6f68eed0a3 [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>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
38#include <drm/drm_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
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
Imre Deakc61eef72012-10-23 18:53:26 +000049/*
50 * Default to use monotonic timestamps for wait-for-vblank and page-flip
51 * complete events.
52 */
53unsigned int drm_timestamp_monotonic = 1;
54
Dave Airlieb5e89ed2005-09-25 14:28:13 +100055MODULE_AUTHOR(CORE_AUTHOR);
56MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_LICENSE("GPL and additional rights");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_PARM_DESC(debug, "Enable debug output");
Mario Kleiner27641c32010-10-23 04:20:23 +020059MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
60MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
Imre Deakc61eef72012-10-23 18:53:26 +000061MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Dave Jonesc0758142005-10-03 15:02:20 -040063module_param_named(debug, drm_debug, int, 0600);
Mario Kleiner27641c32010-10-23 04:20:23 +020064module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
65module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
Imre Deakc61eef72012-10-23 18:53:26 +000066module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Dave Airlie2c14f282008-04-21 16:47:32 +100068struct idr drm_minors_idr;
69
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080070struct class *drm_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct proc_dir_entry *drm_proc_root;
Ben Gamari955b12d2009-02-17 20:08:49 -050072struct dentry *drm_debugfs_root;
Joe Perches5ad3d882011-04-17 20:35:51 -070073
74int drm_err(const char *func, const char *format, ...)
75{
76 struct va_format vaf;
77 va_list args;
78 int r;
79
80 va_start(args, format);
81
82 vaf.fmt = format;
83 vaf.va = &args;
84
85 r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
86
87 va_end(args);
88
89 return r;
90}
91EXPORT_SYMBOL(drm_err);
92
yakui_zhao4fefcb22009-06-02 14:09:47 +080093void drm_ut_debug_printk(unsigned int request_level,
94 const char *prefix,
95 const char *function_name,
96 const char *format, ...)
97{
98 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
yakui_zhao4fefcb22009-06-02 14:09:47 +0800100 if (drm_debug & request_level) {
101 if (function_name)
102 printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
103 va_start(args, format);
104 vprintk(format, args);
105 va_end(args);
106 }
107}
108EXPORT_SYMBOL(drm_ut_debug_printk);
Joe Perches5ad3d882011-04-17 20:35:51 -0700109
Dave Airlie2c14f282008-04-21 16:47:32 +1000110static int drm_minor_get_id(struct drm_device *dev, int type)
111{
Dave Airlie2c14f282008-04-21 16:47:32 +1000112 int ret;
113 int base = 0, limit = 63;
114
Dave Airlief453ba02008-11-07 14:05:41 -0800115 if (type == DRM_MINOR_CONTROL) {
116 base += 64;
117 limit = base + 127;
118 } else if (type == DRM_MINOR_RENDER) {
119 base += 128;
120 limit = base + 255;
121 }
122
Dave Airlie2c14f282008-04-21 16:47:32 +1000123 mutex_lock(&dev->struct_mutex);
Tejun Heo2e928812013-02-27 17:04:08 -0800124 ret = idr_alloc(&drm_minors_idr, NULL, base, limit, GFP_KERNEL);
Dave Airlie2c14f282008-04-21 16:47:32 +1000125 mutex_unlock(&dev->struct_mutex);
Dave Airlie2c14f282008-04-21 16:47:32 +1000126
Tejun Heo2e928812013-02-27 17:04:08 -0800127 return ret == -ENOSPC ? -EINVAL : ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000128}
129
Dave Airlie7c1c2872008-11-28 14:22:24 +1000130struct drm_master *drm_master_create(struct drm_minor *minor)
131{
132 struct drm_master *master;
133
Eric Anholt9a298b22009-03-24 12:23:04 -0700134 master = kzalloc(sizeof(*master), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000135 if (!master)
136 return NULL;
137
138 kref_init(&master->refcount);
139 spin_lock_init(&master->lock.spinlock);
140 init_waitqueue_head(&master->lock.lock_queue);
141 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
142 INIT_LIST_HEAD(&master->magicfree);
143 master->minor = minor;
144
145 list_add_tail(&master->head, &minor->master_list);
146
147 return master;
148}
149
150struct drm_master *drm_master_get(struct drm_master *master)
151{
152 kref_get(&master->refcount);
153 return master;
154}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100155EXPORT_SYMBOL(drm_master_get);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000156
157static void drm_master_destroy(struct kref *kref)
158{
159 struct drm_master *master = container_of(kref, struct drm_master, refcount);
160 struct drm_magic_entry *pt, *next;
161 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000162 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000163
164 list_del(&master->head);
165
166 if (dev->driver->master_destroy)
167 dev->driver->master_destroy(dev, master);
168
Dave Airliec1ff85d2009-01-19 17:17:58 +1000169 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
170 if (r_list->master == master) {
171 drm_rmmap_locked(dev, r_list->map);
172 r_list = NULL;
173 }
174 }
175
Dave Airlie7c1c2872008-11-28 14:22:24 +1000176 if (master->unique) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700177 kfree(master->unique);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000178 master->unique = NULL;
179 master->unique_len = 0;
180 }
181
Chris Wilson6e350232010-07-24 18:29:36 +0100182 kfree(dev->devname);
183 dev->devname = NULL;
184
Dave Airlie7c1c2872008-11-28 14:22:24 +1000185 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
186 list_del(&pt->head);
187 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
Eric Anholt9a298b22009-03-24 12:23:04 -0700188 kfree(pt);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000189 }
190
191 drm_ht_remove(&master->magiclist);
192
Eric Anholt9a298b22009-03-24 12:23:04 -0700193 kfree(master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000194}
195
196void drm_master_put(struct drm_master **master)
197{
198 kref_put(&(*master)->refcount, drm_master_destroy);
199 *master = NULL;
200}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100201EXPORT_SYMBOL(drm_master_put);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000202
203int drm_setmaster_ioctl(struct drm_device *dev, void *data,
204 struct drm_file *file_priv)
205{
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200206 int ret = 0;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000207
Jonas Bonn6b008422009-04-16 09:00:02 +0200208 if (file_priv->is_master)
209 return 0;
210
Dave Airlie7c1c2872008-11-28 14:22:24 +1000211 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
212 return -EINVAL;
213
214 if (!file_priv->master)
215 return -EINVAL;
216
David Herrmann08bec5b2012-11-15 13:04:37 +0000217 if (file_priv->minor->master)
218 return -EINVAL;
219
220 mutex_lock(&dev->struct_mutex);
221 file_priv->minor->master = drm_master_get(file_priv->master);
222 file_priv->is_master = 1;
223 if (dev->driver->master_set) {
224 ret = dev->driver->master_set(dev, file_priv, false);
225 if (unlikely(ret != 0)) {
226 file_priv->is_master = 0;
227 drm_master_put(&file_priv->minor->master);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000228 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000229 }
David Herrmann08bec5b2012-11-15 13:04:37 +0000230 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000231
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200232 return ret;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000233}
234
235int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
236 struct drm_file *file_priv)
237{
Jonas Bonn6b008422009-04-16 09:00:02 +0200238 if (!file_priv->is_master)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000239 return -EINVAL;
Jonas Bonn6b008422009-04-16 09:00:02 +0200240
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000241 if (!file_priv->minor->master)
242 return -EINVAL;
243
Dave Airlie7c1c2872008-11-28 14:22:24 +1000244 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000245 if (dev->driver->master_drop)
246 dev->driver->master_drop(dev, file_priv, false);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000247 drm_master_put(&file_priv->minor->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200248 file_priv->is_master = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000249 mutex_unlock(&dev->struct_mutex);
250 return 0;
251}
252
Jordan Crousedcdb1672010-05-27 13:40:25 -0600253int drm_fill_in_dev(struct drm_device *dev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000254 const struct pci_device_id *ent,
255 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 int retcode;
258
Dave Airliebd1b3312007-05-26 05:01:51 +1000259 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000260 INIT_LIST_HEAD(&dev->ctxlist);
261 INIT_LIST_HEAD(&dev->vmalist);
262 INIT_LIST_HEAD(&dev->maplist);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000263 INIT_LIST_HEAD(&dev->vblank_event_list);
Dave Airlie7c158ac2007-07-11 12:05:36 +1000264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 spin_lock_init(&dev->count_lock);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000266 spin_lock_init(&dev->event_lock);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100267 mutex_init(&dev->struct_mutex);
268 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000270 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000271 return -ENOMEM;
272 }
Dave Airlie836cf042005-07-10 19:27:04 +1000273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* the DRM has 6 basic counters */
275 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 dev->types[0] = _DRM_STAT_LOCK;
277 dev->types[1] = _DRM_STAT_OPENS;
278 dev->types[2] = _DRM_STAT_CLOSES;
279 dev->types[3] = _DRM_STAT_IOCTLS;
280 dev->types[4] = _DRM_STAT_LOCKS;
281 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284
Dave Airlie8410ea32010-12-15 03:16:38 +1000285 if (dev->driver->bus->agp_init) {
286 retcode = dev->driver->bus->agp_init(dev);
287 if (retcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 goto error_out_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
Dave Airlie2716a022007-11-22 18:23:13 +1000291
Dave Airlie8410ea32010-12-15 03:16:38 +1000292
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000293 retcode = drm_ctxbitmap_init(dev);
294 if (retcode) {
295 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 goto error_out_unreg;
297 }
298
Eric Anholt673a3942008-07-30 12:06:12 -0700299 if (driver->driver_features & DRIVER_GEM) {
300 retcode = drm_gem_init(dev);
301 if (retcode) {
302 DRM_ERROR("Cannot initialize graphics execution "
303 "manager (GEM)\n");
304 goto error_out_unreg;
305 }
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000309
310 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100311 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return retcode;
313}
Dave Airlie9c1dfc52012-03-20 06:59:29 +0000314EXPORT_SYMBOL(drm_fill_in_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/**
318 * Get a secondary minor number.
319 *
320 * \param dev device data structure
321 * \param sec-minor structure to hold the assigned minor
322 * \return negative number on failure.
323 *
324 * Search an empty entry and initialize it to the given parameters, and
325 * create the proc init entry via proc_init(). This routines assigns
326 * minor numbers to secondary heads of multi-headed cards
327 */
Jordan Crousedcdb1672010-05-27 13:40:25 -0600328int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Dave Airlie2c14f282008-04-21 16:47:32 +1000330 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000332 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 DRM_DEBUG("\n");
335
Dave Airlie2c14f282008-04-21 16:47:32 +1000336 minor_id = drm_minor_get_id(dev, type);
337 if (minor_id < 0)
338 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000339
Dave Airlie2c14f282008-04-21 16:47:32 +1000340 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
341 if (!new_minor) {
342 ret = -ENOMEM;
343 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000345
346 new_minor->type = type;
347 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
348 new_minor->dev = dev;
349 new_minor->index = minor_id;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000350 INIT_LIST_HEAD(&new_minor->master_list);
Dave Airlie2c14f282008-04-21 16:47:32 +1000351
352 idr_replace(&drm_minors_idr, new_minor, minor_id);
353
354 if (type == DRM_MINOR_LEGACY) {
David Howellsb63e6aa2013-04-12 15:34:31 +0100355 ret = drm_proc_init(new_minor, drm_proc_root);
Dave Airlie2c14f282008-04-21 16:47:32 +1000356 if (ret) {
357 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
358 goto err_mem;
359 }
360 } else
Ben Gamari955b12d2009-02-17 20:08:49 -0500361 new_minor->proc_root = NULL;
362
363#if defined(CONFIG_DEBUG_FS)
364 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
365 if (ret) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900366 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
Ben Gamari955b12d2009-02-17 20:08:49 -0500367 goto err_g2;
368 }
369#endif
Dave Airlie2c14f282008-04-21 16:47:32 +1000370
371 ret = drm_sysfs_device_add(new_minor);
372 if (ret) {
373 printk(KERN_ERR
374 "DRM: Error sysfs_device_add.\n");
375 goto err_g2;
376 }
377 *minor = new_minor;
378
379 DRM_DEBUG("new minor assigned %d\n", minor_id);
380 return 0;
381
382
383err_g2:
384 if (new_minor->type == DRM_MINOR_LEGACY)
385 drm_proc_cleanup(new_minor, drm_proc_root);
386err_mem:
387 kfree(new_minor);
388err_idr:
389 idr_remove(&drm_minors_idr, minor_id);
390 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return ret;
392}
Dave Airlie9c1dfc52012-03-20 06:59:29 +0000393EXPORT_SYMBOL(drm_get_minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000394
Dave Airliec94f7022005-07-07 21:03:38 +1000395/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * Put a secondary minor number.
397 *
398 * \param sec_minor - structure to be released
399 * \return always zero
400 *
401 * Cleans up the proc resources. Not legal for this to be the
402 * last minor released.
403 *
404 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000405int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Dave Airlie2c14f282008-04-21 16:47:32 +1000407 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700408
Dave Airlie2c14f282008-04-21 16:47:32 +1000409 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000410
Dave Airlie2c14f282008-04-21 16:47:32 +1000411 if (minor->type == DRM_MINOR_LEGACY)
412 drm_proc_cleanup(minor, drm_proc_root);
Ben Gamari955b12d2009-02-17 20:08:49 -0500413#if defined(CONFIG_DEBUG_FS)
414 drm_debugfs_cleanup(minor);
415#endif
416
Dave Airlie2c14f282008-04-21 16:47:32 +1000417 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000418
Dave Airlie2c14f282008-04-21 16:47:32 +1000419 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000420
Dave Airlie2c14f282008-04-21 16:47:32 +1000421 kfree(minor);
422 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
Dave Airlie9c1dfc52012-03-20 06:59:29 +0000425EXPORT_SYMBOL(drm_put_minor);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500426
Dave Airlie2c07a212012-02-20 14:18:07 +0000427static void drm_unplug_minor(struct drm_minor *minor)
428{
429 drm_sysfs_device_remove(minor);
430}
431
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500432/**
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
Andy Lutomirskif4350462013-05-13 23:58:43 +0000454 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) && dev->agp)
455 arch_phys_wc_del(dev->agp->agp_mtrr);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500456
457 if (dev->driver->unload)
458 dev->driver->unload(dev);
459
460 if (drm_core_has_AGP(dev) && dev->agp) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700461 kfree(dev->agp);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500462 dev->agp = NULL;
463 }
464
Jesse Barnesb78315f2010-03-26 11:07:16 -0700465 drm_vblank_cleanup(dev);
466
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500467 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
468 drm_rmmap(dev, r_list->map);
Ben Skeggs30ddbd92009-03-02 11:13:04 +1000469 drm_ht_remove(&dev->map_hash);
470
471 drm_ctxbitmap_cleanup(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500472
473 if (drm_core_check_feature(dev, DRIVER_MODESET))
474 drm_put_minor(&dev->control);
475
476 if (driver->driver_features & DRIVER_GEM)
477 drm_gem_destroy(dev);
478
479 drm_put_minor(&dev->primary);
480
Dave Airliea250b9f2010-12-15 07:13:55 +1000481 list_del(&dev->driver_item);
Sachin Kamat66141d32012-11-19 09:44:59 +0000482 kfree(dev->devname);
Eric Anholt9a298b22009-03-24 12:23:04 -0700483 kfree(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500484}
485EXPORT_SYMBOL(drm_put_dev);
Dave Airlie2c07a212012-02-20 14:18:07 +0000486
487void drm_unplug_dev(struct drm_device *dev)
488{
489 /* for a USB device */
490 if (drm_core_check_feature(dev, DRIVER_MODESET))
491 drm_unplug_minor(dev->control);
492 drm_unplug_minor(dev->primary);
493
494 mutex_lock(&drm_global_mutex);
495
496 drm_device_set_unplugged(dev);
497
498 if (dev->open_count == 0) {
499 drm_put_dev(dev);
500 }
501 mutex_unlock(&drm_global_mutex);
502}
503EXPORT_SYMBOL(drm_unplug_dev);