drm_context.c 11.6 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 43 44 45 46 47 48 49 50 51 52 53 54 55
 * \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.
 */

#include "drmP.h"

/******************************************************************/
/** \name Context bitmap support */
/*@{*/

/**
 * 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
56
 * in drm_device::ctx_idr, while holding the drm_device::struct_mutex
L
Linus Torvalds 已提交
57 58
 * lock.
 */
59
void drm_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
L
Linus Torvalds 已提交
60
{
61 62 63
	mutex_lock(&dev->struct_mutex);
	idr_remove(&dev->ctx_idr, ctx_handle);
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
64 65
}

D
Dave Airlie 已提交
66
/**
L
Linus Torvalds 已提交
67 68 69 70 71
 * Context bitmap allocation.
 *
 * \param dev DRM device.
 * \return (non-negative) context handle on success or a negative number on failure.
 *
72
 * Allocate a new idr from drm_device::ctx_idr while holding the
D
Dave Airlie 已提交
73
 * drm_device::struct_mutex lock.
L
Linus Torvalds 已提交
74
 */
75
static int drm_ctxbitmap_next(struct drm_device * dev)
L
Linus Torvalds 已提交
76
{
77 78
	int new_id;
	int ret;
L
Linus Torvalds 已提交
79

80 81 82 83 84
again:
	if (idr_pre_get(&dev->ctx_idr, GFP_KERNEL) == 0) {
		DRM_ERROR("Out of memory expanding drawable idr\n");
		return -ENOMEM;
	}
D
Dave Airlie 已提交
85
	mutex_lock(&dev->struct_mutex);
86 87 88
	ret = idr_get_new_above(&dev->ctx_idr, NULL,
				DRM_RESERVED_CONTEXTS, &new_id);
	if (ret == -EAGAIN) {
D
Dave Airlie 已提交
89
		mutex_unlock(&dev->struct_mutex);
90
		goto again;
L
Linus Torvalds 已提交
91
	}
D
Dave Airlie 已提交
92
	mutex_unlock(&dev->struct_mutex);
93
	return new_id;
L
Linus Torvalds 已提交
94 95 96 97 98 99 100
}

/**
 * Context bitmap initialization.
 *
 * \param dev DRM device.
 *
101
 * Initialise the drm_device::ctx_idr
L
Linus Torvalds 已提交
102
 */
103
int drm_ctxbitmap_init(struct drm_device * dev)
L
Linus Torvalds 已提交
104
{
105
	idr_init(&dev->ctx_idr);
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113
	return 0;
}

/**
 * Context bitmap cleanup.
 *
 * \param dev DRM device.
 *
114 115
 * Free all idr members using drm_ctx_sarea_free helper function
 * while holding the drm_device::struct_mutex lock.
L
Linus Torvalds 已提交
116
 */
117
void drm_ctxbitmap_cleanup(struct drm_device * dev)
L
Linus Torvalds 已提交
118
{
D
Dave Airlie 已提交
119
	mutex_lock(&dev->struct_mutex);
120
	idr_remove_all(&dev->ctx_idr);
D
Dave Airlie 已提交
121
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131
}

/*@}*/

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

/**
 * Get per-context SAREA.
D
Dave Airlie 已提交
132
 *
L
Linus Torvalds 已提交
133
 * \param inode device inode.
134
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
135 136 137 138
 * \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.
 *
139
 * Gets the map from drm_device::ctx_idr with the handle specified and
L
Linus Torvalds 已提交
140 141
 * returns its handle.
 */
142 143
int drm_getsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
144
{
145
	struct drm_ctx_priv_map *request = data;
146
	struct drm_local_map *map;
D
Dave Airlie 已提交
147
	struct drm_map_list *_entry;
L
Linus Torvalds 已提交
148

D
Dave Airlie 已提交
149
	mutex_lock(&dev->struct_mutex);
150

151
	map = idr_find(&dev->ctx_idr, request->ctx_id);
152
	if (!map) {
D
Dave Airlie 已提交
153
		mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
154 155 156
		return -EINVAL;
	}

D
Dave Airlie 已提交
157
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
158

159
	request->handle = NULL;
160
	list_for_each_entry(_entry, &dev->maplist, head) {
161
		if (_entry->map == map) {
D
Dave Airlie 已提交
162
			request->handle =
D
Dave Airlie 已提交
163
			    (void *)(unsigned long)_entry->user_token;
164 165 166
			break;
		}
	}
167
	if (request->handle == NULL)
168 169
		return -EINVAL;

L
Linus Torvalds 已提交
170 171 172 173 174
	return 0;
}

/**
 * Set per-context SAREA.
D
Dave Airlie 已提交
175
 *
L
Linus Torvalds 已提交
176
 * \param inode device inode.
177
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
178 179 180 181 182
 * \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
183
 * drm_device::ctx_idr with it.
L
Linus Torvalds 已提交
184
 */
185 186
int drm_setsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
187
{
188
	struct drm_ctx_priv_map *request = data;
189
	struct drm_local_map *map = NULL;
D
Dave Airlie 已提交
190
	struct drm_map_list *r_list = NULL;
L
Linus Torvalds 已提交
191

D
Dave Airlie 已提交
192
	mutex_lock(&dev->struct_mutex);
193
	list_for_each_entry(r_list, &dev->maplist, head) {
194
		if (r_list->map
195
		    && r_list->user_token == (unsigned long) request->handle)
L
Linus Torvalds 已提交
196 197
			goto found;
	}
D
Dave Airlie 已提交
198
      bad:
D
Dave Airlie 已提交
199
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
200 201
	return -EINVAL;

D
Dave Airlie 已提交
202
      found:
L
Linus Torvalds 已提交
203
	map = r_list->map;
D
Dave Airlie 已提交
204 205
	if (!map)
		goto bad;
206

207
	if (IS_ERR(idr_replace(&dev->ctx_idr, map, request->ctx_id)))
L
Linus Torvalds 已提交
208
		goto bad;
209

D
Dave Airlie 已提交
210
	mutex_unlock(&dev->struct_mutex);
211

L
Linus Torvalds 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
	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.
 */
231
static int drm_context_switch(struct drm_device * dev, int old, int new)
L
Linus Torvalds 已提交
232
{
D
Dave Airlie 已提交
233 234 235 236
	if (test_and_set_bit(0, &dev->context_flag)) {
		DRM_ERROR("Reentering -- FIXME\n");
		return -EBUSY;
	}
L
Linus Torvalds 已提交
237

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

D
Dave Airlie 已提交
240 241 242 243
	if (new == dev->last_context) {
		clear_bit(0, &dev->context_flag);
		return 0;
	}
L
Linus Torvalds 已提交
244

D
Dave Airlie 已提交
245
	return 0;
L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258
}

/**
 * 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.
 */
259 260
static int drm_context_switch_complete(struct drm_device *dev,
				       struct drm_file *file_priv, int new)
L
Linus Torvalds 已提交
261
{
D
Dave Airlie 已提交
262 263
	dev->last_context = new;	/* PRE/POST: This is the _only_ writer. */
	dev->last_switch = jiffies;
L
Linus Torvalds 已提交
264

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

D
Dave Airlie 已提交
269 270 271 272 273
	/* If a context switch is ever initiated
	   when the kernel holds the lock, release
	   that lock here. */
	clear_bit(0, &dev->context_flag);
	wake_up(&dev->context_wait);
L
Linus Torvalds 已提交
274

D
Dave Airlie 已提交
275
	return 0;
L
Linus Torvalds 已提交
276 277 278 279 280 281
}

/**
 * Reserve contexts.
 *
 * \param inode device inode.
282
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
283 284 285 286
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx_res structure.
 * \return zero on success or a negative number on failure.
 */
287 288
int drm_resctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
289
{
290
	struct drm_ctx_res *res = data;
291
	struct drm_ctx ctx;
L
Linus Torvalds 已提交
292 293
	int i;

294
	if (res->count >= DRM_RESERVED_CONTEXTS) {
D
Dave Airlie 已提交
295 296
		memset(&ctx, 0, sizeof(ctx));
		for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
L
Linus Torvalds 已提交
297
			ctx.handle = i;
298
			if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx)))
L
Linus Torvalds 已提交
299 300 301
				return -EFAULT;
		}
	}
302
	res->count = DRM_RESERVED_CONTEXTS;
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310

	return 0;
}

/**
 * Add context.
 *
 * \param inode device inode.
311
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
312 313 314 315 316 317
 * \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.
 */
318 319
int drm_addctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
320
{
D
Dave Airlie 已提交
321
	struct drm_ctx_list *ctx_entry;
322
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
323

324 325
	ctx->handle = drm_ctxbitmap_next(dev);
	if (ctx->handle == DRM_KERNEL_CONTEXT) {
D
Dave Airlie 已提交
326
		/* Skip kernel's context and get a new one. */
327
		ctx->handle = drm_ctxbitmap_next(dev);
L
Linus Torvalds 已提交
328
	}
329 330
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle == -1) {
D
Dave Airlie 已提交
331 332
		DRM_DEBUG("Not enough free contexts.\n");
		/* Should this return -EBUSY instead? */
L
Linus Torvalds 已提交
333 334 335
		return -ENOMEM;
	}

336
	if (ctx->handle != DRM_KERNEL_CONTEXT) {
L
Linus Torvalds 已提交
337
		if (dev->driver->context_ctor)
338
			if (!dev->driver->context_ctor(dev, ctx->handle)) {
339 340 341
				DRM_DEBUG("Running out of ctxs or memory.\n");
				return -ENOMEM;
			}
L
Linus Torvalds 已提交
342 343
	}

D
Dave Airlie 已提交
344 345
	ctx_entry = drm_alloc(sizeof(*ctx_entry), DRM_MEM_CTXLIST);
	if (!ctx_entry) {
L
Linus Torvalds 已提交
346 347 348 349
		DRM_DEBUG("out of memory\n");
		return -ENOMEM;
	}

D
Dave Airlie 已提交
350
	INIT_LIST_HEAD(&ctx_entry->head);
351
	ctx_entry->handle = ctx->handle;
352
	ctx_entry->tag = file_priv;
L
Linus Torvalds 已提交
353

D
Dave Airlie 已提交
354
	mutex_lock(&dev->ctxlist_mutex);
355
	list_add(&ctx_entry->head, &dev->ctxlist);
L
Linus Torvalds 已提交
356
	++dev->ctx_count;
D
Dave Airlie 已提交
357
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
358 359 360 361

	return 0;
}

362
int drm_modctx(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371
{
	/* This does nothing */
	return 0;
}

/**
 * Get context.
 *
 * \param inode device inode.
372
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
373 374 375 376
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 */
377
int drm_getctx(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
378
{
379
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
380 381

	/* This is 0, because we don't handle any context flags */
382
	ctx->flags = 0;
L
Linus Torvalds 已提交
383 384 385 386 387 388 389 390

	return 0;
}

/**
 * Switch context.
 *
 * \param inode device inode.
391
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
392 393 394 395 396 397
 * \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().
 */
398 399
int drm_switchctx(struct drm_device *dev, void *data,
		  struct drm_file *file_priv)
L
Linus Torvalds 已提交
400
{
401
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
402

403 404
	DRM_DEBUG("%d\n", ctx->handle);
	return drm_context_switch(dev, dev->last_context, ctx->handle);
L
Linus Torvalds 已提交
405 406 407 408 409 410
}

/**
 * New context.
 *
 * \param inode device inode.
411
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
412 413 414 415 416 417
 * \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().
 */
418 419
int drm_newctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
420
{
421
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
422

423
	DRM_DEBUG("%d\n", ctx->handle);
424
	drm_context_switch_complete(dev, file_priv, ctx->handle);
L
Linus Torvalds 已提交
425 426 427 428 429 430 431 432

	return 0;
}

/**
 * Remove context.
 *
 * \param inode device inode.
433
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
434 435 436 437 438 439
 * \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.
 */
440 441
int drm_rmctx(struct drm_device *dev, void *data,
	      struct drm_file *file_priv)
L
Linus Torvalds 已提交
442
{
443
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
444

445 446
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle != DRM_KERNEL_CONTEXT) {
L
Linus Torvalds 已提交
447
		if (dev->driver->context_dtor)
448 449
			dev->driver->context_dtor(dev, ctx->handle);
		drm_ctxbitmap_free(dev, ctx->handle);
L
Linus Torvalds 已提交
450 451
	}

D
Dave Airlie 已提交
452
	mutex_lock(&dev->ctxlist_mutex);
453
	if (!list_empty(&dev->ctxlist)) {
D
Dave Airlie 已提交
454
		struct drm_ctx_list *pos, *n;
L
Linus Torvalds 已提交
455

456
		list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
457
			if (pos->handle == ctx->handle) {
D
Dave Airlie 已提交
458 459
				list_del(&pos->head);
				drm_free(pos, sizeof(*pos), DRM_MEM_CTXLIST);
L
Linus Torvalds 已提交
460 461 462 463
				--dev->ctx_count;
			}
		}
	}
D
Dave Airlie 已提交
464
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
465 466 467 468 469

	return 0;
}

/*@}*/