blob: 61ad986baa8d7a7cadf3e99d25f9070db02b63ec [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.
134 * \param filp file pointer.
135 * \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 */
142int drm_getsareactx(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000145 struct drm_file *priv = filp->private_data;
146 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000147 struct drm_ctx_priv_map __user *argp = (void __user *)arg;
148 struct drm_ctx_priv_map request;
149 struct drm_map *map;
Dave Airlie55910512007-07-11 16:53:40 +1000150 struct drm_map_list *_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 if (copy_from_user(&request, argp, sizeof(request)))
153 return -EFAULT;
154
Dave Airlie30e2fb12006-02-02 19:37:46 +1100155 mutex_lock(&dev->struct_mutex);
Dave Airlie62968142007-07-17 10:46:52 +1000156
157 map = idr_find(&dev->ctx_idr, request.ctx_id);
158 if (!map) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100159 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EINVAL;
161 }
162
Dave Airlie30e2fb12006-02-02 19:37:46 +1100163 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Dave Airlieb3a83632005-09-30 18:37:36 +1000165 request.handle = NULL;
Dave Airliebd1b3312007-05-26 05:01:51 +1000166 list_for_each_entry(_entry, &dev->maplist, head) {
Dave Airlied1f2b552005-08-05 22:11:22 +1000167 if (_entry->map == map) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000168 request.handle =
169 (void *)(unsigned long)_entry->user_token;
Dave Airlied1f2b552005-08-05 22:11:22 +1000170 break;
171 }
172 }
Dave Airlieb3a83632005-09-30 18:37:36 +1000173 if (request.handle == NULL)
Dave Airlied1f2b552005-08-05 22:11:22 +1000174 return -EINVAL;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (copy_to_user(argp, &request, sizeof(request)))
177 return -EFAULT;
178 return 0;
179}
180
181/**
182 * Set per-context SAREA.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000183 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * \param inode device inode.
185 * \param filp file pointer.
186 * \param cmd command.
187 * \param arg user argument pointing to a drm_ctx_priv_map structure.
188 * \return zero on success or a negative number on failure.
189 *
190 * Searches the mapping specified in \p arg and update the entry in
Dave Airlie62968142007-07-17 10:46:52 +1000191 * drm_device::ctx_idr with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 */
193int drm_setsareactx(struct inode *inode, struct file *filp,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000194 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000196 struct drm_file *priv = filp->private_data;
197 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000198 struct drm_ctx_priv_map request;
199 struct drm_map *map = NULL;
Dave Airlie55910512007-07-11 16:53:40 +1000200 struct drm_map_list *r_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 if (copy_from_user(&request,
Dave Airliec60ce622007-07-11 15:27:12 +1000203 (struct drm_ctx_priv_map __user *) arg,
204 sizeof(request)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return -EFAULT;
206
Dave Airlie30e2fb12006-02-02 19:37:46 +1100207 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000208 list_for_each_entry(r_list, &dev->maplist, head) {
Dave Airlie9a186642005-06-23 21:29:18 +1000209 if (r_list->map
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000210 && r_list->user_token == (unsigned long)request.handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto found;
212 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000213 bad:
Dave Airlie30e2fb12006-02-02 19:37:46 +1100214 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return -EINVAL;
216
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 map = r_list->map;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000219 if (!map)
220 goto bad;
Dave Airlie62968142007-07-17 10:46:52 +1000221
222 if (IS_ERR(idr_replace(&dev->ctx_idr, map, request.ctx_id)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 goto bad;
Dave Airlie62968142007-07-17 10:46:52 +1000224
Dave Airlie30e2fb12006-02-02 19:37:46 +1100225 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return 0;
227}
228
229/*@}*/
230
231/******************************************************************/
232/** \name The actual DRM context handling routines */
233/*@{*/
234
235/**
236 * Switch context.
237 *
238 * \param dev DRM device.
239 * \param old old context handle.
240 * \param new new context handle.
241 * \return zero on success or a negative number on failure.
242 *
243 * Attempt to set drm_device::context_flag.
244 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000245static int drm_context_switch(struct drm_device * dev, int old, int new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000247 if (test_and_set_bit(0, &dev->context_flag)) {
248 DRM_ERROR("Reentering -- FIXME\n");
249 return -EBUSY;
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000252 DRM_DEBUG("Context switch from %d to %d\n", old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000254 if (new == dev->last_context) {
255 clear_bit(0, &dev->context_flag);
256 return 0;
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/**
263 * Complete context switch.
264 *
265 * \param dev DRM device.
266 * \param new new context handle.
267 * \return zero on success or a negative number on failure.
268 *
269 * Updates drm_device::last_context and drm_device::last_switch. Verifies the
270 * hardware lock is held, clears the drm_device::context_flag and wakes up
271 * drm_device::context_wait.
272 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000273static int drm_context_switch_complete(struct drm_device * dev, int new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000275 dev->last_context = new; /* PRE/POST: This is the _only_ writer. */
276 dev->last_switch = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000278 if (!_DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock)) {
279 DRM_ERROR("Lock isn't held after context switch\n");
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 /* If a context switch is ever initiated
283 when the kernel holds the lock, release
284 that lock here. */
285 clear_bit(0, &dev->context_flag);
286 wake_up(&dev->context_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291/**
292 * Reserve contexts.
293 *
294 * \param inode device inode.
295 * \param filp file pointer.
296 * \param cmd command.
297 * \param arg user argument pointing to a drm_ctx_res structure.
298 * \return zero on success or a negative number on failure.
299 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000300int drm_resctx(struct inode *inode, struct file *filp,
301 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Dave Airliec60ce622007-07-11 15:27:12 +1000303 struct drm_ctx_res res;
304 struct drm_ctx_res __user *argp = (void __user *)arg;
305 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int i;
307
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000308 if (copy_from_user(&res, argp, sizeof(res)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return -EFAULT;
310
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000311 if (res.count >= DRM_RESERVED_CONTEXTS) {
312 memset(&ctx, 0, sizeof(ctx));
313 for (i = 0; i < DRM_RESERVED_CONTEXTS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 ctx.handle = i;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000315 if (copy_to_user(&res.contexts[i], &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -EFAULT;
317 }
318 }
319 res.count = DRM_RESERVED_CONTEXTS;
320
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321 if (copy_to_user(argp, &res, sizeof(res)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return -EFAULT;
323 return 0;
324}
325
326/**
327 * Add context.
328 *
329 * \param inode device inode.
330 * \param filp file pointer.
331 * \param cmd command.
332 * \param arg user argument pointing to a drm_ctx structure.
333 * \return zero on success or a negative number on failure.
334 *
335 * Get a new handle for the context and copy to userspace.
336 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337int drm_addctx(struct inode *inode, struct file *filp,
338 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000340 struct drm_file *priv = filp->private_data;
341 struct drm_device *dev = priv->head->dev;
Dave Airlie55910512007-07-11 16:53:40 +1000342 struct drm_ctx_list *ctx_entry;
Dave Airliec60ce622007-07-11 15:27:12 +1000343 struct drm_ctx __user *argp = (void __user *)arg;
344 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000346 if (copy_from_user(&ctx, argp, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return -EFAULT;
348
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000349 ctx.handle = drm_ctxbitmap_next(dev);
350 if (ctx.handle == DRM_KERNEL_CONTEXT) {
351 /* Skip kernel's context and get a new one. */
352 ctx.handle = drm_ctxbitmap_next(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000354 DRM_DEBUG("%d\n", ctx.handle);
355 if (ctx.handle == -1) {
356 DRM_DEBUG("Not enough free contexts.\n");
357 /* Should this return -EBUSY instead? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return -ENOMEM;
359 }
360
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000361 if (ctx.handle != DRM_KERNEL_CONTEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (dev->driver->context_ctor)
Dave Airlie1e7d5192006-01-02 19:25:35 +1100363 if (!dev->driver->context_ctor(dev, ctx.handle)) {
Dave Airlieb5e9fc12006-01-02 19:23:44 +1100364 DRM_DEBUG("Running out of ctxs or memory.\n");
365 return -ENOMEM;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000369 ctx_entry = drm_alloc(sizeof(*ctx_entry), DRM_MEM_CTXLIST);
370 if (!ctx_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 DRM_DEBUG("out of memory\n");
372 return -ENOMEM;
373 }
374
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000375 INIT_LIST_HEAD(&ctx_entry->head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 ctx_entry->handle = ctx.handle;
377 ctx_entry->tag = priv;
378
Dave Airlie30e2fb12006-02-02 19:37:46 +1100379 mutex_lock(&dev->ctxlist_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000380 list_add(&ctx_entry->head, &dev->ctxlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 ++dev->ctx_count;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100382 mutex_unlock(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000384 if (copy_to_user(argp, &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return -EFAULT;
386 return 0;
387}
388
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000389int drm_modctx(struct inode *inode, struct file *filp,
390 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 /* This does nothing */
393 return 0;
394}
395
396/**
397 * Get context.
398 *
399 * \param inode device inode.
400 * \param filp file pointer.
401 * \param cmd command.
402 * \param arg user argument pointing to a drm_ctx structure.
403 * \return zero on success or a negative number on failure.
404 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000405int drm_getctx(struct inode *inode, struct file *filp,
406 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Dave Airliec60ce622007-07-11 15:27:12 +1000408 struct drm_ctx __user *argp = (void __user *)arg;
409 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411 if (copy_from_user(&ctx, argp, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return -EFAULT;
413
414 /* This is 0, because we don't handle any context flags */
415 ctx.flags = 0;
416
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000417 if (copy_to_user(argp, &ctx, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return -EFAULT;
419 return 0;
420}
421
422/**
423 * Switch context.
424 *
425 * \param inode device inode.
426 * \param filp file pointer.
427 * \param cmd command.
428 * \param arg user argument pointing to a drm_ctx structure.
429 * \return zero on success or a negative number on failure.
430 *
431 * Calls context_switch().
432 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000433int drm_switchctx(struct inode *inode, struct file *filp,
434 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000436 struct drm_file *priv = filp->private_data;
437 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000438 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Dave Airliec60ce622007-07-11 15:27:12 +1000440 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -EFAULT;
442
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000443 DRM_DEBUG("%d\n", ctx.handle);
444 return drm_context_switch(dev, dev->last_context, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/**
448 * New context.
449 *
450 * \param inode device inode.
451 * \param filp file pointer.
452 * \param cmd command.
453 * \param arg user argument pointing to a drm_ctx structure.
454 * \return zero on success or a negative number on failure.
455 *
456 * Calls context_switch_complete().
457 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000458int drm_newctx(struct inode *inode, struct file *filp,
459 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000461 struct drm_file *priv = filp->private_data;
462 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000463 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Dave Airliec60ce622007-07-11 15:27:12 +1000465 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return -EFAULT;
467
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000468 DRM_DEBUG("%d\n", ctx.handle);
469 drm_context_switch_complete(dev, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 return 0;
472}
473
474/**
475 * Remove context.
476 *
477 * \param inode device inode.
478 * \param filp file pointer.
479 * \param cmd command.
480 * \param arg user argument pointing to a drm_ctx structure.
481 * \return zero on success or a negative number on failure.
482 *
483 * If not the special kernel context, calls ctxbitmap_free() to free the specified context.
484 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000485int drm_rmctx(struct inode *inode, struct file *filp,
486 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000488 struct drm_file *priv = filp->private_data;
489 struct drm_device *dev = priv->head->dev;
Dave Airliec60ce622007-07-11 15:27:12 +1000490 struct drm_ctx ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Dave Airliec60ce622007-07-11 15:27:12 +1000492 if (copy_from_user(&ctx, (struct drm_ctx __user *) arg, sizeof(ctx)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -EFAULT;
494
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000495 DRM_DEBUG("%d\n", ctx.handle);
496 if (ctx.handle == DRM_KERNEL_CONTEXT + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 priv->remove_auth_on_close = 1;
498 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000499 if (ctx.handle != DRM_KERNEL_CONTEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (dev->driver->context_dtor)
501 dev->driver->context_dtor(dev, ctx.handle);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000502 drm_ctxbitmap_free(dev, ctx.handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Dave Airlie30e2fb12006-02-02 19:37:46 +1100505 mutex_lock(&dev->ctxlist_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000506 if (!list_empty(&dev->ctxlist)) {
Dave Airlie55910512007-07-11 16:53:40 +1000507 struct drm_ctx_list *pos, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Dave Airliebd1b3312007-05-26 05:01:51 +1000509 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000510 if (pos->handle == ctx.handle) {
511 list_del(&pos->head);
512 drm_free(pos, sizeof(*pos), DRM_MEM_CTXLIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 --dev->ctx_count;
514 }
515 }
516 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100517 mutex_unlock(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 return 0;
520}
521
522/*@}*/