blob: a9bb18ac3a2b35d0bf82516e93df3574f104e75b [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);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100063 init_timer(&dev->timer);
Dave Airlie30e2fb12006-02-02 19:37:46 +110064 mutex_init(&dev->struct_mutex);
65 mutex_init(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dave Airlieb5e89ed2005-09-25 14:28:13 +100067 dev->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef __alpha__
Dave Airlieb5e89ed2005-09-25 14:28:13 +100070 dev->hose = pdev->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 dev->irq = pdev->irq;
73
Dave Airlie836cf042005-07-10 19:27:04 +100074 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);
Thomas Hellstrom8d153f72006-08-07 22:36:47 +100078 if (drm_ht_create(&dev->map_hash, 12)) {
79 drm_free(dev->maplist, sizeof(*dev->maplist), DRM_MEM_MAPS);
80 return -ENOMEM;
81 }
Dave Airlie836cf042005-07-10 19:27:04 +100082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* the DRM has 6 basic counters */
84 dev->counters = 6;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100085 dev->types[0] = _DRM_STAT_LOCK;
86 dev->types[1] = _DRM_STAT_OPENS;
87 dev->types[2] = _DRM_STAT_CLOSES;
88 dev->types[3] = _DRM_STAT_IOCTLS;
89 dev->types[4] = _DRM_STAT_LOCKS;
90 dev->types[5] = _DRM_STAT_UNLOCKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 dev->driver = driver;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100093
Dave Airlie22eae942005-11-10 22:16:34 +110094 if (dev->driver->load)
95 if ((retcode = dev->driver->load(dev, ent->driver_data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto error_out_unreg;
97
98 if (drm_core_has_AGP(dev)) {
Dave Airliecda17382005-07-10 17:31:26 +100099 if (drm_device_is_agp(dev))
100 dev->agp = drm_agp_init(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000101 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
102 && (dev->agp == NULL)) {
103 DRM_ERROR("Cannot initialize the agpgart module.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 retcode = -EINVAL;
105 goto error_out_unreg;
106 }
107 if (drm_core_has_MTRR(dev)) {
108 if (dev->agp)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000109 dev->agp->agp_mtrr =
110 mtrr_add(dev->agp->agp_info.aper_base,
111 dev->agp->agp_info.aper_size *
112 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 }
115
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000116 retcode = drm_ctxbitmap_init(dev);
117 if (retcode) {
118 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 goto error_out_unreg;
120 }
121
122 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123
124 error_out_unreg:
Dave Airlie22eae942005-11-10 22:16:34 +1100125 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return retcode;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/**
131 * Get a secondary minor number.
132 *
133 * \param dev device data structure
134 * \param sec-minor structure to hold the assigned minor
135 * \return negative number on failure.
136 *
137 * Search an empty entry and initialize it to the given parameters, and
138 * create the proc init entry via proc_init(). This routines assigns
139 * minor numbers to secondary heads of multi-headed cards
140 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000141static int drm_get_head(drm_device_t * dev, drm_head_t * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 drm_head_t **heads = drm_heads;
144 int ret;
145 int minor;
146
147 DRM_DEBUG("\n");
148
149 for (minor = 0; minor < drm_cards_limit; minor++, heads++) {
150 if (!*heads) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 *head = (drm_head_t) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000153 .dev = dev,.device =
154 MKDEV(DRM_MAJOR, minor),.minor = minor,};
155
156 if ((ret =
157 drm_proc_init(dev, minor, drm_proc_root,
158 &head->dev_root))) {
159 printk(KERN_ERR
160 "DRM: Failed to initialize /proc/dri.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto err_g1;
162 }
163
Dave Airlie732052e2005-11-11 22:07:35 +1100164 head->dev_class = drm_sysfs_device_add(drm_class, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (IS_ERR(head->dev_class)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000166 printk(KERN_ERR
167 "DRM: Error sysfs_device_add.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ret = PTR_ERR(head->dev_class);
169 goto err_g2;
170 }
171 *heads = head;
172
173 DRM_DEBUG("new minor assigned %d\n", minor);
174 return 0;
175 }
176 }
177 DRM_ERROR("out of minors\n");
178 return -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000179 err_g2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000181 err_g1:
182 *head = (drm_head_t) {
183 .dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return ret;
185}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000186
Dave Airliec94f7022005-07-07 21:03:38 +1000187/**
188 * Register.
189 *
190 * \param pdev - PCI device structure
191 * \param ent entry from the PCI ID table with device type flags
192 * \return zero on success or a negative number on failure.
193 *
194 * Attempt to gets inter module "drm" information. If we are first
195 * then register the character device and inter module information.
196 * Try and register, if we fail to register, backout previous work.
197 */
198int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000199 struct drm_driver *driver)
Dave Airliec94f7022005-07-07 21:03:38 +1000200{
201 drm_device_t *dev;
202 int ret;
203
204 DRM_DEBUG("\n");
205
206 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
207 if (!dev)
208 return -ENOMEM;
209
210 pci_enable_device(pdev);
211
212 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
213 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
214 goto err_g1;
215 }
216 if ((ret = drm_get_head(dev, &dev->primary)))
217 goto err_g1;
Dave Airlie22eae942005-11-10 22:16:34 +1100218
219 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
220 driver->name, driver->major, driver->minor, driver->patchlevel,
221 driver->date, dev->primary.minor);
Dave Airliec94f7022005-07-07 21:03:38 +1000222
223 return 0;
224
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000225 err_g1:
Dave Airliec94f7022005-07-07 21:03:38 +1000226 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
227 return ret;
228}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/**
231 * Put a device minor number.
232 *
233 * \param dev device data structure
234 * \return always zero
235 *
236 * Cleans up the proc resources. If it is the last minor then release the foreign
237 * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
238 * unregisters the character device.
239 */
240int drm_put_dev(drm_device_t * dev)
241{
242 DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
243
244 if (dev->unique) {
245 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
246 dev->unique = NULL;
247 dev->unique_len = 0;
248 }
249 if (dev->devname) {
250 drm_free(dev->devname, strlen(dev->devname) + 1,
251 DRM_MEM_DRIVER);
252 dev->devname = NULL;
253 }
254 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
255 return 0;
256}
257
258/**
259 * Put a secondary minor number.
260 *
261 * \param sec_minor - structure to be released
262 * \return always zero
263 *
264 * Cleans up the proc resources. Not legal for this to be the
265 * last minor released.
266 *
267 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000268int drm_put_head(drm_head_t * head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 int minor = head->minor;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 DRM_DEBUG("release secondary minor %d\n", minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 drm_proc_cleanup(minor, drm_proc_root, head->dev_root);
Dave Airlie732052e2005-11-11 22:07:35 +1100275 drm_sysfs_device_remove(head->dev_class);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276
Dave Airlie732052e2005-11-11 22:07:35 +1100277 *head = (drm_head_t) {.dev = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 drm_heads[minor] = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
282}