blob: 83ef4a63358cf1227325a06ab90d57f13642a209 [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
David Herrmann17931262013-08-25 18:29:00 +020043unsigned int drm_rnodes = 0; /* 1 to enable experimental render nodes API */
44EXPORT_SYMBOL(drm_rnodes);
45
Mario Kleiner27641c32010-10-23 04:20:23 +020046unsigned int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */
47EXPORT_SYMBOL(drm_vblank_offdelay);
48
49unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */
50EXPORT_SYMBOL(drm_timestamp_precision);
51
Imre Deakc61eef72012-10-23 18:53:26 +000052/*
53 * Default to use monotonic timestamps for wait-for-vblank and page-flip
54 * complete events.
55 */
56unsigned int drm_timestamp_monotonic = 1;
57
Dave Airlieb5e89ed2005-09-25 14:28:13 +100058MODULE_AUTHOR(CORE_AUTHOR);
59MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_LICENSE("GPL and additional rights");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_PARM_DESC(debug, "Enable debug output");
David Herrmann17931262013-08-25 18:29:00 +020062MODULE_PARM_DESC(rnodes, "Enable experimental render nodes API");
Mario Kleiner27641c32010-10-23 04:20:23 +020063MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
64MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
Imre Deakc61eef72012-10-23 18:53:26 +000065MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dave Jonesc0758142005-10-03 15:02:20 -040067module_param_named(debug, drm_debug, int, 0600);
David Herrmann17931262013-08-25 18:29:00 +020068module_param_named(rnodes, drm_rnodes, int, 0600);
Mario Kleiner27641c32010-10-23 04:20:23 +020069module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
70module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
Imre Deakc61eef72012-10-23 18:53:26 +000071module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Dave Airlie2c14f282008-04-21 16:47:32 +100073struct idr drm_minors_idr;
74
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080075struct class *drm_class;
Ben Gamari955b12d2009-02-17 20:08:49 -050076struct dentry *drm_debugfs_root;
Joe Perches5ad3d882011-04-17 20:35:51 -070077
78int drm_err(const char *func, const char *format, ...)
79{
80 struct va_format vaf;
81 va_list args;
82 int r;
83
84 va_start(args, format);
85
86 vaf.fmt = format;
87 vaf.va = &args;
88
89 r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
90
91 va_end(args);
92
93 return r;
94}
95EXPORT_SYMBOL(drm_err);
96
yakui_zhao4fefcb22009-06-02 14:09:47 +080097void drm_ut_debug_printk(unsigned int request_level,
98 const char *prefix,
99 const char *function_name,
100 const char *format, ...)
101{
Daniel Vetterfffb9062013-11-17 22:25:02 +0100102 struct va_format vaf;
yakui_zhao4fefcb22009-06-02 14:09:47 +0800103 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
yakui_zhao4fefcb22009-06-02 14:09:47 +0800105 if (drm_debug & request_level) {
yakui_zhao4fefcb22009-06-02 14:09:47 +0800106 va_start(args, format);
Daniel Vetterfffb9062013-11-17 22:25:02 +0100107 vaf.fmt = format;
108 vaf.va = &args;
109
110 if (function_name)
111 printk(KERN_DEBUG "[%s:%s], %pV", prefix,
112 function_name, &vaf);
113 else
114 printk(KERN_DEBUG "%pV", &vaf);
yakui_zhao4fefcb22009-06-02 14:09:47 +0800115 va_end(args);
116 }
117}
118EXPORT_SYMBOL(drm_ut_debug_printk);
Joe Perches5ad3d882011-04-17 20:35:51 -0700119
Dave Airlie7c1c2872008-11-28 14:22:24 +1000120struct drm_master *drm_master_create(struct drm_minor *minor)
121{
122 struct drm_master *master;
123
Eric Anholt9a298b22009-03-24 12:23:04 -0700124 master = kzalloc(sizeof(*master), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000125 if (!master)
126 return NULL;
127
128 kref_init(&master->refcount);
129 spin_lock_init(&master->lock.spinlock);
130 init_waitqueue_head(&master->lock.lock_queue);
131 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
132 INIT_LIST_HEAD(&master->magicfree);
133 master->minor = minor;
134
135 list_add_tail(&master->head, &minor->master_list);
136
137 return master;
138}
139
140struct drm_master *drm_master_get(struct drm_master *master)
141{
142 kref_get(&master->refcount);
143 return master;
144}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100145EXPORT_SYMBOL(drm_master_get);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000146
147static void drm_master_destroy(struct kref *kref)
148{
149 struct drm_master *master = container_of(kref, struct drm_master, refcount);
150 struct drm_magic_entry *pt, *next;
151 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000152 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000153
154 list_del(&master->head);
155
156 if (dev->driver->master_destroy)
157 dev->driver->master_destroy(dev, master);
158
Dave Airliec1ff85d2009-01-19 17:17:58 +1000159 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
160 if (r_list->master == master) {
161 drm_rmmap_locked(dev, r_list->map);
162 r_list = NULL;
163 }
164 }
165
Dave Airlie7c1c2872008-11-28 14:22:24 +1000166 if (master->unique) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700167 kfree(master->unique);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000168 master->unique = NULL;
169 master->unique_len = 0;
170 }
171
Chris Wilson6e350232010-07-24 18:29:36 +0100172 kfree(dev->devname);
173 dev->devname = NULL;
174
Dave Airlie7c1c2872008-11-28 14:22:24 +1000175 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
176 list_del(&pt->head);
177 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
Eric Anholt9a298b22009-03-24 12:23:04 -0700178 kfree(pt);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000179 }
180
181 drm_ht_remove(&master->magiclist);
182
Eric Anholt9a298b22009-03-24 12:23:04 -0700183 kfree(master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000184}
185
186void drm_master_put(struct drm_master **master)
187{
188 kref_put(&(*master)->refcount, drm_master_destroy);
189 *master = NULL;
190}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100191EXPORT_SYMBOL(drm_master_put);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000192
193int drm_setmaster_ioctl(struct drm_device *dev, void *data,
194 struct drm_file *file_priv)
195{
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200196 int ret = 0;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000197
Jonas Bonn6b008422009-04-16 09:00:02 +0200198 if (file_priv->is_master)
199 return 0;
200
Dave Airlie7c1c2872008-11-28 14:22:24 +1000201 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
202 return -EINVAL;
203
204 if (!file_priv->master)
205 return -EINVAL;
206
David Herrmann08bec5b2012-11-15 13:04:37 +0000207 if (file_priv->minor->master)
208 return -EINVAL;
209
210 mutex_lock(&dev->struct_mutex);
211 file_priv->minor->master = drm_master_get(file_priv->master);
212 file_priv->is_master = 1;
213 if (dev->driver->master_set) {
214 ret = dev->driver->master_set(dev, file_priv, false);
215 if (unlikely(ret != 0)) {
216 file_priv->is_master = 0;
217 drm_master_put(&file_priv->minor->master);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000218 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000219 }
David Herrmann08bec5b2012-11-15 13:04:37 +0000220 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000221
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200222 return ret;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000223}
224
225int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
226 struct drm_file *file_priv)
227{
Jonas Bonn6b008422009-04-16 09:00:02 +0200228 if (!file_priv->is_master)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000229 return -EINVAL;
Jonas Bonn6b008422009-04-16 09:00:02 +0200230
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000231 if (!file_priv->minor->master)
232 return -EINVAL;
233
Dave Airlie7c1c2872008-11-28 14:22:24 +1000234 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000235 if (dev->driver->master_drop)
236 dev->driver->master_drop(dev, file_priv, false);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000237 drm_master_put(&file_priv->minor->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200238 file_priv->is_master = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000239 mutex_unlock(&dev->struct_mutex);
240 return 0;
241}
242
David Herrmann05b701f2014-01-29 12:43:56 +0100243static struct drm_minor **drm_minor_get_slot(struct drm_device *dev,
244 unsigned int type)
245{
246 switch (type) {
247 case DRM_MINOR_LEGACY:
248 return &dev->primary;
249 case DRM_MINOR_RENDER:
250 return &dev->render;
251 case DRM_MINOR_CONTROL:
252 return &dev->control;
253 default:
254 return NULL;
255 }
256}
257
258static int drm_minor_alloc(struct drm_device *dev, unsigned int type)
259{
260 struct drm_minor *minor;
261
262 minor = kzalloc(sizeof(*minor), GFP_KERNEL);
263 if (!minor)
264 return -ENOMEM;
265
266 minor->type = type;
267 minor->dev = dev;
268 INIT_LIST_HEAD(&minor->master_list);
269
270 *drm_minor_get_slot(dev, type) = minor;
271 return 0;
272}
273
David Herrmannbd9dfa92014-01-29 12:55:48 +0100274static void drm_minor_free(struct drm_device *dev, unsigned int type)
275{
276 struct drm_minor **slot;
277
278 slot = drm_minor_get_slot(dev, type);
279 if (*slot) {
280 kfree(*slot);
281 *slot = NULL;
282 }
283}
284
David Herrmannafcdbc82014-01-29 12:57:05 +0100285static int drm_minor_register(struct drm_device *dev, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Dave Airlie2c14f282008-04-21 16:47:32 +1000287 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000289 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 DRM_DEBUG("\n");
292
David Herrmann05b701f2014-01-29 12:43:56 +0100293 new_minor = *drm_minor_get_slot(dev, type);
294 if (!new_minor)
295 return 0;
296
David Herrmann7d86cf12014-02-24 15:35:09 +0100297 minor_id = idr_alloc(&drm_minors_idr,
298 NULL,
299 64 * type,
300 64 * (type + 1),
301 GFP_KERNEL);
302
Dave Airlie2c14f282008-04-21 16:47:32 +1000303 if (minor_id < 0)
304 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000305
Dave Airlie2c14f282008-04-21 16:47:32 +1000306 new_minor->index = minor_id;
307
308 idr_replace(&drm_minors_idr, new_minor, minor_id);
309
Ben Gamari955b12d2009-02-17 20:08:49 -0500310 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
311 if (ret) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900312 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
David Herrmann1abbc432014-02-24 15:32:00 +0100313 goto err_id;
Ben Gamari955b12d2009-02-17 20:08:49 -0500314 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000315
316 ret = drm_sysfs_device_add(new_minor);
317 if (ret) {
David Herrmann1abbc432014-02-24 15:32:00 +0100318 DRM_ERROR("DRM: Error sysfs_device_add.\n");
Daniel Vettercb6458f2013-08-08 15:41:34 +0200319 goto err_debugfs;
Dave Airlie2c14f282008-04-21 16:47:32 +1000320 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000321
322 DRM_DEBUG("new minor assigned %d\n", minor_id);
323 return 0;
324
Daniel Vettercb6458f2013-08-08 15:41:34 +0200325err_debugfs:
Daniel Vettercb6458f2013-08-08 15:41:34 +0200326 drm_debugfs_cleanup(new_minor);
David Herrmann1abbc432014-02-24 15:32:00 +0100327err_id:
Dave Airlie2c14f282008-04-21 16:47:32 +1000328 idr_remove(&drm_minors_idr, minor_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return ret;
330}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000331
David Herrmannafcdbc82014-01-29 12:57:05 +0100332static void drm_minor_unregister(struct drm_device *dev, unsigned int type)
David Herrmannf73aca52013-10-20 18:55:40 +0200333{
David Herrmannafcdbc82014-01-29 12:57:05 +0100334 struct drm_minor *minor;
335
336 minor = *drm_minor_get_slot(dev, type);
David Herrmanna3483352013-11-13 11:42:26 +0100337 if (!minor || !minor->kdev)
David Herrmannf73aca52013-10-20 18:55:40 +0200338 return;
339
David Herrmann865fb472013-10-20 18:55:43 +0200340 drm_debugfs_cleanup(minor);
David Herrmannf73aca52013-10-20 18:55:40 +0200341 drm_sysfs_device_remove(minor);
David Herrmannf67e9462013-10-20 18:55:44 +0200342 idr_remove(&drm_minors_idr, minor->index);
David Herrmannf73aca52013-10-20 18:55:40 +0200343}
344
345/**
David Herrmann1616c522014-01-29 10:49:19 +0100346 * drm_minor_acquire - Acquire a DRM minor
347 * @minor_id: Minor ID of the DRM-minor
348 *
349 * Looks up the given minor-ID and returns the respective DRM-minor object. The
350 * refence-count of the underlying device is increased so you must release this
351 * object with drm_minor_release().
352 *
353 * As long as you hold this minor, it is guaranteed that the object and the
354 * minor->dev pointer will stay valid! However, the device may get unplugged and
355 * unregistered while you hold the minor.
356 *
357 * Returns:
358 * Pointer to minor-object with increased device-refcount, or PTR_ERR on
359 * failure.
360 */
361struct drm_minor *drm_minor_acquire(unsigned int minor_id)
362{
363 struct drm_minor *minor;
364
365 minor = idr_find(&drm_minors_idr, minor_id);
366 if (!minor)
367 return ERR_PTR(-ENODEV);
368
369 drm_dev_ref(minor->dev);
370 return minor;
371}
372
373/**
374 * drm_minor_release - Release DRM minor
375 * @minor: Pointer to DRM minor object
376 *
377 * Release a minor that was previously acquired via drm_minor_acquire().
378 */
379void drm_minor_release(struct drm_minor *minor)
380{
381 drm_dev_unref(minor->dev);
382}
383
384/**
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500385 * Called via drm_exit() at module unload time or when pci device is
386 * unplugged.
387 *
388 * Cleans up all DRM device, calling drm_lastclose().
389 *
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500390 */
391void drm_put_dev(struct drm_device *dev)
392{
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500393 DRM_DEBUG("\n");
394
395 if (!dev) {
396 DRM_ERROR("cleanup called no dev\n");
397 return;
398 }
399
David Herrmannc3a49732013-10-02 11:23:38 +0200400 drm_dev_unregister(dev);
David Herrmann099d1c22014-01-29 10:21:36 +0100401 drm_dev_unref(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500402}
403EXPORT_SYMBOL(drm_put_dev);
Dave Airlie2c07a212012-02-20 14:18:07 +0000404
405void drm_unplug_dev(struct drm_device *dev)
406{
407 /* for a USB device */
David Herrmannafcdbc82014-01-29 12:57:05 +0100408 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
409 drm_minor_unregister(dev, DRM_MINOR_RENDER);
410 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
Dave Airlie2c07a212012-02-20 14:18:07 +0000411
412 mutex_lock(&drm_global_mutex);
413
414 drm_device_set_unplugged(dev);
415
416 if (dev->open_count == 0) {
417 drm_put_dev(dev);
418 }
419 mutex_unlock(&drm_global_mutex);
420}
421EXPORT_SYMBOL(drm_unplug_dev);
David Herrmann1bb72532013-10-02 11:23:34 +0200422
423/**
424 * drm_dev_alloc - Allocate new drm device
425 * @driver: DRM driver to allocate device for
426 * @parent: Parent device object
427 *
428 * Allocate and initialize a new DRM device. No device registration is done.
David Herrmannc22f0ac2013-10-02 11:23:35 +0200429 * Call drm_dev_register() to advertice the device to user space and register it
430 * with other core subsystems.
David Herrmann1bb72532013-10-02 11:23:34 +0200431 *
David Herrmann099d1c22014-01-29 10:21:36 +0100432 * The initial ref-count of the object is 1. Use drm_dev_ref() and
433 * drm_dev_unref() to take and drop further ref-counts.
434 *
David Herrmann1bb72532013-10-02 11:23:34 +0200435 * RETURNS:
436 * Pointer to new DRM device, or NULL if out of memory.
437 */
438struct drm_device *drm_dev_alloc(struct drm_driver *driver,
439 struct device *parent)
440{
441 struct drm_device *dev;
442 int ret;
443
444 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
445 if (!dev)
446 return NULL;
447
David Herrmann099d1c22014-01-29 10:21:36 +0100448 kref_init(&dev->ref);
David Herrmann1bb72532013-10-02 11:23:34 +0200449 dev->dev = parent;
450 dev->driver = driver;
451
452 INIT_LIST_HEAD(&dev->filelist);
453 INIT_LIST_HEAD(&dev->ctxlist);
454 INIT_LIST_HEAD(&dev->vmalist);
455 INIT_LIST_HEAD(&dev->maplist);
456 INIT_LIST_HEAD(&dev->vblank_event_list);
457
458 spin_lock_init(&dev->count_lock);
459 spin_lock_init(&dev->event_lock);
460 mutex_init(&dev->struct_mutex);
461 mutex_init(&dev->ctxlist_mutex);
462
David Herrmann05b701f2014-01-29 12:43:56 +0100463 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
464 ret = drm_minor_alloc(dev, DRM_MINOR_CONTROL);
465 if (ret)
466 goto err_minors;
467 }
468
469 if (drm_core_check_feature(dev, DRIVER_RENDER) && drm_rnodes) {
470 ret = drm_minor_alloc(dev, DRM_MINOR_RENDER);
471 if (ret)
472 goto err_minors;
473 }
474
475 ret = drm_minor_alloc(dev, DRM_MINOR_LEGACY);
476 if (ret)
477 goto err_minors;
478
David Herrmann1bb72532013-10-02 11:23:34 +0200479 if (drm_ht_create(&dev->map_hash, 12))
David Herrmann05b701f2014-01-29 12:43:56 +0100480 goto err_minors;
David Herrmann1bb72532013-10-02 11:23:34 +0200481
482 ret = drm_ctxbitmap_init(dev);
483 if (ret) {
484 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
485 goto err_ht;
486 }
487
488 if (driver->driver_features & DRIVER_GEM) {
489 ret = drm_gem_init(dev);
490 if (ret) {
491 DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
492 goto err_ctxbitmap;
493 }
494 }
495
496 return dev;
497
498err_ctxbitmap:
499 drm_ctxbitmap_cleanup(dev);
500err_ht:
501 drm_ht_remove(&dev->map_hash);
David Herrmann05b701f2014-01-29 12:43:56 +0100502err_minors:
David Herrmannbd9dfa92014-01-29 12:55:48 +0100503 drm_minor_free(dev, DRM_MINOR_LEGACY);
504 drm_minor_free(dev, DRM_MINOR_RENDER);
505 drm_minor_free(dev, DRM_MINOR_CONTROL);
David Herrmann1bb72532013-10-02 11:23:34 +0200506 kfree(dev);
507 return NULL;
508}
509EXPORT_SYMBOL(drm_dev_alloc);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200510
David Herrmann099d1c22014-01-29 10:21:36 +0100511static void drm_dev_release(struct kref *ref)
David Herrmann0dc8fe52013-10-02 11:23:37 +0200512{
David Herrmann099d1c22014-01-29 10:21:36 +0100513 struct drm_device *dev = container_of(ref, struct drm_device, ref);
514
David Herrmann0dc8fe52013-10-02 11:23:37 +0200515 if (dev->driver->driver_features & DRIVER_GEM)
516 drm_gem_destroy(dev);
517
518 drm_ctxbitmap_cleanup(dev);
519 drm_ht_remove(&dev->map_hash);
520
David Herrmannbd9dfa92014-01-29 12:55:48 +0100521 drm_minor_free(dev, DRM_MINOR_LEGACY);
522 drm_minor_free(dev, DRM_MINOR_RENDER);
523 drm_minor_free(dev, DRM_MINOR_CONTROL);
524
David Herrmann0dc8fe52013-10-02 11:23:37 +0200525 kfree(dev->devname);
526 kfree(dev);
527}
David Herrmann099d1c22014-01-29 10:21:36 +0100528
529/**
530 * drm_dev_ref - Take reference of a DRM device
531 * @dev: device to take reference of or NULL
532 *
533 * This increases the ref-count of @dev by one. You *must* already own a
534 * reference when calling this. Use drm_dev_unref() to drop this reference
535 * again.
536 *
537 * This function never fails. However, this function does not provide *any*
538 * guarantee whether the device is alive or running. It only provides a
539 * reference to the object and the memory associated with it.
540 */
541void drm_dev_ref(struct drm_device *dev)
542{
543 if (dev)
544 kref_get(&dev->ref);
545}
546EXPORT_SYMBOL(drm_dev_ref);
547
548/**
549 * drm_dev_unref - Drop reference of a DRM device
550 * @dev: device to drop reference of or NULL
551 *
552 * This decreases the ref-count of @dev by one. The device is destroyed if the
553 * ref-count drops to zero.
554 */
555void drm_dev_unref(struct drm_device *dev)
556{
557 if (dev)
558 kref_put(&dev->ref, drm_dev_release);
559}
560EXPORT_SYMBOL(drm_dev_unref);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200561
562/**
David Herrmannc22f0ac2013-10-02 11:23:35 +0200563 * drm_dev_register - Register DRM device
564 * @dev: Device to register
565 *
566 * Register the DRM device @dev with the system, advertise device to user-space
567 * and start normal device operation. @dev must be allocated via drm_dev_alloc()
568 * previously.
569 *
570 * Never call this twice on any device!
571 *
572 * RETURNS:
573 * 0 on success, negative error code on failure.
574 */
575int drm_dev_register(struct drm_device *dev, unsigned long flags)
576{
577 int ret;
578
579 mutex_lock(&drm_global_mutex);
580
David Herrmannafcdbc82014-01-29 12:57:05 +0100581 ret = drm_minor_register(dev, DRM_MINOR_CONTROL);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200582 if (ret)
David Herrmann05b701f2014-01-29 12:43:56 +0100583 goto err_minors;
584
David Herrmannafcdbc82014-01-29 12:57:05 +0100585 ret = drm_minor_register(dev, DRM_MINOR_RENDER);
David Herrmann05b701f2014-01-29 12:43:56 +0100586 if (ret)
587 goto err_minors;
588
David Herrmannafcdbc82014-01-29 12:57:05 +0100589 ret = drm_minor_register(dev, DRM_MINOR_LEGACY);
David Herrmann05b701f2014-01-29 12:43:56 +0100590 if (ret)
591 goto err_minors;
David Herrmannc22f0ac2013-10-02 11:23:35 +0200592
593 if (dev->driver->load) {
594 ret = dev->driver->load(dev, flags);
595 if (ret)
David Herrmann05b701f2014-01-29 12:43:56 +0100596 goto err_minors;
David Herrmannc22f0ac2013-10-02 11:23:35 +0200597 }
598
599 /* setup grouping for legacy outputs */
600 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
601 ret = drm_mode_group_init_legacy_group(dev,
602 &dev->primary->mode_group);
603 if (ret)
604 goto err_unload;
605 }
606
David Herrmannc22f0ac2013-10-02 11:23:35 +0200607 ret = 0;
608 goto out_unlock;
609
610err_unload:
611 if (dev->driver->unload)
612 dev->driver->unload(dev);
David Herrmann05b701f2014-01-29 12:43:56 +0100613err_minors:
David Herrmannafcdbc82014-01-29 12:57:05 +0100614 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
615 drm_minor_unregister(dev, DRM_MINOR_RENDER);
616 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200617out_unlock:
618 mutex_unlock(&drm_global_mutex);
619 return ret;
620}
621EXPORT_SYMBOL(drm_dev_register);
David Herrmannc3a49732013-10-02 11:23:38 +0200622
623/**
624 * drm_dev_unregister - Unregister DRM device
625 * @dev: Device to unregister
626 *
627 * Unregister the DRM device from the system. This does the reverse of
628 * drm_dev_register() but does not deallocate the device. The caller must call
David Herrmann099d1c22014-01-29 10:21:36 +0100629 * drm_dev_unref() to drop their final reference.
David Herrmannc3a49732013-10-02 11:23:38 +0200630 */
631void drm_dev_unregister(struct drm_device *dev)
632{
633 struct drm_map_list *r_list, *list_temp;
634
635 drm_lastclose(dev);
636
637 if (dev->driver->unload)
638 dev->driver->unload(dev);
639
Daniel Vetter4efafeb2013-12-11 11:34:38 +0100640 if (dev->agp)
641 drm_pci_agp_destroy(dev);
David Herrmannc3a49732013-10-02 11:23:38 +0200642
643 drm_vblank_cleanup(dev);
644
645 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
646 drm_rmmap(dev, r_list->map);
647
David Herrmannafcdbc82014-01-29 12:57:05 +0100648 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
649 drm_minor_unregister(dev, DRM_MINOR_RENDER);
650 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
David Herrmannc3a49732013-10-02 11:23:38 +0200651}
652EXPORT_SYMBOL(drm_dev_unregister);