blob: e71f75a2ab57feb6dd382ad0792a2bd8200cdb38 [file] [log] [blame]
Daniel Vetterd9fc9412014-09-23 15:46:53 +02001#ifndef __DRM_GEM_H__
2#define __DRM_GEM_H__
3
4/*
5 * GEM Graphics Execution Manager Driver Interfaces
6 *
7 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
8 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
9 * Copyright (c) 2009-2010, Code Aurora Forum.
10 * All rights reserved.
11 * Copyright © 2014 Intel Corporation
12 * Daniel Vetter <daniel.vetter@ffwll.ch>
13 *
14 * Author: Rickard E. (Rik) Faith <faith@valinux.com>
15 * Author: Gareth Hughes <gareth@valinux.com>
16 *
17 * Permission is hereby granted, free of charge, to any person obtaining a
18 * copy of this software and associated documentation files (the "Software"),
19 * to deal in the Software without restriction, including without limitation
20 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
21 * and/or sell copies of the Software, and to permit persons to whom the
22 * Software is furnished to do so, subject to the following conditions:
23 *
24 * The above copyright notice and this permission notice (including the next
25 * paragraph) shall be included in all copies or substantial portions of the
26 * Software.
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
31 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
32 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
33 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
34 * OTHER DEALINGS IN THE SOFTWARE.
35 */
36
Daniel Vetterc6bb9ba2017-03-08 15:12:35 +010037#include <linux/kref.h>
Christian König52791ee2019-08-11 10:06:32 +020038#include <linux/dma-resv.h>
Daniel Vetterc6bb9ba2017-03-08 15:12:35 +010039
40#include <drm/drm_vma_manager.h>
41
Noralf Trønnesb39b5392018-11-10 15:56:45 +010042struct drm_gem_object;
43
44/**
45 * struct drm_gem_object_funcs - GEM object functions
46 */
47struct drm_gem_object_funcs {
48 /**
49 * @free:
50 *
51 * Deconstructor for drm_gem_objects.
52 *
53 * This callback is mandatory.
54 */
55 void (*free)(struct drm_gem_object *obj);
56
57 /**
58 * @open:
59 *
60 * Called upon GEM handle creation.
61 *
62 * This callback is optional.
63 */
64 int (*open)(struct drm_gem_object *obj, struct drm_file *file);
65
66 /**
67 * @close:
68 *
69 * Called upon GEM handle release.
70 *
71 * This callback is optional.
72 */
73 void (*close)(struct drm_gem_object *obj, struct drm_file *file);
74
75 /**
76 * @print_info:
77 *
78 * If driver subclasses struct &drm_gem_object, it can implement this
79 * optional hook for printing additional driver specific info.
80 *
81 * drm_printf_indent() should be used in the callback passing it the
82 * indent argument.
83 *
84 * This callback is called from drm_gem_print_info().
85 *
86 * This callback is optional.
87 */
88 void (*print_info)(struct drm_printer *p, unsigned int indent,
89 const struct drm_gem_object *obj);
90
91 /**
92 * @export:
93 *
94 * Export backing buffer as a &dma_buf.
95 * If this is not set drm_gem_prime_export() is used.
96 *
97 * This callback is optional.
98 */
99 struct dma_buf *(*export)(struct drm_gem_object *obj, int flags);
100
101 /**
102 * @pin:
103 *
Daniel Vetter805dc6142019-06-20 14:46:15 +0200104 * Pin backing buffer in memory. Used by the drm_gem_map_attach() helper.
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100105 *
106 * This callback is optional.
107 */
108 int (*pin)(struct drm_gem_object *obj);
109
110 /**
111 * @unpin:
112 *
Daniel Vetter805dc6142019-06-20 14:46:15 +0200113 * Unpin backing buffer. Used by the drm_gem_map_detach() helper.
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100114 *
115 * This callback is optional.
116 */
117 void (*unpin)(struct drm_gem_object *obj);
118
119 /**
120 * @get_sg_table:
121 *
122 * Returns a Scatter-Gather table representation of the buffer.
Daniel Vetter805dc6142019-06-20 14:46:15 +0200123 * Used when exporting a buffer by the drm_gem_map_dma_buf() helper.
124 * Releasing is done by calling dma_unmap_sg_attrs() and sg_free_table()
125 * in drm_gem_unmap_buf(), therefore these helpers and this callback
126 * here cannot be used for sg tables pointing at driver private memory
127 * ranges.
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100128 *
Daniel Vetter805dc6142019-06-20 14:46:15 +0200129 * See also drm_prime_pages_to_sg().
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100130 */
131 struct sg_table *(*get_sg_table)(struct drm_gem_object *obj);
132
133 /**
134 * @vmap:
135 *
Daniel Vetter805dc6142019-06-20 14:46:15 +0200136 * Returns a virtual address for the buffer. Used by the
137 * drm_gem_dmabuf_vmap() helper.
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100138 *
139 * This callback is optional.
140 */
141 void *(*vmap)(struct drm_gem_object *obj);
142
143 /**
144 * @vunmap:
145 *
Daniel Vetter805dc6142019-06-20 14:46:15 +0200146 * Releases the the address previously returned by @vmap. Used by the
147 * drm_gem_dmabuf_vunmap() helper.
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100148 *
149 * This callback is optional.
150 */
151 void (*vunmap)(struct drm_gem_object *obj, void *vaddr);
152
153 /**
Gerd Hoffmannc40069c2019-10-16 13:51:53 +0200154 * @mmap:
155 *
156 * Handle mmap() of the gem object, setup vma accordingly.
157 *
158 * This callback is optional.
159 *
160 * The callback is used by by both drm_gem_mmap_obj() and
161 * drm_gem_prime_mmap(). When @mmap is present @vm_ops is not
162 * used, the @mmap callback must set vma->vm_ops instead.
163 *
164 */
165 int (*mmap)(struct drm_gem_object *obj, struct vm_area_struct *vma);
166
167 /**
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100168 * @vm_ops:
169 *
170 * Virtual memory operations used with mmap.
171 *
172 * This is optional but necessary for mmap support.
173 */
174 const struct vm_operations_struct *vm_ops;
175};
176
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200177/**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200178 * struct drm_gem_object - GEM buffer object
179 *
180 * This structure defines the generic parts for GEM buffer objects, which are
181 * mostly around handling mmap and userspace handles.
182 *
183 * Buffer objects are often abbreviated to BO.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200184 */
185struct drm_gem_object {
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200186 /**
187 * @refcount:
188 *
189 * Reference count of this object
190 *
Thierry Redinge6b62712017-02-28 15:46:41 +0100191 * Please use drm_gem_object_get() to acquire and drm_gem_object_put()
192 * or drm_gem_object_put_unlocked() to release a reference to a GEM
193 * buffer object.
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200194 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200195 struct kref refcount;
196
197 /**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200198 * @handle_count:
199 *
200 * This is the GEM file_priv handle count of this object.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200201 *
202 * Each handle also holds a reference. Note that when the handle_count
203 * drops to 0 any global names (e.g. the id in the flink namespace) will
204 * be cleared.
205 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100206 * Protected by &drm_device.object_name_lock.
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200207 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200208 unsigned handle_count;
209
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200210 /**
211 * @dev: DRM dev this object belongs to.
212 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200213 struct drm_device *dev;
214
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200215 /**
216 * @filp:
217 *
218 * SHMEM file node used as backing storage for swappable buffer objects.
219 * GEM also supports driver private objects with driver-specific backing
220 * storage (contiguous CMA memory, special reserved blocks). In this
221 * case @filp is NULL.
222 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200223 struct file *filp;
224
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200225 /**
226 * @vma_node:
227 *
228 * Mapping info for this object to support mmap. Drivers are supposed to
229 * allocate the mmap offset using drm_gem_create_mmap_offset(). The
230 * offset itself can be retrieved using drm_vma_node_offset_addr().
231 *
232 * Memory mapping itself is handled by drm_gem_mmap(), which also checks
233 * that userspace is allowed to access the object.
234 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200235 struct drm_vma_offset_node vma_node;
236
237 /**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200238 * @size:
239 *
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200240 * Size of the object, in bytes. Immutable over the object's
241 * lifetime.
242 */
243 size_t size;
244
245 /**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200246 * @name:
247 *
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200248 * Global name for this object, starts at 1. 0 means unnamed.
Daniel Vetter940eba22017-01-25 07:26:46 +0100249 * Access is covered by &drm_device.object_name_lock. This is used by
250 * the GEM_FLINK and GEM_OPEN ioctls.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200251 */
252 int name;
253
254 /**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200255 * @dma_buf:
256 *
257 * dma-buf associated with this GEM object.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200258 *
259 * Pointer to the dma-buf associated with this gem object (either
260 * through importing or exporting). We break the resulting reference
261 * loop when the last gem handle for this object is released.
262 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100263 * Protected by &drm_device.object_name_lock.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200264 */
265 struct dma_buf *dma_buf;
266
267 /**
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200268 * @import_attach:
269 *
270 * dma-buf attachment backing this object.
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200271 *
272 * Any foreign dma_buf imported as a gem object has this set to the
273 * attachment point for the device. This is invariant over the lifetime
274 * of a gem object.
275 *
Daniel Vetter940eba22017-01-25 07:26:46 +0100276 * The &drm_driver.gem_free_object callback is responsible for cleaning
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200277 * up the dma_buf attachment and references acquired at import time.
278 *
279 * Note that the drm gem/prime core does not depend upon drivers setting
280 * this field any more. So for drivers where this doesn't make sense
281 * (e.g. virtual devices or a displaylink behind an usb bus) they can
282 * simply leave it as NULL.
283 */
284 struct dma_buf_attachment *import_attach;
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100285
286 /**
Rob Herring1ba62712019-02-02 09:41:54 -0600287 * @resv:
288 *
289 * Pointer to reservation object associated with the this GEM object.
290 *
291 * Normally (@resv == &@_resv) except for imported GEM objects.
292 */
Christian König52791ee2019-08-11 10:06:32 +0200293 struct dma_resv *resv;
Rob Herring1ba62712019-02-02 09:41:54 -0600294
295 /**
296 * @_resv:
297 *
298 * A reservation object for this GEM object.
299 *
300 * This is unused for imported GEM objects.
301 */
Christian König52791ee2019-08-11 10:06:32 +0200302 struct dma_resv _resv;
Rob Herring1ba62712019-02-02 09:41:54 -0600303
304 /**
Noralf Trønnesb39b5392018-11-10 15:56:45 +0100305 * @funcs:
306 *
307 * Optional GEM object functions. If this is set, it will be used instead of the
308 * corresponding &drm_driver GEM callbacks.
309 *
310 * New drivers should use this.
311 *
312 */
313 const struct drm_gem_object_funcs *funcs;
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200314};
315
Daniel Vetterf42e1812017-03-08 15:12:57 +0100316/**
317 * DEFINE_DRM_GEM_FOPS() - macro to generate file operations for GEM drivers
318 * @name: name for the generated structure
319 *
320 * This macro autogenerates a suitable &struct file_operations for GEM based
321 * drivers, which can be assigned to &drm_driver.fops. Note that this structure
322 * cannot be shared between drivers, because it contains a reference to the
323 * current module using THIS_MODULE.
324 *
325 * Note that the declaration is already marked as static - if you need a
326 * non-static version of this you're probably doing it wrong and will break the
327 * THIS_MODULE reference by accident.
328 */
329#define DEFINE_DRM_GEM_FOPS(name) \
330 static const struct file_operations name = {\
331 .owner = THIS_MODULE,\
332 .open = drm_open,\
333 .release = drm_release,\
334 .unlocked_ioctl = drm_ioctl,\
335 .compat_ioctl = drm_compat_ioctl,\
336 .poll = drm_poll,\
337 .read = drm_read,\
338 .llseek = noop_llseek,\
339 .mmap = drm_gem_mmap,\
340 }
341
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200342void drm_gem_object_release(struct drm_gem_object *obj);
343void drm_gem_object_free(struct kref *kref);
344int drm_gem_object_init(struct drm_device *dev,
345 struct drm_gem_object *obj, size_t size);
346void drm_gem_private_object_init(struct drm_device *dev,
347 struct drm_gem_object *obj, size_t size);
348void drm_gem_vm_open(struct vm_area_struct *vma);
349void drm_gem_vm_close(struct vm_area_struct *vma);
350int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
351 struct vm_area_struct *vma);
352int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
353
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200354/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100355 * drm_gem_object_get - acquire a GEM buffer object reference
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200356 * @obj: GEM buffer object
357 *
Thierry Redinge6b62712017-02-28 15:46:41 +0100358 * This function acquires an additional reference to @obj. It is illegal to
359 * call this without already holding a reference. No locks required.
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200360 */
Thierry Redinge6b62712017-02-28 15:46:41 +0100361static inline void drm_gem_object_get(struct drm_gem_object *obj)
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200362{
363 kref_get(&obj->refcount);
364}
365
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200366/**
Thierry Redinge6b62712017-02-28 15:46:41 +0100367 * __drm_gem_object_put - raw function to release a GEM buffer object reference
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200368 * @obj: GEM buffer object
369 *
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200370 * This function is meant to be used by drivers which are not encumbered with
Daniel Vetter940eba22017-01-25 07:26:46 +0100371 * &drm_device.struct_mutex legacy locking and which are using the
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200372 * gem_free_object_unlocked callback. It avoids all the locking checks and
Thierry Redinge6b62712017-02-28 15:46:41 +0100373 * locking overhead of drm_gem_object_put() and drm_gem_object_put_unlocked().
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200374 *
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200375 * Drivers should never call this directly in their code. Instead they should
Thierry Redinge6b62712017-02-28 15:46:41 +0100376 * wrap it up into a ``driver_gem_object_put(struct driver_gem_object *obj)``
377 * wrapper function, and use that. Shared code should never call this, to
Daniel Vetter940eba22017-01-25 07:26:46 +0100378 * avoid breaking drivers by accident which still depend upon
379 * &drm_device.struct_mutex locking.
Daniel Vetterdecc60b2015-10-22 19:11:27 +0200380 */
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200381static inline void
Thierry Redinge6b62712017-02-28 15:46:41 +0100382__drm_gem_object_put(struct drm_gem_object *obj)
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200383{
Daniel Vetter9f0ba532016-05-02 10:40:51 +0200384 kref_put(&obj->refcount, drm_gem_object_free);
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200385}
386
Thierry Redinge6b62712017-02-28 15:46:41 +0100387void drm_gem_object_put_unlocked(struct drm_gem_object *obj);
388void drm_gem_object_put(struct drm_gem_object *obj);
389
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200390int drm_gem_handle_create(struct drm_file *file_priv,
391 struct drm_gem_object *obj,
392 u32 *handlep);
393int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
394
395
396void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
397int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
398int drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size);
399
400struct page **drm_gem_get_pages(struct drm_gem_object *obj);
401void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
402 bool dirty, bool accessed);
403
Rob Herringc117aa42019-03-08 14:26:02 -0600404int drm_gem_objects_lookup(struct drm_file *filp, void __user *bo_handles,
405 int count, struct drm_gem_object ***objs_out);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100406struct drm_gem_object *drm_gem_object_lookup(struct drm_file *filp, u32 handle);
Christian König52791ee2019-08-11 10:06:32 +0200407long drm_gem_dma_resv_wait(struct drm_file *filep, u32 handle,
Rob Herring1ba62712019-02-02 09:41:54 -0600408 bool wait_all, unsigned long timeout);
Eric Anholt7edc3e32019-03-08 08:17:13 -0800409int drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
410 struct ww_acquire_ctx *acquire_ctx);
411void drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
412 struct ww_acquire_ctx *acquire_ctx);
Eric Anholt5d5a1792019-04-01 15:26:33 -0700413int drm_gem_fence_array_add(struct xarray *fence_array,
414 struct dma_fence *fence);
415int drm_gem_fence_array_add_implicit(struct xarray *fence_array,
416 struct drm_gem_object *obj,
417 bool write);
Rob Herringabd4e742019-08-07 10:52:47 -0400418int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
419 u32 handle, u64 *offset);
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200420int drm_gem_dumb_destroy(struct drm_file *file,
421 struct drm_device *dev,
422 uint32_t handle);
423
Daniel Vetterd9fc9412014-09-23 15:46:53 +0200424#endif /* __DRM_GEM_H__ */