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 | |
| 39 | unsigned int drm_cards_limit = 16; /* Enough for one machine */ |
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 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 43 | MODULE_AUTHOR(CORE_AUTHOR); |
| 44 | MODULE_DESCRIPTION(CORE_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | MODULE_LICENSE("GPL and additional rights"); |
| 46 | MODULE_PARM_DESC(cards_limit, "Maximum number of graphics cards"); |
| 47 | MODULE_PARM_DESC(debug, "Enable debug output"); |
| 48 | |
| 49 | module_param_named(cards_limit, drm_cards_limit, int, 0444); |
Dave Jones | c075814 | 2005-10-03 15:02:20 -0400 | [diff] [blame] | 50 | module_param_named(debug, drm_debug, int, 0600); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | drm_head_t **drm_heads; |
Greg Kroah-Hartman | 0650fd5 | 2006-01-20 14:08:59 -0800 | [diff] [blame] | 53 | struct class *drm_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | struct proc_dir_entry *drm_proc_root; |
| 55 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 56 | static int drm_fill_in_dev(drm_device_t * dev, struct pci_dev *pdev, |
| 57 | const struct pci_device_id *ent, |
| 58 | struct drm_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
| 60 | int retcode; |
| 61 | |
| 62 | spin_lock_init(&dev->count_lock); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 63 | init_timer(&dev->timer); |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 64 | mutex_init(&dev->struct_mutex); |
| 65 | mutex_init(&dev->ctxlist_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 67 | dev->pdev = pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | #ifdef __alpha__ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 70 | dev->hose = pdev->sysdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | dev->irq = pdev->irq; |
| 73 | |
Dave Airlie | 836cf04 | 2005-07-10 19:27:04 +1000 | [diff] [blame] | 74 | dev->maplist = drm_calloc(1, sizeof(*dev->maplist), DRM_MEM_MAPS); |
| 75 | if (dev->maplist == NULL) |
| 76 | return -ENOMEM; |
| 77 | INIT_LIST_HEAD(&dev->maplist->head); |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* the DRM has 6 basic counters */ |
| 80 | dev->counters = 6; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 81 | dev->types[0] = _DRM_STAT_LOCK; |
| 82 | dev->types[1] = _DRM_STAT_OPENS; |
| 83 | dev->types[2] = _DRM_STAT_CLOSES; |
| 84 | dev->types[3] = _DRM_STAT_IOCTLS; |
| 85 | dev->types[4] = _DRM_STAT_LOCKS; |
| 86 | dev->types[5] = _DRM_STAT_UNLOCKS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | dev->driver = driver; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 89 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 90 | if (dev->driver->load) |
| 91 | if ((retcode = dev->driver->load(dev, ent->driver_data))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | goto error_out_unreg; |
| 93 | |
| 94 | if (drm_core_has_AGP(dev)) { |
Dave Airlie | cda1738 | 2005-07-10 17:31:26 +1000 | [diff] [blame] | 95 | if (drm_device_is_agp(dev)) |
| 96 | dev->agp = drm_agp_init(dev); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 97 | if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP) |
| 98 | && (dev->agp == NULL)) { |
| 99 | DRM_ERROR("Cannot initialize the agpgart module.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | retcode = -EINVAL; |
| 101 | goto error_out_unreg; |
| 102 | } |
| 103 | if (drm_core_has_MTRR(dev)) { |
| 104 | if (dev->agp) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 105 | dev->agp->agp_mtrr = |
| 106 | mtrr_add(dev->agp->agp_info.aper_base, |
| 107 | dev->agp->agp_info.aper_size * |
| 108 | 1024 * 1024, MTRR_TYPE_WRCOMB, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 112 | retcode = drm_ctxbitmap_init(dev); |
| 113 | if (retcode) { |
| 114 | DRM_ERROR("Cannot allocate memory for context bitmap.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | goto error_out_unreg; |
| 116 | } |
| 117 | |
| 118 | return 0; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 119 | |
| 120 | error_out_unreg: |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 121 | drm_lastclose(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return retcode; |
| 123 | } |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | /** |
| 127 | * Get a secondary minor number. |
| 128 | * |
| 129 | * \param dev device data structure |
| 130 | * \param sec-minor structure to hold the assigned minor |
| 131 | * \return negative number on failure. |
| 132 | * |
| 133 | * Search an empty entry and initialize it to the given parameters, and |
| 134 | * create the proc init entry via proc_init(). This routines assigns |
| 135 | * minor numbers to secondary heads of multi-headed cards |
| 136 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 137 | static int drm_get_head(drm_device_t * dev, drm_head_t * head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { |
| 139 | drm_head_t **heads = drm_heads; |
| 140 | int ret; |
| 141 | int minor; |
| 142 | |
| 143 | DRM_DEBUG("\n"); |
| 144 | |
| 145 | for (minor = 0; minor < drm_cards_limit; minor++, heads++) { |
| 146 | if (!*heads) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | *head = (drm_head_t) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 149 | .dev = dev,.device = |
| 150 | MKDEV(DRM_MAJOR, minor),.minor = minor,}; |
| 151 | |
| 152 | if ((ret = |
| 153 | drm_proc_init(dev, minor, drm_proc_root, |
| 154 | &head->dev_root))) { |
| 155 | printk(KERN_ERR |
| 156 | "DRM: Failed to initialize /proc/dri.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | goto err_g1; |
| 158 | } |
| 159 | |
Dave Airlie | 732052e | 2005-11-11 22:07:35 +1100 | [diff] [blame] | 160 | head->dev_class = drm_sysfs_device_add(drm_class, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | if (IS_ERR(head->dev_class)) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 162 | printk(KERN_ERR |
| 163 | "DRM: Error sysfs_device_add.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | ret = PTR_ERR(head->dev_class); |
| 165 | goto err_g2; |
| 166 | } |
| 167 | *heads = head; |
| 168 | |
| 169 | DRM_DEBUG("new minor assigned %d\n", minor); |
| 170 | return 0; |
| 171 | } |
| 172 | } |
| 173 | DRM_ERROR("out of minors\n"); |
| 174 | return -ENOMEM; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 175 | err_g2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | drm_proc_cleanup(minor, drm_proc_root, head->dev_root); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 177 | err_g1: |
| 178 | *head = (drm_head_t) { |
| 179 | .dev = NULL}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | return ret; |
| 181 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 182 | |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 183 | /** |
| 184 | * Register. |
| 185 | * |
| 186 | * \param pdev - PCI device structure |
| 187 | * \param ent entry from the PCI ID table with device type flags |
| 188 | * \return zero on success or a negative number on failure. |
| 189 | * |
| 190 | * Attempt to gets inter module "drm" information. If we are first |
| 191 | * then register the character device and inter module information. |
| 192 | * Try and register, if we fail to register, backout previous work. |
| 193 | */ |
| 194 | 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] | 195 | struct drm_driver *driver) |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 196 | { |
| 197 | drm_device_t *dev; |
| 198 | int ret; |
| 199 | |
| 200 | DRM_DEBUG("\n"); |
| 201 | |
| 202 | dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB); |
| 203 | if (!dev) |
| 204 | return -ENOMEM; |
| 205 | |
| 206 | pci_enable_device(pdev); |
| 207 | |
| 208 | if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) { |
| 209 | printk(KERN_ERR "DRM: Fill_in_dev failed.\n"); |
| 210 | goto err_g1; |
| 211 | } |
| 212 | if ((ret = drm_get_head(dev, &dev->primary))) |
| 213 | goto err_g1; |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 214 | |
| 215 | DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n", |
| 216 | driver->name, driver->major, driver->minor, driver->patchlevel, |
| 217 | driver->date, dev->primary.minor); |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 218 | |
| 219 | return 0; |
| 220 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 221 | err_g1: |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 222 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); |
| 223 | return ret; |
| 224 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | /** |
| 227 | * Put a device minor number. |
| 228 | * |
| 229 | * \param dev device data structure |
| 230 | * \return always zero |
| 231 | * |
| 232 | * Cleans up the proc resources. If it is the last minor then release the foreign |
| 233 | * "drm" data, otherwise unregisters the "drm" data, frees the dev list and |
| 234 | * unregisters the character device. |
| 235 | */ |
| 236 | int drm_put_dev(drm_device_t * dev) |
| 237 | { |
| 238 | DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name); |
| 239 | |
| 240 | if (dev->unique) { |
| 241 | drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER); |
| 242 | dev->unique = NULL; |
| 243 | dev->unique_len = 0; |
| 244 | } |
| 245 | if (dev->devname) { |
| 246 | drm_free(dev->devname, strlen(dev->devname) + 1, |
| 247 | DRM_MEM_DRIVER); |
| 248 | dev->devname = NULL; |
| 249 | } |
| 250 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Put a secondary minor number. |
| 256 | * |
| 257 | * \param sec_minor - structure to be released |
| 258 | * \return always zero |
| 259 | * |
| 260 | * Cleans up the proc resources. Not legal for this to be the |
| 261 | * last minor released. |
| 262 | * |
| 263 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 264 | int drm_put_head(drm_head_t * head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
| 266 | int minor = head->minor; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | DRM_DEBUG("release secondary minor %d\n", minor); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | drm_proc_cleanup(minor, drm_proc_root, head->dev_root); |
Dave Airlie | 732052e | 2005-11-11 22:07:35 +1100 | [diff] [blame] | 271 | drm_sysfs_device_remove(head->dev_class); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 272 | |
Dave Airlie | 732052e | 2005-11-11 22:07:35 +1100 | [diff] [blame] | 273 | *head = (drm_head_t) {.dev = NULL}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
| 275 | drm_heads[minor] = NULL; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return 0; |
| 278 | } |