Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid
[linux-block.git] / drivers / gpu / drm / drm_context.c
CommitLineData
1da177e4 1/*
e7b96070 2 * Legacy: Generic DRM Contexts
1da177e4
LT
3 *
4 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * All Rights Reserved.
7 *
e7b96070
DH
8 * Author: Rickard E. (Rik) Faith <faith@valinux.com>
9 * Author: Gareth Hughes <gareth@valinux.com>
10 *
1da177e4
LT
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice (including the next
19 * paragraph) shall be included in all copies or substantial portions of the
20 * Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
26 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
27 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
0500c04e
SR
31#include <linux/slab.h>
32#include <linux/uaccess.h>
33
34#include <drm/drm_drv.h>
35#include <drm/drm_file.h>
36#include <drm/drm_print.h>
37
e7b96070
DH
38#include "drm_legacy.h"
39
40struct drm_ctx_list {
41 struct list_head head;
42 drm_context_t handle;
43 struct drm_file *tag;
44};
1da177e4 45
c21eb21c
DA
46/******************************************************************/
47/** \name Context bitmap support */
48/*@{*/
49
cc994825 50/*
1da177e4
LT
51 * Free a handle from the context bitmap.
52 *
53 * \param dev DRM device.
54 * \param ctx_handle context handle.
55 *
56 * Clears the bit specified by \p ctx_handle in drm_device::ctx_bitmap and the entry
62968144 57 * in drm_device::ctx_idr, while holding the drm_device::struct_mutex
1da177e4
LT
58 * lock.
59 */
e7b96070 60void drm_legacy_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
1da177e4 61{
0e975980 62 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 63 !drm_core_check_feature(dev, DRIVER_LEGACY))
0e975980
PA
64 return;
65
62968144
DA
66 mutex_lock(&dev->struct_mutex);
67 idr_remove(&dev->ctx_idr, ctx_handle);
68 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
69}
70
cc994825 71/*
1da177e4
LT
72 * Context bitmap allocation.
73 *
74 * \param dev DRM device.
75 * \return (non-negative) context handle on success or a negative number on failure.
76 *
62968144 77 * Allocate a new idr from drm_device::ctx_idr while holding the
30e2fb18 78 * drm_device::struct_mutex lock.
1da177e4 79 */
e7b96070 80static int drm_legacy_ctxbitmap_next(struct drm_device * dev)
1da177e4 81{
62968144 82 int ret;
1da177e4 83
30e2fb18 84 mutex_lock(&dev->struct_mutex);
2e928815
TH
85 ret = idr_alloc(&dev->ctx_idr, NULL, DRM_RESERVED_CONTEXTS, 0,
86 GFP_KERNEL);
30e2fb18 87 mutex_unlock(&dev->struct_mutex);
2e928815 88 return ret;
1da177e4
LT
89}
90
cc994825 91/*
1da177e4
LT
92 * Context bitmap initialization.
93 *
94 * \param dev DRM device.
95 *
62968144 96 * Initialise the drm_device::ctx_idr
1da177e4 97 */
ba6976c1 98void drm_legacy_ctxbitmap_init(struct drm_device * dev)
1da177e4 99{
0e975980 100 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 101 !drm_core_check_feature(dev, DRIVER_LEGACY))
ba6976c1 102 return;
0e975980 103
62968144 104 idr_init(&dev->ctx_idr);
1da177e4
LT
105}
106
cc994825 107/*
1da177e4
LT
108 * Context bitmap cleanup.
109 *
110 * \param dev DRM device.
111 *
62968144
DA
112 * Free all idr members using drm_ctx_sarea_free helper function
113 * while holding the drm_device::struct_mutex lock.
1da177e4 114 */
e7b96070 115void drm_legacy_ctxbitmap_cleanup(struct drm_device * dev)
1da177e4 116{
0e975980 117 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 118 !drm_core_check_feature(dev, DRIVER_LEGACY))
0e975980
PA
119 return;
120
30e2fb18 121 mutex_lock(&dev->struct_mutex);
4d53233a 122 idr_destroy(&dev->ctx_idr);
30e2fb18 123 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
124}
125
9f8d21ea 126/**
76fb3511 127 * drm_legacy_ctxbitmap_flush() - Flush all contexts owned by a file
9f8d21ea
DH
128 * @dev: DRM device to operate on
129 * @file: Open file to flush contexts for
130 *
131 * This iterates over all contexts on @dev and drops them if they're owned by
132 * @file. Note that after this call returns, new contexts might be added if
133 * the file is still alive.
134 */
e7b96070 135void drm_legacy_ctxbitmap_flush(struct drm_device *dev, struct drm_file *file)
9f8d21ea
DH
136{
137 struct drm_ctx_list *pos, *tmp;
138
0e975980 139 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 140 !drm_core_check_feature(dev, DRIVER_LEGACY))
0e975980
PA
141 return;
142
9f8d21ea
DH
143 mutex_lock(&dev->ctxlist_mutex);
144
145 list_for_each_entry_safe(pos, tmp, &dev->ctxlist, head) {
146 if (pos->tag == file &&
147 pos->handle != DRM_KERNEL_CONTEXT) {
148 if (dev->driver->context_dtor)
149 dev->driver->context_dtor(dev, pos->handle);
150
e7b96070 151 drm_legacy_ctxbitmap_free(dev, pos->handle);
9f8d21ea
DH
152 list_del(&pos->head);
153 kfree(pos);
154 }
155 }
156
157 mutex_unlock(&dev->ctxlist_mutex);
158}
159
1da177e4
LT
160/*@}*/
161
162/******************************************************************/
163/** \name Per Context SAREA Support */
164/*@{*/
165
cc994825 166/*
1da177e4 167 * Get per-context SAREA.
b5e89ed5 168 *
1da177e4 169 * \param inode device inode.
6c340eac 170 * \param file_priv DRM file private.
1da177e4
LT
171 * \param cmd command.
172 * \param arg user argument pointing to a drm_ctx_priv_map structure.
173 * \return zero on success or a negative number on failure.
174 *
62968144 175 * Gets the map from drm_device::ctx_idr with the handle specified and
1da177e4
LT
176 * returns its handle.
177 */
e7b96070
DH
178int drm_legacy_getsareactx(struct drm_device *dev, void *data,
179 struct drm_file *file_priv)
1da177e4 180{
c153f45f 181 struct drm_ctx_priv_map *request = data;
f77d390c 182 struct drm_local_map *map;
55910517 183 struct drm_map_list *_entry;
1da177e4 184
0e975980 185 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 186 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 187 return -EOPNOTSUPP;
0e975980 188
30e2fb18 189 mutex_lock(&dev->struct_mutex);
62968144 190
c153f45f 191 map = idr_find(&dev->ctx_idr, request->ctx_id);
62968144 192 if (!map) {
30e2fb18 193 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
194 return -EINVAL;
195 }
196
c153f45f 197 request->handle = NULL;
bd1b331f 198 list_for_each_entry(_entry, &dev->maplist, head) {
d1f2b55a 199 if (_entry->map == map) {
bc5f4523 200 request->handle =
b5e89ed5 201 (void *)(unsigned long)_entry->user_token;
d1f2b55a
DA
202 break;
203 }
204 }
09b4ea47
IH
205
206 mutex_unlock(&dev->struct_mutex);
207
c153f45f 208 if (request->handle == NULL)
d1f2b55a
DA
209 return -EINVAL;
210
1da177e4
LT
211 return 0;
212}
213
cc994825 214/*
1da177e4 215 * Set per-context SAREA.
b5e89ed5 216 *
1da177e4 217 * \param inode device inode.
6c340eac 218 * \param file_priv DRM file private.
1da177e4
LT
219 * \param cmd command.
220 * \param arg user argument pointing to a drm_ctx_priv_map structure.
221 * \return zero on success or a negative number on failure.
222 *
223 * Searches the mapping specified in \p arg and update the entry in
62968144 224 * drm_device::ctx_idr with it.
1da177e4 225 */
e7b96070
DH
226int drm_legacy_setsareactx(struct drm_device *dev, void *data,
227 struct drm_file *file_priv)
1da177e4 228{
c153f45f 229 struct drm_ctx_priv_map *request = data;
f77d390c 230 struct drm_local_map *map = NULL;
55910517 231 struct drm_map_list *r_list = NULL;
1da177e4 232
0e975980 233 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 234 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 235 return -EOPNOTSUPP;
0e975980 236
30e2fb18 237 mutex_lock(&dev->struct_mutex);
bd1b331f 238 list_for_each_entry(r_list, &dev->maplist, head) {
9a186645 239 if (r_list->map
c153f45f 240 && r_list->user_token == (unsigned long) request->handle)
1da177e4
LT
241 goto found;
242 }
b5e89ed5 243 bad:
30e2fb18 244 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
245 return -EINVAL;
246
b5e89ed5 247 found:
1da177e4 248 map = r_list->map;
b5e89ed5
DA
249 if (!map)
250 goto bad;
62968144 251
c153f45f 252 if (IS_ERR(idr_replace(&dev->ctx_idr, map, request->ctx_id)))
1da177e4 253 goto bad;
62968144 254
30e2fb18 255 mutex_unlock(&dev->struct_mutex);
c153f45f 256
1da177e4
LT
257 return 0;
258}
259
260/*@}*/
261
262/******************************************************************/
263/** \name The actual DRM context handling routines */
264/*@{*/
265
cc994825 266/*
1da177e4
LT
267 * Switch context.
268 *
269 * \param dev DRM device.
270 * \param old old context handle.
271 * \param new new context handle.
272 * \return zero on success or a negative number on failure.
273 *
274 * Attempt to set drm_device::context_flag.
275 */
84b1fd10 276static int drm_context_switch(struct drm_device * dev, int old, int new)
1da177e4 277{
b5e89ed5
DA
278 if (test_and_set_bit(0, &dev->context_flag)) {
279 DRM_ERROR("Reentering -- FIXME\n");
280 return -EBUSY;
281 }
1da177e4 282
b5e89ed5 283 DRM_DEBUG("Context switch from %d to %d\n", old, new);
1da177e4 284
b5e89ed5
DA
285 if (new == dev->last_context) {
286 clear_bit(0, &dev->context_flag);
287 return 0;
288 }
1da177e4 289
b5e89ed5 290 return 0;
1da177e4
LT
291}
292
cc994825 293/*
1da177e4
LT
294 * Complete context switch.
295 *
296 * \param dev DRM device.
297 * \param new new context handle.
298 * \return zero on success or a negative number on failure.
299 *
300 * Updates drm_device::last_context and drm_device::last_switch. Verifies the
301 * hardware lock is held, clears the drm_device::context_flag and wakes up
302 * drm_device::context_wait.
303 */
7c1c2871
DA
304static int drm_context_switch_complete(struct drm_device *dev,
305 struct drm_file *file_priv, int new)
1da177e4 306{
b5e89ed5 307 dev->last_context = new; /* PRE/POST: This is the _only_ writer. */
1da177e4 308
7c1c2871 309 if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock)) {
b5e89ed5
DA
310 DRM_ERROR("Lock isn't held after context switch\n");
311 }
1da177e4 312
b5e89ed5
DA
313 /* If a context switch is ever initiated
314 when the kernel holds the lock, release
f0ce78e2
BMC
315 that lock here.
316 */
b5e89ed5 317 clear_bit(0, &dev->context_flag);
1da177e4 318
b5e89ed5 319 return 0;
1da177e4
LT
320}
321
cc994825 322/*
1da177e4
LT
323 * Reserve contexts.
324 *
325 * \param inode device inode.
6c340eac 326 * \param file_priv DRM file private.
1da177e4
LT
327 * \param cmd command.
328 * \param arg user argument pointing to a drm_ctx_res structure.
329 * \return zero on success or a negative number on failure.
330 */
e7b96070
DH
331int drm_legacy_resctx(struct drm_device *dev, void *data,
332 struct drm_file *file_priv)
1da177e4 333{
c153f45f 334 struct drm_ctx_res *res = data;
c60ce623 335 struct drm_ctx ctx;
1da177e4
LT
336 int i;
337
0e975980 338 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 339 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 340 return -EOPNOTSUPP;
0e975980 341
c153f45f 342 if (res->count >= DRM_RESERVED_CONTEXTS) {
b5e89ed5
DA
343 memset(&ctx, 0, sizeof(ctx));
344 for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
1da177e4 345 ctx.handle = i;
c153f45f 346 if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx)))
1da177e4
LT
347 return -EFAULT;
348 }
349 }
c153f45f 350 res->count = DRM_RESERVED_CONTEXTS;
1da177e4 351
1da177e4
LT
352 return 0;
353}
354
cc994825 355/*
1da177e4
LT
356 * Add context.
357 *
358 * \param inode device inode.
6c340eac 359 * \param file_priv DRM file private.
1da177e4
LT
360 * \param cmd command.
361 * \param arg user argument pointing to a drm_ctx structure.
362 * \return zero on success or a negative number on failure.
363 *
364 * Get a new handle for the context and copy to userspace.
365 */
e7b96070
DH
366int drm_legacy_addctx(struct drm_device *dev, void *data,
367 struct drm_file *file_priv)
1da177e4 368{
55910517 369 struct drm_ctx_list *ctx_entry;
c153f45f 370 struct drm_ctx *ctx = data;
c39191fe 371 int tmp_handle;
1da177e4 372
0e975980 373 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 374 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 375 return -EOPNOTSUPP;
0e975980 376
c39191fe
Y
377 tmp_handle = drm_legacy_ctxbitmap_next(dev);
378 if (tmp_handle == DRM_KERNEL_CONTEXT) {
b5e89ed5 379 /* Skip kernel's context and get a new one. */
c39191fe 380 tmp_handle = drm_legacy_ctxbitmap_next(dev);
1da177e4 381 }
c39191fe
Y
382 DRM_DEBUG("%d\n", tmp_handle);
383 if (tmp_handle < 0) {
b5e89ed5
DA
384 DRM_DEBUG("Not enough free contexts.\n");
385 /* Should this return -EBUSY instead? */
c39191fe 386 return tmp_handle;
1da177e4
LT
387 }
388
c39191fe
Y
389 ctx->handle = tmp_handle;
390
9a298b2a 391 ctx_entry = kmalloc(sizeof(*ctx_entry), GFP_KERNEL);
b5e89ed5 392 if (!ctx_entry) {
1da177e4
LT
393 DRM_DEBUG("out of memory\n");
394 return -ENOMEM;
395 }
396
b5e89ed5 397 INIT_LIST_HEAD(&ctx_entry->head);
c153f45f 398 ctx_entry->handle = ctx->handle;
6c340eac 399 ctx_entry->tag = file_priv;
1da177e4 400
30e2fb18 401 mutex_lock(&dev->ctxlist_mutex);
bd1b331f 402 list_add(&ctx_entry->head, &dev->ctxlist);
30e2fb18 403 mutex_unlock(&dev->ctxlist_mutex);
1da177e4 404
1da177e4
LT
405 return 0;
406}
407
cc994825 408/*
1da177e4
LT
409 * Get context.
410 *
411 * \param inode device inode.
6c340eac 412 * \param file_priv DRM file private.
1da177e4
LT
413 * \param cmd command.
414 * \param arg user argument pointing to a drm_ctx structure.
415 * \return zero on success or a negative number on failure.
416 */
e7b96070
DH
417int drm_legacy_getctx(struct drm_device *dev, void *data,
418 struct drm_file *file_priv)
1da177e4 419{
c153f45f 420 struct drm_ctx *ctx = data;
1da177e4 421
0e975980 422 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 423 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 424 return -EOPNOTSUPP;
0e975980 425
1da177e4 426 /* This is 0, because we don't handle any context flags */
c153f45f 427 ctx->flags = 0;
1da177e4 428
1da177e4
LT
429 return 0;
430}
431
cc994825 432/*
1da177e4
LT
433 * Switch context.
434 *
435 * \param inode device inode.
6c340eac 436 * \param file_priv DRM file private.
1da177e4
LT
437 * \param cmd command.
438 * \param arg user argument pointing to a drm_ctx structure.
439 * \return zero on success or a negative number on failure.
440 *
441 * Calls context_switch().
442 */
e7b96070
DH
443int drm_legacy_switchctx(struct drm_device *dev, void *data,
444 struct drm_file *file_priv)
1da177e4 445{
c153f45f 446 struct drm_ctx *ctx = data;
1da177e4 447
0e975980 448 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 449 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 450 return -EOPNOTSUPP;
0e975980 451
c153f45f
EA
452 DRM_DEBUG("%d\n", ctx->handle);
453 return drm_context_switch(dev, dev->last_context, ctx->handle);
1da177e4
LT
454}
455
cc994825 456/*
1da177e4
LT
457 * New context.
458 *
459 * \param inode device inode.
6c340eac 460 * \param file_priv DRM file private.
1da177e4
LT
461 * \param cmd command.
462 * \param arg user argument pointing to a drm_ctx structure.
463 * \return zero on success or a negative number on failure.
464 *
465 * Calls context_switch_complete().
466 */
e7b96070
DH
467int drm_legacy_newctx(struct drm_device *dev, void *data,
468 struct drm_file *file_priv)
1da177e4 469{
c153f45f 470 struct drm_ctx *ctx = data;
1da177e4 471
0e975980 472 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 473 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 474 return -EOPNOTSUPP;
0e975980 475
c153f45f 476 DRM_DEBUG("%d\n", ctx->handle);
7c1c2871 477 drm_context_switch_complete(dev, file_priv, ctx->handle);
1da177e4
LT
478
479 return 0;
480}
481
cc994825 482/*
1da177e4
LT
483 * Remove context.
484 *
485 * \param inode device inode.
6c340eac 486 * \param file_priv DRM file private.
1da177e4
LT
487 * \param cmd command.
488 * \param arg user argument pointing to a drm_ctx structure.
489 * \return zero on success or a negative number on failure.
490 *
491 * If not the special kernel context, calls ctxbitmap_free() to free the specified context.
492 */
e7b96070
DH
493int drm_legacy_rmctx(struct drm_device *dev, void *data,
494 struct drm_file *file_priv)
1da177e4 495{
c153f45f 496 struct drm_ctx *ctx = data;
1da177e4 497
0e975980 498 if (!drm_core_check_feature(dev, DRIVER_KMS_LEGACY_CONTEXT) &&
fa538645 499 !drm_core_check_feature(dev, DRIVER_LEGACY))
69fdf420 500 return -EOPNOTSUPP;
0e975980 501
c153f45f 502 DRM_DEBUG("%d\n", ctx->handle);
c153f45f 503 if (ctx->handle != DRM_KERNEL_CONTEXT) {
1da177e4 504 if (dev->driver->context_dtor)
c153f45f 505 dev->driver->context_dtor(dev, ctx->handle);
e7b96070 506 drm_legacy_ctxbitmap_free(dev, ctx->handle);
1da177e4
LT
507 }
508
30e2fb18 509 mutex_lock(&dev->ctxlist_mutex);
bd1b331f 510 if (!list_empty(&dev->ctxlist)) {
55910517 511 struct drm_ctx_list *pos, *n;
1da177e4 512
bd1b331f 513 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
c153f45f 514 if (pos->handle == ctx->handle) {
b5e89ed5 515 list_del(&pos->head);
9a298b2a 516 kfree(pos);
1da177e4
LT
517 }
518 }
519 }
30e2fb18 520 mutex_unlock(&dev->ctxlist_mutex);
1da177e4
LT
521
522 return 0;
523}
524
525/*@}*/