blob: 59de4a01515f2a81acd194239f19095b32f4d206 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_drv.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Generic driver template
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 *
8 * To use this template, you must at least define the following (samples
9 * given for the MGA driver):
10 *
11 * \code
12 * #define DRIVER_AUTHOR "VA Linux Systems, Inc."
13 *
14 * #define DRIVER_NAME "mga"
15 * #define DRIVER_DESC "Matrox G200/G400"
16 * #define DRIVER_DATE "20001127"
17 *
18 * #define DRIVER_IOCTL_COUNT DRM_ARRAY_SIZE( mga_ioctls )
19 *
20 * #define drm_x mga_##x
21 * \endcode
22 */
23
24/*
25 * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com
26 *
27 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
28 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
29 * All Rights Reserved.
30 *
31 * Permission is hereby granted, free of charge, to any person obtaining a
32 * copy of this software and associated documentation files (the "Software"),
33 * to deal in the Software without restriction, including without limitation
34 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
35 * and/or sell copies of the Software, and to permit persons to whom the
36 * Software is furnished to do so, subject to the following conditions:
37 *
38 * The above copyright notice and this permission notice (including the next
39 * paragraph) shall be included in all copies or substantial portions of the
40 * Software.
41 *
42 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
45 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
46 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
47 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
48 * OTHER DEALINGS IN THE SOFTWARE.
49 */
50
51#include "drmP.h"
52#include "drm_core.h"
53
Dave Airliec94f7022005-07-07 21:03:38 +100054static int drm_version(struct inode *inode, struct file *filp,
55 unsigned int cmd, unsigned long arg);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/** Ioctl table */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100058static drm_ioctl_desc_t drm_ioctls[] = {
Dave Airliea7a2cc32006-01-02 13:54:04 +110059 [DRM_IOCTL_NR(DRM_IOCTL_VERSION)] = {drm_version, 0},
60 [DRM_IOCTL_NR(DRM_IOCTL_GET_UNIQUE)] = {drm_getunique, 0},
61 [DRM_IOCTL_NR(DRM_IOCTL_GET_MAGIC)] = {drm_getmagic, 0},
62 [DRM_IOCTL_NR(DRM_IOCTL_IRQ_BUSID)] = {drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY},
63 [DRM_IOCTL_NR(DRM_IOCTL_GET_MAP)] = {drm_getmap, 0},
64 [DRM_IOCTL_NR(DRM_IOCTL_GET_CLIENT)] = {drm_getclient, 0},
65 [DRM_IOCTL_NR(DRM_IOCTL_GET_STATS)] = {drm_getstats, 0},
66 [DRM_IOCTL_NR(DRM_IOCTL_SET_VERSION)] = {drm_setversion, DRM_MASTER|DRM_ROOT_ONLY},
67 [DRM_IOCTL_NR(DRM_IOCTL_SET_UNIQUE)] = {drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
68 [DRM_IOCTL_NR(DRM_IOCTL_BLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
69 [DRM_IOCTL_NR(DRM_IOCTL_UNBLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
70 [DRM_IOCTL_NR(DRM_IOCTL_AUTH_MAGIC)] = {drm_authmagic, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Dave Airliea7a2cc32006-01-02 13:54:04 +110072 [DRM_IOCTL_NR(DRM_IOCTL_ADD_MAP)] = {drm_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
73 [DRM_IOCTL_NR(DRM_IOCTL_RM_MAP)] = {drm_rmmap_ioctl, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Dave Airliea7a2cc32006-01-02 13:54:04 +110075 [DRM_IOCTL_NR(DRM_IOCTL_SET_SAREA_CTX)] = {drm_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
76 [DRM_IOCTL_NR(DRM_IOCTL_GET_SAREA_CTX)] = {drm_getsareactx, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dave Airlie11bab7d2006-04-05 18:13:13 +100078 [DRM_IOCTL_NR(DRM_IOCTL_ADD_CTX)] = {drm_addctx, DRM_AUTH|DRM_ROOT_ONLY},
79 [DRM_IOCTL_NR(DRM_IOCTL_RM_CTX)] = {drm_rmctx, DRM_AUTH|DRM_ROOT_ONLY},
Dave Airliea7a2cc32006-01-02 13:54:04 +110080 [DRM_IOCTL_NR(DRM_IOCTL_MOD_CTX)] = {drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
81 [DRM_IOCTL_NR(DRM_IOCTL_GET_CTX)] = {drm_getctx, DRM_AUTH},
82 [DRM_IOCTL_NR(DRM_IOCTL_SWITCH_CTX)] = {drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
83 [DRM_IOCTL_NR(DRM_IOCTL_NEW_CTX)] = {drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
84 [DRM_IOCTL_NR(DRM_IOCTL_RES_CTX)] = {drm_resctx, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dave Airliea7a2cc32006-01-02 13:54:04 +110086 [DRM_IOCTL_NR(DRM_IOCTL_ADD_DRAW)] = {drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
87 [DRM_IOCTL_NR(DRM_IOCTL_RM_DRAW)] = {drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Dave Airliea7a2cc32006-01-02 13:54:04 +110089 [DRM_IOCTL_NR(DRM_IOCTL_LOCK)] = {drm_lock, DRM_AUTH},
90 [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)] = {drm_unlock, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dave Airliea7a2cc32006-01-02 13:54:04 +110092 [DRM_IOCTL_NR(DRM_IOCTL_FINISH)] = {drm_noop, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Dave Airliea7a2cc32006-01-02 13:54:04 +110094 [DRM_IOCTL_NR(DRM_IOCTL_ADD_BUFS)] = {drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
95 [DRM_IOCTL_NR(DRM_IOCTL_MARK_BUFS)] = {drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
96 [DRM_IOCTL_NR(DRM_IOCTL_INFO_BUFS)] = {drm_infobufs, DRM_AUTH},
97 [DRM_IOCTL_NR(DRM_IOCTL_MAP_BUFS)] = {drm_mapbufs, DRM_AUTH},
98 [DRM_IOCTL_NR(DRM_IOCTL_FREE_BUFS)] = {drm_freebufs, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 /* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
Dave Airliea7a2cc32006-01-02 13:54:04 +1100100 [DRM_IOCTL_NR(DRM_IOCTL_DMA)] = {NULL, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Dave Airliea7a2cc32006-01-02 13:54:04 +1100102 [DRM_IOCTL_NR(DRM_IOCTL_CONTROL)] = {drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#if __OS_HAS_AGP
Dave Airliea7a2cc32006-01-02 13:54:04 +1100105 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = {drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
106 [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = {drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
107 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)] = {drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
108 [DRM_IOCTL_NR(DRM_IOCTL_AGP_INFO)] = {drm_agp_info_ioctl, DRM_AUTH},
109 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ALLOC)] = {drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
110 [DRM_IOCTL_NR(DRM_IOCTL_AGP_FREE)] = {drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
111 [DRM_IOCTL_NR(DRM_IOCTL_AGP_BIND)] = {drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
112 [DRM_IOCTL_NR(DRM_IOCTL_AGP_UNBIND)] = {drm_agp_unbind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#endif
114
Dave Airliea7a2cc32006-01-02 13:54:04 +1100115 [DRM_IOCTL_NR(DRM_IOCTL_SG_ALLOC)] = {drm_sg_alloc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
116 [DRM_IOCTL_NR(DRM_IOCTL_SG_FREE)] = {drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Dave Airliea7a2cc32006-01-02 13:54:04 +1100118 [DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK)] = {drm_wait_vblank, 0},
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000119
120 [DRM_IOCTL_NR(DRM_IOCTL_UPDATE_DRAW)] = {drm_update_drawable_info, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
Dave Airlie3d774612006-08-07 20:07:43 +1000123#define DRIVER_IOCTL_COUNT ARRAY_SIZE( drm_ioctls )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/**
126 * Take down the DRM device.
127 *
128 * \param dev DRM device structure.
129 *
130 * Frees every resource in \p dev.
131 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000132 * \sa drm_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
Dave Airlie22eae942005-11-10 22:16:34 +1100134int drm_lastclose(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 drm_magic_entry_t *pt, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 drm_map_list_t *r_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 drm_vma_entry_t *vma, *vma_next;
139 int i;
140
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000141 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Dave Airlie22eae942005-11-10 22:16:34 +1100143 if (dev->driver->lastclose)
144 dev->driver->lastclose(dev);
145 DRM_DEBUG("driver lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (dev->unique) {
148 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
149 dev->unique = NULL;
150 dev->unique_len = 0;
151 }
152
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000153 if (dev->irq_enabled)
154 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dave Airlie30e2fb12006-02-02 19:37:46 +1100156 mutex_lock(&dev->struct_mutex);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000157 del_timer(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000159 /* Clear pid list */
Thomas Hellstrom0a0c7212006-08-16 09:21:56 +1000160 if (dev->magicfree.next) {
161 list_for_each_entry_safe(pt, next, &dev->magicfree, head) {
162 list_del(&pt->head);
163 drm_ht_remove_item(&dev->magiclist, &pt->hash_item);
164 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
165 }
Thomas Hellstrom1f4eccf2006-08-18 16:37:10 +1000166 drm_ht_remove(&dev->magiclist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000169 /* Clear AGP information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (drm_core_has_AGP(dev) && dev->agp) {
171 drm_agp_mem_t *entry;
172 drm_agp_mem_t *nexte;
173
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174 /* Remove AGP resources, but leave dev->agp
175 intact until drv_cleanup is called. */
176 for (entry = dev->agp->memory; entry; entry = nexte) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 nexte = entry->next;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000178 if (entry->bound)
179 drm_unbind_agp(entry->memory);
180 drm_free_agp(entry->memory, entry->pages);
181 drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183 dev->agp->memory = NULL;
184
Dave Airlie7ab98402005-07-10 16:56:52 +1000185 if (dev->agp->acquired)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000186 drm_agp_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 dev->agp->acquired = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000189 dev->agp->enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Dave Airlie836cf042005-07-10 19:27:04 +1000191 if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg) {
192 drm_sg_cleanup(dev->sg);
193 dev->sg = NULL;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000196 /* Clear vma list (only built for debugging) */
197 if (dev->vmalist) {
198 for (vma = dev->vmalist; vma; vma = vma_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 vma_next = vma->next;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000200 drm_free(vma, sizeof(*vma), DRM_MEM_VMAS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202 dev->vmalist = NULL;
203 }
204
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000205 if (dev->maplist) {
Dave Airlie836cf042005-07-10 19:27:04 +1000206 while (!list_empty(&dev->maplist->head)) {
207 struct list_head *list = dev->maplist->head.next;
208 r_list = list_entry(list, drm_map_list_t, head);
209 drm_rmmap_locked(dev, r_list->map);
210 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE) && dev->queuelist) {
214 for (i = 0; i < dev->queue_count; i++) {
215 if (dev->queuelist[i]) {
216 drm_free(dev->queuelist[i],
217 sizeof(*dev->queuelist[0]),
218 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 dev->queuelist[i] = NULL;
220 }
221 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000222 drm_free(dev->queuelist,
223 dev->queue_slots * sizeof(*dev->queuelist),
224 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 dev->queuelist = NULL;
226 }
227 dev->queue_count = 0;
228
229 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000230 drm_dma_takedown(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000232 if (dev->lock.hw_lock) {
233 dev->sigdata.lock = dev->lock.hw_lock = NULL; /* SHM removed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 dev->lock.filp = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000235 wake_up_interruptible(&dev->lock.lock_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100237 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Dave Airlie22eae942005-11-10 22:16:34 +1100239 DRM_DEBUG("lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/**
244 * Module initialization. Called via init_module at module load time, or via
245 * linux/init/main.c (this is not currently supported).
246 *
247 * \return zero on success or a negative number on failure.
248 *
249 * Initializes an array of drm_device structures, and attempts to
250 * initialize all available devices, using consecutive minors, registering the
251 * stubs and initializing the AGP device.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
254 * after the initialization for driver customization.
255 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256int drm_init(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct pci_dev *pdev = NULL;
259 struct pci_device_id *pid;
260 int i;
261
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000262 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 drm_mem_init();
265
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000266 for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pid = (struct pci_device_id *)&driver->pci_driver.id_table[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000268
269 pdev = NULL;
270 /* pass back in pdev to account for multiple identical cards */
271 while ((pdev =
272 pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
273 pid->subdevice, pdev)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* stealth mode requires a manual probe */
275 pci_dev_get(pdev);
276 drm_get_dev(pdev, pid, driver);
277 }
278 }
279 return 0;
280}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282EXPORT_SYMBOL(drm_init);
283
284/**
285 * Called via cleanup_module() at module unload time.
286 *
Dave Airlie22eae942005-11-10 22:16:34 +1100287 * Cleans up all DRM device, calling drm_lastclose().
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000288 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000289 * \sa drm_init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000291static void drm_cleanup(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000293 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 if (!dev) {
296 DRM_ERROR("cleanup called no dev\n");
297 return;
298 }
299
Dave Airlie22eae942005-11-10 22:16:34 +1100300 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Dave Airlie836cf042005-07-10 19:27:04 +1000302 if (dev->maplist) {
303 drm_free(dev->maplist, sizeof(*dev->maplist), DRM_MEM_MAPS);
304 dev->maplist = NULL;
Thomas Hellstrom1f4eccf2006-08-18 16:37:10 +1000305 drm_ht_remove(&dev->map_hash);
Dave Airlie836cf042005-07-10 19:27:04 +1000306 }
307
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000308 drm_ctxbitmap_cleanup(dev);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
311 dev->agp && dev->agp->agp_mtrr >= 0) {
312 int retval;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000313 retval = mtrr_del(dev->agp->agp_mtrr,
314 dev->agp->agp_info.aper_base,
315 dev->agp->agp_info.aper_size * 1024 * 1024);
316 DRM_DEBUG("mtrr_del=%d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000318
319 if (drm_core_has_AGP(dev) && dev->agp) {
320 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dev->agp = NULL;
322 }
323
Dave Airlie22eae942005-11-10 22:16:34 +1100324 if (dev->driver->unload)
325 dev->driver->unload(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 drm_put_head(&dev->primary);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000328 if (drm_put_dev(dev))
329 DRM_ERROR("Cannot unload module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000332void drm_exit(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 int i;
335 drm_device_t *dev = NULL;
336 drm_head_t *head;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337
338 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 for (i = 0; i < drm_cards_limit; i++) {
341 head = drm_heads[i];
342 if (!head)
343 continue;
344 if (!head->dev)
345 continue;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346 if (head->dev->driver != driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 continue;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 dev = head->dev;
Dave Airlieaab8df12006-01-11 22:32:51 +1100349 if (dev) {
350 /* release the pci driver */
351 if (dev->pdev)
352 pci_dev_put(dev->pdev);
353 drm_cleanup(dev);
354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000356 DRM_INFO("Module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359EXPORT_SYMBOL(drm_exit);
360
361/** File operations structure */
362static struct file_operations drm_stub_fops = {
363 .owner = THIS_MODULE,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000364 .open = drm_stub_open
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
367static int __init drm_core_init(void)
368{
369 int ret = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370
371 drm_cards_limit =
372 (drm_cards_limit <
373 DRM_MAX_MINOR + 1 ? drm_cards_limit : DRM_MAX_MINOR + 1);
374 drm_heads =
375 drm_calloc(drm_cards_limit, sizeof(*drm_heads), DRM_MEM_STUB);
376 if (!drm_heads)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 goto err_p1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
380 goto err_p1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 drm_class = drm_sysfs_create(THIS_MODULE, "drm");
383 if (IS_ERR(drm_class)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000384 printk(KERN_ERR "DRM: Error creating drm class.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 ret = PTR_ERR(drm_class);
386 goto err_p2;
387 }
388
Al Viro66600222005-09-28 22:32:57 +0100389 drm_proc_root = proc_mkdir("dri", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!drm_proc_root) {
391 DRM_ERROR("Cannot create /proc/dri\n");
392 ret = -1;
393 goto err_p3;
394 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000395
396 DRM_INFO("Initialized %s %d.%d.%d %s\n",
397 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000399 err_p3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 drm_sysfs_destroy(drm_class);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000401 err_p2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unregister_chrdev(DRM_MAJOR, "drm");
403 drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 err_p1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return ret;
406}
407
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000408static void __exit drm_core_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 remove_proc_entry("dri", NULL);
411 drm_sysfs_destroy(drm_class);
412
413 unregister_chrdev(DRM_MAJOR, "drm");
414
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000415 drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000418module_init(drm_core_init);
419module_exit(drm_core_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421/**
422 * Get version information
423 *
424 * \param inode device inode.
425 * \param filp file pointer.
426 * \param cmd command.
427 * \param arg user argument, pointing to a drm_version structure.
428 * \return zero on success or negative number on failure.
429 *
430 * Fills in the version information in \p arg.
431 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000432static int drm_version(struct inode *inode, struct file *filp,
433 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 drm_file_t *priv = filp->private_data;
436 drm_device_t *dev = priv->head->dev;
437 drm_version_t __user *argp = (void __user *)arg;
438 drm_version_t version;
Dave Airlie22eae942005-11-10 22:16:34 +1100439 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000441 if (copy_from_user(&version, argp, sizeof(version)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -EFAULT;
443
Dave Airlie22eae942005-11-10 22:16:34 +1100444 version.version_major = dev->driver->major;
445 version.version_minor = dev->driver->minor;
446 version.version_patchlevel = dev->driver->patchlevel;
447 DRM_COPY(version.name, dev->driver->name);
448 DRM_COPY(version.date, dev->driver->date);
449 DRM_COPY(version.desc, dev->driver->desc);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000450
451 if (copy_to_user(argp, &version, sizeof(version)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -EFAULT;
453 return 0;
454}
455
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000456/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * Called whenever a process performs an ioctl on /dev/drm.
458 *
459 * \param inode device inode.
460 * \param filp file pointer.
461 * \param cmd command.
462 * \param arg user argument.
463 * \return zero on success or negative number on failure.
464 *
465 * Looks up the ioctl function in the ::ioctls table, checking for root
466 * previleges if so required, and dispatches to the respective function.
467 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468int drm_ioctl(struct inode *inode, struct file *filp,
469 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 drm_file_t *priv = filp->private_data;
472 drm_device_t *dev = priv->head->dev;
473 drm_ioctl_desc_t *ioctl;
474 drm_ioctl_t *func;
475 unsigned int nr = DRM_IOCTL_NR(cmd);
476 int retcode = -EINVAL;
477
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000478 atomic_inc(&dev->ioctl_count);
479 atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 ++priv->ioctl_count;
481
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000482 DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
483 current->pid, cmd, nr,
484 (long)old_encode_dev(priv->head->device),
485 priv->authenticated);
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (nr < DRIVER_IOCTL_COUNT)
488 ioctl = &drm_ioctls[nr];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000489 else if ((nr >= DRM_COMMAND_BASE)
490 && (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
492 else
493 goto err_i1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 func = ioctl->func;
496 /* is there a local override? */
497 if ((nr == DRM_IOCTL_NR(DRM_IOCTL_DMA)) && dev->driver->dma_ioctl)
498 func = dev->driver->dma_ioctl;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000499
500 if (!func) {
501 DRM_DEBUG("no function\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 retcode = -EINVAL;
Dave Airliea7a2cc32006-01-02 13:54:04 +1100503 } else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
504 ((ioctl->flags & DRM_AUTH) && !priv->authenticated) ||
505 ((ioctl->flags & DRM_MASTER) && !priv->master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 retcode = -EACCES;
507 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000508 retcode = func(inode, filp, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510
511 err_i1:
512 atomic_dec(&dev->ioctl_count);
513 if (retcode)
514 DRM_DEBUG("ret = %x\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return retcode;
516}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000518EXPORT_SYMBOL(drm_ioctl);