blob: 0b9f3164a3b254b1cd5ffafb8f018b9f78e0e734 [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
Dave Airlie7c1c2872008-11-28 14:22:24 +100077 DRM_IOCTL_DEF(DRM_IOCTL_SET_MASTER, drm_setmaster_ioctl, DRM_ROOT_ONLY),
78 DRM_IOCTL_DEF(DRM_IOCTL_DROP_MASTER, drm_dropmaster_ioctl, DRM_ROOT_ONLY),
79
Eric Anholtc153f452007-09-03 12:06:45 +100080 DRM_IOCTL_DEF(DRM_IOCTL_ADD_CTX, drm_addctx, DRM_AUTH|DRM_ROOT_ONLY),
81 DRM_IOCTL_DEF(DRM_IOCTL_RM_CTX, drm_rmctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
82 DRM_IOCTL_DEF(DRM_IOCTL_MOD_CTX, drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
83 DRM_IOCTL_DEF(DRM_IOCTL_GET_CTX, drm_getctx, DRM_AUTH),
84 DRM_IOCTL_DEF(DRM_IOCTL_SWITCH_CTX, drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
85 DRM_IOCTL_DEF(DRM_IOCTL_NEW_CTX, drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
86 DRM_IOCTL_DEF(DRM_IOCTL_RES_CTX, drm_resctx, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Anholtc153f452007-09-03 12:06:45 +100088 DRM_IOCTL_DEF(DRM_IOCTL_ADD_DRAW, drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
89 DRM_IOCTL_DEF(DRM_IOCTL_RM_DRAW, drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Eric Anholtc153f452007-09-03 12:06:45 +100091 DRM_IOCTL_DEF(DRM_IOCTL_LOCK, drm_lock, DRM_AUTH),
92 DRM_IOCTL_DEF(DRM_IOCTL_UNLOCK, drm_unlock, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Eric Anholtc153f452007-09-03 12:06:45 +100094 DRM_IOCTL_DEF(DRM_IOCTL_FINISH, drm_noop, DRM_AUTH),
95
96 DRM_IOCTL_DEF(DRM_IOCTL_ADD_BUFS, drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
97 DRM_IOCTL_DEF(DRM_IOCTL_MARK_BUFS, drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
98 DRM_IOCTL_DEF(DRM_IOCTL_INFO_BUFS, drm_infobufs, DRM_AUTH),
99 DRM_IOCTL_DEF(DRM_IOCTL_MAP_BUFS, drm_mapbufs, DRM_AUTH),
100 DRM_IOCTL_DEF(DRM_IOCTL_FREE_BUFS, drm_freebufs, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
Eric Anholtc153f452007-09-03 12:06:45 +1000102 DRM_IOCTL_DEF(DRM_IOCTL_DMA, NULL, DRM_AUTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Eric Anholtc153f452007-09-03 12:06:45 +1000104 DRM_IOCTL_DEF(DRM_IOCTL_CONTROL, drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106#if __OS_HAS_AGP
Eric Anholtc153f452007-09-03 12:06:45 +1000107 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ACQUIRE, drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
108 DRM_IOCTL_DEF(DRM_IOCTL_AGP_RELEASE, drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
109 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ENABLE, drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
110 DRM_IOCTL_DEF(DRM_IOCTL_AGP_INFO, drm_agp_info_ioctl, DRM_AUTH),
111 DRM_IOCTL_DEF(DRM_IOCTL_AGP_ALLOC, drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
112 DRM_IOCTL_DEF(DRM_IOCTL_AGP_FREE, drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
113 DRM_IOCTL_DEF(DRM_IOCTL_AGP_BIND, drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
114 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 -0700115#endif
116
Eric Anholtc153f452007-09-03 12:06:45 +1000117 DRM_IOCTL_DEF(DRM_IOCTL_SG_ALLOC, drm_sg_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
118 DRM_IOCTL_DEF(DRM_IOCTL_SG_FREE, drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Eric Anholtc153f452007-09-03 12:06:45 +1000120 DRM_IOCTL_DEF(DRM_IOCTL_WAIT_VBLANK, drm_wait_vblank, 0),
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000121
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700122 DRM_IOCTL_DEF(DRM_IOCTL_MODESET_CTL, drm_modeset_ctl, 0),
123
Eric Anholtc153f452007-09-03 12:06:45 +1000124 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 -0700125
126 DRM_IOCTL_DEF(DRM_IOCTL_GEM_CLOSE, drm_gem_close_ioctl, 0),
127 DRM_IOCTL_DEF(DRM_IOCTL_GEM_FLINK, drm_gem_flink_ioctl, DRM_AUTH),
128 DRM_IOCTL_DEF(DRM_IOCTL_GEM_OPEN, drm_gem_open_ioctl, DRM_AUTH),
Dave Airlief453ba02008-11-07 14:05:41 -0800129
130 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETRESOURCES, drm_mode_getresources, DRM_MASTER|DRM_CONTROL_ALLOW),
131 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCRTC, drm_mode_getcrtc, DRM_MASTER|DRM_CONTROL_ALLOW),
132 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCONNECTOR, drm_mode_getconnector, DRM_MASTER|DRM_CONTROL_ALLOW),
133 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETCRTC, drm_mode_setcrtc, DRM_MASTER|DRM_CONTROL_ALLOW),
134 DRM_IOCTL_DEF(DRM_IOCTL_MODE_CURSOR, drm_mode_cursor_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
135 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ADDFB, drm_mode_addfb, DRM_MASTER|DRM_CONTROL_ALLOW),
136 DRM_IOCTL_DEF(DRM_IOCTL_MODE_RMFB, drm_mode_rmfb, DRM_MASTER|DRM_CONTROL_ALLOW),
137 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETFB, drm_mode_getfb, DRM_MASTER|DRM_CONTROL_ALLOW),
138
139 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETPROPERTY, drm_mode_connector_property_set_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
140 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPBLOB, drm_mode_getblob_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
141 DRM_IOCTL_DEF(DRM_IOCTL_MODE_ATTACHMODE, drm_mode_attachmode_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
142 DRM_IOCTL_DEF(DRM_IOCTL_MODE_DETACHMODE, drm_mode_detachmode_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
143 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPERTY, drm_mode_getproperty_ioctl, DRM_MASTER | DRM_CONTROL_ALLOW),
144
145 DRM_IOCTL_DEF(DRM_IOCTL_MODE_REPLACEFB, drm_mode_replacefb, DRM_MASTER|DRM_ROOT_ONLY|DRM_CONTROL_ALLOW),
146 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETENCODER, drm_mode_getencoder, DRM_MASTER|DRM_CONTROL_ALLOW),
147 DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETGAMMA, drm_mode_gamma_get_ioctl, DRM_MASTER),
148 DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETGAMMA, drm_mode_gamma_set_ioctl, DRM_MASTER),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
Dave Airlie0515b932007-05-08 15:28:15 +1000151#define DRM_CORE_IOCTL_COUNT ARRAY_SIZE( drm_ioctls )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/**
154 * Take down the DRM device.
155 *
156 * \param dev DRM device structure.
157 *
158 * Frees every resource in \p dev.
159 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000160 * \sa drm_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000162int drm_lastclose(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000164 struct drm_vma_entry *vma, *vma_temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int i;
166
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000167 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Dave Airlie22eae942005-11-10 22:16:34 +1100169 if (dev->driver->lastclose)
170 dev->driver->lastclose(dev);
171 DRM_DEBUG("driver lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Dave Airlief453ba02008-11-07 14:05:41 -0800173 if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000174 drm_irq_uninstall(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Dave Airlie30e2fb12006-02-02 19:37:46 +1100176 mutex_lock(&dev->struct_mutex);
Dave Airlied4e2cbe2007-07-17 10:55:47 +1000177
178 /* Free drawable information memory */
179 drm_drawable_free_all(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000180 del_timer(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000182 /* Clear AGP information */
Dave Airlief453ba02008-11-07 14:05:41 -0800183 if (drm_core_has_AGP(dev) && dev->agp &&
184 !drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie55910512007-07-11 16:53:40 +1000185 struct drm_agp_mem *entry, *tempe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000187 /* Remove AGP resources, but leave dev->agp
188 intact until drv_cleanup is called. */
Dave Airliebd1b3312007-05-26 05:01:51 +1000189 list_for_each_entry_safe(entry, tempe, &dev->agp->memory, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000190 if (entry->bound)
191 drm_unbind_agp(entry->memory);
192 drm_free_agp(entry->memory, entry->pages);
193 drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
Dave Airliebd1b3312007-05-26 05:01:51 +1000195 INIT_LIST_HEAD(&dev->agp->memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Dave Airlie7ab98402005-07-10 16:56:52 +1000197 if (dev->agp->acquired)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000198 drm_agp_release(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 dev->agp->acquired = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000201 dev->agp->enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
Dave Airlief453ba02008-11-07 14:05:41 -0800203 if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg &&
204 !drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie836cf042005-07-10 19:27:04 +1000205 drm_sg_cleanup(dev->sg);
206 dev->sg = NULL;
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 /* Clear vma list (only built for debugging) */
Dave Airliebd1b3312007-05-26 05:01:51 +1000210 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
211 list_del(&vma->head);
212 drm_free(vma, sizeof(*vma), DRM_MEM_VMAS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
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
Dave Airlief453ba02008-11-07 14:05:41 -0800231 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA) &&
232 !drm_core_check_feature(dev, DRIVER_MODESET))
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 drm_dma_takedown(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800235 dev->dev_mapping = NULL;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100236 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dave Airlie22eae942005-11-10 22:16:34 +1100238 DRM_DEBUG("lastclose completed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/**
243 * Module initialization. Called via init_module at module load time, or via
244 * linux/init/main.c (this is not currently supported).
245 *
246 * \return zero on success or a negative number on failure.
247 *
248 * Initializes an array of drm_device structures, and attempts to
249 * initialize all available devices, using consecutive minors, registering the
250 * stubs and initializing the AGP device.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000251 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
253 * after the initialization for driver customization.
254 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000255int drm_init(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct pci_dev *pdev = NULL;
258 struct pci_device_id *pid;
259 int i;
260
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Dave Airliee7f7ab42008-11-28 13:43:47 +1000263 INIT_LIST_HEAD(&driver->device_list);
264
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000265 for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 pid = (struct pci_device_id *)&driver->pci_driver.id_table[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000267
Dave Airlieafa21e02008-11-11 18:02:12 +1000268 /* Loop around setting up a DRM device for each PCI device
269 * matching our ID and device class. If we had the internal
270 * function that pci_get_subsys and pci_get_class used, we'd
271 * be able to just pass pid in instead of doing a two-stage
272 * thing.
273 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000274 pdev = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275 while ((pdev =
276 pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
277 pid->subdevice, pdev)) != NULL) {
Dave Airlieafa21e02008-11-11 18:02:12 +1000278 if ((pdev->class & pid->class_mask) != pid->class)
279 continue;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* stealth mode requires a manual probe */
282 pci_dev_get(pdev);
283 drm_get_dev(pdev, pid, driver);
284 }
285 }
286 return 0;
287}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289EXPORT_SYMBOL(drm_init);
290
291/**
292 * Called via cleanup_module() at module unload time.
293 *
Dave Airlie22eae942005-11-10 22:16:34 +1100294 * Cleans up all DRM device, calling drm_lastclose().
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000295 *
Dave Airlieaff138a2005-07-10 16:58:40 +1000296 * \sa drm_init
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000298static void drm_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800300 struct drm_driver *driver = dev->driver;
301
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (!dev) {
305 DRM_ERROR("cleanup called no dev\n");
306 return;
307 }
308
Keith Packard52440212008-11-18 09:30:25 -0800309 drm_vblank_cleanup(dev);
310
Dave Airlie22eae942005-11-10 22:16:34 +1100311 drm_lastclose(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
314 dev->agp && dev->agp->agp_mtrr >= 0) {
315 int retval;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000316 retval = mtrr_del(dev->agp->agp_mtrr,
317 dev->agp->agp_info.aper_base,
318 dev->agp->agp_info.aper_size * 1024 * 1024);
319 DRM_DEBUG("mtrr_del=%d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321
322 if (drm_core_has_AGP(dev) && dev->agp) {
323 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 dev->agp = NULL;
325 }
326
Dave Airlie22eae942005-11-10 22:16:34 +1100327 if (dev->driver->unload)
328 dev->driver->unload(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000329
Dave Airliee3236a12007-12-17 09:41:56 +1000330 drm_ht_remove(&dev->map_hash);
331 drm_ctxbitmap_cleanup(dev);
332
Dave Airlief453ba02008-11-07 14:05:41 -0800333 if (drm_core_check_feature(dev, DRIVER_MODESET))
334 drm_put_minor(&dev->control);
335
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800336 if (driver->driver_features & DRIVER_GEM)
337 drm_gem_destroy(dev);
338
Dave Airlie2c14f282008-04-21 16:47:32 +1000339 drm_put_minor(&dev->primary);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000340 if (drm_put_dev(dev))
341 DRM_ERROR("Cannot unload module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000344void drm_exit(struct drm_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Dave Airliee7f7ab42008-11-28 13:43:47 +1000346 struct drm_device *dev, *tmp;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000347 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Dave Airliee7f7ab42008-11-28 13:43:47 +1000349 list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
350 drm_cleanup(dev);
Dave Airlie2c14f282008-04-21 16:47:32 +1000351
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000352 DRM_INFO("Module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355EXPORT_SYMBOL(drm_exit);
356
357/** File operations structure */
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800358static const struct file_operations drm_stub_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .owner = THIS_MODULE,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000360 .open = drm_stub_open
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
363static int __init drm_core_init(void)
364{
365 int ret = -ENOMEM;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000366
Dave Airlie2c14f282008-04-21 16:47:32 +1000367 idr_init(&drm_minors_idr);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
370 goto err_p1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 drm_class = drm_sysfs_create(THIS_MODULE, "drm");
373 if (IS_ERR(drm_class)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000374 printk(KERN_ERR "DRM: Error creating drm class.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 ret = PTR_ERR(drm_class);
376 goto err_p2;
377 }
378
Al Viro66600222005-09-28 22:32:57 +0100379 drm_proc_root = proc_mkdir("dri", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (!drm_proc_root) {
381 DRM_ERROR("Cannot create /proc/dri\n");
382 ret = -1;
383 goto err_p3;
384 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000385
Dave Airlie3260f9f2007-11-22 18:43:46 +1000386 drm_mem_init();
387
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000388 DRM_INFO("Initialized %s %d.%d.%d %s\n",
389 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
Jesse Barnese8b962b2007-11-22 14:02:38 +1000391err_p3:
392 drm_sysfs_destroy();
393err_p2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 unregister_chrdev(DRM_MAJOR, "drm");
Dave Airlie2c14f282008-04-21 16:47:32 +1000395
396 idr_destroy(&drm_minors_idr);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000397err_p1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return ret;
399}
400
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000401static void __exit drm_core_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 remove_proc_entry("dri", NULL);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000404 drm_sysfs_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 unregister_chrdev(DRM_MAJOR, "drm");
407
Dave Airlie2c14f282008-04-21 16:47:32 +1000408 idr_destroy(&drm_minors_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411module_init(drm_core_init);
412module_exit(drm_core_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414/**
415 * Get version information
416 *
417 * \param inode device inode.
418 * \param filp file pointer.
419 * \param cmd command.
420 * \param arg user argument, pointing to a drm_version structure.
421 * \return zero on success or negative number on failure.
422 *
423 * Fills in the version information in \p arg.
424 */
Eric Anholtc153f452007-09-03 12:06:45 +1000425static int drm_version(struct drm_device *dev, void *data,
426 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Eric Anholtc153f452007-09-03 12:06:45 +1000428 struct drm_version *version = data;
Dave Airlie22eae942005-11-10 22:16:34 +1100429 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Eric Anholtc153f452007-09-03 12:06:45 +1000431 version->version_major = dev->driver->major;
432 version->version_minor = dev->driver->minor;
433 version->version_patchlevel = dev->driver->patchlevel;
434 DRM_COPY(version->name, dev->driver->name);
435 DRM_COPY(version->date, dev->driver->date);
436 DRM_COPY(version->desc, dev->driver->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0;
439}
440
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000441/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * Called whenever a process performs an ioctl on /dev/drm.
443 *
444 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000445 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * \param cmd command.
447 * \param arg user argument.
448 * \return zero on success or negative number on failure.
449 *
450 * Looks up the ioctl function in the ::ioctls table, checking for root
451 * previleges if so required, and dispatches to the respective function.
452 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000453int drm_ioctl(struct inode *inode, struct file *filp,
454 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000456 struct drm_file *file_priv = filp->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000457 struct drm_device *dev = file_priv->minor->dev;
Eric Anholtc153f452007-09-03 12:06:45 +1000458 struct drm_ioctl_desc *ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 drm_ioctl_t *func;
460 unsigned int nr = DRM_IOCTL_NR(cmd);
461 int retcode = -EINVAL;
Eric Anholtc153f452007-09-03 12:06:45 +1000462 char *kdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000464 atomic_inc(&dev->ioctl_count);
465 atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000466 ++file_priv->ioctl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700469 task_pid_nr(current), cmd, nr,
Dave Airlie2c14f282008-04-21 16:47:32 +1000470 (long)old_encode_dev(file_priv->minor->device),
Eric Anholt6c340ea2007-08-25 20:23:09 +1000471 file_priv->authenticated);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000472
Dave Airlie0515b932007-05-08 15:28:15 +1000473 if ((nr >= DRM_CORE_IOCTL_COUNT) &&
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100474 ((nr < DRM_COMMAND_BASE) || (nr >= DRM_COMMAND_END)))
475 goto err_i1;
Dave Airlie0515b932007-05-08 15:28:15 +1000476 if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END) &&
477 (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
Dave Airlie858a3682008-06-20 15:42:38 +1000479 else if ((nr >= DRM_COMMAND_END) || (nr < DRM_COMMAND_BASE)) {
Thomas Hellstrom99da6d82007-03-19 08:52:17 +1100480 ioctl = &drm_ioctls[nr];
Dave Airlie858a3682008-06-20 15:42:38 +1000481 cmd = ioctl->cmd;
482 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 goto err_i1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000484
Johannes Weiner41ee2ff2008-06-13 15:04:40 +1000485 /* Do not trust userspace, use our own definition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 func = ioctl->func;
487 /* is there a local override? */
488 if ((nr == DRM_IOCTL_NR(DRM_IOCTL_DMA)) && dev->driver->dma_ioctl)
489 func = dev->driver->dma_ioctl;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000490
491 if (!func) {
492 DRM_DEBUG("no function\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 retcode = -EINVAL;
Dave Airliea7a2cc32006-01-02 13:54:04 +1100494 } else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
Eric Anholt6c340ea2007-08-25 20:23:09 +1000495 ((ioctl->flags & DRM_AUTH) && !file_priv->authenticated) ||
496 ((ioctl->flags & DRM_MASTER) && !file_priv->master)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 retcode = -EACCES;
498 } else {
Eric Anholtc153f452007-09-03 12:06:45 +1000499 if (cmd & (IOC_IN | IOC_OUT)) {
500 kdata = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL);
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000501 if (!kdata) {
502 retcode = -ENOMEM;
503 goto err_i1;
504 }
Eric Anholtc153f452007-09-03 12:06:45 +1000505 }
506
507 if (cmd & IOC_IN) {
508 if (copy_from_user(kdata, (void __user *)arg,
509 _IOC_SIZE(cmd)) != 0) {
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000510 retcode = -EFAULT;
Eric Anholtc153f452007-09-03 12:06:45 +1000511 goto err_i1;
512 }
513 }
514 retcode = func(dev, kdata, file_priv);
515
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000516 if ((retcode == 0) && (cmd & IOC_OUT)) {
Eric Anholtc153f452007-09-03 12:06:45 +1000517 if (copy_to_user((void __user *)arg, kdata,
518 _IOC_SIZE(cmd)) != 0)
Dave Airlie9d5b3ff2008-02-07 14:51:32 +1000519 retcode = -EFAULT;
Eric Anholtc153f452007-09-03 12:06:45 +1000520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000522
523 err_i1:
Eric Anholtc153f452007-09-03 12:06:45 +1000524 if (kdata)
525 kfree(kdata);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000526 atomic_dec(&dev->ioctl_count);
527 if (retcode)
528 DRM_DEBUG("ret = %x\n", retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return retcode;
530}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000532EXPORT_SYMBOL(drm_ioctl);
Dave Airlieda509d72007-05-26 05:04:51 +1000533
534drm_local_map_t *drm_getsarea(struct drm_device *dev)
535{
Dave Airlie55910512007-07-11 16:53:40 +1000536 struct drm_map_list *entry;
Dave Airlieda509d72007-05-26 05:04:51 +1000537
Dave Airlie6f710102007-05-28 19:41:35 +1000538 list_for_each_entry(entry, &dev->maplist, head) {
Dave Airlieda509d72007-05-26 05:04:51 +1000539 if (entry->map && entry->map->type == _DRM_SHM &&
540 (entry->map->flags & _DRM_CONTAINS_LOCK)) {
541 return entry->map;
542 }
543 }
544 return NULL;
545}
546EXPORT_SYMBOL(drm_getsarea);