blob: def072df90281330effdd74d38d2411949970fe5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
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
39unsigned int drm_cards_limit = 16; /* Enough for one machine */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040unsigned int drm_debug = 0; /* 1 to enable debug output */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041EXPORT_SYMBOL(drm_debug);
42
Dave Airlieb5e89ed2005-09-25 14:28:13 +100043MODULE_AUTHOR(CORE_AUTHOR);
44MODULE_DESCRIPTION(CORE_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045MODULE_LICENSE("GPL and additional rights");
46MODULE_PARM_DESC(cards_limit, "Maximum number of graphics cards");
47MODULE_PARM_DESC(debug, "Enable debug output");
48
49module_param_named(cards_limit, drm_cards_limit, int, 0444);
Dave Jonesc0758142005-10-03 15:02:20 -040050module_param_named(debug, drm_debug, int, 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Dave Airlie84b1fd12007-07-11 15:53:27 +100052struct drm_head **drm_heads;
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -080053struct class *drm_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct proc_dir_entry *drm_proc_root;
55
Dave Airlie84b1fd12007-07-11 15:53:27 +100056static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
Dave Airlieb5e89ed2005-09-25 14:28:13 +100057 const struct pci_device_id *ent,
58 struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int retcode;
61
Dave Airliebd1b3312007-05-26 05:01:51 +100062 INIT_LIST_HEAD(&dev->filelist);
Dave Airlie7c158ac2007-07-11 12:05:36 +100063 INIT_LIST_HEAD(&dev->ctxlist);
64 INIT_LIST_HEAD(&dev->vmalist);
65 INIT_LIST_HEAD(&dev->maplist);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 spin_lock_init(&dev->count_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100068 spin_lock_init(&dev->drw_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=8163e412006-10-24 23:30:01 +100069 spin_lock_init(&dev->tasklet_lock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +110070 spin_lock_init(&dev->lock.spinlock);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100071 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +110072 mutex_init(&dev->struct_mutex);
73 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Dave Airlie45ea5dcd2007-07-17 14:20:07 +100075 idr_init(&dev->drw_idr);
76
Dave Airlieb5e89ed2005-09-25 14:28:13 +100077 dev->pdev = pdev;
Eric Anholt2f02cc32006-09-22 04:19:34 +100078 dev->pci_device = pdev->device;
79 dev->pci_vendor = pdev->vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +100082 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 dev->irq = pdev->irq;
85
Thomas Hellstrom8d153f72006-08-07 22:36:47 +100086 if (drm_ht_create(&dev->map_hash, 12)) {
Thomas Hellstrom8d153f72006-08-07 22:36:47 +100087 return -ENOMEM;
88 }
Dave Airlie836cf042005-07-10 19:27:04 +100089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* the DRM has 6 basic counters */
91 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100092 dev->types[0] = _DRM_STAT_LOCK;
93 dev->types[1] = _DRM_STAT_OPENS;
94 dev->types[2] = _DRM_STAT_CLOSES;
95 dev->types[3] = _DRM_STAT_IOCTLS;
96 dev->types[4] = _DRM_STAT_LOCKS;
97 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +1000102 if (drm_device_is_agp(dev))
103 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000104 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
105 && (dev->agp == NULL)) {
106 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 retcode = -EINVAL;
108 goto error_out_unreg;
109 }
110 if (drm_core_has_MTRR(dev)) {
111 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000112 dev->agp->agp_mtrr =
113 mtrr_add(dev->agp->agp_info.aper_base,
114 dev->agp->agp_info.aper_size *
115 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117 }
118
Dave Airlie2716a022007-11-22 18:23:13 +1000119 if (dev->driver->load)
120 if ((retcode = dev->driver->load(dev, ent->driver_data)))
121 goto error_out_unreg;
122
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123 retcode = drm_ctxbitmap_init(dev);
124 if (retcode) {
125 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto error_out_unreg;
127 }
128
129 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130
131 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100132 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return retcode;
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/**
138 * Get a secondary minor number.
139 *
140 * \param dev device data structure
141 * \param sec-minor structure to hold the assigned minor
142 * \return negative number on failure.
143 *
144 * Search an empty entry and initialize it to the given parameters, and
145 * create the proc init entry via proc_init(). This routines assigns
146 * minor numbers to secondary heads of multi-headed cards
147 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000148static int drm_get_head(struct drm_device * dev, struct drm_head * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000150 struct drm_head **heads = drm_heads;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 int ret;
152 int minor;
153
154 DRM_DEBUG("\n");
155
156 for (minor = 0; minor < drm_cards_limit; minor++, heads++) {
157 if (!*heads) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000158
Dave Airlie84b1fd12007-07-11 15:53:27 +1000159 *head = (struct drm_head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000160 .dev = dev,.device =
161 MKDEV(DRM_MAJOR, minor),.minor = minor,};
162
163 if ((ret =
164 drm_proc_init(dev, minor, drm_proc_root,
165 &head->dev_root))) {
166 printk(KERN_ERR
167 "DRM: Failed to initialize /proc/dri.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 goto err_g1;
169 }
170
Jesse Barnese8b962b2007-11-22 14:02:38 +1000171 ret = drm_sysfs_device_add(dev, head);
172 if (ret) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000173 printk(KERN_ERR
174 "DRM: Error sysfs_device_add.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto err_g2;
176 }
177 *heads = head;
178
179 DRM_DEBUG("new minor assigned %d\n", minor);
180 return 0;
181 }
182 }
183 DRM_ERROR("out of minors\n");
184 return -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185 err_g2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000187 err_g1:
Dave Airlie84b1fd12007-07-11 15:53:27 +1000188 *head = (struct drm_head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000189 .dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return ret;
191}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192
Dave Airliec94f7022005-07-07 21:03:38 +1000193/**
194 * Register.
195 *
196 * \param pdev - PCI device structure
197 * \param ent entry from the PCI ID table with device type flags
198 * \return zero on success or a negative number on failure.
199 *
200 * Attempt to gets inter module "drm" information. If we are first
201 * then register the character device and inter module information.
202 * Try and register, if we fail to register, backout previous work.
203 */
204int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000205 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000206{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000207 struct drm_device *dev;
Dave Airliec94f7022005-07-07 21:03:38 +1000208 int ret;
209
210 DRM_DEBUG("\n");
211
212 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
213 if (!dev)
214 return -ENOMEM;
215
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100216 ret = pci_enable_device(pdev);
217 if (ret)
218 goto err_g1;
Dave Airliec94f7022005-07-07 21:03:38 +1000219
220 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
221 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100222 goto err_g2;
Dave Airliec94f7022005-07-07 21:03:38 +1000223 }
224 if ((ret = drm_get_head(dev, &dev->primary)))
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100225 goto err_g2;
Dave Airliebc5f4522007-11-05 12:50:58 +1000226
Dave Airlie22eae942005-11-10 22:16:34 +1100227 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
228 driver->name, driver->major, driver->minor, driver->patchlevel,
229 driver->date, dev->primary.minor);
Dave Airliec94f7022005-07-07 21:03:38 +1000230
231 return 0;
232
Jeff Garzik2c3f0ed2006-12-09 10:50:22 +1100233err_g2:
234 pci_disable_device(pdev);
235err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000236 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
237 return ret;
238}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/**
241 * Put a device minor number.
242 *
243 * \param dev device data structure
244 * \return always zero
245 *
246 * Cleans up the proc resources. If it is the last minor then release the foreign
247 * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
248 * unregisters the character device.
249 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000250int drm_put_dev(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
253
254 if (dev->unique) {
255 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
256 dev->unique = NULL;
257 dev->unique_len = 0;
258 }
259 if (dev->devname) {
260 drm_free(dev->devname, strlen(dev->devname) + 1,
261 DRM_MEM_DRIVER);
262 dev->devname = NULL;
263 }
264 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
265 return 0;
266}
267
268/**
269 * Put a secondary minor number.
270 *
271 * \param sec_minor - structure to be released
272 * \return always zero
273 *
274 * Cleans up the proc resources. Not legal for this to be the
275 * last minor released.
276 *
277 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000278int drm_put_head(struct drm_head * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 int minor = head->minor;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 DRM_DEBUG("release secondary minor %d\n", minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000285 drm_sysfs_device_remove(head->dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286
Dave Airlie84b1fd12007-07-11 15:53:27 +1000287 *head = (struct drm_head) {.dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 drm_heads[minor] = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292}