blob: 3b5b07482de8e2206a5cff7e2381aadaddc2e398 [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{
102 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
yakui_zhao4fefcb22009-06-02 14:09:47 +0800104 if (drm_debug & request_level) {
105 if (function_name)
106 printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
107 va_start(args, format);
108 vprintk(format, args);
109 va_end(args);
110 }
111}
112EXPORT_SYMBOL(drm_ut_debug_printk);
Joe Perches5ad3d882011-04-17 20:35:51 -0700113
Dave Airlie2c14f282008-04-21 16:47:32 +1000114static int drm_minor_get_id(struct drm_device *dev, int type)
115{
Dave Airlie2c14f282008-04-21 16:47:32 +1000116 int ret;
117 int base = 0, limit = 63;
118
Dave Airlief453ba02008-11-07 14:05:41 -0800119 if (type == DRM_MINOR_CONTROL) {
Kristian Høgsberg24f40032013-08-08 19:10:21 +0200120 base += 64;
121 limit = base + 63;
122 } else if (type == DRM_MINOR_RENDER) {
123 base += 128;
124 limit = base + 63;
125 }
Dave Airlief453ba02008-11-07 14:05:41 -0800126
Dave Airlie2c14f282008-04-21 16:47:32 +1000127 mutex_lock(&dev->struct_mutex);
Tejun Heo2e928812013-02-27 17:04:08 -0800128 ret = idr_alloc(&drm_minors_idr, NULL, base, limit, GFP_KERNEL);
Dave Airlie2c14f282008-04-21 16:47:32 +1000129 mutex_unlock(&dev->struct_mutex);
Dave Airlie2c14f282008-04-21 16:47:32 +1000130
Tejun Heo2e928812013-02-27 17:04:08 -0800131 return ret == -ENOSPC ? -EINVAL : ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000132}
133
Dave Airlie7c1c2872008-11-28 14:22:24 +1000134struct drm_master *drm_master_create(struct drm_minor *minor)
135{
136 struct drm_master *master;
137
Eric Anholt9a298b22009-03-24 12:23:04 -0700138 master = kzalloc(sizeof(*master), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000139 if (!master)
140 return NULL;
141
142 kref_init(&master->refcount);
143 spin_lock_init(&master->lock.spinlock);
144 init_waitqueue_head(&master->lock.lock_queue);
145 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
146 INIT_LIST_HEAD(&master->magicfree);
147 master->minor = minor;
148
149 list_add_tail(&master->head, &minor->master_list);
150
151 return master;
152}
153
154struct drm_master *drm_master_get(struct drm_master *master)
155{
156 kref_get(&master->refcount);
157 return master;
158}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100159EXPORT_SYMBOL(drm_master_get);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000160
161static void drm_master_destroy(struct kref *kref)
162{
163 struct drm_master *master = container_of(kref, struct drm_master, refcount);
164 struct drm_magic_entry *pt, *next;
165 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000166 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000167
168 list_del(&master->head);
169
170 if (dev->driver->master_destroy)
171 dev->driver->master_destroy(dev, master);
172
Dave Airliec1ff85d2009-01-19 17:17:58 +1000173 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
174 if (r_list->master == master) {
175 drm_rmmap_locked(dev, r_list->map);
176 r_list = NULL;
177 }
178 }
179
Dave Airlie7c1c2872008-11-28 14:22:24 +1000180 if (master->unique) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700181 kfree(master->unique);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000182 master->unique = NULL;
183 master->unique_len = 0;
184 }
185
Chris Wilson6e350232010-07-24 18:29:36 +0100186 kfree(dev->devname);
187 dev->devname = NULL;
188
Dave Airlie7c1c2872008-11-28 14:22:24 +1000189 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
190 list_del(&pt->head);
191 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
Eric Anholt9a298b22009-03-24 12:23:04 -0700192 kfree(pt);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000193 }
194
195 drm_ht_remove(&master->magiclist);
196
Eric Anholt9a298b22009-03-24 12:23:04 -0700197 kfree(master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000198}
199
200void drm_master_put(struct drm_master **master)
201{
202 kref_put(&(*master)->refcount, drm_master_destroy);
203 *master = NULL;
204}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100205EXPORT_SYMBOL(drm_master_put);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000206
207int drm_setmaster_ioctl(struct drm_device *dev, void *data,
208 struct drm_file *file_priv)
209{
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200210 int ret = 0;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000211
Jonas Bonn6b008422009-04-16 09:00:02 +0200212 if (file_priv->is_master)
213 return 0;
214
Dave Airlie7c1c2872008-11-28 14:22:24 +1000215 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
216 return -EINVAL;
217
218 if (!file_priv->master)
219 return -EINVAL;
220
David Herrmann08bec5b2012-11-15 13:04:37 +0000221 if (file_priv->minor->master)
222 return -EINVAL;
223
224 mutex_lock(&dev->struct_mutex);
225 file_priv->minor->master = drm_master_get(file_priv->master);
226 file_priv->is_master = 1;
227 if (dev->driver->master_set) {
228 ret = dev->driver->master_set(dev, file_priv, false);
229 if (unlikely(ret != 0)) {
230 file_priv->is_master = 0;
231 drm_master_put(&file_priv->minor->master);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000232 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000233 }
David Herrmann08bec5b2012-11-15 13:04:37 +0000234 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000235
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200236 return ret;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000237}
238
239int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
240 struct drm_file *file_priv)
241{
Jonas Bonn6b008422009-04-16 09:00:02 +0200242 if (!file_priv->is_master)
Dave Airlie7c1c2872008-11-28 14:22:24 +1000243 return -EINVAL;
Jonas Bonn6b008422009-04-16 09:00:02 +0200244
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000245 if (!file_priv->minor->master)
246 return -EINVAL;
247
Dave Airlie7c1c2872008-11-28 14:22:24 +1000248 mutex_lock(&dev->struct_mutex);
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000249 if (dev->driver->master_drop)
250 dev->driver->master_drop(dev, file_priv, false);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000251 drm_master_put(&file_priv->minor->master);
Jonas Bonn6b008422009-04-16 09:00:02 +0200252 file_priv->is_master = 0;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000253 mutex_unlock(&dev->struct_mutex);
254 return 0;
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/**
258 * Get a secondary minor number.
259 *
260 * \param dev device data structure
261 * \param sec-minor structure to hold the assigned minor
262 * \return negative number on failure.
263 *
Daniel Vettercb6458f2013-08-08 15:41:34 +0200264 * Search an empty entry and initialize it to the given parameters. This
265 * routines assigns minor numbers to secondary heads of multi-headed cards
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Jordan Crousedcdb1672010-05-27 13:40:25 -0600267int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Dave Airlie2c14f282008-04-21 16:47:32 +1000269 struct drm_minor *new_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 int ret;
Dave Airlie2c14f282008-04-21 16:47:32 +1000271 int minor_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 DRM_DEBUG("\n");
274
Dave Airlie2c14f282008-04-21 16:47:32 +1000275 minor_id = drm_minor_get_id(dev, type);
276 if (minor_id < 0)
277 return minor_id;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000278
Dave Airlie2c14f282008-04-21 16:47:32 +1000279 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
280 if (!new_minor) {
281 ret = -ENOMEM;
282 goto err_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000284
285 new_minor->type = type;
286 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
287 new_minor->dev = dev;
288 new_minor->index = minor_id;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000289 INIT_LIST_HEAD(&new_minor->master_list);
Dave Airlie2c14f282008-04-21 16:47:32 +1000290
291 idr_replace(&drm_minors_idr, new_minor, minor_id);
292
Ben Gamari955b12d2009-02-17 20:08:49 -0500293#if defined(CONFIG_DEBUG_FS)
294 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
295 if (ret) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900296 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
Daniel Vettercb6458f2013-08-08 15:41:34 +0200297 goto err_mem;
Ben Gamari955b12d2009-02-17 20:08:49 -0500298 }
299#endif
Dave Airlie2c14f282008-04-21 16:47:32 +1000300
301 ret = drm_sysfs_device_add(new_minor);
302 if (ret) {
303 printk(KERN_ERR
304 "DRM: Error sysfs_device_add.\n");
Daniel Vettercb6458f2013-08-08 15:41:34 +0200305 goto err_debugfs;
Dave Airlie2c14f282008-04-21 16:47:32 +1000306 }
307 *minor = new_minor;
308
309 DRM_DEBUG("new minor assigned %d\n", minor_id);
310 return 0;
311
312
Daniel Vettercb6458f2013-08-08 15:41:34 +0200313err_debugfs:
314#if defined(CONFIG_DEBUG_FS)
315 drm_debugfs_cleanup(new_minor);
Dave Airlie2c14f282008-04-21 16:47:32 +1000316err_mem:
Daniel Vettercb6458f2013-08-08 15:41:34 +0200317#endif
Dave Airlie2c14f282008-04-21 16:47:32 +1000318 kfree(new_minor);
319err_idr:
320 idr_remove(&drm_minors_idr, minor_id);
321 *minor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return ret;
323}
Dave Airlie9c1dfc52012-03-20 06:59:29 +0000324EXPORT_SYMBOL(drm_get_minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000325
Dave Airliec94f7022005-07-07 21:03:38 +1000326/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * Put a secondary minor number.
328 *
329 * \param sec_minor - structure to be released
330 * \return always zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000332int drm_put_minor(struct drm_minor **minor_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Dave Airlie2c14f282008-04-21 16:47:32 +1000334 struct drm_minor *minor = *minor_p;
Eric Anholt673a3942008-07-30 12:06:12 -0700335
Dave Airlie2c14f282008-04-21 16:47:32 +1000336 DRM_DEBUG("release secondary minor %d\n", minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337
Ben Gamari955b12d2009-02-17 20:08:49 -0500338#if defined(CONFIG_DEBUG_FS)
339 drm_debugfs_cleanup(minor);
340#endif
341
Dave Airlie2c14f282008-04-21 16:47:32 +1000342 drm_sysfs_device_remove(minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000343
Dave Airlie2c14f282008-04-21 16:47:32 +1000344 idr_remove(&drm_minors_idr, minor->index);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000345
Dave Airlie2c14f282008-04-21 16:47:32 +1000346 kfree(minor);
347 *minor_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
349}
Dave Airlie9c1dfc52012-03-20 06:59:29 +0000350EXPORT_SYMBOL(drm_put_minor);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500351
Dave Airlie2c07a212012-02-20 14:18:07 +0000352static void drm_unplug_minor(struct drm_minor *minor)
353{
354 drm_sysfs_device_remove(minor);
355}
356
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500357/**
358 * Called via drm_exit() at module unload time or when pci device is
359 * unplugged.
360 *
361 * Cleans up all DRM device, calling drm_lastclose().
362 *
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500363 */
364void drm_put_dev(struct drm_device *dev)
365{
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500366 struct drm_map_list *r_list, *list_temp;
367
368 DRM_DEBUG("\n");
369
370 if (!dev) {
371 DRM_ERROR("cleanup called no dev\n");
372 return;
373 }
374
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500375 drm_lastclose(dev);
376
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500377 if (dev->driver->unload)
378 dev->driver->unload(dev);
379
David Herrmann28ec7112013-07-27 16:37:00 +0200380 if (dev->driver->bus->agp_destroy)
381 dev->driver->bus->agp_destroy(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500382
Jesse Barnesb78315f2010-03-26 11:07:16 -0700383 drm_vblank_cleanup(dev);
384
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500385 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
386 drm_rmmap(dev, r_list->map);
387
388 if (drm_core_check_feature(dev, DRIVER_MODESET))
389 drm_put_minor(&dev->control);
390
David Herrmann17931262013-08-25 18:29:00 +0200391 if (dev->render)
392 drm_put_minor(&dev->render);
393
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500394 drm_put_minor(&dev->primary);
395
Dave Airliea250b9f2010-12-15 07:13:55 +1000396 list_del(&dev->driver_item);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200397
398 drm_dev_free(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500399}
400EXPORT_SYMBOL(drm_put_dev);
Dave Airlie2c07a212012-02-20 14:18:07 +0000401
402void drm_unplug_dev(struct drm_device *dev)
403{
404 /* for a USB device */
405 if (drm_core_check_feature(dev, DRIVER_MODESET))
406 drm_unplug_minor(dev->control);
David Herrmann17931262013-08-25 18:29:00 +0200407 if (dev->render)
408 drm_unplug_minor(dev->render);
Dave Airlie2c07a212012-02-20 14:18:07 +0000409 drm_unplug_minor(dev->primary);
410
411 mutex_lock(&drm_global_mutex);
412
413 drm_device_set_unplugged(dev);
414
415 if (dev->open_count == 0) {
416 drm_put_dev(dev);
417 }
418 mutex_unlock(&drm_global_mutex);
419}
420EXPORT_SYMBOL(drm_unplug_dev);
David Herrmann1bb72532013-10-02 11:23:34 +0200421
422/**
423 * drm_dev_alloc - Allocate new drm device
424 * @driver: DRM driver to allocate device for
425 * @parent: Parent device object
426 *
427 * Allocate and initialize a new DRM device. No device registration is done.
David Herrmannc22f0ac2013-10-02 11:23:35 +0200428 * Call drm_dev_register() to advertice the device to user space and register it
429 * with other core subsystems.
David Herrmann1bb72532013-10-02 11:23:34 +0200430 *
431 * RETURNS:
432 * Pointer to new DRM device, or NULL if out of memory.
433 */
434struct drm_device *drm_dev_alloc(struct drm_driver *driver,
435 struct device *parent)
436{
437 struct drm_device *dev;
438 int ret;
439
440 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
441 if (!dev)
442 return NULL;
443
444 dev->dev = parent;
445 dev->driver = driver;
446
447 INIT_LIST_HEAD(&dev->filelist);
448 INIT_LIST_HEAD(&dev->ctxlist);
449 INIT_LIST_HEAD(&dev->vmalist);
450 INIT_LIST_HEAD(&dev->maplist);
451 INIT_LIST_HEAD(&dev->vblank_event_list);
452
453 spin_lock_init(&dev->count_lock);
454 spin_lock_init(&dev->event_lock);
455 mutex_init(&dev->struct_mutex);
456 mutex_init(&dev->ctxlist_mutex);
457
458 /* the DRM has 6 basic counters */
459 dev->counters = 6;
460 dev->types[0] = _DRM_STAT_LOCK;
461 dev->types[1] = _DRM_STAT_OPENS;
462 dev->types[2] = _DRM_STAT_CLOSES;
463 dev->types[3] = _DRM_STAT_IOCTLS;
464 dev->types[4] = _DRM_STAT_LOCKS;
465 dev->types[5] = _DRM_STAT_UNLOCKS;
466
467 if (drm_ht_create(&dev->map_hash, 12))
468 goto err_free;
469
470 ret = drm_ctxbitmap_init(dev);
471 if (ret) {
472 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
473 goto err_ht;
474 }
475
476 if (driver->driver_features & DRIVER_GEM) {
477 ret = drm_gem_init(dev);
478 if (ret) {
479 DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
480 goto err_ctxbitmap;
481 }
482 }
483
484 return dev;
485
486err_ctxbitmap:
487 drm_ctxbitmap_cleanup(dev);
488err_ht:
489 drm_ht_remove(&dev->map_hash);
490err_free:
491 kfree(dev);
492 return NULL;
493}
494EXPORT_SYMBOL(drm_dev_alloc);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200495
496/**
David Herrmann0dc8fe52013-10-02 11:23:37 +0200497 * drm_dev_free - Free DRM device
498 * @dev: DRM device to free
499 *
500 * Free a DRM device that has previously been allocated via drm_dev_alloc().
501 * You must not use kfree() instead or you will leak memory.
502 *
503 * This must not be called once the device got registered. Use drm_put_dev()
504 * instead, which then calls drm_dev_free().
505 */
506void drm_dev_free(struct drm_device *dev)
507{
508 if (dev->driver->driver_features & DRIVER_GEM)
509 drm_gem_destroy(dev);
510
511 drm_ctxbitmap_cleanup(dev);
512 drm_ht_remove(&dev->map_hash);
513
514 kfree(dev->devname);
515 kfree(dev);
516}
517EXPORT_SYMBOL(drm_dev_free);
518
519/**
David Herrmannc22f0ac2013-10-02 11:23:35 +0200520 * drm_dev_register - Register DRM device
521 * @dev: Device to register
522 *
523 * Register the DRM device @dev with the system, advertise device to user-space
524 * and start normal device operation. @dev must be allocated via drm_dev_alloc()
525 * previously.
526 *
527 * Never call this twice on any device!
528 *
529 * RETURNS:
530 * 0 on success, negative error code on failure.
531 */
532int drm_dev_register(struct drm_device *dev, unsigned long flags)
533{
534 int ret;
535
536 mutex_lock(&drm_global_mutex);
537
538 if (dev->driver->bus->agp_init) {
539 ret = dev->driver->bus->agp_init(dev);
540 if (ret)
541 goto out_unlock;
542 }
543
544 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
545 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
546 if (ret)
547 goto err_agp;
548 }
549
550 if (drm_core_check_feature(dev, DRIVER_RENDER) && drm_rnodes) {
551 ret = drm_get_minor(dev, &dev->render, DRM_MINOR_RENDER);
552 if (ret)
553 goto err_control_node;
554 }
555
556 ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY);
557 if (ret)
558 goto err_render_node;
559
560 if (dev->driver->load) {
561 ret = dev->driver->load(dev, flags);
562 if (ret)
563 goto err_primary_node;
564 }
565
566 /* setup grouping for legacy outputs */
567 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
568 ret = drm_mode_group_init_legacy_group(dev,
569 &dev->primary->mode_group);
570 if (ret)
571 goto err_unload;
572 }
573
574 list_add_tail(&dev->driver_item, &dev->driver->device_list);
575
576 ret = 0;
577 goto out_unlock;
578
579err_unload:
580 if (dev->driver->unload)
581 dev->driver->unload(dev);
582err_primary_node:
583 drm_put_minor(&dev->primary);
584err_render_node:
585 if (dev->render)
586 drm_put_minor(&dev->render);
587err_control_node:
588 if (dev->control)
589 drm_put_minor(&dev->control);
590err_agp:
591 if (dev->driver->bus->agp_destroy)
592 dev->driver->bus->agp_destroy(dev);
593out_unlock:
594 mutex_unlock(&drm_global_mutex);
595 return ret;
596}
597EXPORT_SYMBOL(drm_dev_register);