1673a394bSEric Anholt /* 2673a394bSEric Anholt * Copyright © 2008 Intel Corporation 3673a394bSEric Anholt * 4673a394bSEric Anholt * Permission is hereby granted, free of charge, to any person obtaining a 5673a394bSEric Anholt * copy of this software and associated documentation files (the "Software"), 6673a394bSEric Anholt * to deal in the Software without restriction, including without limitation 7673a394bSEric Anholt * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8673a394bSEric Anholt * and/or sell copies of the Software, and to permit persons to whom the 9673a394bSEric Anholt * Software is furnished to do so, subject to the following conditions: 10673a394bSEric Anholt * 11673a394bSEric Anholt * The above copyright notice and this permission notice (including the next 12673a394bSEric Anholt * paragraph) shall be included in all copies or substantial portions of the 13673a394bSEric Anholt * Software. 14673a394bSEric Anholt * 15673a394bSEric Anholt * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16673a394bSEric Anholt * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17673a394bSEric Anholt * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18673a394bSEric Anholt * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19673a394bSEric Anholt * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20673a394bSEric Anholt * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21673a394bSEric Anholt * IN THE SOFTWARE. 22673a394bSEric Anholt * 23673a394bSEric Anholt * Authors: 24673a394bSEric Anholt * Eric Anholt <eric@anholt.net> 25673a394bSEric Anholt * 26673a394bSEric Anholt */ 27673a394bSEric Anholt 28673a394bSEric Anholt #include <linux/types.h> 29673a394bSEric Anholt #include <linux/slab.h> 30673a394bSEric Anholt #include <linux/mm.h> 31673a394bSEric Anholt #include <linux/uaccess.h> 32673a394bSEric Anholt #include <linux/fs.h> 33673a394bSEric Anholt #include <linux/file.h> 34673a394bSEric Anholt #include <linux/module.h> 35673a394bSEric Anholt #include <linux/mman.h> 36673a394bSEric Anholt #include <linux/pagemap.h> 375949eac4SHugh Dickins #include <linux/shmem_fs.h> 383248877eSDave Airlie #include <linux/dma-buf.h> 39760285e7SDavid Howells #include <drm/drmP.h> 40673a394bSEric Anholt 41673a394bSEric Anholt /** @file drm_gem.c 42673a394bSEric Anholt * 43673a394bSEric Anholt * This file provides some of the base ioctls and library routines for 44673a394bSEric Anholt * the graphics memory manager implemented by each device driver. 45673a394bSEric Anholt * 46673a394bSEric Anholt * Because various devices have different requirements in terms of 47673a394bSEric Anholt * synchronization and migration strategies, implementing that is left up to 48673a394bSEric Anholt * the driver, and all that the general API provides should be generic -- 49673a394bSEric Anholt * allocating objects, reading/writing data with the cpu, freeing objects. 50673a394bSEric Anholt * Even there, platform-dependent optimizations for reading/writing data with 51673a394bSEric Anholt * the CPU mean we'll likely hook those out to driver-specific calls. However, 52673a394bSEric Anholt * the DRI2 implementation wants to have at least allocate/mmap be generic. 53673a394bSEric Anholt * 54673a394bSEric Anholt * The goal was to have swap-backed object allocation managed through 55673a394bSEric Anholt * struct file. However, file descriptors as handles to a struct file have 56673a394bSEric Anholt * two major failings: 57673a394bSEric Anholt * - Process limits prevent more than 1024 or so being used at a time by 58673a394bSEric Anholt * default. 59673a394bSEric Anholt * - Inability to allocate high fds will aggravate the X Server's select() 60673a394bSEric Anholt * handling, and likely that of many GL client applications as well. 61673a394bSEric Anholt * 62673a394bSEric Anholt * This led to a plan of using our own integer IDs (called handles, following 63673a394bSEric Anholt * DRM terminology) to mimic fds, and implement the fd syscalls we need as 64673a394bSEric Anholt * ioctls. The objects themselves will still include the struct file so 65673a394bSEric Anholt * that we can transition to fds if the required kernel infrastructure shows 66673a394bSEric Anholt * up at a later date, and as our interface with shmfs for memory allocation. 67673a394bSEric Anholt */ 68673a394bSEric Anholt 69a2c0a97bSJesse Barnes /* 70a2c0a97bSJesse Barnes * We make up offsets for buffer objects so we can recognize them at 71a2c0a97bSJesse Barnes * mmap time. 72a2c0a97bSJesse Barnes */ 7305269a3aSJordan Crouse 7405269a3aSJordan Crouse /* pgoff in mmap is an unsigned long, so we need to make sure that 7505269a3aSJordan Crouse * the faked up offset will fit 7605269a3aSJordan Crouse */ 7705269a3aSJordan Crouse 7805269a3aSJordan Crouse #if BITS_PER_LONG == 64 79a2c0a97bSJesse Barnes #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1) 80a2c0a97bSJesse Barnes #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16) 8105269a3aSJordan Crouse #else 8205269a3aSJordan Crouse #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1) 8305269a3aSJordan Crouse #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16) 8405269a3aSJordan Crouse #endif 85a2c0a97bSJesse Barnes 86673a394bSEric Anholt /** 87673a394bSEric Anholt * Initialize the GEM device fields 88673a394bSEric Anholt */ 89673a394bSEric Anholt 90673a394bSEric Anholt int 91673a394bSEric Anholt drm_gem_init(struct drm_device *dev) 92673a394bSEric Anholt { 93a2c0a97bSJesse Barnes struct drm_gem_mm *mm; 94a2c0a97bSJesse Barnes 95673a394bSEric Anholt spin_lock_init(&dev->object_name_lock); 96673a394bSEric Anholt idr_init(&dev->object_name_idr); 97a2c0a97bSJesse Barnes 989a298b2aSEric Anholt mm = kzalloc(sizeof(struct drm_gem_mm), GFP_KERNEL); 99a2c0a97bSJesse Barnes if (!mm) { 100a2c0a97bSJesse Barnes DRM_ERROR("out of memory\n"); 101a2c0a97bSJesse Barnes return -ENOMEM; 102a2c0a97bSJesse Barnes } 103a2c0a97bSJesse Barnes 104a2c0a97bSJesse Barnes dev->mm_private = mm; 105a2c0a97bSJesse Barnes 1064cb81ac2SChris Wilson if (drm_ht_create(&mm->offset_hash, 12)) { 1079a298b2aSEric Anholt kfree(mm); 108a2c0a97bSJesse Barnes return -ENOMEM; 109a2c0a97bSJesse Barnes } 110a2c0a97bSJesse Barnes 111a2c0a97bSJesse Barnes if (drm_mm_init(&mm->offset_manager, DRM_FILE_PAGE_OFFSET_START, 112a2c0a97bSJesse Barnes DRM_FILE_PAGE_OFFSET_SIZE)) { 113a2c0a97bSJesse Barnes drm_ht_remove(&mm->offset_hash); 1149a298b2aSEric Anholt kfree(mm); 115a2c0a97bSJesse Barnes return -ENOMEM; 116a2c0a97bSJesse Barnes } 117a2c0a97bSJesse Barnes 118673a394bSEric Anholt return 0; 119673a394bSEric Anholt } 120673a394bSEric Anholt 121a2c0a97bSJesse Barnes void 122a2c0a97bSJesse Barnes drm_gem_destroy(struct drm_device *dev) 123a2c0a97bSJesse Barnes { 124a2c0a97bSJesse Barnes struct drm_gem_mm *mm = dev->mm_private; 125a2c0a97bSJesse Barnes 126a2c0a97bSJesse Barnes drm_mm_takedown(&mm->offset_manager); 127a2c0a97bSJesse Barnes drm_ht_remove(&mm->offset_hash); 1289a298b2aSEric Anholt kfree(mm); 129a2c0a97bSJesse Barnes dev->mm_private = NULL; 130a2c0a97bSJesse Barnes } 131a2c0a97bSJesse Barnes 132673a394bSEric Anholt /** 13362cb7011SAlan Cox * Initialize an already allocated GEM object of the specified size with 1341d397043SDaniel Vetter * shmfs backing store. 1351d397043SDaniel Vetter */ 1361d397043SDaniel Vetter int drm_gem_object_init(struct drm_device *dev, 1371d397043SDaniel Vetter struct drm_gem_object *obj, size_t size) 1381d397043SDaniel Vetter { 1391d397043SDaniel Vetter BUG_ON((size & (PAGE_SIZE - 1)) != 0); 1401d397043SDaniel Vetter 1411d397043SDaniel Vetter obj->dev = dev; 1421d397043SDaniel Vetter obj->filp = shmem_file_setup("drm mm object", size, VM_NORESERVE); 1431d397043SDaniel Vetter if (IS_ERR(obj->filp)) 144dd8bc93dSChris Wilson return PTR_ERR(obj->filp); 1451d397043SDaniel Vetter 1461d397043SDaniel Vetter kref_init(&obj->refcount); 14729d08b3eSDave Airlie atomic_set(&obj->handle_count, 0); 1481d397043SDaniel Vetter obj->size = size; 1491d397043SDaniel Vetter 1501d397043SDaniel Vetter return 0; 1511d397043SDaniel Vetter } 1521d397043SDaniel Vetter EXPORT_SYMBOL(drm_gem_object_init); 1531d397043SDaniel Vetter 1541d397043SDaniel Vetter /** 15562cb7011SAlan Cox * Initialize an already allocated GEM object of the specified size with 15662cb7011SAlan Cox * no GEM provided backing store. Instead the caller is responsible for 15762cb7011SAlan Cox * backing the object and handling it. 15862cb7011SAlan Cox */ 15962cb7011SAlan Cox int drm_gem_private_object_init(struct drm_device *dev, 16062cb7011SAlan Cox struct drm_gem_object *obj, size_t size) 16162cb7011SAlan Cox { 16262cb7011SAlan Cox BUG_ON((size & (PAGE_SIZE - 1)) != 0); 16362cb7011SAlan Cox 16462cb7011SAlan Cox obj->dev = dev; 16562cb7011SAlan Cox obj->filp = NULL; 16662cb7011SAlan Cox 16762cb7011SAlan Cox kref_init(&obj->refcount); 16862cb7011SAlan Cox atomic_set(&obj->handle_count, 0); 16962cb7011SAlan Cox obj->size = size; 17062cb7011SAlan Cox 17162cb7011SAlan Cox return 0; 17262cb7011SAlan Cox } 17362cb7011SAlan Cox EXPORT_SYMBOL(drm_gem_private_object_init); 17462cb7011SAlan Cox 17562cb7011SAlan Cox /** 176673a394bSEric Anholt * Allocate a GEM object of the specified size with shmfs backing store 177673a394bSEric Anholt */ 178673a394bSEric Anholt struct drm_gem_object * 179673a394bSEric Anholt drm_gem_object_alloc(struct drm_device *dev, size_t size) 180673a394bSEric Anholt { 181673a394bSEric Anholt struct drm_gem_object *obj; 182673a394bSEric Anholt 183b798b1feSRobert P. J. Day obj = kzalloc(sizeof(*obj), GFP_KERNEL); 184845792d9SJiri Slaby if (!obj) 185845792d9SJiri Slaby goto free; 186673a394bSEric Anholt 1871d397043SDaniel Vetter if (drm_gem_object_init(dev, obj, size) != 0) 188845792d9SJiri Slaby goto free; 189673a394bSEric Anholt 190673a394bSEric Anholt if (dev->driver->gem_init_object != NULL && 191673a394bSEric Anholt dev->driver->gem_init_object(obj) != 0) { 192845792d9SJiri Slaby goto fput; 193673a394bSEric Anholt } 194673a394bSEric Anholt return obj; 195845792d9SJiri Slaby fput: 1961d397043SDaniel Vetter /* Object_init mangles the global counters - readjust them. */ 197845792d9SJiri Slaby fput(obj->filp); 198845792d9SJiri Slaby free: 199845792d9SJiri Slaby kfree(obj); 200845792d9SJiri Slaby return NULL; 201673a394bSEric Anholt } 202673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_alloc); 203673a394bSEric Anholt 2040ff926c7SDave Airlie static void 2050ff926c7SDave Airlie drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp) 2060ff926c7SDave Airlie { 2070ff926c7SDave Airlie if (obj->import_attach) { 208219b4733SDave Airlie drm_prime_remove_buf_handle(&filp->prime, 2090ff926c7SDave Airlie obj->import_attach->dmabuf); 2100ff926c7SDave Airlie } 2110ff926c7SDave Airlie if (obj->export_dma_buf) { 212219b4733SDave Airlie drm_prime_remove_buf_handle(&filp->prime, 2130ff926c7SDave Airlie obj->export_dma_buf); 2140ff926c7SDave Airlie } 2150ff926c7SDave Airlie } 2160ff926c7SDave Airlie 217673a394bSEric Anholt /** 218673a394bSEric Anholt * Removes the mapping from handle to filp for this object. 219673a394bSEric Anholt */ 220ff72145bSDave Airlie int 221a1a2d1d3SPekka Paalanen drm_gem_handle_delete(struct drm_file *filp, u32 handle) 222673a394bSEric Anholt { 223673a394bSEric Anholt struct drm_device *dev; 224673a394bSEric Anholt struct drm_gem_object *obj; 225673a394bSEric Anholt 226673a394bSEric Anholt /* This is gross. The idr system doesn't let us try a delete and 227673a394bSEric Anholt * return an error code. It just spews if you fail at deleting. 228673a394bSEric Anholt * So, we have to grab a lock around finding the object and then 229673a394bSEric Anholt * doing the delete on it and dropping the refcount, or the user 230673a394bSEric Anholt * could race us to double-decrement the refcount and cause a 231673a394bSEric Anholt * use-after-free later. Given the frequency of our handle lookups, 232673a394bSEric Anholt * we may want to use ida for number allocation and a hash table 233673a394bSEric Anholt * for the pointers, anyway. 234673a394bSEric Anholt */ 235673a394bSEric Anholt spin_lock(&filp->table_lock); 236673a394bSEric Anholt 237673a394bSEric Anholt /* Check if we currently have a reference on the object */ 238673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 239673a394bSEric Anholt if (obj == NULL) { 240673a394bSEric Anholt spin_unlock(&filp->table_lock); 241673a394bSEric Anholt return -EINVAL; 242673a394bSEric Anholt } 243673a394bSEric Anholt dev = obj->dev; 244673a394bSEric Anholt 245673a394bSEric Anholt /* Release reference and decrement refcount. */ 246673a394bSEric Anholt idr_remove(&filp->object_idr, handle); 247673a394bSEric Anholt spin_unlock(&filp->table_lock); 248673a394bSEric Anholt 2490ff926c7SDave Airlie drm_gem_remove_prime_handles(obj, filp); 2503248877eSDave Airlie 251304eda32SBen Skeggs if (dev->driver->gem_close_object) 252304eda32SBen Skeggs dev->driver->gem_close_object(obj, filp); 253bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 254673a394bSEric Anholt 255673a394bSEric Anholt return 0; 256673a394bSEric Anholt } 257ff72145bSDave Airlie EXPORT_SYMBOL(drm_gem_handle_delete); 258673a394bSEric Anholt 259673a394bSEric Anholt /** 260673a394bSEric Anholt * Create a handle for this object. This adds a handle reference 261673a394bSEric Anholt * to the object, which includes a regular reference count. Callers 262673a394bSEric Anholt * will likely want to dereference the object afterwards. 263673a394bSEric Anholt */ 264673a394bSEric Anholt int 265673a394bSEric Anholt drm_gem_handle_create(struct drm_file *file_priv, 266673a394bSEric Anholt struct drm_gem_object *obj, 267a1a2d1d3SPekka Paalanen u32 *handlep) 268673a394bSEric Anholt { 269304eda32SBen Skeggs struct drm_device *dev = obj->dev; 270673a394bSEric Anholt int ret; 271673a394bSEric Anholt 272673a394bSEric Anholt /* 2732e928815STejun Heo * Get the user-visible handle using idr. Preload and perform 2742e928815STejun Heo * allocation under our spinlock. 275673a394bSEric Anholt */ 2762e928815STejun Heo idr_preload(GFP_KERNEL); 277673a394bSEric Anholt spin_lock(&file_priv->table_lock); 2782e928815STejun Heo 2792e928815STejun Heo ret = idr_alloc(&file_priv->object_idr, obj, 1, 0, GFP_NOWAIT); 2802e928815STejun Heo 281673a394bSEric Anholt spin_unlock(&file_priv->table_lock); 2822e928815STejun Heo idr_preload_end(); 2832e928815STejun Heo if (ret < 0) 284673a394bSEric Anholt return ret; 2852e928815STejun Heo *handlep = ret; 286673a394bSEric Anholt 287673a394bSEric Anholt drm_gem_object_handle_reference(obj); 288304eda32SBen Skeggs 289304eda32SBen Skeggs if (dev->driver->gem_open_object) { 290304eda32SBen Skeggs ret = dev->driver->gem_open_object(obj, file_priv); 291304eda32SBen Skeggs if (ret) { 292304eda32SBen Skeggs drm_gem_handle_delete(file_priv, *handlep); 293304eda32SBen Skeggs return ret; 294304eda32SBen Skeggs } 295304eda32SBen Skeggs } 296304eda32SBen Skeggs 297673a394bSEric Anholt return 0; 298673a394bSEric Anholt } 299673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_handle_create); 300673a394bSEric Anholt 30175ef8b3bSRob Clark 30275ef8b3bSRob Clark /** 30375ef8b3bSRob Clark * drm_gem_free_mmap_offset - release a fake mmap offset for an object 30475ef8b3bSRob Clark * @obj: obj in question 30575ef8b3bSRob Clark * 30675ef8b3bSRob Clark * This routine frees fake offsets allocated by drm_gem_create_mmap_offset(). 30775ef8b3bSRob Clark */ 30875ef8b3bSRob Clark void 30975ef8b3bSRob Clark drm_gem_free_mmap_offset(struct drm_gem_object *obj) 31075ef8b3bSRob Clark { 31175ef8b3bSRob Clark struct drm_device *dev = obj->dev; 31275ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 31375ef8b3bSRob Clark struct drm_map_list *list = &obj->map_list; 31475ef8b3bSRob Clark 31575ef8b3bSRob Clark drm_ht_remove_item(&mm->offset_hash, &list->hash); 31675ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 31775ef8b3bSRob Clark kfree(list->map); 31875ef8b3bSRob Clark list->map = NULL; 31975ef8b3bSRob Clark } 32075ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_free_mmap_offset); 32175ef8b3bSRob Clark 32275ef8b3bSRob Clark /** 32375ef8b3bSRob Clark * drm_gem_create_mmap_offset - create a fake mmap offset for an object 32475ef8b3bSRob Clark * @obj: obj in question 32575ef8b3bSRob Clark * 32675ef8b3bSRob Clark * GEM memory mapping works by handing back to userspace a fake mmap offset 32775ef8b3bSRob Clark * it can use in a subsequent mmap(2) call. The DRM core code then looks 32875ef8b3bSRob Clark * up the object based on the offset and sets up the various memory mapping 32975ef8b3bSRob Clark * structures. 33075ef8b3bSRob Clark * 33175ef8b3bSRob Clark * This routine allocates and attaches a fake offset for @obj. 33275ef8b3bSRob Clark */ 33375ef8b3bSRob Clark int 33475ef8b3bSRob Clark drm_gem_create_mmap_offset(struct drm_gem_object *obj) 33575ef8b3bSRob Clark { 33675ef8b3bSRob Clark struct drm_device *dev = obj->dev; 33775ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 33875ef8b3bSRob Clark struct drm_map_list *list; 33975ef8b3bSRob Clark struct drm_local_map *map; 3404a1b0714SLaurent Pinchart int ret; 34175ef8b3bSRob Clark 34275ef8b3bSRob Clark /* Set the object up for mmap'ing */ 34375ef8b3bSRob Clark list = &obj->map_list; 34475ef8b3bSRob Clark list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL); 34575ef8b3bSRob Clark if (!list->map) 34675ef8b3bSRob Clark return -ENOMEM; 34775ef8b3bSRob Clark 34875ef8b3bSRob Clark map = list->map; 34975ef8b3bSRob Clark map->type = _DRM_GEM; 35075ef8b3bSRob Clark map->size = obj->size; 35175ef8b3bSRob Clark map->handle = obj; 35275ef8b3bSRob Clark 35375ef8b3bSRob Clark /* Get a DRM GEM mmap offset allocated... */ 35475ef8b3bSRob Clark list->file_offset_node = drm_mm_search_free(&mm->offset_manager, 3556b9d89b4SChris Wilson obj->size / PAGE_SIZE, 0, false); 35675ef8b3bSRob Clark 35775ef8b3bSRob Clark if (!list->file_offset_node) { 35875ef8b3bSRob Clark DRM_ERROR("failed to allocate offset for bo %d\n", obj->name); 35975ef8b3bSRob Clark ret = -ENOSPC; 36075ef8b3bSRob Clark goto out_free_list; 36175ef8b3bSRob Clark } 36275ef8b3bSRob Clark 36375ef8b3bSRob Clark list->file_offset_node = drm_mm_get_block(list->file_offset_node, 36475ef8b3bSRob Clark obj->size / PAGE_SIZE, 0); 36575ef8b3bSRob Clark if (!list->file_offset_node) { 36675ef8b3bSRob Clark ret = -ENOMEM; 36775ef8b3bSRob Clark goto out_free_list; 36875ef8b3bSRob Clark } 36975ef8b3bSRob Clark 37075ef8b3bSRob Clark list->hash.key = list->file_offset_node->start; 37175ef8b3bSRob Clark ret = drm_ht_insert_item(&mm->offset_hash, &list->hash); 37275ef8b3bSRob Clark if (ret) { 37375ef8b3bSRob Clark DRM_ERROR("failed to add to map hash\n"); 37475ef8b3bSRob Clark goto out_free_mm; 37575ef8b3bSRob Clark } 37675ef8b3bSRob Clark 37775ef8b3bSRob Clark return 0; 37875ef8b3bSRob Clark 37975ef8b3bSRob Clark out_free_mm: 38075ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 38175ef8b3bSRob Clark out_free_list: 38275ef8b3bSRob Clark kfree(list->map); 38375ef8b3bSRob Clark list->map = NULL; 38475ef8b3bSRob Clark 38575ef8b3bSRob Clark return ret; 38675ef8b3bSRob Clark } 38775ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_create_mmap_offset); 38875ef8b3bSRob Clark 389673a394bSEric Anholt /** Returns a reference to the object named by the handle. */ 390673a394bSEric Anholt struct drm_gem_object * 391673a394bSEric Anholt drm_gem_object_lookup(struct drm_device *dev, struct drm_file *filp, 392a1a2d1d3SPekka Paalanen u32 handle) 393673a394bSEric Anholt { 394673a394bSEric Anholt struct drm_gem_object *obj; 395673a394bSEric Anholt 396673a394bSEric Anholt spin_lock(&filp->table_lock); 397673a394bSEric Anholt 398673a394bSEric Anholt /* Check if we currently have a reference on the object */ 399673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 400673a394bSEric Anholt if (obj == NULL) { 401673a394bSEric Anholt spin_unlock(&filp->table_lock); 402673a394bSEric Anholt return NULL; 403673a394bSEric Anholt } 404673a394bSEric Anholt 405673a394bSEric Anholt drm_gem_object_reference(obj); 406673a394bSEric Anholt 407673a394bSEric Anholt spin_unlock(&filp->table_lock); 408673a394bSEric Anholt 409673a394bSEric Anholt return obj; 410673a394bSEric Anholt } 411673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_lookup); 412673a394bSEric Anholt 413673a394bSEric Anholt /** 414673a394bSEric Anholt * Releases the handle to an mm object. 415673a394bSEric Anholt */ 416673a394bSEric Anholt int 417673a394bSEric Anholt drm_gem_close_ioctl(struct drm_device *dev, void *data, 418673a394bSEric Anholt struct drm_file *file_priv) 419673a394bSEric Anholt { 420673a394bSEric Anholt struct drm_gem_close *args = data; 421673a394bSEric Anholt int ret; 422673a394bSEric Anholt 423673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 424673a394bSEric Anholt return -ENODEV; 425673a394bSEric Anholt 426673a394bSEric Anholt ret = drm_gem_handle_delete(file_priv, args->handle); 427673a394bSEric Anholt 428673a394bSEric Anholt return ret; 429673a394bSEric Anholt } 430673a394bSEric Anholt 431673a394bSEric Anholt /** 432673a394bSEric Anholt * Create a global name for an object, returning the name. 433673a394bSEric Anholt * 434673a394bSEric Anholt * Note that the name does not hold a reference; when the object 435673a394bSEric Anholt * is freed, the name goes away. 436673a394bSEric Anholt */ 437673a394bSEric Anholt int 438673a394bSEric Anholt drm_gem_flink_ioctl(struct drm_device *dev, void *data, 439673a394bSEric Anholt struct drm_file *file_priv) 440673a394bSEric Anholt { 441673a394bSEric Anholt struct drm_gem_flink *args = data; 442673a394bSEric Anholt struct drm_gem_object *obj; 443673a394bSEric Anholt int ret; 444673a394bSEric Anholt 445673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 446673a394bSEric Anholt return -ENODEV; 447673a394bSEric Anholt 448673a394bSEric Anholt obj = drm_gem_object_lookup(dev, file_priv, args->handle); 449673a394bSEric Anholt if (obj == NULL) 450bf79cb91SChris Wilson return -ENOENT; 451673a394bSEric Anholt 4522e928815STejun Heo idr_preload(GFP_KERNEL); 453673a394bSEric Anholt spin_lock(&dev->object_name_lock); 4548d59bae5SChris Wilson if (!obj->name) { 4552e928815STejun Heo ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_NOWAIT); 4562e928815STejun Heo if (ret < 0) 4573e49c4f4SChris Wilson goto err; 458*2e07fb22SYoungJun Cho 459*2e07fb22SYoungJun Cho obj->name = ret; 460673a394bSEric Anholt 4618d59bae5SChris Wilson /* Allocate a reference for the name table. */ 4628d59bae5SChris Wilson drm_gem_object_reference(obj); 4638d59bae5SChris Wilson } 4643e49c4f4SChris Wilson 465*2e07fb22SYoungJun Cho args->name = (uint64_t) obj->name; 466*2e07fb22SYoungJun Cho ret = 0; 467*2e07fb22SYoungJun Cho 4683e49c4f4SChris Wilson err: 469*2e07fb22SYoungJun Cho spin_unlock(&dev->object_name_lock); 470*2e07fb22SYoungJun Cho idr_preload_end(); 471bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 4723e49c4f4SChris Wilson return ret; 473673a394bSEric Anholt } 474673a394bSEric Anholt 475673a394bSEric Anholt /** 476673a394bSEric Anholt * Open an object using the global name, returning a handle and the size. 477673a394bSEric Anholt * 478673a394bSEric Anholt * This handle (of course) holds a reference to the object, so the object 479673a394bSEric Anholt * will not go away until the handle is deleted. 480673a394bSEric Anholt */ 481673a394bSEric Anholt int 482673a394bSEric Anholt drm_gem_open_ioctl(struct drm_device *dev, void *data, 483673a394bSEric Anholt struct drm_file *file_priv) 484673a394bSEric Anholt { 485673a394bSEric Anholt struct drm_gem_open *args = data; 486673a394bSEric Anholt struct drm_gem_object *obj; 487673a394bSEric Anholt int ret; 488a1a2d1d3SPekka Paalanen u32 handle; 489673a394bSEric Anholt 490673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 491673a394bSEric Anholt return -ENODEV; 492673a394bSEric Anholt 493673a394bSEric Anholt spin_lock(&dev->object_name_lock); 494673a394bSEric Anholt obj = idr_find(&dev->object_name_idr, (int) args->name); 495673a394bSEric Anholt if (obj) 496673a394bSEric Anholt drm_gem_object_reference(obj); 497673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 498673a394bSEric Anholt if (!obj) 499673a394bSEric Anholt return -ENOENT; 500673a394bSEric Anholt 501673a394bSEric Anholt ret = drm_gem_handle_create(file_priv, obj, &handle); 502bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 503673a394bSEric Anholt if (ret) 504673a394bSEric Anholt return ret; 505673a394bSEric Anholt 506673a394bSEric Anholt args->handle = handle; 507673a394bSEric Anholt args->size = obj->size; 508673a394bSEric Anholt 509673a394bSEric Anholt return 0; 510673a394bSEric Anholt } 511673a394bSEric Anholt 512673a394bSEric Anholt /** 513673a394bSEric Anholt * Called at device open time, sets up the structure for handling refcounting 514673a394bSEric Anholt * of mm objects. 515673a394bSEric Anholt */ 516673a394bSEric Anholt void 517673a394bSEric Anholt drm_gem_open(struct drm_device *dev, struct drm_file *file_private) 518673a394bSEric Anholt { 519673a394bSEric Anholt idr_init(&file_private->object_idr); 520673a394bSEric Anholt spin_lock_init(&file_private->table_lock); 521673a394bSEric Anholt } 522673a394bSEric Anholt 523673a394bSEric Anholt /** 524673a394bSEric Anholt * Called at device close to release the file's 525673a394bSEric Anholt * handle references on objects. 526673a394bSEric Anholt */ 527673a394bSEric Anholt static int 528673a394bSEric Anholt drm_gem_object_release_handle(int id, void *ptr, void *data) 529673a394bSEric Anholt { 530304eda32SBen Skeggs struct drm_file *file_priv = data; 531673a394bSEric Anholt struct drm_gem_object *obj = ptr; 532304eda32SBen Skeggs struct drm_device *dev = obj->dev; 533304eda32SBen Skeggs 5340ff926c7SDave Airlie drm_gem_remove_prime_handles(obj, file_priv); 5353248877eSDave Airlie 536304eda32SBen Skeggs if (dev->driver->gem_close_object) 537304eda32SBen Skeggs dev->driver->gem_close_object(obj, file_priv); 538673a394bSEric Anholt 539bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 540673a394bSEric Anholt 541673a394bSEric Anholt return 0; 542673a394bSEric Anholt } 543673a394bSEric Anholt 544673a394bSEric Anholt /** 545673a394bSEric Anholt * Called at close time when the filp is going away. 546673a394bSEric Anholt * 547673a394bSEric Anholt * Releases any remaining references on objects by this filp. 548673a394bSEric Anholt */ 549673a394bSEric Anholt void 550673a394bSEric Anholt drm_gem_release(struct drm_device *dev, struct drm_file *file_private) 551673a394bSEric Anholt { 552673a394bSEric Anholt idr_for_each(&file_private->object_idr, 553304eda32SBen Skeggs &drm_gem_object_release_handle, file_private); 554673a394bSEric Anholt idr_destroy(&file_private->object_idr); 555673a394bSEric Anholt } 556673a394bSEric Anholt 557fd632aa3SDaniel Vetter void 558fd632aa3SDaniel Vetter drm_gem_object_release(struct drm_gem_object *obj) 559c3ae90c0SLuca Barbieri { 56062cb7011SAlan Cox if (obj->filp) 561c3ae90c0SLuca Barbieri fput(obj->filp); 562c3ae90c0SLuca Barbieri } 563fd632aa3SDaniel Vetter EXPORT_SYMBOL(drm_gem_object_release); 564c3ae90c0SLuca Barbieri 565673a394bSEric Anholt /** 566673a394bSEric Anholt * Called after the last reference to the object has been lost. 567c3ae90c0SLuca Barbieri * Must be called holding struct_ mutex 568673a394bSEric Anholt * 569673a394bSEric Anholt * Frees the object 570673a394bSEric Anholt */ 571673a394bSEric Anholt void 572673a394bSEric Anholt drm_gem_object_free(struct kref *kref) 573673a394bSEric Anholt { 574673a394bSEric Anholt struct drm_gem_object *obj = (struct drm_gem_object *) kref; 575673a394bSEric Anholt struct drm_device *dev = obj->dev; 576673a394bSEric Anholt 577673a394bSEric Anholt BUG_ON(!mutex_is_locked(&dev->struct_mutex)); 578673a394bSEric Anholt 579673a394bSEric Anholt if (dev->driver->gem_free_object != NULL) 580673a394bSEric Anholt dev->driver->gem_free_object(obj); 581673a394bSEric Anholt } 582673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_free); 583673a394bSEric Anholt 584c3ae90c0SLuca Barbieri static void drm_gem_object_ref_bug(struct kref *list_kref) 585c3ae90c0SLuca Barbieri { 586c3ae90c0SLuca Barbieri BUG(); 587c3ae90c0SLuca Barbieri } 588c3ae90c0SLuca Barbieri 589c3ae90c0SLuca Barbieri /** 590673a394bSEric Anholt * Called after the last handle to the object has been closed 591673a394bSEric Anholt * 592673a394bSEric Anholt * Removes any name for the object. Note that this must be 593673a394bSEric Anholt * called before drm_gem_object_free or we'll be touching 594673a394bSEric Anholt * freed memory 595673a394bSEric Anholt */ 59629d08b3eSDave Airlie void drm_gem_object_handle_free(struct drm_gem_object *obj) 597673a394bSEric Anholt { 598673a394bSEric Anholt struct drm_device *dev = obj->dev; 599673a394bSEric Anholt 600673a394bSEric Anholt /* Remove any name for this object */ 601673a394bSEric Anholt spin_lock(&dev->object_name_lock); 602673a394bSEric Anholt if (obj->name) { 603673a394bSEric Anholt idr_remove(&dev->object_name_idr, obj->name); 6048d59bae5SChris Wilson obj->name = 0; 605673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 606673a394bSEric Anholt /* 607673a394bSEric Anholt * The object name held a reference to this object, drop 608673a394bSEric Anholt * that now. 609c3ae90c0SLuca Barbieri * 610c3ae90c0SLuca Barbieri * This cannot be the last reference, since the handle holds one too. 611673a394bSEric Anholt */ 612c3ae90c0SLuca Barbieri kref_put(&obj->refcount, drm_gem_object_ref_bug); 613673a394bSEric Anholt } else 614673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 615673a394bSEric Anholt 616673a394bSEric Anholt } 617673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_handle_free); 618673a394bSEric Anholt 619ab00b3e5SJesse Barnes void drm_gem_vm_open(struct vm_area_struct *vma) 620ab00b3e5SJesse Barnes { 621ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 622ab00b3e5SJesse Barnes 623ab00b3e5SJesse Barnes drm_gem_object_reference(obj); 62431dfbc93SChris Wilson 62531dfbc93SChris Wilson mutex_lock(&obj->dev->struct_mutex); 626b06d66beSRob Clark drm_vm_open_locked(obj->dev, vma); 62731dfbc93SChris Wilson mutex_unlock(&obj->dev->struct_mutex); 628ab00b3e5SJesse Barnes } 629ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_open); 630ab00b3e5SJesse Barnes 631ab00b3e5SJesse Barnes void drm_gem_vm_close(struct vm_area_struct *vma) 632ab00b3e5SJesse Barnes { 633ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 634b74ad5aeSChris Wilson struct drm_device *dev = obj->dev; 635ab00b3e5SJesse Barnes 636b74ad5aeSChris Wilson mutex_lock(&dev->struct_mutex); 637b06d66beSRob Clark drm_vm_close_locked(obj->dev, vma); 63831dfbc93SChris Wilson drm_gem_object_unreference(obj); 639b74ad5aeSChris Wilson mutex_unlock(&dev->struct_mutex); 640ab00b3e5SJesse Barnes } 641ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_close); 642ab00b3e5SJesse Barnes 6431c5aafa6SLaurent Pinchart /** 6441c5aafa6SLaurent Pinchart * drm_gem_mmap_obj - memory map a GEM object 6451c5aafa6SLaurent Pinchart * @obj: the GEM object to map 6461c5aafa6SLaurent Pinchart * @obj_size: the object size to be mapped, in bytes 6471c5aafa6SLaurent Pinchart * @vma: VMA for the area to be mapped 6481c5aafa6SLaurent Pinchart * 6491c5aafa6SLaurent Pinchart * Set up the VMA to prepare mapping of the GEM object using the gem_vm_ops 6501c5aafa6SLaurent Pinchart * provided by the driver. Depending on their requirements, drivers can either 6511c5aafa6SLaurent Pinchart * provide a fault handler in their gem_vm_ops (in which case any accesses to 6521c5aafa6SLaurent Pinchart * the object will be trapped, to perform migration, GTT binding, surface 6531c5aafa6SLaurent Pinchart * register allocation, or performance monitoring), or mmap the buffer memory 6541c5aafa6SLaurent Pinchart * synchronously after calling drm_gem_mmap_obj. 6551c5aafa6SLaurent Pinchart * 6561c5aafa6SLaurent Pinchart * This function is mainly intended to implement the DMABUF mmap operation, when 6571c5aafa6SLaurent Pinchart * the GEM object is not looked up based on its fake offset. To implement the 6581c5aafa6SLaurent Pinchart * DRM mmap operation, drivers should use the drm_gem_mmap() function. 6591c5aafa6SLaurent Pinchart * 6604368dd84SYoungJun Cho * NOTE: This function has to be protected with dev->struct_mutex 6614368dd84SYoungJun Cho * 6621c5aafa6SLaurent Pinchart * Return 0 or success or -EINVAL if the object size is smaller than the VMA 6631c5aafa6SLaurent Pinchart * size, or if no gem_vm_ops are provided. 6641c5aafa6SLaurent Pinchart */ 6651c5aafa6SLaurent Pinchart int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size, 6661c5aafa6SLaurent Pinchart struct vm_area_struct *vma) 6671c5aafa6SLaurent Pinchart { 6681c5aafa6SLaurent Pinchart struct drm_device *dev = obj->dev; 6691c5aafa6SLaurent Pinchart 6704368dd84SYoungJun Cho lockdep_assert_held(&dev->struct_mutex); 6714368dd84SYoungJun Cho 6721c5aafa6SLaurent Pinchart /* Check for valid size. */ 6731c5aafa6SLaurent Pinchart if (obj_size < vma->vm_end - vma->vm_start) 6741c5aafa6SLaurent Pinchart return -EINVAL; 6751c5aafa6SLaurent Pinchart 6761c5aafa6SLaurent Pinchart if (!dev->driver->gem_vm_ops) 6771c5aafa6SLaurent Pinchart return -EINVAL; 6781c5aafa6SLaurent Pinchart 6791c5aafa6SLaurent Pinchart vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP; 6801c5aafa6SLaurent Pinchart vma->vm_ops = dev->driver->gem_vm_ops; 6811c5aafa6SLaurent Pinchart vma->vm_private_data = obj; 6821c5aafa6SLaurent Pinchart vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); 6831c5aafa6SLaurent Pinchart 6841c5aafa6SLaurent Pinchart /* Take a ref for this mapping of the object, so that the fault 6851c5aafa6SLaurent Pinchart * handler can dereference the mmap offset's pointer to the object. 6861c5aafa6SLaurent Pinchart * This reference is cleaned up by the corresponding vm_close 6871c5aafa6SLaurent Pinchart * (which should happen whether the vma was created by this call, or 6881c5aafa6SLaurent Pinchart * by a vm_open due to mremap or partial unmap or whatever). 6891c5aafa6SLaurent Pinchart */ 6901c5aafa6SLaurent Pinchart drm_gem_object_reference(obj); 6911c5aafa6SLaurent Pinchart 6921c5aafa6SLaurent Pinchart drm_vm_open_locked(dev, vma); 6931c5aafa6SLaurent Pinchart return 0; 6941c5aafa6SLaurent Pinchart } 6951c5aafa6SLaurent Pinchart EXPORT_SYMBOL(drm_gem_mmap_obj); 696ab00b3e5SJesse Barnes 697a2c0a97bSJesse Barnes /** 698a2c0a97bSJesse Barnes * drm_gem_mmap - memory map routine for GEM objects 699a2c0a97bSJesse Barnes * @filp: DRM file pointer 700a2c0a97bSJesse Barnes * @vma: VMA for the area to be mapped 701a2c0a97bSJesse Barnes * 702a2c0a97bSJesse Barnes * If a driver supports GEM object mapping, mmap calls on the DRM file 703a2c0a97bSJesse Barnes * descriptor will end up here. 704a2c0a97bSJesse Barnes * 7051c5aafa6SLaurent Pinchart * Look up the GEM object based on the offset passed in (vma->vm_pgoff will 706a2c0a97bSJesse Barnes * contain the fake offset we created when the GTT map ioctl was called on 7071c5aafa6SLaurent Pinchart * the object) and map it with a call to drm_gem_mmap_obj(). 708a2c0a97bSJesse Barnes */ 709a2c0a97bSJesse Barnes int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) 710a2c0a97bSJesse Barnes { 711a2c0a97bSJesse Barnes struct drm_file *priv = filp->private_data; 712a2c0a97bSJesse Barnes struct drm_device *dev = priv->minor->dev; 713a2c0a97bSJesse Barnes struct drm_gem_mm *mm = dev->mm_private; 714f77d390cSBenjamin Herrenschmidt struct drm_local_map *map = NULL; 715a2c0a97bSJesse Barnes struct drm_hash_item *hash; 716a2c0a97bSJesse Barnes int ret = 0; 717a2c0a97bSJesse Barnes 7182c07a21dSDave Airlie if (drm_device_is_unplugged(dev)) 7192c07a21dSDave Airlie return -ENODEV; 7202c07a21dSDave Airlie 721a2c0a97bSJesse Barnes mutex_lock(&dev->struct_mutex); 722a2c0a97bSJesse Barnes 723a2c0a97bSJesse Barnes if (drm_ht_find_item(&mm->offset_hash, vma->vm_pgoff, &hash)) { 724a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 725a2c0a97bSJesse Barnes return drm_mmap(filp, vma); 726a2c0a97bSJesse Barnes } 727a2c0a97bSJesse Barnes 728a2c0a97bSJesse Barnes map = drm_hash_entry(hash, struct drm_map_list, hash)->map; 729a2c0a97bSJesse Barnes if (!map || 730a2c0a97bSJesse Barnes ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN))) { 731a2c0a97bSJesse Barnes ret = -EPERM; 732a2c0a97bSJesse Barnes goto out_unlock; 733a2c0a97bSJesse Barnes } 734a2c0a97bSJesse Barnes 7351c5aafa6SLaurent Pinchart ret = drm_gem_mmap_obj(map->handle, map->size, vma); 736a2c0a97bSJesse Barnes 737a2c0a97bSJesse Barnes out_unlock: 738a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 739a2c0a97bSJesse Barnes 740a2c0a97bSJesse Barnes return ret; 741a2c0a97bSJesse Barnes } 742a2c0a97bSJesse Barnes EXPORT_SYMBOL(drm_gem_mmap); 743