5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
9 * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
11 * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
12 * All Rights Reserved.
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:
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
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.
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/slab.h>
38 #include <drm/drm_core.h>
40 unsigned int drm_debug
= 0; /* 1 to enable debug output */
41 EXPORT_SYMBOL(drm_debug
);
43 unsigned int drm_rnodes
= 0; /* 1 to enable experimental render nodes API */
44 EXPORT_SYMBOL(drm_rnodes
);
46 unsigned int drm_vblank_offdelay
= 5000; /* Default to 5000 msecs. */
47 EXPORT_SYMBOL(drm_vblank_offdelay
);
49 unsigned int drm_timestamp_precision
= 20; /* Default to 20 usecs. */
50 EXPORT_SYMBOL(drm_timestamp_precision
);
53 * Default to use monotonic timestamps for wait-for-vblank and page-flip
56 unsigned int drm_timestamp_monotonic
= 1;
58 MODULE_AUTHOR(CORE_AUTHOR
);
59 MODULE_DESCRIPTION(CORE_DESC
);
60 MODULE_LICENSE("GPL and additional rights");
61 MODULE_PARM_DESC(debug
, "Enable debug output");
62 MODULE_PARM_DESC(rnodes
, "Enable experimental render nodes API");
63 MODULE_PARM_DESC(vblankoffdelay
, "Delay until vblank irq auto-disable [msecs]");
64 MODULE_PARM_DESC(timestamp_precision_usec
, "Max. error on timestamps [usecs]");
65 MODULE_PARM_DESC(timestamp_monotonic
, "Use monotonic timestamps");
67 module_param_named(debug
, drm_debug
, int, 0600);
68 module_param_named(rnodes
, drm_rnodes
, int, 0600);
69 module_param_named(vblankoffdelay
, drm_vblank_offdelay
, int, 0600);
70 module_param_named(timestamp_precision_usec
, drm_timestamp_precision
, int, 0600);
71 module_param_named(timestamp_monotonic
, drm_timestamp_monotonic
, int, 0600);
73 struct idr drm_minors_idr
;
75 struct class *drm_class
;
76 struct dentry
*drm_debugfs_root
;
78 int drm_err(const char *func
, const char *format
, ...)
84 va_start(args
, format
);
89 r
= printk(KERN_ERR
"[" DRM_NAME
":%s] *ERROR* %pV", func
, &vaf
);
95 EXPORT_SYMBOL(drm_err
);
97 void drm_ut_debug_printk(unsigned int request_level
,
99 const char *function_name
,
100 const char *format
, ...)
102 struct va_format vaf
;
105 if (drm_debug
& request_level
) {
106 va_start(args
, format
);
111 printk(KERN_DEBUG
"[%s:%s], %pV", prefix
,
112 function_name
, &vaf
);
114 printk(KERN_DEBUG
"%pV", &vaf
);
118 EXPORT_SYMBOL(drm_ut_debug_printk
);
120 static int drm_minor_get_id(struct drm_device
*dev
, int type
)
123 int base
= 0, limit
= 63;
125 if (type
== DRM_MINOR_CONTROL
) {
128 } else if (type
== DRM_MINOR_RENDER
) {
133 mutex_lock(&dev
->struct_mutex
);
134 ret
= idr_alloc(&drm_minors_idr
, NULL
, base
, limit
, GFP_KERNEL
);
135 mutex_unlock(&dev
->struct_mutex
);
137 return ret
== -ENOSPC
? -EINVAL
: ret
;
140 struct drm_master
*drm_master_create(struct drm_minor
*minor
)
142 struct drm_master
*master
;
144 master
= kzalloc(sizeof(*master
), GFP_KERNEL
);
148 kref_init(&master
->refcount
);
149 spin_lock_init(&master
->lock
.spinlock
);
150 init_waitqueue_head(&master
->lock
.lock_queue
);
151 drm_ht_create(&master
->magiclist
, DRM_MAGIC_HASH_ORDER
);
152 INIT_LIST_HEAD(&master
->magicfree
);
153 master
->minor
= minor
;
155 list_add_tail(&master
->head
, &minor
->master_list
);
160 struct drm_master
*drm_master_get(struct drm_master
*master
)
162 kref_get(&master
->refcount
);
165 EXPORT_SYMBOL(drm_master_get
);
167 static void drm_master_destroy(struct kref
*kref
)
169 struct drm_master
*master
= container_of(kref
, struct drm_master
, refcount
);
170 struct drm_magic_entry
*pt
, *next
;
171 struct drm_device
*dev
= master
->minor
->dev
;
172 struct drm_map_list
*r_list
, *list_temp
;
174 list_del(&master
->head
);
176 if (dev
->driver
->master_destroy
)
177 dev
->driver
->master_destroy(dev
, master
);
179 list_for_each_entry_safe(r_list
, list_temp
, &dev
->maplist
, head
) {
180 if (r_list
->master
== master
) {
181 drm_rmmap_locked(dev
, r_list
->map
);
186 if (master
->unique
) {
187 kfree(master
->unique
);
188 master
->unique
= NULL
;
189 master
->unique_len
= 0;
195 list_for_each_entry_safe(pt
, next
, &master
->magicfree
, head
) {
197 drm_ht_remove_item(&master
->magiclist
, &pt
->hash_item
);
201 drm_ht_remove(&master
->magiclist
);
206 void drm_master_put(struct drm_master
**master
)
208 kref_put(&(*master
)->refcount
, drm_master_destroy
);
211 EXPORT_SYMBOL(drm_master_put
);
213 int drm_setmaster_ioctl(struct drm_device
*dev
, void *data
,
214 struct drm_file
*file_priv
)
218 if (file_priv
->is_master
)
221 if (file_priv
->minor
->master
&& file_priv
->minor
->master
!= file_priv
->master
)
224 if (!file_priv
->master
)
227 if (file_priv
->minor
->master
)
230 mutex_lock(&dev
->struct_mutex
);
231 file_priv
->minor
->master
= drm_master_get(file_priv
->master
);
232 file_priv
->is_master
= 1;
233 if (dev
->driver
->master_set
) {
234 ret
= dev
->driver
->master_set(dev
, file_priv
, false);
235 if (unlikely(ret
!= 0)) {
236 file_priv
->is_master
= 0;
237 drm_master_put(&file_priv
->minor
->master
);
240 mutex_unlock(&dev
->struct_mutex
);
245 int drm_dropmaster_ioctl(struct drm_device
*dev
, void *data
,
246 struct drm_file
*file_priv
)
248 if (!file_priv
->is_master
)
251 if (!file_priv
->minor
->master
)
254 mutex_lock(&dev
->struct_mutex
);
255 if (dev
->driver
->master_drop
)
256 dev
->driver
->master_drop(dev
, file_priv
, false);
257 drm_master_put(&file_priv
->minor
->master
);
258 file_priv
->is_master
= 0;
259 mutex_unlock(&dev
->struct_mutex
);
264 * drm_get_minor - Allocate and register new DRM minor
266 * @minor: Pointer to where new minor is stored
267 * @type: Type of minor
269 * Allocate a new minor of the given type and register it. A pointer to the new
270 * minor is returned in @minor.
271 * Caller must hold the global DRM mutex.
274 * 0 on success, negative error code on failure.
276 static int drm_get_minor(struct drm_device
*dev
, struct drm_minor
**minor
,
279 struct drm_minor
*new_minor
;
285 minor_id
= drm_minor_get_id(dev
, type
);
289 new_minor
= kzalloc(sizeof(struct drm_minor
), GFP_KERNEL
);
295 new_minor
->type
= type
;
296 new_minor
->device
= MKDEV(DRM_MAJOR
, minor_id
);
297 new_minor
->dev
= dev
;
298 new_minor
->index
= minor_id
;
299 INIT_LIST_HEAD(&new_minor
->master_list
);
301 idr_replace(&drm_minors_idr
, new_minor
, minor_id
);
303 #if defined(CONFIG_DEBUG_FS)
304 ret
= drm_debugfs_init(new_minor
, minor_id
, drm_debugfs_root
);
306 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
311 ret
= drm_sysfs_device_add(new_minor
);
314 "DRM: Error sysfs_device_add.\n");
319 DRM_DEBUG("new minor assigned %d\n", minor_id
);
324 #if defined(CONFIG_DEBUG_FS)
325 drm_debugfs_cleanup(new_minor
);
330 idr_remove(&drm_minors_idr
, minor_id
);
336 * drm_unplug_minor - Unplug DRM minor
337 * @minor: Minor to unplug
339 * Unplugs the given DRM minor but keeps the object. So after this returns,
340 * minor->dev is still valid so existing open-files can still access it to get
341 * device information from their drm_file ojects.
342 * If the minor is already unplugged or if @minor is NULL, nothing is done.
343 * The global DRM mutex must be held by the caller.
345 static void drm_unplug_minor(struct drm_minor
*minor
)
347 if (!minor
|| !minor
->kdev
)
350 #if defined(CONFIG_DEBUG_FS)
351 drm_debugfs_cleanup(minor
);
354 drm_sysfs_device_remove(minor
);
355 idr_remove(&drm_minors_idr
, minor
->index
);
359 * drm_put_minor - Destroy DRM minor
360 * @minor: Minor to destroy
362 * This calls drm_unplug_minor() on the given minor and then frees it. Nothing
363 * is done if @minor is NULL. It is fine to call this on already unplugged
365 * The global DRM mutex must be held by the caller.
367 static void drm_put_minor(struct drm_minor
*minor
)
372 DRM_DEBUG("release secondary minor %d\n", minor
->index
);
374 drm_unplug_minor(minor
);
379 * Called via drm_exit() at module unload time or when pci device is
382 * Cleans up all DRM device, calling drm_lastclose().
385 void drm_put_dev(struct drm_device
*dev
)
390 DRM_ERROR("cleanup called no dev\n");
394 drm_dev_unregister(dev
);
397 EXPORT_SYMBOL(drm_put_dev
);
399 void drm_unplug_dev(struct drm_device
*dev
)
401 /* for a USB device */
402 if (drm_core_check_feature(dev
, DRIVER_MODESET
))
403 drm_unplug_minor(dev
->control
);
405 drm_unplug_minor(dev
->render
);
406 drm_unplug_minor(dev
->primary
);
408 mutex_lock(&drm_global_mutex
);
410 drm_device_set_unplugged(dev
);
412 if (dev
->open_count
== 0) {
415 mutex_unlock(&drm_global_mutex
);
417 EXPORT_SYMBOL(drm_unplug_dev
);
420 * drm_dev_alloc - Allocate new drm device
421 * @driver: DRM driver to allocate device for
422 * @parent: Parent device object
424 * Allocate and initialize a new DRM device. No device registration is done.
425 * Call drm_dev_register() to advertice the device to user space and register it
426 * with other core subsystems.
429 * Pointer to new DRM device, or NULL if out of memory.
431 struct drm_device
*drm_dev_alloc(struct drm_driver
*driver
,
432 struct device
*parent
)
434 struct drm_device
*dev
;
437 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
442 dev
->driver
= driver
;
444 INIT_LIST_HEAD(&dev
->filelist
);
445 INIT_LIST_HEAD(&dev
->ctxlist
);
446 INIT_LIST_HEAD(&dev
->vmalist
);
447 INIT_LIST_HEAD(&dev
->maplist
);
448 INIT_LIST_HEAD(&dev
->vblank_event_list
);
450 spin_lock_init(&dev
->count_lock
);
451 spin_lock_init(&dev
->event_lock
);
452 mutex_init(&dev
->struct_mutex
);
453 mutex_init(&dev
->ctxlist_mutex
);
455 if (drm_ht_create(&dev
->map_hash
, 12))
458 ret
= drm_ctxbitmap_init(dev
);
460 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
464 if (driver
->driver_features
& DRIVER_GEM
) {
465 ret
= drm_gem_init(dev
);
467 DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
475 drm_ctxbitmap_cleanup(dev
);
477 drm_ht_remove(&dev
->map_hash
);
482 EXPORT_SYMBOL(drm_dev_alloc
);
485 * drm_dev_free - Free DRM device
486 * @dev: DRM device to free
488 * Free a DRM device that has previously been allocated via drm_dev_alloc().
489 * You must not use kfree() instead or you will leak memory.
491 * This must not be called once the device got registered. Use drm_put_dev()
492 * instead, which then calls drm_dev_free().
494 void drm_dev_free(struct drm_device
*dev
)
496 drm_put_minor(dev
->control
);
497 drm_put_minor(dev
->render
);
498 drm_put_minor(dev
->primary
);
500 if (dev
->driver
->driver_features
& DRIVER_GEM
)
501 drm_gem_destroy(dev
);
503 drm_ctxbitmap_cleanup(dev
);
504 drm_ht_remove(&dev
->map_hash
);
509 EXPORT_SYMBOL(drm_dev_free
);
512 * drm_dev_register - Register DRM device
513 * @dev: Device to register
515 * Register the DRM device @dev with the system, advertise device to user-space
516 * and start normal device operation. @dev must be allocated via drm_dev_alloc()
519 * Never call this twice on any device!
522 * 0 on success, negative error code on failure.
524 int drm_dev_register(struct drm_device
*dev
, unsigned long flags
)
528 mutex_lock(&drm_global_mutex
);
530 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
531 ret
= drm_get_minor(dev
, &dev
->control
, DRM_MINOR_CONTROL
);
536 if (drm_core_check_feature(dev
, DRIVER_RENDER
) && drm_rnodes
) {
537 ret
= drm_get_minor(dev
, &dev
->render
, DRM_MINOR_RENDER
);
539 goto err_control_node
;
542 ret
= drm_get_minor(dev
, &dev
->primary
, DRM_MINOR_LEGACY
);
544 goto err_render_node
;
546 if (dev
->driver
->load
) {
547 ret
= dev
->driver
->load(dev
, flags
);
549 goto err_primary_node
;
552 /* setup grouping for legacy outputs */
553 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
554 ret
= drm_mode_group_init_legacy_group(dev
,
555 &dev
->primary
->mode_group
);
564 if (dev
->driver
->unload
)
565 dev
->driver
->unload(dev
);
567 drm_unplug_minor(dev
->primary
);
569 drm_unplug_minor(dev
->render
);
571 drm_unplug_minor(dev
->control
);
573 mutex_unlock(&drm_global_mutex
);
576 EXPORT_SYMBOL(drm_dev_register
);
579 * drm_dev_unregister - Unregister DRM device
580 * @dev: Device to unregister
582 * Unregister the DRM device from the system. This does the reverse of
583 * drm_dev_register() but does not deallocate the device. The caller must call
584 * drm_dev_free() to free all resources.
586 void drm_dev_unregister(struct drm_device
*dev
)
588 struct drm_map_list
*r_list
, *list_temp
;
592 if (dev
->driver
->unload
)
593 dev
->driver
->unload(dev
);
596 drm_pci_agp_destroy(dev
);
598 drm_vblank_cleanup(dev
);
600 list_for_each_entry_safe(r_list
, list_temp
, &dev
->maplist
, head
)
601 drm_rmmap(dev
, r_list
->map
);
603 drm_unplug_minor(dev
->control
);
604 drm_unplug_minor(dev
->render
);
605 drm_unplug_minor(dev
->primary
);
607 EXPORT_SYMBOL(drm_dev_unregister
);