1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32#ifndef __DRM_PRIME_H__
33#define __DRM_PRIME_H__
34
35#include <linux/mutex.h>
36#include <linux/rbtree.h>
37#include <linux/scatterlist.h>
38
39
40
41
42
43
44
45
46struct drm_prime_file_private {
47
48 struct mutex lock;
49 struct rb_root dmabufs;
50 struct rb_root handles;
51};
52
53struct device;
54
55struct dma_buf_export_info;
56struct dma_buf;
57struct dma_buf_attachment;
58
59enum dma_data_direction;
60
61struct drm_device;
62struct drm_gem_object;
63struct drm_file;
64
65struct device;
66
67struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
68 struct drm_gem_object *obj,
69 int flags);
70int drm_gem_prime_handle_to_fd(struct drm_device *dev,
71 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
72 int *prime_fd);
73struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
74 struct dma_buf *dma_buf);
75
76struct drm_gem_object *drm_gem_prime_import_dev(struct drm_device *dev,
77 struct dma_buf *dma_buf,
78 struct device *attach_dev);
79
80int drm_gem_prime_fd_to_handle(struct drm_device *dev,
81 struct drm_file *file_priv, int prime_fd, uint32_t *handle);
82struct dma_buf *drm_gem_dmabuf_export(struct drm_device *dev,
83 struct dma_buf_export_info *exp_info);
84void drm_gem_dmabuf_release(struct dma_buf *dma_buf);
85int drm_gem_map_attach(struct dma_buf *dma_buf,
86 struct dma_buf_attachment *attach);
87void drm_gem_map_detach(struct dma_buf *dma_buf,
88 struct dma_buf_attachment *attach);
89struct sg_table *drm_gem_map_dma_buf(struct dma_buf_attachment *attach,
90 enum dma_data_direction dir);
91void drm_gem_unmap_dma_buf(struct dma_buf_attachment *attach,
92 struct sg_table *sgt,
93 enum dma_data_direction dir);
94void *drm_gem_dmabuf_vmap(struct dma_buf *dma_buf);
95void drm_gem_dmabuf_vunmap(struct dma_buf *dma_buf, void *vaddr);
96void *drm_gem_dmabuf_kmap(struct dma_buf *dma_buf, unsigned long page_num);
97void drm_gem_dmabuf_kunmap(struct dma_buf *dma_buf, unsigned long page_num,
98 void *addr);
99int drm_gem_dmabuf_mmap(struct dma_buf *dma_buf, struct vm_area_struct *vma);
100
101int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
102 dma_addr_t *addrs, int max_pages);
103struct sg_table *drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages);
104void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg);
105
106
107#endif
108