Linux 4.2.1
[linux/fpc-iii.git] / drivers / gpu / drm / drm_context.c
blob9b23525c0ed043f0220760010c2584e86ed163f6
1 /*
2 * Legacy: Generic DRM Contexts
4 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * All Rights Reserved.
8 * Author: Rickard E. (Rik) Faith <faith@valinux.com>
9 * Author: Gareth Hughes <gareth@valinux.com>
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:
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.
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.
31 #include <drm/drmP.h>
32 #include "drm_legacy.h"
34 struct drm_ctx_list {
35 struct list_head head;
36 drm_context_t handle;
37 struct drm_file *tag;
40 /******************************************************************/
41 /** \name Context bitmap support */
42 /*@{*/
44 /**
45 * Free a handle from the context bitmap.
47 * \param dev DRM device.
48 * \param ctx_handle context handle.
50 * Clears the bit specified by \p ctx_handle in drm_device::ctx_bitmap and the entry
51 * in drm_device::ctx_idr, while holding the drm_device::struct_mutex
52 * lock.
54 void drm_legacy_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
56 mutex_lock(&dev->struct_mutex);
57 idr_remove(&dev->ctx_idr, ctx_handle);
58 mutex_unlock(&dev->struct_mutex);
61 /**
62 * Context bitmap allocation.
64 * \param dev DRM device.
65 * \return (non-negative) context handle on success or a negative number on failure.
67 * Allocate a new idr from drm_device::ctx_idr while holding the
68 * drm_device::struct_mutex lock.
70 static int drm_legacy_ctxbitmap_next(struct drm_device * dev)
72 int ret;
74 mutex_lock(&dev->struct_mutex);
75 ret = idr_alloc(&dev->ctx_idr, NULL, DRM_RESERVED_CONTEXTS, 0,
76 GFP_KERNEL);
77 mutex_unlock(&dev->struct_mutex);
78 return ret;
81 /**
82 * Context bitmap initialization.
84 * \param dev DRM device.
86 * Initialise the drm_device::ctx_idr
88 int drm_legacy_ctxbitmap_init(struct drm_device * dev)
90 idr_init(&dev->ctx_idr);
91 return 0;
94 /**
95 * Context bitmap cleanup.
97 * \param dev DRM device.
99 * Free all idr members using drm_ctx_sarea_free helper function
100 * while holding the drm_device::struct_mutex lock.
102 void drm_legacy_ctxbitmap_cleanup(struct drm_device * dev)
104 mutex_lock(&dev->struct_mutex);
105 idr_destroy(&dev->ctx_idr);
106 mutex_unlock(&dev->struct_mutex);
110 * drm_ctxbitmap_flush() - Flush all contexts owned by a file
111 * @dev: DRM device to operate on
112 * @file: Open file to flush contexts for
114 * This iterates over all contexts on @dev and drops them if they're owned by
115 * @file. Note that after this call returns, new contexts might be added if
116 * the file is still alive.
118 void drm_legacy_ctxbitmap_flush(struct drm_device *dev, struct drm_file *file)
120 struct drm_ctx_list *pos, *tmp;
122 mutex_lock(&dev->ctxlist_mutex);
124 list_for_each_entry_safe(pos, tmp, &dev->ctxlist, head) {
125 if (pos->tag == file &&
126 pos->handle != DRM_KERNEL_CONTEXT) {
127 if (dev->driver->context_dtor)
128 dev->driver->context_dtor(dev, pos->handle);
130 drm_legacy_ctxbitmap_free(dev, pos->handle);
131 list_del(&pos->head);
132 kfree(pos);
136 mutex_unlock(&dev->ctxlist_mutex);
139 /*@}*/
141 /******************************************************************/
142 /** \name Per Context SAREA Support */
143 /*@{*/
146 * Get per-context SAREA.
148 * \param inode device inode.
149 * \param file_priv DRM file private.
150 * \param cmd command.
151 * \param arg user argument pointing to a drm_ctx_priv_map structure.
152 * \return zero on success or a negative number on failure.
154 * Gets the map from drm_device::ctx_idr with the handle specified and
155 * returns its handle.
157 int drm_legacy_getsareactx(struct drm_device *dev, void *data,
158 struct drm_file *file_priv)
160 struct drm_ctx_priv_map *request = data;
161 struct drm_local_map *map;
162 struct drm_map_list *_entry;
164 mutex_lock(&dev->struct_mutex);
166 map = idr_find(&dev->ctx_idr, request->ctx_id);
167 if (!map) {
168 mutex_unlock(&dev->struct_mutex);
169 return -EINVAL;
172 request->handle = NULL;
173 list_for_each_entry(_entry, &dev->maplist, head) {
174 if (_entry->map == map) {
175 request->handle =
176 (void *)(unsigned long)_entry->user_token;
177 break;
181 mutex_unlock(&dev->struct_mutex);
183 if (request->handle == NULL)
184 return -EINVAL;
186 return 0;
190 * Set per-context SAREA.
192 * \param inode device inode.
193 * \param file_priv DRM file private.
194 * \param cmd command.
195 * \param arg user argument pointing to a drm_ctx_priv_map structure.
196 * \return zero on success or a negative number on failure.
198 * Searches the mapping specified in \p arg and update the entry in
199 * drm_device::ctx_idr with it.
201 int drm_legacy_setsareactx(struct drm_device *dev, void *data,
202 struct drm_file *file_priv)
204 struct drm_ctx_priv_map *request = data;
205 struct drm_local_map *map = NULL;
206 struct drm_map_list *r_list = NULL;
208 mutex_lock(&dev->struct_mutex);
209 list_for_each_entry(r_list, &dev->maplist, head) {
210 if (r_list->map
211 && r_list->user_token == (unsigned long) request->handle)
212 goto found;
214 bad:
215 mutex_unlock(&dev->struct_mutex);
216 return -EINVAL;
218 found:
219 map = r_list->map;
220 if (!map)
221 goto bad;
223 if (IS_ERR(idr_replace(&dev->ctx_idr, map, request->ctx_id)))
224 goto bad;
226 mutex_unlock(&dev->struct_mutex);
228 return 0;
231 /*@}*/
233 /******************************************************************/
234 /** \name The actual DRM context handling routines */
235 /*@{*/
238 * Switch context.
240 * \param dev DRM device.
241 * \param old old context handle.
242 * \param new new context handle.
243 * \return zero on success or a negative number on failure.
245 * Attempt to set drm_device::context_flag.
247 static int drm_context_switch(struct drm_device * dev, int old, int new)
249 if (test_and_set_bit(0, &dev->context_flag)) {
250 DRM_ERROR("Reentering -- FIXME\n");
251 return -EBUSY;
254 DRM_DEBUG("Context switch from %d to %d\n", old, new);
256 if (new == dev->last_context) {
257 clear_bit(0, &dev->context_flag);
258 return 0;
261 return 0;
265 * Complete context switch.
267 * \param dev DRM device.
268 * \param new new context handle.
269 * \return zero on success or a negative number on failure.
271 * Updates drm_device::last_context and drm_device::last_switch. Verifies the
272 * hardware lock is held, clears the drm_device::context_flag and wakes up
273 * drm_device::context_wait.
275 static int drm_context_switch_complete(struct drm_device *dev,
276 struct drm_file *file_priv, int new)
278 dev->last_context = new; /* PRE/POST: This is the _only_ writer. */
280 if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock)) {
281 DRM_ERROR("Lock isn't held after context switch\n");
284 /* If a context switch is ever initiated
285 when the kernel holds the lock, release
286 that lock here. */
287 clear_bit(0, &dev->context_flag);
289 return 0;
293 * Reserve contexts.
295 * \param inode device inode.
296 * \param file_priv DRM file private.
297 * \param cmd command.
298 * \param arg user argument pointing to a drm_ctx_res structure.
299 * \return zero on success or a negative number on failure.
301 int drm_legacy_resctx(struct drm_device *dev, void *data,
302 struct drm_file *file_priv)
304 struct drm_ctx_res *res = data;
305 struct drm_ctx ctx;
306 int i;
308 if (res->count >= DRM_RESERVED_CONTEXTS) {
309 memset(&ctx, 0, sizeof(ctx));
310 for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
311 ctx.handle = i;
312 if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx)))
313 return -EFAULT;
316 res->count = DRM_RESERVED_CONTEXTS;
318 return 0;
322 * Add context.
324 * \param inode device inode.
325 * \param file_priv DRM file private.
326 * \param cmd command.
327 * \param arg user argument pointing to a drm_ctx structure.
328 * \return zero on success or a negative number on failure.
330 * Get a new handle for the context and copy to userspace.
332 int drm_legacy_addctx(struct drm_device *dev, void *data,
333 struct drm_file *file_priv)
335 struct drm_ctx_list *ctx_entry;
336 struct drm_ctx *ctx = data;
338 ctx->handle = drm_legacy_ctxbitmap_next(dev);
339 if (ctx->handle == DRM_KERNEL_CONTEXT) {
340 /* Skip kernel's context and get a new one. */
341 ctx->handle = drm_legacy_ctxbitmap_next(dev);
343 DRM_DEBUG("%d\n", ctx->handle);
344 if (ctx->handle == -1) {
345 DRM_DEBUG("Not enough free contexts.\n");
346 /* Should this return -EBUSY instead? */
347 return -ENOMEM;
350 ctx_entry = kmalloc(sizeof(*ctx_entry), GFP_KERNEL);
351 if (!ctx_entry) {
352 DRM_DEBUG("out of memory\n");
353 return -ENOMEM;
356 INIT_LIST_HEAD(&ctx_entry->head);
357 ctx_entry->handle = ctx->handle;
358 ctx_entry->tag = file_priv;
360 mutex_lock(&dev->ctxlist_mutex);
361 list_add(&ctx_entry->head, &dev->ctxlist);
362 mutex_unlock(&dev->ctxlist_mutex);
364 return 0;
368 * Get context.
370 * \param inode device inode.
371 * \param file_priv DRM file private.
372 * \param cmd command.
373 * \param arg user argument pointing to a drm_ctx structure.
374 * \return zero on success or a negative number on failure.
376 int drm_legacy_getctx(struct drm_device *dev, void *data,
377 struct drm_file *file_priv)
379 struct drm_ctx *ctx = data;
381 /* This is 0, because we don't handle any context flags */
382 ctx->flags = 0;
384 return 0;
388 * Switch context.
390 * \param inode device inode.
391 * \param file_priv DRM file private.
392 * \param cmd command.
393 * \param arg user argument pointing to a drm_ctx structure.
394 * \return zero on success or a negative number on failure.
396 * Calls context_switch().
398 int drm_legacy_switchctx(struct drm_device *dev, void *data,
399 struct drm_file *file_priv)
401 struct drm_ctx *ctx = data;
403 DRM_DEBUG("%d\n", ctx->handle);
404 return drm_context_switch(dev, dev->last_context, ctx->handle);
408 * New context.
410 * \param inode device inode.
411 * \param file_priv DRM file private.
412 * \param cmd command.
413 * \param arg user argument pointing to a drm_ctx structure.
414 * \return zero on success or a negative number on failure.
416 * Calls context_switch_complete().
418 int drm_legacy_newctx(struct drm_device *dev, void *data,
419 struct drm_file *file_priv)
421 struct drm_ctx *ctx = data;
423 DRM_DEBUG("%d\n", ctx->handle);
424 drm_context_switch_complete(dev, file_priv, ctx->handle);
426 return 0;
430 * Remove context.
432 * \param inode device inode.
433 * \param file_priv DRM file private.
434 * \param cmd command.
435 * \param arg user argument pointing to a drm_ctx structure.
436 * \return zero on success or a negative number on failure.
438 * If not the special kernel context, calls ctxbitmap_free() to free the specified context.
440 int drm_legacy_rmctx(struct drm_device *dev, void *data,
441 struct drm_file *file_priv)
443 struct drm_ctx *ctx = data;
445 DRM_DEBUG("%d\n", ctx->handle);
446 if (ctx->handle != DRM_KERNEL_CONTEXT) {
447 if (dev->driver->context_dtor)
448 dev->driver->context_dtor(dev, ctx->handle);
449 drm_legacy_ctxbitmap_free(dev, ctx->handle);
452 mutex_lock(&dev->ctxlist_mutex);
453 if (!list_empty(&dev->ctxlist)) {
454 struct drm_ctx_list *pos, *n;
456 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
457 if (pos->handle == ctx->handle) {
458 list_del(&pos->head);
459 kfree(pos);
463 mutex_unlock(&dev->ctxlist_mutex);
465 return 0;
468 /*@}*/