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
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>
39 #include <drm/drm_vma_manager.h>
41 struct drm_gem_object
;
44 * struct drm_gem_object_funcs - GEM object functions
46 struct drm_gem_object_funcs
{
50 * Deconstructor for drm_gem_objects.
52 * This callback is mandatory.
54 void (*free
)(struct drm_gem_object
*obj
);
59 * Called upon GEM handle creation.
61 * This callback is optional.
63 int (*open
)(struct drm_gem_object
*obj
, struct drm_file
*file
);
68 * Called upon GEM handle release.
70 * This callback is optional.
72 void (*close
)(struct drm_gem_object
*obj
, struct drm_file
*file
);
77 * If driver subclasses struct &drm_gem_object, it can implement this
78 * optional hook for printing additional driver specific info.
80 * drm_printf_indent() should be used in the callback passing it the
83 * This callback is called from drm_gem_print_info().
85 * This callback is optional.
87 void (*print_info
)(struct drm_printer
*p
, unsigned int indent
,
88 const struct drm_gem_object
*obj
);
93 * Export backing buffer as a &dma_buf.
94 * If this is not set drm_gem_prime_export() is used.
96 * This callback is optional.
98 struct dma_buf
*(*export
)(struct drm_gem_object
*obj
, int flags
);
103 * Pin backing buffer in memory.
105 * This callback is optional.
107 int (*pin
)(struct drm_gem_object
*obj
);
112 * Unpin backing buffer.
114 * This callback is optional.
116 void (*unpin
)(struct drm_gem_object
*obj
);
121 * Returns a Scatter-Gather table representation of the buffer.
122 * Used when exporting a buffer.
124 * This callback is mandatory if buffer export is supported.
126 struct sg_table
*(*get_sg_table
)(struct drm_gem_object
*obj
);
131 * Returns a virtual address for the buffer.
133 * This callback is optional.
135 void *(*vmap
)(struct drm_gem_object
*obj
);
140 * Releases the the address previously returned by @vmap.
142 * This callback is optional.
144 void (*vunmap
)(struct drm_gem_object
*obj
, void *vaddr
);
149 * Virtual memory operations used with mmap.
151 * This is optional but necessary for mmap support.
153 const struct vm_operations_struct
*vm_ops
;
157 * struct drm_gem_object - GEM buffer object
159 * This structure defines the generic parts for GEM buffer objects, which are
160 * mostly around handling mmap and userspace handles.
162 * Buffer objects are often abbreviated to BO.
164 struct drm_gem_object
{
168 * Reference count of this object
170 * Please use drm_gem_object_get() to acquire and drm_gem_object_put()
171 * or drm_gem_object_put_unlocked() to release a reference to a GEM
174 struct kref refcount
;
179 * This is the GEM file_priv handle count of this object.
181 * Each handle also holds a reference. Note that when the handle_count
182 * drops to 0 any global names (e.g. the id in the flink namespace) will
185 * Protected by &drm_device.object_name_lock.
187 unsigned handle_count
;
190 * @dev: DRM dev this object belongs to.
192 struct drm_device
*dev
;
197 * SHMEM file node used as backing storage for swappable buffer objects.
198 * GEM also supports driver private objects with driver-specific backing
199 * storage (contiguous CMA memory, special reserved blocks). In this
200 * case @filp is NULL.
207 * Mapping info for this object to support mmap. Drivers are supposed to
208 * allocate the mmap offset using drm_gem_create_mmap_offset(). The
209 * offset itself can be retrieved using drm_vma_node_offset_addr().
211 * Memory mapping itself is handled by drm_gem_mmap(), which also checks
212 * that userspace is allowed to access the object.
214 struct drm_vma_offset_node vma_node
;
219 * Size of the object, in bytes. Immutable over the object's
227 * Global name for this object, starts at 1. 0 means unnamed.
228 * Access is covered by &drm_device.object_name_lock. This is used by
229 * the GEM_FLINK and GEM_OPEN ioctls.
236 * dma-buf associated with this GEM object.
238 * Pointer to the dma-buf associated with this gem object (either
239 * through importing or exporting). We break the resulting reference
240 * loop when the last gem handle for this object is released.
242 * Protected by &drm_device.object_name_lock.
244 struct dma_buf
*dma_buf
;
249 * dma-buf attachment backing this object.
251 * Any foreign dma_buf imported as a gem object has this set to the
252 * attachment point for the device. This is invariant over the lifetime
255 * The &drm_driver.gem_free_object callback is responsible for cleaning
256 * up the dma_buf attachment and references acquired at import time.
258 * Note that the drm gem/prime core does not depend upon drivers setting
259 * this field any more. So for drivers where this doesn't make sense
260 * (e.g. virtual devices or a displaylink behind an usb bus) they can
261 * simply leave it as NULL.
263 struct dma_buf_attachment
*import_attach
;
268 * Optional GEM object functions. If this is set, it will be used instead of the
269 * corresponding &drm_driver GEM callbacks.
271 * New drivers should use this.
274 const struct drm_gem_object_funcs
*funcs
;
278 * DEFINE_DRM_GEM_FOPS() - macro to generate file operations for GEM drivers
279 * @name: name for the generated structure
281 * This macro autogenerates a suitable &struct file_operations for GEM based
282 * drivers, which can be assigned to &drm_driver.fops. Note that this structure
283 * cannot be shared between drivers, because it contains a reference to the
284 * current module using THIS_MODULE.
286 * Note that the declaration is already marked as static - if you need a
287 * non-static version of this you're probably doing it wrong and will break the
288 * THIS_MODULE reference by accident.
290 #define DEFINE_DRM_GEM_FOPS(name) \
291 static const struct file_operations name = {\
292 .owner = THIS_MODULE,\
294 .release = drm_release,\
295 .unlocked_ioctl = drm_ioctl,\
296 .compat_ioctl = drm_compat_ioctl,\
299 .llseek = noop_llseek,\
300 .mmap = drm_gem_mmap,\
303 void drm_gem_object_release(struct drm_gem_object
*obj
);
304 void drm_gem_object_free(struct kref
*kref
);
305 int drm_gem_object_init(struct drm_device
*dev
,
306 struct drm_gem_object
*obj
, size_t size
);
307 void drm_gem_private_object_init(struct drm_device
*dev
,
308 struct drm_gem_object
*obj
, size_t size
);
309 void drm_gem_vm_open(struct vm_area_struct
*vma
);
310 void drm_gem_vm_close(struct vm_area_struct
*vma
);
311 int drm_gem_mmap_obj(struct drm_gem_object
*obj
, unsigned long obj_size
,
312 struct vm_area_struct
*vma
);
313 int drm_gem_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
316 * drm_gem_object_get - acquire a GEM buffer object reference
317 * @obj: GEM buffer object
319 * This function acquires an additional reference to @obj. It is illegal to
320 * call this without already holding a reference. No locks required.
322 static inline void drm_gem_object_get(struct drm_gem_object
*obj
)
324 kref_get(&obj
->refcount
);
328 * __drm_gem_object_put - raw function to release a GEM buffer object reference
329 * @obj: GEM buffer object
331 * This function is meant to be used by drivers which are not encumbered with
332 * &drm_device.struct_mutex legacy locking and which are using the
333 * gem_free_object_unlocked callback. It avoids all the locking checks and
334 * locking overhead of drm_gem_object_put() and drm_gem_object_put_unlocked().
336 * Drivers should never call this directly in their code. Instead they should
337 * wrap it up into a ``driver_gem_object_put(struct driver_gem_object *obj)``
338 * wrapper function, and use that. Shared code should never call this, to
339 * avoid breaking drivers by accident which still depend upon
340 * &drm_device.struct_mutex locking.
343 __drm_gem_object_put(struct drm_gem_object
*obj
)
345 kref_put(&obj
->refcount
, drm_gem_object_free
);
348 void drm_gem_object_put_unlocked(struct drm_gem_object
*obj
);
349 void drm_gem_object_put(struct drm_gem_object
*obj
);
351 int drm_gem_handle_create(struct drm_file
*file_priv
,
352 struct drm_gem_object
*obj
,
354 int drm_gem_handle_delete(struct drm_file
*filp
, u32 handle
);
357 void drm_gem_free_mmap_offset(struct drm_gem_object
*obj
);
358 int drm_gem_create_mmap_offset(struct drm_gem_object
*obj
);
359 int drm_gem_create_mmap_offset_size(struct drm_gem_object
*obj
, size_t size
);
361 struct page
**drm_gem_get_pages(struct drm_gem_object
*obj
);
362 void drm_gem_put_pages(struct drm_gem_object
*obj
, struct page
**pages
,
363 bool dirty
, bool accessed
);
365 struct drm_gem_object
*drm_gem_object_lookup(struct drm_file
*filp
, u32 handle
);
366 int drm_gem_dumb_map_offset(struct drm_file
*file
, struct drm_device
*dev
,
367 u32 handle
, u64
*offset
);
368 int drm_gem_dumb_destroy(struct drm_file
*file
,
369 struct drm_device
*dev
,
372 int drm_gem_pin(struct drm_gem_object
*obj
);
373 void drm_gem_unpin(struct drm_gem_object
*obj
);
374 void *drm_gem_vmap(struct drm_gem_object
*obj
);
375 void drm_gem_vunmap(struct drm_gem_object
*obj
, void *vaddr
);
377 #endif /* __DRM_GEM_H__ */