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