Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "drmP.h" |
| 38 | #include "drm_core.h" |
| 39 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 40 | unsigned int drm_debug = 0; /* 1 to enable debug output */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | EXPORT_SYMBOL(drm_debug); |
| 42 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 43 | unsigned int drm_vblank_offdelay = 5000; /* Default to 5000 msecs. */ |
| 44 | EXPORT_SYMBOL(drm_vblank_offdelay); |
| 45 | |
| 46 | unsigned int drm_timestamp_precision = 20; /* Default to 20 usecs. */ |
| 47 | EXPORT_SYMBOL(drm_timestamp_precision); |
| 48 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 49 | MODULE_AUTHOR(CORE_AUTHOR); |
| 50 | MODULE_DESCRIPTION(CORE_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | MODULE_LICENSE("GPL and additional rights"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | MODULE_PARM_DESC(debug, "Enable debug output"); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 53 | MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]"); |
| 54 | MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Dave Jones | c075814 | 2005-10-03 15:02:20 -0400 | [diff] [blame] | 56 | module_param_named(debug, drm_debug, int, 0600); |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 57 | module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600); |
| 58 | module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 60 | struct idr drm_minors_idr; |
| 61 | |
Greg Kroah-Hartman | 0650fd5 | 2006-01-20 14:08:59 -0800 | [diff] [blame] | 62 | struct class *drm_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | struct proc_dir_entry *drm_proc_root; |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 64 | struct dentry *drm_debugfs_root; |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 65 | void drm_ut_debug_printk(unsigned int request_level, |
| 66 | const char *prefix, |
| 67 | const char *function_name, |
| 68 | const char *format, ...) |
| 69 | { |
| 70 | va_list args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 72 | if (drm_debug & request_level) { |
| 73 | if (function_name) |
| 74 | printk(KERN_DEBUG "[%s:%s], ", prefix, function_name); |
| 75 | va_start(args, format); |
| 76 | vprintk(format, args); |
| 77 | va_end(args); |
| 78 | } |
| 79 | } |
| 80 | EXPORT_SYMBOL(drm_ut_debug_printk); |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 81 | static int drm_minor_get_id(struct drm_device *dev, int type) |
| 82 | { |
| 83 | int new_id; |
| 84 | int ret; |
| 85 | int base = 0, limit = 63; |
| 86 | |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 87 | if (type == DRM_MINOR_CONTROL) { |
| 88 | base += 64; |
| 89 | limit = base + 127; |
| 90 | } else if (type == DRM_MINOR_RENDER) { |
| 91 | base += 128; |
| 92 | limit = base + 255; |
| 93 | } |
| 94 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 95 | again: |
| 96 | if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) { |
| 97 | DRM_ERROR("Out of memory expanding drawable idr\n"); |
| 98 | return -ENOMEM; |
| 99 | } |
| 100 | mutex_lock(&dev->struct_mutex); |
| 101 | ret = idr_get_new_above(&drm_minors_idr, NULL, |
| 102 | base, &new_id); |
| 103 | mutex_unlock(&dev->struct_mutex); |
| 104 | if (ret == -EAGAIN) { |
| 105 | goto again; |
| 106 | } else if (ret) { |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | if (new_id >= limit) { |
| 111 | idr_remove(&drm_minors_idr, new_id); |
| 112 | return -EINVAL; |
| 113 | } |
| 114 | return new_id; |
| 115 | } |
| 116 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 117 | struct drm_master *drm_master_create(struct drm_minor *minor) |
| 118 | { |
| 119 | struct drm_master *master; |
| 120 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 121 | master = kzalloc(sizeof(*master), GFP_KERNEL); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 122 | if (!master) |
| 123 | return NULL; |
| 124 | |
| 125 | kref_init(&master->refcount); |
| 126 | spin_lock_init(&master->lock.spinlock); |
| 127 | init_waitqueue_head(&master->lock.lock_queue); |
| 128 | drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER); |
| 129 | INIT_LIST_HEAD(&master->magicfree); |
| 130 | master->minor = minor; |
| 131 | |
| 132 | list_add_tail(&master->head, &minor->master_list); |
| 133 | |
| 134 | return master; |
| 135 | } |
| 136 | |
| 137 | struct drm_master *drm_master_get(struct drm_master *master) |
| 138 | { |
| 139 | kref_get(&master->refcount); |
| 140 | return master; |
| 141 | } |
Thomas Hellstrom | 85bb0c3 | 2009-12-06 21:46:28 +0100 | [diff] [blame] | 142 | EXPORT_SYMBOL(drm_master_get); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 143 | |
| 144 | static void drm_master_destroy(struct kref *kref) |
| 145 | { |
| 146 | struct drm_master *master = container_of(kref, struct drm_master, refcount); |
| 147 | struct drm_magic_entry *pt, *next; |
| 148 | struct drm_device *dev = master->minor->dev; |
Dave Airlie | c1ff85d | 2009-01-19 17:17:58 +1000 | [diff] [blame] | 149 | struct drm_map_list *r_list, *list_temp; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 150 | |
| 151 | list_del(&master->head); |
| 152 | |
| 153 | if (dev->driver->master_destroy) |
| 154 | dev->driver->master_destroy(dev, master); |
| 155 | |
Dave Airlie | c1ff85d | 2009-01-19 17:17:58 +1000 | [diff] [blame] | 156 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) { |
| 157 | if (r_list->master == master) { |
| 158 | drm_rmmap_locked(dev, r_list->map); |
| 159 | r_list = NULL; |
| 160 | } |
| 161 | } |
| 162 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 163 | if (master->unique) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 164 | kfree(master->unique); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 165 | master->unique = NULL; |
| 166 | master->unique_len = 0; |
| 167 | } |
| 168 | |
Chris Wilson | 6e35023 | 2010-07-24 18:29:36 +0100 | [diff] [blame] | 169 | kfree(dev->devname); |
| 170 | dev->devname = NULL; |
| 171 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 172 | list_for_each_entry_safe(pt, next, &master->magicfree, head) { |
| 173 | list_del(&pt->head); |
| 174 | drm_ht_remove_item(&master->magiclist, &pt->hash_item); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 175 | kfree(pt); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | drm_ht_remove(&master->magiclist); |
| 179 | |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 180 | kfree(master); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | void drm_master_put(struct drm_master **master) |
| 184 | { |
| 185 | kref_put(&(*master)->refcount, drm_master_destroy); |
| 186 | *master = NULL; |
| 187 | } |
Thomas Hellstrom | 85bb0c3 | 2009-12-06 21:46:28 +0100 | [diff] [blame] | 188 | EXPORT_SYMBOL(drm_master_put); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 189 | |
| 190 | int drm_setmaster_ioctl(struct drm_device *dev, void *data, |
| 191 | struct drm_file *file_priv) |
| 192 | { |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 193 | int ret = 0; |
| 194 | |
Jonas Bonn | 6b00842 | 2009-04-16 09:00:02 +0200 | [diff] [blame] | 195 | if (file_priv->is_master) |
| 196 | return 0; |
| 197 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 198 | if (file_priv->minor->master && file_priv->minor->master != file_priv->master) |
| 199 | return -EINVAL; |
| 200 | |
| 201 | if (!file_priv->master) |
| 202 | return -EINVAL; |
| 203 | |
| 204 | if (!file_priv->minor->master && |
| 205 | file_priv->minor->master != file_priv->master) { |
| 206 | mutex_lock(&dev->struct_mutex); |
| 207 | file_priv->minor->master = drm_master_get(file_priv->master); |
Jonas Bonn | 6b00842 | 2009-04-16 09:00:02 +0200 | [diff] [blame] | 208 | file_priv->is_master = 1; |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 209 | if (dev->driver->master_set) { |
| 210 | ret = dev->driver->master_set(dev, file_priv, false); |
| 211 | if (unlikely(ret != 0)) { |
| 212 | file_priv->is_master = 0; |
| 213 | drm_master_put(&file_priv->minor->master); |
| 214 | } |
| 215 | } |
Helge Bahmann | 5ad8b7d | 2009-03-04 21:49:14 +1000 | [diff] [blame] | 216 | mutex_unlock(&dev->struct_mutex); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | int drm_dropmaster_ioctl(struct drm_device *dev, void *data, |
| 223 | struct drm_file *file_priv) |
| 224 | { |
Jonas Bonn | 6b00842 | 2009-04-16 09:00:02 +0200 | [diff] [blame] | 225 | if (!file_priv->is_master) |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 226 | return -EINVAL; |
Jonas Bonn | 6b00842 | 2009-04-16 09:00:02 +0200 | [diff] [blame] | 227 | |
Dave Airlie | 07f1c7a | 2009-04-20 09:32:50 +1000 | [diff] [blame] | 228 | if (!file_priv->minor->master) |
| 229 | return -EINVAL; |
| 230 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 231 | mutex_lock(&dev->struct_mutex); |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 232 | if (dev->driver->master_drop) |
| 233 | dev->driver->master_drop(dev, file_priv, false); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 234 | drm_master_put(&file_priv->minor->master); |
Jonas Bonn | 6b00842 | 2009-04-16 09:00:02 +0200 | [diff] [blame] | 235 | file_priv->is_master = 0; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 236 | mutex_unlock(&dev->struct_mutex); |
| 237 | return 0; |
| 238 | } |
| 239 | |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 240 | int drm_fill_in_dev(struct drm_device *dev, |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 241 | const struct pci_device_id *ent, |
| 242 | struct drm_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
| 244 | int retcode; |
| 245 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 246 | INIT_LIST_HEAD(&dev->filelist); |
Dave Airlie | 7c158ac | 2007-07-11 12:05:36 +1000 | [diff] [blame] | 247 | INIT_LIST_HEAD(&dev->ctxlist); |
| 248 | INIT_LIST_HEAD(&dev->vmalist); |
| 249 | INIT_LIST_HEAD(&dev->maplist); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 250 | INIT_LIST_HEAD(&dev->vblank_event_list); |
Dave Airlie | 7c158ac | 2007-07-11 12:05:36 +1000 | [diff] [blame] | 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | spin_lock_init(&dev->count_lock); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 253 | spin_lock_init(&dev->event_lock); |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 254 | mutex_init(&dev->struct_mutex); |
| 255 | mutex_init(&dev->ctxlist_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Thomas Hellstrom | 8d153f7 | 2006-08-07 22:36:47 +1000 | [diff] [blame] | 257 | if (drm_ht_create(&dev->map_hash, 12)) { |
Thomas Hellstrom | 8d153f7 | 2006-08-07 22:36:47 +1000 | [diff] [blame] | 258 | return -ENOMEM; |
| 259 | } |
Dave Airlie | 836cf04 | 2005-07-10 19:27:04 +1000 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | /* the DRM has 6 basic counters */ |
| 262 | dev->counters = 6; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 263 | dev->types[0] = _DRM_STAT_LOCK; |
| 264 | dev->types[1] = _DRM_STAT_OPENS; |
| 265 | dev->types[2] = _DRM_STAT_CLOSES; |
| 266 | dev->types[3] = _DRM_STAT_IOCTLS; |
| 267 | dev->types[4] = _DRM_STAT_LOCKS; |
| 268 | dev->types[5] = _DRM_STAT_UNLOCKS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
| 270 | dev->driver = driver; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 271 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame^] | 272 | if (dev->driver->bus->agp_init) { |
| 273 | retcode = dev->driver->bus->agp_init(dev); |
| 274 | if (retcode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | goto error_out_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Dave Airlie | 2716a02 | 2007-11-22 18:23:13 +1000 | [diff] [blame] | 278 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame^] | 279 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 280 | retcode = drm_ctxbitmap_init(dev); |
| 281 | if (retcode) { |
| 282 | DRM_ERROR("Cannot allocate memory for context bitmap.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | goto error_out_unreg; |
| 284 | } |
| 285 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 286 | if (driver->driver_features & DRIVER_GEM) { |
| 287 | retcode = drm_gem_init(dev); |
| 288 | if (retcode) { |
| 289 | DRM_ERROR("Cannot initialize graphics execution " |
| 290 | "manager (GEM)\n"); |
| 291 | goto error_out_unreg; |
| 292 | } |
| 293 | } |
| 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 296 | |
| 297 | error_out_unreg: |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 298 | drm_lastclose(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | return retcode; |
| 300 | } |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | /** |
| 304 | * Get a secondary minor number. |
| 305 | * |
| 306 | * \param dev device data structure |
| 307 | * \param sec-minor structure to hold the assigned minor |
| 308 | * \return negative number on failure. |
| 309 | * |
| 310 | * Search an empty entry and initialize it to the given parameters, and |
| 311 | * create the proc init entry via proc_init(). This routines assigns |
| 312 | * minor numbers to secondary heads of multi-headed cards |
| 313 | */ |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 314 | int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 316 | struct drm_minor *new_minor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | int ret; |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 318 | int minor_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | DRM_DEBUG("\n"); |
| 321 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 322 | minor_id = drm_minor_get_id(dev, type); |
| 323 | if (minor_id < 0) |
| 324 | return minor_id; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 325 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 326 | new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL); |
| 327 | if (!new_minor) { |
| 328 | ret = -ENOMEM; |
| 329 | goto err_idr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 331 | |
| 332 | new_minor->type = type; |
| 333 | new_minor->device = MKDEV(DRM_MAJOR, minor_id); |
| 334 | new_minor->dev = dev; |
| 335 | new_minor->index = minor_id; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 336 | INIT_LIST_HEAD(&new_minor->master_list); |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 337 | |
| 338 | idr_replace(&drm_minors_idr, new_minor, minor_id); |
| 339 | |
| 340 | if (type == DRM_MINOR_LEGACY) { |
| 341 | ret = drm_proc_init(new_minor, minor_id, drm_proc_root); |
| 342 | if (ret) { |
| 343 | DRM_ERROR("DRM: Failed to initialize /proc/dri.\n"); |
| 344 | goto err_mem; |
| 345 | } |
| 346 | } else |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 347 | new_minor->proc_root = NULL; |
| 348 | |
| 349 | #if defined(CONFIG_DEBUG_FS) |
| 350 | ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root); |
| 351 | if (ret) { |
GeunSik Lim | 156f5a7 | 2009-06-02 15:01:37 +0900 | [diff] [blame] | 352 | DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n"); |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 353 | goto err_g2; |
| 354 | } |
| 355 | #endif |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 356 | |
| 357 | ret = drm_sysfs_device_add(new_minor); |
| 358 | if (ret) { |
| 359 | printk(KERN_ERR |
| 360 | "DRM: Error sysfs_device_add.\n"); |
| 361 | goto err_g2; |
| 362 | } |
| 363 | *minor = new_minor; |
| 364 | |
| 365 | DRM_DEBUG("new minor assigned %d\n", minor_id); |
| 366 | return 0; |
| 367 | |
| 368 | |
| 369 | err_g2: |
| 370 | if (new_minor->type == DRM_MINOR_LEGACY) |
| 371 | drm_proc_cleanup(new_minor, drm_proc_root); |
| 372 | err_mem: |
| 373 | kfree(new_minor); |
| 374 | err_idr: |
| 375 | idr_remove(&drm_minors_idr, minor_id); |
| 376 | *minor = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return ret; |
| 378 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 379 | |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 380 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | * Put a secondary minor number. |
| 382 | * |
| 383 | * \param sec_minor - structure to be released |
| 384 | * \return always zero |
| 385 | * |
| 386 | * Cleans up the proc resources. Not legal for this to be the |
| 387 | * last minor released. |
| 388 | * |
| 389 | */ |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 390 | int drm_put_minor(struct drm_minor **minor_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 392 | struct drm_minor *minor = *minor_p; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 393 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 394 | DRM_DEBUG("release secondary minor %d\n", minor->index); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 395 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 396 | if (minor->type == DRM_MINOR_LEGACY) |
| 397 | drm_proc_cleanup(minor, drm_proc_root); |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 398 | #if defined(CONFIG_DEBUG_FS) |
| 399 | drm_debugfs_cleanup(minor); |
| 400 | #endif |
| 401 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 402 | drm_sysfs_device_remove(minor); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 403 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 404 | idr_remove(&drm_minors_idr, minor->index); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 405 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 406 | kfree(minor); |
| 407 | *minor_p = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | return 0; |
| 409 | } |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 410 | |
| 411 | /** |
| 412 | * Called via drm_exit() at module unload time or when pci device is |
| 413 | * unplugged. |
| 414 | * |
| 415 | * Cleans up all DRM device, calling drm_lastclose(). |
| 416 | * |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 417 | */ |
| 418 | void drm_put_dev(struct drm_device *dev) |
| 419 | { |
Julia Lawall | ecca068 | 2009-07-11 09:50:09 +0200 | [diff] [blame] | 420 | struct drm_driver *driver; |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 421 | struct drm_map_list *r_list, *list_temp; |
| 422 | |
| 423 | DRM_DEBUG("\n"); |
| 424 | |
| 425 | if (!dev) { |
| 426 | DRM_ERROR("cleanup called no dev\n"); |
| 427 | return; |
| 428 | } |
Julia Lawall | ecca068 | 2009-07-11 09:50:09 +0200 | [diff] [blame] | 429 | driver = dev->driver; |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 430 | |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 431 | drm_lastclose(dev); |
| 432 | |
| 433 | if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) && |
| 434 | dev->agp && dev->agp->agp_mtrr >= 0) { |
| 435 | int retval; |
| 436 | retval = mtrr_del(dev->agp->agp_mtrr, |
| 437 | dev->agp->agp_info.aper_base, |
| 438 | dev->agp->agp_info.aper_size * 1024 * 1024); |
| 439 | DRM_DEBUG("mtrr_del=%d\n", retval); |
| 440 | } |
| 441 | |
| 442 | if (dev->driver->unload) |
| 443 | dev->driver->unload(dev); |
| 444 | |
| 445 | if (drm_core_has_AGP(dev) && dev->agp) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 446 | kfree(dev->agp); |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 447 | dev->agp = NULL; |
| 448 | } |
| 449 | |
Jesse Barnes | b78315f | 2010-03-26 11:07:16 -0700 | [diff] [blame] | 450 | drm_vblank_cleanup(dev); |
| 451 | |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 452 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) |
| 453 | drm_rmmap(dev, r_list->map); |
Ben Skeggs | 30ddbd9 | 2009-03-02 11:13:04 +1000 | [diff] [blame] | 454 | drm_ht_remove(&dev->map_hash); |
| 455 | |
| 456 | drm_ctxbitmap_cleanup(dev); |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 457 | |
| 458 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 459 | drm_put_minor(&dev->control); |
| 460 | |
| 461 | if (driver->driver_features & DRIVER_GEM) |
| 462 | drm_gem_destroy(dev); |
| 463 | |
| 464 | drm_put_minor(&dev->primary); |
| 465 | |
| 466 | if (dev->devname) { |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 467 | kfree(dev->devname); |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 468 | dev->devname = NULL; |
| 469 | } |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 470 | kfree(dev); |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 471 | } |
| 472 | EXPORT_SYMBOL(drm_put_dev); |