]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/drm/drm_gem.h
drm: drm_bridge.h: delete duplicated word in comment
[mirror_ubuntu-jammy-kernel.git] / include / drm / drm_gem.h
CommitLineData
d9fc9413
DV
1#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
c6bb9baa 37#include <linux/kref.h>
52791eee 38#include <linux/dma-resv.h>
c6bb9baa
DV
39
40#include <drm/drm_vma_manager.h>
41
b39b5394
NT
42struct 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 *
805dc614 104 * Pin backing buffer in memory. Used by the drm_gem_map_attach() helper.
b39b5394
NT
105 *
106 * This callback is optional.
107 */
108 int (*pin)(struct drm_gem_object *obj);
109
110 /**
111 * @unpin:
112 *
805dc614 113 * Unpin backing buffer. Used by the drm_gem_map_detach() helper.
b39b5394
NT
114 *
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.
805dc614
DV
123 * 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.
b39b5394 128 *
805dc614 129 * See also drm_prime_pages_to_sg().
b39b5394
NT
130 */
131 struct sg_table *(*get_sg_table)(struct drm_gem_object *obj);
132
133 /**
134 * @vmap:
135 *
805dc614
DV
136 * Returns a virtual address for the buffer. Used by the
137 * drm_gem_dmabuf_vmap() helper.
b39b5394
NT
138 *
139 * This callback is optional.
140 */
141 void *(*vmap)(struct drm_gem_object *obj);
142
143 /**
144 * @vunmap:
145 *
805dc614
DV
146 * Releases the the address previously returned by @vmap. Used by the
147 * drm_gem_dmabuf_vunmap() helper.
b39b5394
NT
148 *
149 * This callback is optional.
150 */
151 void (*vunmap)(struct drm_gem_object *obj, void *vaddr);
152
c40069cb
GH
153 /**
154 * @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
e5516553 162 * used, the @mmap callback must set vma->vm_ops instead.
c40069cb
GH
163 */
164 int (*mmap)(struct drm_gem_object *obj, struct vm_area_struct *vma);
165
b39b5394
NT
166 /**
167 * @vm_ops:
168 *
169 * Virtual memory operations used with mmap.
170 *
171 * This is optional but necessary for mmap support.
172 */
173 const struct vm_operations_struct *vm_ops;
174};
175
d9fc9413 176/**
decc60bf
DV
177 * struct drm_gem_object - GEM buffer object
178 *
179 * This structure defines the generic parts for GEM buffer objects, which are
180 * mostly around handling mmap and userspace handles.
181 *
182 * Buffer objects are often abbreviated to BO.
d9fc9413
DV
183 */
184struct drm_gem_object {
decc60bf
DV
185 /**
186 * @refcount:
187 *
188 * Reference count of this object
189 *
eecd7fd8 190 * Please use drm_gem_object_get() to acquire and drm_gem_object_put_locked()
be6ee102 191 * or drm_gem_object_put() to release a reference to a GEM
e6b62714 192 * buffer object.
decc60bf 193 */
d9fc9413
DV
194 struct kref refcount;
195
196 /**
decc60bf
DV
197 * @handle_count:
198 *
199 * This is the GEM file_priv handle count of this object.
d9fc9413
DV
200 *
201 * Each handle also holds a reference. Note that when the handle_count
202 * drops to 0 any global names (e.g. the id in the flink namespace) will
203 * be cleared.
204 *
940eba2d 205 * Protected by &drm_device.object_name_lock.
decc60bf 206 */
d9fc9413
DV
207 unsigned handle_count;
208
decc60bf
DV
209 /**
210 * @dev: DRM dev this object belongs to.
211 */
d9fc9413
DV
212 struct drm_device *dev;
213
decc60bf
DV
214 /**
215 * @filp:
216 *
217 * SHMEM file node used as backing storage for swappable buffer objects.
218 * GEM also supports driver private objects with driver-specific backing
219 * storage (contiguous CMA memory, special reserved blocks). In this
220 * case @filp is NULL.
221 */
d9fc9413
DV
222 struct file *filp;
223
decc60bf
DV
224 /**
225 * @vma_node:
226 *
227 * Mapping info for this object to support mmap. Drivers are supposed to
228 * allocate the mmap offset using drm_gem_create_mmap_offset(). The
229 * offset itself can be retrieved using drm_vma_node_offset_addr().
230 *
231 * Memory mapping itself is handled by drm_gem_mmap(), which also checks
232 * that userspace is allowed to access the object.
233 */
d9fc9413
DV
234 struct drm_vma_offset_node vma_node;
235
236 /**
decc60bf
DV
237 * @size:
238 *
d9fc9413
DV
239 * Size of the object, in bytes. Immutable over the object's
240 * lifetime.
241 */
242 size_t size;
243
244 /**
decc60bf
DV
245 * @name:
246 *
d9fc9413 247 * Global name for this object, starts at 1. 0 means unnamed.
940eba2d
DV
248 * Access is covered by &drm_device.object_name_lock. This is used by
249 * the GEM_FLINK and GEM_OPEN ioctls.
d9fc9413
DV
250 */
251 int name;
252
d9fc9413 253 /**
decc60bf
DV
254 * @dma_buf:
255 *
256 * dma-buf associated with this GEM object.
d9fc9413
DV
257 *
258 * Pointer to the dma-buf associated with this gem object (either
259 * through importing or exporting). We break the resulting reference
260 * loop when the last gem handle for this object is released.
261 *
940eba2d 262 * Protected by &drm_device.object_name_lock.
d9fc9413
DV
263 */
264 struct dma_buf *dma_buf;
265
266 /**
decc60bf
DV
267 * @import_attach:
268 *
269 * dma-buf attachment backing this object.
d9fc9413
DV
270 *
271 * Any foreign dma_buf imported as a gem object has this set to the
272 * attachment point for the device. This is invariant over the lifetime
273 * of a gem object.
274 *
1a9458ae
EV
275 * The &drm_driver.gem_free_object_unlocked callback is responsible for
276 * cleaning up the dma_buf attachment and references acquired at import
277 * time.
d9fc9413
DV
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;
b39b5394 285
1ba62714
RH
286 /**
287 * @resv:
288 *
289 * Pointer to reservation object associated with the this GEM object.
290 *
291 * Normally (@resv == &@_resv) except for imported GEM objects.
292 */
52791eee 293 struct dma_resv *resv;
1ba62714
RH
294
295 /**
296 * @_resv:
297 *
298 * A reservation object for this GEM object.
299 *
300 * This is unused for imported GEM objects.
301 */
52791eee 302 struct dma_resv _resv;
1ba62714 303
b39b5394
NT
304 /**
305 * @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;
d9fc9413
DV
314};
315
f42e1819
DV
316/**
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
d9fc9413
DV
342void 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
decc60bf 354/**
e6b62714 355 * drm_gem_object_get - acquire a GEM buffer object reference
decc60bf
DV
356 * @obj: GEM buffer object
357 *
e6b62714
TR
358 * This function acquires an additional reference to @obj. It is illegal to
359 * call this without already holding a reference. No locks required.
decc60bf 360 */
e6b62714 361static inline void drm_gem_object_get(struct drm_gem_object *obj)
d9fc9413
DV
362{
363 kref_get(&obj->refcount);
364}
365
0e799e84
CW
366__attribute__((nonnull))
367static inline void
368__drm_gem_object_put(struct drm_gem_object *obj)
369{
370 kref_put(&obj->refcount, drm_gem_object_free);
371}
372
decc60bf 373/**
2f4dd13d 374 * drm_gem_object_put - drop a GEM buffer object reference
decc60bf
DV
375 * @obj: GEM buffer object
376 *
b5d25074 377 * This releases a reference to @obj.
decc60bf 378 */
d9fc9413 379static inline void
2f4dd13d 380drm_gem_object_put(struct drm_gem_object *obj)
d9fc9413 381{
0e799e84
CW
382 if (obj)
383 __drm_gem_object_put(obj);
d9fc9413
DV
384}
385
eecd7fd8 386void drm_gem_object_put_locked(struct drm_gem_object *obj);
e6b62714 387
d9fc9413
DV
388int drm_gem_handle_create(struct drm_file *file_priv,
389 struct drm_gem_object *obj,
390 u32 *handlep);
391int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
392
393
394void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
395int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
396int drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size);
397
398struct page **drm_gem_get_pages(struct drm_gem_object *obj);
399void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
400 bool dirty, bool accessed);
401
c117aa4d
RH
402int drm_gem_objects_lookup(struct drm_file *filp, void __user *bo_handles,
403 int count, struct drm_gem_object ***objs_out);
a8ad0bd8 404struct drm_gem_object *drm_gem_object_lookup(struct drm_file *filp, u32 handle);
52791eee 405long drm_gem_dma_resv_wait(struct drm_file *filep, u32 handle,
1ba62714 406 bool wait_all, unsigned long timeout);
7edc3e3b
EA
407int drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
408 struct ww_acquire_ctx *acquire_ctx);
409void drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
410 struct ww_acquire_ctx *acquire_ctx);
5d5a179d
EA
411int drm_gem_fence_array_add(struct xarray *fence_array,
412 struct dma_fence *fence);
413int drm_gem_fence_array_add_implicit(struct xarray *fence_array,
414 struct drm_gem_object *obj,
415 bool write);
abd4e745
RH
416int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
417 u32 handle, u64 *offset);
d9fc9413
DV
418int drm_gem_dumb_destroy(struct drm_file *file,
419 struct drm_device *dev,
420 uint32_t handle);
421
422#endif /* __DRM_GEM_H__ */