blob: 9ad823fcde87c29e2e385e987516f50bb3d337c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
3 *
4 * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
5 * All Rights Reserved.
6 *
Thierry Redingc6a1af8a2014-05-19 13:39:07 +02007 * Author Rickard E. (Rik) Faith <faith@valinux.com>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
18 * Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 */
28
David Herrmann1b7199f2014-07-23 12:29:56 +020029#include <linux/debugfs.h>
David Herrmann31bbe162014-01-03 14:09:47 +010030#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
32#include <linux/moduleparam.h>
David Herrmann31bbe162014-01-03 14:09:47 +010033#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
36#include <drm/drm_core.h>
David Herrmanne7b960702014-07-24 12:10:04 +020037#include "drm_legacy.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020038#include "drm_internal.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
Rob Clark88a48e22014-12-18 16:01:50 -050043bool drm_atomic = 0;
44
Dave Airlieb5e89ed2005-09-25 14:28:13 +100045MODULE_AUTHOR(CORE_AUTHOR);
46MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047MODULE_LICENSE("GPL and additional rights");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_PARM_DESC(debug, "Enable debug output");
Ville Syrjälä4ed0ce32014-08-06 14:49:53 +030049MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs] (0: never disable, <0: disable immediately)");
Mario Kleiner27641c32010-10-23 04:20:23 +020050MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
Imre Deakc61eef72012-10-23 18:53:26 +000051MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Dave Jonesc0758142005-10-03 15:02:20 -040053module_param_named(debug, drm_debug, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David Herrmann0d639882014-02-24 15:53:25 +010055static DEFINE_SPINLOCK(drm_minor_lock);
David Herrmann1b7199f2014-07-23 12:29:56 +020056static struct idr drm_minors_idr;
Dave Airlie2c14f282008-04-21 16:47:32 +100057
David Herrmann1b7199f2014-07-23 12:29:56 +020058static struct dentry *drm_debugfs_root;
Joe Perches5ad3d882011-04-17 20:35:51 -070059
Joe Perchesa1f1a792014-10-11 22:08:57 -070060void drm_err(const char *format, ...)
Joe Perches5ad3d882011-04-17 20:35:51 -070061{
62 struct va_format vaf;
63 va_list args;
Joe Perches5ad3d882011-04-17 20:35:51 -070064
65 va_start(args, format);
66
67 vaf.fmt = format;
68 vaf.va = &args;
69
Scott Wood2ee762b2015-03-11 22:13:50 -050070 printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
Joe Perchesa1f1a792014-10-11 22:08:57 -070071 __builtin_return_address(0), &vaf);
Joe Perches5ad3d882011-04-17 20:35:51 -070072
73 va_end(args);
Joe Perches5ad3d882011-04-17 20:35:51 -070074}
75EXPORT_SYMBOL(drm_err);
76
Lespiau, Damien1287aa92014-03-24 15:53:17 +000077void drm_ut_debug_printk(const char *function_name, const char *format, ...)
yakui_zhao4fefcb22009-06-02 14:09:47 +080078{
Daniel Vetterfffb9062013-11-17 22:25:02 +010079 struct va_format vaf;
yakui_zhao4fefcb22009-06-02 14:09:47 +080080 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Lespiau, Damiena73d4e92014-03-24 15:53:15 +000082 va_start(args, format);
83 vaf.fmt = format;
84 vaf.va = &args;
Daniel Vetterfffb9062013-11-17 22:25:02 +010085
Lespiau, Damien0ed02982014-03-24 15:53:18 +000086 printk(KERN_DEBUG "[" DRM_NAME ":%s] %pV", function_name, &vaf);
Lespiau, Damiena73d4e92014-03-24 15:53:15 +000087
88 va_end(args);
yakui_zhao4fefcb22009-06-02 14:09:47 +080089}
90EXPORT_SYMBOL(drm_ut_debug_printk);
Joe Perches5ad3d882011-04-17 20:35:51 -070091
Dave Airlie7c1c2872008-11-28 14:22:24 +100092struct drm_master *drm_master_create(struct drm_minor *minor)
93{
94 struct drm_master *master;
95
Eric Anholt9a298b22009-03-24 12:23:04 -070096 master = kzalloc(sizeof(*master), GFP_KERNEL);
Dave Airlie7c1c2872008-11-28 14:22:24 +100097 if (!master)
98 return NULL;
99
100 kref_init(&master->refcount);
101 spin_lock_init(&master->lock.spinlock);
102 init_waitqueue_head(&master->lock.lock_queue);
David Herrmann32e7b942015-05-04 21:01:30 +0200103 idr_init(&master->magic_map);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000104 master->minor = minor;
105
Dave Airlie7c1c2872008-11-28 14:22:24 +1000106 return master;
107}
108
109struct drm_master *drm_master_get(struct drm_master *master)
110{
111 kref_get(&master->refcount);
112 return master;
113}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100114EXPORT_SYMBOL(drm_master_get);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000115
116static void drm_master_destroy(struct kref *kref)
117{
118 struct drm_master *master = container_of(kref, struct drm_master, refcount);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000119 struct drm_device *dev = master->minor->dev;
Dave Airliec1ff85d2009-01-19 17:17:58 +1000120 struct drm_map_list *r_list, *list_temp;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000121
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100122 mutex_lock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000123 if (dev->driver->master_destroy)
124 dev->driver->master_destroy(dev, master);
125
Dave Airliec1ff85d2009-01-19 17:17:58 +1000126 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
127 if (r_list->master == master) {
David Herrmann9fc5cde2014-08-29 12:12:28 +0200128 drm_legacy_rmmap_locked(dev, r_list->map);
Dave Airliec1ff85d2009-01-19 17:17:58 +1000129 r_list = NULL;
130 }
131 }
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100132 mutex_unlock(&dev->struct_mutex);
David Herrmann32e7b942015-05-04 21:01:30 +0200133
134 idr_destroy(&master->magic_map);
David Herrmann4a324d32015-05-04 16:05:14 +0200135 kfree(master->unique);
Eric Anholt9a298b22009-03-24 12:23:04 -0700136 kfree(master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000137}
138
139void drm_master_put(struct drm_master **master)
140{
141 kref_put(&(*master)->refcount, drm_master_destroy);
142 *master = NULL;
143}
Thomas Hellstrom85bb0c32009-12-06 21:46:28 +0100144EXPORT_SYMBOL(drm_master_put);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000145
146int drm_setmaster_ioctl(struct drm_device *dev, void *data,
147 struct drm_file *file_priv)
148{
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200149 int ret = 0;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000150
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100151 mutex_lock(&dev->master_mutex);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000152 if (file_priv->is_master)
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100153 goto out_unlock;
Jonas Bonn6b008422009-04-16 09:00:02 +0200154
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100155 if (file_priv->minor->master) {
156 ret = -EINVAL;
157 goto out_unlock;
158 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000159
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100160 if (!file_priv->master) {
161 ret = -EINVAL;
162 goto out_unlock;
163 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000164
David Herrmann08bec5b2012-11-15 13:04:37 +0000165 file_priv->minor->master = drm_master_get(file_priv->master);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000166 file_priv->is_master = 1;
David Herrmann08bec5b2012-11-15 13:04:37 +0000167 if (dev->driver->master_set) {
168 ret = dev->driver->master_set(dev, file_priv, false);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000169 if (unlikely(ret != 0)) {
170 file_priv->is_master = 0;
David Herrmann08bec5b2012-11-15 13:04:37 +0000171 drm_master_put(&file_priv->minor->master);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000172 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000173 }
174
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100175out_unlock:
176 mutex_unlock(&dev->master_mutex);
Benjamin Gaignard53ef1602013-06-26 17:58:59 +0200177 return ret;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000178}
179
180int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
181 struct drm_file *file_priv)
182{
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100183 int ret = -EINVAL;
184
185 mutex_lock(&dev->master_mutex);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000186 if (!file_priv->is_master)
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100187 goto out_unlock;
Jonas Bonn6b008422009-04-16 09:00:02 +0200188
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000189 if (!file_priv->minor->master)
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100190 goto out_unlock;
Dave Airlie07f1c7a2009-04-20 09:32:50 +1000191
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100192 ret = 0;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000193 if (dev->driver->master_drop)
194 dev->driver->master_drop(dev, file_priv, false);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000195 drm_master_put(&file_priv->minor->master);
Dave Airlie7963e9d2014-08-08 07:30:53 +1000196 file_priv->is_master = 0;
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100197
198out_unlock:
199 mutex_unlock(&dev->master_mutex);
200 return ret;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000201}
202
David Herrmann0d639882014-02-24 15:53:25 +0100203/*
204 * DRM Minors
205 * A DRM device can provide several char-dev interfaces on the DRM-Major. Each
206 * of them is represented by a drm_minor object. Depending on the capabilities
207 * of the device-driver, different interfaces are registered.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *
David Herrmann0d639882014-02-24 15:53:25 +0100209 * Minors can be accessed via dev->$minor_name. This pointer is either
210 * NULL or a valid drm_minor pointer and stays valid as long as the device is
211 * valid. This means, DRM minors have the same life-time as the underlying
212 * device. However, this doesn't mean that the minor is active. Minors are
213 * registered and unregistered dynamically according to device-state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 */
David Herrmann0d639882014-02-24 15:53:25 +0100215
David Herrmann05b701f2014-01-29 12:43:56 +0100216static struct drm_minor **drm_minor_get_slot(struct drm_device *dev,
217 unsigned int type)
218{
219 switch (type) {
220 case DRM_MINOR_LEGACY:
221 return &dev->primary;
222 case DRM_MINOR_RENDER:
223 return &dev->render;
224 case DRM_MINOR_CONTROL:
225 return &dev->control;
226 default:
227 return NULL;
228 }
229}
230
231static int drm_minor_alloc(struct drm_device *dev, unsigned int type)
232{
233 struct drm_minor *minor;
David Herrmannf1b85962014-07-23 10:34:52 +0200234 unsigned long flags;
235 int r;
David Herrmann05b701f2014-01-29 12:43:56 +0100236
237 minor = kzalloc(sizeof(*minor), GFP_KERNEL);
238 if (!minor)
239 return -ENOMEM;
240
241 minor->type = type;
242 minor->dev = dev;
David Herrmann05b701f2014-01-29 12:43:56 +0100243
David Herrmannf1b85962014-07-23 10:34:52 +0200244 idr_preload(GFP_KERNEL);
245 spin_lock_irqsave(&drm_minor_lock, flags);
246 r = idr_alloc(&drm_minors_idr,
247 NULL,
248 64 * type,
249 64 * (type + 1),
250 GFP_NOWAIT);
251 spin_unlock_irqrestore(&drm_minor_lock, flags);
252 idr_preload_end();
253
254 if (r < 0)
255 goto err_free;
256
257 minor->index = r;
258
David Herrmanne1728072014-07-23 11:38:38 +0200259 minor->kdev = drm_sysfs_minor_alloc(minor);
260 if (IS_ERR(minor->kdev)) {
261 r = PTR_ERR(minor->kdev);
262 goto err_index;
263 }
264
David Herrmann05b701f2014-01-29 12:43:56 +0100265 *drm_minor_get_slot(dev, type) = minor;
266 return 0;
David Herrmannf1b85962014-07-23 10:34:52 +0200267
David Herrmanne1728072014-07-23 11:38:38 +0200268err_index:
269 spin_lock_irqsave(&drm_minor_lock, flags);
270 idr_remove(&drm_minors_idr, minor->index);
271 spin_unlock_irqrestore(&drm_minor_lock, flags);
David Herrmannf1b85962014-07-23 10:34:52 +0200272err_free:
273 kfree(minor);
274 return r;
David Herrmann05b701f2014-01-29 12:43:56 +0100275}
276
David Herrmannbd9dfa92014-01-29 12:55:48 +0100277static void drm_minor_free(struct drm_device *dev, unsigned int type)
278{
David Herrmannf1b85962014-07-23 10:34:52 +0200279 struct drm_minor **slot, *minor;
280 unsigned long flags;
David Herrmannbd9dfa92014-01-29 12:55:48 +0100281
282 slot = drm_minor_get_slot(dev, type);
David Herrmannf1b85962014-07-23 10:34:52 +0200283 minor = *slot;
284 if (!minor)
285 return;
286
David Herrmanne1728072014-07-23 11:38:38 +0200287 put_device(minor->kdev);
David Herrmannf1b85962014-07-23 10:34:52 +0200288
289 spin_lock_irqsave(&drm_minor_lock, flags);
290 idr_remove(&drm_minors_idr, minor->index);
291 spin_unlock_irqrestore(&drm_minor_lock, flags);
292
293 kfree(minor);
294 *slot = NULL;
David Herrmannbd9dfa92014-01-29 12:55:48 +0100295}
296
David Herrmannafcdbc82014-01-29 12:57:05 +0100297static int drm_minor_register(struct drm_device *dev, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
David Herrmannf1b85962014-07-23 10:34:52 +0200299 struct drm_minor *minor;
David Herrmann0d639882014-02-24 15:53:25 +0100300 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 DRM_DEBUG("\n");
304
David Herrmannf1b85962014-07-23 10:34:52 +0200305 minor = *drm_minor_get_slot(dev, type);
306 if (!minor)
David Herrmann05b701f2014-01-29 12:43:56 +0100307 return 0;
308
David Herrmannf1b85962014-07-23 10:34:52 +0200309 ret = drm_debugfs_init(minor, minor->index, drm_debugfs_root);
Ben Gamari955b12d2009-02-17 20:08:49 -0500310 if (ret) {
GeunSik Lim156f5a72009-06-02 15:01:37 +0900311 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
David Herrmannf1b85962014-07-23 10:34:52 +0200312 return ret;
Ben Gamari955b12d2009-02-17 20:08:49 -0500313 }
Dave Airlie2c14f282008-04-21 16:47:32 +1000314
David Herrmanne1728072014-07-23 11:38:38 +0200315 ret = device_add(minor->kdev);
316 if (ret)
Daniel Vettercb6458f2013-08-08 15:41:34 +0200317 goto err_debugfs;
Dave Airlie2c14f282008-04-21 16:47:32 +1000318
David Herrmann0d639882014-02-24 15:53:25 +0100319 /* replace NULL with @minor so lookups will succeed from now on */
320 spin_lock_irqsave(&drm_minor_lock, flags);
David Herrmannf1b85962014-07-23 10:34:52 +0200321 idr_replace(&drm_minors_idr, minor, minor->index);
David Herrmann0d639882014-02-24 15:53:25 +0100322 spin_unlock_irqrestore(&drm_minor_lock, flags);
Dave Airlie2c14f282008-04-21 16:47:32 +1000323
David Herrmannf1b85962014-07-23 10:34:52 +0200324 DRM_DEBUG("new minor registered %d\n", minor->index);
Dave Airlie2c14f282008-04-21 16:47:32 +1000325 return 0;
326
Daniel Vettercb6458f2013-08-08 15:41:34 +0200327err_debugfs:
David Herrmannf1b85962014-07-23 10:34:52 +0200328 drm_debugfs_cleanup(minor);
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;
David Herrmann0d639882014-02-24 15:53:25 +0100335 unsigned long flags;
David Herrmannafcdbc82014-01-29 12:57:05 +0100336
337 minor = *drm_minor_get_slot(dev, type);
David Herrmanne1728072014-07-23 11:38:38 +0200338 if (!minor || !device_is_registered(minor->kdev))
David Herrmannf73aca52013-10-20 18:55:40 +0200339 return;
340
David Herrmannf1b85962014-07-23 10:34:52 +0200341 /* replace @minor with NULL so lookups will fail from now on */
David Herrmann0d639882014-02-24 15:53:25 +0100342 spin_lock_irqsave(&drm_minor_lock, flags);
David Herrmannf1b85962014-07-23 10:34:52 +0200343 idr_replace(&drm_minors_idr, NULL, minor->index);
David Herrmann0d639882014-02-24 15:53:25 +0100344 spin_unlock_irqrestore(&drm_minor_lock, flags);
David Herrmann0d639882014-02-24 15:53:25 +0100345
David Herrmanne1728072014-07-23 11:38:38 +0200346 device_del(minor->kdev);
347 dev_set_drvdata(minor->kdev, NULL); /* safety belt */
David Herrmann865fb472013-10-20 18:55:43 +0200348 drm_debugfs_cleanup(minor);
David Herrmannf73aca52013-10-20 18:55:40 +0200349}
350
351/**
David Herrmann1616c522014-01-29 10:49:19 +0100352 * drm_minor_acquire - Acquire a DRM minor
353 * @minor_id: Minor ID of the DRM-minor
David Herrmannf73aca52013-10-20 18:55:40 +0200354 *
David Herrmann1616c522014-01-29 10:49:19 +0100355 * Looks up the given minor-ID and returns the respective DRM-minor object. The
356 * refence-count of the underlying device is increased so you must release this
357 * object with drm_minor_release().
358 *
359 * As long as you hold this minor, it is guaranteed that the object and the
360 * minor->dev pointer will stay valid! However, the device may get unplugged and
361 * unregistered while you hold the minor.
362 *
363 * Returns:
364 * Pointer to minor-object with increased device-refcount, or PTR_ERR on
365 * failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
David Herrmann1616c522014-01-29 10:49:19 +0100367struct drm_minor *drm_minor_acquire(unsigned int minor_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
David Herrmann1616c522014-01-29 10:49:19 +0100369 struct drm_minor *minor;
David Herrmann0d639882014-02-24 15:53:25 +0100370 unsigned long flags;
Eric Anholt673a3942008-07-30 12:06:12 -0700371
David Herrmann0d639882014-02-24 15:53:25 +0100372 spin_lock_irqsave(&drm_minor_lock, flags);
David Herrmann1616c522014-01-29 10:49:19 +0100373 minor = idr_find(&drm_minors_idr, minor_id);
David Herrmann0d639882014-02-24 15:53:25 +0100374 if (minor)
375 drm_dev_ref(minor->dev);
376 spin_unlock_irqrestore(&drm_minor_lock, flags);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000377
David Herrmann0d639882014-02-24 15:53:25 +0100378 if (!minor) {
379 return ERR_PTR(-ENODEV);
380 } else if (drm_device_is_unplugged(minor->dev)) {
381 drm_dev_unref(minor->dev);
382 return ERR_PTR(-ENODEV);
383 }
384
David Herrmann1616c522014-01-29 10:49:19 +0100385 return minor;
386}
387
388/**
389 * drm_minor_release - Release DRM minor
390 * @minor: Pointer to DRM minor object
391 *
392 * Release a minor that was previously acquired via drm_minor_acquire().
393 */
394void drm_minor_release(struct drm_minor *minor)
395{
396 drm_dev_unref(minor->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500398
399/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200400 * drm_put_dev - Unregister and release a DRM device
401 * @dev: DRM device
402 *
403 * Called at module unload time or when a PCI device is unplugged.
404 *
405 * Use of this function is discouraged. It will eventually go away completely.
406 * Please use drm_dev_unregister() and drm_dev_unref() explicitly instead.
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500407 *
408 * Cleans up all DRM device, calling drm_lastclose().
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500409 */
410void drm_put_dev(struct drm_device *dev)
411{
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500412 DRM_DEBUG("\n");
413
414 if (!dev) {
415 DRM_ERROR("cleanup called no dev\n");
416 return;
417 }
418
David Herrmannc3a49732013-10-02 11:23:38 +0200419 drm_dev_unregister(dev);
David Herrmann099d1c22014-01-29 10:21:36 +0100420 drm_dev_unref(dev);
Kristian Høgsberg112b7152009-01-04 16:55:33 -0500421}
422EXPORT_SYMBOL(drm_put_dev);
Dave Airlie2c07a212012-02-20 14:18:07 +0000423
424void drm_unplug_dev(struct drm_device *dev)
425{
426 /* for a USB device */
David Herrmannafcdbc82014-01-29 12:57:05 +0100427 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
428 drm_minor_unregister(dev, DRM_MINOR_RENDER);
429 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
Dave Airlie2c07a212012-02-20 14:18:07 +0000430
431 mutex_lock(&drm_global_mutex);
432
433 drm_device_set_unplugged(dev);
434
435 if (dev->open_count == 0) {
436 drm_put_dev(dev);
437 }
438 mutex_unlock(&drm_global_mutex);
439}
440EXPORT_SYMBOL(drm_unplug_dev);
David Herrmann1bb72532013-10-02 11:23:34 +0200441
David Herrmann31bbe162014-01-03 14:09:47 +0100442/*
443 * DRM internal mount
444 * We want to be able to allocate our own "struct address_space" to control
445 * memory-mappings in VRAM (or stolen RAM, ...). However, core MM does not allow
446 * stand-alone address_space objects, so we need an underlying inode. As there
447 * is no way to allocate an independent inode easily, we need a fake internal
448 * VFS mount-point.
449 *
450 * The drm_fs_inode_new() function allocates a new inode, drm_fs_inode_free()
451 * frees it again. You are allowed to use iget() and iput() to get references to
452 * the inode. But each drm_fs_inode_new() call must be paired with exactly one
453 * drm_fs_inode_free() call (which does not have to be the last iput()).
454 * We use drm_fs_inode_*() to manage our internal VFS mount-point and share it
455 * between multiple inode-users. You could, technically, call
456 * iget() + drm_fs_inode_free() directly after alloc and sometime later do an
457 * iput(), but this way you'd end up with a new vfsmount for each inode.
458 */
459
460static int drm_fs_cnt;
461static struct vfsmount *drm_fs_mnt;
462
463static const struct dentry_operations drm_fs_dops = {
464 .d_dname = simple_dname,
465};
466
467static const struct super_operations drm_fs_sops = {
468 .statfs = simple_statfs,
469};
470
471static struct dentry *drm_fs_mount(struct file_system_type *fs_type, int flags,
472 const char *dev_name, void *data)
473{
474 return mount_pseudo(fs_type,
475 "drm:",
476 &drm_fs_sops,
477 &drm_fs_dops,
478 0x010203ff);
479}
480
481static struct file_system_type drm_fs_type = {
482 .name = "drm",
483 .owner = THIS_MODULE,
484 .mount = drm_fs_mount,
485 .kill_sb = kill_anon_super,
486};
487
488static struct inode *drm_fs_inode_new(void)
489{
490 struct inode *inode;
491 int r;
492
493 r = simple_pin_fs(&drm_fs_type, &drm_fs_mnt, &drm_fs_cnt);
494 if (r < 0) {
495 DRM_ERROR("Cannot mount pseudo fs: %d\n", r);
496 return ERR_PTR(r);
497 }
498
499 inode = alloc_anon_inode(drm_fs_mnt->mnt_sb);
500 if (IS_ERR(inode))
501 simple_release_fs(&drm_fs_mnt, &drm_fs_cnt);
502
503 return inode;
504}
505
506static void drm_fs_inode_free(struct inode *inode)
507{
508 if (inode) {
509 iput(inode);
510 simple_release_fs(&drm_fs_mnt, &drm_fs_cnt);
511 }
512}
513
David Herrmann1bb72532013-10-02 11:23:34 +0200514/**
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200515 * drm_dev_alloc - Allocate new DRM device
David Herrmann1bb72532013-10-02 11:23:34 +0200516 * @driver: DRM driver to allocate device for
517 * @parent: Parent device object
518 *
519 * Allocate and initialize a new DRM device. No device registration is done.
David Herrmannc22f0ac2013-10-02 11:23:35 +0200520 * Call drm_dev_register() to advertice the device to user space and register it
521 * with other core subsystems.
David Herrmann1bb72532013-10-02 11:23:34 +0200522 *
David Herrmann099d1c22014-01-29 10:21:36 +0100523 * The initial ref-count of the object is 1. Use drm_dev_ref() and
524 * drm_dev_unref() to take and drop further ref-counts.
525 *
Daniel Vetterb0ff4b92014-11-24 20:01:58 +0100526 * Note that for purely virtual devices @parent can be NULL.
527 *
David Herrmann1bb72532013-10-02 11:23:34 +0200528 * RETURNS:
529 * Pointer to new DRM device, or NULL if out of memory.
530 */
531struct drm_device *drm_dev_alloc(struct drm_driver *driver,
532 struct device *parent)
533{
534 struct drm_device *dev;
535 int ret;
536
537 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
538 if (!dev)
539 return NULL;
540
David Herrmann099d1c22014-01-29 10:21:36 +0100541 kref_init(&dev->ref);
David Herrmann1bb72532013-10-02 11:23:34 +0200542 dev->dev = parent;
543 dev->driver = driver;
544
545 INIT_LIST_HEAD(&dev->filelist);
546 INIT_LIST_HEAD(&dev->ctxlist);
547 INIT_LIST_HEAD(&dev->vmalist);
548 INIT_LIST_HEAD(&dev->maplist);
549 INIT_LIST_HEAD(&dev->vblank_event_list);
550
Daniel Vetter2177a212013-12-16 11:21:06 +0100551 spin_lock_init(&dev->buf_lock);
David Herrmann1bb72532013-10-02 11:23:34 +0200552 spin_lock_init(&dev->event_lock);
553 mutex_init(&dev->struct_mutex);
554 mutex_init(&dev->ctxlist_mutex);
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100555 mutex_init(&dev->master_mutex);
David Herrmann1bb72532013-10-02 11:23:34 +0200556
David Herrmann6796cb12014-01-03 14:24:19 +0100557 dev->anon_inode = drm_fs_inode_new();
558 if (IS_ERR(dev->anon_inode)) {
559 ret = PTR_ERR(dev->anon_inode);
560 DRM_ERROR("Cannot allocate anonymous inode: %d\n", ret);
David Herrmann1bb72532013-10-02 11:23:34 +0200561 goto err_free;
David Herrmann6796cb12014-01-03 14:24:19 +0100562 }
563
David Herrmann05b701f2014-01-29 12:43:56 +0100564 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
565 ret = drm_minor_alloc(dev, DRM_MINOR_CONTROL);
566 if (ret)
567 goto err_minors;
Gustavo Padovanbcfe0c02015-08-13 17:06:39 -0300568
569 WARN_ON(driver->suspend || driver->resume);
David Herrmann05b701f2014-01-29 12:43:56 +0100570 }
571
David Herrmann6d6dfcf2014-03-16 14:38:40 +0100572 if (drm_core_check_feature(dev, DRIVER_RENDER)) {
David Herrmann05b701f2014-01-29 12:43:56 +0100573 ret = drm_minor_alloc(dev, DRM_MINOR_RENDER);
574 if (ret)
575 goto err_minors;
576 }
577
578 ret = drm_minor_alloc(dev, DRM_MINOR_LEGACY);
579 if (ret)
580 goto err_minors;
581
David Herrmann6796cb12014-01-03 14:24:19 +0100582 if (drm_ht_create(&dev->map_hash, 12))
David Herrmann05b701f2014-01-29 12:43:56 +0100583 goto err_minors;
David Herrmann1bb72532013-10-02 11:23:34 +0200584
Daniel Vetterba6976c2015-06-23 11:22:36 +0200585 drm_legacy_ctxbitmap_init(dev);
David Herrmann1bb72532013-10-02 11:23:34 +0200586
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200587 if (drm_core_check_feature(dev, DRIVER_GEM)) {
David Herrmann1bb72532013-10-02 11:23:34 +0200588 ret = drm_gem_init(dev);
589 if (ret) {
590 DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
591 goto err_ctxbitmap;
592 }
593 }
594
595 return dev;
596
597err_ctxbitmap:
David Herrmanne7b960702014-07-24 12:10:04 +0200598 drm_legacy_ctxbitmap_cleanup(dev);
David Herrmann1bb72532013-10-02 11:23:34 +0200599 drm_ht_remove(&dev->map_hash);
David Herrmann05b701f2014-01-29 12:43:56 +0100600err_minors:
David Herrmannbd9dfa92014-01-29 12:55:48 +0100601 drm_minor_free(dev, DRM_MINOR_LEGACY);
602 drm_minor_free(dev, DRM_MINOR_RENDER);
603 drm_minor_free(dev, DRM_MINOR_CONTROL);
David Herrmann6796cb12014-01-03 14:24:19 +0100604 drm_fs_inode_free(dev->anon_inode);
David Herrmann1bb72532013-10-02 11:23:34 +0200605err_free:
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100606 mutex_destroy(&dev->master_mutex);
David Herrmann1bb72532013-10-02 11:23:34 +0200607 kfree(dev);
608 return NULL;
609}
610EXPORT_SYMBOL(drm_dev_alloc);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200611
David Herrmann099d1c22014-01-29 10:21:36 +0100612static void drm_dev_release(struct kref *ref)
David Herrmann0dc8fe52013-10-02 11:23:37 +0200613{
David Herrmann099d1c22014-01-29 10:21:36 +0100614 struct drm_device *dev = container_of(ref, struct drm_device, ref);
David Herrmann8f6599d2013-10-20 18:55:45 +0200615
Andrzej Hajda1bcecfa2014-09-30 16:49:56 +0200616 if (drm_core_check_feature(dev, DRIVER_GEM))
David Herrmann0dc8fe52013-10-02 11:23:37 +0200617 drm_gem_destroy(dev);
618
David Herrmanne7b960702014-07-24 12:10:04 +0200619 drm_legacy_ctxbitmap_cleanup(dev);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200620 drm_ht_remove(&dev->map_hash);
David Herrmann6796cb12014-01-03 14:24:19 +0100621 drm_fs_inode_free(dev->anon_inode);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200622
David Herrmannbd9dfa92014-01-29 12:55:48 +0100623 drm_minor_free(dev, DRM_MINOR_LEGACY);
624 drm_minor_free(dev, DRM_MINOR_RENDER);
625 drm_minor_free(dev, DRM_MINOR_CONTROL);
626
Thomas Hellstromc996fd02014-02-25 19:57:44 +0100627 mutex_destroy(&dev->master_mutex);
Thierry Redingca8e2ad2014-04-11 15:23:00 +0200628 kfree(dev->unique);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200629 kfree(dev);
630}
David Herrmann099d1c22014-01-29 10:21:36 +0100631
632/**
633 * drm_dev_ref - Take reference of a DRM device
634 * @dev: device to take reference of or NULL
635 *
636 * This increases the ref-count of @dev by one. You *must* already own a
637 * reference when calling this. Use drm_dev_unref() to drop this reference
638 * again.
639 *
640 * This function never fails. However, this function does not provide *any*
641 * guarantee whether the device is alive or running. It only provides a
642 * reference to the object and the memory associated with it.
643 */
644void drm_dev_ref(struct drm_device *dev)
645{
646 if (dev)
647 kref_get(&dev->ref);
648}
649EXPORT_SYMBOL(drm_dev_ref);
650
651/**
652 * drm_dev_unref - Drop reference of a DRM device
653 * @dev: device to drop reference of or NULL
654 *
655 * This decreases the ref-count of @dev by one. The device is destroyed if the
656 * ref-count drops to zero.
657 */
658void drm_dev_unref(struct drm_device *dev)
659{
660 if (dev)
661 kref_put(&dev->ref, drm_dev_release);
662}
663EXPORT_SYMBOL(drm_dev_unref);
David Herrmann0dc8fe52013-10-02 11:23:37 +0200664
665/**
David Herrmannc22f0ac2013-10-02 11:23:35 +0200666 * drm_dev_register - Register DRM device
667 * @dev: Device to register
Thierry Redingc6a1af8a2014-05-19 13:39:07 +0200668 * @flags: Flags passed to the driver's .load() function
David Herrmannc22f0ac2013-10-02 11:23:35 +0200669 *
670 * Register the DRM device @dev with the system, advertise device to user-space
671 * and start normal device operation. @dev must be allocated via drm_dev_alloc()
672 * previously.
673 *
674 * Never call this twice on any device!
675 *
676 * RETURNS:
677 * 0 on success, negative error code on failure.
678 */
679int drm_dev_register(struct drm_device *dev, unsigned long flags)
680{
681 int ret;
682
683 mutex_lock(&drm_global_mutex);
684
David Herrmannafcdbc82014-01-29 12:57:05 +0100685 ret = drm_minor_register(dev, DRM_MINOR_CONTROL);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200686 if (ret)
David Herrmann05b701f2014-01-29 12:43:56 +0100687 goto err_minors;
688
David Herrmannafcdbc82014-01-29 12:57:05 +0100689 ret = drm_minor_register(dev, DRM_MINOR_RENDER);
David Herrmann05b701f2014-01-29 12:43:56 +0100690 if (ret)
691 goto err_minors;
692
David Herrmannafcdbc82014-01-29 12:57:05 +0100693 ret = drm_minor_register(dev, DRM_MINOR_LEGACY);
David Herrmann05b701f2014-01-29 12:43:56 +0100694 if (ret)
695 goto err_minors;
David Herrmannc22f0ac2013-10-02 11:23:35 +0200696
697 if (dev->driver->load) {
698 ret = dev->driver->load(dev, flags);
699 if (ret)
David Herrmann05b701f2014-01-29 12:43:56 +0100700 goto err_minors;
David Herrmannc22f0ac2013-10-02 11:23:35 +0200701 }
702
David Herrmannc22f0ac2013-10-02 11:23:35 +0200703 ret = 0;
704 goto out_unlock;
705
David Herrmann05b701f2014-01-29 12:43:56 +0100706err_minors:
David Herrmannafcdbc82014-01-29 12:57:05 +0100707 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
708 drm_minor_unregister(dev, DRM_MINOR_RENDER);
709 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
David Herrmannc22f0ac2013-10-02 11:23:35 +0200710out_unlock:
711 mutex_unlock(&drm_global_mutex);
712 return ret;
713}
714EXPORT_SYMBOL(drm_dev_register);
David Herrmannc3a49732013-10-02 11:23:38 +0200715
716/**
717 * drm_dev_unregister - Unregister DRM device
718 * @dev: Device to unregister
719 *
720 * Unregister the DRM device from the system. This does the reverse of
721 * drm_dev_register() but does not deallocate the device. The caller must call
David Herrmann099d1c22014-01-29 10:21:36 +0100722 * drm_dev_unref() to drop their final reference.
David Herrmannc3a49732013-10-02 11:23:38 +0200723 */
724void drm_dev_unregister(struct drm_device *dev)
725{
726 struct drm_map_list *r_list, *list_temp;
727
728 drm_lastclose(dev);
729
730 if (dev->driver->unload)
731 dev->driver->unload(dev);
732
Daniel Vetter4efafeb2013-12-11 11:34:38 +0100733 if (dev->agp)
734 drm_pci_agp_destroy(dev);
David Herrmannc3a49732013-10-02 11:23:38 +0200735
736 drm_vblank_cleanup(dev);
737
738 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
David Herrmann9fc5cde2014-08-29 12:12:28 +0200739 drm_legacy_rmmap(dev, r_list->map);
David Herrmannc3a49732013-10-02 11:23:38 +0200740
David Herrmannafcdbc82014-01-29 12:57:05 +0100741 drm_minor_unregister(dev, DRM_MINOR_LEGACY);
742 drm_minor_unregister(dev, DRM_MINOR_RENDER);
743 drm_minor_unregister(dev, DRM_MINOR_CONTROL);
David Herrmannc3a49732013-10-02 11:23:38 +0200744}
745EXPORT_SYMBOL(drm_dev_unregister);
Thierry Redingca8e2ad2014-04-11 15:23:00 +0200746
747/**
748 * drm_dev_set_unique - Set the unique name of a DRM device
749 * @dev: device of which to set the unique name
750 * @fmt: format string for unique name
751 *
752 * Sets the unique name of a DRM device using the specified format string and
753 * a variable list of arguments. Drivers can use this at driver probe time if
754 * the unique name of the devices they drive is static.
755 *
756 * Return: 0 on success or a negative error code on failure.
757 */
758int drm_dev_set_unique(struct drm_device *dev, const char *fmt, ...)
759{
760 va_list ap;
761
762 kfree(dev->unique);
763
764 va_start(ap, fmt);
765 dev->unique = kvasprintf(GFP_KERNEL, fmt, ap);
766 va_end(ap);
767
768 return dev->unique ? 0 : -ENOMEM;
769}
770EXPORT_SYMBOL(drm_dev_set_unique);
David Herrmann1b7199f2014-07-23 12:29:56 +0200771
772/*
773 * DRM Core
774 * The DRM core module initializes all global DRM objects and makes them
775 * available to drivers. Once setup, drivers can probe their respective
776 * devices.
777 * Currently, core management includes:
778 * - The "DRM-Global" key/value database
779 * - Global ID management for connectors
780 * - DRM major number allocation
781 * - DRM minor management
782 * - DRM sysfs class
783 * - DRM debugfs root
784 *
785 * Furthermore, the DRM core provides dynamic char-dev lookups. For each
786 * interface registered on a DRM device, you can request minor numbers from DRM
787 * core. DRM core takes care of major-number management and char-dev
788 * registration. A stub ->open() callback forwards any open() requests to the
789 * registered minor.
790 */
791
792static int drm_stub_open(struct inode *inode, struct file *filp)
793{
794 const struct file_operations *new_fops;
795 struct drm_minor *minor;
796 int err;
797
798 DRM_DEBUG("\n");
799
800 mutex_lock(&drm_global_mutex);
801 minor = drm_minor_acquire(iminor(inode));
802 if (IS_ERR(minor)) {
803 err = PTR_ERR(minor);
804 goto out_unlock;
805 }
806
807 new_fops = fops_get(minor->dev->driver->fops);
808 if (!new_fops) {
809 err = -ENODEV;
810 goto out_release;
811 }
812
813 replace_fops(filp, new_fops);
814 if (filp->f_op->open)
815 err = filp->f_op->open(inode, filp);
816 else
817 err = 0;
818
819out_release:
820 drm_minor_release(minor);
821out_unlock:
822 mutex_unlock(&drm_global_mutex);
823 return err;
824}
825
826static const struct file_operations drm_stub_fops = {
827 .owner = THIS_MODULE,
828 .open = drm_stub_open,
829 .llseek = noop_llseek,
830};
831
832static int __init drm_core_init(void)
833{
834 int ret = -ENOMEM;
835
836 drm_global_init();
837 drm_connector_ida_init();
838 idr_init(&drm_minors_idr);
839
840 if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
841 goto err_p1;
842
David Herrmannfcc90212015-09-09 14:21:30 +0200843 ret = drm_sysfs_init();
844 if (ret < 0) {
David Herrmann1b7199f2014-07-23 12:29:56 +0200845 printk(KERN_ERR "DRM: Error creating drm class.\n");
David Herrmann1b7199f2014-07-23 12:29:56 +0200846 goto err_p2;
847 }
848
849 drm_debugfs_root = debugfs_create_dir("dri", NULL);
850 if (!drm_debugfs_root) {
851 DRM_ERROR("Cannot create /sys/kernel/debug/dri\n");
852 ret = -1;
853 goto err_p3;
854 }
855
856 DRM_INFO("Initialized %s %d.%d.%d %s\n",
857 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
858 return 0;
859err_p3:
860 drm_sysfs_destroy();
861err_p2:
862 unregister_chrdev(DRM_MAJOR, "drm");
863
864 idr_destroy(&drm_minors_idr);
865err_p1:
866 return ret;
867}
868
869static void __exit drm_core_exit(void)
870{
871 debugfs_remove(drm_debugfs_root);
872 drm_sysfs_destroy();
873
874 unregister_chrdev(DRM_MAJOR, "drm");
875
876 drm_connector_ida_destroy();
877 idr_destroy(&drm_minors_idr);
878}
879
880module_init(drm_core_init);
881module_exit(drm_core_exit);