blob: 5fd6dc0870cf7b4d36c6b526fceca7e846e5096d [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
52drm_head_t **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 Airlieb5e89ed2005-09-25 14:28:13 +100056static 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 Torvalds1da177e2005-04-16 15:20:36 -070059{
60 int retcode;
61
62 spin_lock_init(&dev->count_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +100063 spin_lock_init(&dev->drw_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=8163e412006-10-24 23:30:01 +100064 spin_lock_init(&dev->tasklet_lock);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +110066 mutex_init(&dev->struct_mutex);
67 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Dave Airlieb5e89ed2005-09-25 14:28:13 +100069 dev->pdev = pdev;
Eric Anholt2f02cc32006-09-22 04:19:34 +100070 dev->pci_device = pdev->device;
71 dev->pci_vendor = pdev->vendor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +100074 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 dev->irq = pdev->irq;
77
Dave Airlie836cf042005-07-10 19:27:04 +100078 dev->maplist = drm_calloc(1, sizeof(*dev->maplist), DRM_MEM_MAPS);
79 if (dev->maplist == NULL)
80 return -ENOMEM;
81 INIT_LIST_HEAD(&dev->maplist->head);
Thomas Hellstrom8d153f72006-08-07 22:36:47 +100082 if (drm_ht_create(&dev->map_hash, 12)) {
83 drm_free(dev->maplist, sizeof(*dev->maplist), DRM_MEM_MAPS);
84 return -ENOMEM;
85 }
Dave Airlie836cf042005-07-10 19:27:04 +100086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* the DRM has 6 basic counters */
88 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100089 dev->types[0] = _DRM_STAT_LOCK;
90 dev->types[1] = _DRM_STAT_OPENS;
91 dev->types[2] = _DRM_STAT_CLOSES;
92 dev->types[3] = _DRM_STAT_IOCTLS;
93 dev->types[4] = _DRM_STAT_LOCKS;
94 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097
Dave Airlie22eae942005-11-10 22:16:34 +110098 if (dev->driver->load)
99 if ((retcode = dev->driver->load(dev, ent->driver_data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 goto error_out_unreg;
101
102 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +1000103 if (drm_device_is_agp(dev))
104 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000105 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
106 && (dev->agp == NULL)) {
107 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 retcode = -EINVAL;
109 goto error_out_unreg;
110 }
111 if (drm_core_has_MTRR(dev)) {
112 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000113 dev->agp->agp_mtrr =
114 mtrr_add(dev->agp->agp_info.aper_base,
115 dev->agp->agp_info.aper_size *
116 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
119
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000120 retcode = drm_ctxbitmap_init(dev);
121 if (retcode) {
122 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 goto error_out_unreg;
124 }
125
126 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000127
128 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100129 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return retcode;
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/**
135 * Get a secondary minor number.
136 *
137 * \param dev device data structure
138 * \param sec-minor structure to hold the assigned minor
139 * \return negative number on failure.
140 *
141 * Search an empty entry and initialize it to the given parameters, and
142 * create the proc init entry via proc_init(). This routines assigns
143 * minor numbers to secondary heads of multi-headed cards
144 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000145static int drm_get_head(drm_device_t * dev, drm_head_t * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 drm_head_t **heads = drm_heads;
148 int ret;
149 int minor;
150
151 DRM_DEBUG("\n");
152
153 for (minor = 0; minor < drm_cards_limit; minor++, heads++) {
154 if (!*heads) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 *head = (drm_head_t) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000157 .dev = dev,.device =
158 MKDEV(DRM_MAJOR, minor),.minor = minor,};
159
160 if ((ret =
161 drm_proc_init(dev, minor, drm_proc_root,
162 &head->dev_root))) {
163 printk(KERN_ERR
164 "DRM: Failed to initialize /proc/dri.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 goto err_g1;
166 }
167
Dave Airlie732052e2005-11-11 22:07:35 +1100168 head->dev_class = drm_sysfs_device_add(drm_class, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (IS_ERR(head->dev_class)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000170 printk(KERN_ERR
171 "DRM: Error sysfs_device_add.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 ret = PTR_ERR(head->dev_class);
173 goto err_g2;
174 }
175 *heads = head;
176
177 DRM_DEBUG("new minor assigned %d\n", minor);
178 return 0;
179 }
180 }
181 DRM_ERROR("out of minors\n");
182 return -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000183 err_g2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185 err_g1:
186 *head = (drm_head_t) {
187 .dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return ret;
189}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000190
Dave Airliec94f7022005-07-07 21:03:38 +1000191/**
192 * Register.
193 *
194 * \param pdev - PCI device structure
195 * \param ent entry from the PCI ID table with device type flags
196 * \return zero on success or a negative number on failure.
197 *
198 * Attempt to gets inter module "drm" information. If we are first
199 * then register the character device and inter module information.
200 * Try and register, if we fail to register, backout previous work.
201 */
202int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000203 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000204{
205 drm_device_t *dev;
206 int ret;
207
208 DRM_DEBUG("\n");
209
210 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
211 if (!dev)
212 return -ENOMEM;
213
214 pci_enable_device(pdev);
215
216 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
217 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
218 goto err_g1;
219 }
220 if ((ret = drm_get_head(dev, &dev->primary)))
221 goto err_g1;
Dave Airlie22eae942005-11-10 22:16:34 +1100222
223 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
224 driver->name, driver->major, driver->minor, driver->patchlevel,
225 driver->date, dev->primary.minor);
Dave Airliec94f7022005-07-07 21:03:38 +1000226
227 return 0;
228
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229 err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000230 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
231 return ret;
232}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/**
235 * Put a device minor number.
236 *
237 * \param dev device data structure
238 * \return always zero
239 *
240 * Cleans up the proc resources. If it is the last minor then release the foreign
241 * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
242 * unregisters the character device.
243 */
244int drm_put_dev(drm_device_t * dev)
245{
246 DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
247
248 if (dev->unique) {
249 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
250 dev->unique = NULL;
251 dev->unique_len = 0;
252 }
253 if (dev->devname) {
254 drm_free(dev->devname, strlen(dev->devname) + 1,
255 DRM_MEM_DRIVER);
256 dev->devname = NULL;
257 }
258 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
259 return 0;
260}
261
262/**
263 * Put a secondary minor number.
264 *
265 * \param sec_minor - structure to be released
266 * \return always zero
267 *
268 * Cleans up the proc resources. Not legal for this to be the
269 * last minor released.
270 *
271 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000272int drm_put_head(drm_head_t * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 int minor = head->minor;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 DRM_DEBUG("release secondary minor %d\n", minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Dave Airlie732052e2005-11-11 22:07:35 +1100279 drm_sysfs_device_remove(head->dev_class);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000280
Dave Airlie732052e2005-11-11 22:07:35 +1100281 *head = (drm_head_t) {.dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 drm_heads[minor] = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286}