drm_context.c 11.3 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 52 53 54 55

/******************************************************************/
/** \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
	ret = idr_get_new_above(&dev->ctx_idr, NULL,
				DRM_RESERVED_CONTEXTS, &new_id);
D
Dave Airlie 已提交
88
	mutex_unlock(&dev->struct_mutex);
89 90 91 92 93
	if (ret == -EAGAIN)
		goto again;
	else if (ret)
		return ret;

94
	return new_id;
L
Linus Torvalds 已提交
95 96 97 98 99 100 101
}

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

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

/*@}*/

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

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

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

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

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

	mutex_unlock(&dev->struct_mutex);

169
	if (request->handle == NULL)
170 171
		return -EINVAL;

L
Linus Torvalds 已提交
172 173 174 175 176
	return 0;
}

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

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

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

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

D
Dave Airlie 已提交
212
	mutex_unlock(&dev->struct_mutex);
213

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

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

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

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

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

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

D
Dave Airlie 已提交
271 272 273 274 275
	/* 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 已提交
276

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

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

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

	return 0;
}

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

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

338
	ctx_entry = kmalloc(sizeof(*ctx_entry), GFP_KERNEL);
D
Dave Airlie 已提交
339
	if (!ctx_entry) {
L
Linus Torvalds 已提交
340 341 342 343
		DRM_DEBUG("out of memory\n");
		return -ENOMEM;
	}

D
Dave Airlie 已提交
344
	INIT_LIST_HEAD(&ctx_entry->head);
345
	ctx_entry->handle = ctx->handle;
346
	ctx_entry->tag = file_priv;
L
Linus Torvalds 已提交
347

D
Dave Airlie 已提交
348
	mutex_lock(&dev->ctxlist_mutex);
349
	list_add(&ctx_entry->head, &dev->ctxlist);
L
Linus Torvalds 已提交
350
	++dev->ctx_count;
D
Dave Airlie 已提交
351
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
352 353 354 355

	return 0;
}

356
int drm_modctx(struct drm_device *dev, void *data, struct drm_file *file_priv)
L
Linus Torvalds 已提交
357 358 359 360 361 362 363 364 365
{
	/* This does nothing */
	return 0;
}

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

	/* This is 0, because we don't handle any context flags */
376
	ctx->flags = 0;
L
Linus Torvalds 已提交
377 378 379 380 381 382 383 384

	return 0;
}

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

397 398
	DRM_DEBUG("%d\n", ctx->handle);
	return drm_context_switch(dev, dev->last_context, ctx->handle);
L
Linus Torvalds 已提交
399 400 401 402 403 404
}

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

417
	DRM_DEBUG("%d\n", ctx->handle);
418
	drm_context_switch_complete(dev, file_priv, ctx->handle);
L
Linus Torvalds 已提交
419 420 421 422 423 424 425 426

	return 0;
}

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

439 440
	DRM_DEBUG("%d\n", ctx->handle);
	if (ctx->handle != DRM_KERNEL_CONTEXT) {
L
Linus Torvalds 已提交
441
		if (dev->driver->context_dtor)
442 443
			dev->driver->context_dtor(dev, ctx->handle);
		drm_ctxbitmap_free(dev, ctx->handle);
L
Linus Torvalds 已提交
444 445
	}

D
Dave Airlie 已提交
446
	mutex_lock(&dev->ctxlist_mutex);
447
	if (!list_empty(&dev->ctxlist)) {
D
Dave Airlie 已提交
448
		struct drm_ctx_list *pos, *n;
L
Linus Torvalds 已提交
449

450
		list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
451
			if (pos->handle == ctx->handle) {
D
Dave Airlie 已提交
452
				list_del(&pos->head);
453
				kfree(pos);
L
Linus Torvalds 已提交
454 455 456 457
				--dev->ctx_count;
			}
		}
	}
D
Dave Airlie 已提交
458
	mutex_unlock(&dev->ctxlist_mutex);
L
Linus Torvalds 已提交
459 460 461 462 463

	return 0;
}

/*@}*/