drm_drv.c 17.1 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
 * 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.
 */

49
#include <linux/debugfs.h>
L
Linus Torvalds 已提交
50 51 52
#include "drmP.h"
#include "drm_core.h"

53

54 55
static int drm_version(struct drm_device *dev, void *data,
		       struct drm_file *file_priv);
D
Dave Airlie 已提交
56

L
Linus Torvalds 已提交
57
/** Ioctl table */
58 59 60 61 62 63 64 65
static struct drm_ioctl_desc drm_ioctls[] = {
	DRM_IOCTL_DEF(DRM_IOCTL_VERSION, drm_version, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_UNIQUE, drm_getunique, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_MAGIC, drm_getmagic, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_IRQ_BUSID, drm_irq_by_busid, DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_MAP, drm_getmap, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_CLIENT, drm_getclient, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_STATS, drm_getstats, 0),
66
	DRM_IOCTL_DEF(DRM_IOCTL_SET_VERSION, drm_setversion, DRM_MASTER),
67 68 69 70

	DRM_IOCTL_DEF(DRM_IOCTL_SET_UNIQUE, drm_setunique, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_BLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_UNBLOCK, drm_noop, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
71
	DRM_IOCTL_DEF(DRM_IOCTL_AUTH_MAGIC, drm_authmagic, DRM_AUTH|DRM_MASTER),
72 73 74 75 76 77 78

	DRM_IOCTL_DEF(DRM_IOCTL_ADD_MAP, drm_addmap_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_RM_MAP, drm_rmmap_ioctl, DRM_AUTH),

	DRM_IOCTL_DEF(DRM_IOCTL_SET_SAREA_CTX, drm_setsareactx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_SAREA_CTX, drm_getsareactx, DRM_AUTH),

79 80 81
	DRM_IOCTL_DEF(DRM_IOCTL_SET_MASTER, drm_setmaster_ioctl, DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_DROP_MASTER, drm_dropmaster_ioctl, DRM_ROOT_ONLY),

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
	DRM_IOCTL_DEF(DRM_IOCTL_ADD_CTX, drm_addctx, DRM_AUTH|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_RM_CTX, drm_rmctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_MOD_CTX, drm_modctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_GET_CTX, drm_getctx, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_SWITCH_CTX, drm_switchctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_NEW_CTX, drm_newctx, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_RES_CTX, drm_resctx, DRM_AUTH),

	DRM_IOCTL_DEF(DRM_IOCTL_ADD_DRAW, drm_adddraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_RM_DRAW, drm_rmdraw, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),

	DRM_IOCTL_DEF(DRM_IOCTL_LOCK, drm_lock, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_UNLOCK, drm_unlock, DRM_AUTH),

	DRM_IOCTL_DEF(DRM_IOCTL_FINISH, drm_noop, DRM_AUTH),

	DRM_IOCTL_DEF(DRM_IOCTL_ADD_BUFS, drm_addbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_MARK_BUFS, drm_markbufs, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_INFO_BUFS, drm_infobufs, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_MAP_BUFS, drm_mapbufs, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_FREE_BUFS, drm_freebufs, DRM_AUTH),
L
Linus Torvalds 已提交
103
	/* The DRM_IOCTL_DMA ioctl should be defined by the driver. */
104
	DRM_IOCTL_DEF(DRM_IOCTL_DMA, NULL, DRM_AUTH),
L
Linus Torvalds 已提交
105

106
	DRM_IOCTL_DEF(DRM_IOCTL_CONTROL, drm_control, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
L
Linus Torvalds 已提交
107 108

#if __OS_HAS_AGP
109 110 111 112 113 114 115 116
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_ACQUIRE, drm_agp_acquire_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_RELEASE, drm_agp_release_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_ENABLE, drm_agp_enable_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_INFO, drm_agp_info_ioctl, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_ALLOC, drm_agp_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_FREE, drm_agp_free_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_BIND, drm_agp_bind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_AGP_UNBIND, drm_agp_unbind_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
L
Linus Torvalds 已提交
117 118
#endif

119 120
	DRM_IOCTL_DEF(DRM_IOCTL_SG_ALLOC, drm_sg_alloc_ioctl, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
	DRM_IOCTL_DEF(DRM_IOCTL_SG_FREE, drm_sg_free, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
L
Linus Torvalds 已提交
121

122
	DRM_IOCTL_DEF(DRM_IOCTL_WAIT_VBLANK, drm_wait_vblank, 0),
123

124 125
	DRM_IOCTL_DEF(DRM_IOCTL_MODESET_CTL, drm_modeset_ctl, 0),

126
	DRM_IOCTL_DEF(DRM_IOCTL_UPDATE_DRAW, drm_update_drawable_info, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
127 128 129 130

	DRM_IOCTL_DEF(DRM_IOCTL_GEM_CLOSE, drm_gem_close_ioctl, 0),
	DRM_IOCTL_DEF(DRM_IOCTL_GEM_FLINK, drm_gem_flink_ioctl, DRM_AUTH),
	DRM_IOCTL_DEF(DRM_IOCTL_GEM_OPEN, drm_gem_open_ioctl, DRM_AUTH),
D
Dave Airlie 已提交
131 132 133 134 135

	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETRESOURCES, drm_mode_getresources, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCRTC, drm_mode_getcrtc, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETCRTC, drm_mode_setcrtc, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_CURSOR, drm_mode_cursor_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
136 137 138 139
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETGAMMA, drm_mode_gamma_get_ioctl, DRM_MASTER),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETGAMMA, drm_mode_gamma_set_ioctl, DRM_MASTER),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETENCODER, drm_mode_getencoder, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETCONNECTOR, drm_mode_getconnector, DRM_MASTER|DRM_CONTROL_ALLOW),
D
Dave Airlie 已提交
140 141 142
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_ATTACHMODE, drm_mode_attachmode_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_DETACHMODE, drm_mode_detachmode_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPERTY, drm_mode_getproperty_ioctl, DRM_MASTER | DRM_CONTROL_ALLOW),
143 144 145 146 147
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_SETPROPERTY, drm_mode_connector_property_set_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETPROPBLOB, drm_mode_getblob_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_GETFB, drm_mode_getfb, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_ADDFB, drm_mode_addfb, DRM_MASTER|DRM_CONTROL_ALLOW),
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_RMFB, drm_mode_rmfb, DRM_MASTER|DRM_CONTROL_ALLOW),
148
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_PAGE_FLIP, drm_mode_page_flip_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW),
149
	DRM_IOCTL_DEF(DRM_IOCTL_MODE_DIRTYFB, drm_mode_dirtyfb_ioctl, DRM_MASTER|DRM_CONTROL_ALLOW)
L
Linus Torvalds 已提交
150 151
};

152
#define DRM_CORE_IOCTL_COUNT	ARRAY_SIZE( drm_ioctls )
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160

/**
 * Take down the DRM device.
 *
 * \param dev DRM device structure.
 *
 * Frees every resource in \p dev.
 *
161
 * \sa drm_device
L
Linus Torvalds 已提交
162
 */
163
int drm_lastclose(struct drm_device * dev)
L
Linus Torvalds 已提交
164
{
165
	struct drm_vma_entry *vma, *vma_temp;
L
Linus Torvalds 已提交
166 167
	int i;

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

170 171 172
	if (dev->driver->lastclose)
		dev->driver->lastclose(dev);
	DRM_DEBUG("driver lastclose completed\n");
L
Linus Torvalds 已提交
173

D
Dave Airlie 已提交
174
	if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET))
D
Dave Airlie 已提交
175
		drm_irq_uninstall(dev);
L
Linus Torvalds 已提交
176

D
Dave Airlie 已提交
177
	mutex_lock(&dev->struct_mutex);
178 179 180

	/* Free drawable information memory */
	drm_drawable_free_all(dev);
D
Dave Airlie 已提交
181
	del_timer(&dev->timer);
L
Linus Torvalds 已提交
182

D
Dave Airlie 已提交
183
	/* Clear AGP information */
D
Dave Airlie 已提交
184
	if (drm_core_has_AGP(dev) && dev->agp &&
185
			!drm_core_check_feature(dev, DRIVER_MODESET)) {
D
Dave Airlie 已提交
186
		struct drm_agp_mem *entry, *tempe;
L
Linus Torvalds 已提交
187

D
Dave Airlie 已提交
188 189
		/* Remove AGP resources, but leave dev->agp
		   intact until drv_cleanup is called. */
190
		list_for_each_entry_safe(entry, tempe, &dev->agp->memory, head) {
D
Dave Airlie 已提交
191 192 193
			if (entry->bound)
				drm_unbind_agp(entry->memory);
			drm_free_agp(entry->memory, entry->pages);
194
			kfree(entry);
L
Linus Torvalds 已提交
195
		}
196
		INIT_LIST_HEAD(&dev->agp->memory);
L
Linus Torvalds 已提交
197

198
		if (dev->agp->acquired)
D
Dave Airlie 已提交
199
			drm_agp_release(dev);
L
Linus Torvalds 已提交
200 201

		dev->agp->acquired = 0;
D
Dave Airlie 已提交
202
		dev->agp->enabled = 0;
L
Linus Torvalds 已提交
203
	}
D
Dave Airlie 已提交
204 205
	if (drm_core_check_feature(dev, DRIVER_SG) && dev->sg &&
	    !drm_core_check_feature(dev, DRIVER_MODESET)) {
D
Dave Airlie 已提交
206 207 208
		drm_sg_cleanup(dev->sg);
		dev->sg = NULL;
	}
L
Linus Torvalds 已提交
209

D
Dave Airlie 已提交
210
	/* Clear vma list (only built for debugging) */
211 212
	list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
		list_del(&vma->head);
213
		kfree(vma);
L
Linus Torvalds 已提交
214 215
	}

D
Dave Airlie 已提交
216 217
	if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE) && dev->queuelist) {
		for (i = 0; i < dev->queue_count; i++) {
218 219
			kfree(dev->queuelist[i]);
			dev->queuelist[i] = NULL;
L
Linus Torvalds 已提交
220
		}
221
		kfree(dev->queuelist);
L
Linus Torvalds 已提交
222 223 224 225
		dev->queuelist = NULL;
	}
	dev->queue_count = 0;

D
Dave Airlie 已提交
226 227
	if (drm_core_check_feature(dev, DRIVER_HAVE_DMA) &&
	    !drm_core_check_feature(dev, DRIVER_MODESET))
D
Dave Airlie 已提交
228
		drm_dma_takedown(dev);
L
Linus Torvalds 已提交
229

J
Jesse Barnes 已提交
230
	dev->dev_mapping = NULL;
D
Dave Airlie 已提交
231
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
232

233
	DRM_DEBUG("lastclose completed\n");
L
Linus Torvalds 已提交
234 235 236 237 238 239 240 241 242 243 244 245
	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 已提交
246
 *
L
Linus Torvalds 已提交
247 248 249
 * Expands the \c DRIVER_PREINIT and \c DRIVER_POST_INIT macros before and
 * after the initialization for driver customization.
 */
D
Dave Airlie 已提交
250
int drm_init(struct drm_driver *driver)
L
Linus Torvalds 已提交
251 252
{
	struct pci_dev *pdev = NULL;
253
	const struct pci_device_id *pid;
L
Linus Torvalds 已提交
254 255
	int i;

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

258 259
	INIT_LIST_HEAD(&driver->device_list);

260 261 262 263
	if (driver->driver_features & DRIVER_MODESET)
		return pci_register_driver(&driver->pci_driver);

	/* If not using KMS, fall back to stealth mode manual scanning. */
D
Dave Airlie 已提交
264
	for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) {
265
		pid = &driver->pci_driver.id_table[i];
D
Dave Airlie 已提交
266

267 268 269 270 271 272
		/* Loop around setting up a DRM device for each PCI device
		 * matching our ID and device class.  If we had the internal
		 * function that pci_get_subsys and pci_get_class used, we'd
		 * be able to just pass pid in instead of doing a two-stage
		 * thing.
		 */
D
Dave Airlie 已提交
273 274 275 276
		pdev = NULL;
		while ((pdev =
			pci_get_subsys(pid->vendor, pid->device, pid->subvendor,
				       pid->subdevice, pdev)) != NULL) {
277 278 279
			if ((pdev->class & pid->class_mask) != pid->class)
				continue;

L
Linus Torvalds 已提交
280 281 282 283 284 285 286
			/* stealth mode requires a manual probe */
			pci_dev_get(pdev);
			drm_get_dev(pdev, pid, driver);
		}
	}
	return 0;
}
D
Dave Airlie 已提交
287

L
Linus Torvalds 已提交
288 289
EXPORT_SYMBOL(drm_init);

290 291
void drm_exit(struct drm_driver *driver)
{
292
	struct drm_device *dev, *tmp;
D
Dave Airlie 已提交
293
	DRM_DEBUG("\n");
L
Linus Torvalds 已提交
294

295 296 297 298 299 300
	if (driver->driver_features & DRIVER_MODESET) {
		pci_unregister_driver(&driver->pci_driver);
	} else {
		list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item)
			drm_put_dev(dev);
	}
301

D
Dave Airlie 已提交
302
	DRM_INFO("Module unloaded\n");
L
Linus Torvalds 已提交
303
}
D
Dave Airlie 已提交
304

L
Linus Torvalds 已提交
305 306 307
EXPORT_SYMBOL(drm_exit);

/** File operations structure */
308
static const struct file_operations drm_stub_fops = {
L
Linus Torvalds 已提交
309
	.owner = THIS_MODULE,
D
Dave Airlie 已提交
310
	.open = drm_stub_open
L
Linus Torvalds 已提交
311 312 313 314 315
};

static int __init drm_core_init(void)
{
	int ret = -ENOMEM;
D
Dave Airlie 已提交
316

317
	idr_init(&drm_minors_idr);
D
Dave Airlie 已提交
318

L
Linus Torvalds 已提交
319 320
	if (register_chrdev(DRM_MAJOR, "drm", &drm_stub_fops))
		goto err_p1;
D
Dave Airlie 已提交
321

L
Linus Torvalds 已提交
322 323
	drm_class = drm_sysfs_create(THIS_MODULE, "drm");
	if (IS_ERR(drm_class)) {
D
Dave Airlie 已提交
324
		printk(KERN_ERR "DRM: Error creating drm class.\n");
L
Linus Torvalds 已提交
325 326 327 328
		ret = PTR_ERR(drm_class);
		goto err_p2;
	}

329
	drm_proc_root = proc_mkdir("dri", NULL);
L
Linus Torvalds 已提交
330 331 332 333 334
	if (!drm_proc_root) {
		DRM_ERROR("Cannot create /proc/dri\n");
		ret = -1;
		goto err_p3;
	}
D
Dave Airlie 已提交
335

336 337
	drm_debugfs_root = debugfs_create_dir("dri", NULL);
	if (!drm_debugfs_root) {
338
		DRM_ERROR("Cannot create /sys/kernel/debug/dri\n");
339 340 341 342
		ret = -1;
		goto err_p3;
	}

D
Dave Airlie 已提交
343 344
	DRM_INFO("Initialized %s %d.%d.%d %s\n",
		 CORE_NAME, CORE_MAJOR, CORE_MINOR, CORE_PATCHLEVEL, CORE_DATE);
L
Linus Torvalds 已提交
345
	return 0;
J
Jesse Barnes 已提交
346 347 348
err_p3:
	drm_sysfs_destroy();
err_p2:
L
Linus Torvalds 已提交
349
	unregister_chrdev(DRM_MAJOR, "drm");
350 351

	idr_destroy(&drm_minors_idr);
J
Jesse Barnes 已提交
352
err_p1:
L
Linus Torvalds 已提交
353 354 355
	return ret;
}

D
Dave Airlie 已提交
356
static void __exit drm_core_exit(void)
L
Linus Torvalds 已提交
357 358
{
	remove_proc_entry("dri", NULL);
359
	debugfs_remove(drm_debugfs_root);
J
Jesse Barnes 已提交
360
	drm_sysfs_destroy();
L
Linus Torvalds 已提交
361 362 363

	unregister_chrdev(DRM_MAJOR, "drm");

364
	idr_destroy(&drm_minors_idr);
L
Linus Torvalds 已提交
365 366
}

D
Dave Airlie 已提交
367 368
module_init(drm_core_init);
module_exit(drm_core_exit);
L
Linus Torvalds 已提交
369

A
Andres Salomon 已提交
370 371 372
/**
 * Copy and IOCTL return string to user space
 */
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
static int drm_copy_field(char *buf, size_t *buf_len, const char *value)
{
	int len;

	/* don't overflow userbuf */
	len = strlen(value);
	if (len > *buf_len)
		len = *buf_len;

	/* let userspace know exact length of driver value (which could be
	 * larger than the userspace-supplied buffer) */
	*buf_len = strlen(value);

	/* finally, try filling in the userbuf */
	if (len && buf)
		if (copy_to_user(buf, value, len))
			return -EFAULT;
	return 0;
}
A
Andres Salomon 已提交
392

L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400 401 402 403
/**
 * 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.
 */
404 405
static int drm_version(struct drm_device *dev, void *data,
		       struct drm_file *file_priv)
L
Linus Torvalds 已提交
406
{
407
	struct drm_version *version = data;
408
	int err;
L
Linus Torvalds 已提交
409

410 411 412
	version->version_major = dev->driver->major;
	version->version_minor = dev->driver->minor;
	version->version_patchlevel = dev->driver->patchlevel;
413 414 415 416 417 418 419 420 421 422
	err = drm_copy_field(version->name, &version->name_len,
			dev->driver->name);
	if (!err)
		err = drm_copy_field(version->date, &version->date_len,
				dev->driver->date);
	if (!err)
		err = drm_copy_field(version->desc, &version->desc_len,
				dev->driver->desc);

	return err;
L
Linus Torvalds 已提交
423 424
}

D
Dave Airlie 已提交
425
/**
L
Linus Torvalds 已提交
426 427 428
 * Called whenever a process performs an ioctl on /dev/drm.
 *
 * \param inode device inode.
429
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
430 431 432 433 434 435 436
 * \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 已提交
437 438
int drm_ioctl(struct inode *inode, struct file *filp,
	      unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
439
{
440
	struct drm_file *file_priv = filp->private_data;
441
	struct drm_device *dev = file_priv->minor->dev;
442
	struct drm_ioctl_desc *ioctl;
L
Linus Torvalds 已提交
443 444 445
	drm_ioctl_t *func;
	unsigned int nr = DRM_IOCTL_NR(cmd);
	int retcode = -EINVAL;
446
	char stack_kdata[128];
447
	char *kdata = NULL;
L
Linus Torvalds 已提交
448

D
Dave Airlie 已提交
449 450
	atomic_inc(&dev->ioctl_count);
	atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
451
	++file_priv->ioctl_count;
L
Linus Torvalds 已提交
452

D
Dave Airlie 已提交
453
	DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
454
		  task_pid_nr(current), cmd, nr,
455
		  (long)old_encode_dev(file_priv->minor->device),
456
		  file_priv->authenticated);
D
Dave Airlie 已提交
457

458
	if ((nr >= DRM_CORE_IOCTL_COUNT) &&
459 460
	    ((nr < DRM_COMMAND_BASE) || (nr >= DRM_COMMAND_END)))
		goto err_i1;
461 462
	if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END) &&
	    (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls))
L
Linus Torvalds 已提交
463
		ioctl = &dev->driver->ioctls[nr - DRM_COMMAND_BASE];
464
	else if ((nr >= DRM_COMMAND_END) || (nr < DRM_COMMAND_BASE)) {
465
		ioctl = &drm_ioctls[nr];
466 467
		cmd = ioctl->cmd;
	} else
L
Linus Torvalds 已提交
468
		goto err_i1;
D
Dave Airlie 已提交
469

470
	/* Do not trust userspace, use our own definition */
L
Linus Torvalds 已提交
471 472 473 474
	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 已提交
475 476 477

	if (!func) {
		DRM_DEBUG("no function\n");
L
Linus Torvalds 已提交
478
		retcode = -EINVAL;
479
	} else if (((ioctl->flags & DRM_ROOT_ONLY) && !capable(CAP_SYS_ADMIN)) ||
480
		   ((ioctl->flags & DRM_AUTH) && !file_priv->authenticated) ||
481 482
		   ((ioctl->flags & DRM_MASTER) && !file_priv->is_master) ||
		   (!(ioctl->flags & DRM_CONTROL_ALLOW) && (file_priv->minor->type == DRM_MINOR_CONTROL))) {
L
Linus Torvalds 已提交
483 484
		retcode = -EACCES;
	} else {
485
		if (cmd & (IOC_IN | IOC_OUT)) {
486 487 488 489 490 491 492 493
			if (_IOC_SIZE(cmd) <= sizeof(stack_kdata)) {
				kdata = stack_kdata;
			} else {
				kdata = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL);
				if (!kdata) {
					retcode = -ENOMEM;
					goto err_i1;
				}
494
			}
495 496 497 498 499
		}

		if (cmd & IOC_IN) {
			if (copy_from_user(kdata, (void __user *)arg,
					   _IOC_SIZE(cmd)) != 0) {
500
				retcode = -EFAULT;
501 502 503 504 505
				goto err_i1;
			}
		}
		retcode = func(dev, kdata, file_priv);

506
		if (cmd & IOC_OUT) {
507 508
			if (copy_to_user((void __user *)arg, kdata,
					 _IOC_SIZE(cmd)) != 0)
509
				retcode = -EFAULT;
510
		}
L
Linus Torvalds 已提交
511
	}
D
Dave Airlie 已提交
512 513

      err_i1:
514
	if (kdata != stack_kdata)
515
		kfree(kdata);
D
Dave Airlie 已提交
516 517 518
	atomic_dec(&dev->ioctl_count);
	if (retcode)
		DRM_DEBUG("ret = %x\n", retcode);
L
Linus Torvalds 已提交
519 520 521
	return retcode;
}

D
Dave Airlie 已提交
522
EXPORT_SYMBOL(drm_ioctl);
523

524
struct drm_local_map *drm_getsarea(struct drm_device *dev)
525
{
D
Dave Airlie 已提交
526
	struct drm_map_list *entry;
527

D
Dave Airlie 已提交
528
	list_for_each_entry(entry, &dev->maplist, head) {
529 530 531 532 533 534 535 536
		if (entry->map && entry->map->type == _DRM_SHM &&
		    (entry->map->flags & _DRM_CONTAINS_LOCK)) {
			return entry->map;
		}
	}
	return NULL;
}
EXPORT_SYMBOL(drm_getsarea);