drm_drv.c 15.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_drv.c
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
 * Generic driver template
 *
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 *
 * To use this template, you must at least define the following (samples
 * given for the MGA driver):
 *
 * \code
 * #define DRIVER_AUTHOR	"VA Linux Systems, Inc."
 *
 * #define DRIVER_NAME		"mga"
 * #define DRIVER_DESC		"Matrox G200/G400"
 * #define DRIVER_DATE		"20001127"
 *
 * #define drm_x		mga_##x
 * \endcode
 */

/*
 * Created: Thu Nov 23 03:10:50 2000 by gareth@valinux.com
 *
 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

#include "drmP.h"
#include "drm_core.h"

D
Dave Airlie 已提交
52 53 54
static int drm_version(struct inode *inode, struct file *filp,
		       unsigned int cmd, unsigned long arg);

L
Linus Torvalds 已提交
55
/** Ioctl table */
D
Dave Airlie 已提交
56
static drm_ioctl_desc_t drm_ioctls[] = {
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	[DRM_IOCTL_NR(DRM_IOCTL_VERSION)] = {drm_version, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_UNIQUE)] = {drm_getunique, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_MAGIC)] = {drm_getmagic, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_IRQ_BUSID)] = {drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_MAP)] = {drm_getmap, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_CLIENT)] = {drm_getclient, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_STATS)] = {drm_getstats, 0},
	[DRM_IOCTL_NR(DRM_IOCTL_SET_VERSION)] = {drm_setversion, DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_SET_UNIQUE)] = {drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_BLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_UNBLOCK)] = {drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AUTH_MAGIC)] = {drm_authmagic, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},

	[DRM_IOCTL_NR(DRM_IOCTL_ADD_MAP)] = {drm_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_RM_MAP)] = {drm_rmmap_ioctl, DRM_AUTH},

	[DRM_IOCTL_NR(DRM_IOCTL_SET_SAREA_CTX)] = {drm_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_SAREA_CTX)] = {drm_getsareactx, DRM_AUTH},

76 77
	[DRM_IOCTL_NR(DRM_IOCTL_ADD_CTX)] = {drm_addctx, DRM_AUTH|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_RM_CTX)] = {drm_rmctx, DRM_AUTH|DRM_ROOT_ONLY},
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	[DRM_IOCTL_NR(DRM_IOCTL_MOD_CTX)] = {drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_GET_CTX)] = {drm_getctx, DRM_AUTH},
	[DRM_IOCTL_NR(DRM_IOCTL_SWITCH_CTX)] = {drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_NEW_CTX)] = {drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_RES_CTX)] = {drm_resctx, DRM_AUTH},

	[DRM_IOCTL_NR(DRM_IOCTL_ADD_DRAW)] = {drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_RM_DRAW)] = {drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},

	[DRM_IOCTL_NR(DRM_IOCTL_LOCK)] = {drm_lock, DRM_AUTH},
	[DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)] = {drm_unlock, DRM_AUTH},

	[DRM_IOCTL_NR(DRM_IOCTL_FINISH)] = {drm_noop, DRM_AUTH},

	[DRM_IOCTL_NR(DRM_IOCTL_ADD_BUFS)] = {drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_MARK_BUFS)] = {drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_INFO_BUFS)] = {drm_infobufs, DRM_AUTH},
	[DRM_IOCTL_NR(DRM_IOCTL_MAP_BUFS)] = {drm_mapbufs, DRM_AUTH},
	[DRM_IOCTL_NR(DRM_IOCTL_FREE_BUFS)] = {drm_freebufs, DRM_AUTH},
L
Linus Torvalds 已提交
97
	/* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
98
	[DRM_IOCTL_NR(DRM_IOCTL_DMA)] = {NULL, DRM_AUTH},
L
Linus Torvalds 已提交
99

100
	[DRM_IOCTL_NR(DRM_IOCTL_CONTROL)] = {drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
L
Linus Torvalds 已提交
101 102

#if __OS_HAS_AGP
103 104 105 106 107 108 109 110
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = {drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = {drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)] = {drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_INFO)] = {drm_agp_info_ioctl, DRM_AUTH},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_ALLOC)] = {drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_FREE)] = {drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_BIND)] = {drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_AGP_UNBIND)] = {drm_agp_unbind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
L
Linus Torvalds 已提交
111 112
#endif

113 114
	[DRM_IOCTL_NR(DRM_IOCTL_SG_ALLOC)] = {drm_sg_alloc, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
	[DRM_IOCTL_NR(DRM_IOCTL_SG_FREE)] = {drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
L
Linus Torvalds 已提交
115

116
	[DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK)] = {drm_wait_vblank, 0},
117 118

	[DRM_IOCTL_NR(DRM_IOCTL_UPDATE_DRAW)] = {drm_update_drawable_info, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY},
L
Linus Torvalds 已提交
119 120
};

121
#define DRM_CORE_IOCTL_COUNT	ARRAY_SIZE( drm_ioctls )
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129

/**
 * Take down the DRM device.
 *
 * \param dev DRM device structure.
 *
 * Frees every resource in \p dev.
 *
130
 * \sa drm_device
L
Linus Torvalds 已提交
131
 */
132
int drm_lastclose(drm_device_t * dev)
L
Linus Torvalds 已提交
133 134 135 136 137 138
{
	drm_magic_entry_t *pt, *next;
	drm_map_list_t *r_list;
	drm_vma_entry_t *vma, *vma_next;
	int i;

D
Dave Airlie 已提交
139
	DRM_DEBUG("\n");
L
Linus Torvalds 已提交
140

141 142 143
	if (dev->driver->lastclose)
		dev->driver->lastclose(dev);
	DRM_DEBUG("driver lastclose completed\n");
L
Linus Torvalds 已提交
144 145 146 147 148 149 150

	if (dev->unique) {
		drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
		dev->unique = NULL;
		dev->unique_len = 0;
	}

D
Dave Airlie 已提交
151 152
	if (dev->irq_enabled)
		drm_irq_uninstall(dev);
L
Linus Torvalds 已提交
153

154 155 156 157 158 159 160 161 162 163 164 165
	/* Free drawable information memory */
	for (i = 0; i < dev->drw_bitfield_length / sizeof(*dev->drw_bitfield);
	     i++) {
		drm_drawable_info_t *info = drm_get_drawable_info(dev, i);

		if (info) {
			drm_free(info->rects, info->num_rects *
				 sizeof(drm_clip_rect_t), DRM_MEM_BUFS);
			drm_free(info, sizeof(*info), DRM_MEM_BUFS);
		}
	}

D
Dave Airlie 已提交
166
	mutex_lock(&dev->struct_mutex);
D
Dave Airlie 已提交
167
	del_timer(&dev->timer);
L
Linus Torvalds 已提交
168

D
Dave Airlie 已提交
169
	/* Clear pid list */
170 171 172 173 174 175
	if (dev->magicfree.next) {
		list_for_each_entry_safe(pt, next, &dev->magicfree, head) {
			list_del(&pt->head);
			drm_ht_remove_item(&dev->magiclist, &pt->hash_item);
			drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
		}
176
		drm_ht_remove(&dev->magiclist);
L
Linus Torvalds 已提交
177 178
	}

D
Dave Airlie 已提交
179
	/* Clear AGP information */
L
Linus Torvalds 已提交
180 181 182 183
	if (drm_core_has_AGP(dev) && dev->agp) {
		drm_agp_mem_t *entry;
		drm_agp_mem_t *nexte;

D
Dave Airlie 已提交
184 185 186
		/* Remove AGP resources, but leave dev->agp
		   intact until drv_cleanup is called. */
		for (entry = dev->agp->memory; entry; entry = nexte) {
L
Linus Torvalds 已提交
187
			nexte = entry->next;
D
Dave Airlie 已提交
188 189 190 191
			if (entry->bound)
				drm_unbind_agp(entry->memory);
			drm_free_agp(entry->memory, entry->pages);
			drm_free(entry, sizeof(*entry), DRM_MEM_AGPLISTS);
L
Linus Torvalds 已提交
192 193 194
		}
		dev->agp->memory = NULL;

195
		if (dev->agp->acquired)
D
Dave Airlie 已提交
196
			drm_agp_release(dev);
L
Linus Torvalds 已提交
197 198

		dev->agp->acquired = 0;
D
Dave Airlie 已提交
199
		dev->agp->enabled = 0;
L
Linus Torvalds 已提交
200
	}
D
Dave Airlie 已提交
201 202 203 204
	if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg) {
		drm_sg_cleanup(dev->sg);
		dev->sg = NULL;
	}
L
Linus Torvalds 已提交
205

D
Dave Airlie 已提交
206 207 208
	/* Clear vma list (only built for debugging) */
	if (dev->vmalist) {
		for (vma = dev->vmalist; vma; vma = vma_next) {
L
Linus Torvalds 已提交
209
			vma_next = vma->next;
D
Dave Airlie 已提交
210
			drm_free(vma, sizeof(*vma), DRM_MEM_VMAS);
L
Linus Torvalds 已提交
211 212 213 214
		}
		dev->vmalist = NULL;
	}

D
Dave Airlie 已提交
215
	if (dev->maplist) {
D
Dave Airlie 已提交
216 217 218 219 220
		while (!list_empty(&dev->maplist->head)) {
			struct list_head *list = dev->maplist->head.next;
			r_list = list_entry(list, drm_map_list_t, head);
			drm_rmmap_locked(dev, r_list->map);
		}
D
Dave Airlie 已提交
221 222 223 224 225 226 227 228
	}

	if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE) && dev->queuelist) {
		for (i = 0; i < dev->queue_count; i++) {
			if (dev->queuelist[i]) {
				drm_free(dev->queuelist[i],
					 sizeof(*dev->queuelist[0]),
					 DRM_MEM_QUEUES);
L
Linus Torvalds 已提交
229 230 231
				dev->queuelist[i] = NULL;
			}
		}
D
Dave Airlie 已提交
232 233 234
		drm_free(dev->queuelist,
			 dev->queue_slots * sizeof(*dev->queuelist),
			 DRM_MEM_QUEUES);
L
Linus Torvalds 已提交
235 236 237 238 239
		dev->queuelist = NULL;
	}
	dev->queue_count = 0;

	if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
D
Dave Airlie 已提交
240
		drm_dma_takedown(dev);
L
Linus Torvalds 已提交
241

D
Dave Airlie 已提交
242 243
	if (dev->lock.hw_lock) {
		dev->sigdata.lock = dev->lock.hw_lock = NULL;	/* SHM removed */
L
Linus Torvalds 已提交
244
		dev->lock.filp = NULL;
D
Dave Airlie 已提交
245
		wake_up_interruptible(&dev->lock.lock_queue);
L
Linus Torvalds 已提交
246
	}
D
Dave Airlie 已提交
247
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
248

249
	DRM_DEBUG("lastclose completed\n");
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259 260 261
	return 0;
}

/**
 * Module initialization. Called via init_module at module load time, or via
 * linux/init/main.c (this is not currently supported).
 *
 * \return zero on success or a negative number on failure.
 *
 * Initializes an array of drm_device structures, and attempts to
 * initialize all available devices, using consecutive minors, registering the
 * stubs and initializing the AGP device.
D
Dave Airlie 已提交
262
 *
L
Linus Torvalds 已提交
263 264 265
 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
 * after the initialization for driver customization.
 */
D
Dave Airlie 已提交
266
int drm_init(struct drm_driver *driver)
L
Linus Torvalds 已提交
267 268 269 270 271
{
	struct pci_dev *pdev = NULL;
	struct pci_device_id *pid;
	int i;

D
Dave Airlie 已提交
272
	DRM_DEBUG("\n");
L
Linus Torvalds 已提交
273 274 275

	drm_mem_init();

D
Dave Airlie 已提交
276
	for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
L
Linus Torvalds 已提交
277
		pid = (struct pci_device_id *)&driver->pci_driver.id_table[i];
D
Dave Airlie 已提交
278 279 280 281 282 283

		pdev = NULL;
		/* pass back in pdev to account for multiple identical cards */
		while ((pdev =
			pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
				       pid->subdevice, pdev)) != NULL) {
L
Linus Torvalds 已提交
284 285 286 287 288 289 290
			/* stealth mode requires a manual probe */
			pci_dev_get(pdev);
			drm_get_dev(pdev, pid, driver);
		}
	}
	return 0;
}
D
Dave Airlie 已提交
291

L
Linus Torvalds 已提交
292 293 294 295 296
EXPORT_SYMBOL(drm_init);

/**
 * Called via cleanup_module() at module unload time.
 *
297
 * Cleans up all DRM device, calling drm_lastclose().
D
Dave Airlie 已提交
298
 *
299
 * \sa drm_init
L
Linus Torvalds 已提交
300
 */
D
Dave Airlie 已提交
301
static void drm_cleanup(drm_device_t * dev)
L
Linus Torvalds 已提交
302
{
D
Dave Airlie 已提交
303
	DRM_DEBUG("\n");
L
Linus Torvalds 已提交
304 305 306 307 308 309

	if (!dev) {
		DRM_ERROR("cleanup called no dev\n");
		return;
	}

310
	drm_lastclose(dev);
L
Linus Torvalds 已提交
311

D
Dave Airlie 已提交
312 313 314
	if (dev->maplist) {
		drm_free(dev->maplist, sizeof(*dev->maplist), DRM_MEM_MAPS);
		dev->maplist = NULL;
315
		drm_ht_remove(&dev->map_hash);
D
Dave Airlie 已提交
316 317
	}

D
Dave Airlie 已提交
318 319
	drm_ctxbitmap_cleanup(dev);

L
Linus Torvalds 已提交
320 321 322
	if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
	    dev->agp && dev->agp->agp_mtrr >= 0) {
		int retval;
D
Dave Airlie 已提交
323 324 325 326
		retval = mtrr_del(dev->agp->agp_mtrr,
				  dev->agp->agp_info.aper_base,
				  dev->agp->agp_info.aper_size * 1024 * 1024);
		DRM_DEBUG("mtrr_del=%d\n", retval);
L
Linus Torvalds 已提交
327
	}
D
Dave Airlie 已提交
328 329 330

	if (drm_core_has_AGP(dev) && dev->agp) {
		drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
L
Linus Torvalds 已提交
331 332 333
		dev->agp = NULL;
	}

334 335
	if (dev->driver->unload)
		dev->driver->unload(dev);
D
Dave Airlie 已提交
336

L
Linus Torvalds 已提交
337
	drm_put_head(&dev->primary);
D
Dave Airlie 已提交
338 339
	if (drm_put_dev(dev))
		DRM_ERROR("Cannot unload module\n");
L
Linus Torvalds 已提交
340 341
}

D
Dave Airlie 已提交
342
void drm_exit(struct drm_driver *driver)
L
Linus Torvalds 已提交
343 344 345 346
{
	int i;
	drm_device_t *dev = NULL;
	drm_head_t *head;
D
Dave Airlie 已提交
347 348

	DRM_DEBUG("\n");
L
Linus Torvalds 已提交
349 350 351 352 353 354 355

	for (i = 0; i < drm_cards_limit; i++) {
		head = drm_heads[i];
		if (!head)
			continue;
		if (!head->dev)
			continue;
D
Dave Airlie 已提交
356
		if (head->dev->driver != driver)
L
Linus Torvalds 已提交
357
			continue;
D
Dave Airlie 已提交
358
		dev = head->dev;
359 360 361 362 363 364
		if (dev) {
			/* release the pci driver */
			if (dev->pdev)
				pci_dev_put(dev->pdev);
			drm_cleanup(dev);
		}
L
Linus Torvalds 已提交
365
	}
D
Dave Airlie 已提交
366
	DRM_INFO("Module unloaded\n");
L
Linus Torvalds 已提交
367
}
D
Dave Airlie 已提交
368

L
Linus Torvalds 已提交
369 370 371
EXPORT_SYMBOL(drm_exit);

/** File operations structure */
372
static const struct file_operations drm_stub_fops = {
L
Linus Torvalds 已提交
373
	.owner = THIS_MODULE,
D
Dave Airlie 已提交
374
	.open = drm_stub_open
L
Linus Torvalds 已提交
375 376 377 378 379
};

static int __init drm_core_init(void)
{
	int ret = -ENOMEM;
D
Dave Airlie 已提交
380 381 382 383 384 385 386

	drm_cards_limit =
	    (drm_cards_limit <
	     DRM_MAX_MINOR + 1 ? drm_cards_limit : DRM_MAX_MINOR + 1);
	drm_heads =
	    drm_calloc(drm_cards_limit, sizeof(*drm_heads), DRM_MEM_STUB);
	if (!drm_heads)
L
Linus Torvalds 已提交
387
		goto err_p1;
D
Dave Airlie 已提交
388

L
Linus Torvalds 已提交
389 390
	if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
		goto err_p1;
D
Dave Airlie 已提交
391

L
Linus Torvalds 已提交
392 393
	drm_class = drm_sysfs_create(THIS_MODULE, "drm");
	if (IS_ERR(drm_class)) {
D
Dave Airlie 已提交
394
		printk(KERN_ERR "DRM: Error creating drm class.\n");
L
Linus Torvalds 已提交
395 396 397 398
		ret = PTR_ERR(drm_class);
		goto err_p2;
	}

399
	drm_proc_root = proc_mkdir("dri", NULL);
L
Linus Torvalds 已提交
400 401 402 403 404
	if (!drm_proc_root) {
		DRM_ERROR("Cannot create /proc/dri\n");
		ret = -1;
		goto err_p3;
	}
D
Dave Airlie 已提交
405 406 407

	DRM_INFO("Initialized %s %d.%d.%d %s\n",
		 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
L
Linus Torvalds 已提交
408
	return 0;
D
Dave Airlie 已提交
409
      err_p3:
L
Linus Torvalds 已提交
410
	drm_sysfs_destroy(drm_class);
D
Dave Airlie 已提交
411
      err_p2:
L
Linus Torvalds 已提交
412 413
	unregister_chrdev(DRM_MAJOR, "drm");
	drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
D
Dave Airlie 已提交
414
      err_p1:
L
Linus Torvalds 已提交
415 416 417
	return ret;
}

D
Dave Airlie 已提交
418
static void __exit drm_core_exit(void)
L
Linus Torvalds 已提交
419 420 421 422 423 424
{
	remove_proc_entry("dri", NULL);
	drm_sysfs_destroy(drm_class);

	unregister_chrdev(DRM_MAJOR, "drm");

D
Dave Airlie 已提交
425
	drm_free(drm_heads, sizeof(*drm_heads) * drm_cards_limit, DRM_MEM_STUB);
L
Linus Torvalds 已提交
426 427
}

D
Dave Airlie 已提交
428 429
module_init(drm_core_init);
module_exit(drm_core_exit);
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438 439 440 441

/**
 * Get version information
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg user argument, pointing to a drm_version structure.
 * \return zero on success or negative number on failure.
 *
 * Fills in the version information in \p arg.
 */
D
Dave Airlie 已提交
442 443
static int drm_version(struct inode *inode, struct file *filp,
		       unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
444 445 446 447 448
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_version_t __user *argp = (void __user *)arg;
	drm_version_t version;
449
	int len;
L
Linus Torvalds 已提交
450

D
Dave Airlie 已提交
451
	if (copy_from_user(&version, argp, sizeof(version)))
L
Linus Torvalds 已提交
452 453
		return -EFAULT;

454 455 456 457 458 459
	version.version_major = dev->driver->major;
	version.version_minor = dev->driver->minor;
	version.version_patchlevel = dev->driver->patchlevel;
	DRM_COPY(version.name, dev->driver->name);
	DRM_COPY(version.date, dev->driver->date);
	DRM_COPY(version.desc, dev->driver->desc);
D
Dave Airlie 已提交
460 461

	if (copy_to_user(argp, &version, sizeof(version)))
L
Linus Torvalds 已提交
462 463 464 465
		return -EFAULT;
	return 0;
}

D
Dave Airlie 已提交
466
/**
L
Linus Torvalds 已提交
467 468 469 470 471 472 473 474 475 476 477
 * Called whenever a process performs an ioctl on /dev/drm.
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg user argument.
 * \return zero on success or negative number on failure.
 *
 * Looks up the ioctl function in the ::ioctls table, checking for root
 * previleges if so required, and dispatches to the respective function.
 */
D
Dave Airlie 已提交
478 479
int drm_ioctl(struct inode *inode, struct file *filp,
	      unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
480 481 482 483 484 485 486 487
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_ioctl_desc_t *ioctl;
	drm_ioctl_t *func;
	unsigned int nr = DRM_IOCTL_NR(cmd);
	int retcode = -EINVAL;

D
Dave Airlie 已提交
488 489
	atomic_inc(&dev->ioctl_count);
	atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
L
Linus Torvalds 已提交
490 491
	++priv->ioctl_count;

D
Dave Airlie 已提交
492 493 494 495 496
	DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
		  current->pid, cmd, nr,
		  (long)old_encode_dev(priv->head->device),
		  priv->authenticated);

497
	if ((nr >= DRM_CORE_IOCTL_COUNT) &&
498 499
	    ((nr < DRM_COMMAND_BASE) || (nr >= DRM_COMMAND_END)))
		goto err_i1;
500 501
	if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END) &&
	    (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
L
Linus Torvalds 已提交
502
		ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
503 504
	else if ((nr >= DRM_COMMAND_END) || (nr < DRM_COMMAND_BASE))
		ioctl = &drm_ioctls[nr];
L
Linus Torvalds 已提交
505 506
	else
		goto err_i1;
D
Dave Airlie 已提交
507

L
Linus Torvalds 已提交
508 509 510 511
	func = ioctl->func;
	/* is there a local override? */
	if ((nr == DRM_IOCTL_NR(DRM_IOCTL_DMA)) && dev->driver->dma_ioctl)
		func = dev->driver->dma_ioctl;
D
Dave Airlie 已提交
512 513 514

	if (!func) {
		DRM_DEBUG("no function\n");
L
Linus Torvalds 已提交
515
		retcode = -EINVAL;
516 517 518
	} else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
		   ((ioctl->flags & DRM_AUTH) && !priv->authenticated) ||
		   ((ioctl->flags & DRM_MASTER) && !priv->master)) {
L
Linus Torvalds 已提交
519 520
		retcode = -EACCES;
	} else {
D
Dave Airlie 已提交
521
		retcode = func(inode, filp, cmd, arg);
L
Linus Torvalds 已提交
522
	}
D
Dave Airlie 已提交
523 524 525 526 527

      err_i1:
	atomic_dec(&dev->ioctl_count);
	if (retcode)
		DRM_DEBUG("ret = %x\n", retcode);
L
Linus Torvalds 已提交
528 529 530
	return retcode;
}

D
Dave Airlie 已提交
531
EXPORT_SYMBOL(drm_ioctl);