drm_context.c 10.9 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
/******************************************************************/
/** \name Context bitmap support */
/*@{*/

L
Linus Torvalds 已提交
49 50 51 52 53 54 55
/**
 * 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
	int ret;
L
Linus Torvalds 已提交
78

D
Dave Airlie 已提交
79
	mutex_lock(&dev->struct_mutex);
T
Tejun Heo 已提交
80 81
	ret = idr_alloc(&dev->ctx_idr, NULL, DRM_RESERVED_CONTEXTS, 0,
			GFP_KERNEL);
D
Dave Airlie 已提交
82
	mutex_unlock(&dev->struct_mutex);
T
Tejun Heo 已提交
83
	return ret;
L
Linus Torvalds 已提交
84 85 86 87 88 89 90
}

/**
 * Context bitmap initialization.
 *
 * \param dev DRM device.
 *
91
 * Initialise the drm_device::ctx_idr
L
Linus Torvalds 已提交
92
 */
93
int drm_ctxbitmap_init(struct drm_device * dev)
L
Linus Torvalds 已提交
94
{
95
	idr_init(&dev->ctx_idr);
96
	return 0;
L
Linus Torvalds 已提交
97 98 99 100 101 102 103
}

/**
 * Context bitmap cleanup.
 *
 * \param dev DRM device.
 *
104 105
 * Free all idr members using drm_ctx_sarea_free helper function
 * while holding the drm_device::struct_mutex lock.
L
Linus Torvalds 已提交
106
 */
107
void drm_ctxbitmap_cleanup(struct drm_device * dev)
L
Linus Torvalds 已提交
108
{
D
Dave Airlie 已提交
109
	mutex_lock(&dev->struct_mutex);
T
Tejun Heo 已提交
110
	idr_destroy(&dev->ctx_idr);
D
Dave Airlie 已提交
111
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119 120 121
}

/*@}*/

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

/**
 * Get per-context SAREA.
D
Dave Airlie 已提交
122
 *
L
Linus Torvalds 已提交
123
 * \param inode device inode.
124
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
125 126 127 128
 * \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.
 *
129
 * Gets the map from drm_device::ctx_idr with the handle specified and
L
Linus Torvalds 已提交
130 131
 * returns its handle.
 */
132 133
int drm_getsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
134
{
135
	struct drm_ctx_priv_map *request = data;
136
	struct drm_local_map *map;
D
Dave Airlie 已提交
137
	struct drm_map_list *_entry;
L
Linus Torvalds 已提交
138

D
Dave Airlie 已提交
139
	mutex_lock(&dev->struct_mutex);
140

141
	map = idr_find(&dev->ctx_idr, request->ctx_id);
142
	if (!map) {
D
Dave Airlie 已提交
143
		mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
144 145 146
		return -EINVAL;
	}

147
	request->handle = NULL;
148
	list_for_each_entry(_entry, &dev->maplist, head) {
149
		if (_entry->map == map) {
D
Dave Airlie 已提交
150
			request->handle =
D
Dave Airlie 已提交
151
			    (void *)(unsigned long)_entry->user_token;
152 153 154
			break;
		}
	}
155 156 157

	mutex_unlock(&dev->struct_mutex);

158
	if (request->handle == NULL)
159 160
		return -EINVAL;

L
Linus Torvalds 已提交
161 162 163 164 165
	return 0;
}

/**
 * Set per-context SAREA.
D
Dave Airlie 已提交
166
 *
L
Linus Torvalds 已提交
167
 * \param inode device inode.
168
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
169 170 171 172 173
 * \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
174
 * drm_device::ctx_idr with it.
L
Linus Torvalds 已提交
175
 */
176 177
int drm_setsareactx(struct drm_device *dev, void *data,
		    struct drm_file *file_priv)
L
Linus Torvalds 已提交
178
{
179
	struct drm_ctx_priv_map *request = data;
180
	struct drm_local_map *map = NULL;
D
Dave Airlie 已提交
181
	struct drm_map_list *r_list = NULL;
L
Linus Torvalds 已提交
182

D
Dave Airlie 已提交
183
	mutex_lock(&dev->struct_mutex);
184
	list_for_each_entry(r_list, &dev->maplist, head) {
185
		if (r_list->map
186
		    && r_list->user_token == (unsigned long) request->handle)
L
Linus Torvalds 已提交
187 188
			goto found;
	}
D
Dave Airlie 已提交
189
      bad:
D
Dave Airlie 已提交
190
	mutex_unlock(&dev->struct_mutex);
L
Linus Torvalds 已提交
191 192
	return -EINVAL;

D
Dave Airlie 已提交
193
      found:
L
Linus Torvalds 已提交
194
	map = r_list->map;
D
Dave Airlie 已提交
195 196
	if (!map)
		goto bad;
197

198
	if (IS_ERR(idr_replace(&dev->ctx_idr, map, request->ctx_id)))
L
Linus Torvalds 已提交
199
		goto bad;
200

D
Dave Airlie 已提交
201
	mutex_unlock(&dev->struct_mutex);
202

L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
	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.
 */
222
static int drm_context_switch(struct drm_device * dev, int old, int new)
L
Linus Torvalds 已提交
223
{
D
Dave Airlie 已提交
224 225 226 227
	if (test_and_set_bit(0, &dev->context_flag)) {
		DRM_ERROR("Reentering -- FIXME\n");
		return -EBUSY;
	}
L
Linus Torvalds 已提交
228

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

D
Dave Airlie 已提交
231 232 233 234
	if (new == dev->last_context) {
		clear_bit(0, &dev->context_flag);
		return 0;
	}
L
Linus Torvalds 已提交
235

D
Dave Airlie 已提交
236
	return 0;
L
Linus Torvalds 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249
}

/**
 * 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.
 */
250 251
static int drm_context_switch_complete(struct drm_device *dev,
				       struct drm_file *file_priv, int new)
L
Linus Torvalds 已提交
252
{
D
Dave Airlie 已提交
253
	dev->last_context = new;	/* PRE/POST: This is the _only_ writer. */
L
Linus Torvalds 已提交
254

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

D
Dave Airlie 已提交
259 260 261 262
	/* 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 已提交
263

D
Dave Airlie 已提交
264
	return 0;
L
Linus Torvalds 已提交
265 266 267 268 269 270
}

/**
 * Reserve contexts.
 *
 * \param inode device inode.
271
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
272 273 274 275
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx_res structure.
 * \return zero on success or a negative number on failure.
 */
276 277
int drm_resctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
278
{
279
	struct drm_ctx_res *res = data;
280
	struct drm_ctx ctx;
L
Linus Torvalds 已提交
281 282
	int i;

283
	if (res->count >= DRM_RESERVED_CONTEXTS) {
D
Dave Airlie 已提交
284 285
		memset(&ctx, 0, sizeof(ctx));
		for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
L
Linus Torvalds 已提交
286
			ctx.handle = i;
287
			if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx)))
L
Linus Torvalds 已提交
288 289 290
				return -EFAULT;
		}
	}
291
	res->count = DRM_RESERVED_CONTEXTS;
L
Linus Torvalds 已提交
292 293 294 295 296 297 298 299

	return 0;
}

/**
 * Add context.
 *
 * \param inode device inode.
300
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
301 302 303 304 305 306
 * \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.
 */
307 308
int drm_addctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
309
{
D
Dave Airlie 已提交
310
	struct drm_ctx_list *ctx_entry;
311
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
312

313 314
	ctx->handle = drm_ctxbitmap_next(dev);
	if (ctx->handle == DRM_KERNEL_CONTEXT) {
D
Dave Airlie 已提交
315
		/* Skip kernel's context and get a new one. */
316
		ctx->handle = drm_ctxbitmap_next(dev);
L
Linus Torvalds 已提交
317
	}
318 319
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle == -1) {
D
Dave Airlie 已提交
320 321
		DRM_DEBUG("Not enough free contexts.\n");
		/* Should this return -EBUSY instead? */
L
Linus Torvalds 已提交
322 323 324
		return -ENOMEM;
	}

325
	ctx_entry = kmalloc(sizeof(*ctx_entry), GFP_KERNEL);
D
Dave Airlie 已提交
326
	if (!ctx_entry) {
L
Linus Torvalds 已提交
327 328 329 330
		DRM_DEBUG("out of memory\n");
		return -ENOMEM;
	}

D
Dave Airlie 已提交
331
	INIT_LIST_HEAD(&ctx_entry->head);
332
	ctx_entry->handle = ctx->handle;
333
	ctx_entry->tag = file_priv;
L
Linus Torvalds 已提交
334

D
Dave Airlie 已提交
335
	mutex_lock(&dev->ctxlist_mutex);
336
	list_add(&ctx_entry->head, &dev->ctxlist);
L
Linus Torvalds 已提交
337
	++dev->ctx_count;
D
Dave Airlie 已提交
338
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
339 340 341 342 343 344 345 346

	return 0;
}

/**
 * Get context.
 *
 * \param inode device inode.
347
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
348 349 350 351
 * \param cmd command.
 * \param arg user argument pointing to a drm_ctx structure.
 * \return zero on success or a negative number on failure.
 */
352
int drm_getctx(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
353
{
354
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
355 356

	/* This is 0, because we don't handle any context flags */
357
	ctx->flags = 0;
L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365

	return 0;
}

/**
 * Switch context.
 *
 * \param inode device inode.
366
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
367 368 369 370 371 372
 * \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().
 */
373 374
int drm_switchctx(struct drm_device *dev, void *data,
		  struct drm_file *file_priv)
L
Linus Torvalds 已提交
375
{
376
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
377

378 379
	DRM_DEBUG("%d\n", ctx->handle);
	return drm_context_switch(dev, dev->last_context, ctx->handle);
L
Linus Torvalds 已提交
380 381 382 383 384 385
}

/**
 * New context.
 *
 * \param inode device inode.
386
 * \param file_priv DRM file private.
L
Linus Torvalds 已提交
387 388 389 390 391 392
 * \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().
 */
393 394
int drm_newctx(struct drm_device *dev, void *data,
	       struct drm_file *file_priv)
L
Linus Torvalds 已提交
395
{
396
	struct drm_ctx *ctx = data;
L
Linus Torvalds 已提交
397

398
	DRM_DEBUG("%d\n", ctx->handle);
399
	drm_context_switch_complete(dev, file_priv, ctx->handle);
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407

	return 0;
}

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

420 421
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle != DRM_KERNEL_CONTEXT) {
L
Linus Torvalds 已提交
422
		if (dev->driver->context_dtor)
423 424
			dev->driver->context_dtor(dev, ctx->handle);
		drm_ctxbitmap_free(dev, ctx->handle);
L
Linus Torvalds 已提交
425 426
	}

D
Dave Airlie 已提交
427
	mutex_lock(&dev->ctxlist_mutex);
428
	if (!list_empty(&dev->ctxlist)) {
D
Dave Airlie 已提交
429
		struct drm_ctx_list *pos, *n;
L
Linus Torvalds 已提交
430

431
		list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
432
			if (pos->handle == ctx->handle) {
D
Dave Airlie 已提交
433
				list_del(&pos->head);
434
				kfree(pos);
L
Linus Torvalds 已提交
435 436 437 438
				--dev->ctx_count;
			}
		}
	}
D
Dave Airlie 已提交
439
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
440 441 442 443 444

	return 0;
}

/*@}*/