blob: 19994cd865def31db2ef6f487e6513276336179d [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * #define drm_x mga_##x
19 * \endcode
20 */
21
22/*
23 * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com
24 *
25 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
26 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
27 * All Rights Reserved.
28 *
29 * Permission is hereby granted, free of charge, to any person obtaining a
30 * copy of this software and associated documentation files (the "Software"),
31 * to deal in the Software without restriction, including without limitation
32 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
33 * and/or sell copies of the Software, and to permit persons to whom the
34 * Software is furnished to do so, subject to the following conditions:
35 *
36 * The above copyright notice and this permission notice (including the next
37 * paragraph) shall be included in all copies or substantial portions of the
38 * Software.
39 *
40 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
43 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
44 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
45 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
46 * OTHER DEALINGS IN THE SOFTWARE.
47 */
48
49#include "drmP.h"
50#include "drm_core.h"
51
Dave Airliec94f7022005-07-07 21:03:38 +100052static int drm_version(struct inode *inode, struct file *filp,
53 unsigned int cmd, unsigned long arg);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/** Ioctl table */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100056static drm_ioctl_desc_t drm_ioctls[] = {
Dave Airliea7a2cc32006-01-02 13:54:04 +110057 [DRM_IOCTL_NR(DRM_IOCTL_VERSION)] = {drm_version, 0},
58 [DRM_IOCTL_NR(DRM_IOCTL_GET_UNIQUE)] = {drm_getunique, 0},
59 [DRM_IOCTL_NR(DRM_IOCTL_GET_MAGIC)] = {drm_getmagic, 0},
60 [DRM_IOCTL_NR(DRM_IOCTL_IRQ_BUSID)] = {drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY},
61 [DRM_IOCTL_NR(DRM_IOCTL_GET_MAP)] = {drm_getmap, 0},
62 [DRM_IOCTL_NR(DRM_IOCTL_GET_CLIENT)] = {drm_getclient, 0},
63 [DRM_IOCTL_NR(DRM_IOCTL_GET_STATS)] = {drm_getstats, 0},
64 [DRM_IOCTL_NR(DRM_IOCTL_SET_VERSION)] = {drm_setversion, DRM_MASTER|DRM_ROOT_ONLY},
65 [DRM_IOCTL_NR(DRM_IOCTL_SET_UNIQUE)] = {drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
66 [DRM_IOCTL_NR(DRM_IOCTL_BLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
67 [DRM_IOCTL_NR(DRM_IOCTL_UNBLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
68 [DRM_IOCTL_NR(DRM_IOCTL_AUTH_MAGIC)] = {drm_authmagic, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Dave Airliea7a2cc32006-01-02 13:54:04 +110070 [DRM_IOCTL_NR(DRM_IOCTL_ADD_MAP)] = {drm_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
71 [DRM_IOCTL_NR(DRM_IOCTL_RM_MAP)] = {drm_rmmap_ioctl, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Dave Airliea7a2cc32006-01-02 13:54:04 +110073 [DRM_IOCTL_NR(DRM_IOCTL_SET_SAREA_CTX)] = {drm_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
74 [DRM_IOCTL_NR(DRM_IOCTL_GET_SAREA_CTX)] = {drm_getsareactx, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Dave Airlie11bab7d2006-04-05 18:13:13 +100076 [DRM_IOCTL_NR(DRM_IOCTL_ADD_CTX)] = {drm_addctx, DRM_AUTH|DRM_ROOT_ONLY},
77 [DRM_IOCTL_NR(DRM_IOCTL_RM_CTX)] = {drm_rmctx, DRM_AUTH|DRM_ROOT_ONLY},
Dave Airliea7a2cc32006-01-02 13:54:04 +110078 [DRM_IOCTL_NR(DRM_IOCTL_MOD_CTX)] = {drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
79 [DRM_IOCTL_NR(DRM_IOCTL_GET_CTX)] = {drm_getctx, DRM_AUTH},
80 [DRM_IOCTL_NR(DRM_IOCTL_SWITCH_CTX)] = {drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
81 [DRM_IOCTL_NR(DRM_IOCTL_NEW_CTX)] = {drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
82 [DRM_IOCTL_NR(DRM_IOCTL_RES_CTX)] = {drm_resctx, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Dave Airliea7a2cc32006-01-02 13:54:04 +110084 [DRM_IOCTL_NR(DRM_IOCTL_ADD_DRAW)] = {drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
85 [DRM_IOCTL_NR(DRM_IOCTL_RM_DRAW)] = {drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Dave Airliea7a2cc32006-01-02 13:54:04 +110087 [DRM_IOCTL_NR(DRM_IOCTL_LOCK)] = {drm_lock, DRM_AUTH},
88 [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)] = {drm_unlock, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Dave Airliea7a2cc32006-01-02 13:54:04 +110090 [DRM_IOCTL_NR(DRM_IOCTL_FINISH)] = {drm_noop, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dave Airliea7a2cc32006-01-02 13:54:04 +110092 [DRM_IOCTL_NR(DRM_IOCTL_ADD_BUFS)] = {drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
93 [DRM_IOCTL_NR(DRM_IOCTL_MARK_BUFS)] = {drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
94 [DRM_IOCTL_NR(DRM_IOCTL_INFO_BUFS)] = {drm_infobufs, DRM_AUTH},
95 [DRM_IOCTL_NR(DRM_IOCTL_MAP_BUFS)] = {drm_mapbufs, DRM_AUTH},
96 [DRM_IOCTL_NR(DRM_IOCTL_FREE_BUFS)] = {drm_freebufs, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
Dave Airliea7a2cc32006-01-02 13:54:04 +110098 [DRM_IOCTL_NR(DRM_IOCTL_DMA)] = {NULL, DRM_AUTH},
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Dave Airliea7a2cc32006-01-02 13:54:04 +1100100 [DRM_IOCTL_NR(DRM_IOCTL_CONTROL)] = {drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#if __OS_HAS_AGP
Dave Airliea7a2cc32006-01-02 13:54:04 +1100103 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = {drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
104 [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = {drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
105 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)] = {drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
106 [DRM_IOCTL_NR(DRM_IOCTL_AGP_INFO)] = {drm_agp_info_ioctl, DRM_AUTH},
107 [DRM_IOCTL_NR(DRM_IOCTL_AGP_ALLOC)] = {drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
108 [DRM_IOCTL_NR(DRM_IOCTL_AGP_FREE)] = {drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
109 [DRM_IOCTL_NR(DRM_IOCTL_AGP_BIND)] = {drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
110 [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 -0700111#endif
112
Dave Airliea7a2cc32006-01-02 13:54:04 +1100113 [DRM_IOCTL_NR(DRM_IOCTL_SG_ALLOC)] = {drm_sg_alloc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
114 [DRM_IOCTL_NR(DRM_IOCTL_SG_FREE)] = {drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Dave Airliea7a2cc32006-01-02 13:54:04 +1100116 [DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK)] = {drm_wait_vblank, 0},
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000117
118 [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 -0700119};
120
Dave Airlie0515b932007-05-08 15:28:15 +1000121#define DRM_CORE_IOCTL_COUNT ARRAY_SIZE( drm_ioctls )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/**
124 * Take down the DRM device.
125 *
126 * \param dev DRM device structure.
127 *
128 * Frees every resource in \p dev.
129 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000130 * \sa drm_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000132int drm_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000134 struct drm_magic_entry *pt, *next;
Dave Airlie55910512007-07-11 16:53:40 +1000135 struct drm_map_list *r_list, *list_t;
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000136 struct drm_vma_entry *vma, *vma_temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int i;
138
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000139 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Dave Airlie22eae942005-11-10 22:16:34 +1100141 if (dev->driver->lastclose)
142 dev->driver->lastclose(dev);
143 DRM_DEBUG("driver lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 if (dev->unique) {
146 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
147 dev->unique = NULL;
148 dev->unique_len = 0;
149 }
150
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000151 if (dev->irq_enabled)
152 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Dave Airlie30e2fb12006-02-02 19:37:46 +1100154 mutex_lock(&dev->struct_mutex);
Dave Airlied4e2cbe2007-07-17 10:55:47 +1000155
156 /* Free drawable information memory */
157 drm_drawable_free_all(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000158 del_timer(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000160 /* Clear pid list */
Thomas Hellstrom0a0c7212006-08-16 09:21:56 +1000161 if (dev->magicfree.next) {
162 list_for_each_entry_safe(pt, next, &dev->magicfree, head) {
163 list_del(&pt->head);
164 drm_ht_remove_item(&dev->magiclist, &pt->hash_item);
165 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
166 }
Thomas Hellstrom1f4eccf2006-08-18 16:37:10 +1000167 drm_ht_remove(&dev->magiclist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000170 /* Clear AGP information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (drm_core_has_AGP(dev) && dev->agp) {
Dave Airlie55910512007-07-11 16:53:40 +1000172 struct drm_agp_mem *entry, *tempe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174 /* Remove AGP resources, but leave dev->agp
175 intact until drv_cleanup is called. */
Dave Airliebd1b3312007-05-26 05:01:51 +1000176 list_for_each_entry_safe(entry, tempe, &dev->agp->memory, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000177 if (entry->bound)
178 drm_unbind_agp(entry->memory);
179 drm_free_agp(entry->memory, entry->pages);
180 drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Dave Airliebd1b3312007-05-26 05:01:51 +1000182 INIT_LIST_HEAD(&dev->agp->memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dave Airlie7ab98402005-07-10 16:56:52 +1000184 if (dev->agp->acquired)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185 drm_agp_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 dev->agp->acquired = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000188 dev->agp->enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Dave Airlie836cf042005-07-10 19:27:04 +1000190 if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg) {
191 drm_sg_cleanup(dev->sg);
192 dev->sg = NULL;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000195 /* Clear vma list (only built for debugging) */
Dave Airliebd1b3312007-05-26 05:01:51 +1000196 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
197 list_del(&vma->head);
198 drm_free(vma, sizeof(*vma), DRM_MEM_VMAS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
Dave Airliebd1b3312007-05-26 05:01:51 +1000201 list_for_each_entry_safe(r_list, list_t, &dev->maplist, head) {
202 drm_rmmap_locked(dev, r_list->map);
203 r_list = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000206 if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE) && dev->queuelist) {
207 for (i = 0; i < dev->queue_count; i++) {
208 if (dev->queuelist[i]) {
209 drm_free(dev->queuelist[i],
210 sizeof(*dev->queuelist[0]),
211 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 dev->queuelist[i] = NULL;
213 }
214 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 drm_free(dev->queuelist,
216 dev->queue_slots * sizeof(*dev->queuelist),
217 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dev->queuelist = NULL;
219 }
220 dev->queue_count = 0;
221
222 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000223 drm_dma_takedown(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000225 if (dev->lock.hw_lock) {
226 dev->sigdata.lock = dev->lock.hw_lock = NULL; /* SHM removed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 dev->lock.filp = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000228 wake_up_interruptible(&dev->lock.lock_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100230 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Dave Airlie22eae942005-11-10 22:16:34 +1100232 DRM_DEBUG("lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return 0;
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/**
237 * Module initialization. Called via init_module at module load time, or via
238 * linux/init/main.c (this is not currently supported).
239 *
240 * \return zero on success or a negative number on failure.
241 *
242 * Initializes an array of drm_device structures, and attempts to
243 * initialize all available devices, using consecutive minors, registering the
244 * stubs and initializing the AGP device.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000245 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
247 * after the initialization for driver customization.
248 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000249int drm_init(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 struct pci_dev *pdev = NULL;
252 struct pci_device_id *pid;
253 int i;
254
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000255 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 drm_mem_init();
258
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000259 for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 pid = (struct pci_device_id *)&driver->pci_driver.id_table[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261
262 pdev = NULL;
263 /* pass back in pdev to account for multiple identical cards */
264 while ((pdev =
265 pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
266 pid->subdevice, pdev)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* stealth mode requires a manual probe */
268 pci_dev_get(pdev);
269 drm_get_dev(pdev, pid, driver);
270 }
271 }
272 return 0;
273}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275EXPORT_SYMBOL(drm_init);
276
277/**
278 * Called via cleanup_module() at module unload time.
279 *
Dave Airlie22eae942005-11-10 22:16:34 +1100280 * Cleans up all DRM device, calling drm_lastclose().
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000282 * \sa drm_init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000284static void drm_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (!dev) {
289 DRM_ERROR("cleanup called no dev\n");
290 return;
291 }
292
Dave Airlie22eae942005-11-10 22:16:34 +1100293 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Dave Airliebd1b3312007-05-26 05:01:51 +1000295 drm_ht_remove(&dev->map_hash);
Dave Airlie836cf042005-07-10 19:27:04 +1000296
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000297 drm_ctxbitmap_cleanup(dev);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
300 dev->agp && dev->agp->agp_mtrr >= 0) {
301 int retval;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302 retval = mtrr_del(dev->agp->agp_mtrr,
303 dev->agp->agp_info.aper_base,
304 dev->agp->agp_info.aper_size * 1024 * 1024);
305 DRM_DEBUG("mtrr_del=%d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000307
308 if (drm_core_has_AGP(dev) && dev->agp) {
309 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 dev->agp = NULL;
311 }
312
Dave Airlie22eae942005-11-10 22:16:34 +1100313 if (dev->driver->unload)
314 dev->driver->unload(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 drm_put_head(&dev->primary);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000317 if (drm_put_dev(dev))
318 DRM_ERROR("Cannot unload module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321void drm_exit(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int i;
Dave Airlie84b1fd12007-07-11 15:53:27 +1000324 struct drm_device *dev = NULL;
325 struct drm_head *head;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000326
327 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 for (i = 0; i < drm_cards_limit; i++) {
330 head = drm_heads[i];
331 if (!head)
332 continue;
333 if (!head->dev)
334 continue;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000335 if (head->dev->driver != driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 continue;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337 dev = head->dev;
Dave Airlieaab8df12006-01-11 22:32:51 +1100338 if (dev) {
339 /* release the pci driver */
340 if (dev->pdev)
341 pci_dev_put(dev->pdev);
342 drm_cleanup(dev);
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000345 DRM_INFO("Module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348EXPORT_SYMBOL(drm_exit);
349
350/** File operations structure */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800351static const struct file_operations drm_stub_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 .owner = THIS_MODULE,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000353 .open = drm_stub_open
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354};
355
356static int __init drm_core_init(void)
357{
358 int ret = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000359
360 drm_cards_limit =
361 (drm_cards_limit <
362 DRM_MAX_MINOR + 1 ? drm_cards_limit : DRM_MAX_MINOR + 1);
363 drm_heads =
364 drm_calloc(drm_cards_limit, sizeof(*drm_heads), DRM_MEM_STUB);
365 if (!drm_heads)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 goto err_p1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
369 goto err_p1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 drm_class = drm_sysfs_create(THIS_MODULE, "drm");
372 if (IS_ERR(drm_class)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000373 printk(KERN_ERR "DRM: Error creating drm class.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 ret = PTR_ERR(drm_class);
375 goto err_p2;
376 }
377
Al Viro66600222005-09-28 22:32:57 +0100378 drm_proc_root = proc_mkdir("dri", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (!drm_proc_root) {
380 DRM_ERROR("Cannot create /proc/dri\n");
381 ret = -1;
382 goto err_p3;
383 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000384
385 DRM_INFO("Initialized %s %d.%d.%d %s\n",
386 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000388 err_p3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 drm_sysfs_destroy(drm_class);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000390 err_p2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 unregister_chrdev(DRM_MAJOR, "drm");
392 drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000393 err_p1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return ret;
395}
396
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000397static void __exit drm_core_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 remove_proc_entry("dri", NULL);
400 drm_sysfs_destroy(drm_class);
401
402 unregister_chrdev(DRM_MAJOR, "drm");
403
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000404 drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000407module_init(drm_core_init);
408module_exit(drm_core_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410/**
411 * Get version information
412 *
413 * \param inode device inode.
414 * \param filp file pointer.
415 * \param cmd command.
416 * \param arg user argument, pointing to a drm_version structure.
417 * \return zero on success or negative number on failure.
418 *
419 * Fills in the version information in \p arg.
420 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000421static int drm_version(struct inode *inode, struct file *filp,
422 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000424 struct drm_file *priv = filp->private_data;
425 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000426 struct drm_version __user *argp = (void __user *)arg;
427 struct drm_version version;
Dave Airlie22eae942005-11-10 22:16:34 +1100428 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000430 if (copy_from_user(&version, argp, sizeof(version)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return -EFAULT;
432
Dave Airlie22eae942005-11-10 22:16:34 +1100433 version.version_major = dev->driver->major;
434 version.version_minor = dev->driver->minor;
435 version.version_patchlevel = dev->driver->patchlevel;
436 DRM_COPY(version.name, dev->driver->name);
437 DRM_COPY(version.date, dev->driver->date);
438 DRM_COPY(version.desc, dev->driver->desc);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000439
440 if (copy_to_user(argp, &version, sizeof(version)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -EFAULT;
442 return 0;
443}
444
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000445/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * Called whenever a process performs an ioctl on /dev/drm.
447 *
448 * \param inode device inode.
449 * \param filp file pointer.
450 * \param cmd command.
451 * \param arg user argument.
452 * \return zero on success or negative number on failure.
453 *
454 * Looks up the ioctl function in the ::ioctls table, checking for root
455 * previleges if so required, and dispatches to the respective function.
456 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000457int drm_ioctl(struct inode *inode, struct file *filp,
458 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000460 struct drm_file *priv = filp->private_data;
461 struct drm_device *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 drm_ioctl_desc_t *ioctl;
463 drm_ioctl_t *func;
464 unsigned int nr = DRM_IOCTL_NR(cmd);
465 int retcode = -EINVAL;
466
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000467 atomic_inc(&dev->ioctl_count);
468 atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ++priv->ioctl_count;
470
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000471 DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
472 current->pid, cmd, nr,
473 (long)old_encode_dev(priv->head->device),
474 priv->authenticated);
475
Dave Airlie0515b932007-05-08 15:28:15 +1000476 if ((nr >= DRM_CORE_IOCTL_COUNT) &&
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100477 ((nr < DRM_COMMAND_BASE) || (nr >= DRM_COMMAND_END)))
478 goto err_i1;
Dave Airlie0515b932007-05-08 15:28:15 +1000479 if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END) &&
480 (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100482 else if ((nr >= DRM_COMMAND_END) || (nr < DRM_COMMAND_BASE))
483 ioctl = &drm_ioctls[nr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 else
485 goto err_i1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 func = ioctl->func;
488 /* is there a local override? */
489 if ((nr == DRM_IOCTL_NR(DRM_IOCTL_DMA)) && dev->driver->dma_ioctl)
490 func = dev->driver->dma_ioctl;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000491
492 if (!func) {
493 DRM_DEBUG("no function\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 retcode = -EINVAL;
Dave Airliea7a2cc32006-01-02 13:54:04 +1100495 } else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
496 ((ioctl->flags & DRM_AUTH) && !priv->authenticated) ||
497 ((ioctl->flags & DRM_MASTER) && !priv->master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 retcode = -EACCES;
499 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000500 retcode = func(inode, filp, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000502
503 err_i1:
504 atomic_dec(&dev->ioctl_count);
505 if (retcode)
506 DRM_DEBUG("ret = %x\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return retcode;
508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510EXPORT_SYMBOL(drm_ioctl);
Dave Airlieda509d72007-05-26 05:04:51 +1000511
512drm_local_map_t *drm_getsarea(struct drm_device *dev)
513{
Dave Airlie55910512007-07-11 16:53:40 +1000514 struct drm_map_list *entry;
Dave Airlieda509d72007-05-26 05:04:51 +1000515
Dave Airlie6f710102007-05-28 19:41:35 +1000516 list_for_each_entry(entry, &dev->maplist, head) {
Dave Airlieda509d72007-05-26 05:04:51 +1000517 if (entry->map && entry->map->type == _DRM_SHM &&
518 (entry->map->flags & _DRM_CONTAINS_LOCK)) {
519 return entry->map;
520 }
521 }
522 return NULL;
523}
524EXPORT_SYMBOL(drm_getsarea);