blob: 996097acb5e76b3c3d7698c0885f563ad9248522 [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
Eric Anholtc153f452007-09-03 12:06:45 +100052static int drm_version(struct drm_device *dev, void *data,
53 struct drm_file *file_priv);
Dave Airliec94f7022005-07-07 21:03:38 +100054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/** Ioctl table */
Eric Anholtc153f452007-09-03 12:06:45 +100056static struct drm_ioctl_desc drm_ioctls[] = {
57 DRM_IOCTL_DEF(DRM_IOCTL_VERSION, drm_version, 0),
58 DRM_IOCTL_DEF(DRM_IOCTL_GET_UNIQUE, drm_getunique, 0),
59 DRM_IOCTL_DEF(DRM_IOCTL_GET_MAGIC, drm_getmagic, 0),
60 DRM_IOCTL_DEF(DRM_IOCTL_IRQ_BUSID, drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY),
61 DRM_IOCTL_DEF(DRM_IOCTL_GET_MAP, drm_getmap, 0),
62 DRM_IOCTL_DEF(DRM_IOCTL_GET_CLIENT, drm_getclient, 0),
63 DRM_IOCTL_DEF(DRM_IOCTL_GET_STATS, drm_getstats, 0),
64 DRM_IOCTL_DEF(DRM_IOCTL_SET_VERSION, drm_setversion, DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Eric Anholtc153f452007-09-03 12:06:45 +100066 DRM_IOCTL_DEF(DRM_IOCTL_SET_UNIQUE, drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
67 DRM_IOCTL_DEF(DRM_IOCTL_BLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
68 DRM_IOCTL_DEF(DRM_IOCTL_UNBLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
69 DRM_IOCTL_DEF(DRM_IOCTL_AUTH_MAGIC, drm_authmagic, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric Anholtc153f452007-09-03 12:06:45 +100071 DRM_IOCTL_DEF(DRM_IOCTL_ADD_MAP, drm_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
72 DRM_IOCTL_DEF(DRM_IOCTL_RM_MAP, drm_rmmap_ioctl, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Anholtc153f452007-09-03 12:06:45 +100074 DRM_IOCTL_DEF(DRM_IOCTL_SET_SAREA_CTX, drm_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
75 DRM_IOCTL_DEF(DRM_IOCTL_GET_SAREA_CTX, drm_getsareactx, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Eric Anholtc153f452007-09-03 12:06:45 +100077 DRM_IOCTL_DEF(DRM_IOCTL_ADD_CTX, drm_addctx, DRM_AUTH|DRM_ROOT_ONLY),
78 DRM_IOCTL_DEF(DRM_IOCTL_RM_CTX, drm_rmctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
79 DRM_IOCTL_DEF(DRM_IOCTL_MOD_CTX, drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
80 DRM_IOCTL_DEF(DRM_IOCTL_GET_CTX, drm_getctx, DRM_AUTH),
81 DRM_IOCTL_DEF(DRM_IOCTL_SWITCH_CTX, drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
82 DRM_IOCTL_DEF(DRM_IOCTL_NEW_CTX, drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
83 DRM_IOCTL_DEF(DRM_IOCTL_RES_CTX, drm_resctx, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Eric Anholtc153f452007-09-03 12:06:45 +100085 DRM_IOCTL_DEF(DRM_IOCTL_ADD_DRAW, drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
86 DRM_IOCTL_DEF(DRM_IOCTL_RM_DRAW, drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Anholtc153f452007-09-03 12:06:45 +100088 DRM_IOCTL_DEF(DRM_IOCTL_LOCK, drm_lock, DRM_AUTH),
89 DRM_IOCTL_DEF(DRM_IOCTL_UNLOCK, drm_unlock, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Eric Anholtc153f452007-09-03 12:06:45 +100091 DRM_IOCTL_DEF(DRM_IOCTL_FINISH, drm_noop, DRM_AUTH),
92
93 DRM_IOCTL_DEF(DRM_IOCTL_ADD_BUFS, drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
94 DRM_IOCTL_DEF(DRM_IOCTL_MARK_BUFS, drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
95 DRM_IOCTL_DEF(DRM_IOCTL_INFO_BUFS, drm_infobufs, DRM_AUTH),
96 DRM_IOCTL_DEF(DRM_IOCTL_MAP_BUFS, drm_mapbufs, DRM_AUTH),
97 DRM_IOCTL_DEF(DRM_IOCTL_FREE_BUFS, drm_freebufs, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
Eric Anholtc153f452007-09-03 12:06:45 +100099 DRM_IOCTL_DEF(DRM_IOCTL_DMA, NULL, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Eric Anholtc153f452007-09-03 12:06:45 +1000101 DRM_IOCTL_DEF(DRM_IOCTL_CONTROL, drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103#if __OS_HAS_AGP
Eric Anholtc153f452007-09-03 12:06:45 +1000104 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ACQUIRE, drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
105 DRM_IOCTL_DEF(DRM_IOCTL_AGP_RELEASE, drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
106 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ENABLE, drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
107 DRM_IOCTL_DEF(DRM_IOCTL_AGP_INFO, drm_agp_info_ioctl, DRM_AUTH),
108 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ALLOC, drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
109 DRM_IOCTL_DEF(DRM_IOCTL_AGP_FREE, drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
110 DRM_IOCTL_DEF(DRM_IOCTL_AGP_BIND, drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
111 DRM_IOCTL_DEF(DRM_IOCTL_AGP_UNBIND, drm_agp_unbind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#endif
113
Eric Anholtc153f452007-09-03 12:06:45 +1000114 DRM_IOCTL_DEF(DRM_IOCTL_SG_ALLOC, drm_sg_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
115 DRM_IOCTL_DEF(DRM_IOCTL_SG_FREE, drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Eric Anholtc153f452007-09-03 12:06:45 +1000117 DRM_IOCTL_DEF(DRM_IOCTL_WAIT_VBLANK, drm_wait_vblank, 0),
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000118
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700119 DRM_IOCTL_DEF(DRM_IOCTL_MODESET_CTL, drm_modeset_ctl, 0),
120
Eric Anholtc153f452007-09-03 12:06:45 +1000121 DRM_IOCTL_DEF(DRM_IOCTL_UPDATE_DRAW, drm_update_drawable_info, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Eric Anholt673a3942008-07-30 12:06:12 -0700122
123 DRM_IOCTL_DEF(DRM_IOCTL_GEM_CLOSE, drm_gem_close_ioctl, 0),
124 DRM_IOCTL_DEF(DRM_IOCTL_GEM_FLINK, drm_gem_flink_ioctl, DRM_AUTH),
125 DRM_IOCTL_DEF(DRM_IOCTL_GEM_OPEN, drm_gem_open_ioctl, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Dave Airlie0515b932007-05-08 15:28:15 +1000128#define DRM_CORE_IOCTL_COUNT ARRAY_SIZE( drm_ioctls )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/**
131 * Take down the DRM device.
132 *
133 * \param dev DRM device structure.
134 *
135 * Frees every resource in \p dev.
136 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000137 * \sa drm_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000139int drm_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000141 struct drm_magic_entry *pt, *next;
Dave Airlie55910512007-07-11 16:53:40 +1000142 struct drm_map_list *r_list, *list_t;
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000143 struct drm_vma_entry *vma, *vma_temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 int i;
145
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000146 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dave Airlie22eae942005-11-10 22:16:34 +1100148 if (dev->driver->lastclose)
149 dev->driver->lastclose(dev);
150 DRM_DEBUG("driver lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 if (dev->unique) {
153 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
154 dev->unique = NULL;
155 dev->unique_len = 0;
156 }
157
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000158 if (dev->irq_enabled)
159 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Dave Airlie30e2fb12006-02-02 19:37:46 +1100161 mutex_lock(&dev->struct_mutex);
Dave Airlied4e2cbe2007-07-17 10:55:47 +1000162
163 /* Free drawable information memory */
164 drm_drawable_free_all(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000165 del_timer(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000167 /* Clear pid list */
Thomas Hellstrom0a0c7212006-08-16 09:21:56 +1000168 if (dev->magicfree.next) {
169 list_for_each_entry_safe(pt, next, &dev->magicfree, head) {
170 list_del(&pt->head);
171 drm_ht_remove_item(&dev->magiclist, &pt->hash_item);
172 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
173 }
Thomas Hellstrom1f4eccf2006-08-18 16:37:10 +1000174 drm_ht_remove(&dev->magiclist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000177 /* Clear AGP information */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (drm_core_has_AGP(dev) && dev->agp) {
Dave Airlie55910512007-07-11 16:53:40 +1000179 struct drm_agp_mem *entry, *tempe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000181 /* Remove AGP resources, but leave dev->agp
182 intact until drv_cleanup is called. */
Dave Airliebd1b3312007-05-26 05:01:51 +1000183 list_for_each_entry_safe(entry, tempe, &dev->agp->memory, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000184 if (entry->bound)
185 drm_unbind_agp(entry->memory);
186 drm_free_agp(entry->memory, entry->pages);
187 drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Dave Airliebd1b3312007-05-26 05:01:51 +1000189 INIT_LIST_HEAD(&dev->agp->memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Dave Airlie7ab98402005-07-10 16:56:52 +1000191 if (dev->agp->acquired)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000192 drm_agp_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 dev->agp->acquired = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000195 dev->agp->enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Dave Airlie836cf042005-07-10 19:27:04 +1000197 if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg) {
198 drm_sg_cleanup(dev->sg);
199 dev->sg = NULL;
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000202 /* Clear vma list (only built for debugging) */
Dave Airliebd1b3312007-05-26 05:01:51 +1000203 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
204 list_del(&vma->head);
205 drm_free(vma, sizeof(*vma), DRM_MEM_VMAS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
Dave Airliebd1b3312007-05-26 05:01:51 +1000208 list_for_each_entry_safe(r_list, list_t, &dev->maplist, head) {
Dave Airliee3236a12007-12-17 09:41:56 +1000209 if (!(r_list->map->flags & _DRM_DRIVER)) {
210 drm_rmmap_locked(dev, r_list->map);
211 r_list = NULL;
212 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE) && dev->queuelist) {
216 for (i = 0; i < dev->queue_count; i++) {
217 if (dev->queuelist[i]) {
218 drm_free(dev->queuelist[i],
219 sizeof(*dev->queuelist[0]),
220 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 dev->queuelist[i] = NULL;
222 }
223 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 drm_free(dev->queuelist,
225 dev->queue_slots * sizeof(*dev->queuelist),
226 DRM_MEM_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 dev->queuelist = NULL;
228 }
229 dev->queue_count = 0;
230
231 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000232 drm_dma_takedown(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000234 if (dev->lock.hw_lock) {
235 dev->sigdata.lock = dev->lock.hw_lock = NULL; /* SHM removed */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000236 dev->lock.file_priv = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 wake_up_interruptible(&dev->lock.lock_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100239 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Dave Airlie22eae942005-11-10 22:16:34 +1100241 DRM_DEBUG("lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/**
246 * Module initialization. Called via init_module at module load time, or via
247 * linux/init/main.c (this is not currently supported).
248 *
249 * \return zero on success or a negative number on failure.
250 *
251 * Initializes an array of drm_device structures, and attempts to
252 * initialize all available devices, using consecutive minors, registering the
253 * stubs and initializing the AGP device.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000254 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
256 * after the initialization for driver customization.
257 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000258int drm_init(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 struct pci_dev *pdev = NULL;
261 struct pci_device_id *pid;
262 int i;
263
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000264 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
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
Dave Airlieafa21e02008-11-11 18:02:12 +1000269 /* Loop around setting up a DRM device for each PCI device
270 * matching our ID and device class. If we had the internal
271 * function that pci_get_subsys and pci_get_class used, we'd
272 * be able to just pass pid in instead of doing a two-stage
273 * thing.
274 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275 pdev = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 while ((pdev =
277 pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
278 pid->subdevice, pdev)) != NULL) {
Dave Airlieafa21e02008-11-11 18:02:12 +1000279 if ((pdev->class & pid->class_mask) != pid->class)
280 continue;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* stealth mode requires a manual probe */
283 pci_dev_get(pdev);
284 drm_get_dev(pdev, pid, driver);
285 }
286 }
287 return 0;
288}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290EXPORT_SYMBOL(drm_init);
291
292/**
293 * Called via cleanup_module() at module unload time.
294 *
Dave Airlie22eae942005-11-10 22:16:34 +1100295 * Cleans up all DRM device, calling drm_lastclose().
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000297 * \sa drm_init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000299static void drm_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000301 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 if (!dev) {
304 DRM_ERROR("cleanup called no dev\n");
305 return;
306 }
307
Keith Packard52440212008-11-18 09:30:25 -0800308 drm_vblank_cleanup(dev);
309
Dave Airlie22eae942005-11-10 22:16:34 +1100310 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
313 dev->agp && dev->agp->agp_mtrr >= 0) {
314 int retval;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315 retval = mtrr_del(dev->agp->agp_mtrr,
316 dev->agp->agp_info.aper_base,
317 dev->agp->agp_info.aper_size * 1024 * 1024);
318 DRM_DEBUG("mtrr_del=%d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000320
321 if (drm_core_has_AGP(dev) && dev->agp) {
322 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 dev->agp = NULL;
324 }
325
Dave Airlie22eae942005-11-10 22:16:34 +1100326 if (dev->driver->unload)
327 dev->driver->unload(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000328
Dave Airliee3236a12007-12-17 09:41:56 +1000329 drm_ht_remove(&dev->map_hash);
330 drm_ctxbitmap_cleanup(dev);
331
Dave Airlie2c14f282008-04-21 16:47:32 +1000332 drm_put_minor(&dev->primary);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000333 if (drm_put_dev(dev))
334 DRM_ERROR("Cannot unload module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Adrian Bunk0e1451d2008-07-25 19:46:20 -0700337static int drm_minors_cleanup(int id, void *ptr, void *data)
Dave Airlie2c14f282008-04-21 16:47:32 +1000338{
339 struct drm_minor *minor = ptr;
340 struct drm_device *dev;
341 struct drm_driver *driver = data;
342
343 dev = minor->dev;
344 if (minor->dev->driver != driver)
345 return 0;
346
347 if (minor->type != DRM_MINOR_LEGACY)
348 return 0;
349
350 if (dev)
351 pci_dev_put(dev->pdev);
352 drm_cleanup(dev);
353 return 1;
354}
355
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000356void drm_exit(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000358 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Dave Airlie2c14f282008-04-21 16:47:32 +1000360 idr_for_each(&drm_minors_idr, &drm_minors_cleanup, driver);
361
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000362 DRM_INFO("Module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365EXPORT_SYMBOL(drm_exit);
366
367/** File operations structure */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800368static const struct file_operations drm_stub_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .owner = THIS_MODULE,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370 .open = drm_stub_open
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373static int __init drm_core_init(void)
374{
375 int ret = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000376
Dave Airlie2c14f282008-04-21 16:47:32 +1000377 idr_init(&drm_minors_idr);
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
Dave Airlie3260f9f2007-11-22 18:43:46 +1000396 drm_mem_init();
397
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000398 DRM_INFO("Initialized %s %d.%d.%d %s\n",
399 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return 0;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000401err_p3:
402 drm_sysfs_destroy();
403err_p2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 unregister_chrdev(DRM_MAJOR, "drm");
Dave Airlie2c14f282008-04-21 16:47:32 +1000405
406 idr_destroy(&drm_minors_idr);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000407err_p1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return ret;
409}
410
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411static void __exit drm_core_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 remove_proc_entry("dri", NULL);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000414 drm_sysfs_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 unregister_chrdev(DRM_MAJOR, "drm");
417
Dave Airlie2c14f282008-04-21 16:47:32 +1000418 idr_destroy(&drm_minors_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000421module_init(drm_core_init);
422module_exit(drm_core_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424/**
425 * Get version information
426 *
427 * \param inode device inode.
428 * \param filp file pointer.
429 * \param cmd command.
430 * \param arg user argument, pointing to a drm_version structure.
431 * \return zero on success or negative number on failure.
432 *
433 * Fills in the version information in \p arg.
434 */
Eric Anholtc153f452007-09-03 12:06:45 +1000435static int drm_version(struct drm_device *dev, void *data,
436 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Eric Anholtc153f452007-09-03 12:06:45 +1000438 struct drm_version *version = data;
Dave Airlie22eae942005-11-10 22:16:34 +1100439 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Eric Anholtc153f452007-09-03 12:06:45 +1000441 version->version_major = dev->driver->major;
442 version->version_minor = dev->driver->minor;
443 version->version_patchlevel = dev->driver->patchlevel;
444 DRM_COPY(version->name, dev->driver->name);
445 DRM_COPY(version->date, dev->driver->date);
446 DRM_COPY(version->desc, dev->driver->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
449}
450
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000451/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * Called whenever a process performs an ioctl on /dev/drm.
453 *
454 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000455 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * \param cmd command.
457 * \param arg user argument.
458 * \return zero on success or negative number on failure.
459 *
460 * Looks up the ioctl function in the ::ioctls table, checking for root
461 * previleges if so required, and dispatches to the respective function.
462 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000463int drm_ioctl(struct inode *inode, struct file *filp,
464 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000466 struct drm_file *file_priv = filp->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000467 struct drm_device *dev = file_priv->minor->dev;
Eric Anholtc153f452007-09-03 12:06:45 +1000468 struct drm_ioctl_desc *ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 drm_ioctl_t *func;
470 unsigned int nr = DRM_IOCTL_NR(cmd);
471 int retcode = -EINVAL;
Eric Anholtc153f452007-09-03 12:06:45 +1000472 char *kdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000474 atomic_inc(&dev->ioctl_count);
475 atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000476 ++file_priv->ioctl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000478 DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700479 task_pid_nr(current), cmd, nr,
Dave Airlie2c14f282008-04-21 16:47:32 +1000480 (long)old_encode_dev(file_priv->minor->device),
Eric Anholt6c340ea2007-08-25 20:23:09 +1000481 file_priv->authenticated);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000482
Dave Airlie0515b932007-05-08 15:28:15 +1000483 if ((nr >= DRM_CORE_IOCTL_COUNT) &&
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100484 ((nr < DRM_COMMAND_BASE) || (nr >= DRM_COMMAND_END)))
485 goto err_i1;
Dave Airlie0515b932007-05-08 15:28:15 +1000486 if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END) &&
487 (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
Dave Airlie858a3682008-06-20 15:42:38 +1000489 else if ((nr >= DRM_COMMAND_END) || (nr < DRM_COMMAND_BASE)) {
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100490 ioctl = &drm_ioctls[nr];
Dave Airlie858a3682008-06-20 15:42:38 +1000491 cmd = ioctl->cmd;
492 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto err_i1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000494
Johannes Weiner41ee2ff2008-06-13 15:04:40 +1000495 /* Do not trust userspace, use our own definition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 func = ioctl->func;
497 /* is there a local override? */
498 if ((nr == DRM_IOCTL_NR(DRM_IOCTL_DMA)) && dev->driver->dma_ioctl)
499 func = dev->driver->dma_ioctl;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000500
501 if (!func) {
502 DRM_DEBUG("no function\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 retcode = -EINVAL;
Dave Airliea7a2cc32006-01-02 13:54:04 +1100504 } else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
Eric Anholt6c340ea2007-08-25 20:23:09 +1000505 ((ioctl->flags & DRM_AUTH) && !file_priv->authenticated) ||
506 ((ioctl->flags & DRM_MASTER) && !file_priv->master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 retcode = -EACCES;
508 } else {
Eric Anholtc153f452007-09-03 12:06:45 +1000509 if (cmd & (IOC_IN | IOC_OUT)) {
510 kdata = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL);
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000511 if (!kdata) {
512 retcode = -ENOMEM;
513 goto err_i1;
514 }
Eric Anholtc153f452007-09-03 12:06:45 +1000515 }
516
517 if (cmd & IOC_IN) {
518 if (copy_from_user(kdata, (void __user *)arg,
519 _IOC_SIZE(cmd)) != 0) {
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000520 retcode = -EFAULT;
Eric Anholtc153f452007-09-03 12:06:45 +1000521 goto err_i1;
522 }
523 }
524 retcode = func(dev, kdata, file_priv);
525
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000526 if ((retcode == 0) && (cmd & IOC_OUT)) {
Eric Anholtc153f452007-09-03 12:06:45 +1000527 if (copy_to_user((void __user *)arg, kdata,
528 _IOC_SIZE(cmd)) != 0)
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000529 retcode = -EFAULT;
Eric Anholtc153f452007-09-03 12:06:45 +1000530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000532
533 err_i1:
Eric Anholtc153f452007-09-03 12:06:45 +1000534 if (kdata)
535 kfree(kdata);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000536 atomic_dec(&dev->ioctl_count);
537 if (retcode)
538 DRM_DEBUG("ret = %x\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return retcode;
540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000542EXPORT_SYMBOL(drm_ioctl);
Dave Airlieda509d72007-05-26 05:04:51 +1000543
544drm_local_map_t *drm_getsarea(struct drm_device *dev)
545{
Dave Airlie55910512007-07-11 16:53:40 +1000546 struct drm_map_list *entry;
Dave Airlieda509d72007-05-26 05:04:51 +1000547
Dave Airlie6f710102007-05-28 19:41:35 +1000548 list_for_each_entry(entry, &dev->maplist, head) {
Dave Airlieda509d72007-05-26 05:04:51 +1000549 if (entry->map && entry->map->type == _DRM_SHM &&
550 (entry->map->flags & _DRM_CONTAINS_LOCK)) {
551 return entry->map;
552 }
553 }
554 return NULL;
555}
556EXPORT_SYMBOL(drm_getsarea);