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> |
| 36 | #include "drmP.h" |
| 37 | #include "drm_core.h" |
| 38 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 39 | unsigned int drm_debug = 0; /* 1 to enable debug output */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | EXPORT_SYMBOL(drm_debug); |
| 41 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 42 | MODULE_AUTHOR(CORE_AUTHOR); |
| 43 | MODULE_DESCRIPTION(CORE_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | MODULE_LICENSE("GPL and additional rights"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | MODULE_PARM_DESC(debug, "Enable debug output"); |
| 46 | |
Dave Jones | c075814 | 2005-10-03 15:02:20 -0400 | [diff] [blame] | 47 | module_param_named(debug, drm_debug, int, 0600); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 49 | struct idr drm_minors_idr; |
| 50 | |
Greg Kroah-Hartman | 0650fd5 | 2006-01-20 14:08:59 -0800 | [diff] [blame] | 51 | struct class *drm_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | struct proc_dir_entry *drm_proc_root; |
| 53 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 54 | static int drm_minor_get_id(struct drm_device *dev, int type) |
| 55 | { |
| 56 | int new_id; |
| 57 | int ret; |
| 58 | int base = 0, limit = 63; |
| 59 | |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 60 | if (type == DRM_MINOR_CONTROL) { |
| 61 | base += 64; |
| 62 | limit = base + 127; |
| 63 | } else if (type == DRM_MINOR_RENDER) { |
| 64 | base += 128; |
| 65 | limit = base + 255; |
| 66 | } |
| 67 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 68 | again: |
| 69 | if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) { |
| 70 | DRM_ERROR("Out of memory expanding drawable idr\n"); |
| 71 | return -ENOMEM; |
| 72 | } |
| 73 | mutex_lock(&dev->struct_mutex); |
| 74 | ret = idr_get_new_above(&drm_minors_idr, NULL, |
| 75 | base, &new_id); |
| 76 | mutex_unlock(&dev->struct_mutex); |
| 77 | if (ret == -EAGAIN) { |
| 78 | goto again; |
| 79 | } else if (ret) { |
| 80 | return ret; |
| 81 | } |
| 82 | |
| 83 | if (new_id >= limit) { |
| 84 | idr_remove(&drm_minors_idr, new_id); |
| 85 | return -EINVAL; |
| 86 | } |
| 87 | return new_id; |
| 88 | } |
| 89 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 90 | struct drm_master *drm_master_create(struct drm_minor *minor) |
| 91 | { |
| 92 | struct drm_master *master; |
| 93 | |
| 94 | master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER); |
| 95 | if (!master) |
| 96 | return NULL; |
| 97 | |
| 98 | kref_init(&master->refcount); |
| 99 | spin_lock_init(&master->lock.spinlock); |
| 100 | init_waitqueue_head(&master->lock.lock_queue); |
| 101 | drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER); |
| 102 | INIT_LIST_HEAD(&master->magicfree); |
| 103 | master->minor = minor; |
| 104 | |
| 105 | list_add_tail(&master->head, &minor->master_list); |
| 106 | |
| 107 | return master; |
| 108 | } |
| 109 | |
| 110 | struct drm_master *drm_master_get(struct drm_master *master) |
| 111 | { |
| 112 | kref_get(&master->refcount); |
| 113 | return master; |
| 114 | } |
| 115 | |
| 116 | static void drm_master_destroy(struct kref *kref) |
| 117 | { |
| 118 | struct drm_master *master = container_of(kref, struct drm_master, refcount); |
| 119 | struct drm_magic_entry *pt, *next; |
| 120 | struct drm_device *dev = master->minor->dev; |
Dave Airlie | c1ff85d | 2009-01-19 17:17:58 +1000 | [diff] [blame] | 121 | struct drm_map_list *r_list, *list_temp; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 122 | |
| 123 | list_del(&master->head); |
| 124 | |
| 125 | if (dev->driver->master_destroy) |
| 126 | dev->driver->master_destroy(dev, master); |
| 127 | |
Dave Airlie | c1ff85d | 2009-01-19 17:17:58 +1000 | [diff] [blame] | 128 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) { |
| 129 | if (r_list->master == master) { |
| 130 | drm_rmmap_locked(dev, r_list->map); |
| 131 | r_list = NULL; |
| 132 | } |
| 133 | } |
| 134 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 135 | if (master->unique) { |
Vegard Nossum | 1147c9c | 2008-12-02 13:38:47 +1000 | [diff] [blame] | 136 | drm_free(master->unique, master->unique_size, DRM_MEM_DRIVER); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 137 | master->unique = NULL; |
| 138 | master->unique_len = 0; |
| 139 | } |
| 140 | |
| 141 | list_for_each_entry_safe(pt, next, &master->magicfree, head) { |
| 142 | list_del(&pt->head); |
| 143 | drm_ht_remove_item(&master->magiclist, &pt->hash_item); |
| 144 | drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC); |
| 145 | } |
| 146 | |
| 147 | drm_ht_remove(&master->magiclist); |
| 148 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 149 | drm_free(master, sizeof(*master), DRM_MEM_DRIVER); |
| 150 | } |
| 151 | |
| 152 | void drm_master_put(struct drm_master **master) |
| 153 | { |
| 154 | kref_put(&(*master)->refcount, drm_master_destroy); |
| 155 | *master = NULL; |
| 156 | } |
| 157 | |
| 158 | int drm_setmaster_ioctl(struct drm_device *dev, void *data, |
| 159 | struct drm_file *file_priv) |
| 160 | { |
| 161 | if (file_priv->minor->master && file_priv->minor->master != file_priv->master) |
| 162 | return -EINVAL; |
| 163 | |
| 164 | if (!file_priv->master) |
| 165 | return -EINVAL; |
| 166 | |
| 167 | if (!file_priv->minor->master && |
| 168 | file_priv->minor->master != file_priv->master) { |
| 169 | mutex_lock(&dev->struct_mutex); |
| 170 | file_priv->minor->master = drm_master_get(file_priv->master); |
Helge Bahmann | 5ad8b7d | 2009-03-04 21:49:14 +1000 | [diff] [blame] | 171 | mutex_unlock(&dev->struct_mutex); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | int drm_dropmaster_ioctl(struct drm_device *dev, void *data, |
| 178 | struct drm_file *file_priv) |
| 179 | { |
| 180 | if (!file_priv->master) |
| 181 | return -EINVAL; |
| 182 | mutex_lock(&dev->struct_mutex); |
| 183 | drm_master_put(&file_priv->minor->master); |
| 184 | mutex_unlock(&dev->struct_mutex); |
| 185 | return 0; |
| 186 | } |
| 187 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 188 | static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev, |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 189 | const struct pci_device_id *ent, |
| 190 | struct drm_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
| 192 | int retcode; |
| 193 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 194 | INIT_LIST_HEAD(&dev->filelist); |
Dave Airlie | 7c158ac | 2007-07-11 12:05:36 +1000 | [diff] [blame] | 195 | INIT_LIST_HEAD(&dev->ctxlist); |
| 196 | INIT_LIST_HEAD(&dev->vmalist); |
| 197 | INIT_LIST_HEAD(&dev->maplist); |
| 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | spin_lock_init(&dev->count_lock); |
=?utf-8?q?Michel_D=C3=A4nzer?= | bea5679 | 2006-10-24 23:04:19 +1000 | [diff] [blame] | 200 | spin_lock_init(&dev->drw_lock); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 201 | init_timer(&dev->timer); |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 202 | mutex_init(&dev->struct_mutex); |
| 203 | mutex_init(&dev->ctxlist_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Dave Airlie | 45ea5dcd | 2007-07-17 14:20:07 +1000 | [diff] [blame] | 205 | idr_init(&dev->drw_idr); |
| 206 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 207 | dev->pdev = pdev; |
Eric Anholt | 2f02cc3 | 2006-09-22 04:19:34 +1000 | [diff] [blame] | 208 | dev->pci_device = pdev->device; |
| 209 | dev->pci_vendor = pdev->vendor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | #ifdef __alpha__ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 212 | dev->hose = pdev->sysdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Thomas Hellstrom | 8d153f7 | 2006-08-07 22:36:47 +1000 | [diff] [blame] | 215 | if (drm_ht_create(&dev->map_hash, 12)) { |
Thomas Hellstrom | 8d153f7 | 2006-08-07 22:36:47 +1000 | [diff] [blame] | 216 | return -ENOMEM; |
| 217 | } |
Dave Airlie | 836cf04 | 2005-07-10 19:27:04 +1000 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* the DRM has 6 basic counters */ |
| 220 | dev->counters = 6; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 221 | dev->types[0] = _DRM_STAT_LOCK; |
| 222 | dev->types[1] = _DRM_STAT_OPENS; |
| 223 | dev->types[2] = _DRM_STAT_CLOSES; |
| 224 | dev->types[3] = _DRM_STAT_IOCTLS; |
| 225 | dev->types[4] = _DRM_STAT_LOCKS; |
| 226 | dev->types[5] = _DRM_STAT_UNLOCKS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | dev->driver = driver; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (drm_core_has_AGP(dev)) { |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 231 | if (drm_device_is_agp(dev)) |
| 232 | dev->agp = drm_agp_init(dev); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 233 | if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP) |
| 234 | && (dev->agp == NULL)) { |
| 235 | DRM_ERROR("Cannot initialize the agpgart module.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | retcode = -EINVAL; |
| 237 | goto error_out_unreg; |
| 238 | } |
| 239 | if (drm_core_has_MTRR(dev)) { |
| 240 | if (dev->agp) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 241 | dev->agp->agp_mtrr = |
| 242 | mtrr_add(dev->agp->agp_info.aper_base, |
| 243 | dev->agp->agp_info.aper_size * |
| 244 | 1024 * 1024, MTRR_TYPE_WRCOMB, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
| 246 | } |
| 247 | |
Dave Airlie | 2716a02 | 2007-11-22 18:23:13 +1000 | [diff] [blame] | 248 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 249 | retcode = drm_ctxbitmap_init(dev); |
| 250 | if (retcode) { |
| 251 | DRM_ERROR("Cannot allocate memory for context bitmap.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | goto error_out_unreg; |
| 253 | } |
| 254 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 255 | if (driver->driver_features & DRIVER_GEM) { |
| 256 | retcode = drm_gem_init(dev); |
| 257 | if (retcode) { |
| 258 | DRM_ERROR("Cannot initialize graphics execution " |
| 259 | "manager (GEM)\n"); |
| 260 | goto error_out_unreg; |
| 261 | } |
| 262 | } |
| 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 265 | |
| 266 | error_out_unreg: |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 267 | drm_lastclose(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return retcode; |
| 269 | } |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | /** |
| 273 | * Get a secondary minor number. |
| 274 | * |
| 275 | * \param dev device data structure |
| 276 | * \param sec-minor structure to hold the assigned minor |
| 277 | * \return negative number on failure. |
| 278 | * |
| 279 | * Search an empty entry and initialize it to the given parameters, and |
| 280 | * create the proc init entry via proc_init(). This routines assigns |
| 281 | * minor numbers to secondary heads of multi-headed cards |
| 282 | */ |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 283 | static 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] | 284 | { |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 285 | struct drm_minor *new_minor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | int ret; |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 287 | int minor_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | DRM_DEBUG("\n"); |
| 290 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 291 | minor_id = drm_minor_get_id(dev, type); |
| 292 | if (minor_id < 0) |
| 293 | return minor_id; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 294 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 295 | new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL); |
| 296 | if (!new_minor) { |
| 297 | ret = -ENOMEM; |
| 298 | goto err_idr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 300 | |
| 301 | new_minor->type = type; |
| 302 | new_minor->device = MKDEV(DRM_MAJOR, minor_id); |
| 303 | new_minor->dev = dev; |
| 304 | new_minor->index = minor_id; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 305 | INIT_LIST_HEAD(&new_minor->master_list); |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 306 | |
| 307 | idr_replace(&drm_minors_idr, new_minor, minor_id); |
| 308 | |
| 309 | if (type == DRM_MINOR_LEGACY) { |
| 310 | ret = drm_proc_init(new_minor, minor_id, drm_proc_root); |
| 311 | if (ret) { |
| 312 | DRM_ERROR("DRM: Failed to initialize /proc/dri.\n"); |
| 313 | goto err_mem; |
| 314 | } |
| 315 | } else |
| 316 | new_minor->dev_root = NULL; |
| 317 | |
| 318 | ret = drm_sysfs_device_add(new_minor); |
| 319 | if (ret) { |
| 320 | printk(KERN_ERR |
| 321 | "DRM: Error sysfs_device_add.\n"); |
| 322 | goto err_g2; |
| 323 | } |
| 324 | *minor = new_minor; |
| 325 | |
| 326 | DRM_DEBUG("new minor assigned %d\n", minor_id); |
| 327 | return 0; |
| 328 | |
| 329 | |
| 330 | err_g2: |
| 331 | if (new_minor->type == DRM_MINOR_LEGACY) |
| 332 | drm_proc_cleanup(new_minor, drm_proc_root); |
| 333 | err_mem: |
| 334 | kfree(new_minor); |
| 335 | err_idr: |
| 336 | idr_remove(&drm_minors_idr, minor_id); |
| 337 | *minor = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | return ret; |
| 339 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 340 | |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 341 | /** |
| 342 | * Register. |
| 343 | * |
| 344 | * \param pdev - PCI device structure |
| 345 | * \param ent entry from the PCI ID table with device type flags |
| 346 | * \return zero on success or a negative number on failure. |
| 347 | * |
| 348 | * Attempt to gets inter module "drm" information. If we are first |
| 349 | * then register the character device and inter module information. |
| 350 | * Try and register, if we fail to register, backout previous work. |
| 351 | */ |
| 352 | int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 353 | struct drm_driver *driver) |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 354 | { |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 355 | struct drm_device *dev; |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 356 | int ret; |
| 357 | |
| 358 | DRM_DEBUG("\n"); |
| 359 | |
| 360 | dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB); |
| 361 | if (!dev) |
| 362 | return -ENOMEM; |
| 363 | |
Jeff Garzik | 2c3f0ed | 2006-12-09 10:50:22 +1100 | [diff] [blame] | 364 | ret = pci_enable_device(pdev); |
| 365 | if (ret) |
| 366 | goto err_g1; |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 367 | |
Dave Airlie | 19a8f59a | 2008-02-07 14:48:32 +1000 | [diff] [blame] | 368 | pci_set_master(pdev); |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 369 | if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) { |
| 370 | printk(KERN_ERR "DRM: Fill_in_dev failed.\n"); |
Jeff Garzik | 2c3f0ed | 2006-12-09 10:50:22 +1100 | [diff] [blame] | 371 | goto err_g2; |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 372 | } |
Dave Airlie | bc5f452 | 2007-11-05 12:50:58 +1000 | [diff] [blame] | 373 | |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 374 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 375 | pci_set_drvdata(pdev, dev); |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 376 | ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL); |
| 377 | if (ret) |
| 378 | goto err_g2; |
| 379 | } |
| 380 | |
| 381 | if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY))) |
| 382 | goto err_g3; |
| 383 | |
| 384 | if (dev->driver->load) { |
| 385 | ret = dev->driver->load(dev, ent->driver_data); |
| 386 | if (ret) |
Dave Airlie | a9d51a5 | 2008-12-07 12:02:21 +1000 | [diff] [blame] | 387 | goto err_g3; |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | /* setup the grouping for the legacy output */ |
| 391 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
| 392 | ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group); |
| 393 | if (ret) |
| 394 | goto err_g3; |
| 395 | } |
Dave Airlie | a9d51a5 | 2008-12-07 12:02:21 +1000 | [diff] [blame] | 396 | |
Dave Airlie | e7f7ab4 | 2008-11-28 13:43:47 +1000 | [diff] [blame] | 397 | list_add_tail(&dev->driver_item, &driver->device_list); |
| 398 | |
Benjamin Herrenschmidt | cd00f95 | 2009-02-06 16:46:27 +1100 | [diff] [blame^] | 399 | DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n", |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 400 | driver->name, driver->major, driver->minor, driver->patchlevel, |
Benjamin Herrenschmidt | cd00f95 | 2009-02-06 16:46:27 +1100 | [diff] [blame^] | 401 | driver->date, pci_name(pdev), dev->primary->index); |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 402 | |
| 403 | return 0; |
| 404 | |
Dave Airlie | a9d51a5 | 2008-12-07 12:02:21 +1000 | [diff] [blame] | 405 | err_g3: |
| 406 | drm_put_minor(&dev->primary); |
Jeff Garzik | 2c3f0ed | 2006-12-09 10:50:22 +1100 | [diff] [blame] | 407 | err_g2: |
| 408 | pci_disable_device(pdev); |
| 409 | err_g1: |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 410 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); |
| 411 | return ret; |
| 412 | } |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 413 | EXPORT_SYMBOL(drm_get_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | /** |
| 416 | * Put a secondary minor number. |
| 417 | * |
| 418 | * \param sec_minor - structure to be released |
| 419 | * \return always zero |
| 420 | * |
| 421 | * Cleans up the proc resources. Not legal for this to be the |
| 422 | * last minor released. |
| 423 | * |
| 424 | */ |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 425 | int drm_put_minor(struct drm_minor **minor_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | { |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 427 | struct drm_minor *minor = *minor_p; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 428 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 429 | DRM_DEBUG("release secondary minor %d\n", minor->index); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 430 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 431 | if (minor->type == DRM_MINOR_LEGACY) |
| 432 | drm_proc_cleanup(minor, drm_proc_root); |
| 433 | drm_sysfs_device_remove(minor); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 434 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 435 | idr_remove(&drm_minors_idr, minor->index); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 436 | |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 437 | kfree(minor); |
| 438 | *minor_p = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | return 0; |
| 440 | } |
Kristian Høgsberg | 112b715 | 2009-01-04 16:55:33 -0500 | [diff] [blame] | 441 | |
| 442 | /** |
| 443 | * Called via drm_exit() at module unload time or when pci device is |
| 444 | * unplugged. |
| 445 | * |
| 446 | * Cleans up all DRM device, calling drm_lastclose(). |
| 447 | * |
| 448 | * \sa drm_init |
| 449 | */ |
| 450 | void drm_put_dev(struct drm_device *dev) |
| 451 | { |
| 452 | struct drm_driver *driver = dev->driver; |
| 453 | struct drm_map_list *r_list, *list_temp; |
| 454 | |
| 455 | DRM_DEBUG("\n"); |
| 456 | |
| 457 | if (!dev) { |
| 458 | DRM_ERROR("cleanup called no dev\n"); |
| 459 | return; |
| 460 | } |
| 461 | |
| 462 | drm_vblank_cleanup(dev); |
| 463 | |
| 464 | drm_lastclose(dev); |
| 465 | |
| 466 | if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) && |
| 467 | dev->agp && dev->agp->agp_mtrr >= 0) { |
| 468 | int retval; |
| 469 | retval = mtrr_del(dev->agp->agp_mtrr, |
| 470 | dev->agp->agp_info.aper_base, |
| 471 | dev->agp->agp_info.aper_size * 1024 * 1024); |
| 472 | DRM_DEBUG("mtrr_del=%d\n", retval); |
| 473 | } |
| 474 | |
| 475 | if (dev->driver->unload) |
| 476 | dev->driver->unload(dev); |
| 477 | |
| 478 | if (drm_core_has_AGP(dev) && dev->agp) { |
| 479 | drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS); |
| 480 | dev->agp = NULL; |
| 481 | } |
| 482 | |
| 483 | drm_ht_remove(&dev->map_hash); |
| 484 | drm_ctxbitmap_cleanup(dev); |
| 485 | |
| 486 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) |
| 487 | drm_rmmap(dev, r_list->map); |
| 488 | |
| 489 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 490 | drm_put_minor(&dev->control); |
| 491 | |
| 492 | if (driver->driver_features & DRIVER_GEM) |
| 493 | drm_gem_destroy(dev); |
| 494 | |
| 495 | drm_put_minor(&dev->primary); |
| 496 | |
| 497 | if (dev->devname) { |
| 498 | drm_free(dev->devname, strlen(dev->devname) + 1, |
| 499 | DRM_MEM_DRIVER); |
| 500 | dev->devname = NULL; |
| 501 | } |
| 502 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); |
| 503 | } |
| 504 | EXPORT_SYMBOL(drm_put_dev); |