2 * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
4 * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
7 * Author Rickard E. (Rik) Faith <faith@valinux.com>
9 * 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:
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
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.
29 #include <linux/debugfs.h>
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/mount.h>
34 #include <linux/slab.h>
36 #include <drm/drm_core.h>
37 #include "drm_legacy.h"
38 #include "drm_internal.h"
40 unsigned int drm_debug
= 0; /* 1 to enable debug output */
41 EXPORT_SYMBOL(drm_debug
);
43 MODULE_AUTHOR(CORE_AUTHOR
);
44 MODULE_DESCRIPTION(CORE_DESC
);
45 MODULE_LICENSE("GPL and additional rights");
46 MODULE_PARM_DESC(debug
, "Enable debug output");
47 MODULE_PARM_DESC(vblankoffdelay
, "Delay until vblank irq auto-disable [msecs] (0: never disable, <0: disable immediately)");
48 MODULE_PARM_DESC(timestamp_precision_usec
, "Max. error on timestamps [usecs]");
49 MODULE_PARM_DESC(timestamp_monotonic
, "Use monotonic timestamps");
51 module_param_named(debug
, drm_debug
, int, 0600);
53 static DEFINE_SPINLOCK(drm_minor_lock
);
54 static struct idr drm_minors_idr
;
56 struct class *drm_class
;
57 static struct dentry
*drm_debugfs_root
;
59 int drm_err(const char *func
, const char *format
, ...)
65 va_start(args
, format
);
70 r
= printk(KERN_ERR
"[" DRM_NAME
":%s] *ERROR* %pV", func
, &vaf
);
76 EXPORT_SYMBOL(drm_err
);
78 void drm_ut_debug_printk(const char *function_name
, const char *format
, ...)
83 va_start(args
, format
);
87 printk(KERN_DEBUG
"[" DRM_NAME
":%s] %pV", function_name
, &vaf
);
91 EXPORT_SYMBOL(drm_ut_debug_printk
);
93 #define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
95 struct drm_master
*drm_master_create(struct drm_minor
*minor
)
97 struct drm_master
*master
;
99 master
= kzalloc(sizeof(*master
), GFP_KERNEL
);
103 kref_init(&master
->refcount
);
104 spin_lock_init(&master
->lock
.spinlock
);
105 init_waitqueue_head(&master
->lock
.lock_queue
);
106 if (drm_ht_create(&master
->magiclist
, DRM_MAGIC_HASH_ORDER
)) {
110 INIT_LIST_HEAD(&master
->magicfree
);
111 master
->minor
= minor
;
116 struct drm_master
*drm_master_get(struct drm_master
*master
)
118 kref_get(&master
->refcount
);
121 EXPORT_SYMBOL(drm_master_get
);
123 static void drm_master_destroy(struct kref
*kref
)
125 struct drm_master
*master
= container_of(kref
, struct drm_master
, refcount
);
126 struct drm_device
*dev
= master
->minor
->dev
;
127 struct drm_map_list
*r_list
, *list_temp
;
129 mutex_lock(&dev
->struct_mutex
);
130 if (dev
->driver
->master_destroy
)
131 dev
->driver
->master_destroy(dev
, master
);
133 list_for_each_entry_safe(r_list
, list_temp
, &dev
->maplist
, head
) {
134 if (r_list
->master
== master
) {
135 drm_legacy_rmmap_locked(dev
, r_list
->map
);
140 if (master
->unique
) {
141 kfree(master
->unique
);
142 master
->unique
= NULL
;
143 master
->unique_len
= 0;
146 drm_ht_remove(&master
->magiclist
);
148 mutex_unlock(&dev
->struct_mutex
);
152 void drm_master_put(struct drm_master
**master
)
154 kref_put(&(*master
)->refcount
, drm_master_destroy
);
157 EXPORT_SYMBOL(drm_master_put
);
159 int drm_setmaster_ioctl(struct drm_device
*dev
, void *data
,
160 struct drm_file
*file_priv
)
164 mutex_lock(&dev
->master_mutex
);
165 if (file_priv
->is_master
)
168 if (file_priv
->minor
->master
) {
173 if (!file_priv
->master
) {
178 file_priv
->minor
->master
= drm_master_get(file_priv
->master
);
179 file_priv
->is_master
= 1;
180 if (dev
->driver
->master_set
) {
181 ret
= dev
->driver
->master_set(dev
, file_priv
, false);
182 if (unlikely(ret
!= 0)) {
183 file_priv
->is_master
= 0;
184 drm_master_put(&file_priv
->minor
->master
);
189 mutex_unlock(&dev
->master_mutex
);
193 int drm_dropmaster_ioctl(struct drm_device
*dev
, void *data
,
194 struct drm_file
*file_priv
)
198 mutex_lock(&dev
->master_mutex
);
199 if (!file_priv
->is_master
)
202 if (!file_priv
->minor
->master
)
206 if (dev
->driver
->master_drop
)
207 dev
->driver
->master_drop(dev
, file_priv
, false);
208 drm_master_put(&file_priv
->minor
->master
);
209 file_priv
->is_master
= 0;
212 mutex_unlock(&dev
->master_mutex
);
218 * A DRM device can provide several char-dev interfaces on the DRM-Major. Each
219 * of them is represented by a drm_minor object. Depending on the capabilities
220 * of the device-driver, different interfaces are registered.
222 * Minors can be accessed via dev->$minor_name. This pointer is either
223 * NULL or a valid drm_minor pointer and stays valid as long as the device is
224 * valid. This means, DRM minors have the same life-time as the underlying
225 * device. However, this doesn't mean that the minor is active. Minors are
226 * registered and unregistered dynamically according to device-state.
229 static struct drm_minor
**drm_minor_get_slot(struct drm_device
*dev
,
233 case DRM_MINOR_LEGACY
:
234 return &dev
->primary
;
235 case DRM_MINOR_RENDER
:
237 case DRM_MINOR_CONTROL
:
238 return &dev
->control
;
244 static int drm_minor_alloc(struct drm_device
*dev
, unsigned int type
)
246 struct drm_minor
*minor
;
250 minor
= kzalloc(sizeof(*minor
), GFP_KERNEL
);
257 idr_preload(GFP_KERNEL
);
258 spin_lock_irqsave(&drm_minor_lock
, flags
);
259 r
= idr_alloc(&drm_minors_idr
,
264 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
272 minor
->kdev
= drm_sysfs_minor_alloc(minor
);
273 if (IS_ERR(minor
->kdev
)) {
274 r
= PTR_ERR(minor
->kdev
);
278 *drm_minor_get_slot(dev
, type
) = minor
;
282 spin_lock_irqsave(&drm_minor_lock
, flags
);
283 idr_remove(&drm_minors_idr
, minor
->index
);
284 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
290 static void drm_minor_free(struct drm_device
*dev
, unsigned int type
)
292 struct drm_minor
**slot
, *minor
;
295 slot
= drm_minor_get_slot(dev
, type
);
300 drm_mode_group_destroy(&minor
->mode_group
);
301 put_device(minor
->kdev
);
303 spin_lock_irqsave(&drm_minor_lock
, flags
);
304 idr_remove(&drm_minors_idr
, minor
->index
);
305 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
311 static int drm_minor_register(struct drm_device
*dev
, unsigned int type
)
313 struct drm_minor
*minor
;
319 minor
= *drm_minor_get_slot(dev
, type
);
323 ret
= drm_debugfs_init(minor
, minor
->index
, drm_debugfs_root
);
325 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
329 ret
= device_add(minor
->kdev
);
333 /* replace NULL with @minor so lookups will succeed from now on */
334 spin_lock_irqsave(&drm_minor_lock
, flags
);
335 idr_replace(&drm_minors_idr
, minor
, minor
->index
);
336 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
338 DRM_DEBUG("new minor registered %d\n", minor
->index
);
342 drm_debugfs_cleanup(minor
);
346 static void drm_minor_unregister(struct drm_device
*dev
, unsigned int type
)
348 struct drm_minor
*minor
;
351 minor
= *drm_minor_get_slot(dev
, type
);
352 if (!minor
|| !device_is_registered(minor
->kdev
))
355 /* replace @minor with NULL so lookups will fail from now on */
356 spin_lock_irqsave(&drm_minor_lock
, flags
);
357 idr_replace(&drm_minors_idr
, NULL
, minor
->index
);
358 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
360 device_del(minor
->kdev
);
361 dev_set_drvdata(minor
->kdev
, NULL
); /* safety belt */
362 drm_debugfs_cleanup(minor
);
366 * drm_minor_acquire - Acquire a DRM minor
367 * @minor_id: Minor ID of the DRM-minor
369 * Looks up the given minor-ID and returns the respective DRM-minor object. The
370 * refence-count of the underlying device is increased so you must release this
371 * object with drm_minor_release().
373 * As long as you hold this minor, it is guaranteed that the object and the
374 * minor->dev pointer will stay valid! However, the device may get unplugged and
375 * unregistered while you hold the minor.
378 * Pointer to minor-object with increased device-refcount, or PTR_ERR on
381 struct drm_minor
*drm_minor_acquire(unsigned int minor_id
)
383 struct drm_minor
*minor
;
386 spin_lock_irqsave(&drm_minor_lock
, flags
);
387 minor
= idr_find(&drm_minors_idr
, minor_id
);
389 drm_dev_ref(minor
->dev
);
390 spin_unlock_irqrestore(&drm_minor_lock
, flags
);
393 return ERR_PTR(-ENODEV
);
394 } else if (drm_device_is_unplugged(minor
->dev
)) {
395 drm_dev_unref(minor
->dev
);
396 return ERR_PTR(-ENODEV
);
403 * drm_minor_release - Release DRM minor
404 * @minor: Pointer to DRM minor object
406 * Release a minor that was previously acquired via drm_minor_acquire().
408 void drm_minor_release(struct drm_minor
*minor
)
410 drm_dev_unref(minor
->dev
);
414 * drm_put_dev - Unregister and release a DRM device
417 * Called at module unload time or when a PCI device is unplugged.
419 * Use of this function is discouraged. It will eventually go away completely.
420 * Please use drm_dev_unregister() and drm_dev_unref() explicitly instead.
422 * Cleans up all DRM device, calling drm_lastclose().
424 void drm_put_dev(struct drm_device
*dev
)
429 DRM_ERROR("cleanup called no dev\n");
433 drm_dev_unregister(dev
);
436 EXPORT_SYMBOL(drm_put_dev
);
438 void drm_unplug_dev(struct drm_device
*dev
)
440 /* for a USB device */
441 drm_minor_unregister(dev
, DRM_MINOR_LEGACY
);
442 drm_minor_unregister(dev
, DRM_MINOR_RENDER
);
443 drm_minor_unregister(dev
, DRM_MINOR_CONTROL
);
445 mutex_lock(&drm_global_mutex
);
447 drm_device_set_unplugged(dev
);
449 if (dev
->open_count
== 0) {
452 mutex_unlock(&drm_global_mutex
);
454 EXPORT_SYMBOL(drm_unplug_dev
);
458 * We want to be able to allocate our own "struct address_space" to control
459 * memory-mappings in VRAM (or stolen RAM, ...). However, core MM does not allow
460 * stand-alone address_space objects, so we need an underlying inode. As there
461 * is no way to allocate an independent inode easily, we need a fake internal
464 * The drm_fs_inode_new() function allocates a new inode, drm_fs_inode_free()
465 * frees it again. You are allowed to use iget() and iput() to get references to
466 * the inode. But each drm_fs_inode_new() call must be paired with exactly one
467 * drm_fs_inode_free() call (which does not have to be the last iput()).
468 * We use drm_fs_inode_*() to manage our internal VFS mount-point and share it
469 * between multiple inode-users. You could, technically, call
470 * iget() + drm_fs_inode_free() directly after alloc and sometime later do an
471 * iput(), but this way you'd end up with a new vfsmount for each inode.
474 static int drm_fs_cnt
;
475 static struct vfsmount
*drm_fs_mnt
;
477 static const struct dentry_operations drm_fs_dops
= {
478 .d_dname
= simple_dname
,
481 static const struct super_operations drm_fs_sops
= {
482 .statfs
= simple_statfs
,
485 static struct dentry
*drm_fs_mount(struct file_system_type
*fs_type
, int flags
,
486 const char *dev_name
, void *data
)
488 return mount_pseudo(fs_type
,
495 static struct file_system_type drm_fs_type
= {
497 .owner
= THIS_MODULE
,
498 .mount
= drm_fs_mount
,
499 .kill_sb
= kill_anon_super
,
502 static struct inode
*drm_fs_inode_new(void)
507 r
= simple_pin_fs(&drm_fs_type
, &drm_fs_mnt
, &drm_fs_cnt
);
509 DRM_ERROR("Cannot mount pseudo fs: %d\n", r
);
513 inode
= alloc_anon_inode(drm_fs_mnt
->mnt_sb
);
515 simple_release_fs(&drm_fs_mnt
, &drm_fs_cnt
);
520 static void drm_fs_inode_free(struct inode
*inode
)
524 simple_release_fs(&drm_fs_mnt
, &drm_fs_cnt
);
529 * drm_dev_alloc - Allocate new DRM device
530 * @driver: DRM driver to allocate device for
531 * @parent: Parent device object
533 * Allocate and initialize a new DRM device. No device registration is done.
534 * Call drm_dev_register() to advertice the device to user space and register it
535 * with other core subsystems.
537 * The initial ref-count of the object is 1. Use drm_dev_ref() and
538 * drm_dev_unref() to take and drop further ref-counts.
541 * Pointer to new DRM device, or NULL if out of memory.
543 struct drm_device
*drm_dev_alloc(struct drm_driver
*driver
,
544 struct device
*parent
)
546 struct drm_device
*dev
;
549 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
553 kref_init(&dev
->ref
);
555 dev
->driver
= driver
;
557 INIT_LIST_HEAD(&dev
->filelist
);
558 INIT_LIST_HEAD(&dev
->ctxlist
);
559 INIT_LIST_HEAD(&dev
->vmalist
);
560 INIT_LIST_HEAD(&dev
->maplist
);
561 INIT_LIST_HEAD(&dev
->vblank_event_list
);
563 spin_lock_init(&dev
->buf_lock
);
564 spin_lock_init(&dev
->event_lock
);
565 mutex_init(&dev
->struct_mutex
);
566 mutex_init(&dev
->ctxlist_mutex
);
567 mutex_init(&dev
->master_mutex
);
569 dev
->anon_inode
= drm_fs_inode_new();
570 if (IS_ERR(dev
->anon_inode
)) {
571 ret
= PTR_ERR(dev
->anon_inode
);
572 DRM_ERROR("Cannot allocate anonymous inode: %d\n", ret
);
576 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
577 ret
= drm_minor_alloc(dev
, DRM_MINOR_CONTROL
);
582 if (drm_core_check_feature(dev
, DRIVER_RENDER
)) {
583 ret
= drm_minor_alloc(dev
, DRM_MINOR_RENDER
);
588 ret
= drm_minor_alloc(dev
, DRM_MINOR_LEGACY
);
592 if (drm_ht_create(&dev
->map_hash
, 12))
595 ret
= drm_legacy_ctxbitmap_init(dev
);
597 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
601 if (driver
->driver_features
& DRIVER_GEM
) {
602 ret
= drm_gem_init(dev
);
604 DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
612 drm_legacy_ctxbitmap_cleanup(dev
);
614 drm_ht_remove(&dev
->map_hash
);
616 drm_minor_free(dev
, DRM_MINOR_LEGACY
);
617 drm_minor_free(dev
, DRM_MINOR_RENDER
);
618 drm_minor_free(dev
, DRM_MINOR_CONTROL
);
619 drm_fs_inode_free(dev
->anon_inode
);
621 mutex_destroy(&dev
->master_mutex
);
625 EXPORT_SYMBOL(drm_dev_alloc
);
627 static void drm_dev_release(struct kref
*ref
)
629 struct drm_device
*dev
= container_of(ref
, struct drm_device
, ref
);
631 if (dev
->driver
->driver_features
& DRIVER_GEM
)
632 drm_gem_destroy(dev
);
634 drm_legacy_ctxbitmap_cleanup(dev
);
635 drm_ht_remove(&dev
->map_hash
);
636 drm_fs_inode_free(dev
->anon_inode
);
638 drm_minor_free(dev
, DRM_MINOR_LEGACY
);
639 drm_minor_free(dev
, DRM_MINOR_RENDER
);
640 drm_minor_free(dev
, DRM_MINOR_CONTROL
);
642 mutex_destroy(&dev
->master_mutex
);
648 * drm_dev_ref - Take reference of a DRM device
649 * @dev: device to take reference of or NULL
651 * This increases the ref-count of @dev by one. You *must* already own a
652 * reference when calling this. Use drm_dev_unref() to drop this reference
655 * This function never fails. However, this function does not provide *any*
656 * guarantee whether the device is alive or running. It only provides a
657 * reference to the object and the memory associated with it.
659 void drm_dev_ref(struct drm_device
*dev
)
664 EXPORT_SYMBOL(drm_dev_ref
);
667 * drm_dev_unref - Drop reference of a DRM device
668 * @dev: device to drop reference of or NULL
670 * This decreases the ref-count of @dev by one. The device is destroyed if the
671 * ref-count drops to zero.
673 void drm_dev_unref(struct drm_device
*dev
)
676 kref_put(&dev
->ref
, drm_dev_release
);
678 EXPORT_SYMBOL(drm_dev_unref
);
681 * drm_dev_register - Register DRM device
682 * @dev: Device to register
683 * @flags: Flags passed to the driver's .load() function
685 * Register the DRM device @dev with the system, advertise device to user-space
686 * and start normal device operation. @dev must be allocated via drm_dev_alloc()
689 * Never call this twice on any device!
692 * 0 on success, negative error code on failure.
694 int drm_dev_register(struct drm_device
*dev
, unsigned long flags
)
698 mutex_lock(&drm_global_mutex
);
700 ret
= drm_minor_register(dev
, DRM_MINOR_CONTROL
);
704 ret
= drm_minor_register(dev
, DRM_MINOR_RENDER
);
708 ret
= drm_minor_register(dev
, DRM_MINOR_LEGACY
);
712 if (dev
->driver
->load
) {
713 ret
= dev
->driver
->load(dev
, flags
);
718 /* setup grouping for legacy outputs */
719 if (drm_core_check_feature(dev
, DRIVER_MODESET
)) {
720 ret
= drm_mode_group_init_legacy_group(dev
,
721 &dev
->primary
->mode_group
);
730 if (dev
->driver
->unload
)
731 dev
->driver
->unload(dev
);
733 drm_minor_unregister(dev
, DRM_MINOR_LEGACY
);
734 drm_minor_unregister(dev
, DRM_MINOR_RENDER
);
735 drm_minor_unregister(dev
, DRM_MINOR_CONTROL
);
737 mutex_unlock(&drm_global_mutex
);
740 EXPORT_SYMBOL(drm_dev_register
);
743 * drm_dev_unregister - Unregister DRM device
744 * @dev: Device to unregister
746 * Unregister the DRM device from the system. This does the reverse of
747 * drm_dev_register() but does not deallocate the device. The caller must call
748 * drm_dev_unref() to drop their final reference.
750 void drm_dev_unregister(struct drm_device
*dev
)
752 struct drm_map_list
*r_list
, *list_temp
;
756 if (dev
->driver
->unload
)
757 dev
->driver
->unload(dev
);
760 drm_pci_agp_destroy(dev
);
762 drm_vblank_cleanup(dev
);
764 list_for_each_entry_safe(r_list
, list_temp
, &dev
->maplist
, head
)
765 drm_legacy_rmmap(dev
, r_list
->map
);
767 drm_minor_unregister(dev
, DRM_MINOR_LEGACY
);
768 drm_minor_unregister(dev
, DRM_MINOR_RENDER
);
769 drm_minor_unregister(dev
, DRM_MINOR_CONTROL
);
771 EXPORT_SYMBOL(drm_dev_unregister
);
774 * drm_dev_set_unique - Set the unique name of a DRM device
775 * @dev: device of which to set the unique name
776 * @fmt: format string for unique name
778 * Sets the unique name of a DRM device using the specified format string and
779 * a variable list of arguments. Drivers can use this at driver probe time if
780 * the unique name of the devices they drive is static.
782 * Return: 0 on success or a negative error code on failure.
784 int drm_dev_set_unique(struct drm_device
*dev
, const char *fmt
, ...)
791 dev
->unique
= kvasprintf(GFP_KERNEL
, fmt
, ap
);
794 return dev
->unique
? 0 : -ENOMEM
;
796 EXPORT_SYMBOL(drm_dev_set_unique
);
800 * The DRM core module initializes all global DRM objects and makes them
801 * available to drivers. Once setup, drivers can probe their respective
803 * Currently, core management includes:
804 * - The "DRM-Global" key/value database
805 * - Global ID management for connectors
806 * - DRM major number allocation
807 * - DRM minor management
811 * Furthermore, the DRM core provides dynamic char-dev lookups. For each
812 * interface registered on a DRM device, you can request minor numbers from DRM
813 * core. DRM core takes care of major-number management and char-dev
814 * registration. A stub ->open() callback forwards any open() requests to the
818 static int drm_stub_open(struct inode
*inode
, struct file
*filp
)
820 const struct file_operations
*new_fops
;
821 struct drm_minor
*minor
;
826 mutex_lock(&drm_global_mutex
);
827 minor
= drm_minor_acquire(iminor(inode
));
829 err
= PTR_ERR(minor
);
833 new_fops
= fops_get(minor
->dev
->driver
->fops
);
839 replace_fops(filp
, new_fops
);
840 if (filp
->f_op
->open
)
841 err
= filp
->f_op
->open(inode
, filp
);
846 drm_minor_release(minor
);
848 mutex_unlock(&drm_global_mutex
);
852 static const struct file_operations drm_stub_fops
= {
853 .owner
= THIS_MODULE
,
854 .open
= drm_stub_open
,
855 .llseek
= noop_llseek
,
858 static int __init
drm_core_init(void)
863 drm_connector_ida_init();
864 idr_init(&drm_minors_idr
);
866 if (register_chrdev(DRM_MAJOR
, "drm", &drm_stub_fops
))
869 drm_class
= drm_sysfs_create(THIS_MODULE
, "drm");
870 if (IS_ERR(drm_class
)) {
871 printk(KERN_ERR
"DRM: Error creating drm class.\n");
872 ret
= PTR_ERR(drm_class
);
876 drm_debugfs_root
= debugfs_create_dir("dri", NULL
);
877 if (!drm_debugfs_root
) {
878 DRM_ERROR("Cannot create /sys/kernel/debug/dri\n");
883 DRM_INFO("Initialized %s %d.%d.%d %s\n",
884 CORE_NAME
, CORE_MAJOR
, CORE_MINOR
, CORE_PATCHLEVEL
, CORE_DATE
);
889 unregister_chrdev(DRM_MAJOR
, "drm");
891 idr_destroy(&drm_minors_idr
);
896 static void __exit
drm_core_exit(void)
898 debugfs_remove(drm_debugfs_root
);
901 unregister_chrdev(DRM_MAJOR
, "drm");
903 drm_connector_ida_destroy();
904 idr_destroy(&drm_minors_idr
);
907 module_init(drm_core_init
);
908 module_exit(drm_core_exit
);