8b23b30472396519a000367bf168880b58f89e5a
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / rockchip / rockchip_drm_drv.h
1 /*
2  * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
3  * Author:Mark Yao <mark.yao@rock-chips.com>
4  *
5  * based on exynos_drm_drv.h
6  *
7  * This software is licensed under the terms of the GNU General Public
8  * License version 2, as published by the Free Software Foundation, and
9  * may be copied, distributed, and modified under those terms.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #ifndef _ROCKCHIP_DRM_DRV_H
18 #define _ROCKCHIP_DRM_DRV_H
19
20 #include <drm/drm_fb_helper.h>
21 #include <drm/drm_atomic_helper.h>
22 #include <drm/drm_gem.h>
23
24 #include <linux/module.h>
25 #include <linux/component.h>
26
27 #define ROCKCHIP_MAX_FB_BUFFER  3
28 #define ROCKCHIP_MAX_CONNECTOR  2
29 #define ROCKCHIP_MAX_CRTC       2
30
31 struct drm_device;
32 struct drm_connector;
33 struct iommu_domain;
34
35 /*
36  * Rockchip drm private crtc funcs.
37  * @loader_protect: protect loader logo crtc's power
38  * @enable_vblank: enable crtc vblank irq.
39  * @disable_vblank: disable crtc vblank irq.
40  */
41 struct rockchip_crtc_funcs {
42         int (*loader_protect)(struct drm_crtc *crtc, bool on);
43         int (*enable_vblank)(struct drm_crtc *crtc);
44         void (*disable_vblank)(struct drm_crtc *crtc);
45         void (*cancel_pending_vblank)(struct drm_crtc *crtc, struct drm_file *file_priv);
46         int (*debugfs_dump)(struct drm_crtc *crtc, struct seq_file *s);
47         void (*regs_dump)(struct drm_crtc *crtc, struct seq_file *s);
48         enum drm_mode_status (*mode_valid)(struct drm_crtc *crtc,
49                                            const struct drm_display_mode *mode,
50                                            int output_type);
51 };
52
53 struct drm_rockchip_subdrv {
54         struct list_head list;
55         struct device *dev;
56         struct drm_device *drm_dev;
57
58         int (*open)(struct drm_device *drm_dev, struct device *dev,
59                     struct drm_file *file);
60         void (*close)(struct drm_device *drm_dev, struct device *dev,
61                       struct drm_file *file);
62 };
63
64 struct rockchip_atomic_commit {
65         struct work_struct      work;
66         struct drm_atomic_state *state;
67         struct drm_device *dev;
68         struct mutex lock;
69 };
70
71 struct rockchip_dclk_pll {
72         struct clk *pll;
73         unsigned int use_count;
74 };
75
76 struct rockchip_crtc_state {
77         struct drm_crtc_state base;
78         struct drm_property_blob *cabc_lut;
79         int left_margin;
80         int right_margin;
81         int top_margin;
82         int bottom_margin;
83         int afbdc_win_format;
84         int afbdc_win_width;
85         int afbdc_win_height;
86         int afbdc_win_ptr;
87         int afbdc_win_id;
88         int afbdc_en;
89         int cabc_mode;
90         int cabc_stage_up;
91         int cabc_stage_down;
92         int cabc_global_dn;
93         int cabc_calc_pixel_num;
94         int dsp_layer_sel;
95         int output_type;
96         int output_mode;
97         int output_flags;
98         int bus_format;
99 };
100
101 #define to_rockchip_crtc_state(s) \
102                 container_of(s, struct rockchip_crtc_state, base)
103
104 /*
105  * Rockchip drm_file private structure.
106  *
107  * @gem_cpu_acquire_list: list of GEM objects we hold acquires on
108  */
109 struct rockchip_drm_file_private {
110         struct list_head                gem_cpu_acquire_list;
111         struct rockchip_drm_rga_private *rga_priv;
112 };
113
114 struct rockchip_logo {
115         struct sg_table *sgt;
116         struct drm_mm_node mm;
117         dma_addr_t dma_addr;
118         phys_addr_t start;
119         phys_addr_t size;
120         size_t iommu_map_size;
121         int count;
122 };
123
124 /*
125  * Rockchip drm private structure.
126  *
127  * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
128  * @num_pipe: number of pipes for this device.
129  * @cpu_fence_context: fence context used for CPU acquire/release
130  * @cpu_fence_seqno: fence sequence number
131  */
132 struct rockchip_drm_private {
133         struct rockchip_logo *logo;
134         struct drm_property *logo_ymirror_prop;
135         struct drm_property *cabc_mode_property;
136         struct drm_property *cabc_lut_property;
137         struct drm_property *cabc_stage_up_property;
138         struct drm_property *cabc_stage_down_property;
139         struct drm_property *cabc_global_dn_property;
140         struct drm_property *cabc_calc_pixel_num_property;
141         void *backlight;
142         struct drm_fb_helper *fbdev_helper;
143         struct drm_gem_object *fbdev_bo;
144         const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
145         struct drm_atomic_state *state;
146
147         struct rockchip_atomic_commit commit;
148         struct iommu_domain *domain;
149 #ifdef CONFIG_DRM_DMA_SYNC
150         unsigned int cpu_fence_context;
151         atomic_t cpu_fence_seqno;
152 #endif
153         /* protect drm_mm on multi-threads */
154         struct mutex mm_lock;
155         struct drm_mm mm;
156         struct rockchip_dclk_pll default_pll;
157         struct rockchip_dclk_pll hdmi_pll;
158 };
159
160 #ifndef MODULE
161 void rockchip_free_loader_memory(struct drm_device *drm);
162 #endif
163 void rockchip_drm_atomic_work(struct work_struct *work);
164 int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
165                                  const struct rockchip_crtc_funcs *crtc_funcs);
166 void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
167 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
168                                    struct device *dev);
169 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
170                                     struct device *dev);
171 int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
172                                 unsigned int mstimeout);
173
174 int rockchip_drm_register_subdrv(struct drm_rockchip_subdrv *subdrv);
175 int rockchip_drm_unregister_subdrv(struct drm_rockchip_subdrv *subdrv);
176
177 #endif /* _ROCKCHIP_DRM_DRV_H_ */