Merge tag 'iommu-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux/fpc-iii.git] / include / drm / drm_gem.h
blob5e6daa1c982fe9a37cef9ed9fe9a475745fd0535
1 #ifndef __DRM_GEM_H__
2 #define __DRM_GEM_H__
4 /*
5 * GEM Graphics Execution Manager Driver Interfaces
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>
14 * Author: Rickard E. (Rik) Faith <faith@valinux.com>
15 * Author: Gareth Hughes <gareth@valinux.com>
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:
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.
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.
37 #include <linux/kref.h>
38 #include <linux/dma-resv.h>
40 #include <drm/drm_vma_manager.h>
42 struct dma_buf_map;
43 struct drm_gem_object;
45 /**
46 * struct drm_gem_object_funcs - GEM object functions
48 struct drm_gem_object_funcs {
49 /**
50 * @free:
52 * Deconstructor for drm_gem_objects.
54 * This callback is mandatory.
56 void (*free)(struct drm_gem_object *obj);
58 /**
59 * @open:
61 * Called upon GEM handle creation.
63 * This callback is optional.
65 int (*open)(struct drm_gem_object *obj, struct drm_file *file);
67 /**
68 * @close:
70 * Called upon GEM handle release.
72 * This callback is optional.
74 void (*close)(struct drm_gem_object *obj, struct drm_file *file);
76 /**
77 * @print_info:
79 * If driver subclasses struct &drm_gem_object, it can implement this
80 * optional hook for printing additional driver specific info.
82 * drm_printf_indent() should be used in the callback passing it the
83 * indent argument.
85 * This callback is called from drm_gem_print_info().
87 * This callback is optional.
89 void (*print_info)(struct drm_printer *p, unsigned int indent,
90 const struct drm_gem_object *obj);
92 /**
93 * @export:
95 * Export backing buffer as a &dma_buf.
96 * If this is not set drm_gem_prime_export() is used.
98 * This callback is optional.
100 struct dma_buf *(*export)(struct drm_gem_object *obj, int flags);
103 * @pin:
105 * Pin backing buffer in memory. Used by the drm_gem_map_attach() helper.
107 * This callback is optional.
109 int (*pin)(struct drm_gem_object *obj);
112 * @unpin:
114 * Unpin backing buffer. Used by the drm_gem_map_detach() helper.
116 * This callback is optional.
118 void (*unpin)(struct drm_gem_object *obj);
121 * @get_sg_table:
123 * Returns a Scatter-Gather table representation of the buffer.
124 * Used when exporting a buffer by the drm_gem_map_dma_buf() helper.
125 * Releasing is done by calling dma_unmap_sg_attrs() and sg_free_table()
126 * in drm_gem_unmap_buf(), therefore these helpers and this callback
127 * here cannot be used for sg tables pointing at driver private memory
128 * ranges.
130 * See also drm_prime_pages_to_sg().
132 struct sg_table *(*get_sg_table)(struct drm_gem_object *obj);
135 * @vmap:
137 * Returns a virtual address for the buffer. Used by the
138 * drm_gem_dmabuf_vmap() helper.
140 * This callback is optional.
142 int (*vmap)(struct drm_gem_object *obj, struct dma_buf_map *map);
145 * @vunmap:
147 * Releases the address previously returned by @vmap. Used by the
148 * drm_gem_dmabuf_vunmap() helper.
150 * This callback is optional.
152 void (*vunmap)(struct drm_gem_object *obj, struct dma_buf_map *map);
155 * @mmap:
157 * Handle mmap() of the gem object, setup vma accordingly.
159 * This callback is optional.
161 * The callback is used by both drm_gem_mmap_obj() and
162 * drm_gem_prime_mmap(). When @mmap is present @vm_ops is not
163 * used, the @mmap callback must set vma->vm_ops instead.
165 int (*mmap)(struct drm_gem_object *obj, struct vm_area_struct *vma);
168 * @vm_ops:
170 * Virtual memory operations used with mmap.
172 * This is optional but necessary for mmap support.
174 const struct vm_operations_struct *vm_ops;
178 * struct drm_gem_object - GEM buffer object
180 * This structure defines the generic parts for GEM buffer objects, which are
181 * mostly around handling mmap and userspace handles.
183 * Buffer objects are often abbreviated to BO.
185 struct drm_gem_object {
187 * @refcount:
189 * Reference count of this object
191 * Please use drm_gem_object_get() to acquire and drm_gem_object_put_locked()
192 * or drm_gem_object_put() to release a reference to a GEM
193 * buffer object.
195 struct kref refcount;
198 * @handle_count:
200 * This is the GEM file_priv handle count of this object.
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.
206 * Protected by &drm_device.object_name_lock.
208 unsigned handle_count;
211 * @dev: DRM dev this object belongs to.
213 struct drm_device *dev;
216 * @filp:
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.
223 struct file *filp;
226 * @vma_node:
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().
232 * Memory mapping itself is handled by drm_gem_mmap(), which also checks
233 * that userspace is allowed to access the object.
235 struct drm_vma_offset_node vma_node;
238 * @size:
240 * Size of the object, in bytes. Immutable over the object's
241 * lifetime.
243 size_t size;
246 * @name:
248 * Global name for this object, starts at 1. 0 means unnamed.
249 * Access is covered by &drm_device.object_name_lock. This is used by
250 * the GEM_FLINK and GEM_OPEN ioctls.
252 int name;
255 * @dma_buf:
257 * dma-buf associated with this GEM object.
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.
263 * Protected by &drm_device.object_name_lock.
265 struct dma_buf *dma_buf;
268 * @import_attach:
270 * dma-buf attachment backing this object.
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.
276 * The &drm_gem_object_funcs.free callback is responsible for
277 * cleaning up the dma_buf attachment and references acquired at import
278 * time.
280 * Note that the drm gem/prime core does not depend upon drivers setting
281 * this field any more. So for drivers where this doesn't make sense
282 * (e.g. virtual devices or a displaylink behind an usb bus) they can
283 * simply leave it as NULL.
285 struct dma_buf_attachment *import_attach;
288 * @resv:
290 * Pointer to reservation object associated with the this GEM object.
292 * Normally (@resv == &@_resv) except for imported GEM objects.
294 struct dma_resv *resv;
297 * @_resv:
299 * A reservation object for this GEM object.
301 * This is unused for imported GEM objects.
303 struct dma_resv _resv;
306 * @funcs:
308 * Optional GEM object functions. If this is set, it will be used instead of the
309 * corresponding &drm_driver GEM callbacks.
311 * New drivers should use this.
314 const struct drm_gem_object_funcs *funcs;
318 * DEFINE_DRM_GEM_FOPS() - macro to generate file operations for GEM drivers
319 * @name: name for the generated structure
321 * This macro autogenerates a suitable &struct file_operations for GEM based
322 * drivers, which can be assigned to &drm_driver.fops. Note that this structure
323 * cannot be shared between drivers, because it contains a reference to the
324 * current module using THIS_MODULE.
326 * Note that the declaration is already marked as static - if you need a
327 * non-static version of this you're probably doing it wrong and will break the
328 * THIS_MODULE reference by accident.
330 #define DEFINE_DRM_GEM_FOPS(name) \
331 static const struct file_operations name = {\
332 .owner = THIS_MODULE,\
333 .open = drm_open,\
334 .release = drm_release,\
335 .unlocked_ioctl = drm_ioctl,\
336 .compat_ioctl = drm_compat_ioctl,\
337 .poll = drm_poll,\
338 .read = drm_read,\
339 .llseek = noop_llseek,\
340 .mmap = drm_gem_mmap,\
343 void drm_gem_object_release(struct drm_gem_object *obj);
344 void drm_gem_object_free(struct kref *kref);
345 int drm_gem_object_init(struct drm_device *dev,
346 struct drm_gem_object *obj, size_t size);
347 void drm_gem_private_object_init(struct drm_device *dev,
348 struct drm_gem_object *obj, size_t size);
349 void drm_gem_vm_open(struct vm_area_struct *vma);
350 void drm_gem_vm_close(struct vm_area_struct *vma);
351 int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
352 struct vm_area_struct *vma);
353 int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
356 * drm_gem_object_get - acquire a GEM buffer object reference
357 * @obj: GEM buffer object
359 * This function acquires an additional reference to @obj. It is illegal to
360 * call this without already holding a reference. No locks required.
362 static inline void drm_gem_object_get(struct drm_gem_object *obj)
364 kref_get(&obj->refcount);
367 __attribute__((nonnull))
368 static inline void
369 __drm_gem_object_put(struct drm_gem_object *obj)
371 kref_put(&obj->refcount, drm_gem_object_free);
375 * drm_gem_object_put - drop a GEM buffer object reference
376 * @obj: GEM buffer object
378 * This releases a reference to @obj.
380 static inline void
381 drm_gem_object_put(struct drm_gem_object *obj)
383 if (obj)
384 __drm_gem_object_put(obj);
387 void drm_gem_object_put_locked(struct drm_gem_object *obj);
389 int drm_gem_handle_create(struct drm_file *file_priv,
390 struct drm_gem_object *obj,
391 u32 *handlep);
392 int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
395 void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
396 int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
397 int drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size);
399 struct page **drm_gem_get_pages(struct drm_gem_object *obj);
400 void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
401 bool dirty, bool accessed);
403 int drm_gem_objects_lookup(struct drm_file *filp, void __user *bo_handles,
404 int count, struct drm_gem_object ***objs_out);
405 struct drm_gem_object *drm_gem_object_lookup(struct drm_file *filp, u32 handle);
406 long drm_gem_dma_resv_wait(struct drm_file *filep, u32 handle,
407 bool wait_all, unsigned long timeout);
408 int drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
409 struct ww_acquire_ctx *acquire_ctx);
410 void drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
411 struct ww_acquire_ctx *acquire_ctx);
412 int drm_gem_fence_array_add(struct xarray *fence_array,
413 struct dma_fence *fence);
414 int drm_gem_fence_array_add_implicit(struct xarray *fence_array,
415 struct drm_gem_object *obj,
416 bool write);
417 int drm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
418 u32 handle, u64 *offset);
419 int drm_gem_dumb_destroy(struct drm_file *file,
420 struct drm_device *dev,
421 uint32_t handle);
423 #endif /* __DRM_GEM_H__ */