blob: 83114b5e3cee236fe6a2f5b2cb261d6ba1abb3f8 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/mm.h>
31#include <linux/uaccess.h>
32#include <linux/fs.h>
33#include <linux/file.h>
34#include <linux/module.h>
35#include <linux/mman.h>
36#include <linux/pagemap.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070037#include <linux/shmem_fs.h>
Dave Airlie32488772011-11-25 15:21:02 +000038#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070039#include "drmP.h"
40
41/** @file drm_gem.c
42 *
43 * This file provides some of the base ioctls and library routines for
44 * the graphics memory manager implemented by each device driver.
45 *
46 * Because various devices have different requirements in terms of
47 * synchronization and migration strategies, implementing that is left up to
48 * the driver, and all that the general API provides should be generic --
49 * allocating objects, reading/writing data with the cpu, freeing objects.
50 * Even there, platform-dependent optimizations for reading/writing data with
51 * the CPU mean we'll likely hook those out to driver-specific calls. However,
52 * the DRI2 implementation wants to have at least allocate/mmap be generic.
53 *
54 * The goal was to have swap-backed object allocation managed through
55 * struct file. However, file descriptors as handles to a struct file have
56 * two major failings:
57 * - Process limits prevent more than 1024 or so being used at a time by
58 * default.
59 * - Inability to allocate high fds will aggravate the X Server's select()
60 * handling, and likely that of many GL client applications as well.
61 *
62 * This led to a plan of using our own integer IDs (called handles, following
63 * DRM terminology) to mimic fds, and implement the fd syscalls we need as
64 * ioctls. The objects themselves will still include the struct file so
65 * that we can transition to fds if the required kernel infrastructure shows
66 * up at a later date, and as our interface with shmfs for memory allocation.
67 */
68
Jesse Barnesa2c0a972008-11-05 10:31:53 -080069/*
70 * We make up offsets for buffer objects so we can recognize them at
71 * mmap time.
72 */
Jordan Crouse05269a32010-05-27 13:40:27 -060073
74/* pgoff in mmap is an unsigned long, so we need to make sure that
75 * the faked up offset will fit
76 */
77
78#if BITS_PER_LONG == 64
Jesse Barnesa2c0a972008-11-05 10:31:53 -080079#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFFUL >> PAGE_SHIFT) + 1)
80#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFFUL >> PAGE_SHIFT) * 16)
Jordan Crouse05269a32010-05-27 13:40:27 -060081#else
82#define DRM_FILE_PAGE_OFFSET_START ((0xFFFFFFFUL >> PAGE_SHIFT) + 1)
83#define DRM_FILE_PAGE_OFFSET_SIZE ((0xFFFFFFFUL >> PAGE_SHIFT) * 16)
84#endif
Jesse Barnesa2c0a972008-11-05 10:31:53 -080085
Eric Anholt673a3942008-07-30 12:06:12 -070086/**
87 * Initialize the GEM device fields
88 */
89
90int
91drm_gem_init(struct drm_device *dev)
92{
Jesse Barnesa2c0a972008-11-05 10:31:53 -080093 struct drm_gem_mm *mm;
94
Eric Anholt673a3942008-07-30 12:06:12 -070095 spin_lock_init(&dev->object_name_lock);
96 idr_init(&dev->object_name_idr);
Jesse Barnesa2c0a972008-11-05 10:31:53 -080097
Eric Anholt9a298b22009-03-24 12:23:04 -070098 mm = kzalloc(sizeof(struct drm_gem_mm), GFP_KERNEL);
Jesse Barnesa2c0a972008-11-05 10:31:53 -080099 if (!mm) {
100 DRM_ERROR("out of memory\n");
101 return -ENOMEM;
102 }
103
104 dev->mm_private = mm;
105
Chris Wilson4cb81ac2011-01-12 21:11:33 +0000106 if (drm_ht_create(&mm->offset_hash, 12)) {
Eric Anholt9a298b22009-03-24 12:23:04 -0700107 kfree(mm);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800108 return -ENOMEM;
109 }
110
111 if (drm_mm_init(&mm->offset_manager, DRM_FILE_PAGE_OFFSET_START,
112 DRM_FILE_PAGE_OFFSET_SIZE)) {
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800113 drm_ht_remove(&mm->offset_hash);
Eric Anholt9a298b22009-03-24 12:23:04 -0700114 kfree(mm);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800115 return -ENOMEM;
116 }
117
Eric Anholt673a3942008-07-30 12:06:12 -0700118 return 0;
119}
120
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800121void
122drm_gem_destroy(struct drm_device *dev)
123{
124 struct drm_gem_mm *mm = dev->mm_private;
125
126 drm_mm_takedown(&mm->offset_manager);
127 drm_ht_remove(&mm->offset_hash);
Eric Anholt9a298b22009-03-24 12:23:04 -0700128 kfree(mm);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800129 dev->mm_private = NULL;
130}
131
Eric Anholt673a3942008-07-30 12:06:12 -0700132/**
Alan Cox62cb70112011-06-07 14:17:51 +0100133 * Initialize an already allocated GEM object of the specified size with
Daniel Vetter1d397042010-04-09 19:05:04 +0000134 * shmfs backing store.
135 */
136int drm_gem_object_init(struct drm_device *dev,
137 struct drm_gem_object *obj, size_t size)
138{
139 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
140
141 obj->dev = dev;
142 obj->filp = shmem_file_setup("drm mm object", size, VM_NORESERVE);
143 if (IS_ERR(obj->filp))
Chris Wilsondd8bc932012-01-29 16:45:32 +0000144 return PTR_ERR(obj->filp);
Daniel Vetter1d397042010-04-09 19:05:04 +0000145
146 kref_init(&obj->refcount);
Dave Airlie29d08b32010-09-27 16:17:17 +1000147 atomic_set(&obj->handle_count, 0);
Daniel Vetter1d397042010-04-09 19:05:04 +0000148 obj->size = size;
149
Daniel Vetter1d397042010-04-09 19:05:04 +0000150 return 0;
151}
152EXPORT_SYMBOL(drm_gem_object_init);
153
154/**
Alan Cox62cb70112011-06-07 14:17:51 +0100155 * Initialize an already allocated GEM object of the specified size with
156 * no GEM provided backing store. Instead the caller is responsible for
157 * backing the object and handling it.
158 */
159int drm_gem_private_object_init(struct drm_device *dev,
160 struct drm_gem_object *obj, size_t size)
161{
162 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
163
164 obj->dev = dev;
165 obj->filp = NULL;
166
167 kref_init(&obj->refcount);
168 atomic_set(&obj->handle_count, 0);
169 obj->size = size;
170
171 return 0;
172}
173EXPORT_SYMBOL(drm_gem_private_object_init);
174
175/**
Eric Anholt673a3942008-07-30 12:06:12 -0700176 * Allocate a GEM object of the specified size with shmfs backing store
177 */
178struct drm_gem_object *
179drm_gem_object_alloc(struct drm_device *dev, size_t size)
180{
181 struct drm_gem_object *obj;
182
Robert P. J. Dayb798b1f2009-06-10 12:43:49 -0700183 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
Jiri Slaby845792d2009-07-13 23:20:21 +0200184 if (!obj)
185 goto free;
Eric Anholt673a3942008-07-30 12:06:12 -0700186
Daniel Vetter1d397042010-04-09 19:05:04 +0000187 if (drm_gem_object_init(dev, obj, size) != 0)
Jiri Slaby845792d2009-07-13 23:20:21 +0200188 goto free;
Eric Anholt673a3942008-07-30 12:06:12 -0700189
Eric Anholt673a3942008-07-30 12:06:12 -0700190 if (dev->driver->gem_init_object != NULL &&
191 dev->driver->gem_init_object(obj) != 0) {
Jiri Slaby845792d2009-07-13 23:20:21 +0200192 goto fput;
Eric Anholt673a3942008-07-30 12:06:12 -0700193 }
Eric Anholt673a3942008-07-30 12:06:12 -0700194 return obj;
Jiri Slaby845792d2009-07-13 23:20:21 +0200195fput:
Daniel Vetter1d397042010-04-09 19:05:04 +0000196 /* Object_init mangles the global counters - readjust them. */
Jiri Slaby845792d2009-07-13 23:20:21 +0200197 fput(obj->filp);
198free:
199 kfree(obj);
200 return NULL;
Eric Anholt673a3942008-07-30 12:06:12 -0700201}
202EXPORT_SYMBOL(drm_gem_object_alloc);
203
204/**
205 * Removes the mapping from handle to filp for this object.
206 */
Dave Airlieff72145b2011-02-07 12:16:14 +1000207int
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300208drm_gem_handle_delete(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700209{
210 struct drm_device *dev;
211 struct drm_gem_object *obj;
212
213 /* This is gross. The idr system doesn't let us try a delete and
214 * return an error code. It just spews if you fail at deleting.
215 * So, we have to grab a lock around finding the object and then
216 * doing the delete on it and dropping the refcount, or the user
217 * could race us to double-decrement the refcount and cause a
218 * use-after-free later. Given the frequency of our handle lookups,
219 * we may want to use ida for number allocation and a hash table
220 * for the pointers, anyway.
221 */
222 spin_lock(&filp->table_lock);
223
224 /* Check if we currently have a reference on the object */
225 obj = idr_find(&filp->object_idr, handle);
226 if (obj == NULL) {
227 spin_unlock(&filp->table_lock);
228 return -EINVAL;
229 }
230 dev = obj->dev;
231
232 /* Release reference and decrement refcount. */
233 idr_remove(&filp->object_idr, handle);
234 spin_unlock(&filp->table_lock);
235
Dave Airlie32488772011-11-25 15:21:02 +0000236 if (obj->import_attach)
237 drm_prime_remove_imported_buf_handle(&filp->prime,
238 obj->import_attach->dmabuf);
239
Ben Skeggs304eda32011-06-09 00:24:59 +0000240 if (dev->driver->gem_close_object)
241 dev->driver->gem_close_object(obj, filp);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000242 drm_gem_object_handle_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700243
244 return 0;
245}
Dave Airlieff72145b2011-02-07 12:16:14 +1000246EXPORT_SYMBOL(drm_gem_handle_delete);
Eric Anholt673a3942008-07-30 12:06:12 -0700247
248/**
249 * Create a handle for this object. This adds a handle reference
250 * to the object, which includes a regular reference count. Callers
251 * will likely want to dereference the object afterwards.
252 */
253int
254drm_gem_handle_create(struct drm_file *file_priv,
255 struct drm_gem_object *obj,
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300256 u32 *handlep)
Eric Anholt673a3942008-07-30 12:06:12 -0700257{
Ben Skeggs304eda32011-06-09 00:24:59 +0000258 struct drm_device *dev = obj->dev;
259 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700260
261 /*
262 * Get the user-visible handle using idr.
263 */
264again:
265 /* ensure there is space available to allocate a handle */
266 if (idr_pre_get(&file_priv->object_idr, GFP_KERNEL) == 0)
267 return -ENOMEM;
268
269 /* do the allocation under our spinlock */
270 spin_lock(&file_priv->table_lock);
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300271 ret = idr_get_new_above(&file_priv->object_idr, obj, 1, (int *)handlep);
Eric Anholt673a3942008-07-30 12:06:12 -0700272 spin_unlock(&file_priv->table_lock);
273 if (ret == -EAGAIN)
274 goto again;
275
276 if (ret != 0)
277 return ret;
278
279 drm_gem_object_handle_reference(obj);
Ben Skeggs304eda32011-06-09 00:24:59 +0000280
281 if (dev->driver->gem_open_object) {
282 ret = dev->driver->gem_open_object(obj, file_priv);
283 if (ret) {
284 drm_gem_handle_delete(file_priv, *handlep);
285 return ret;
286 }
287 }
288
Eric Anholt673a3942008-07-30 12:06:12 -0700289 return 0;
290}
291EXPORT_SYMBOL(drm_gem_handle_create);
292
Rob Clark75ef8b32011-08-10 08:09:07 -0500293
294/**
295 * drm_gem_free_mmap_offset - release a fake mmap offset for an object
296 * @obj: obj in question
297 *
298 * This routine frees fake offsets allocated by drm_gem_create_mmap_offset().
299 */
300void
301drm_gem_free_mmap_offset(struct drm_gem_object *obj)
302{
303 struct drm_device *dev = obj->dev;
304 struct drm_gem_mm *mm = dev->mm_private;
305 struct drm_map_list *list = &obj->map_list;
306
307 drm_ht_remove_item(&mm->offset_hash, &list->hash);
308 drm_mm_put_block(list->file_offset_node);
309 kfree(list->map);
310 list->map = NULL;
311}
312EXPORT_SYMBOL(drm_gem_free_mmap_offset);
313
314/**
315 * drm_gem_create_mmap_offset - create a fake mmap offset for an object
316 * @obj: obj in question
317 *
318 * GEM memory mapping works by handing back to userspace a fake mmap offset
319 * it can use in a subsequent mmap(2) call. The DRM core code then looks
320 * up the object based on the offset and sets up the various memory mapping
321 * structures.
322 *
323 * This routine allocates and attaches a fake offset for @obj.
324 */
325int
326drm_gem_create_mmap_offset(struct drm_gem_object *obj)
327{
328 struct drm_device *dev = obj->dev;
329 struct drm_gem_mm *mm = dev->mm_private;
330 struct drm_map_list *list;
331 struct drm_local_map *map;
332 int ret = 0;
333
334 /* Set the object up for mmap'ing */
335 list = &obj->map_list;
336 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
337 if (!list->map)
338 return -ENOMEM;
339
340 map = list->map;
341 map->type = _DRM_GEM;
342 map->size = obj->size;
343 map->handle = obj;
344
345 /* Get a DRM GEM mmap offset allocated... */
346 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
347 obj->size / PAGE_SIZE, 0, 0);
348
349 if (!list->file_offset_node) {
350 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
351 ret = -ENOSPC;
352 goto out_free_list;
353 }
354
355 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
356 obj->size / PAGE_SIZE, 0);
357 if (!list->file_offset_node) {
358 ret = -ENOMEM;
359 goto out_free_list;
360 }
361
362 list->hash.key = list->file_offset_node->start;
363 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
364 if (ret) {
365 DRM_ERROR("failed to add to map hash\n");
366 goto out_free_mm;
367 }
368
369 return 0;
370
371out_free_mm:
372 drm_mm_put_block(list->file_offset_node);
373out_free_list:
374 kfree(list->map);
375 list->map = NULL;
376
377 return ret;
378}
379EXPORT_SYMBOL(drm_gem_create_mmap_offset);
380
Eric Anholt673a3942008-07-30 12:06:12 -0700381/** Returns a reference to the object named by the handle. */
382struct drm_gem_object *
383drm_gem_object_lookup(struct drm_device *dev, struct drm_file *filp,
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300384 u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700385{
386 struct drm_gem_object *obj;
387
388 spin_lock(&filp->table_lock);
389
390 /* Check if we currently have a reference on the object */
391 obj = idr_find(&filp->object_idr, handle);
392 if (obj == NULL) {
393 spin_unlock(&filp->table_lock);
394 return NULL;
395 }
396
397 drm_gem_object_reference(obj);
398
399 spin_unlock(&filp->table_lock);
400
401 return obj;
402}
403EXPORT_SYMBOL(drm_gem_object_lookup);
404
405/**
406 * Releases the handle to an mm object.
407 */
408int
409drm_gem_close_ioctl(struct drm_device *dev, void *data,
410 struct drm_file *file_priv)
411{
412 struct drm_gem_close *args = data;
413 int ret;
414
415 if (!(dev->driver->driver_features & DRIVER_GEM))
416 return -ENODEV;
417
418 ret = drm_gem_handle_delete(file_priv, args->handle);
419
420 return ret;
421}
422
423/**
424 * Create a global name for an object, returning the name.
425 *
426 * Note that the name does not hold a reference; when the object
427 * is freed, the name goes away.
428 */
429int
430drm_gem_flink_ioctl(struct drm_device *dev, void *data,
431 struct drm_file *file_priv)
432{
433 struct drm_gem_flink *args = data;
434 struct drm_gem_object *obj;
435 int ret;
436
437 if (!(dev->driver->driver_features & DRIVER_GEM))
438 return -ENODEV;
439
440 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
441 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100442 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700443
444again:
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000445 if (idr_pre_get(&dev->object_name_idr, GFP_KERNEL) == 0) {
446 ret = -ENOMEM;
447 goto err;
448 }
Eric Anholt673a3942008-07-30 12:06:12 -0700449
450 spin_lock(&dev->object_name_lock);
Chris Wilson8d59bae2009-02-11 14:26:28 +0000451 if (!obj->name) {
452 ret = idr_get_new_above(&dev->object_name_idr, obj, 1,
453 &obj->name);
454 args->name = (uint64_t) obj->name;
Eric Anholt673a3942008-07-30 12:06:12 -0700455 spin_unlock(&dev->object_name_lock);
Chris Wilson8d59bae2009-02-11 14:26:28 +0000456
457 if (ret == -EAGAIN)
458 goto again;
459
460 if (ret != 0)
461 goto err;
462
463 /* Allocate a reference for the name table. */
464 drm_gem_object_reference(obj);
465 } else {
466 args->name = (uint64_t) obj->name;
467 spin_unlock(&dev->object_name_lock);
468 ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700469 }
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000470
471err:
Luca Barbieribc9025b2010-02-09 05:49:12 +0000472 drm_gem_object_unreference_unlocked(obj);
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000473 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700474}
475
476/**
477 * Open an object using the global name, returning a handle and the size.
478 *
479 * This handle (of course) holds a reference to the object, so the object
480 * will not go away until the handle is deleted.
481 */
482int
483drm_gem_open_ioctl(struct drm_device *dev, void *data,
484 struct drm_file *file_priv)
485{
486 struct drm_gem_open *args = data;
487 struct drm_gem_object *obj;
488 int ret;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300489 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700490
491 if (!(dev->driver->driver_features & DRIVER_GEM))
492 return -ENODEV;
493
494 spin_lock(&dev->object_name_lock);
495 obj = idr_find(&dev->object_name_idr, (int) args->name);
496 if (obj)
497 drm_gem_object_reference(obj);
498 spin_unlock(&dev->object_name_lock);
499 if (!obj)
500 return -ENOENT;
501
502 ret = drm_gem_handle_create(file_priv, obj, &handle);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000503 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700504 if (ret)
505 return ret;
506
507 args->handle = handle;
508 args->size = obj->size;
509
510 return 0;
511}
512
513/**
514 * Called at device open time, sets up the structure for handling refcounting
515 * of mm objects.
516 */
517void
518drm_gem_open(struct drm_device *dev, struct drm_file *file_private)
519{
520 idr_init(&file_private->object_idr);
521 spin_lock_init(&file_private->table_lock);
522}
523
524/**
525 * Called at device close to release the file's
526 * handle references on objects.
527 */
528static int
529drm_gem_object_release_handle(int id, void *ptr, void *data)
530{
Ben Skeggs304eda32011-06-09 00:24:59 +0000531 struct drm_file *file_priv = data;
Eric Anholt673a3942008-07-30 12:06:12 -0700532 struct drm_gem_object *obj = ptr;
Ben Skeggs304eda32011-06-09 00:24:59 +0000533 struct drm_device *dev = obj->dev;
534
Dave Airlie32488772011-11-25 15:21:02 +0000535 if (obj->import_attach)
536 drm_prime_remove_imported_buf_handle(&file_priv->prime,
537 obj->import_attach->dmabuf);
538
Ben Skeggs304eda32011-06-09 00:24:59 +0000539 if (dev->driver->gem_close_object)
540 dev->driver->gem_close_object(obj, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700541
Luca Barbieribc9025b2010-02-09 05:49:12 +0000542 drm_gem_object_handle_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700543
544 return 0;
545}
546
547/**
548 * Called at close time when the filp is going away.
549 *
550 * Releases any remaining references on objects by this filp.
551 */
552void
553drm_gem_release(struct drm_device *dev, struct drm_file *file_private)
554{
Eric Anholt673a3942008-07-30 12:06:12 -0700555 idr_for_each(&file_private->object_idr,
Ben Skeggs304eda32011-06-09 00:24:59 +0000556 &drm_gem_object_release_handle, file_private);
Eric Anholt673a3942008-07-30 12:06:12 -0700557
Chris Wilsonddd3d062010-07-24 22:28:25 +0100558 idr_remove_all(&file_private->object_idr);
Eric Anholt673a3942008-07-30 12:06:12 -0700559 idr_destroy(&file_private->object_idr);
Eric Anholt673a3942008-07-30 12:06:12 -0700560}
561
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000562void
563drm_gem_object_release(struct drm_gem_object *obj)
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000564{
Alan Cox62cb70112011-06-07 14:17:51 +0100565 if (obj->filp)
566 fput(obj->filp);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000567}
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000568EXPORT_SYMBOL(drm_gem_object_release);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000569
Eric Anholt673a3942008-07-30 12:06:12 -0700570/**
571 * Called after the last reference to the object has been lost.
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000572 * Must be called holding struct_ mutex
Eric Anholt673a3942008-07-30 12:06:12 -0700573 *
574 * Frees the object
575 */
576void
577drm_gem_object_free(struct kref *kref)
578{
579 struct drm_gem_object *obj = (struct drm_gem_object *) kref;
580 struct drm_device *dev = obj->dev;
581
582 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
583
584 if (dev->driver->gem_free_object != NULL)
585 dev->driver->gem_free_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700586}
587EXPORT_SYMBOL(drm_gem_object_free);
588
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000589static void drm_gem_object_ref_bug(struct kref *list_kref)
590{
591 BUG();
592}
593
594/**
Eric Anholt673a3942008-07-30 12:06:12 -0700595 * Called after the last handle to the object has been closed
596 *
597 * Removes any name for the object. Note that this must be
598 * called before drm_gem_object_free or we'll be touching
599 * freed memory
600 */
Dave Airlie29d08b32010-09-27 16:17:17 +1000601void drm_gem_object_handle_free(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -0700602{
Eric Anholt673a3942008-07-30 12:06:12 -0700603 struct drm_device *dev = obj->dev;
604
605 /* Remove any name for this object */
606 spin_lock(&dev->object_name_lock);
607 if (obj->name) {
608 idr_remove(&dev->object_name_idr, obj->name);
Chris Wilson8d59bae2009-02-11 14:26:28 +0000609 obj->name = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700610 spin_unlock(&dev->object_name_lock);
611 /*
612 * The object name held a reference to this object, drop
613 * that now.
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000614 *
615 * This cannot be the last reference, since the handle holds one too.
Eric Anholt673a3942008-07-30 12:06:12 -0700616 */
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000617 kref_put(&obj->refcount, drm_gem_object_ref_bug);
Eric Anholt673a3942008-07-30 12:06:12 -0700618 } else
619 spin_unlock(&dev->object_name_lock);
620
621}
622EXPORT_SYMBOL(drm_gem_object_handle_free);
623
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800624void drm_gem_vm_open(struct vm_area_struct *vma)
625{
626 struct drm_gem_object *obj = vma->vm_private_data;
627
628 drm_gem_object_reference(obj);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100629
630 mutex_lock(&obj->dev->struct_mutex);
631 drm_vm_open_locked(vma);
632 mutex_unlock(&obj->dev->struct_mutex);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800633}
634EXPORT_SYMBOL(drm_gem_vm_open);
635
636void drm_gem_vm_close(struct vm_area_struct *vma)
637{
638 struct drm_gem_object *obj = vma->vm_private_data;
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000639 struct drm_device *dev = obj->dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800640
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000641 mutex_lock(&dev->struct_mutex);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100642 drm_vm_close_locked(vma);
643 drm_gem_object_unreference(obj);
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000644 mutex_unlock(&dev->struct_mutex);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800645}
646EXPORT_SYMBOL(drm_gem_vm_close);
647
648
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800649/**
650 * drm_gem_mmap - memory map routine for GEM objects
651 * @filp: DRM file pointer
652 * @vma: VMA for the area to be mapped
653 *
654 * If a driver supports GEM object mapping, mmap calls on the DRM file
655 * descriptor will end up here.
656 *
657 * If we find the object based on the offset passed in (vma->vm_pgoff will
658 * contain the fake offset we created when the GTT map ioctl was called on
659 * the object), we set up the driver fault handler so that any accesses
660 * to the object can be trapped, to perform migration, GTT binding, surface
661 * register allocation, or performance monitoring.
662 */
663int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
664{
665 struct drm_file *priv = filp->private_data;
666 struct drm_device *dev = priv->minor->dev;
667 struct drm_gem_mm *mm = dev->mm_private;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100668 struct drm_local_map *map = NULL;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800669 struct drm_gem_object *obj;
670 struct drm_hash_item *hash;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800671 int ret = 0;
672
Dave Airlie2c07a212012-02-20 14:18:07 +0000673 if (drm_device_is_unplugged(dev))
674 return -ENODEV;
675
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800676 mutex_lock(&dev->struct_mutex);
677
678 if (drm_ht_find_item(&mm->offset_hash, vma->vm_pgoff, &hash)) {
679 mutex_unlock(&dev->struct_mutex);
680 return drm_mmap(filp, vma);
681 }
682
683 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
684 if (!map ||
685 ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN))) {
686 ret = -EPERM;
687 goto out_unlock;
688 }
689
690 /* Check for valid size. */
691 if (map->size < vma->vm_end - vma->vm_start) {
692 ret = -EINVAL;
693 goto out_unlock;
694 }
695
696 obj = map->handle;
697 if (!obj->dev->driver->gem_vm_ops) {
698 ret = -EINVAL;
699 goto out_unlock;
700 }
701
702 vma->vm_flags |= VM_RESERVED | VM_IO | VM_PFNMAP | VM_DONTEXPAND;
703 vma->vm_ops = obj->dev->driver->gem_vm_ops;
704 vma->vm_private_data = map->handle;
Jeremy Fitzhardinge79cc3042009-11-17 14:08:54 -0800705 vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800706
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800707 /* Take a ref for this mapping of the object, so that the fault
708 * handler can dereference the mmap offset's pointer to the object.
709 * This reference is cleaned up by the corresponding vm_close
710 * (which should happen whether the vma was created by this call, or
711 * by a vm_open due to mremap or partial unmap or whatever).
712 */
713 drm_gem_object_reference(obj);
714
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800715 drm_vm_open_locked(vma);
716
717out_unlock:
718 mutex_unlock(&dev->struct_mutex);
719
720 return ret;
721}
722EXPORT_SYMBOL(drm_gem_mmap);