hc
2023-03-21 4b55d97acc464242bcd6a8ae77b8ff37c22dec58
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
 * Author:Mark Yao <mark.yao@rock-chips.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
 
#ifndef _ROCKCHIP_DRM_GEM_H
#define _ROCKCHIP_DRM_GEM_H
 
#define to_rockchip_obj(x) container_of(x, struct rockchip_gem_object, base)
 
enum rockchip_gem_buf_type {
   ROCKCHIP_GEM_BUF_TYPE_CMA,
   ROCKCHIP_GEM_BUF_TYPE_SHMEM,
   ROCKCHIP_GEM_BUF_TYPE_SECURE,
};
 
struct rockchip_gem_object {
   struct drm_gem_object base;
   unsigned int flags;
   enum rockchip_gem_buf_type buf_type;
 
   void *kvaddr;
   void *cookie;
   dma_addr_t dma_addr;    /* iova if iommu enable, otherwise physical address */
   dma_addr_t dma_handle;    /* physical address */
 
   /* Used when IOMMU is disabled */
   unsigned long dma_attrs;
 
   /* Used when IOMMU is enabled */
   struct drm_mm_node mm;
   unsigned long num_pages;
   struct page **pages;
   struct sg_table *sgt;
   size_t size;
};
 
struct sg_table *rockchip_gem_prime_get_sg_table(struct drm_gem_object *obj);
struct drm_gem_object *
rockchip_gem_prime_import_sg_table(struct drm_device *dev,
                  struct dma_buf_attachment *attach,
                  struct sg_table *sg);
void *rockchip_gem_prime_vmap(struct drm_gem_object *obj);
void rockchip_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
 
/* drm driver mmap file operations */
int rockchip_gem_mmap(struct file *filp, struct vm_area_struct *vma);
 
/* mmap a gem object to userspace. */
int rockchip_gem_mmap_buf(struct drm_gem_object *obj,
             struct vm_area_struct *vma);
 
struct rockchip_gem_object *
rockchip_gem_create_object(struct drm_device *drm, unsigned int size,
              bool alloc_kmap, unsigned int flags);
 
void rockchip_gem_free_object(struct drm_gem_object *obj);
 
int rockchip_gem_dumb_create(struct drm_file *file_priv,
                struct drm_device *dev,
                struct drm_mode_create_dumb *args);
int rockchip_gem_dumb_map_offset(struct drm_file *file_priv,
                struct drm_device *dev, uint32_t handle,
                uint64_t *offset);
/*
 * request gem object creation and buffer allocation as the size
 * that it is calculated with framebuffer information such as width,
 * height and bpp.
 */
int rockchip_gem_create_ioctl(struct drm_device *dev, void *data,
                 struct drm_file *file_priv);
 
/* get buffer offset to map to user space. */
int rockchip_gem_map_offset_ioctl(struct drm_device *dev, void *data,
                 struct drm_file *file_priv);
 
int rockchip_gem_get_phys_ioctl(struct drm_device *dev, void *data,
               struct drm_file *file_priv);
 
int rockchip_gem_prime_begin_cpu_access(struct drm_gem_object *obj,
                   enum dma_data_direction dir);
 
int rockchip_gem_prime_end_cpu_access(struct drm_gem_object *obj,
                     enum dma_data_direction dir);
 
int rockchip_gem_prime_begin_cpu_access_partial(struct drm_gem_object *obj,
                       enum dma_data_direction dir,
                       unsigned int offset,
                       unsigned int len);
 
int rockchip_gem_prime_end_cpu_access_partial(struct drm_gem_object *obj,
                         enum dma_data_direction dir,
                         unsigned int offset,
                         unsigned int len);
 
#endif /* _ROCKCHIP_DRM_GEM_H */