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> 38673a394bSEric Anholt #include "drmP.h" 39673a394bSEric Anholt 40673a394bSEric Anholt /** @file drm_gem.c 41673a394bSEric Anholt * 42673a394bSEric Anholt * This file provides some of the base ioctls and library routines for 43673a394bSEric Anholt * the graphics memory manager implemented by each device driver. 44673a394bSEric Anholt * 45673a394bSEric Anholt * Because various devices have different requirements in terms of 46673a394bSEric Anholt * synchronization and migration strategies, implementing that is left up to 47673a394bSEric Anholt * the driver, and all that the general API provides should be generic -- 48673a394bSEric Anholt * allocating objects, reading/writing data with the cpu, freeing objects. 49673a394bSEric Anholt * Even there, platform-dependent optimizations for reading/writing data with 50673a394bSEric Anholt * the CPU mean we'll likely hook those out to driver-specific calls. However, 51673a394bSEric Anholt * the DRI2 implementation wants to have at least allocate/mmap be generic. 52673a394bSEric Anholt * 53673a394bSEric Anholt * The goal was to have swap-backed object allocation managed through 54673a394bSEric Anholt * struct file. However, file descriptors as handles to a struct file have 55673a394bSEric Anholt * two major failings: 56673a394bSEric Anholt * - Process limits prevent more than 1024 or so being used at a time by 57673a394bSEric Anholt * default. 58673a394bSEric Anholt * - Inability to allocate high fds will aggravate the X Server's select() 59673a394bSEric Anholt * handling, and likely that of many GL client applications as well. 60673a394bSEric Anholt * 61673a394bSEric Anholt * This led to a plan of using our own integer IDs (called handles, following 62673a394bSEric Anholt * DRM terminology) to mimic fds, and implement the fd syscalls we need as 63673a394bSEric Anholt * ioctls. The objects themselves will still include the struct file so 64673a394bSEric Anholt * that we can transition to fds if the required kernel infrastructure shows 65673a394bSEric Anholt * up at a later date, and as our interface with shmfs for memory allocation. 66673a394bSEric Anholt */ 67673a394bSEric Anholt 68a2c0a97bSJesse Barnes /* 69a2c0a97bSJesse Barnes * We make up offsets for buffer objects so we can recognize them at 70a2c0a97bSJesse Barnes * mmap time. 71a2c0a97bSJesse Barnes */ 7205269a3aSJordan Crouse 7305269a3aSJordan Crouse /* pgoff in mmap is an unsigned long, so we need to make sure that 7405269a3aSJordan Crouse * the faked up offset will fit 7505269a3aSJordan Crouse */ 7605269a3aSJordan Crouse 7705269a3aSJordan Crouse #if BITS_PER_LONG == 64 78a2c0a97bSJesse Barnes #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1) 79a2c0a97bSJesse Barnes #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16) 8005269a3aSJordan Crouse #else 8105269a3aSJordan Crouse #define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1) 8205269a3aSJordan Crouse #define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16) 8305269a3aSJordan Crouse #endif 84a2c0a97bSJesse Barnes 85673a394bSEric Anholt /** 86673a394bSEric Anholt * Initialize the GEM device fields 87673a394bSEric Anholt */ 88673a394bSEric Anholt 89673a394bSEric Anholt int 90673a394bSEric Anholt drm_gem_init(struct drm_device *dev) 91673a394bSEric Anholt { 92a2c0a97bSJesse Barnes struct drm_gem_mm *mm; 93a2c0a97bSJesse Barnes 94673a394bSEric Anholt spin_lock_init(&dev->object_name_lock); 95673a394bSEric Anholt idr_init(&dev->object_name_idr); 96a2c0a97bSJesse Barnes 979a298b2aSEric Anholt mm = kzalloc(sizeof(struct drm_gem_mm), GFP_KERNEL); 98a2c0a97bSJesse Barnes if (!mm) { 99a2c0a97bSJesse Barnes DRM_ERROR("out of memory\n"); 100a2c0a97bSJesse Barnes return -ENOMEM; 101a2c0a97bSJesse Barnes } 102a2c0a97bSJesse Barnes 103a2c0a97bSJesse Barnes dev->mm_private = mm; 104a2c0a97bSJesse Barnes 1054cb81ac2SChris Wilson if (drm_ht_create(&mm->offset_hash, 12)) { 1069a298b2aSEric Anholt kfree(mm); 107a2c0a97bSJesse Barnes return -ENOMEM; 108a2c0a97bSJesse Barnes } 109a2c0a97bSJesse Barnes 110a2c0a97bSJesse Barnes if (drm_mm_init(&mm->offset_manager, DRM_FILE_PAGE_OFFSET_START, 111a2c0a97bSJesse Barnes DRM_FILE_PAGE_OFFSET_SIZE)) { 112a2c0a97bSJesse Barnes drm_ht_remove(&mm->offset_hash); 1139a298b2aSEric Anholt kfree(mm); 114a2c0a97bSJesse Barnes return -ENOMEM; 115a2c0a97bSJesse Barnes } 116a2c0a97bSJesse Barnes 117673a394bSEric Anholt return 0; 118673a394bSEric Anholt } 119673a394bSEric Anholt 120a2c0a97bSJesse Barnes void 121a2c0a97bSJesse Barnes drm_gem_destroy(struct drm_device *dev) 122a2c0a97bSJesse Barnes { 123a2c0a97bSJesse Barnes struct drm_gem_mm *mm = dev->mm_private; 124a2c0a97bSJesse Barnes 125a2c0a97bSJesse Barnes drm_mm_takedown(&mm->offset_manager); 126a2c0a97bSJesse Barnes drm_ht_remove(&mm->offset_hash); 1279a298b2aSEric Anholt kfree(mm); 128a2c0a97bSJesse Barnes dev->mm_private = NULL; 129a2c0a97bSJesse Barnes } 130a2c0a97bSJesse Barnes 131673a394bSEric Anholt /** 13262cb7011SAlan Cox * Initialize an already allocated GEM object of the specified size with 1331d397043SDaniel Vetter * shmfs backing store. 1341d397043SDaniel Vetter */ 1351d397043SDaniel Vetter int drm_gem_object_init(struct drm_device *dev, 1361d397043SDaniel Vetter struct drm_gem_object *obj, size_t size) 1371d397043SDaniel Vetter { 1381d397043SDaniel Vetter BUG_ON((size & (PAGE_SIZE - 1)) != 0); 1391d397043SDaniel Vetter 1401d397043SDaniel Vetter obj->dev = dev; 1411d397043SDaniel Vetter obj->filp = shmem_file_setup("drm mm object", size, VM_NORESERVE); 1421d397043SDaniel Vetter if (IS_ERR(obj->filp)) 1431d397043SDaniel Vetter return -ENOMEM; 1441d397043SDaniel Vetter 1451d397043SDaniel Vetter kref_init(&obj->refcount); 14629d08b3eSDave Airlie atomic_set(&obj->handle_count, 0); 1471d397043SDaniel Vetter obj->size = size; 1481d397043SDaniel Vetter 1491d397043SDaniel Vetter return 0; 1501d397043SDaniel Vetter } 1511d397043SDaniel Vetter EXPORT_SYMBOL(drm_gem_object_init); 1521d397043SDaniel Vetter 1531d397043SDaniel Vetter /** 15462cb7011SAlan Cox * Initialize an already allocated GEM object of the specified size with 15562cb7011SAlan Cox * no GEM provided backing store. Instead the caller is responsible for 15662cb7011SAlan Cox * backing the object and handling it. 15762cb7011SAlan Cox */ 15862cb7011SAlan Cox int drm_gem_private_object_init(struct drm_device *dev, 15962cb7011SAlan Cox struct drm_gem_object *obj, size_t size) 16062cb7011SAlan Cox { 16162cb7011SAlan Cox BUG_ON((size & (PAGE_SIZE - 1)) != 0); 16262cb7011SAlan Cox 16362cb7011SAlan Cox obj->dev = dev; 16462cb7011SAlan Cox obj->filp = NULL; 16562cb7011SAlan Cox 16662cb7011SAlan Cox kref_init(&obj->refcount); 16762cb7011SAlan Cox atomic_set(&obj->handle_count, 0); 16862cb7011SAlan Cox obj->size = size; 16962cb7011SAlan Cox 17062cb7011SAlan Cox return 0; 17162cb7011SAlan Cox } 17262cb7011SAlan Cox EXPORT_SYMBOL(drm_gem_private_object_init); 17362cb7011SAlan Cox 17462cb7011SAlan Cox /** 175673a394bSEric Anholt * Allocate a GEM object of the specified size with shmfs backing store 176673a394bSEric Anholt */ 177673a394bSEric Anholt struct drm_gem_object * 178673a394bSEric Anholt drm_gem_object_alloc(struct drm_device *dev, size_t size) 179673a394bSEric Anholt { 180673a394bSEric Anholt struct drm_gem_object *obj; 181673a394bSEric Anholt 182b798b1feSRobert P. J. Day obj = kzalloc(sizeof(*obj), GFP_KERNEL); 183845792d9SJiri Slaby if (!obj) 184845792d9SJiri Slaby goto free; 185673a394bSEric Anholt 1861d397043SDaniel Vetter if (drm_gem_object_init(dev, obj, size) != 0) 187845792d9SJiri Slaby goto free; 188673a394bSEric Anholt 189673a394bSEric Anholt if (dev->driver->gem_init_object != NULL && 190673a394bSEric Anholt dev->driver->gem_init_object(obj) != 0) { 191845792d9SJiri Slaby goto fput; 192673a394bSEric Anholt } 193673a394bSEric Anholt return obj; 194845792d9SJiri Slaby fput: 1951d397043SDaniel Vetter /* Object_init mangles the global counters - readjust them. */ 196845792d9SJiri Slaby fput(obj->filp); 197845792d9SJiri Slaby free: 198845792d9SJiri Slaby kfree(obj); 199845792d9SJiri Slaby return NULL; 200673a394bSEric Anholt } 201673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_alloc); 202673a394bSEric Anholt 203673a394bSEric Anholt /** 204673a394bSEric Anholt * Removes the mapping from handle to filp for this object. 205673a394bSEric Anholt */ 206ff72145bSDave Airlie int 207a1a2d1d3SPekka Paalanen drm_gem_handle_delete(struct drm_file *filp, u32 handle) 208673a394bSEric Anholt { 209673a394bSEric Anholt struct drm_device *dev; 210673a394bSEric Anholt struct drm_gem_object *obj; 211673a394bSEric Anholt 212673a394bSEric Anholt /* This is gross. The idr system doesn't let us try a delete and 213673a394bSEric Anholt * return an error code. It just spews if you fail at deleting. 214673a394bSEric Anholt * So, we have to grab a lock around finding the object and then 215673a394bSEric Anholt * doing the delete on it and dropping the refcount, or the user 216673a394bSEric Anholt * could race us to double-decrement the refcount and cause a 217673a394bSEric Anholt * use-after-free later. Given the frequency of our handle lookups, 218673a394bSEric Anholt * we may want to use ida for number allocation and a hash table 219673a394bSEric Anholt * for the pointers, anyway. 220673a394bSEric Anholt */ 221673a394bSEric Anholt spin_lock(&filp->table_lock); 222673a394bSEric Anholt 223673a394bSEric Anholt /* Check if we currently have a reference on the object */ 224673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 225673a394bSEric Anholt if (obj == NULL) { 226673a394bSEric Anholt spin_unlock(&filp->table_lock); 227673a394bSEric Anholt return -EINVAL; 228673a394bSEric Anholt } 229673a394bSEric Anholt dev = obj->dev; 230673a394bSEric Anholt 231673a394bSEric Anholt /* Release reference and decrement refcount. */ 232673a394bSEric Anholt idr_remove(&filp->object_idr, handle); 233673a394bSEric Anholt spin_unlock(&filp->table_lock); 234673a394bSEric Anholt 235304eda32SBen Skeggs if (dev->driver->gem_close_object) 236304eda32SBen Skeggs dev->driver->gem_close_object(obj, filp); 237bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 238673a394bSEric Anholt 239673a394bSEric Anholt return 0; 240673a394bSEric Anholt } 241ff72145bSDave Airlie EXPORT_SYMBOL(drm_gem_handle_delete); 242673a394bSEric Anholt 243673a394bSEric Anholt /** 244673a394bSEric Anholt * Create a handle for this object. This adds a handle reference 245673a394bSEric Anholt * to the object, which includes a regular reference count. Callers 246673a394bSEric Anholt * will likely want to dereference the object afterwards. 247673a394bSEric Anholt */ 248673a394bSEric Anholt int 249673a394bSEric Anholt drm_gem_handle_create(struct drm_file *file_priv, 250673a394bSEric Anholt struct drm_gem_object *obj, 251a1a2d1d3SPekka Paalanen u32 *handlep) 252673a394bSEric Anholt { 253304eda32SBen Skeggs struct drm_device *dev = obj->dev; 254673a394bSEric Anholt int ret; 255673a394bSEric Anholt 256673a394bSEric Anholt /* 257673a394bSEric Anholt * Get the user-visible handle using idr. 258673a394bSEric Anholt */ 259673a394bSEric Anholt again: 260673a394bSEric Anholt /* ensure there is space available to allocate a handle */ 261673a394bSEric Anholt if (idr_pre_get(&file_priv->object_idr, GFP_KERNEL) == 0) 262673a394bSEric Anholt return -ENOMEM; 263673a394bSEric Anholt 264673a394bSEric Anholt /* do the allocation under our spinlock */ 265673a394bSEric Anholt spin_lock(&file_priv->table_lock); 266a1a2d1d3SPekka Paalanen ret = idr_get_new_above(&file_priv->object_idr, obj, 1, (int *)handlep); 267673a394bSEric Anholt spin_unlock(&file_priv->table_lock); 268673a394bSEric Anholt if (ret == -EAGAIN) 269673a394bSEric Anholt goto again; 270673a394bSEric Anholt 271673a394bSEric Anholt if (ret != 0) 272673a394bSEric Anholt return ret; 273673a394bSEric Anholt 274673a394bSEric Anholt drm_gem_object_handle_reference(obj); 275304eda32SBen Skeggs 276304eda32SBen Skeggs if (dev->driver->gem_open_object) { 277304eda32SBen Skeggs ret = dev->driver->gem_open_object(obj, file_priv); 278304eda32SBen Skeggs if (ret) { 279304eda32SBen Skeggs drm_gem_handle_delete(file_priv, *handlep); 280304eda32SBen Skeggs return ret; 281304eda32SBen Skeggs } 282304eda32SBen Skeggs } 283304eda32SBen Skeggs 284673a394bSEric Anholt return 0; 285673a394bSEric Anholt } 286673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_handle_create); 287673a394bSEric Anholt 288*75ef8b3bSRob Clark 289*75ef8b3bSRob Clark /** 290*75ef8b3bSRob Clark * drm_gem_free_mmap_offset - release a fake mmap offset for an object 291*75ef8b3bSRob Clark * @obj: obj in question 292*75ef8b3bSRob Clark * 293*75ef8b3bSRob Clark * This routine frees fake offsets allocated by drm_gem_create_mmap_offset(). 294*75ef8b3bSRob Clark */ 295*75ef8b3bSRob Clark void 296*75ef8b3bSRob Clark drm_gem_free_mmap_offset(struct drm_gem_object *obj) 297*75ef8b3bSRob Clark { 298*75ef8b3bSRob Clark struct drm_device *dev = obj->dev; 299*75ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 300*75ef8b3bSRob Clark struct drm_map_list *list = &obj->map_list; 301*75ef8b3bSRob Clark 302*75ef8b3bSRob Clark drm_ht_remove_item(&mm->offset_hash, &list->hash); 303*75ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 304*75ef8b3bSRob Clark kfree(list->map); 305*75ef8b3bSRob Clark list->map = NULL; 306*75ef8b3bSRob Clark } 307*75ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_free_mmap_offset); 308*75ef8b3bSRob Clark 309*75ef8b3bSRob Clark /** 310*75ef8b3bSRob Clark * drm_gem_create_mmap_offset - create a fake mmap offset for an object 311*75ef8b3bSRob Clark * @obj: obj in question 312*75ef8b3bSRob Clark * 313*75ef8b3bSRob Clark * GEM memory mapping works by handing back to userspace a fake mmap offset 314*75ef8b3bSRob Clark * it can use in a subsequent mmap(2) call. The DRM core code then looks 315*75ef8b3bSRob Clark * up the object based on the offset and sets up the various memory mapping 316*75ef8b3bSRob Clark * structures. 317*75ef8b3bSRob Clark * 318*75ef8b3bSRob Clark * This routine allocates and attaches a fake offset for @obj. 319*75ef8b3bSRob Clark */ 320*75ef8b3bSRob Clark int 321*75ef8b3bSRob Clark drm_gem_create_mmap_offset(struct drm_gem_object *obj) 322*75ef8b3bSRob Clark { 323*75ef8b3bSRob Clark struct drm_device *dev = obj->dev; 324*75ef8b3bSRob Clark struct drm_gem_mm *mm = dev->mm_private; 325*75ef8b3bSRob Clark struct drm_map_list *list; 326*75ef8b3bSRob Clark struct drm_local_map *map; 327*75ef8b3bSRob Clark int ret = 0; 328*75ef8b3bSRob Clark 329*75ef8b3bSRob Clark /* Set the object up for mmap'ing */ 330*75ef8b3bSRob Clark list = &obj->map_list; 331*75ef8b3bSRob Clark list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL); 332*75ef8b3bSRob Clark if (!list->map) 333*75ef8b3bSRob Clark return -ENOMEM; 334*75ef8b3bSRob Clark 335*75ef8b3bSRob Clark map = list->map; 336*75ef8b3bSRob Clark map->type = _DRM_GEM; 337*75ef8b3bSRob Clark map->size = obj->size; 338*75ef8b3bSRob Clark map->handle = obj; 339*75ef8b3bSRob Clark 340*75ef8b3bSRob Clark /* Get a DRM GEM mmap offset allocated... */ 341*75ef8b3bSRob Clark list->file_offset_node = drm_mm_search_free(&mm->offset_manager, 342*75ef8b3bSRob Clark obj->size / PAGE_SIZE, 0, 0); 343*75ef8b3bSRob Clark 344*75ef8b3bSRob Clark if (!list->file_offset_node) { 345*75ef8b3bSRob Clark DRM_ERROR("failed to allocate offset for bo %d\n", obj->name); 346*75ef8b3bSRob Clark ret = -ENOSPC; 347*75ef8b3bSRob Clark goto out_free_list; 348*75ef8b3bSRob Clark } 349*75ef8b3bSRob Clark 350*75ef8b3bSRob Clark list->file_offset_node = drm_mm_get_block(list->file_offset_node, 351*75ef8b3bSRob Clark obj->size / PAGE_SIZE, 0); 352*75ef8b3bSRob Clark if (!list->file_offset_node) { 353*75ef8b3bSRob Clark ret = -ENOMEM; 354*75ef8b3bSRob Clark goto out_free_list; 355*75ef8b3bSRob Clark } 356*75ef8b3bSRob Clark 357*75ef8b3bSRob Clark list->hash.key = list->file_offset_node->start; 358*75ef8b3bSRob Clark ret = drm_ht_insert_item(&mm->offset_hash, &list->hash); 359*75ef8b3bSRob Clark if (ret) { 360*75ef8b3bSRob Clark DRM_ERROR("failed to add to map hash\n"); 361*75ef8b3bSRob Clark goto out_free_mm; 362*75ef8b3bSRob Clark } 363*75ef8b3bSRob Clark 364*75ef8b3bSRob Clark return 0; 365*75ef8b3bSRob Clark 366*75ef8b3bSRob Clark out_free_mm: 367*75ef8b3bSRob Clark drm_mm_put_block(list->file_offset_node); 368*75ef8b3bSRob Clark out_free_list: 369*75ef8b3bSRob Clark kfree(list->map); 370*75ef8b3bSRob Clark list->map = NULL; 371*75ef8b3bSRob Clark 372*75ef8b3bSRob Clark return ret; 373*75ef8b3bSRob Clark } 374*75ef8b3bSRob Clark EXPORT_SYMBOL(drm_gem_create_mmap_offset); 375*75ef8b3bSRob Clark 376673a394bSEric Anholt /** Returns a reference to the object named by the handle. */ 377673a394bSEric Anholt struct drm_gem_object * 378673a394bSEric Anholt drm_gem_object_lookup(struct drm_device *dev, struct drm_file *filp, 379a1a2d1d3SPekka Paalanen u32 handle) 380673a394bSEric Anholt { 381673a394bSEric Anholt struct drm_gem_object *obj; 382673a394bSEric Anholt 383673a394bSEric Anholt spin_lock(&filp->table_lock); 384673a394bSEric Anholt 385673a394bSEric Anholt /* Check if we currently have a reference on the object */ 386673a394bSEric Anholt obj = idr_find(&filp->object_idr, handle); 387673a394bSEric Anholt if (obj == NULL) { 388673a394bSEric Anholt spin_unlock(&filp->table_lock); 389673a394bSEric Anholt return NULL; 390673a394bSEric Anholt } 391673a394bSEric Anholt 392673a394bSEric Anholt drm_gem_object_reference(obj); 393673a394bSEric Anholt 394673a394bSEric Anholt spin_unlock(&filp->table_lock); 395673a394bSEric Anholt 396673a394bSEric Anholt return obj; 397673a394bSEric Anholt } 398673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_lookup); 399673a394bSEric Anholt 400673a394bSEric Anholt /** 401673a394bSEric Anholt * Releases the handle to an mm object. 402673a394bSEric Anholt */ 403673a394bSEric Anholt int 404673a394bSEric Anholt drm_gem_close_ioctl(struct drm_device *dev, void *data, 405673a394bSEric Anholt struct drm_file *file_priv) 406673a394bSEric Anholt { 407673a394bSEric Anholt struct drm_gem_close *args = data; 408673a394bSEric Anholt int ret; 409673a394bSEric Anholt 410673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 411673a394bSEric Anholt return -ENODEV; 412673a394bSEric Anholt 413673a394bSEric Anholt ret = drm_gem_handle_delete(file_priv, args->handle); 414673a394bSEric Anholt 415673a394bSEric Anholt return ret; 416673a394bSEric Anholt } 417673a394bSEric Anholt 418673a394bSEric Anholt /** 419673a394bSEric Anholt * Create a global name for an object, returning the name. 420673a394bSEric Anholt * 421673a394bSEric Anholt * Note that the name does not hold a reference; when the object 422673a394bSEric Anholt * is freed, the name goes away. 423673a394bSEric Anholt */ 424673a394bSEric Anholt int 425673a394bSEric Anholt drm_gem_flink_ioctl(struct drm_device *dev, void *data, 426673a394bSEric Anholt struct drm_file *file_priv) 427673a394bSEric Anholt { 428673a394bSEric Anholt struct drm_gem_flink *args = data; 429673a394bSEric Anholt struct drm_gem_object *obj; 430673a394bSEric Anholt int ret; 431673a394bSEric Anholt 432673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 433673a394bSEric Anholt return -ENODEV; 434673a394bSEric Anholt 435673a394bSEric Anholt obj = drm_gem_object_lookup(dev, file_priv, args->handle); 436673a394bSEric Anholt if (obj == NULL) 437bf79cb91SChris Wilson return -ENOENT; 438673a394bSEric Anholt 439673a394bSEric Anholt again: 4403e49c4f4SChris Wilson if (idr_pre_get(&dev->object_name_idr, GFP_KERNEL) == 0) { 4413e49c4f4SChris Wilson ret = -ENOMEM; 4423e49c4f4SChris Wilson goto err; 4433e49c4f4SChris Wilson } 444673a394bSEric Anholt 445673a394bSEric Anholt spin_lock(&dev->object_name_lock); 4468d59bae5SChris Wilson if (!obj->name) { 447673a394bSEric Anholt ret = idr_get_new_above(&dev->object_name_idr, obj, 1, 448673a394bSEric Anholt &obj->name); 4498d59bae5SChris Wilson args->name = (uint64_t) obj->name; 450673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 4518d59bae5SChris Wilson 452673a394bSEric Anholt if (ret == -EAGAIN) 453673a394bSEric Anholt goto again; 454673a394bSEric Anholt 4553e49c4f4SChris Wilson if (ret != 0) 4563e49c4f4SChris Wilson goto err; 457673a394bSEric Anholt 4588d59bae5SChris Wilson /* Allocate a reference for the name table. */ 4598d59bae5SChris Wilson drm_gem_object_reference(obj); 4608d59bae5SChris Wilson } else { 461673a394bSEric Anholt args->name = (uint64_t) obj->name; 4628d59bae5SChris Wilson spin_unlock(&dev->object_name_lock); 4638d59bae5SChris Wilson ret = 0; 4648d59bae5SChris Wilson } 4653e49c4f4SChris Wilson 4663e49c4f4SChris Wilson err: 467bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 4683e49c4f4SChris Wilson return ret; 469673a394bSEric Anholt } 470673a394bSEric Anholt 471673a394bSEric Anholt /** 472673a394bSEric Anholt * Open an object using the global name, returning a handle and the size. 473673a394bSEric Anholt * 474673a394bSEric Anholt * This handle (of course) holds a reference to the object, so the object 475673a394bSEric Anholt * will not go away until the handle is deleted. 476673a394bSEric Anholt */ 477673a394bSEric Anholt int 478673a394bSEric Anholt drm_gem_open_ioctl(struct drm_device *dev, void *data, 479673a394bSEric Anholt struct drm_file *file_priv) 480673a394bSEric Anholt { 481673a394bSEric Anholt struct drm_gem_open *args = data; 482673a394bSEric Anholt struct drm_gem_object *obj; 483673a394bSEric Anholt int ret; 484a1a2d1d3SPekka Paalanen u32 handle; 485673a394bSEric Anholt 486673a394bSEric Anholt if (!(dev->driver->driver_features & DRIVER_GEM)) 487673a394bSEric Anholt return -ENODEV; 488673a394bSEric Anholt 489673a394bSEric Anholt spin_lock(&dev->object_name_lock); 490673a394bSEric Anholt obj = idr_find(&dev->object_name_idr, (int) args->name); 491673a394bSEric Anholt if (obj) 492673a394bSEric Anholt drm_gem_object_reference(obj); 493673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 494673a394bSEric Anholt if (!obj) 495673a394bSEric Anholt return -ENOENT; 496673a394bSEric Anholt 497673a394bSEric Anholt ret = drm_gem_handle_create(file_priv, obj, &handle); 498bc9025bdSLuca Barbieri drm_gem_object_unreference_unlocked(obj); 499673a394bSEric Anholt if (ret) 500673a394bSEric Anholt return ret; 501673a394bSEric Anholt 502673a394bSEric Anholt args->handle = handle; 503673a394bSEric Anholt args->size = obj->size; 504673a394bSEric Anholt 505673a394bSEric Anholt return 0; 506673a394bSEric Anholt } 507673a394bSEric Anholt 508673a394bSEric Anholt /** 509673a394bSEric Anholt * Called at device open time, sets up the structure for handling refcounting 510673a394bSEric Anholt * of mm objects. 511673a394bSEric Anholt */ 512673a394bSEric Anholt void 513673a394bSEric Anholt drm_gem_open(struct drm_device *dev, struct drm_file *file_private) 514673a394bSEric Anholt { 515673a394bSEric Anholt idr_init(&file_private->object_idr); 516673a394bSEric Anholt spin_lock_init(&file_private->table_lock); 517673a394bSEric Anholt } 518673a394bSEric Anholt 519673a394bSEric Anholt /** 520673a394bSEric Anholt * Called at device close to release the file's 521673a394bSEric Anholt * handle references on objects. 522673a394bSEric Anholt */ 523673a394bSEric Anholt static int 524673a394bSEric Anholt drm_gem_object_release_handle(int id, void *ptr, void *data) 525673a394bSEric Anholt { 526304eda32SBen Skeggs struct drm_file *file_priv = data; 527673a394bSEric Anholt struct drm_gem_object *obj = ptr; 528304eda32SBen Skeggs struct drm_device *dev = obj->dev; 529304eda32SBen Skeggs 530304eda32SBen Skeggs if (dev->driver->gem_close_object) 531304eda32SBen Skeggs dev->driver->gem_close_object(obj, file_priv); 532673a394bSEric Anholt 533bc9025bdSLuca Barbieri drm_gem_object_handle_unreference_unlocked(obj); 534673a394bSEric Anholt 535673a394bSEric Anholt return 0; 536673a394bSEric Anholt } 537673a394bSEric Anholt 538673a394bSEric Anholt /** 539673a394bSEric Anholt * Called at close time when the filp is going away. 540673a394bSEric Anholt * 541673a394bSEric Anholt * Releases any remaining references on objects by this filp. 542673a394bSEric Anholt */ 543673a394bSEric Anholt void 544673a394bSEric Anholt drm_gem_release(struct drm_device *dev, struct drm_file *file_private) 545673a394bSEric Anholt { 546673a394bSEric Anholt idr_for_each(&file_private->object_idr, 547304eda32SBen Skeggs &drm_gem_object_release_handle, file_private); 548673a394bSEric Anholt 549ddd3d069SChris Wilson idr_remove_all(&file_private->object_idr); 550673a394bSEric Anholt idr_destroy(&file_private->object_idr); 551673a394bSEric Anholt } 552673a394bSEric Anholt 553fd632aa3SDaniel Vetter void 554fd632aa3SDaniel Vetter drm_gem_object_release(struct drm_gem_object *obj) 555c3ae90c0SLuca Barbieri { 55662cb7011SAlan Cox if (obj->filp) 557c3ae90c0SLuca Barbieri fput(obj->filp); 558c3ae90c0SLuca Barbieri } 559fd632aa3SDaniel Vetter EXPORT_SYMBOL(drm_gem_object_release); 560c3ae90c0SLuca Barbieri 561673a394bSEric Anholt /** 562673a394bSEric Anholt * Called after the last reference to the object has been lost. 563c3ae90c0SLuca Barbieri * Must be called holding struct_ mutex 564673a394bSEric Anholt * 565673a394bSEric Anholt * Frees the object 566673a394bSEric Anholt */ 567673a394bSEric Anholt void 568673a394bSEric Anholt drm_gem_object_free(struct kref *kref) 569673a394bSEric Anholt { 570673a394bSEric Anholt struct drm_gem_object *obj = (struct drm_gem_object *) kref; 571673a394bSEric Anholt struct drm_device *dev = obj->dev; 572673a394bSEric Anholt 573673a394bSEric Anholt BUG_ON(!mutex_is_locked(&dev->struct_mutex)); 574673a394bSEric Anholt 575673a394bSEric Anholt if (dev->driver->gem_free_object != NULL) 576673a394bSEric Anholt dev->driver->gem_free_object(obj); 577673a394bSEric Anholt } 578673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_free); 579673a394bSEric Anholt 580c3ae90c0SLuca Barbieri static void drm_gem_object_ref_bug(struct kref *list_kref) 581c3ae90c0SLuca Barbieri { 582c3ae90c0SLuca Barbieri BUG(); 583c3ae90c0SLuca Barbieri } 584c3ae90c0SLuca Barbieri 585c3ae90c0SLuca Barbieri /** 586673a394bSEric Anholt * Called after the last handle to the object has been closed 587673a394bSEric Anholt * 588673a394bSEric Anholt * Removes any name for the object. Note that this must be 589673a394bSEric Anholt * called before drm_gem_object_free or we'll be touching 590673a394bSEric Anholt * freed memory 591673a394bSEric Anholt */ 59229d08b3eSDave Airlie void drm_gem_object_handle_free(struct drm_gem_object *obj) 593673a394bSEric Anholt { 594673a394bSEric Anholt struct drm_device *dev = obj->dev; 595673a394bSEric Anholt 596673a394bSEric Anholt /* Remove any name for this object */ 597673a394bSEric Anholt spin_lock(&dev->object_name_lock); 598673a394bSEric Anholt if (obj->name) { 599673a394bSEric Anholt idr_remove(&dev->object_name_idr, obj->name); 6008d59bae5SChris Wilson obj->name = 0; 601673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 602673a394bSEric Anholt /* 603673a394bSEric Anholt * The object name held a reference to this object, drop 604673a394bSEric Anholt * that now. 605c3ae90c0SLuca Barbieri * 606c3ae90c0SLuca Barbieri * This cannot be the last reference, since the handle holds one too. 607673a394bSEric Anholt */ 608c3ae90c0SLuca Barbieri kref_put(&obj->refcount, drm_gem_object_ref_bug); 609673a394bSEric Anholt } else 610673a394bSEric Anholt spin_unlock(&dev->object_name_lock); 611673a394bSEric Anholt 612673a394bSEric Anholt } 613673a394bSEric Anholt EXPORT_SYMBOL(drm_gem_object_handle_free); 614673a394bSEric Anholt 615ab00b3e5SJesse Barnes void drm_gem_vm_open(struct vm_area_struct *vma) 616ab00b3e5SJesse Barnes { 617ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 618ab00b3e5SJesse Barnes 619ab00b3e5SJesse Barnes drm_gem_object_reference(obj); 62031dfbc93SChris Wilson 62131dfbc93SChris Wilson mutex_lock(&obj->dev->struct_mutex); 62231dfbc93SChris Wilson drm_vm_open_locked(vma); 62331dfbc93SChris Wilson mutex_unlock(&obj->dev->struct_mutex); 624ab00b3e5SJesse Barnes } 625ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_open); 626ab00b3e5SJesse Barnes 627ab00b3e5SJesse Barnes void drm_gem_vm_close(struct vm_area_struct *vma) 628ab00b3e5SJesse Barnes { 629ab00b3e5SJesse Barnes struct drm_gem_object *obj = vma->vm_private_data; 630b74ad5aeSChris Wilson struct drm_device *dev = obj->dev; 631ab00b3e5SJesse Barnes 632b74ad5aeSChris Wilson mutex_lock(&dev->struct_mutex); 63331dfbc93SChris Wilson drm_vm_close_locked(vma); 63431dfbc93SChris Wilson drm_gem_object_unreference(obj); 635b74ad5aeSChris Wilson mutex_unlock(&dev->struct_mutex); 636ab00b3e5SJesse Barnes } 637ab00b3e5SJesse Barnes EXPORT_SYMBOL(drm_gem_vm_close); 638ab00b3e5SJesse Barnes 639ab00b3e5SJesse Barnes 640a2c0a97bSJesse Barnes /** 641a2c0a97bSJesse Barnes * drm_gem_mmap - memory map routine for GEM objects 642a2c0a97bSJesse Barnes * @filp: DRM file pointer 643a2c0a97bSJesse Barnes * @vma: VMA for the area to be mapped 644a2c0a97bSJesse Barnes * 645a2c0a97bSJesse Barnes * If a driver supports GEM object mapping, mmap calls on the DRM file 646a2c0a97bSJesse Barnes * descriptor will end up here. 647a2c0a97bSJesse Barnes * 648a2c0a97bSJesse Barnes * If we find the object based on the offset passed in (vma->vm_pgoff will 649a2c0a97bSJesse Barnes * contain the fake offset we created when the GTT map ioctl was called on 650a2c0a97bSJesse Barnes * the object), we set up the driver fault handler so that any accesses 651a2c0a97bSJesse Barnes * to the object can be trapped, to perform migration, GTT binding, surface 652a2c0a97bSJesse Barnes * register allocation, or performance monitoring. 653a2c0a97bSJesse Barnes */ 654a2c0a97bSJesse Barnes int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) 655a2c0a97bSJesse Barnes { 656a2c0a97bSJesse Barnes struct drm_file *priv = filp->private_data; 657a2c0a97bSJesse Barnes struct drm_device *dev = priv->minor->dev; 658a2c0a97bSJesse Barnes struct drm_gem_mm *mm = dev->mm_private; 659f77d390cSBenjamin Herrenschmidt struct drm_local_map *map = NULL; 660a2c0a97bSJesse Barnes struct drm_gem_object *obj; 661a2c0a97bSJesse Barnes struct drm_hash_item *hash; 662a2c0a97bSJesse Barnes int ret = 0; 663a2c0a97bSJesse Barnes 664a2c0a97bSJesse Barnes mutex_lock(&dev->struct_mutex); 665a2c0a97bSJesse Barnes 666a2c0a97bSJesse Barnes if (drm_ht_find_item(&mm->offset_hash, vma->vm_pgoff, &hash)) { 667a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 668a2c0a97bSJesse Barnes return drm_mmap(filp, vma); 669a2c0a97bSJesse Barnes } 670a2c0a97bSJesse Barnes 671a2c0a97bSJesse Barnes map = drm_hash_entry(hash, struct drm_map_list, hash)->map; 672a2c0a97bSJesse Barnes if (!map || 673a2c0a97bSJesse Barnes ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN))) { 674a2c0a97bSJesse Barnes ret = -EPERM; 675a2c0a97bSJesse Barnes goto out_unlock; 676a2c0a97bSJesse Barnes } 677a2c0a97bSJesse Barnes 678a2c0a97bSJesse Barnes /* Check for valid size. */ 679a2c0a97bSJesse Barnes if (map->size < vma->vm_end - vma->vm_start) { 680a2c0a97bSJesse Barnes ret = -EINVAL; 681a2c0a97bSJesse Barnes goto out_unlock; 682a2c0a97bSJesse Barnes } 683a2c0a97bSJesse Barnes 684a2c0a97bSJesse Barnes obj = map->handle; 685a2c0a97bSJesse Barnes if (!obj->dev->driver->gem_vm_ops) { 686a2c0a97bSJesse Barnes ret = -EINVAL; 687a2c0a97bSJesse Barnes goto out_unlock; 688a2c0a97bSJesse Barnes } 689a2c0a97bSJesse Barnes 690a2c0a97bSJesse Barnes vma->vm_flags |= VM_RESERVED | VM_IO | VM_PFNMAP | VM_DONTEXPAND; 691a2c0a97bSJesse Barnes vma->vm_ops = obj->dev->driver->gem_vm_ops; 692a2c0a97bSJesse Barnes vma->vm_private_data = map->handle; 69379cc304fSJeremy Fitzhardinge vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); 694a2c0a97bSJesse Barnes 695ab00b3e5SJesse Barnes /* Take a ref for this mapping of the object, so that the fault 696ab00b3e5SJesse Barnes * handler can dereference the mmap offset's pointer to the object. 697ab00b3e5SJesse Barnes * This reference is cleaned up by the corresponding vm_close 698ab00b3e5SJesse Barnes * (which should happen whether the vma was created by this call, or 699ab00b3e5SJesse Barnes * by a vm_open due to mremap or partial unmap or whatever). 700ab00b3e5SJesse Barnes */ 701ab00b3e5SJesse Barnes drm_gem_object_reference(obj); 702ab00b3e5SJesse Barnes 703a2c0a97bSJesse Barnes vma->vm_file = filp; /* Needed for drm_vm_open() */ 704a2c0a97bSJesse Barnes drm_vm_open_locked(vma); 705a2c0a97bSJesse Barnes 706a2c0a97bSJesse Barnes out_unlock: 707a2c0a97bSJesse Barnes mutex_unlock(&dev->struct_mutex); 708a2c0a97bSJesse Barnes 709a2c0a97bSJesse Barnes return ret; 710a2c0a97bSJesse Barnes } 711a2c0a97bSJesse Barnes EXPORT_SYMBOL(drm_gem_mmap); 712