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> 39673a394bSEric Anholt #include "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 204673a394bSEric Anholt /** 205673a394bSEric Anholt * Removes the mapping from handle to filp for this object. 206673a394bSEric Anholt */ 207ff72145bSDave Airlie int 208a1a2d1d3SPekka Paalanen drm_gem_handle_delete(struct drm_file *filp, u32 handle) 209673a394bSEric Anholt { 210673a394bSEric Anholt struct drm_device *dev; 211673a394bSEric Anholt struct drm_gem_object *obj; 212673a394bSEric Anholt 213673a394bSEric Anholt /* This is gross. The idr system doesn't let us try a delete and 214673a394bSEric Anholt * return an error code. It just spews if you fail at deleting. 215673a394bSEric Anholt * So, we have to grab a lock around finding the object and then 216673a394bSEric Anholt * doing the delete on it and dropping the refcount, or the user 217673a394bSEric Anholt * could race us to double-decrement the refcount and cause a 218673a394bSEric Anholt * use-after-free later. Given the frequency of our handle lookups, 219673a394bSEric Anholt * we may want to use ida for number allocation and a hash table 220673a394bSEric Anholt * for the pointers, anyway. 221673a394bSEric Anholt */ 222673a394bSEric Anholt spin_lock(&filp->table_lock); 223673a394bSEric Anholt 224673a394bSEric Anholt /* Check if we currently have a reference on the object */ 225673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 226673a394bSEric Anholt if (obj == NULL) { 227673a394bSEric Anholt spin_unlock(&filp->table_lock); 228673a394bSEric Anholt return -EINVAL; 229673a394bSEric Anholt } 230673a394bSEric Anholt dev = obj->dev; 231673a394bSEric Anholt 232673a394bSEric Anholt /* Release reference and decrement refcount. */ 233673a394bSEric Anholt idr_remove(&filp->object_idr, handle); 234673a394bSEric Anholt spin_unlock(&filp->table_lock); 235673a394bSEric Anholt 2363248877eSDave Airlie if (obj->import_attach) 2373248877eSDave Airlie drm_prime_remove_imported_buf_handle(&filp->prime, 2383248877eSDave Airlie obj->import_attach->dmabuf); 2393248877eSDave Airlie 240304eda32SBen Skeggs if (dev->driver->gem_close_object) 241304eda32SBen Skeggs dev->driver->gem_close_object(obj, filp); 242bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 243673a394bSEric Anholt 244673a394bSEric Anholt return 0; 245673a394bSEric Anholt } 246ff72145bSDave Airlie EXPORT_SYMBOL(drm_gem_handle_delete); 247673a394bSEric Anholt 248673a394bSEric Anholt /** 249673a394bSEric Anholt * Create a handle for this object. This adds a handle reference 250673a394bSEric Anholt * to the object, which includes a regular reference count. Callers 251673a394bSEric Anholt * will likely want to dereference the object afterwards. 252673a394bSEric Anholt */ 253673a394bSEric Anholt int 254673a394bSEric Anholt drm_gem_handle_create(struct drm_file *file_priv, 255673a394bSEric Anholt struct drm_gem_object *obj, 256a1a2d1d3SPekka Paalanen u32 *handlep) 257673a394bSEric Anholt { 258304eda32SBen Skeggs struct drm_device *dev = obj->dev; 259673a394bSEric Anholt int ret; 260673a394bSEric Anholt 261673a394bSEric Anholt /* 262673a394bSEric Anholt * Get the user-visible handle using idr. 263673a394bSEric Anholt */ 264673a394bSEric Anholt again: 265673a394bSEric Anholt /* ensure there is space available to allocate a handle */ 266673a394bSEric Anholt if (idr_pre_get(&file_priv->object_idr, GFP_KERNEL) == 0) 267673a394bSEric Anholt return -ENOMEM; 268673a394bSEric Anholt 269673a394bSEric Anholt /* do the allocation under our spinlock */ 270673a394bSEric Anholt spin_lock(&file_priv->table_lock); 271a1a2d1d3SPekka Paalanen ret = idr_get_new_above(&file_priv->object_idr, obj, 1, (int *)handlep); 272673a394bSEric Anholt spin_unlock(&file_priv->table_lock); 273673a394bSEric Anholt if (ret == -EAGAIN) 274673a394bSEric Anholt goto again; 275f1ae126cSVille Syrjälä else if (ret) 276673a394bSEric Anholt return ret; 277673a394bSEric Anholt 278673a394bSEric Anholt drm_gem_object_handle_reference(obj); 279304eda32SBen Skeggs 280304eda32SBen Skeggs if (dev->driver->gem_open_object) { 281304eda32SBen Skeggs ret = dev->driver->gem_open_object(obj, file_priv); 282304eda32SBen Skeggs if (ret) { 283304eda32SBen Skeggs drm_gem_handle_delete(file_priv, *handlep); 284304eda32SBen Skeggs return ret; 285304eda32SBen Skeggs } 286304eda32SBen Skeggs } 287304eda32SBen Skeggs 288673a394bSEric Anholt return 0; 289673a394bSEric Anholt } 290673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_handle_create); 291673a394bSEric Anholt 29275ef8b3bSRob Clark 29375ef8b3bSRob Clark /** 29475ef8b3bSRob Clark * drm_gem_free_mmap_offset - release a fake mmap offset for an object 29575ef8b3bSRob Clark * @obj: obj in question 29675ef8b3bSRob Clark * 29775ef8b3bSRob Clark * This routine frees fake offsets allocated by drm_gem_create_mmap_offset(). 29875ef8b3bSRob Clark */ 29975ef8b3bSRob Clark void 30075ef8b3bSRob Clark drm_gem_free_mmap_offset(struct drm_gem_object *obj) 30175ef8b3bSRob Clark { 30275ef8b3bSRob Clark struct drm_device *dev = obj->dev; 30375ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 30475ef8b3bSRob Clark struct drm_map_list *list = &obj->map_list; 30575ef8b3bSRob Clark 30675ef8b3bSRob Clark drm_ht_remove_item(&mm->offset_hash, &list->hash); 30775ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 30875ef8b3bSRob Clark kfree(list->map); 30975ef8b3bSRob Clark list->map = NULL; 31075ef8b3bSRob Clark } 31175ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_free_mmap_offset); 31275ef8b3bSRob Clark 31375ef8b3bSRob Clark /** 31475ef8b3bSRob Clark * drm_gem_create_mmap_offset - create a fake mmap offset for an object 31575ef8b3bSRob Clark * @obj: obj in question 31675ef8b3bSRob Clark * 31775ef8b3bSRob Clark * GEM memory mapping works by handing back to userspace a fake mmap offset 31875ef8b3bSRob Clark * it can use in a subsequent mmap(2) call. The DRM core code then looks 31975ef8b3bSRob Clark * up the object based on the offset and sets up the various memory mapping 32075ef8b3bSRob Clark * structures. 32175ef8b3bSRob Clark * 32275ef8b3bSRob Clark * This routine allocates and attaches a fake offset for @obj. 32375ef8b3bSRob Clark */ 32475ef8b3bSRob Clark int 32575ef8b3bSRob Clark drm_gem_create_mmap_offset(struct drm_gem_object *obj) 32675ef8b3bSRob Clark { 32775ef8b3bSRob Clark struct drm_device *dev = obj->dev; 32875ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 32975ef8b3bSRob Clark struct drm_map_list *list; 33075ef8b3bSRob Clark struct drm_local_map *map; 331*4a1b0714SLaurent Pinchart int ret; 33275ef8b3bSRob Clark 33375ef8b3bSRob Clark /* Set the object up for mmap'ing */ 33475ef8b3bSRob Clark list = &obj->map_list; 33575ef8b3bSRob Clark list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL); 33675ef8b3bSRob Clark if (!list->map) 33775ef8b3bSRob Clark return -ENOMEM; 33875ef8b3bSRob Clark 33975ef8b3bSRob Clark map = list->map; 34075ef8b3bSRob Clark map->type = _DRM_GEM; 34175ef8b3bSRob Clark map->size = obj->size; 34275ef8b3bSRob Clark map->handle = obj; 34375ef8b3bSRob Clark 34475ef8b3bSRob Clark /* Get a DRM GEM mmap offset allocated... */ 34575ef8b3bSRob Clark list->file_offset_node = drm_mm_search_free(&mm->offset_manager, 34675ef8b3bSRob Clark obj->size / PAGE_SIZE, 0, 0); 34775ef8b3bSRob Clark 34875ef8b3bSRob Clark if (!list->file_offset_node) { 34975ef8b3bSRob Clark DRM_ERROR("failed to allocate offset for bo %d\n", obj->name); 35075ef8b3bSRob Clark ret = -ENOSPC; 35175ef8b3bSRob Clark goto out_free_list; 35275ef8b3bSRob Clark } 35375ef8b3bSRob Clark 35475ef8b3bSRob Clark list->file_offset_node = drm_mm_get_block(list->file_offset_node, 35575ef8b3bSRob Clark obj->size / PAGE_SIZE, 0); 35675ef8b3bSRob Clark if (!list->file_offset_node) { 35775ef8b3bSRob Clark ret = -ENOMEM; 35875ef8b3bSRob Clark goto out_free_list; 35975ef8b3bSRob Clark } 36075ef8b3bSRob Clark 36175ef8b3bSRob Clark list->hash.key = list->file_offset_node->start; 36275ef8b3bSRob Clark ret = drm_ht_insert_item(&mm->offset_hash, &list->hash); 36375ef8b3bSRob Clark if (ret) { 36475ef8b3bSRob Clark DRM_ERROR("failed to add to map hash\n"); 36575ef8b3bSRob Clark goto out_free_mm; 36675ef8b3bSRob Clark } 36775ef8b3bSRob Clark 36875ef8b3bSRob Clark return 0; 36975ef8b3bSRob Clark 37075ef8b3bSRob Clark out_free_mm: 37175ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 37275ef8b3bSRob Clark out_free_list: 37375ef8b3bSRob Clark kfree(list->map); 37475ef8b3bSRob Clark list->map = NULL; 37575ef8b3bSRob Clark 37675ef8b3bSRob Clark return ret; 37775ef8b3bSRob Clark } 37875ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_create_mmap_offset); 37975ef8b3bSRob Clark 380673a394bSEric Anholt /** Returns a reference to the object named by the handle. */ 381673a394bSEric Anholt struct drm_gem_object * 382673a394bSEric Anholt drm_gem_object_lookup(struct drm_device *dev, struct drm_file *filp, 383a1a2d1d3SPekka Paalanen u32 handle) 384673a394bSEric Anholt { 385673a394bSEric Anholt struct drm_gem_object *obj; 386673a394bSEric Anholt 387673a394bSEric Anholt spin_lock(&filp->table_lock); 388673a394bSEric Anholt 389673a394bSEric Anholt /* Check if we currently have a reference on the object */ 390673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 391673a394bSEric Anholt if (obj == NULL) { 392673a394bSEric Anholt spin_unlock(&filp->table_lock); 393673a394bSEric Anholt return NULL; 394673a394bSEric Anholt } 395673a394bSEric Anholt 396673a394bSEric Anholt drm_gem_object_reference(obj); 397673a394bSEric Anholt 398673a394bSEric Anholt spin_unlock(&filp->table_lock); 399673a394bSEric Anholt 400673a394bSEric Anholt return obj; 401673a394bSEric Anholt } 402673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_lookup); 403673a394bSEric Anholt 404673a394bSEric Anholt /** 405673a394bSEric Anholt * Releases the handle to an mm object. 406673a394bSEric Anholt */ 407673a394bSEric Anholt int 408673a394bSEric Anholt drm_gem_close_ioctl(struct drm_device *dev, void *data, 409673a394bSEric Anholt struct drm_file *file_priv) 410673a394bSEric Anholt { 411673a394bSEric Anholt struct drm_gem_close *args = data; 412673a394bSEric Anholt int ret; 413673a394bSEric Anholt 414673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 415673a394bSEric Anholt return -ENODEV; 416673a394bSEric Anholt 417673a394bSEric Anholt ret = drm_gem_handle_delete(file_priv, args->handle); 418673a394bSEric Anholt 419673a394bSEric Anholt return ret; 420673a394bSEric Anholt } 421673a394bSEric Anholt 422673a394bSEric Anholt /** 423673a394bSEric Anholt * Create a global name for an object, returning the name. 424673a394bSEric Anholt * 425673a394bSEric Anholt * Note that the name does not hold a reference; when the object 426673a394bSEric Anholt * is freed, the name goes away. 427673a394bSEric Anholt */ 428673a394bSEric Anholt int 429673a394bSEric Anholt drm_gem_flink_ioctl(struct drm_device *dev, void *data, 430673a394bSEric Anholt struct drm_file *file_priv) 431673a394bSEric Anholt { 432673a394bSEric Anholt struct drm_gem_flink *args = data; 433673a394bSEric Anholt struct drm_gem_object *obj; 434673a394bSEric Anholt int ret; 435673a394bSEric Anholt 436673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 437673a394bSEric Anholt return -ENODEV; 438673a394bSEric Anholt 439673a394bSEric Anholt obj = drm_gem_object_lookup(dev, file_priv, args->handle); 440673a394bSEric Anholt if (obj == NULL) 441bf79cb91SChris Wilson return -ENOENT; 442673a394bSEric Anholt 443673a394bSEric Anholt again: 4443e49c4f4SChris Wilson if (idr_pre_get(&dev->object_name_idr, GFP_KERNEL) == 0) { 4453e49c4f4SChris Wilson ret = -ENOMEM; 4463e49c4f4SChris Wilson goto err; 4473e49c4f4SChris Wilson } 448673a394bSEric Anholt 449673a394bSEric Anholt spin_lock(&dev->object_name_lock); 4508d59bae5SChris Wilson if (!obj->name) { 451673a394bSEric Anholt ret = idr_get_new_above(&dev->object_name_idr, obj, 1, 452673a394bSEric Anholt &obj->name); 4538d59bae5SChris Wilson args->name = (uint64_t) obj->name; 454673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 4558d59bae5SChris Wilson 456673a394bSEric Anholt if (ret == -EAGAIN) 457673a394bSEric Anholt goto again; 458f1ae126cSVille Syrjälä else if (ret) 4593e49c4f4SChris Wilson goto err; 460673a394bSEric Anholt 4618d59bae5SChris Wilson /* Allocate a reference for the name table. */ 4628d59bae5SChris Wilson drm_gem_object_reference(obj); 4638d59bae5SChris Wilson } else { 464673a394bSEric Anholt args->name = (uint64_t) obj->name; 4658d59bae5SChris Wilson spin_unlock(&dev->object_name_lock); 4668d59bae5SChris Wilson ret = 0; 4678d59bae5SChris Wilson } 4683e49c4f4SChris Wilson 4693e49c4f4SChris Wilson err: 470bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 4713e49c4f4SChris Wilson return ret; 472673a394bSEric Anholt } 473673a394bSEric Anholt 474673a394bSEric Anholt /** 475673a394bSEric Anholt * Open an object using the global name, returning a handle and the size. 476673a394bSEric Anholt * 477673a394bSEric Anholt * This handle (of course) holds a reference to the object, so the object 478673a394bSEric Anholt * will not go away until the handle is deleted. 479673a394bSEric Anholt */ 480673a394bSEric Anholt int 481673a394bSEric Anholt drm_gem_open_ioctl(struct drm_device *dev, void *data, 482673a394bSEric Anholt struct drm_file *file_priv) 483673a394bSEric Anholt { 484673a394bSEric Anholt struct drm_gem_open *args = data; 485673a394bSEric Anholt struct drm_gem_object *obj; 486673a394bSEric Anholt int ret; 487a1a2d1d3SPekka Paalanen u32 handle; 488673a394bSEric Anholt 489673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 490673a394bSEric Anholt return -ENODEV; 491673a394bSEric Anholt 492673a394bSEric Anholt spin_lock(&dev->object_name_lock); 493673a394bSEric Anholt obj = idr_find(&dev->object_name_idr, (int) args->name); 494673a394bSEric Anholt if (obj) 495673a394bSEric Anholt drm_gem_object_reference(obj); 496673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 497673a394bSEric Anholt if (!obj) 498673a394bSEric Anholt return -ENOENT; 499673a394bSEric Anholt 500673a394bSEric Anholt ret = drm_gem_handle_create(file_priv, obj, &handle); 501bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 502673a394bSEric Anholt if (ret) 503673a394bSEric Anholt return ret; 504673a394bSEric Anholt 505673a394bSEric Anholt args->handle = handle; 506673a394bSEric Anholt args->size = obj->size; 507673a394bSEric Anholt 508673a394bSEric Anholt return 0; 509673a394bSEric Anholt } 510673a394bSEric Anholt 511673a394bSEric Anholt /** 512673a394bSEric Anholt * Called at device open time, sets up the structure for handling refcounting 513673a394bSEric Anholt * of mm objects. 514673a394bSEric Anholt */ 515673a394bSEric Anholt void 516673a394bSEric Anholt drm_gem_open(struct drm_device *dev, struct drm_file *file_private) 517673a394bSEric Anholt { 518673a394bSEric Anholt idr_init(&file_private->object_idr); 519673a394bSEric Anholt spin_lock_init(&file_private->table_lock); 520673a394bSEric Anholt } 521673a394bSEric Anholt 522673a394bSEric Anholt /** 523673a394bSEric Anholt * Called at device close to release the file's 524673a394bSEric Anholt * handle references on objects. 525673a394bSEric Anholt */ 526673a394bSEric Anholt static int 527673a394bSEric Anholt drm_gem_object_release_handle(int id, void *ptr, void *data) 528673a394bSEric Anholt { 529304eda32SBen Skeggs struct drm_file *file_priv = data; 530673a394bSEric Anholt struct drm_gem_object *obj = ptr; 531304eda32SBen Skeggs struct drm_device *dev = obj->dev; 532304eda32SBen Skeggs 5333248877eSDave Airlie if (obj->import_attach) 5343248877eSDave Airlie drm_prime_remove_imported_buf_handle(&file_priv->prime, 5353248877eSDave Airlie obj->import_attach->dmabuf); 5363248877eSDave Airlie 537304eda32SBen Skeggs if (dev->driver->gem_close_object) 538304eda32SBen Skeggs dev->driver->gem_close_object(obj, file_priv); 539673a394bSEric Anholt 540bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 541673a394bSEric Anholt 542673a394bSEric Anholt return 0; 543673a394bSEric Anholt } 544673a394bSEric Anholt 545673a394bSEric Anholt /** 546673a394bSEric Anholt * Called at close time when the filp is going away. 547673a394bSEric Anholt * 548673a394bSEric Anholt * Releases any remaining references on objects by this filp. 549673a394bSEric Anholt */ 550673a394bSEric Anholt void 551673a394bSEric Anholt drm_gem_release(struct drm_device *dev, struct drm_file *file_private) 552673a394bSEric Anholt { 553673a394bSEric Anholt idr_for_each(&file_private->object_idr, 554304eda32SBen Skeggs &drm_gem_object_release_handle, file_private); 555673a394bSEric Anholt 556ddd3d069SChris Wilson idr_remove_all(&file_private->object_idr); 557673a394bSEric Anholt idr_destroy(&file_private->object_idr); 558673a394bSEric Anholt } 559673a394bSEric Anholt 560fd632aa3SDaniel Vetter void 561fd632aa3SDaniel Vetter drm_gem_object_release(struct drm_gem_object *obj) 562c3ae90c0SLuca Barbieri { 56362cb7011SAlan Cox if (obj->filp) 564c3ae90c0SLuca Barbieri fput(obj->filp); 565c3ae90c0SLuca Barbieri } 566fd632aa3SDaniel Vetter EXPORT_SYMBOL(drm_gem_object_release); 567c3ae90c0SLuca Barbieri 568673a394bSEric Anholt /** 569673a394bSEric Anholt * Called after the last reference to the object has been lost. 570c3ae90c0SLuca Barbieri * Must be called holding struct_ mutex 571673a394bSEric Anholt * 572673a394bSEric Anholt * Frees the object 573673a394bSEric Anholt */ 574673a394bSEric Anholt void 575673a394bSEric Anholt drm_gem_object_free(struct kref *kref) 576673a394bSEric Anholt { 577673a394bSEric Anholt struct drm_gem_object *obj = (struct drm_gem_object *) kref; 578673a394bSEric Anholt struct drm_device *dev = obj->dev; 579673a394bSEric Anholt 580673a394bSEric Anholt BUG_ON(!mutex_is_locked(&dev->struct_mutex)); 581673a394bSEric Anholt 582673a394bSEric Anholt if (dev->driver->gem_free_object != NULL) 583673a394bSEric Anholt dev->driver->gem_free_object(obj); 584673a394bSEric Anholt } 585673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_free); 586673a394bSEric Anholt 587c3ae90c0SLuca Barbieri static void drm_gem_object_ref_bug(struct kref *list_kref) 588c3ae90c0SLuca Barbieri { 589c3ae90c0SLuca Barbieri BUG(); 590c3ae90c0SLuca Barbieri } 591c3ae90c0SLuca Barbieri 592c3ae90c0SLuca Barbieri /** 593673a394bSEric Anholt * Called after the last handle to the object has been closed 594673a394bSEric Anholt * 595673a394bSEric Anholt * Removes any name for the object. Note that this must be 596673a394bSEric Anholt * called before drm_gem_object_free or we'll be touching 597673a394bSEric Anholt * freed memory 598673a394bSEric Anholt */ 59929d08b3eSDave Airlie void drm_gem_object_handle_free(struct drm_gem_object *obj) 600673a394bSEric Anholt { 601673a394bSEric Anholt struct drm_device *dev = obj->dev; 602673a394bSEric Anholt 603673a394bSEric Anholt /* Remove any name for this object */ 604673a394bSEric Anholt spin_lock(&dev->object_name_lock); 605673a394bSEric Anholt if (obj->name) { 606673a394bSEric Anholt idr_remove(&dev->object_name_idr, obj->name); 6078d59bae5SChris Wilson obj->name = 0; 608673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 609673a394bSEric Anholt /* 610673a394bSEric Anholt * The object name held a reference to this object, drop 611673a394bSEric Anholt * that now. 612c3ae90c0SLuca Barbieri * 613c3ae90c0SLuca Barbieri * This cannot be the last reference, since the handle holds one too. 614673a394bSEric Anholt */ 615c3ae90c0SLuca Barbieri kref_put(&obj->refcount, drm_gem_object_ref_bug); 616673a394bSEric Anholt } else 617673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 618673a394bSEric Anholt 619673a394bSEric Anholt } 620673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_handle_free); 621673a394bSEric Anholt 622ab00b3e5SJesse Barnes void drm_gem_vm_open(struct vm_area_struct *vma) 623ab00b3e5SJesse Barnes { 624ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 625ab00b3e5SJesse Barnes 626ab00b3e5SJesse Barnes drm_gem_object_reference(obj); 62731dfbc93SChris Wilson 62831dfbc93SChris Wilson mutex_lock(&obj->dev->struct_mutex); 629b06d66beSRob Clark drm_vm_open_locked(obj->dev, vma); 63031dfbc93SChris Wilson mutex_unlock(&obj->dev->struct_mutex); 631ab00b3e5SJesse Barnes } 632ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_open); 633ab00b3e5SJesse Barnes 634ab00b3e5SJesse Barnes void drm_gem_vm_close(struct vm_area_struct *vma) 635ab00b3e5SJesse Barnes { 636ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 637b74ad5aeSChris Wilson struct drm_device *dev = obj->dev; 638ab00b3e5SJesse Barnes 639b74ad5aeSChris Wilson mutex_lock(&dev->struct_mutex); 640b06d66beSRob Clark drm_vm_close_locked(obj->dev, vma); 64131dfbc93SChris Wilson drm_gem_object_unreference(obj); 642b74ad5aeSChris Wilson mutex_unlock(&dev->struct_mutex); 643ab00b3e5SJesse Barnes } 644ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_close); 645ab00b3e5SJesse Barnes 646ab00b3e5SJesse Barnes 647a2c0a97bSJesse Barnes /** 648a2c0a97bSJesse Barnes * drm_gem_mmap - memory map routine for GEM objects 649a2c0a97bSJesse Barnes * @filp: DRM file pointer 650a2c0a97bSJesse Barnes * @vma: VMA for the area to be mapped 651a2c0a97bSJesse Barnes * 652a2c0a97bSJesse Barnes * If a driver supports GEM object mapping, mmap calls on the DRM file 653a2c0a97bSJesse Barnes * descriptor will end up here. 654a2c0a97bSJesse Barnes * 655a2c0a97bSJesse Barnes * If we find the object based on the offset passed in (vma->vm_pgoff will 656a2c0a97bSJesse Barnes * contain the fake offset we created when the GTT map ioctl was called on 657a2c0a97bSJesse Barnes * the object), we set up the driver fault handler so that any accesses 658a2c0a97bSJesse Barnes * to the object can be trapped, to perform migration, GTT binding, surface 659a2c0a97bSJesse Barnes * register allocation, or performance monitoring. 660a2c0a97bSJesse Barnes */ 661a2c0a97bSJesse Barnes int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) 662a2c0a97bSJesse Barnes { 663a2c0a97bSJesse Barnes struct drm_file *priv = filp->private_data; 664a2c0a97bSJesse Barnes struct drm_device *dev = priv->minor->dev; 665a2c0a97bSJesse Barnes struct drm_gem_mm *mm = dev->mm_private; 666f77d390cSBenjamin Herrenschmidt struct drm_local_map *map = NULL; 667a2c0a97bSJesse Barnes struct drm_gem_object *obj; 668a2c0a97bSJesse Barnes struct drm_hash_item *hash; 669a2c0a97bSJesse Barnes int ret = 0; 670a2c0a97bSJesse Barnes 6712c07a21dSDave Airlie if (drm_device_is_unplugged(dev)) 6722c07a21dSDave Airlie return -ENODEV; 6732c07a21dSDave Airlie 674a2c0a97bSJesse Barnes mutex_lock(&dev->struct_mutex); 675a2c0a97bSJesse Barnes 676a2c0a97bSJesse Barnes if (drm_ht_find_item(&mm->offset_hash, vma->vm_pgoff, &hash)) { 677a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 678a2c0a97bSJesse Barnes return drm_mmap(filp, vma); 679a2c0a97bSJesse Barnes } 680a2c0a97bSJesse Barnes 681a2c0a97bSJesse Barnes map = drm_hash_entry(hash, struct drm_map_list, hash)->map; 682a2c0a97bSJesse Barnes if (!map || 683a2c0a97bSJesse Barnes ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN))) { 684a2c0a97bSJesse Barnes ret = -EPERM; 685a2c0a97bSJesse Barnes goto out_unlock; 686a2c0a97bSJesse Barnes } 687a2c0a97bSJesse Barnes 688a2c0a97bSJesse Barnes /* Check for valid size. */ 689a2c0a97bSJesse Barnes if (map->size < vma->vm_end - vma->vm_start) { 690a2c0a97bSJesse Barnes ret = -EINVAL; 691a2c0a97bSJesse Barnes goto out_unlock; 692a2c0a97bSJesse Barnes } 693a2c0a97bSJesse Barnes 694a2c0a97bSJesse Barnes obj = map->handle; 695a2c0a97bSJesse Barnes if (!obj->dev->driver->gem_vm_ops) { 696a2c0a97bSJesse Barnes ret = -EINVAL; 697a2c0a97bSJesse Barnes goto out_unlock; 698a2c0a97bSJesse Barnes } 699a2c0a97bSJesse Barnes 700a2c0a97bSJesse Barnes vma->vm_flags |= VM_RESERVED | VM_IO | VM_PFNMAP | VM_DONTEXPAND; 701a2c0a97bSJesse Barnes vma->vm_ops = obj->dev->driver->gem_vm_ops; 702a2c0a97bSJesse Barnes vma->vm_private_data = map->handle; 70379cc304fSJeremy Fitzhardinge vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); 704a2c0a97bSJesse Barnes 705ab00b3e5SJesse Barnes /* Take a ref for this mapping of the object, so that the fault 706ab00b3e5SJesse Barnes * handler can dereference the mmap offset's pointer to the object. 707ab00b3e5SJesse Barnes * This reference is cleaned up by the corresponding vm_close 708ab00b3e5SJesse Barnes * (which should happen whether the vma was created by this call, or 709ab00b3e5SJesse Barnes * by a vm_open due to mremap or partial unmap or whatever). 710ab00b3e5SJesse Barnes */ 711ab00b3e5SJesse Barnes drm_gem_object_reference(obj); 712ab00b3e5SJesse Barnes 713b06d66beSRob Clark drm_vm_open_locked(dev, vma); 714a2c0a97bSJesse Barnes 715a2c0a97bSJesse Barnes out_unlock: 716a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 717a2c0a97bSJesse Barnes 718a2c0a97bSJesse Barnes return ret; 719a2c0a97bSJesse Barnes } 720a2c0a97bSJesse Barnes EXPORT_SYMBOL(drm_gem_mmap); 721