blob: 4037a3602f1ef16d4bb65a35bb0a50a22cd88683 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_context.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IOCTLs for generic contexts
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Fri Nov 24 18:31:37 2000 by gareth@valinux.com
11 *
12 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
36/*
37 * ChangeLog:
38 * 2001-11-16 Torsten Duwe <duwe@caldera.de>
39 * added context constructor/destructor hooks,
40 * needed by SiS driver's memory management.
41 */
42
43#include "drmP.h"
44
45/******************************************************************/
46/** \name Context bitmap support */
47/*@{*/
48
49/**
50 * Free a handle from the context bitmap.
51 *
52 * \param dev DRM device.
53 * \param ctx_handle context handle.
54 *
55 * Clears the bit specified by \p ctx_handle in drm_device::ctx_bitmap and the entry
Dave Airlie62968142007-07-17 10:46:52 +100056 * in drm_device::ctx_idr, while holding the drm_device::struct_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * lock.
58 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100059void drm_ctxbitmap_free(struct drm_device * dev, int ctx_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Dave Airlie62968142007-07-17 10:46:52 +100061 mutex_lock(&dev->struct_mutex);
62 idr_remove(&dev->ctx_idr, ctx_handle);
63 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Dave Airlieb5e89ed2005-09-25 14:28:13 +100066/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * Context bitmap allocation.
68 *
69 * \param dev DRM device.
70 * \return (non-negative) context handle on success or a negative number on failure.
71 *
Dave Airlie62968142007-07-17 10:46:52 +100072 * Allocate a new idr from drm_device::ctx_idr while holding the
Dave Airlie30e2fb12006-02-02 19:37:46 +110073 * drm_device::struct_mutex lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100075static int drm_ctxbitmap_next(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Dave Airlie62968142007-07-17 10:46:52 +100077 int new_id;
78 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Dave Airlie62968142007-07-17 10:46:52 +100080again:
81 if (idr_pre_get(&dev->ctx_idr, GFP_KERNEL) == 0) {
82 DRM_ERROR("Out of memory expanding drawable idr\n");
83 return -ENOMEM;
84 }
Dave Airlie30e2fb12006-02-02 19:37:46 +110085 mutex_lock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +100086 ret = idr_get_new_above(&dev->ctx_idr, NULL,
87 DRM_RESERVED_CONTEXTS, &new_id);
88 if (ret == -EAGAIN) {
Dave Airlie30e2fb12006-02-02 19:37:46 +110089 mutex_unlock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +100090 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
Dave Airlie30e2fb12006-02-02 19:37:46 +110092 mutex_unlock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +100093 return new_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/**
97 * Context bitmap initialization.
98 *
99 * \param dev DRM device.
100 *
Dave Airlie62968142007-07-17 10:46:52 +1000101 * Initialise the drm_device::ctx_idr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000103int drm_ctxbitmap_init(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Dave Airlie62968142007-07-17 10:46:52 +1000105 idr_init(&dev->ctx_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
107}
108
109/**
110 * Context bitmap cleanup.
111 *
112 * \param dev DRM device.
113 *
Dave Airlie62968142007-07-17 10:46:52 +1000114 * Free all idr members using drm_ctx_sarea_free helper function
115 * while holding the drm_device::struct_mutex lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000117void drm_ctxbitmap_cleanup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Dave Airlie30e2fb12006-02-02 19:37:46 +1100119 mutex_lock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +1000120 idr_remove_all(&dev->ctx_idr);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100121 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124/*@}*/
125
126/******************************************************************/
127/** \name Per Context SAREA Support */
128/*@{*/
129
130/**
131 * Get per-context SAREA.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000134 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * \param cmd command.
136 * \param arg user argument pointing to a drm_ctx_priv_map structure.
137 * \return zero on success or a negative number on failure.
138 *
Dave Airlie62968142007-07-17 10:46:52 +1000139 * Gets the map from drm_device::ctx_idr with the handle specified and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * returns its handle.
141 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000142int drm_getsareactx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000145 struct drm_device *dev = file_priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000146 struct drm_ctx_priv_map __user *argp = (void __user *)arg;
147 struct drm_ctx_priv_map request;
148 struct drm_map *map;
Dave Airlie55910512007-07-11 16:53:40 +1000149 struct drm_map_list *_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 if (copy_from_user(&request, argp, sizeof(request)))
152 return -EFAULT;
153
Dave Airlie30e2fb12006-02-02 19:37:46 +1100154 mutex_lock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +1000155
156 map = idr_find(&dev->ctx_idr, request.ctx_id);
157 if (!map) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100158 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return -EINVAL;
160 }
161
Dave Airlie30e2fb12006-02-02 19:37:46 +1100162 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Dave Airlieb3a83632005-09-30 18:37:36 +1000164 request.handle = NULL;
Dave Airliebd1b3312007-05-26 05:01:51 +1000165 list_for_each_entry(_entry, &dev->maplist, head) {
Dave Airlied1f2b552005-08-05 22:11:22 +1000166 if (_entry->map == map) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000167 request.handle =
168 (void *)(unsigned long)_entry->user_token;
Dave Airlied1f2b552005-08-05 22:11:22 +1000169 break;
170 }
171 }
Dave Airlieb3a83632005-09-30 18:37:36 +1000172 if (request.handle == NULL)
Dave Airlied1f2b552005-08-05 22:11:22 +1000173 return -EINVAL;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (copy_to_user(argp, &request, sizeof(request)))
176 return -EFAULT;
177 return 0;
178}
179
180/**
181 * Set per-context SAREA.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000182 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000184 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * \param cmd command.
186 * \param arg user argument pointing to a drm_ctx_priv_map structure.
187 * \return zero on success or a negative number on failure.
188 *
189 * Searches the mapping specified in \p arg and update the entry in
Dave Airlie62968142007-07-17 10:46:52 +1000190 * drm_device::ctx_idr with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000192int drm_setsareactx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000193 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000195 struct drm_device *dev = file_priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000196 struct drm_ctx_priv_map request;
197 struct drm_map *map = NULL;
Dave Airlie55910512007-07-11 16:53:40 +1000198 struct drm_map_list *r_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (copy_from_user(&request,
Dave Airliec60ce622007-07-11 15:27:12 +1000201 (struct drm_ctx_priv_map __user *) arg,
202 sizeof(request)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return -EFAULT;
204
Dave Airlie30e2fb12006-02-02 19:37:46 +1100205 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000206 list_for_each_entry(r_list, &dev->maplist, head) {
Dave Airlie9a186642005-06-23 21:29:18 +1000207 if (r_list->map
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000208 && r_list->user_token == (unsigned long)request.handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 goto found;
210 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000211 bad:
Dave Airlie30e2fb12006-02-02 19:37:46 +1100212 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EINVAL;
214
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000215 found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 if (!map)
218 goto bad;
Dave Airlie62968142007-07-17 10:46:52 +1000219
220 if (IS_ERR(idr_replace(&dev->ctx_idr, map, request.ctx_id)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 goto bad;
Dave Airlie62968142007-07-17 10:46:52 +1000222
Dave Airlie30e2fb12006-02-02 19:37:46 +1100223 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
227/*@}*/
228
229/******************************************************************/
230/** \name The actual DRM context handling routines */
231/*@{*/
232
233/**
234 * Switch context.
235 *
236 * \param dev DRM device.
237 * \param old old context handle.
238 * \param new new context handle.
239 * \return zero on success or a negative number on failure.
240 *
241 * Attempt to set drm_device::context_flag.
242 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000243static int drm_context_switch(struct drm_device * dev, int old, int new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000245 if (test_and_set_bit(0, &dev->context_flag)) {
246 DRM_ERROR("Reentering -- FIXME\n");
247 return -EBUSY;
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000250 DRM_DEBUG("Context switch from %d to %d\n", old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000252 if (new == dev->last_context) {
253 clear_bit(0, &dev->context_flag);
254 return 0;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/**
261 * Complete context switch.
262 *
263 * \param dev DRM device.
264 * \param new new context handle.
265 * \return zero on success or a negative number on failure.
266 *
267 * Updates drm_device::last_context and drm_device::last_switch. Verifies the
268 * hardware lock is held, clears the drm_device::context_flag and wakes up
269 * drm_device::context_wait.
270 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000271static int drm_context_switch_complete(struct drm_device * dev, int new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000273 dev->last_context = new; /* PRE/POST: This is the _only_ writer. */
274 dev->last_switch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 if (!_DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock)) {
277 DRM_ERROR("Lock isn't held after context switch\n");
278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000280 /* If a context switch is ever initiated
281 when the kernel holds the lock, release
282 that lock here. */
283 clear_bit(0, &dev->context_flag);
284 wake_up(&dev->context_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/**
290 * Reserve contexts.
291 *
292 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000293 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * \param cmd command.
295 * \param arg user argument pointing to a drm_ctx_res structure.
296 * \return zero on success or a negative number on failure.
297 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000298int drm_resctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000299 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Dave Airliec60ce622007-07-11 15:27:12 +1000301 struct drm_ctx_res res;
302 struct drm_ctx_res __user *argp = (void __user *)arg;
303 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 int i;
305
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000306 if (copy_from_user(&res, argp, sizeof(res)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return -EFAULT;
308
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000309 if (res.count >= DRM_RESERVED_CONTEXTS) {
310 memset(&ctx, 0, sizeof(ctx));
311 for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 ctx.handle = i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000313 if (copy_to_user(&res.contexts[i], &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EFAULT;
315 }
316 }
317 res.count = DRM_RESERVED_CONTEXTS;
318
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000319 if (copy_to_user(argp, &res, sizeof(res)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EFAULT;
321 return 0;
322}
323
324/**
325 * Add context.
326 *
327 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000328 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * \param cmd command.
330 * \param arg user argument pointing to a drm_ctx structure.
331 * \return zero on success or a negative number on failure.
332 *
333 * Get a new handle for the context and copy to userspace.
334 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000335int drm_addctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000336 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000338 struct drm_device *dev = file_priv->head->dev;
Dave Airlie55910512007-07-11 16:53:40 +1000339 struct drm_ctx_list *ctx_entry;
Dave Airliec60ce622007-07-11 15:27:12 +1000340 struct drm_ctx __user *argp = (void __user *)arg;
341 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000343 if (copy_from_user(&ctx, argp, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return -EFAULT;
345
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346 ctx.handle = drm_ctxbitmap_next(dev);
347 if (ctx.handle == DRM_KERNEL_CONTEXT) {
348 /* Skip kernel's context and get a new one. */
349 ctx.handle = drm_ctxbitmap_next(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000351 DRM_DEBUG("%d\n", ctx.handle);
352 if (ctx.handle == -1) {
353 DRM_DEBUG("Not enough free contexts.\n");
354 /* Should this return -EBUSY instead? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -ENOMEM;
356 }
357
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000358 if (ctx.handle != DRM_KERNEL_CONTEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (dev->driver->context_ctor)
Dave Airlie1e7d5192006-01-02 19:25:35 +1100360 if (!dev->driver->context_ctor(dev, ctx.handle)) {
Dave Airlieb5e9fc12006-01-02 19:23:44 +1100361 DRM_DEBUG("Running out of ctxs or memory.\n");
362 return -ENOMEM;
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000366 ctx_entry = drm_alloc(sizeof(*ctx_entry), DRM_MEM_CTXLIST);
367 if (!ctx_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 DRM_DEBUG("out of memory\n");
369 return -ENOMEM;
370 }
371
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000372 INIT_LIST_HEAD(&ctx_entry->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 ctx_entry->handle = ctx.handle;
Eric Anholt6c340ea2007-08-25 20:23:09 +1000374 ctx_entry->tag = file_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dave Airlie30e2fb12006-02-02 19:37:46 +1100376 mutex_lock(&dev->ctxlist_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000377 list_add(&ctx_entry->head, &dev->ctxlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 ++dev->ctx_count;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100379 mutex_unlock(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381 if (copy_to_user(argp, &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EFAULT;
383 return 0;
384}
385
Eric Anholt6c340ea2007-08-25 20:23:09 +1000386int drm_modctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000387 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 /* This does nothing */
390 return 0;
391}
392
393/**
394 * Get context.
395 *
396 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000397 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * \param cmd command.
399 * \param arg user argument pointing to a drm_ctx structure.
400 * \return zero on success or a negative number on failure.
401 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000402int drm_getctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000403 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Dave Airliec60ce622007-07-11 15:27:12 +1000405 struct drm_ctx __user *argp = (void __user *)arg;
406 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000408 if (copy_from_user(&ctx, argp, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -EFAULT;
410
411 /* This is 0, because we don't handle any context flags */
412 ctx.flags = 0;
413
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000414 if (copy_to_user(argp, &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return -EFAULT;
416 return 0;
417}
418
419/**
420 * Switch context.
421 *
422 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000423 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * \param cmd command.
425 * \param arg user argument pointing to a drm_ctx structure.
426 * \return zero on success or a negative number on failure.
427 *
428 * Calls context_switch().
429 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000430int drm_switchctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000431 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000433 struct drm_device *dev = file_priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000434 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Dave Airliec60ce622007-07-11 15:27:12 +1000436 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -EFAULT;
438
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000439 DRM_DEBUG("%d\n", ctx.handle);
440 return drm_context_switch(dev, dev->last_context, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443/**
444 * New context.
445 *
446 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000447 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * \param cmd command.
449 * \param arg user argument pointing to a drm_ctx structure.
450 * \return zero on success or a negative number on failure.
451 *
452 * Calls context_switch_complete().
453 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000454int drm_newctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000455 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000457 struct drm_device *dev = file_priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000458 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Dave Airliec60ce622007-07-11 15:27:12 +1000460 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return -EFAULT;
462
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000463 DRM_DEBUG("%d\n", ctx.handle);
464 drm_context_switch_complete(dev, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 return 0;
467}
468
469/**
470 * Remove context.
471 *
472 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000473 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * \param cmd command.
475 * \param arg user argument pointing to a drm_ctx structure.
476 * \return zero on success or a negative number on failure.
477 *
478 * If not the special kernel context, calls ctxbitmap_free() to free the specified context.
479 */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000480int drm_rmctx(struct inode *inode, struct drm_file *file_priv,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000481 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000483 struct drm_device *dev = file_priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000484 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Dave Airliec60ce622007-07-11 15:27:12 +1000486 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EFAULT;
488
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000489 DRM_DEBUG("%d\n", ctx.handle);
490 if (ctx.handle == DRM_KERNEL_CONTEXT + 1) {
Eric Anholt6c340ea2007-08-25 20:23:09 +1000491 file_priv->remove_auth_on_close = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000493 if (ctx.handle != DRM_KERNEL_CONTEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (dev->driver->context_dtor)
495 dev->driver->context_dtor(dev, ctx.handle);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000496 drm_ctxbitmap_free(dev, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Dave Airlie30e2fb12006-02-02 19:37:46 +1100499 mutex_lock(&dev->ctxlist_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000500 if (!list_empty(&dev->ctxlist)) {
Dave Airlie55910512007-07-11 16:53:40 +1000501 struct drm_ctx_list *pos, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dave Airliebd1b3312007-05-26 05:01:51 +1000503 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000504 if (pos->handle == ctx.handle) {
505 list_del(&pos->head);
506 drm_free(pos, sizeof(*pos), DRM_MEM_CTXLIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 --dev->ctx_count;
508 }
509 }
510 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100511 mutex_unlock(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 return 0;
514}
515
516/*@}*/