blob: 1ad9e7ec011938e6da38f97a9e180152442fdf49 [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>
David Howells760285e2012-10-02 18:01:07 +010039#include <drm/drmP.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
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
David Herrmann77ef8bb2013-07-01 20:32:58 +0200111 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
Eric Anholt673a3942008-07-30 12:06:12 -0700114 return 0;
115}
116
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800117void
118drm_gem_destroy(struct drm_device *dev)
119{
120 struct drm_gem_mm *mm = dev->mm_private;
121
122 drm_mm_takedown(&mm->offset_manager);
123 drm_ht_remove(&mm->offset_hash);
Eric Anholt9a298b22009-03-24 12:23:04 -0700124 kfree(mm);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800125 dev->mm_private = NULL;
126}
127
Eric Anholt673a3942008-07-30 12:06:12 -0700128/**
Alan Cox62cb70112011-06-07 14:17:51 +0100129 * Initialize an already allocated GEM object of the specified size with
Daniel Vetter1d397042010-04-09 19:05:04 +0000130 * shmfs backing store.
131 */
132int drm_gem_object_init(struct drm_device *dev,
133 struct drm_gem_object *obj, size_t size)
134{
David Herrmann89c82332013-07-11 11:56:32 +0200135 struct file *filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000136
David Herrmann89c82332013-07-11 11:56:32 +0200137 filp = shmem_file_setup("drm mm object", size, VM_NORESERVE);
138 if (IS_ERR(filp))
139 return PTR_ERR(filp);
Daniel Vetter1d397042010-04-09 19:05:04 +0000140
David Herrmann89c82332013-07-11 11:56:32 +0200141 drm_gem_private_object_init(dev, obj, size);
142 obj->filp = filp;
Daniel Vetter1d397042010-04-09 19:05:04 +0000143
Daniel Vetter1d397042010-04-09 19:05:04 +0000144 return 0;
145}
146EXPORT_SYMBOL(drm_gem_object_init);
147
148/**
Alan Cox62cb70112011-06-07 14:17:51 +0100149 * Initialize an already allocated GEM object of the specified size with
150 * no GEM provided backing store. Instead the caller is responsible for
151 * backing the object and handling it.
152 */
David Herrmann89c82332013-07-11 11:56:32 +0200153void drm_gem_private_object_init(struct drm_device *dev,
154 struct drm_gem_object *obj, size_t size)
Alan Cox62cb70112011-06-07 14:17:51 +0100155{
156 BUG_ON((size & (PAGE_SIZE - 1)) != 0);
157
158 obj->dev = dev;
159 obj->filp = NULL;
160
161 kref_init(&obj->refcount);
162 atomic_set(&obj->handle_count, 0);
163 obj->size = size;
Alan Cox62cb70112011-06-07 14:17:51 +0100164}
165EXPORT_SYMBOL(drm_gem_private_object_init);
166
167/**
Eric Anholt673a3942008-07-30 12:06:12 -0700168 * Allocate a GEM object of the specified size with shmfs backing store
169 */
170struct drm_gem_object *
171drm_gem_object_alloc(struct drm_device *dev, size_t size)
172{
173 struct drm_gem_object *obj;
174
Robert P. J. Dayb798b1f2009-06-10 12:43:49 -0700175 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
Jiri Slaby845792d2009-07-13 23:20:21 +0200176 if (!obj)
177 goto free;
Eric Anholt673a3942008-07-30 12:06:12 -0700178
Daniel Vetter1d397042010-04-09 19:05:04 +0000179 if (drm_gem_object_init(dev, obj, size) != 0)
Jiri Slaby845792d2009-07-13 23:20:21 +0200180 goto free;
Eric Anholt673a3942008-07-30 12:06:12 -0700181
Eric Anholt673a3942008-07-30 12:06:12 -0700182 if (dev->driver->gem_init_object != NULL &&
183 dev->driver->gem_init_object(obj) != 0) {
Jiri Slaby845792d2009-07-13 23:20:21 +0200184 goto fput;
Eric Anholt673a3942008-07-30 12:06:12 -0700185 }
Eric Anholt673a3942008-07-30 12:06:12 -0700186 return obj;
Jiri Slaby845792d2009-07-13 23:20:21 +0200187fput:
Daniel Vetter1d397042010-04-09 19:05:04 +0000188 /* Object_init mangles the global counters - readjust them. */
Jiri Slaby845792d2009-07-13 23:20:21 +0200189 fput(obj->filp);
190free:
191 kfree(obj);
192 return NULL;
Eric Anholt673a3942008-07-30 12:06:12 -0700193}
194EXPORT_SYMBOL(drm_gem_object_alloc);
195
Dave Airlie0ff926c2012-05-20 17:31:16 +0100196static void
197drm_gem_remove_prime_handles(struct drm_gem_object *obj, struct drm_file *filp)
198{
199 if (obj->import_attach) {
Dave Airlie219b4732013-04-22 09:54:36 +1000200 drm_prime_remove_buf_handle(&filp->prime,
Dave Airlie0ff926c2012-05-20 17:31:16 +0100201 obj->import_attach->dmabuf);
202 }
203 if (obj->export_dma_buf) {
Dave Airlie219b4732013-04-22 09:54:36 +1000204 drm_prime_remove_buf_handle(&filp->prime,
Dave Airlie0ff926c2012-05-20 17:31:16 +0100205 obj->export_dma_buf);
206 }
207}
208
Eric Anholt673a3942008-07-30 12:06:12 -0700209/**
210 * Removes the mapping from handle to filp for this object.
211 */
Dave Airlieff72145b2011-02-07 12:16:14 +1000212int
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300213drm_gem_handle_delete(struct drm_file *filp, u32 handle)
Eric Anholt673a3942008-07-30 12:06:12 -0700214{
215 struct drm_device *dev;
216 struct drm_gem_object *obj;
217
218 /* This is gross. The idr system doesn't let us try a delete and
219 * return an error code. It just spews if you fail at deleting.
220 * So, we have to grab a lock around finding the object and then
221 * doing the delete on it and dropping the refcount, or the user
222 * could race us to double-decrement the refcount and cause a
223 * use-after-free later. Given the frequency of our handle lookups,
224 * we may want to use ida for number allocation and a hash table
225 * for the pointers, anyway.
226 */
227 spin_lock(&filp->table_lock);
228
229 /* Check if we currently have a reference on the object */
230 obj = idr_find(&filp->object_idr, handle);
231 if (obj == NULL) {
232 spin_unlock(&filp->table_lock);
233 return -EINVAL;
234 }
235 dev = obj->dev;
236
237 /* Release reference and decrement refcount. */
238 idr_remove(&filp->object_idr, handle);
239 spin_unlock(&filp->table_lock);
240
Dave Airlie0ff926c2012-05-20 17:31:16 +0100241 drm_gem_remove_prime_handles(obj, filp);
Dave Airlie32488772011-11-25 15:21:02 +0000242
Ben Skeggs304eda32011-06-09 00:24:59 +0000243 if (dev->driver->gem_close_object)
244 dev->driver->gem_close_object(obj, filp);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000245 drm_gem_object_handle_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700246
247 return 0;
248}
Dave Airlieff72145b2011-02-07 12:16:14 +1000249EXPORT_SYMBOL(drm_gem_handle_delete);
Eric Anholt673a3942008-07-30 12:06:12 -0700250
251/**
252 * Create a handle for this object. This adds a handle reference
253 * to the object, which includes a regular reference count. Callers
254 * will likely want to dereference the object afterwards.
255 */
256int
257drm_gem_handle_create(struct drm_file *file_priv,
258 struct drm_gem_object *obj,
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300259 u32 *handlep)
Eric Anholt673a3942008-07-30 12:06:12 -0700260{
Ben Skeggs304eda32011-06-09 00:24:59 +0000261 struct drm_device *dev = obj->dev;
262 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700263
264 /*
Tejun Heo2e928812013-02-27 17:04:08 -0800265 * Get the user-visible handle using idr. Preload and perform
266 * allocation under our spinlock.
Eric Anholt673a3942008-07-30 12:06:12 -0700267 */
Tejun Heo2e928812013-02-27 17:04:08 -0800268 idr_preload(GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -0700269 spin_lock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800270
271 ret = idr_alloc(&file_priv->object_idr, obj, 1, 0, GFP_NOWAIT);
272
Eric Anholt673a3942008-07-30 12:06:12 -0700273 spin_unlock(&file_priv->table_lock);
Tejun Heo2e928812013-02-27 17:04:08 -0800274 idr_preload_end();
275 if (ret < 0)
Eric Anholt673a3942008-07-30 12:06:12 -0700276 return ret;
Tejun Heo2e928812013-02-27 17:04:08 -0800277 *handlep = ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700278
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;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200332 int ret;
Rob Clark75ef8b32011-08-10 08:09:07 -0500333
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,
Chris Wilson6b9d89b2012-07-10 11:15:23 +0100347 obj->size / PAGE_SIZE, 0, false);
Rob Clark75ef8b32011-08-10 08:09:07 -0500348
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
Tejun Heo2e928812013-02-27 17:04:08 -0800444 idr_preload(GFP_KERNEL);
Eric Anholt673a3942008-07-30 12:06:12 -0700445 spin_lock(&dev->object_name_lock);
Chris Wilson8d59bae2009-02-11 14:26:28 +0000446 if (!obj->name) {
Tejun Heo2e928812013-02-27 17:04:08 -0800447 ret = idr_alloc(&dev->object_name_idr, obj, 1, 0, GFP_NOWAIT);
Tejun Heo2e928812013-02-27 17:04:08 -0800448 if (ret < 0)
Chris Wilson8d59bae2009-02-11 14:26:28 +0000449 goto err;
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900450
451 obj->name = ret;
Chris Wilson8d59bae2009-02-11 14:26:28 +0000452
453 /* Allocate a reference for the name table. */
454 drm_gem_object_reference(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700455 }
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000456
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900457 args->name = (uint64_t) obj->name;
458 ret = 0;
459
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000460err:
YoungJun Cho2e07fb22013-06-27 08:58:33 +0900461 spin_unlock(&dev->object_name_lock);
462 idr_preload_end();
Luca Barbieribc9025b2010-02-09 05:49:12 +0000463 drm_gem_object_unreference_unlocked(obj);
Chris Wilson3e49c4f2009-02-09 11:31:41 +0000464 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700465}
466
467/**
468 * Open an object using the global name, returning a handle and the size.
469 *
470 * This handle (of course) holds a reference to the object, so the object
471 * will not go away until the handle is deleted.
472 */
473int
474drm_gem_open_ioctl(struct drm_device *dev, void *data,
475 struct drm_file *file_priv)
476{
477 struct drm_gem_open *args = data;
478 struct drm_gem_object *obj;
479 int ret;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300480 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700481
482 if (!(dev->driver->driver_features & DRIVER_GEM))
483 return -ENODEV;
484
485 spin_lock(&dev->object_name_lock);
486 obj = idr_find(&dev->object_name_idr, (int) args->name);
487 if (obj)
488 drm_gem_object_reference(obj);
489 spin_unlock(&dev->object_name_lock);
490 if (!obj)
491 return -ENOENT;
492
493 ret = drm_gem_handle_create(file_priv, obj, &handle);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000494 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700495 if (ret)
496 return ret;
497
498 args->handle = handle;
499 args->size = obj->size;
500
501 return 0;
502}
503
504/**
505 * Called at device open time, sets up the structure for handling refcounting
506 * of mm objects.
507 */
508void
509drm_gem_open(struct drm_device *dev, struct drm_file *file_private)
510{
511 idr_init(&file_private->object_idr);
512 spin_lock_init(&file_private->table_lock);
513}
514
515/**
516 * Called at device close to release the file's
517 * handle references on objects.
518 */
519static int
520drm_gem_object_release_handle(int id, void *ptr, void *data)
521{
Ben Skeggs304eda32011-06-09 00:24:59 +0000522 struct drm_file *file_priv = data;
Eric Anholt673a3942008-07-30 12:06:12 -0700523 struct drm_gem_object *obj = ptr;
Ben Skeggs304eda32011-06-09 00:24:59 +0000524 struct drm_device *dev = obj->dev;
525
Dave Airlie0ff926c2012-05-20 17:31:16 +0100526 drm_gem_remove_prime_handles(obj, file_priv);
Dave Airlie32488772011-11-25 15:21:02 +0000527
Ben Skeggs304eda32011-06-09 00:24:59 +0000528 if (dev->driver->gem_close_object)
529 dev->driver->gem_close_object(obj, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700530
Luca Barbieribc9025b2010-02-09 05:49:12 +0000531 drm_gem_object_handle_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700532
533 return 0;
534}
535
536/**
537 * Called at close time when the filp is going away.
538 *
539 * Releases any remaining references on objects by this filp.
540 */
541void
542drm_gem_release(struct drm_device *dev, struct drm_file *file_private)
543{
Eric Anholt673a3942008-07-30 12:06:12 -0700544 idr_for_each(&file_private->object_idr,
Ben Skeggs304eda32011-06-09 00:24:59 +0000545 &drm_gem_object_release_handle, file_private);
Eric Anholt673a3942008-07-30 12:06:12 -0700546 idr_destroy(&file_private->object_idr);
Eric Anholt673a3942008-07-30 12:06:12 -0700547}
548
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000549void
550drm_gem_object_release(struct drm_gem_object *obj)
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000551{
Alan Cox62cb70112011-06-07 14:17:51 +0100552 if (obj->filp)
553 fput(obj->filp);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000554}
Daniel Vetterfd632aa2010-04-09 19:05:05 +0000555EXPORT_SYMBOL(drm_gem_object_release);
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000556
Eric Anholt673a3942008-07-30 12:06:12 -0700557/**
558 * Called after the last reference to the object has been lost.
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000559 * Must be called holding struct_ mutex
Eric Anholt673a3942008-07-30 12:06:12 -0700560 *
561 * Frees the object
562 */
563void
564drm_gem_object_free(struct kref *kref)
565{
566 struct drm_gem_object *obj = (struct drm_gem_object *) kref;
567 struct drm_device *dev = obj->dev;
568
569 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
570
571 if (dev->driver->gem_free_object != NULL)
572 dev->driver->gem_free_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700573}
574EXPORT_SYMBOL(drm_gem_object_free);
575
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000576static void drm_gem_object_ref_bug(struct kref *list_kref)
577{
578 BUG();
579}
580
581/**
Eric Anholt673a3942008-07-30 12:06:12 -0700582 * Called after the last handle to the object has been closed
583 *
584 * Removes any name for the object. Note that this must be
585 * called before drm_gem_object_free or we'll be touching
586 * freed memory
587 */
Dave Airlie29d08b32010-09-27 16:17:17 +1000588void drm_gem_object_handle_free(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -0700589{
Eric Anholt673a3942008-07-30 12:06:12 -0700590 struct drm_device *dev = obj->dev;
591
592 /* Remove any name for this object */
593 spin_lock(&dev->object_name_lock);
594 if (obj->name) {
595 idr_remove(&dev->object_name_idr, obj->name);
Chris Wilson8d59bae2009-02-11 14:26:28 +0000596 obj->name = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700597 spin_unlock(&dev->object_name_lock);
598 /*
599 * The object name held a reference to this object, drop
600 * that now.
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000601 *
602 * This cannot be the last reference, since the handle holds one too.
Eric Anholt673a3942008-07-30 12:06:12 -0700603 */
Luca Barbieric3ae90c2010-02-09 05:49:11 +0000604 kref_put(&obj->refcount, drm_gem_object_ref_bug);
Eric Anholt673a3942008-07-30 12:06:12 -0700605 } else
606 spin_unlock(&dev->object_name_lock);
607
608}
609EXPORT_SYMBOL(drm_gem_object_handle_free);
610
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800611void drm_gem_vm_open(struct vm_area_struct *vma)
612{
613 struct drm_gem_object *obj = vma->vm_private_data;
614
615 drm_gem_object_reference(obj);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100616
617 mutex_lock(&obj->dev->struct_mutex);
Rob Clarkb06d66b2012-05-01 11:04:51 -0500618 drm_vm_open_locked(obj->dev, vma);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100619 mutex_unlock(&obj->dev->struct_mutex);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800620}
621EXPORT_SYMBOL(drm_gem_vm_open);
622
623void drm_gem_vm_close(struct vm_area_struct *vma)
624{
625 struct drm_gem_object *obj = vma->vm_private_data;
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000626 struct drm_device *dev = obj->dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800627
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000628 mutex_lock(&dev->struct_mutex);
Rob Clarkb06d66b2012-05-01 11:04:51 -0500629 drm_vm_close_locked(obj->dev, vma);
Chris Wilson31dfbc92010-09-27 21:28:30 +0100630 drm_gem_object_unreference(obj);
Chris Wilsonb74ad5a2011-03-17 22:33:33 +0000631 mutex_unlock(&dev->struct_mutex);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800632}
633EXPORT_SYMBOL(drm_gem_vm_close);
634
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200635/**
636 * drm_gem_mmap_obj - memory map a GEM object
637 * @obj: the GEM object to map
638 * @obj_size: the object size to be mapped, in bytes
639 * @vma: VMA for the area to be mapped
640 *
641 * Set up the VMA to prepare mapping of the GEM object using the gem_vm_ops
642 * provided by the driver. Depending on their requirements, drivers can either
643 * provide a fault handler in their gem_vm_ops (in which case any accesses to
644 * the object will be trapped, to perform migration, GTT binding, surface
645 * register allocation, or performance monitoring), or mmap the buffer memory
646 * synchronously after calling drm_gem_mmap_obj.
647 *
648 * This function is mainly intended to implement the DMABUF mmap operation, when
649 * the GEM object is not looked up based on its fake offset. To implement the
650 * DRM mmap operation, drivers should use the drm_gem_mmap() function.
651 *
YoungJun Cho4368dd82013-06-27 08:39:58 +0900652 * NOTE: This function has to be protected with dev->struct_mutex
653 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200654 * Return 0 or success or -EINVAL if the object size is smaller than the VMA
655 * size, or if no gem_vm_ops are provided.
656 */
657int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
658 struct vm_area_struct *vma)
659{
660 struct drm_device *dev = obj->dev;
661
YoungJun Cho4368dd82013-06-27 08:39:58 +0900662 lockdep_assert_held(&dev->struct_mutex);
663
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200664 /* Check for valid size. */
665 if (obj_size < vma->vm_end - vma->vm_start)
666 return -EINVAL;
667
668 if (!dev->driver->gem_vm_ops)
669 return -EINVAL;
670
671 vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
672 vma->vm_ops = dev->driver->gem_vm_ops;
673 vma->vm_private_data = obj;
674 vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
675
676 /* Take a ref for this mapping of the object, so that the fault
677 * handler can dereference the mmap offset's pointer to the object.
678 * This reference is cleaned up by the corresponding vm_close
679 * (which should happen whether the vma was created by this call, or
680 * by a vm_open due to mremap or partial unmap or whatever).
681 */
682 drm_gem_object_reference(obj);
683
684 drm_vm_open_locked(dev, vma);
685 return 0;
686}
687EXPORT_SYMBOL(drm_gem_mmap_obj);
Jesse Barnesab00b3e2009-02-11 14:01:46 -0800688
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800689/**
690 * drm_gem_mmap - memory map routine for GEM objects
691 * @filp: DRM file pointer
692 * @vma: VMA for the area to be mapped
693 *
694 * If a driver supports GEM object mapping, mmap calls on the DRM file
695 * descriptor will end up here.
696 *
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200697 * Look up the GEM object based on the offset passed in (vma->vm_pgoff will
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800698 * contain the fake offset we created when the GTT map ioctl was called on
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200699 * the object) and map it with a call to drm_gem_mmap_obj().
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800700 */
701int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)
702{
703 struct drm_file *priv = filp->private_data;
704 struct drm_device *dev = priv->minor->dev;
705 struct drm_gem_mm *mm = dev->mm_private;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +1100706 struct drm_local_map *map = NULL;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800707 struct drm_hash_item *hash;
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800708 int ret = 0;
709
Dave Airlie2c07a212012-02-20 14:18:07 +0000710 if (drm_device_is_unplugged(dev))
711 return -ENODEV;
712
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800713 mutex_lock(&dev->struct_mutex);
714
715 if (drm_ht_find_item(&mm->offset_hash, vma->vm_pgoff, &hash)) {
716 mutex_unlock(&dev->struct_mutex);
717 return drm_mmap(filp, vma);
718 }
719
720 map = drm_hash_entry(hash, struct drm_map_list, hash)->map;
721 if (!map ||
722 ((map->flags & _DRM_RESTRICTED) && !capable(CAP_SYS_ADMIN))) {
723 ret = -EPERM;
724 goto out_unlock;
725 }
726
Laurent Pinchart1c5aafa2013-04-16 14:14:52 +0200727 ret = drm_gem_mmap_obj(map->handle, map->size, vma);
Jesse Barnesa2c0a972008-11-05 10:31:53 -0800728
729out_unlock:
730 mutex_unlock(&dev->struct_mutex);
731
732 return ret;
733}
734EXPORT_SYMBOL(drm_gem_mmap);