Home | History | Annotate | Line # | Download | only in drm
drm_gem.c revision 1.3
      1  1.1  riastrad /*
      2  1.1  riastrad  * Copyright  2008 Intel Corporation
      3  1.1  riastrad  *
      4  1.1  riastrad  * Permission is hereby granted, free of charge, to any person obtaining a
      5  1.1  riastrad  * copy of this software and associated documentation files (the "Software"),
      6  1.1  riastrad  * to deal in the Software without restriction, including without limitation
      7  1.1  riastrad  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
      8  1.1  riastrad  * and/or sell copies of the Software, and to permit persons to whom the
      9  1.1  riastrad  * Software is furnished to do so, subject to the following conditions:
     10  1.1  riastrad  *
     11  1.1  riastrad  * The above copyright notice and this permission notice (including the next
     12  1.1  riastrad  * paragraph) shall be included in all copies or substantial portions of the
     13  1.1  riastrad  * Software.
     14  1.1  riastrad  *
     15  1.1  riastrad  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     16  1.1  riastrad  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     17  1.1  riastrad  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     18  1.1  riastrad  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     19  1.1  riastrad  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     20  1.1  riastrad  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
     21  1.1  riastrad  * IN THE SOFTWARE.
     22  1.1  riastrad  *
     23  1.1  riastrad  * Authors:
     24  1.1  riastrad  *    Eric Anholt <eric (at) anholt.net>
     25  1.1  riastrad  *
     26  1.1  riastrad  */
     27  1.1  riastrad 
     28  1.1  riastrad #include <linux/types.h>
     29  1.1  riastrad #include <linux/slab.h>
     30  1.1  riastrad #include <linux/mm.h>
     31  1.1  riastrad #include <linux/uaccess.h>
     32  1.1  riastrad #include <linux/fs.h>
     33  1.1  riastrad #include <linux/file.h>
     34  1.1  riastrad #include <linux/module.h>
     35  1.1  riastrad #include <linux/mman.h>
     36  1.1  riastrad #include <linux/pagemap.h>
     37  1.1  riastrad #include <linux/shmem_fs.h>
     38  1.1  riastrad #include <linux/dma-buf.h>
     39  1.2  riastrad #include <linux/err.h>
     40  1.2  riastrad #include <linux/export.h>
     41  1.2  riastrad #include <asm/bug.h>
     42  1.1  riastrad #include <drm/drmP.h>
     43  1.3  riastrad #include <drm/drm_vma_manager.h>
     44  1.1  riastrad 
     45  1.1  riastrad /** @file drm_gem.c
     46  1.1  riastrad  *
     47  1.1  riastrad  * This file provides some of the base ioctls and library routines for
     48  1.1  riastrad  * the graphics memory manager implemented by each device driver.
     49  1.1  riastrad  *
     50  1.1  riastrad  * Because various devices have different requirements in terms of
     51  1.1  riastrad  * synchronization and migration strategies, implementing that is left up to
     52  1.1  riastrad  * the driver, and all that the general API provides should be generic --
     53  1.1  riastrad  * allocating objects, reading/writing data with the cpu, freeing objects.
     54  1.1  riastrad  * Even there, platform-dependent optimizations for reading/writing data with
     55  1.1  riastrad  * the CPU mean we'll likely hook those out to driver-specific calls.  However,
     56  1.1  riastrad  * the DRI2 implementation wants to have at least allocate/mmap be generic.
     57  1.1  riastrad  *
     58  1.1  riastrad  * The goal was to have swap-backed object allocation managed through
     59  1.1  riastrad  * struct file.  However, file descriptors as handles to a struct file have
     60  1.1  riastrad  * two major failings:
     61  1.1  riastrad  * - Process limits prevent more than 1024 or so being used at a time by
     62  1.1  riastrad  *   default.
     63  1.1  riastrad  * - Inability to allocate high fds will aggravate the X Server's select()
     64  1.1  riastrad  *   handling, and likely that of many GL client applications as well.
     65  1.1  riastrad  *
     66  1.1  riastrad  * This led to a plan of using our own integer IDs (called handles, following
     67  1.1  riastrad  * DRM terminology) to mimic fds, and implement the fd syscalls we need as
     68  1.1  riastrad  * ioctls.  The objects themselves will still include the struct file so
     69  1.1  riastrad  * that we can transition to fds if the required kernel infrastructure shows
     70  1.1  riastrad  * up at a later date, and as our interface with shmfs for memory allocation.
     71  1.1  riastrad  */
     72  1.1  riastrad 
     73  1.1  riastrad /*
     74  1.1  riastrad  * We make up offsets for buffer objects so we can recognize them at
     75  1.1  riastrad  * mmap time.
     76  1.1  riastrad  */
     77  1.1  riastrad 
     78  1.1  riastrad /* pgoff in mmap is an unsigned long, so we need to make sure that
     79  1.1  riastrad  * the faked up offset will fit
     80  1.1  riastrad  */
     81  1.1  riastrad 
     82  1.1  riastrad #if BITS_PER_LONG == 64
     83  1.1  riastrad #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1)
     84  1.1  riastrad #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16)
     85  1.1  riastrad #else
     86  1.1  riastrad #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1)
     87  1.1  riastrad #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16)
     88  1.1  riastrad #endif
     89  1.1  riastrad 
     90  1.1  riastrad /**
     91  1.3  riastrad  * drm_gem_init - Initialize the GEM device fields
     92  1.3  riastrad  * @dev: drm_devic structure to initialize
     93  1.1  riastrad  */
     94  1.1  riastrad int
     95  1.1  riastrad drm_gem_init(struct drm_device *dev)
     96  1.1  riastrad {
     97  1.3  riastrad 	struct drm_vma_offset_manager *vma_offset_manager;
     98  1.1  riastrad 
     99  1.3  riastrad 	mutex_init(&dev->object_name_lock);
    100  1.1  riastrad 	idr_init(&dev->object_name_idr);
    101  1.1  riastrad 
    102  1.3  riastrad 	vma_offset_manager = kzalloc(sizeof(*vma_offset_manager), GFP_KERNEL);
    103  1.3  riastrad 	if (!vma_offset_manager) {
    104  1.1  riastrad 		DRM_ERROR("out of memory\n");
    105  1.1  riastrad 		return -ENOMEM;
    106  1.1  riastrad 	}
    107  1.1  riastrad 
    108  1.3  riastrad 	dev->vma_offset_manager = vma_offset_manager;
    109  1.3  riastrad 	drm_vma_offset_manager_init(vma_offset_manager,
    110  1.3  riastrad 				    DRM_FILE_PAGE_OFFSET_START,
    111  1.3  riastrad 				    DRM_FILE_PAGE_OFFSET_SIZE);
    112  1.1  riastrad 
    113  1.1  riastrad 	return 0;
    114  1.1  riastrad }
    115  1.1  riastrad 
    116  1.1  riastrad void
    117  1.1  riastrad drm_gem_destroy(struct drm_device *dev)
    118  1.1  riastrad {
    119  1.1  riastrad 
    120  1.3  riastrad 	drm_vma_offset_manager_destroy(dev->vma_offset_manager);
    121  1.3  riastrad 	kfree(dev->vma_offset_manager);
    122  1.3  riastrad 	dev->vma_offset_manager = NULL;
    123  1.2  riastrad 
    124  1.2  riastrad 	idr_destroy(&dev->object_name_idr);
    125  1.2  riastrad #ifdef __NetBSD__
    126  1.2  riastrad 	spin_lock_destroy(&dev->object_name_lock);
    127  1.2  riastrad #endif
    128  1.1  riastrad }
    129  1.1  riastrad 
    130  1.1  riastrad /**
    131  1.3  riastrad  * drm_gem_object_init - initialize an allocated shmem-backed GEM object
    132  1.3  riastrad  * @dev: drm_device the object should be initialized for
    133  1.3  riastrad  * @obj: drm_gem_object to initialize
    134  1.3  riastrad  * @size: object size
    135  1.3  riastrad  *
    136  1.1  riastrad  * Initialize an already allocated GEM object of the specified size with
    137  1.1  riastrad  * shmfs backing store.
    138  1.1  riastrad  */
    139  1.1  riastrad int drm_gem_object_init(struct drm_device *dev,
    140  1.1  riastrad 			struct drm_gem_object *obj, size_t size)
    141  1.1  riastrad {
    142  1.3  riastrad 	struct file *filp;
    143  1.3  riastrad 
    144  1.3  riastrad 	drm_gem_private_object_init(dev, obj, size);
    145  1.1  riastrad 
    146  1.2  riastrad #ifdef __NetBSD__
    147  1.2  riastrad 	obj->gemo_shm_uao = uao_create(size, 0);
    148  1.2  riastrad #else
    149  1.3  riastrad 	filp = shmem_file_setup("drm mm object", size, VM_NORESERVE);
    150  1.3  riastrad 	if (IS_ERR(filp))
    151  1.3  riastrad 		return PTR_ERR(filp);
    152  1.3  riastrad 
    153  1.3  riastrad 	obj->filp = filp;
    154  1.2  riastrad #endif
    155  1.1  riastrad 
    156  1.1  riastrad 	return 0;
    157  1.1  riastrad }
    158  1.1  riastrad EXPORT_SYMBOL(drm_gem_object_init);
    159  1.1  riastrad 
    160  1.1  riastrad /**
    161  1.3  riastrad  * drm_gem_object_init - initialize an allocated private GEM object
    162  1.3  riastrad  * @dev: drm_device the object should be initialized for
    163  1.3  riastrad  * @obj: drm_gem_object to initialize
    164  1.3  riastrad  * @size: object size
    165  1.3  riastrad  *
    166  1.1  riastrad  * Initialize an already allocated GEM object of the specified size with
    167  1.1  riastrad  * no GEM provided backing store. Instead the caller is responsible for
    168  1.1  riastrad  * backing the object and handling it.
    169  1.1  riastrad  */
    170  1.3  riastrad void drm_gem_private_object_init(struct drm_device *dev,
    171  1.3  riastrad 				 struct drm_gem_object *obj, size_t size)
    172  1.1  riastrad {
    173  1.1  riastrad 	BUG_ON((size & (PAGE_SIZE - 1)) != 0);
    174  1.1  riastrad 
    175  1.1  riastrad 	obj->dev = dev;
    176  1.2  riastrad #ifdef __NetBSD__
    177  1.2  riastrad 	obj->gemo_shm_uao = NULL;
    178  1.2  riastrad 	KASSERT(drm_core_check_feature(dev, DRIVER_GEM));
    179  1.2  riastrad 	KASSERT(dev->driver->gem_uvm_ops != NULL);
    180  1.2  riastrad 	uvm_obj_init(&obj->gemo_uvmobj, dev->driver->gem_uvm_ops, true, 1);
    181  1.2  riastrad #else
    182  1.1  riastrad 	obj->filp = NULL;
    183  1.2  riastrad #endif
    184  1.1  riastrad 
    185  1.1  riastrad 	kref_init(&obj->refcount);
    186  1.3  riastrad 	obj->handle_count = 0;
    187  1.1  riastrad 	obj->size = size;
    188  1.3  riastrad 	drm_vma_node_reset(&obj->vma_node);
    189  1.3  riastrad }
    190  1.3  riastrad EXPORT_SYMBOL(drm_gem_private_object_init);
    191  1.1  riastrad 
    192  1.3  riastrad static void
    193  1.3  riastrad drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp)
    194  1.3  riastrad {
    195  1.3  riastrad 	/*
    196  1.3  riastrad 	 * Note: obj->dma_buf can't disappear as long as we still hold a
    197  1.3  riastrad 	 * handle reference in obj->handle_count.
    198  1.3  riastrad 	 */
    199  1.3  riastrad 	mutex_lock(&filp->prime.lock);
    200  1.3  riastrad 	if (obj->dma_buf) {
    201  1.3  riastrad 		drm_prime_remove_buf_handle_locked(&filp->prime,
    202  1.3  riastrad 						   obj->dma_buf);
    203  1.3  riastrad 	}
    204  1.3  riastrad 	mutex_unlock(&filp->prime.lock);
    205  1.1  riastrad }
    206  1.1  riastrad 
    207  1.1  riastrad /**
    208  1.3  riastrad  * drm_gem_object_free - release resources bound to userspace handles
    209  1.3  riastrad  * @obj: GEM object to clean up.
    210  1.3  riastrad  *
    211  1.3  riastrad  * Called after the last handle to the object has been closed
    212  1.3  riastrad  *
    213  1.3  riastrad  * Removes any name for the object. Note that this must be
    214  1.3  riastrad  * called before drm_gem_object_free or we'll be touching
    215  1.3  riastrad  * freed memory
    216  1.1  riastrad  */
    217  1.3  riastrad static void drm_gem_object_handle_free(struct drm_gem_object *obj)
    218  1.1  riastrad {
    219  1.3  riastrad 	struct drm_device *dev = obj->dev;
    220  1.3  riastrad 
    221  1.3  riastrad 	/* Remove any name for this object */
    222  1.3  riastrad 	if (obj->name) {
    223  1.3  riastrad 		idr_remove(&dev->object_name_idr, obj->name);
    224  1.3  riastrad 		obj->name = 0;
    225  1.3  riastrad 	}
    226  1.3  riastrad }
    227  1.1  riastrad 
    228  1.3  riastrad static void drm_gem_object_exported_dma_buf_free(struct drm_gem_object *obj)
    229  1.3  riastrad {
    230  1.3  riastrad 	/* Unbreak the reference cycle if we have an exported dma_buf. */
    231  1.3  riastrad 	if (obj->dma_buf) {
    232  1.3  riastrad 		dma_buf_put(obj->dma_buf);
    233  1.3  riastrad 		obj->dma_buf = NULL;
    234  1.1  riastrad 	}
    235  1.1  riastrad }
    236  1.1  riastrad 
    237  1.1  riastrad static void
    238  1.3  riastrad drm_gem_object_handle_unreference_unlocked(struct drm_gem_object *obj)
    239  1.1  riastrad {
    240  1.3  riastrad 	if (WARN_ON(obj->handle_count == 0))
    241  1.3  riastrad 		return;
    242  1.3  riastrad 
    243  1.3  riastrad 	/*
    244  1.3  riastrad 	* Must bump handle count first as this may be the last
    245  1.3  riastrad 	* ref, in which case the object would disappear before we
    246  1.3  riastrad 	* checked for a name
    247  1.3  riastrad 	*/
    248  1.3  riastrad 
    249  1.3  riastrad 	mutex_lock(&obj->dev->object_name_lock);
    250  1.3  riastrad 	if (--obj->handle_count == 0) {
    251  1.3  riastrad 		drm_gem_object_handle_free(obj);
    252  1.3  riastrad 		drm_gem_object_exported_dma_buf_free(obj);
    253  1.1  riastrad 	}
    254  1.3  riastrad 	mutex_unlock(&obj->dev->object_name_lock);
    255  1.3  riastrad 
    256  1.3  riastrad 	drm_gem_object_unreference_unlocked(obj);
    257  1.1  riastrad }
    258  1.1  riastrad 
    259  1.1  riastrad /**
    260  1.3  riastrad  * drm_gem_handle_delete - deletes the given file-private handle
    261  1.3  riastrad  * @filp: drm file-private structure to use for the handle look up
    262  1.3  riastrad  * @handle: userspace handle to delete
    263  1.3  riastrad  *
    264  1.3  riastrad  * Removes the GEM handle from the @filp lookup table and if this is the last
    265  1.3  riastrad  * handle also cleans up linked resources like GEM names.
    266  1.1  riastrad  */
    267  1.1  riastrad int
    268  1.1  riastrad drm_gem_handle_delete(struct drm_file *filp, u32 handle)
    269  1.1  riastrad {
    270  1.1  riastrad 	struct drm_device *dev;
    271  1.1  riastrad 	struct drm_gem_object *obj;
    272  1.1  riastrad 
    273  1.1  riastrad 	/* This is gross. The idr system doesn't let us try a delete and
    274  1.1  riastrad 	 * return an error code.  It just spews if you fail at deleting.
    275  1.1  riastrad 	 * So, we have to grab a lock around finding the object and then
    276  1.1  riastrad 	 * doing the delete on it and dropping the refcount, or the user
    277  1.1  riastrad 	 * could race us to double-decrement the refcount and cause a
    278  1.1  riastrad 	 * use-after-free later.  Given the frequency of our handle lookups,
    279  1.1  riastrad 	 * we may want to use ida for number allocation and a hash table
    280  1.1  riastrad 	 * for the pointers, anyway.
    281  1.1  riastrad 	 */
    282  1.1  riastrad 	spin_lock(&filp->table_lock);
    283  1.1  riastrad 
    284  1.1  riastrad 	/* Check if we currently have a reference on the object */
    285  1.1  riastrad 	obj = idr_find(&filp->object_idr, handle);
    286  1.1  riastrad 	if (obj == NULL) {
    287  1.1  riastrad 		spin_unlock(&filp->table_lock);
    288  1.1  riastrad 		return -EINVAL;
    289  1.1  riastrad 	}
    290  1.1  riastrad 	dev = obj->dev;
    291  1.1  riastrad 
    292  1.1  riastrad 	/* Release reference and decrement refcount. */
    293  1.1  riastrad 	idr_remove(&filp->object_idr, handle);
    294  1.1  riastrad 	spin_unlock(&filp->table_lock);
    295  1.1  riastrad 
    296  1.2  riastrad #ifndef __NetBSD__			/* XXX drm prime */
    297  1.3  riastrad 	if (drm_core_check_feature(dev, DRIVER_PRIME))
    298  1.3  riastrad 		drm_gem_remove_prime_handles(obj, filp);
    299  1.2  riastrad #endif
    300  1.3  riastrad 	drm_vma_node_revoke(&obj->vma_node, filp->filp);
    301  1.1  riastrad 
    302  1.1  riastrad 	if (dev->driver->gem_close_object)
    303  1.1  riastrad 		dev->driver->gem_close_object(obj, filp);
    304  1.1  riastrad 	drm_gem_object_handle_unreference_unlocked(obj);
    305  1.1  riastrad 
    306  1.1  riastrad 	return 0;
    307  1.1  riastrad }
    308  1.1  riastrad EXPORT_SYMBOL(drm_gem_handle_delete);
    309  1.1  riastrad 
    310  1.1  riastrad /**
    311  1.3  riastrad  * drm_gem_dumb_destroy - dumb fb callback helper for gem based drivers
    312  1.3  riastrad  * @file: drm file-private structure to remove the dumb handle from
    313  1.3  riastrad  * @dev: corresponding drm_device
    314  1.3  riastrad  * @handle: the dumb handle to remove
    315  1.3  riastrad  *
    316  1.3  riastrad  * This implements the ->dumb_destroy kms driver callback for drivers which use
    317  1.3  riastrad  * gem to manage their backing storage.
    318  1.3  riastrad  */
    319  1.3  riastrad int drm_gem_dumb_destroy(struct drm_file *file,
    320  1.3  riastrad 			 struct drm_device *dev,
    321  1.3  riastrad 			 uint32_t handle)
    322  1.3  riastrad {
    323  1.3  riastrad 	return drm_gem_handle_delete(file, handle);
    324  1.3  riastrad }
    325  1.3  riastrad EXPORT_SYMBOL(drm_gem_dumb_destroy);
    326  1.3  riastrad 
    327  1.3  riastrad /**
    328  1.3  riastrad  * drm_gem_handle_create_tail - internal functions to create a handle
    329  1.3  riastrad  * @file_priv: drm file-private structure to register the handle for
    330  1.3  riastrad  * @obj: object to register
    331  1.3  riastrad  * @handlep: pionter to return the created handle to the caller
    332  1.3  riastrad  *
    333  1.3  riastrad  * This expects the dev->object_name_lock to be held already and will drop it
    334  1.3  riastrad  * before returning. Used to avoid races in establishing new handles when
    335  1.3  riastrad  * importing an object from either an flink name or a dma-buf.
    336  1.1  riastrad  */
    337  1.1  riastrad int
    338  1.3  riastrad drm_gem_handle_create_tail(struct drm_file *file_priv,
    339  1.3  riastrad 			   struct drm_gem_object *obj,
    340  1.3  riastrad 			   u32 *handlep)
    341  1.1  riastrad {
    342  1.1  riastrad 	struct drm_device *dev = obj->dev;
    343  1.1  riastrad 	int ret;
    344  1.1  riastrad 
    345  1.3  riastrad 	WARN_ON(!mutex_is_locked(&dev->object_name_lock));
    346  1.3  riastrad 
    347  1.1  riastrad 	/*
    348  1.3  riastrad 	 * Get the user-visible handle using idr.  Preload and perform
    349  1.3  riastrad 	 * allocation under our spinlock.
    350  1.1  riastrad 	 */
    351  1.3  riastrad 	idr_preload(GFP_KERNEL);
    352  1.3  riastrad 	spin_lock(&file_priv->table_lock);
    353  1.1  riastrad 
    354  1.3  riastrad 	ret = idr_alloc(&file_priv->object_idr, obj, 1, 0, GFP_NOWAIT);
    355  1.3  riastrad 	drm_gem_object_reference(obj);
    356  1.3  riastrad 	obj->handle_count++;
    357  1.1  riastrad 	spin_unlock(&file_priv->table_lock);
    358  1.3  riastrad 	idr_preload_end();
    359  1.3  riastrad 	mutex_unlock(&dev->object_name_lock);
    360  1.3  riastrad 	if (ret < 0) {
    361  1.3  riastrad 		drm_gem_object_handle_unreference_unlocked(obj);
    362  1.1  riastrad 		return ret;
    363  1.3  riastrad 	}
    364  1.3  riastrad 	*handlep = ret;
    365  1.1  riastrad 
    366  1.3  riastrad 	ret = drm_vma_node_allow(&obj->vma_node, file_priv->filp);
    367  1.3  riastrad 	if (ret) {
    368  1.3  riastrad 		drm_gem_handle_delete(file_priv, *handlep);
    369  1.3  riastrad 		return ret;
    370  1.3  riastrad 	}
    371  1.1  riastrad 
    372  1.1  riastrad 	if (dev->driver->gem_open_object) {
    373  1.1  riastrad 		ret = dev->driver->gem_open_object(obj, file_priv);
    374  1.1  riastrad 		if (ret) {
    375  1.1  riastrad 			drm_gem_handle_delete(file_priv, *handlep);
    376  1.1  riastrad 			return ret;
    377  1.1  riastrad 		}
    378  1.1  riastrad 	}
    379  1.1  riastrad 
    380  1.1  riastrad 	return 0;
    381  1.1  riastrad }
    382  1.3  riastrad 
    383  1.3  riastrad /**
    384  1.3  riastrad  * gem_handle_create - create a gem handle for an object
    385  1.3  riastrad  * @file_priv: drm file-private structure to register the handle for
    386  1.3  riastrad  * @obj: object to register
    387  1.3  riastrad  * @handlep: pionter to return the created handle to the caller
    388  1.3  riastrad  *
    389  1.3  riastrad  * Create a handle for this object. This adds a handle reference
    390  1.3  riastrad  * to the object, which includes a regular reference count. Callers
    391  1.3  riastrad  * will likely want to dereference the object afterwards.
    392  1.3  riastrad  */
    393  1.3  riastrad int
    394  1.3  riastrad drm_gem_handle_create(struct drm_file *file_priv,
    395  1.3  riastrad 		       struct drm_gem_object *obj,
    396  1.3  riastrad 		       u32 *handlep)
    397  1.3  riastrad {
    398  1.3  riastrad 	mutex_lock(&obj->dev->object_name_lock);
    399  1.3  riastrad 
    400  1.3  riastrad 	return drm_gem_handle_create_tail(file_priv, obj, handlep);
    401  1.3  riastrad }
    402  1.1  riastrad EXPORT_SYMBOL(drm_gem_handle_create);
    403  1.1  riastrad 
    404  1.1  riastrad 
    405  1.1  riastrad /**
    406  1.1  riastrad  * drm_gem_free_mmap_offset - release a fake mmap offset for an object
    407  1.1  riastrad  * @obj: obj in question
    408  1.1  riastrad  *
    409  1.1  riastrad  * This routine frees fake offsets allocated by drm_gem_create_mmap_offset().
    410  1.1  riastrad  */
    411  1.1  riastrad void
    412  1.1  riastrad drm_gem_free_mmap_offset(struct drm_gem_object *obj)
    413  1.1  riastrad {
    414  1.1  riastrad 	struct drm_device *dev = obj->dev;
    415  1.1  riastrad 
    416  1.3  riastrad 	drm_vma_offset_remove(dev->vma_offset_manager, &obj->vma_node);
    417  1.1  riastrad }
    418  1.1  riastrad EXPORT_SYMBOL(drm_gem_free_mmap_offset);
    419  1.1  riastrad 
    420  1.1  riastrad /**
    421  1.3  riastrad  * drm_gem_create_mmap_offset_size - create a fake mmap offset for an object
    422  1.3  riastrad  * @obj: obj in question
    423  1.3  riastrad  * @size: the virtual size
    424  1.3  riastrad  *
    425  1.3  riastrad  * GEM memory mapping works by handing back to userspace a fake mmap offset
    426  1.3  riastrad  * it can use in a subsequent mmap(2) call.  The DRM core code then looks
    427  1.3  riastrad  * up the object based on the offset and sets up the various memory mapping
    428  1.3  riastrad  * structures.
    429  1.3  riastrad  *
    430  1.3  riastrad  * This routine allocates and attaches a fake offset for @obj, in cases where
    431  1.3  riastrad  * the virtual size differs from the physical size (ie. obj->size).  Otherwise
    432  1.3  riastrad  * just use drm_gem_create_mmap_offset().
    433  1.3  riastrad  */
    434  1.3  riastrad int
    435  1.3  riastrad drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size)
    436  1.3  riastrad {
    437  1.3  riastrad 	struct drm_device *dev = obj->dev;
    438  1.3  riastrad 
    439  1.3  riastrad 	return drm_vma_offset_add(dev->vma_offset_manager, &obj->vma_node,
    440  1.3  riastrad 				  size / PAGE_SIZE);
    441  1.3  riastrad }
    442  1.3  riastrad EXPORT_SYMBOL(drm_gem_create_mmap_offset_size);
    443  1.3  riastrad 
    444  1.3  riastrad /**
    445  1.1  riastrad  * drm_gem_create_mmap_offset - create a fake mmap offset for an object
    446  1.1  riastrad  * @obj: obj in question
    447  1.1  riastrad  *
    448  1.1  riastrad  * GEM memory mapping works by handing back to userspace a fake mmap offset
    449  1.1  riastrad  * it can use in a subsequent mmap(2) call.  The DRM core code then looks
    450  1.1  riastrad  * up the object based on the offset and sets up the various memory mapping
    451  1.1  riastrad  * structures.
    452  1.1  riastrad  *
    453  1.1  riastrad  * This routine allocates and attaches a fake offset for @obj.
    454  1.1  riastrad  */
    455  1.3  riastrad int drm_gem_create_mmap_offset(struct drm_gem_object *obj)
    456  1.3  riastrad {
    457  1.3  riastrad 	return drm_gem_create_mmap_offset_size(obj, obj->size);
    458  1.3  riastrad }
    459  1.3  riastrad EXPORT_SYMBOL(drm_gem_create_mmap_offset);
    460  1.3  riastrad 
    461  1.3  riastrad /**
    462  1.3  riastrad  * drm_gem_get_pages - helper to allocate backing pages for a GEM object
    463  1.3  riastrad  * from shmem
    464  1.3  riastrad  * @obj: obj in question
    465  1.3  riastrad  * @gfpmask: gfp mask of requested pages
    466  1.3  riastrad  */
    467  1.3  riastrad struct page **drm_gem_get_pages(struct drm_gem_object *obj, gfp_t gfpmask)
    468  1.1  riastrad {
    469  1.3  riastrad 	struct inode *inode;
    470  1.3  riastrad 	struct address_space *mapping;
    471  1.3  riastrad 	struct page *p, **pages;
    472  1.3  riastrad 	int i, npages;
    473  1.3  riastrad 
    474  1.3  riastrad 	/* This is the shared memory object that backs the GEM resource */
    475  1.3  riastrad 	inode = file_inode(obj->filp);
    476  1.3  riastrad 	mapping = inode->i_mapping;
    477  1.3  riastrad 
    478  1.3  riastrad 	/* We already BUG_ON() for non-page-aligned sizes in
    479  1.3  riastrad 	 * drm_gem_object_init(), so we should never hit this unless
    480  1.3  riastrad 	 * driver author is doing something really wrong:
    481  1.3  riastrad 	 */
    482  1.3  riastrad 	WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
    483  1.1  riastrad 
    484  1.3  riastrad 	npages = obj->size >> PAGE_SHIFT;
    485  1.1  riastrad 
    486  1.3  riastrad 	pages = drm_malloc_ab(npages, sizeof(struct page *));
    487  1.3  riastrad 	if (pages == NULL)
    488  1.3  riastrad 		return ERR_PTR(-ENOMEM);
    489  1.3  riastrad 
    490  1.3  riastrad 	gfpmask |= mapping_gfp_mask(mapping);
    491  1.3  riastrad 
    492  1.3  riastrad 	for (i = 0; i < npages; i++) {
    493  1.3  riastrad 		p = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
    494  1.3  riastrad 		if (IS_ERR(p))
    495  1.3  riastrad 			goto fail;
    496  1.3  riastrad 		pages[i] = p;
    497  1.3  riastrad 
    498  1.3  riastrad 		/* There is a hypothetical issue w/ drivers that require
    499  1.3  riastrad 		 * buffer memory in the low 4GB.. if the pages are un-
    500  1.3  riastrad 		 * pinned, and swapped out, they can end up swapped back
    501  1.3  riastrad 		 * in above 4GB.  If pages are already in memory, then
    502  1.3  riastrad 		 * shmem_read_mapping_page_gfp will ignore the gfpmask,
    503  1.3  riastrad 		 * even if the already in-memory page disobeys the mask.
    504  1.3  riastrad 		 *
    505  1.3  riastrad 		 * It is only a theoretical issue today, because none of
    506  1.3  riastrad 		 * the devices with this limitation can be populated with
    507  1.3  riastrad 		 * enough memory to trigger the issue.  But this BUG_ON()
    508  1.3  riastrad 		 * is here as a reminder in case the problem with
    509  1.3  riastrad 		 * shmem_read_mapping_page_gfp() isn't solved by the time
    510  1.3  riastrad 		 * it does become a real issue.
    511  1.3  riastrad 		 *
    512  1.3  riastrad 		 * See this thread: http://lkml.org/lkml/2011/7/11/238
    513  1.3  riastrad 		 */
    514  1.3  riastrad 		BUG_ON((gfpmask & __GFP_DMA32) &&
    515  1.3  riastrad 				(page_to_pfn(p) >= 0x00100000UL));
    516  1.1  riastrad 	}
    517  1.1  riastrad 
    518  1.3  riastrad 	return pages;
    519  1.3  riastrad 
    520  1.3  riastrad fail:
    521  1.3  riastrad 	while (i--)
    522  1.3  riastrad 		page_cache_release(pages[i]);
    523  1.3  riastrad 
    524  1.3  riastrad 	drm_free_large(pages);
    525  1.3  riastrad 	return ERR_CAST(p);
    526  1.3  riastrad }
    527  1.3  riastrad EXPORT_SYMBOL(drm_gem_get_pages);
    528  1.3  riastrad 
    529  1.3  riastrad /**
    530  1.3  riastrad  * drm_gem_put_pages - helper to free backing pages for a GEM object
    531  1.3  riastrad  * @obj: obj in question
    532  1.3  riastrad  * @pages: pages to free
    533  1.3  riastrad  * @dirty: if true, pages will be marked as dirty
    534  1.3  riastrad  * @accessed: if true, the pages will be marked as accessed
    535  1.3  riastrad  */
    536  1.3  riastrad void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
    537  1.3  riastrad 		bool dirty, bool accessed)
    538  1.3  riastrad {
    539  1.3  riastrad 	int i, npages;
    540  1.3  riastrad 
    541  1.3  riastrad 	/* We already BUG_ON() for non-page-aligned sizes in
    542  1.3  riastrad 	 * drm_gem_object_init(), so we should never hit this unless
    543  1.3  riastrad 	 * driver author is doing something really wrong:
    544  1.3  riastrad 	 */
    545  1.3  riastrad 	WARN_ON((obj->size & (PAGE_SIZE - 1)) != 0);
    546  1.3  riastrad 
    547  1.3  riastrad 	npages = obj->size >> PAGE_SHIFT;
    548  1.1  riastrad 
    549  1.3  riastrad 	for (i = 0; i < npages; i++) {
    550  1.3  riastrad 		if (dirty)
    551  1.3  riastrad 			set_page_dirty(pages[i]);
    552  1.1  riastrad 
    553  1.3  riastrad 		if (accessed)
    554  1.3  riastrad 			mark_page_accessed(pages[i]);
    555  1.1  riastrad 
    556  1.3  riastrad 		/* Undo the reference we took when populating the table */
    557  1.3  riastrad 		page_cache_release(pages[i]);
    558  1.3  riastrad 	}
    559  1.3  riastrad 
    560  1.3  riastrad 	drm_free_large(pages);
    561  1.1  riastrad }
    562  1.3  riastrad EXPORT_SYMBOL(drm_gem_put_pages);
    563  1.1  riastrad 
    564  1.1  riastrad /** Returns a reference to the object named by the handle. */
    565  1.1  riastrad struct drm_gem_object *
    566  1.1  riastrad drm_gem_object_lookup(struct drm_device *dev, struct drm_file *filp,
    567  1.1  riastrad 		      u32 handle)
    568  1.1  riastrad {
    569  1.1  riastrad 	struct drm_gem_object *obj;
    570  1.1  riastrad 
    571  1.1  riastrad 	spin_lock(&filp->table_lock);
    572  1.1  riastrad 
    573  1.1  riastrad 	/* Check if we currently have a reference on the object */
    574  1.1  riastrad 	obj = idr_find(&filp->object_idr, handle);
    575  1.1  riastrad 	if (obj == NULL) {
    576  1.1  riastrad 		spin_unlock(&filp->table_lock);
    577  1.1  riastrad 		return NULL;
    578  1.1  riastrad 	}
    579  1.1  riastrad 
    580  1.1  riastrad 	drm_gem_object_reference(obj);
    581  1.1  riastrad 
    582  1.1  riastrad 	spin_unlock(&filp->table_lock);
    583  1.1  riastrad 
    584  1.1  riastrad 	return obj;
    585  1.1  riastrad }
    586  1.1  riastrad EXPORT_SYMBOL(drm_gem_object_lookup);
    587  1.1  riastrad 
    588  1.1  riastrad /**
    589  1.3  riastrad  * drm_gem_close_ioctl - implementation of the GEM_CLOSE ioctl
    590  1.3  riastrad  * @dev: drm_device
    591  1.3  riastrad  * @data: ioctl data
    592  1.3  riastrad  * @file_priv: drm file-private structure
    593  1.3  riastrad  *
    594  1.1  riastrad  * Releases the handle to an mm object.
    595  1.1  riastrad  */
    596  1.1  riastrad int
    597  1.1  riastrad drm_gem_close_ioctl(struct drm_device *dev, void *data,
    598  1.1  riastrad 		    struct drm_file *file_priv)
    599  1.1  riastrad {
    600  1.1  riastrad 	struct drm_gem_close *args = data;
    601  1.1  riastrad 	int ret;
    602  1.1  riastrad 
    603  1.1  riastrad 	if (!(dev->driver->driver_features & DRIVER_GEM))
    604  1.1  riastrad 		return -ENODEV;
    605  1.1  riastrad 
    606  1.1  riastrad 	ret = drm_gem_handle_delete(file_priv, args->handle);
    607  1.1  riastrad 
    608  1.1  riastrad 	return ret;
    609  1.1  riastrad }
    610  1.1  riastrad 
    611  1.1  riastrad /**
    612  1.3  riastrad  * drm_gem_flink_ioctl - implementation of the GEM_FLINK ioctl
    613  1.3  riastrad  * @dev: drm_device
    614  1.3  riastrad  * @data: ioctl data
    615  1.3  riastrad  * @file_priv: drm file-private structure
    616  1.3  riastrad  *
    617  1.1  riastrad  * Create a global name for an object, returning the name.
    618  1.1  riastrad  *
    619  1.1  riastrad  * Note that the name does not hold a reference; when the object
    620  1.1  riastrad  * is freed, the name goes away.
    621  1.1  riastrad  */
    622  1.1  riastrad int
    623  1.1  riastrad drm_gem_flink_ioctl(struct drm_device *dev, void *data,
    624  1.1  riastrad 		    struct drm_file *file_priv)
    625  1.1  riastrad {
    626  1.1  riastrad 	struct drm_gem_flink *args = data;
    627  1.1  riastrad 	struct drm_gem_object *obj;
    628  1.1  riastrad 	int ret;
    629  1.1  riastrad 
    630  1.1  riastrad 	if (!(dev->driver->driver_features & DRIVER_GEM))
    631  1.1  riastrad 		return -ENODEV;
    632  1.1  riastrad 
    633  1.1  riastrad 	obj = drm_gem_object_lookup(dev, file_priv, args->handle);
    634  1.1  riastrad 	if (obj == NULL)
    635  1.1  riastrad 		return -ENOENT;
    636  1.1  riastrad 
    637  1.3  riastrad 	mutex_lock(&dev->object_name_lock);
    638  1.3  riastrad 	idr_preload(GFP_KERNEL);
    639  1.3  riastrad 	/* prevent races with concurrent gem_close. */
    640  1.3  riastrad 	if (obj->handle_count == 0) {
    641  1.3  riastrad 		ret = -ENOENT;
    642  1.1  riastrad 		goto err;
    643  1.1  riastrad 	}
    644  1.1  riastrad 
    645  1.1  riastrad 	if (!obj->name) {
    646  1.3  riastrad 		ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_NOWAIT);
    647  1.3  riastrad 		if (ret < 0)
    648  1.1  riastrad 			goto err;
    649  1.1  riastrad 
    650  1.3  riastrad 		obj->name = ret;
    651  1.1  riastrad 	}
    652  1.1  riastrad 
    653  1.3  riastrad 	args->name = (uint64_t) obj->name;
    654  1.3  riastrad 	ret = 0;
    655  1.3  riastrad 
    656  1.1  riastrad err:
    657  1.3  riastrad 	idr_preload_end();
    658  1.3  riastrad 	mutex_unlock(&dev->object_name_lock);
    659  1.1  riastrad 	drm_gem_object_unreference_unlocked(obj);
    660  1.1  riastrad 	return ret;
    661  1.1  riastrad }
    662  1.1  riastrad 
    663  1.1  riastrad /**
    664  1.3  riastrad  * drm_gem_open - implementation of the GEM_OPEN ioctl
    665  1.3  riastrad  * @dev: drm_device
    666  1.3  riastrad  * @data: ioctl data
    667  1.3  riastrad  * @file_priv: drm file-private structure
    668  1.3  riastrad  *
    669  1.1  riastrad  * Open an object using the global name, returning a handle and the size.
    670  1.1  riastrad  *
    671  1.1  riastrad  * This handle (of course) holds a reference to the object, so the object
    672  1.1  riastrad  * will not go away until the handle is deleted.
    673  1.1  riastrad  */
    674  1.1  riastrad int
    675  1.1  riastrad drm_gem_open_ioctl(struct drm_device *dev, void *data,
    676  1.1  riastrad 		   struct drm_file *file_priv)
    677  1.1  riastrad {
    678  1.1  riastrad 	struct drm_gem_open *args = data;
    679  1.1  riastrad 	struct drm_gem_object *obj;
    680  1.1  riastrad 	int ret;
    681  1.1  riastrad 	u32 handle;
    682  1.1  riastrad 
    683  1.1  riastrad 	if (!(dev->driver->driver_features & DRIVER_GEM))
    684  1.1  riastrad 		return -ENODEV;
    685  1.1  riastrad 
    686  1.3  riastrad 	mutex_lock(&dev->object_name_lock);
    687  1.1  riastrad 	obj = idr_find(&dev->object_name_idr, (int) args->name);
    688  1.3  riastrad 	if (obj) {
    689  1.1  riastrad 		drm_gem_object_reference(obj);
    690  1.3  riastrad 	} else {
    691  1.3  riastrad 		mutex_unlock(&dev->object_name_lock);
    692  1.1  riastrad 		return -ENOENT;
    693  1.3  riastrad 	}
    694  1.1  riastrad 
    695  1.3  riastrad 	/* drm_gem_handle_create_tail unlocks dev->object_name_lock. */
    696  1.3  riastrad 	ret = drm_gem_handle_create_tail(file_priv, obj, &handle);
    697  1.1  riastrad 	drm_gem_object_unreference_unlocked(obj);
    698  1.1  riastrad 	if (ret)
    699  1.1  riastrad 		return ret;
    700  1.1  riastrad 
    701  1.1  riastrad 	args->handle = handle;
    702  1.1  riastrad 	args->size = obj->size;
    703  1.1  riastrad 
    704  1.1  riastrad 	return 0;
    705  1.1  riastrad }
    706  1.1  riastrad 
    707  1.1  riastrad /**
    708  1.3  riastrad  * gem_gem_open - initalizes GEM file-private structures at devnode open time
    709  1.3  riastrad  * @dev: drm_device which is being opened by userspace
    710  1.3  riastrad  * @file_private: drm file-private structure to set up
    711  1.3  riastrad  *
    712  1.1  riastrad  * Called at device open time, sets up the structure for handling refcounting
    713  1.1  riastrad  * of mm objects.
    714  1.1  riastrad  */
    715  1.1  riastrad void
    716  1.1  riastrad drm_gem_open(struct drm_device *dev, struct drm_file *file_private)
    717  1.1  riastrad {
    718  1.1  riastrad 	idr_init(&file_private->object_idr);
    719  1.1  riastrad 	spin_lock_init(&file_private->table_lock);
    720  1.1  riastrad }
    721  1.1  riastrad 
    722  1.3  riastrad /*
    723  1.1  riastrad  * Called at device close to release the file's
    724  1.1  riastrad  * handle references on objects.
    725  1.1  riastrad  */
    726  1.1  riastrad static int
    727  1.1  riastrad drm_gem_object_release_handle(int id, void *ptr, void *data)
    728  1.1  riastrad {
    729  1.1  riastrad 	struct drm_file *file_priv = data;
    730  1.1  riastrad 	struct drm_gem_object *obj = ptr;
    731  1.1  riastrad 	struct drm_device *dev = obj->dev;
    732  1.1  riastrad 
    733  1.2  riastrad #ifndef __NetBSD__			/* XXX drm prime */
    734  1.3  riastrad 	if (drm_core_check_feature(dev, DRIVER_PRIME))
    735  1.3  riastrad 		drm_gem_remove_prime_handles(obj, file_priv);
    736  1.2  riastrad #endif
    737  1.3  riastrad 	drm_vma_node_revoke(&obj->vma_node, file_priv->filp);
    738  1.1  riastrad 
    739  1.1  riastrad 	if (dev->driver->gem_close_object)
    740  1.1  riastrad 		dev->driver->gem_close_object(obj, file_priv);
    741  1.1  riastrad 
    742  1.1  riastrad 	drm_gem_object_handle_unreference_unlocked(obj);
    743  1.1  riastrad 
    744  1.1  riastrad 	return 0;
    745  1.1  riastrad }
    746  1.1  riastrad 
    747  1.1  riastrad /**
    748  1.3  riastrad  * drm_gem_release - release file-private GEM resources
    749  1.3  riastrad  * @dev: drm_device which is being closed by userspace
    750  1.3  riastrad  * @file_private: drm file-private structure to clean up
    751  1.3  riastrad  *
    752  1.1  riastrad  * Called at close time when the filp is going away.
    753  1.1  riastrad  *
    754  1.1  riastrad  * Releases any remaining references on objects by this filp.
    755  1.1  riastrad  */
    756  1.1  riastrad void
    757  1.1  riastrad drm_gem_release(struct drm_device *dev, struct drm_file *file_private)
    758  1.1  riastrad {
    759  1.1  riastrad 	idr_for_each(&file_private->object_idr,
    760  1.1  riastrad 		     &drm_gem_object_release_handle, file_private);
    761  1.1  riastrad 	idr_destroy(&file_private->object_idr);
    762  1.2  riastrad #ifdef __NetBSD__
    763  1.2  riastrad 	spin_lock_destroy(&file_private->table_lock);
    764  1.2  riastrad #endif
    765  1.1  riastrad }
    766  1.1  riastrad 
    767  1.1  riastrad void
    768  1.1  riastrad drm_gem_object_release(struct drm_gem_object *obj)
    769  1.1  riastrad {
    770  1.3  riastrad 	WARN_ON(obj->dma_buf);
    771  1.3  riastrad 
    772  1.2  riastrad #ifdef __NetBSD__
    773  1.2  riastrad 	if (obj->gemo_shm_uao)
    774  1.2  riastrad 		uao_detach(obj->gemo_shm_uao);
    775  1.2  riastrad 	uvm_obj_destroy(&obj->gemo_uvmobj, true);
    776  1.2  riastrad #else
    777  1.1  riastrad 	if (obj->filp)
    778  1.3  riastrad 		fput(obj->filp);
    779  1.2  riastrad #endif
    780  1.3  riastrad 
    781  1.3  riastrad 	drm_gem_free_mmap_offset(obj);
    782  1.1  riastrad }
    783  1.1  riastrad EXPORT_SYMBOL(drm_gem_object_release);
    784  1.1  riastrad 
    785  1.1  riastrad /**
    786  1.3  riastrad  * drm_gem_object_free - free a GEM object
    787  1.3  riastrad  * @kref: kref of the object to free
    788  1.3  riastrad  *
    789  1.1  riastrad  * Called after the last reference to the object has been lost.
    790  1.1  riastrad  * Must be called holding struct_ mutex
    791  1.1  riastrad  *
    792  1.1  riastrad  * Frees the object
    793  1.1  riastrad  */
    794  1.1  riastrad void
    795  1.1  riastrad drm_gem_object_free(struct kref *kref)
    796  1.1  riastrad {
    797  1.1  riastrad 	struct drm_gem_object *obj = (struct drm_gem_object *) kref;
    798  1.1  riastrad 	struct drm_device *dev = obj->dev;
    799  1.1  riastrad 
    800  1.1  riastrad 	BUG_ON(!mutex_is_locked(&dev->struct_mutex));
    801  1.1  riastrad 
    802  1.1  riastrad 	if (dev->driver->gem_free_object != NULL)
    803  1.1  riastrad 		dev->driver->gem_free_object(obj);
    804  1.1  riastrad }
    805  1.1  riastrad EXPORT_SYMBOL(drm_gem_object_free);
    806  1.1  riastrad 
    807  1.2  riastrad #ifndef __NetBSD__
    808  1.2  riastrad 
    809  1.1  riastrad void drm_gem_vm_open(struct vm_area_struct *vma)
    810  1.1  riastrad {
    811  1.1  riastrad 	struct drm_gem_object *obj = vma->vm_private_data;
    812  1.1  riastrad 
    813  1.1  riastrad 	drm_gem_object_reference(obj);
    814  1.1  riastrad 
    815  1.1  riastrad 	mutex_lock(&obj->dev->struct_mutex);
    816  1.1  riastrad 	drm_vm_open_locked(obj->dev, vma);
    817  1.1  riastrad 	mutex_unlock(&obj->dev->struct_mutex);
    818  1.1  riastrad }
    819  1.1  riastrad EXPORT_SYMBOL(drm_gem_vm_open);
    820  1.1  riastrad 
    821  1.1  riastrad void drm_gem_vm_close(struct vm_area_struct *vma)
    822  1.1  riastrad {
    823  1.1  riastrad 	struct drm_gem_object *obj = vma->vm_private_data;
    824  1.1  riastrad 	struct drm_device *dev = obj->dev;
    825  1.1  riastrad 
    826  1.1  riastrad 	mutex_lock(&dev->struct_mutex);
    827  1.1  riastrad 	drm_vm_close_locked(obj->dev, vma);
    828  1.1  riastrad 	drm_gem_object_unreference(obj);
    829  1.1  riastrad 	mutex_unlock(&dev->struct_mutex);
    830  1.1  riastrad }
    831  1.1  riastrad EXPORT_SYMBOL(drm_gem_vm_close);
    832  1.1  riastrad 
    833  1.3  riastrad /**
    834  1.3  riastrad  * drm_gem_mmap_obj - memory map a GEM object
    835  1.3  riastrad  * @obj: the GEM object to map
    836  1.3  riastrad  * @obj_size: the object size to be mapped, in bytes
    837  1.3  riastrad  * @vma: VMA for the area to be mapped
    838  1.3  riastrad  *
    839  1.3  riastrad  * Set up the VMA to prepare mapping of the GEM object using the gem_vm_ops
    840  1.3  riastrad  * provided by the driver. Depending on their requirements, drivers can either
    841  1.3  riastrad  * provide a fault handler in their gem_vm_ops (in which case any accesses to
    842  1.3  riastrad  * the object will be trapped, to perform migration, GTT binding, surface
    843  1.3  riastrad  * register allocation, or performance monitoring), or mmap the buffer memory
    844  1.3  riastrad  * synchronously after calling drm_gem_mmap_obj.
    845  1.3  riastrad  *
    846  1.3  riastrad  * This function is mainly intended to implement the DMABUF mmap operation, when
    847  1.3  riastrad  * the GEM object is not looked up based on its fake offset. To implement the
    848  1.3  riastrad  * DRM mmap operation, drivers should use the drm_gem_mmap() function.
    849  1.3  riastrad  *
    850  1.3  riastrad  * drm_gem_mmap_obj() assumes the user is granted access to the buffer while
    851  1.3  riastrad  * drm_gem_mmap() prevents unprivileged users from mapping random objects. So
    852  1.3  riastrad  * callers must verify access restrictions before calling this helper.
    853  1.3  riastrad  *
    854  1.3  riastrad  * NOTE: This function has to be protected with dev->struct_mutex
    855  1.3  riastrad  *
    856  1.3  riastrad  * Return 0 or success or -EINVAL if the object size is smaller than the VMA
    857  1.3  riastrad  * size, or if no gem_vm_ops are provided.
    858  1.3  riastrad  */
    859  1.3  riastrad int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
    860  1.3  riastrad 		     struct vm_area_struct *vma)
    861  1.3  riastrad {
    862  1.3  riastrad 	struct drm_device *dev = obj->dev;
    863  1.3  riastrad 
    864  1.3  riastrad 	lockdep_assert_held(&dev->struct_mutex);
    865  1.3  riastrad 
    866  1.3  riastrad 	/* Check for valid size. */
    867  1.3  riastrad 	if (obj_size < vma->vm_end - vma->vm_start)
    868  1.3  riastrad 		return -EINVAL;
    869  1.3  riastrad 
    870  1.3  riastrad 	if (!dev->driver->gem_vm_ops)
    871  1.3  riastrad 		return -EINVAL;
    872  1.3  riastrad 
    873  1.3  riastrad 	vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
    874  1.3  riastrad 	vma->vm_ops = dev->driver->gem_vm_ops;
    875  1.3  riastrad 	vma->vm_private_data = obj;
    876  1.3  riastrad 	vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
    877  1.3  riastrad 
    878  1.3  riastrad 	/* Take a ref for this mapping of the object, so that the fault
    879  1.3  riastrad 	 * handler can dereference the mmap offset's pointer to the object.
    880  1.3  riastrad 	 * This reference is cleaned up by the corresponding vm_close
    881  1.3  riastrad 	 * (which should happen whether the vma was created by this call, or
    882  1.3  riastrad 	 * by a vm_open due to mremap or partial unmap or whatever).
    883  1.3  riastrad 	 */
    884  1.3  riastrad 	drm_gem_object_reference(obj);
    885  1.3  riastrad 
    886  1.3  riastrad 	drm_vm_open_locked(dev, vma);
    887  1.3  riastrad 	return 0;
    888  1.3  riastrad }
    889  1.3  riastrad EXPORT_SYMBOL(drm_gem_mmap_obj);
    890  1.1  riastrad 
    891  1.1  riastrad /**
    892  1.1  riastrad  * drm_gem_mmap - memory map routine for GEM objects
    893  1.1  riastrad  * @filp: DRM file pointer
    894  1.1  riastrad  * @vma: VMA for the area to be mapped
    895  1.1  riastrad  *
    896  1.1  riastrad  * If a driver supports GEM object mapping, mmap calls on the DRM file
    897  1.1  riastrad  * descriptor will end up here.
    898  1.1  riastrad  *
    899  1.3  riastrad  * Look up the GEM object based on the offset passed in (vma->vm_pgoff will
    900  1.1  riastrad  * contain the fake offset we created when the GTT map ioctl was called on
    901  1.3  riastrad  * the object) and map it with a call to drm_gem_mmap_obj().
    902  1.3  riastrad  *
    903  1.3  riastrad  * If the caller is not granted access to the buffer object, the mmap will fail
    904  1.3  riastrad  * with EACCES. Please see the vma manager for more information.
    905  1.1  riastrad  */
    906  1.1  riastrad int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
    907  1.1  riastrad {
    908  1.1  riastrad 	struct drm_file *priv = filp->private_data;
    909  1.1  riastrad 	struct drm_device *dev = priv->minor->dev;
    910  1.1  riastrad 	struct drm_gem_object *obj;
    911  1.3  riastrad 	struct drm_vma_offset_node *node;
    912  1.3  riastrad 	int ret;
    913  1.1  riastrad 
    914  1.1  riastrad 	if (drm_device_is_unplugged(dev))
    915  1.1  riastrad 		return -ENODEV;
    916  1.1  riastrad 
    917  1.1  riastrad 	mutex_lock(&dev->struct_mutex);
    918  1.1  riastrad 
    919  1.3  riastrad 	node = drm_vma_offset_exact_lookup(dev->vma_offset_manager,
    920  1.3  riastrad 					   vma->vm_pgoff,
    921  1.3  riastrad 					   vma_pages(vma));
    922  1.3  riastrad 	if (!node) {
    923  1.1  riastrad 		mutex_unlock(&dev->struct_mutex);
    924  1.1  riastrad 		return drm_mmap(filp, vma);
    925  1.3  riastrad 	} else if (!drm_vma_node_is_allowed(node, filp)) {
    926  1.3  riastrad 		mutex_unlock(&dev->struct_mutex);
    927  1.3  riastrad 		return -EACCES;
    928  1.1  riastrad 	}
    929  1.1  riastrad 
    930  1.3  riastrad 	obj = container_of(node, struct drm_gem_object, vma_node);
    931  1.3  riastrad 	ret = drm_gem_mmap_obj(obj, drm_vma_node_size(node) << PAGE_SHIFT, vma);
    932  1.1  riastrad 
    933  1.1  riastrad 	mutex_unlock(&dev->struct_mutex);
    934  1.1  riastrad 
    935  1.1  riastrad 	return ret;
    936  1.1  riastrad }
    937  1.1  riastrad EXPORT_SYMBOL(drm_gem_mmap);
    938  1.2  riastrad 
    939  1.2  riastrad #endif	/* defined(__NetBSD__) */
    940