drm_context.c 12.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_context.c
L
Linus Torvalds 已提交
3
 * IOCTLs for generic contexts
D
Dave Airlie 已提交
4
 *
L
Linus Torvalds 已提交
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
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 */

/*
 * Created: Fri Nov 24 18:31:37 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.
 */

/*
 * ChangeLog:
 *  2001-11-16	Torsten Duwe <duwe@caldera.de>
 *		added context constructor/destructor hooks,
 *		needed by SiS driver's memory management.
 */

43
#include <drm/drmP.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51

/**
 * Free a handle from the context bitmap.
 *
 * \param dev DRM device.
 * \param ctx_handle context handle.
 *
 * Clears the bit specified by \p ctx_handle in drm_device::ctx_bitmap and the entry
52
 * in drm_device::ctx_idr, while holding the drm_device::struct_mutex
L
Linus Torvalds 已提交
53 54
 * lock.
 */
55
static void drm_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
L
Linus Torvalds 已提交
56
{
57 58 59
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return;

60 61 62
	mutex_lock(&dev->struct_mutex);
	idr_remove(&dev->ctx_idr, ctx_handle);
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
63 64
}

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/******************************************************************/
/** \name Context bitmap support */
/*@{*/

void drm_legacy_ctxbitmap_release(struct drm_device *dev,
				  struct drm_file *file_priv)
{
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return;

	mutex_lock(&dev->ctxlist_mutex);
	if (!list_empty(&dev->ctxlist)) {
		struct drm_ctx_list *pos, *n;

		list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
			if (pos->tag == file_priv &&
			    pos->handle != DRM_KERNEL_CONTEXT) {
				if (dev->driver->context_dtor)
					dev->driver->context_dtor(dev,
								  pos->handle);

				drm_ctxbitmap_free(dev, pos->handle);

				list_del(&pos->head);
				kfree(pos);
				--dev->ctx_count;
			}
		}
	}
	mutex_unlock(&dev->ctxlist_mutex);
}

D
Dave Airlie 已提交
97
/**
L
Linus Torvalds 已提交
98 99 100 101 102
 * Context bitmap allocation.
 *
 * \param dev DRM device.
 * \return (non-negative) context handle on success or a negative number on failure.
 *
103
 * Allocate a new idr from drm_device::ctx_idr while holding the
D
Dave Airlie 已提交
104
 * drm_device::struct_mutex lock.
L
Linus Torvalds 已提交
105
 */
106
static int drm_ctxbitmap_next(struct drm_device * dev)
L
Linus Torvalds 已提交
107
{
108
	int ret;
L
Linus Torvalds 已提交
109

D
Dave Airlie 已提交
110
	mutex_lock(&dev->struct_mutex);
T
Tejun Heo 已提交
111 112
	ret = idr_alloc(&dev->ctx_idr, NULL, DRM_RESERVED_CONTEXTS, 0,
			GFP_KERNEL);
D
Dave Airlie 已提交
113
	mutex_unlock(&dev->struct_mutex);
T
Tejun Heo 已提交
114
	return ret;
L
Linus Torvalds 已提交
115 116 117 118 119 120 121
}

/**
 * Context bitmap initialization.
 *
 * \param dev DRM device.
 *
122
 * Initialise the drm_device::ctx_idr
L
Linus Torvalds 已提交
123
 */
124
void drm_legacy_ctxbitmap_init(struct drm_device * dev)
L
Linus Torvalds 已提交
125
{
126 127 128
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return;

129
	idr_init(&dev->ctx_idr);
L
Linus Torvalds 已提交
130 131 132 133 134 135 136
}

/**
 * Context bitmap cleanup.
 *
 * \param dev DRM device.
 *
137 138
 * Free all idr members using drm_ctx_sarea_free helper function
 * while holding the drm_device::struct_mutex lock.
L
Linus Torvalds 已提交
139
 */
140
void drm_legacy_ctxbitmap_cleanup(struct drm_device * dev)
L
Linus Torvalds 已提交
141
{
D
Dave Airlie 已提交
142
	mutex_lock(&dev->struct_mutex);
T
Tejun Heo 已提交
143
	idr_destroy(&dev->ctx_idr);
D
Dave Airlie 已提交
144
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154
}

/*@}*/

/******************************************************************/
/** \name Per Context SAREA Support */
/*@{*/

/**
 * Get per-context SAREA.
D
Dave Airlie 已提交
155
 *
L
Linus Torvalds 已提交
156
 * \param inode device inode.
157
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
158 159 160 161
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx_priv_map structure.
 * \return zero on success or a negative number on failure.
 *
162
 * Gets the map from drm_device::ctx_idr with the handle specified and
L
Linus Torvalds 已提交
163 164
 * returns its handle.
 */
165 166
int drm_getsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
167
{
168
	struct drm_ctx_priv_map *request = data;
169
	struct drm_local_map *map;
D
Dave Airlie 已提交
170
	struct drm_map_list *_entry;
L
Linus Torvalds 已提交
171

172 173 174
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

D
Dave Airlie 已提交
175
	mutex_lock(&dev->struct_mutex);
176

177
	map = idr_find(&dev->ctx_idr, request->ctx_id);
178
	if (!map) {
D
Dave Airlie 已提交
179
		mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
180 181 182
		return -EINVAL;
	}

183
	request->handle = NULL;
184
	list_for_each_entry(_entry, &dev->maplist, head) {
185
		if (_entry->map == map) {
D
Dave Airlie 已提交
186
			request->handle =
D
Dave Airlie 已提交
187
			    (void *)(unsigned long)_entry->user_token;
188 189 190
			break;
		}
	}
191 192 193

	mutex_unlock(&dev->struct_mutex);

194
	if (request->handle == NULL)
195 196
		return -EINVAL;

L
Linus Torvalds 已提交
197 198 199 200 201
	return 0;
}

/**
 * Set per-context SAREA.
D
Dave Airlie 已提交
202
 *
L
Linus Torvalds 已提交
203
 * \param inode device inode.
204
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
205 206 207 208 209
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx_priv_map structure.
 * \return zero on success or a negative number on failure.
 *
 * Searches the mapping specified in \p arg and update the entry in
210
 * drm_device::ctx_idr with it.
L
Linus Torvalds 已提交
211
 */
212 213
int drm_setsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
214
{
215
	struct drm_ctx_priv_map *request = data;
216
	struct drm_local_map *map = NULL;
D
Dave Airlie 已提交
217
	struct drm_map_list *r_list = NULL;
L
Linus Torvalds 已提交
218

219 220 221
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

D
Dave Airlie 已提交
222
	mutex_lock(&dev->struct_mutex);
223
	list_for_each_entry(r_list, &dev->maplist, head) {
224
		if (r_list->map
225
		    && r_list->user_token == (unsigned long) request->handle)
L
Linus Torvalds 已提交
226 227
			goto found;
	}
D
Dave Airlie 已提交
228
      bad:
D
Dave Airlie 已提交
229
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
230 231
	return -EINVAL;

D
Dave Airlie 已提交
232
      found:
L
Linus Torvalds 已提交
233
	map = r_list->map;
D
Dave Airlie 已提交
234 235
	if (!map)
		goto bad;
236

237
	if (IS_ERR(idr_replace(&dev->ctx_idr, map, request->ctx_id)))
L
Linus Torvalds 已提交
238
		goto bad;
239

D
Dave Airlie 已提交
240
	mutex_unlock(&dev->struct_mutex);
241

L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
	return 0;
}

/*@}*/

/******************************************************************/
/** \name The actual DRM context handling routines */
/*@{*/

/**
 * Switch context.
 *
 * \param dev DRM device.
 * \param old old context handle.
 * \param new new context handle.
 * \return zero on success or a negative number on failure.
 *
 * Attempt to set drm_device::context_flag.
 */
261
static int drm_context_switch(struct drm_device * dev, int old, int new)
L
Linus Torvalds 已提交
262
{
D
Dave Airlie 已提交
263 264 265 266
	if (test_and_set_bit(0, &dev->context_flag)) {
		DRM_ERROR("Reentering -- FIXME\n");
		return -EBUSY;
	}
L
Linus Torvalds 已提交
267

D
Dave Airlie 已提交
268
	DRM_DEBUG("Context switch from %d to %d\n", old, new);
L
Linus Torvalds 已提交
269

D
Dave Airlie 已提交
270 271 272 273
	if (new == dev->last_context) {
		clear_bit(0, &dev->context_flag);
		return 0;
	}
L
Linus Torvalds 已提交
274

D
Dave Airlie 已提交
275
	return 0;
L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288
}

/**
 * Complete context switch.
 *
 * \param dev DRM device.
 * \param new new context handle.
 * \return zero on success or a negative number on failure.
 *
 * Updates drm_device::last_context and drm_device::last_switch. Verifies the
 * hardware lock is held, clears the drm_device::context_flag and wakes up
 * drm_device::context_wait.
 */
289 290
static int drm_context_switch_complete(struct drm_device *dev,
				       struct drm_file *file_priv, int new)
L
Linus Torvalds 已提交
291
{
D
Dave Airlie 已提交
292
	dev->last_context = new;	/* PRE/POST: This is the _only_ writer. */
L
Linus Torvalds 已提交
293

294
	if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock)) {
D
Dave Airlie 已提交
295 296
		DRM_ERROR("Lock isn't held after context switch\n");
	}
L
Linus Torvalds 已提交
297

D
Dave Airlie 已提交
298 299 300 301
	/* If a context switch is ever initiated
	   when the kernel holds the lock, release
	   that lock here. */
	clear_bit(0, &dev->context_flag);
L
Linus Torvalds 已提交
302

D
Dave Airlie 已提交
303
	return 0;
L
Linus Torvalds 已提交
304 305 306 307 308 309
}

/**
 * Reserve contexts.
 *
 * \param inode device inode.
310
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
311 312 313 314
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx_res structure.
 * \return zero on success or a negative number on failure.
 */
315 316
int drm_resctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
317
{
318
	struct drm_ctx_res *res = data;
319
	struct drm_ctx ctx;
L
Linus Torvalds 已提交
320 321
	int i;

322 323 324
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

325
	if (res->count >= DRM_RESERVED_CONTEXTS) {
D
Dave Airlie 已提交
326 327
		memset(&ctx, 0, sizeof(ctx));
		for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
L
Linus Torvalds 已提交
328
			ctx.handle = i;
329
			if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx)))
L
Linus Torvalds 已提交
330 331 332
				return -EFAULT;
		}
	}
333
	res->count = DRM_RESERVED_CONTEXTS;
L
Linus Torvalds 已提交
334 335 336 337 338 339 340 341

	return 0;
}

/**
 * Add context.
 *
 * \param inode device inode.
342
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
343 344 345 346 347 348
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 *
 * Get a new handle for the context and copy to userspace.
 */
349 350
int drm_addctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
351
{
D
Dave Airlie 已提交
352
	struct drm_ctx_list *ctx_entry;
353
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
354

355 356 357
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

358 359
	ctx->handle = drm_ctxbitmap_next(dev);
	if (ctx->handle == DRM_KERNEL_CONTEXT) {
D
Dave Airlie 已提交
360
		/* Skip kernel's context and get a new one. */
361
		ctx->handle = drm_ctxbitmap_next(dev);
L
Linus Torvalds 已提交
362
	}
363 364
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle == -1) {
D
Dave Airlie 已提交
365 366
		DRM_DEBUG("Not enough free contexts.\n");
		/* Should this return -EBUSY instead? */
L
Linus Torvalds 已提交
367 368 369
		return -ENOMEM;
	}

370
	ctx_entry = kmalloc(sizeof(*ctx_entry), GFP_KERNEL);
D
Dave Airlie 已提交
371
	if (!ctx_entry) {
L
Linus Torvalds 已提交
372 373 374 375
		DRM_DEBUG("out of memory\n");
		return -ENOMEM;
	}

D
Dave Airlie 已提交
376
	INIT_LIST_HEAD(&ctx_entry->head);
377
	ctx_entry->handle = ctx->handle;
378
	ctx_entry->tag = file_priv;
L
Linus Torvalds 已提交
379

D
Dave Airlie 已提交
380
	mutex_lock(&dev->ctxlist_mutex);
381
	list_add(&ctx_entry->head, &dev->ctxlist);
L
Linus Torvalds 已提交
382
	++dev->ctx_count;
D
Dave Airlie 已提交
383
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391

	return 0;
}

/**
 * Get context.
 *
 * \param inode device inode.
392
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
393 394 395 396
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 */
397
int drm_getctx(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
398
{
399
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
400

401 402 403
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

L
Linus Torvalds 已提交
404
	/* This is 0, because we don't handle any context flags */
405
	ctx->flags = 0;
L
Linus Torvalds 已提交
406 407 408 409 410 411 412 413

	return 0;
}

/**
 * Switch context.
 *
 * \param inode device inode.
414
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
415 416 417 418 419 420
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 *
 * Calls context_switch().
 */
421 422
int drm_switchctx(struct drm_device *dev, void *data,
		  struct drm_file *file_priv)
L
Linus Torvalds 已提交
423
{
424
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
425

426 427 428
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

429 430
	DRM_DEBUG("%d\n", ctx->handle);
	return drm_context_switch(dev, dev->last_context, ctx->handle);
L
Linus Torvalds 已提交
431 432 433 434 435 436
}

/**
 * New context.
 *
 * \param inode device inode.
437
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
438 439 440 441 442 443
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 *
 * Calls context_switch_complete().
 */
444 445
int drm_newctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
446
{
447
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
448

449 450 451
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

452
	DRM_DEBUG("%d\n", ctx->handle);
453
	drm_context_switch_complete(dev, file_priv, ctx->handle);
L
Linus Torvalds 已提交
454 455 456 457 458 459 460 461

	return 0;
}

/**
 * Remove context.
 *
 * \param inode device inode.
462
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
463 464 465 466 467 468
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 *
 * If not the special kernel context, calls ctxbitmap_free() to free the specified context.
 */
469 470
int drm_rmctx(struct drm_device *dev, void *data,
	      struct drm_file *file_priv)
L
Linus Torvalds 已提交
471
{
472
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
473

474 475 476
	if (drm_core_check_feature(dev, DRIVER_MODESET))
		return -EINVAL;

477 478
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle != DRM_KERNEL_CONTEXT) {
L
Linus Torvalds 已提交
479
		if (dev->driver->context_dtor)
480 481
			dev->driver->context_dtor(dev, ctx->handle);
		drm_ctxbitmap_free(dev, ctx->handle);
L
Linus Torvalds 已提交
482 483
	}

D
Dave Airlie 已提交
484
	mutex_lock(&dev->ctxlist_mutex);
485
	if (!list_empty(&dev->ctxlist)) {
D
Dave Airlie 已提交
486
		struct drm_ctx_list *pos, *n;
L
Linus Torvalds 已提交
487

488
		list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
489
			if (pos->handle == ctx->handle) {
D
Dave Airlie 已提交
490
				list_del(&pos->head);
491
				kfree(pos);
L
Linus Torvalds 已提交
492 493 494 495
				--dev->ctx_count;
			}
		}
	}
D
Dave Airlie 已提交
496
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
497 498 499 500 501

	return 0;
}

/*@}*/