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>
40 unsigned int drm_debug = 0; /* 1 to enable debug output */
41 EXPORT_SYMBOL(drm_debug);
43 unsigned int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */
44 EXPORT_SYMBOL(drm_vblank_offdelay);
46 unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */
47 EXPORT_SYMBOL(drm_timestamp_precision);
49 MODULE_AUTHOR(CORE_AUTHOR);
50 MODULE_DESCRIPTION(CORE_DESC);
51 MODULE_LICENSE("GPL and additional rights");
52 MODULE_PARM_DESC(debug, "Enable debug output");
53 MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
54 MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
56 module_param_named(debug, drm_debug, int, 0600);
57 module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
58 module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
60 struct idr drm_minors_idr;
62 struct class *drm_class;
63 struct proc_dir_entry *drm_proc_root;
64 struct dentry *drm_debugfs_root;
66 int drm_err(const char *func, const char *format, ...)
72 va_start(args, format);
77 r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
83 EXPORT_SYMBOL(drm_err);
85 void drm_ut_debug_printk(unsigned int request_level,
87 const char *function_name,
88 const char *format, ...)
92 if (drm_debug & request_level) {
94 printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
95 va_start(args, format);
96 vprintk(format, args);
100 EXPORT_SYMBOL(drm_ut_debug_printk);
102 static int drm_minor_get_id(struct drm_device *dev, int type)
106 int base = 0, limit = 63;
108 if (type == DRM_MINOR_CONTROL) {
111 } else if (type == DRM_MINOR_RENDER) {
117 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
118 DRM_ERROR("Out of memory expanding drawable idr\n");
121 mutex_lock(&dev->struct_mutex);
122 ret = idr_get_new_above(&drm_minors_idr, NULL,
124 mutex_unlock(&dev->struct_mutex);
125 if (ret == -EAGAIN) {
131 if (new_id >= limit) {
132 idr_remove(&drm_minors_idr, new_id);
138 struct drm_master *drm_master_create(struct drm_minor *minor)
140 struct drm_master *master;
142 master = kzalloc(sizeof(*master), GFP_KERNEL);
146 kref_init(&master->refcount);
147 spin_lock_init(&master->lock.spinlock);
148 init_waitqueue_head(&master->lock.lock_queue);
149 drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
150 INIT_LIST_HEAD(&master->magicfree);
151 master->minor = minor;
153 list_add_tail(&master->head, &minor->master_list);
158 struct drm_master *drm_master_get(struct drm_master *master)
160 kref_get(&master->refcount);
163 EXPORT_SYMBOL(drm_master_get);
165 static void drm_master_destroy(struct kref *kref)
167 struct drm_master *master = container_of(kref, struct drm_master, refcount);
168 struct drm_magic_entry *pt, *next;
169 struct drm_device *dev = master->minor->dev;
170 struct drm_map_list *r_list, *list_temp;
172 list_del(&master->head);
174 if (dev->driver->master_destroy)
175 dev->driver->master_destroy(dev, master);
177 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
178 if (r_list->master == master) {
179 drm_rmmap_locked(dev, r_list->map);
184 if (master->unique) {
185 kfree(master->unique);
186 master->unique = NULL;
187 master->unique_len = 0;
193 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
195 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
199 drm_ht_remove(&master->magiclist);
204 void drm_master_put(struct drm_master **master)
206 kref_put(&(*master)->refcount, drm_master_destroy);
209 EXPORT_SYMBOL(drm_master_put);
211 int drm_setmaster_ioctl(struct drm_device *dev, void *data,
212 struct drm_file *file_priv)
216 if (file_priv->is_master)
219 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
222 if (!file_priv->master)
225 if (!file_priv->minor->master &&
226 file_priv->minor->master != file_priv->master) {
227 mutex_lock(&dev->struct_mutex);
228 file_priv->minor->master = drm_master_get(file_priv->master);
229 file_priv->is_master = 1;
230 if (dev->driver->master_set) {
231 ret = dev->driver->master_set(dev, file_priv, false);
232 if (unlikely(ret != 0)) {
233 file_priv->is_master = 0;
234 drm_master_put(&file_priv->minor->master);
237 mutex_unlock(&dev->struct_mutex);
243 int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
244 struct drm_file *file_priv)
246 if (!file_priv->is_master)
249 if (!file_priv->minor->master)
252 mutex_lock(&dev->struct_mutex);
253 if (dev->driver->master_drop)
254 dev->driver->master_drop(dev, file_priv, false);
255 drm_master_put(&file_priv->minor->master);
256 file_priv->is_master = 0;
257 mutex_unlock(&dev->struct_mutex);
261 int drm_fill_in_dev(struct drm_device *dev,
262 const struct pci_device_id *ent,
263 struct drm_driver *driver)
267 INIT_LIST_HEAD(&dev->filelist);
268 INIT_LIST_HEAD(&dev->ctxlist);
269 INIT_LIST_HEAD(&dev->vmalist);
270 INIT_LIST_HEAD(&dev->maplist);
271 INIT_LIST_HEAD(&dev->vblank_event_list);
273 spin_lock_init(&dev->count_lock);
274 spin_lock_init(&dev->event_lock);
275 mutex_init(&dev->struct_mutex);
276 mutex_init(&dev->ctxlist_mutex);
278 if (drm_ht_create(&dev->map_hash, 12)) {
282 /* the DRM has 6 basic counters */
284 dev->types[0] = _DRM_STAT_LOCK;
285 dev->types[1] = _DRM_STAT_OPENS;
286 dev->types[2] = _DRM_STAT_CLOSES;
287 dev->types[3] = _DRM_STAT_IOCTLS;
288 dev->types[4] = _DRM_STAT_LOCKS;
289 dev->types[5] = _DRM_STAT_UNLOCKS;
291 dev->driver = driver;
293 if (dev->driver->bus->agp_init) {
294 retcode = dev->driver->bus->agp_init(dev);
296 goto error_out_unreg;
301 retcode = drm_ctxbitmap_init(dev);
303 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
304 goto error_out_unreg;
307 if (driver->driver_features & DRIVER_GEM) {
308 retcode = drm_gem_init(dev);
310 DRM_ERROR("Cannot initialize graphics execution "
312 goto error_out_unreg;
325 * Get a secondary minor number.
327 * \param dev device data structure
328 * \param sec-minor structure to hold the assigned minor
329 * \return negative number on failure.
331 * Search an empty entry and initialize it to the given parameters, and
332 * create the proc init entry via proc_init(). This routines assigns
333 * minor numbers to secondary heads of multi-headed cards
335 int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
337 struct drm_minor *new_minor;
343 minor_id = drm_minor_get_id(dev, type);
347 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
353 new_minor->type = type;
354 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
355 new_minor->dev = dev;
356 new_minor->index = minor_id;
357 INIT_LIST_HEAD(&new_minor->master_list);
359 idr_replace(&drm_minors_idr, new_minor, minor_id);
361 if (type == DRM_MINOR_LEGACY) {
362 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
364 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
368 new_minor->proc_root = NULL;
370 #if defined(CONFIG_DEBUG_FS)
371 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
373 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
378 ret = drm_sysfs_device_add(new_minor);
381 "DRM: Error sysfs_device_add.\n");
386 DRM_DEBUG("new minor assigned %d\n", minor_id);
391 if (new_minor->type == DRM_MINOR_LEGACY)
392 drm_proc_cleanup(new_minor, drm_proc_root);
396 idr_remove(&drm_minors_idr, minor_id);
402 * Put a secondary minor number.
404 * \param sec_minor - structure to be released
405 * \return always zero
407 * Cleans up the proc resources. Not legal for this to be the
408 * last minor released.
411 int drm_put_minor(struct drm_minor **minor_p)
413 struct drm_minor *minor = *minor_p;
415 DRM_DEBUG("release secondary minor %d\n", minor->index);
417 if (minor->type == DRM_MINOR_LEGACY)
418 drm_proc_cleanup(minor, drm_proc_root);
419 #if defined(CONFIG_DEBUG_FS)
420 drm_debugfs_cleanup(minor);
423 drm_sysfs_device_remove(minor);
425 idr_remove(&drm_minors_idr, minor->index);
433 * Called via drm_exit() at module unload time or when pci device is
436 * Cleans up all DRM device, calling drm_lastclose().
439 void drm_put_dev(struct drm_device *dev)
441 struct drm_driver *driver;
442 struct drm_map_list *r_list, *list_temp;
447 DRM_ERROR("cleanup called no dev\n");
450 driver = dev->driver;
454 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
455 dev->agp && dev->agp->agp_mtrr >= 0) {
457 retval = mtrr_del(dev->agp->agp_mtrr,
458 dev->agp->agp_info.aper_base,
459 dev->agp->agp_info.aper_size * 1024 * 1024);
460 DRM_DEBUG("mtrr_del=%d\n", retval);
463 if (dev->driver->unload)
464 dev->driver->unload(dev);
466 if (drm_core_has_AGP(dev) && dev->agp) {
471 drm_vblank_cleanup(dev);
473 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
474 drm_rmmap(dev, r_list->map);
475 drm_ht_remove(&dev->map_hash);
477 drm_ctxbitmap_cleanup(dev);
479 if (drm_core_check_feature(dev, DRIVER_MODESET))
480 drm_put_minor(&dev->control);
482 if (driver->driver_features & DRIVER_GEM)
483 drm_gem_destroy(dev);
485 drm_put_minor(&dev->primary);
487 list_del(&dev->driver_item);
494 EXPORT_SYMBOL(drm_put_dev);