xref: /rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop_reg.c (revision d4eae7f5feecb47401382e92cf7d3e5430b9dd44)
1 /*
2  * (C) Copyright 2008-2017 Fuzhou Rockchip Electronics Co., Ltd
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <config.h>
8 #include <common.h>
9 #include <errno.h>
10 #include <malloc.h>
11 #include <asm/unaligned.h>
12 #include <asm/io.h>
13 #include <linux/list.h>
14 
15 #include "rockchip_vop.h"
16 #include "rockchip_vop_reg.h"
17 
18 #define VOP_REG_VER_MASK(off, _mask, s, _write_mask, _major, \
19 		         _begin_minor, _end_minor) \
20 		{.offset = off, \
21 		 .mask = _mask, \
22 		 .shift = s, \
23 		 .write_mask = _write_mask, \
24 		 .major = _major, \
25 		 .begin_minor = _begin_minor, \
26 		 .end_minor = _end_minor,}
27 
28 #define VOP_REG(off, _mask, s) \
29 		VOP_REG_VER_MASK(off, _mask, s, false, 0, 0, -1)
30 
31 #define VOP_REG_MASK(off, _mask, s) \
32 		VOP_REG_VER_MASK(off, _mask, s, true, 0, 0, -1)
33 
34 #define VOP_REG_VER(off, _mask, s, _major, _begin_minor, _end_minor) \
35 		VOP_REG_VER_MASK(off, _mask, s, false, \
36 				 _major, _begin_minor, _end_minor)
37 
38 static const struct vop_scl_extension rk3288_win_full_scl_ext = {
39 	.cbcr_vsd_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 31),
40 	.cbcr_vsu_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 30),
41 	.cbcr_hsd_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 28),
42 	.cbcr_ver_scl_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 26),
43 	.cbcr_hor_scl_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 24),
44 	.yrgb_vsd_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 23),
45 	.yrgb_vsu_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 22),
46 	.yrgb_hsd_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 20),
47 	.yrgb_ver_scl_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 18),
48 	.yrgb_hor_scl_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 16),
49 	.line_load_mode = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 15),
50 	.cbcr_axi_gather_num = VOP_REG(RK3288_WIN0_CTRL1, 0x7, 12),
51 	.yrgb_axi_gather_num = VOP_REG(RK3288_WIN0_CTRL1, 0xf, 8),
52 	.vsd_cbcr_gt2 = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 7),
53 	.vsd_cbcr_gt4 = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 6),
54 	.vsd_yrgb_gt2 = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 5),
55 	.vsd_yrgb_gt4 = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 4),
56 	.bic_coe_sel = VOP_REG(RK3288_WIN0_CTRL1, 0x3, 2),
57 	.cbcr_axi_gather_en = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 1),
58 	.yrgb_axi_gather_en = VOP_REG(RK3288_WIN0_CTRL1, 0x1, 0),
59 	.lb_mode = VOP_REG(RK3288_WIN0_CTRL0, 0x7, 5),
60 };
61 
62 static const struct vop_scl_regs rk3288_win_full_scl = {
63 	.ext = &rk3288_win_full_scl_ext,
64 	.scale_yrgb_x = VOP_REG(RK3288_WIN0_SCL_FACTOR_YRGB, 0xffff, 0x0),
65 	.scale_yrgb_y = VOP_REG(RK3288_WIN0_SCL_FACTOR_YRGB, 0xffff, 16),
66 	.scale_cbcr_x = VOP_REG(RK3288_WIN0_SCL_FACTOR_CBR, 0xffff, 0x0),
67 	.scale_cbcr_y = VOP_REG(RK3288_WIN0_SCL_FACTOR_CBR, 0xffff, 16),
68 };
69 
70 static const struct vop_win rk3288_win01_data = {
71 	.scl = &rk3288_win_full_scl,
72 	.enable = VOP_REG(RK3288_WIN0_CTRL0, 0x1, 0),
73 	.format = VOP_REG(RK3288_WIN0_CTRL0, 0x7, 1),
74 	.rb_swap = VOP_REG(RK3288_WIN0_CTRL0, 0x1, 12),
75 	.ymirror = VOP_REG_VER(RK3368_WIN0_CTRL0, 0x1, 22, 3, 2, -1),
76 	.act_info = VOP_REG(RK3288_WIN0_ACT_INFO, 0x1fff1fff, 0),
77 	.dsp_info = VOP_REG(RK3288_WIN0_DSP_INFO, 0x0fff0fff, 0),
78 	.dsp_st = VOP_REG(RK3288_WIN0_DSP_ST, 0x1fff1fff, 0),
79 	.yrgb_mst = VOP_REG(RK3288_WIN0_YRGB_MST, 0xffffffff, 0),
80 	.uv_mst = VOP_REG(RK3288_WIN0_CBR_MST, 0xffffffff, 0),
81 	.yrgb_vir = VOP_REG(RK3288_WIN0_VIR, 0x3fff, 0),
82 	.uv_vir = VOP_REG(RK3288_WIN0_VIR, 0x3fff, 16),
83 	.src_alpha_ctl = VOP_REG(RK3288_WIN0_SRC_ALPHA_CTRL, 0xffffffff, 0),
84 	.dst_alpha_ctl = VOP_REG(RK3288_WIN0_DST_ALPHA_CTRL, 0xffffffff, 0),
85 };
86 
87 static const struct vop_ctrl rk3288_ctrl_data = {
88 	.standby = VOP_REG(RK3288_SYS_CTRL, 0x1, 22),
89 	.axi_outstanding_max_num = VOP_REG(RK3288_SYS_CTRL1, 0x1f, 13),
90 	.axi_max_outstanding_en = VOP_REG(RK3288_SYS_CTRL1, 0x1, 12),
91 	.reg_done_frm = VOP_REG_VER(RK3288_SYS_CTRL1, 0x1, 24, 3, 7, -1),
92 	.htotal_pw = VOP_REG(RK3288_DSP_HTOTAL_HS_END, 0x1fff1fff, 0),
93 	.hact_st_end = VOP_REG(RK3288_DSP_HACT_ST_END, 0x1fff1fff, 0),
94 	.vtotal_pw = VOP_REG(RK3288_DSP_VTOTAL_VS_END, 0x1fff1fff, 0),
95 	.vact_st_end = VOP_REG(RK3288_DSP_VACT_ST_END, 0x1fff1fff, 0),
96 	.vact_st_end_f1 = VOP_REG(RK3288_DSP_VACT_ST_END_F1, 0x1fff1fff, 0),
97 	.vs_st_end_f1 = VOP_REG(RK3288_DSP_VS_ST_END_F1, 0x1fff1fff, 0),
98 	.hpost_st_end = VOP_REG(RK3288_POST_DSP_HACT_INFO, 0x1fff1fff, 0),
99 	.vpost_st_end = VOP_REG(RK3288_POST_DSP_VACT_INFO, 0x1fff1fff, 0),
100 	.vpost_st_end_f1 = VOP_REG(RK3288_POST_DSP_VACT_INFO_F1, 0x1fff1fff, 0),
101 	.post_scl_factor = VOP_REG(RK3288_POST_SCL_FACTOR_YRGB, 0xffffffff, 0),
102 	.post_scl_ctrl = VOP_REG(RK3288_POST_SCL_CTRL, 0x3, 0),
103 
104 	.dsp_interlace = VOP_REG(RK3288_DSP_CTRL0, 0x1, 10),
105 	.auto_gate_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 23),
106 	.dsp_layer_sel = VOP_REG(RK3288_DSP_CTRL1, 0xff, 8),
107 	.post_lb_mode = VOP_REG_VER(RK3288_SYS_CTRL, 0x1, 18, 3, 2, -1),
108 	.global_regdone_en = VOP_REG_VER(RK3288_SYS_CTRL, 0x1, 11, 3, 2, -1),
109 	.overlay_mode = VOP_REG_VER(RK3288_SYS_CTRL, 0x1, 16, 3, 2, -1),
110 	.core_dclk_div = VOP_REG_VER(RK3399_DSP_CTRL0, 0x1, 4, 3, 4, -1),
111 	.p2i_en = VOP_REG_VER(RK3399_DSP_CTRL0, 0x1, 5, 3, 4, -1),
112 	.dclk_ddr = VOP_REG_VER(RK3399_DSP_CTRL0, 0x1, 8, 3, 4, -1),
113 	.dp_en = VOP_REG(RK3399_SYS_CTRL, 0x1, 11),
114 	.rgb_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 12),
115 	.hdmi_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 13),
116 	.edp_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 14),
117 	.mipi_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 15),
118 	.mipi_dual_channel_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 3),
119 	.data01_swap = VOP_REG_VER(RK3288_SYS_CTRL, 0x1, 17, 3, 5, -1),
120 	.dclk_pol = VOP_REG_VER(RK3288_DSP_CTRL0, 0x1, 7, 3, 0, 1),
121 	.pin_pol = VOP_REG_VER(RK3288_DSP_CTRL0, 0xf, 4, 3, 0, 1),
122 	.dp_dclk_pol = VOP_REG_VER(RK3399_DSP_CTRL1, 0x1, 19, 3, 5, -1),
123 	.dp_pin_pol = VOP_REG_VER(RK3399_DSP_CTRL1, 0x7, 16, 3, 5, -1),
124 	.rgb_dclk_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x1, 19, 3, 2, -1),
125 	.rgb_pin_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x7, 16, 3, 2, -1),
126 	.tve_dclk_en = VOP_REG(RK3288_SYS_CTRL, 0x1, 24),
127 	.tve_dclk_pol = VOP_REG(RK3288_SYS_CTRL, 0x1, 25),
128 	.tve_sw_mode = VOP_REG(RK3288_SYS_CTRL, 0x1, 26),
129 	.sw_uv_offset_en  = VOP_REG(RK3288_SYS_CTRL, 0x1, 27),
130 	.sw_genlock   = VOP_REG(RK3288_SYS_CTRL, 0x1, 28),
131 	.hdmi_dclk_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x1, 23, 3, 2, -1),
132 	.hdmi_pin_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x7, 20, 3, 2, -1),
133 	.edp_dclk_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x1, 27, 3, 2, -1),
134 	.edp_pin_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x7, 24, 3, 2, -1),
135 	.mipi_dclk_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x1, 31, 3, 2, -1),
136 	.mipi_pin_pol = VOP_REG_VER(RK3368_DSP_CTRL1, 0x7, 28, 3, 2, -1),
137 
138 	.dither_down = VOP_REG(RK3288_DSP_CTRL1, 0xf, 1),
139 	.dither_up = VOP_REG(RK3288_DSP_CTRL1, 0x1, 6),
140 
141 	.dsp_out_yuv = VOP_REG_VER(RK3399_POST_SCL_CTRL, 0x1, 2, 3, 5, -1),
142 	.dsp_data_swap = VOP_REG(RK3288_DSP_CTRL0, 0x1f, 12),
143 	.dsp_ccir656_avg = VOP_REG(RK3288_DSP_CTRL0, 0x1, 20),
144 	.dsp_blank = VOP_REG(RK3288_DSP_CTRL0, 0x3, 18),
145 	.dsp_lut_en = VOP_REG(RK3288_DSP_CTRL1, 0x1, 0),
146 	.update_gamma_lut = VOP_REG_VER(RK3288_DSP_CTRL1, 0x1, 7, 3, 5, -1),
147 	.out_mode = VOP_REG(RK3288_DSP_CTRL0, 0xf, 0),
148 
149 	.bcsh_brightness = VOP_REG(RK3288_BCSH_BCS, 0xff, 0),
150 	.bcsh_contrast = VOP_REG(RK3288_BCSH_BCS, 0x1ff, 8),
151 	.bcsh_sat_con = VOP_REG(RK3288_BCSH_BCS, 0x3ff, 20),
152 	.bcsh_out_mode = VOP_REG(RK3288_BCSH_BCS, 0x3, 0),
153 	.bcsh_sin_hue = VOP_REG(RK3288_BCSH_H, 0x1ff, 0),
154 	.bcsh_cos_hue = VOP_REG(RK3288_BCSH_H, 0x1ff, 16),
155 	.bcsh_r2y_csc_mode = VOP_REG_VER(RK3368_BCSH_CTRL, 0x1, 6, 3, 1, -1),
156 	.bcsh_r2y_en = VOP_REG_VER(RK3368_BCSH_CTRL, 0x1, 4, 3, 1, -1),
157 	.bcsh_y2r_csc_mode = VOP_REG_VER(RK3368_BCSH_CTRL, 0x3, 2, 3, 1, -1),
158 	.bcsh_y2r_en = VOP_REG_VER(RK3368_BCSH_CTRL, 0x1, 0, 3, 1, -1),
159 	.bcsh_color_bar = VOP_REG(RK3288_BCSH_COLOR_BAR, 0xffffff, 8),
160 	.bcsh_en = VOP_REG(RK3288_BCSH_COLOR_BAR, 0x1, 0),
161 
162 	.xmirror = VOP_REG(RK3288_DSP_CTRL0, 0x1, 22),
163 	.ymirror = VOP_REG(RK3288_DSP_CTRL0, 0x1, 23),
164 
165 	.dsp_background = VOP_REG(RK3288_DSP_BG, 0xffffffff, 0),
166 
167 	.cfg_done = VOP_REG(RK3288_REG_CFG_DONE, 0x1, 0),
168 	.win_gate[0] = VOP_REG(RK3288_WIN2_CTRL0, 0x1, 0),
169 	.win_gate[1] = VOP_REG(RK3288_WIN3_CTRL0, 0x1, 0),
170 };
171 
172 static const struct vop_line_flag rk3288_vop_line_flag = {
173 	.line_flag_num[0] = VOP_REG(RK3288_INTR_CTRL0, 0x1fff, 12),
174 };
175 
176 static const struct vop_grf_ctrl rk3288_vop_big_grf_ctrl = {
177 	.grf_dclk_inv = VOP_REG(RK3288_GRF_SOC_CON15, 0x1, 12),
178 };
179 
180 static const struct vop_grf_ctrl rk3288_vop_lit_grf_ctrl = {
181 	.grf_dclk_inv = VOP_REG(RK3288_GRF_SOC_CON15, 0x1, 14),
182 };
183 
184 const struct vop_data rk3288_vop_big = {
185 	.version = VOP_VERSION(3, 1),
186 	.max_output = {3840, 2160},
187 	.feature = VOP_FEATURE_OUTPUT_10BIT,
188 	.ctrl = &rk3288_ctrl_data,
189 	.grf_ctrl = &rk3288_vop_big_grf_ctrl,
190 	.win = &rk3288_win01_data,
191 	.line_flag = &rk3288_vop_line_flag,
192 	.reg_len = RK3288_DSP_VACT_ST_END_F1 * 4,
193 };
194 
195 const struct vop_data rk3288_vop_lit = {
196 	.version = VOP_VERSION(3, 1),
197 	.max_output = {2560, 1600},
198 	.feature = VOP_FEATURE_OUTPUT_10BIT,
199 	.ctrl = &rk3288_ctrl_data,
200 	.grf_ctrl = &rk3288_vop_lit_grf_ctrl,
201 	.win = &rk3288_win01_data,
202 	.line_flag = &rk3288_vop_line_flag,
203 	.reg_len = RK3288_DSP_VACT_ST_END_F1 * 4,
204 };
205 
206 static const struct vop_line_flag rk3368_vop_line_flag = {
207 	.line_flag_num[0] = VOP_REG(RK3368_LINE_FLAG, 0xffff, 0),
208 	.line_flag_num[1] = VOP_REG(RK3368_LINE_FLAG, 0xffff, 16),
209 };
210 
211 static const struct vop_grf_ctrl rk3368_vop_grf_ctrl = {
212 	.grf_dclk_inv = VOP_REG(RK3368_GRF_SOC_CON6, 0x1, 5),
213 };
214 
215 const struct vop_data rk3368_vop = {
216 	.version = VOP_VERSION(3, 2),
217 	.max_output = {4096, 2160},
218 	.ctrl = &rk3288_ctrl_data,
219 	.grf_ctrl = &rk3368_vop_grf_ctrl,
220 	.win = &rk3288_win01_data,
221 	.line_flag = &rk3368_vop_line_flag,
222 	.reg_len = RK3368_DSP_VACT_ST_END_F1 * 4,
223 };
224 
225 static const struct vop_line_flag rk3366_vop_line_flag = {
226 	.line_flag_num[0] = VOP_REG(RK3366_LINE_FLAG, 0xffff, 0),
227 	.line_flag_num[1] = VOP_REG(RK3366_LINE_FLAG, 0xffff, 16),
228 };
229 
230 const struct vop_data rk3366_vop = {
231 	.version = VOP_VERSION(3, 4),
232 	.max_output = {4096, 2160},
233 	.ctrl = &rk3288_ctrl_data,
234 	.win = &rk3288_win01_data,
235 	.line_flag = &rk3366_vop_line_flag,
236 	.reg_len = RK3366_DSP_VACT_ST_END_F1 * 4,
237 };
238 
239 static const uint32_t vop_csc_r2y_bt601[] = {
240 	0x02590132, 0xff530075, 0x0200fead, 0xfe530200,
241 	0x0000ffad, 0x00000200, 0x00080200, 0x00080200,
242 };
243 
244 static const uint32_t vop_csc_r2y_bt601_12_235[] = {
245 	0x02040107, 0xff680064, 0x01c2fed6, 0xffb7fe87,
246 	0x0000ffb7, 0x00010200, 0x00080200, 0x00080200,
247 };
248 
249 static const uint32_t vop_csc_r2y_bt709[] = {
250 	0x027500bb, 0xff99003f, 0x01c2fea5, 0xfe6801c2,
251 	0x0000ffd7, 0x00010200, 0x00080200, 0x00080200,
252 };
253 
254 static const uint32_t vop_csc_r2y_bt2020[] = {
255 	0x025300e6, 0xff830034, 0x01c1febd, 0xfe6401c1,
256 	0x0000ffdc, 0x00010200, 0x00080200, 0x00080200,
257 };
258 
259 static const struct vop_csc_table rk3399_csc_table = {
260 	.r2y_bt601		= vop_csc_r2y_bt601,
261 	.r2y_bt601_12_235	= vop_csc_r2y_bt601_12_235,
262 	.r2y_bt709		= vop_csc_r2y_bt709,
263 	.r2y_bt2020		= vop_csc_r2y_bt2020,
264 };
265 
266 static const struct vop_csc rk3399_win0_csc = {
267 	.r2r_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 0),
268 	.y2r_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 1),
269 	.r2y_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 2),
270 	.y2r_offset = RK3399_WIN0_YUV2YUV_Y2R,
271 	.r2r_offset = RK3399_WIN0_YUV2YUV_3X3,
272 	.r2y_offset = RK3399_WIN0_YUV2YUV_R2Y,
273 };
274 
275 const struct vop_data rk3399_vop_big = {
276 	.version = VOP_VERSION(3, 5),
277 	.max_output = {4096, 2160},
278 	.feature = VOP_FEATURE_OUTPUT_10BIT,
279 	.ctrl = &rk3288_ctrl_data,
280 	.win = &rk3288_win01_data,
281 	.line_flag = &rk3366_vop_line_flag,
282 	.csc_table = &rk3399_csc_table,
283 	.win_csc = &rk3399_win0_csc,
284 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
285 };
286 
287 const struct vop_data rk3399_vop_lit = {
288 	.version = VOP_VERSION(3, 6),
289 	.max_output = {2560, 1600},
290 	.ctrl = &rk3288_ctrl_data,
291 	.win = &rk3288_win01_data,
292 	.line_flag = &rk3366_vop_line_flag,
293 	.csc_table = &rk3399_csc_table,
294 	.win_csc = &rk3399_win0_csc,
295 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
296 };
297 
298 const struct vop_data rk322x_vop = {
299 	.version = VOP_VERSION(3, 7),
300 	.max_output = {4096, 2160},
301 	.feature = VOP_FEATURE_OUTPUT_10BIT,
302 	.ctrl = &rk3288_ctrl_data,
303 	.win = &rk3288_win01_data,
304 	.line_flag = &rk3366_vop_line_flag,
305 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
306 };
307 
308 static const struct vop_ctrl rk3328_ctrl_data = {
309 	.standby = VOP_REG(RK3328_SYS_CTRL, 0x1, 22),
310 	.axi_outstanding_max_num = VOP_REG(RK3328_SYS_CTRL1, 0x1f, 13),
311 	.axi_max_outstanding_en = VOP_REG(RK3328_SYS_CTRL1, 0x1, 12),
312 	.reg_done_frm = VOP_REG(RK3328_SYS_CTRL1, 0x1, 24),
313 	.auto_gate_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 23),
314 	.htotal_pw = VOP_REG(RK3328_DSP_HTOTAL_HS_END, 0x1fff1fff, 0),
315 	.hact_st_end = VOP_REG(RK3328_DSP_HACT_ST_END, 0x1fff1fff, 0),
316 	.vtotal_pw = VOP_REG(RK3328_DSP_VTOTAL_VS_END, 0x1fff1fff, 0),
317 	.vact_st_end = VOP_REG(RK3328_DSP_VACT_ST_END, 0x1fff1fff, 0),
318 	.vact_st_end_f1 = VOP_REG(RK3328_DSP_VACT_ST_END_F1, 0x1fff1fff, 0),
319 	.vs_st_end_f1 = VOP_REG(RK3328_DSP_VS_ST_END_F1, 0x1fff1fff, 0),
320 	.hpost_st_end = VOP_REG(RK3328_POST_DSP_HACT_INFO, 0x1fff1fff, 0),
321 	.vpost_st_end = VOP_REG(RK3328_POST_DSP_VACT_INFO, 0x1fff1fff, 0),
322 	.vpost_st_end_f1 = VOP_REG(RK3328_POST_DSP_VACT_INFO_F1, 0x1fff1fff, 0),
323 	.post_scl_factor = VOP_REG(RK3328_POST_SCL_FACTOR_YRGB, 0xffffffff, 0),
324 	.post_scl_ctrl = VOP_REG(RK3328_POST_SCL_CTRL, 0x3, 0),
325 	.dsp_out_yuv = VOP_REG(RK3328_POST_SCL_CTRL, 0x1, 2),
326 	.dsp_interlace = VOP_REG(RK3328_DSP_CTRL0, 0x1, 10),
327 	.dsp_layer_sel = VOP_REG(RK3328_DSP_CTRL1, 0xff, 8),
328 	.post_lb_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 18),
329 	.global_regdone_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 11),
330 	.overlay_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 16),
331 	.core_dclk_div = VOP_REG(RK3328_DSP_CTRL0, 0x1, 4),
332 	.dclk_ddr = VOP_REG(RK3328_DSP_CTRL0, 0x1, 8),
333 	.p2i_en = VOP_REG(RK3328_DSP_CTRL0, 0x1, 5),
334 	.rgb_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 12),
335 	.hdmi_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 13),
336 	.edp_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 14),
337 	.mipi_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 15),
338 	.tve_dclk_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 24),
339 	.tve_dclk_pol = VOP_REG(RK3328_SYS_CTRL, 0x1, 25),
340 	.tve_sw_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 26),
341 	.sw_uv_offset_en  = VOP_REG(RK3328_SYS_CTRL, 0x1, 27),
342 	.sw_genlock   = VOP_REG(RK3328_SYS_CTRL, 0x1, 28),
343 	.sw_dac_sel = VOP_REG(RK3328_SYS_CTRL, 0x1, 29),
344 	.rgb_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 16),
345 	.hdmi_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 20),
346 	.edp_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 24),
347 	.mipi_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 28),
348 
349 	.dither_down = VOP_REG(RK3328_DSP_CTRL1, 0xf, 1),
350 	.dither_up = VOP_REG(RK3328_DSP_CTRL1, 0x1, 6),
351 
352 	.dsp_data_swap = VOP_REG(RK3328_DSP_CTRL0, 0x1f, 12),
353 	.dsp_ccir656_avg = VOP_REG(RK3328_DSP_CTRL0, 0x1, 20),
354 	.dsp_blank = VOP_REG(RK3328_DSP_CTRL0, 0x3, 18),
355 	.dsp_lut_en = VOP_REG(RK3328_DSP_CTRL1, 0x1, 0),
356 	.out_mode = VOP_REG(RK3328_DSP_CTRL0, 0xf, 0),
357 
358 	.xmirror = VOP_REG(RK3328_DSP_CTRL0, 0x1, 22),
359 	.ymirror = VOP_REG(RK3328_DSP_CTRL0, 0x1, 23),
360 
361 	.dsp_background = VOP_REG(RK3328_DSP_BG, 0xffffffff, 0),
362 
363 	.bcsh_brightness = VOP_REG(RK3328_BCSH_BCS, 0xff, 0),
364 	.bcsh_contrast = VOP_REG(RK3328_BCSH_BCS, 0x1ff, 8),
365 	.bcsh_sat_con = VOP_REG(RK3328_BCSH_BCS, 0x3ff, 20),
366 	.bcsh_out_mode = VOP_REG(RK3328_BCSH_BCS, 0x3, 30),
367 	.bcsh_sin_hue = VOP_REG(RK3328_BCSH_H, 0x1ff, 0),
368 	.bcsh_cos_hue = VOP_REG(RK3328_BCSH_H, 0x1ff, 16),
369 	.bcsh_r2y_csc_mode = VOP_REG(RK3328_BCSH_CTRL, 0x3, 6),
370 	.bcsh_r2y_en = VOP_REG(RK3328_BCSH_CTRL, 0x1, 4),
371 	.bcsh_y2r_csc_mode = VOP_REG(RK3328_BCSH_CTRL, 0x3, 2),
372 	.bcsh_y2r_en = VOP_REG(RK3328_BCSH_CTRL, 0x1, 0),
373 	.bcsh_color_bar = VOP_REG(RK3328_BCSH_COLOR_BAR, 0xffffff, 8),
374 	.bcsh_en = VOP_REG(RK3328_BCSH_COLOR_BAR, 0x1, 0),
375 	.win_channel[0] = VOP_REG_VER(RK3328_WIN0_CTRL2, 0xff, 0, 3, 8, 8),
376 	.win_channel[1] = VOP_REG_VER(RK3328_WIN1_CTRL2, 0xff, 0, 3, 8, 8),
377 	.win_channel[2] = VOP_REG_VER(RK3328_WIN2_CTRL2, 0xff, 0, 3, 8, 8),
378 
379 	.cfg_done = VOP_REG(RK3328_REG_CFG_DONE, 0x1, 0),
380 };
381 
382 
383 static const struct vop_line_flag rk3328_vop_line_flag = {
384 	.line_flag_num[0] = VOP_REG(RK3328_LINE_FLAG, 0xffff, 0),
385 	.line_flag_num[1] = VOP_REG(RK3328_LINE_FLAG, 0xffff, 16),
386 };
387 
388 const struct vop_data rk3328_vop = {
389 	.version = VOP_VERSION(3, 8),
390 	.max_output = {4096, 2160},
391 	.feature = VOP_FEATURE_OUTPUT_10BIT,
392 	.ctrl = &rk3328_ctrl_data,
393 	.win = &rk3288_win01_data,
394 	.win_offset = 0xd0,
395 	.line_flag = &rk3328_vop_line_flag,
396 	.reg_len = RK3328_DSP_VACT_ST_END_F1 * 4,
397 };
398 
399 static const struct vop_scl_regs rk3036_win_scl = {
400 	.scale_yrgb_x = VOP_REG(RK3036_WIN0_SCL_FACTOR_YRGB, 0xffff, 0x0),
401 	.scale_yrgb_y = VOP_REG(RK3036_WIN0_SCL_FACTOR_YRGB, 0xffff, 16),
402 	.scale_cbcr_x = VOP_REG(RK3036_WIN0_SCL_FACTOR_CBR, 0xffff, 0x0),
403 	.scale_cbcr_y = VOP_REG(RK3036_WIN0_SCL_FACTOR_CBR, 0xffff, 16),
404 };
405 
406 static const struct vop_win rk3036_win0_data = {
407 	.scl = &rk3036_win_scl,
408 	.enable = VOP_REG(RK3036_SYS_CTRL, 0x1, 0),
409 	.format = VOP_REG(RK3036_SYS_CTRL, 0x7, 3),
410 	.rb_swap = VOP_REG(RK3036_SYS_CTRL, 0x1, 15),
411 	.act_info = VOP_REG(RK3036_WIN0_ACT_INFO, 0x1fff1fff, 0),
412 	.dsp_info = VOP_REG(RK3036_WIN0_DSP_INFO, 0x0fff0fff, 0),
413 	.dsp_st = VOP_REG(RK3036_WIN0_DSP_ST, 0x1fff1fff, 0),
414 	.yrgb_mst = VOP_REG(RK3036_WIN0_YRGB_MST, 0xffffffff, 0),
415 	.uv_mst = VOP_REG(RK3036_WIN0_CBR_MST, 0xffffffff, 0),
416 	.yrgb_vir = VOP_REG(RK3036_WIN0_VIR, 0xffff, 0),
417 	.uv_vir = VOP_REG(RK3036_WIN0_VIR, 0x1fff, 16),
418 	.alpha_mode = VOP_REG(RK3036_DSP_CTRL0, 0x1, 18),
419 	.alpha_en = VOP_REG(RK3036_ALPHA_CTRL, 0x1, 0)
420 };
421 
422 static const struct vop_ctrl rk3036_ctrl_data = {
423 	.standby = VOP_REG(RK3036_SYS_CTRL, 0x1, 30),
424 	.out_mode = VOP_REG(RK3036_DSP_CTRL0, 0xf, 0),
425 	.dsp_blank = VOP_REG(RK3036_DSP_CTRL1, 0x1, 24),
426 	.dclk_pol = VOP_REG(RK3036_DSP_CTRL0, 0x1, 7),
427 	.pin_pol = VOP_REG(RK3036_DSP_CTRL0, 0xf, 4),
428 	.dither_down = VOP_REG(RK3036_DSP_CTRL0, 0x3, 10),
429 	.dsp_layer_sel = VOP_REG(RK3036_DSP_CTRL0, 0x1, 8),
430 	.htotal_pw = VOP_REG(RK3036_DSP_HTOTAL_HS_END, 0x1fff1fff, 0),
431 	.hact_st_end = VOP_REG(RK3036_DSP_HACT_ST_END, 0x1fff1fff, 0),
432 	.hdmi_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 22),
433 	.hdmi_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 23),
434 	.hdmi_pin_pol = VOP_REG(RK3036_INT_SCALER, 0x7, 4),
435 	.rgb_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 24),
436 	.rgb_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 25),
437 	.lvds_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 26),
438 	.lvds_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 27),
439 	.mipi_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 28),
440 	.mipi_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 29),
441 	.vtotal_pw = VOP_REG(RK3036_DSP_VTOTAL_VS_END, 0x1fff1fff, 0),
442 	.vact_st_end = VOP_REG(RK3036_DSP_VACT_ST_END, 0x1fff1fff, 0),
443 	.cfg_done = VOP_REG(RK3036_REG_CFG_DONE, 0x1, 0),
444 };
445 
446 static const struct vop_line_flag rk3036_vop_line_flag = {
447 	.line_flag_num[0] = VOP_REG(RK3036_INT_STATUS, 0xfff, 12),
448 };
449 
450 const struct vop_data rk3036_vop = {
451 	.version = VOP_VERSION(2, 2),
452 	.max_output = {1920, 1080},
453 	.ctrl = &rk3036_ctrl_data,
454 	.win = &rk3036_win0_data,
455 	.line_flag = &rk3036_vop_line_flag,
456 	.reg_len = RK3036_DSP_VACT_ST_END_F1 * 4,
457 };
458 
459 static const struct vop_scl_regs rk3366_lit_win_scl = {
460 	.scale_yrgb_x = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_YRGB, 0xffff, 0x0),
461 	.scale_yrgb_y = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_YRGB, 0xffff, 16),
462 	.scale_cbcr_x = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_CBR, 0xffff, 0x0),
463 	.scale_cbcr_y = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_CBR, 0xffff, 16),
464 };
465 
466 static const struct vop_win rk3366_win0_data = {
467 	.scl = &rk3366_lit_win_scl,
468 
469 	.enable = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x1, 0),
470 	.format = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x7, 1),
471 	.rb_swap = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x1, 12),
472 	.act_info = VOP_REG(RK3366_LIT_WIN0_ACT_INFO, 0xffffffff, 0),
473 	.dsp_info = VOP_REG(RK3366_LIT_WIN0_DSP_INFO, 0xffffffff, 0),
474 	.dsp_st = VOP_REG(RK3366_LIT_WIN0_DSP_ST, 0xffffffff, 0),
475 	.yrgb_mst = VOP_REG(RK3366_LIT_WIN0_YRGB_MST0, 0xffffffff, 0),
476 	.uv_mst = VOP_REG(RK3366_LIT_WIN0_CBR_MST0, 0xffffffff, 0),
477 	.yrgb_vir = VOP_REG(RK3366_LIT_WIN0_VIR, 0x1fff, 0),
478 	.uv_vir = VOP_REG(RK3366_LIT_WIN0_VIR, 0x1fff, 16),
479 
480 	.alpha_mode = VOP_REG(RK3366_LIT_WIN0_ALPHA_CTRL, 0x1, 1),
481 	.alpha_en = VOP_REG(RK3366_LIT_WIN0_ALPHA_CTRL, 0x1, 0),
482 };
483 
484 static const struct vop_win rk3366_win1_data = {
485 	.enable = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x1, 0),
486 	.format = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x7, 4),
487 	.rb_swap = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x1, 12),
488 	.dsp_info = VOP_REG(RK3366_LIT_WIN1_DSP_INFO, 0xffffffff, 0),
489 	.dsp_st = VOP_REG(RK3366_LIT_WIN1_DSP_ST, 0xffffffff, 0),
490 	.yrgb_mst = VOP_REG(RK3366_LIT_WIN1_MST, 0xffffffff, 0),
491 	.yrgb_vir = VOP_REG(RK3366_LIT_WIN1_VIR, 0x1fff, 0),
492 
493 	.alpha_mode = VOP_REG(RK3366_LIT_WIN1_ALPHA_CTRL, 0x1, 1),
494 	.alpha_en = VOP_REG(RK3366_LIT_WIN1_ALPHA_CTRL, 0x1, 0),
495 };
496 
497 static const struct vop_ctrl px30_ctrl_data = {
498 	.standby = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 1),
499 	.htotal_pw = VOP_REG(RK3366_LIT_DSP_HTOTAL_HS_END, 0x0fff0fff, 0),
500 	.hact_st_end = VOP_REG(RK3366_LIT_DSP_HACT_ST_END, 0x0fff0fff, 0),
501 	.vtotal_pw = VOP_REG(RK3366_LIT_DSP_VTOTAL_VS_END, 0x0fff0fff, 0),
502 	.vact_st_end = VOP_REG(RK3366_LIT_DSP_VACT_ST_END, 0x0fff0fff, 0),
503 	.vact_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VACT_ST_END_F1, 0x0fff0fff, 0),
504 	.vs_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VS_ST_END_F1, 0x0fff0fff, 0),
505 	.dsp_interlace = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 0),
506 	.global_regdone_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 13),
507 	.auto_gate_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 0),
508 	.dsp_layer_sel = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 22),
509 	.overlay_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 4),
510 	.core_dclk_div = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 13),
511 	.dclk_ddr = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 14),
512 	.rgb_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 0),
513 	.rgb_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 2),
514 	.hdmi_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 8),
515 	.hdmi_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 10),
516 	.lvds_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 16),
517 	.lvds_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 18),
518 	.mipi_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 24),
519 	.mipi_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 26),
520 	.mipi_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 25),
521 	.lvds_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 17),
522 	.hdmi_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 9),
523 	.rgb_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 1),
524 	.dither_up = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 2),
525 	.dither_down = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x7, 6),
526 	.dsp_data_swap = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1f, 9),
527 	.dsp_ccir656_avg = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 5),
528 	.dsp_black = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 15),
529 	.dsp_blank = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 14),
530 	.dsp_outzero = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 3),
531 	.dsp_lut_en = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 5),
532 	.out_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 16),
533 	.dsp_background = VOP_REG(RK3366_LIT_DSP_BG, 0x00ffffff, 0),
534 	.cfg_done = VOP_REG(RK3366_LIT_REG_CFG_DONE, 0x1, 0),
535 
536 	.bcsh_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 0),
537 	.bcsh_r2y_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 1),
538 	.bcsh_out_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 2),
539 	.bcsh_y2r_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 4),
540 	.bcsh_y2r_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 6),
541 	.bcsh_r2y_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 7),
542 	.bcsh_color_bar = VOP_REG(RK3366_LIT_BCSH_COL_BAR, 0xffffff, 0),
543 	.bcsh_brightness = VOP_REG(RK3366_LIT_BCSH_BCS, 0xff, 0),
544 	.bcsh_contrast = VOP_REG(RK3366_LIT_BCSH_BCS, 0x1ff, 8),
545 	.bcsh_sat_con = VOP_REG(RK3366_LIT_BCSH_BCS, 0x3ff, 20),
546 	.bcsh_sin_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 0),
547 	.bcsh_cos_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 16),
548 
549 	.cabc_config_mode = VOP_REG(PX30_CABC_CTRL0, 0x3, 2),
550 	.cabc_calc_pixel_num = VOP_REG(PX30_CABC_CTRL0, 0x7fffff, 4),
551 	.cabc_handle_en = VOP_REG(PX30_CABC_CTRL0, 0x1, 1),
552 	.cabc_en = VOP_REG(PX30_CABC_CTRL0, 0x1, 0),
553 	.cabc_total_num = VOP_REG(PX30_CABC_CTRL1, 0x7fffff, 4),
554 	.cabc_lut_en = VOP_REG(PX30_CABC_CTRL1, 0x1, 0),
555 	.cabc_stage_up_mode = VOP_REG(PX30_CABC_CTRL2, 0x1, 19),
556 	.cabc_stage_up = VOP_REG(PX30_CABC_CTRL2, 0x1ff, 8),
557 	.cabc_stage_down = VOP_REG(PX30_CABC_CTRL2, 0xff, 0),
558 	.cabc_global_dn = VOP_REG(PX30_CABC_CTRL3, 0xff, 0),
559 	.cabc_global_dn_limit_en = VOP_REG(PX30_CABC_CTRL3, 0x1, 8),
560 
561 	.mcu_pix_total = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 0),
562 	.mcu_cs_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 6),
563 	.mcu_cs_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 10),
564 	.mcu_rw_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 16),
565 	.mcu_rw_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 20),
566 	.mcu_clk_sel = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 26),
567 	.mcu_hold_mode = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 27),
568 	.mcu_frame_st = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 28),
569 	.mcu_rs = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 29),
570 	.mcu_bypass = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 30),
571 	.mcu_type = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 31),
572 	.mcu_rw_bypass_port = VOP_REG(RK3366_LIT_MCU_RW_BYPASS_PORT,
573 				      0xffffffff, 0),
574 };
575 
576 static const struct vop_line_flag rk3366_vop_lite_line_flag = {
577 	.line_flag_num[0] = VOP_REG(RK3366_LIT_LINE_FLAG, 0xfff, 0),
578 };
579 
580 static const struct vop_grf_ctrl px30_grf_ctrl = {
581 	.grf_dclk_inv = VOP_REG(PX30_GRF_PD_VO_CON1, 0x1, 4),
582 };
583 
584 const struct vop_data px30_vop_lit = {
585 	.version = VOP_VERSION(2, 5),
586 	.max_output = {1920, 1080},
587 	.ctrl = &px30_ctrl_data,
588 	.grf_ctrl = &px30_grf_ctrl,
589 	.win = &rk3366_win1_data,
590 	.line_flag = &rk3366_vop_lite_line_flag,
591 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
592 };
593 
594 const struct vop_data px30_vop_big = {
595 	.version = VOP_VERSION(2, 6),
596 	.max_output = {1920, 1080},
597 	.ctrl = &px30_ctrl_data,
598 	.grf_ctrl = &px30_grf_ctrl,
599 	.win = &rk3366_win1_data,
600 	.line_flag = &rk3366_vop_lite_line_flag,
601 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
602 };
603 
604 static const struct vop_ctrl rk3308_ctrl_data = {
605 	.standby = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 1),
606 	.axi_outstanding_max_num = VOP_REG(RK3366_LIT_SYS_CTRL1, 0x1f, 16),
607 	.axi_max_outstanding_en = VOP_REG(RK3366_LIT_SYS_CTRL1, 0x1, 12),
608 	.htotal_pw = VOP_REG(RK3366_LIT_DSP_HTOTAL_HS_END, 0x0fff0fff, 0),
609 	.hact_st_end = VOP_REG(RK3366_LIT_DSP_HACT_ST_END, 0x0fff0fff, 0),
610 	.vtotal_pw = VOP_REG(RK3366_LIT_DSP_VTOTAL_VS_END, 0x0fff0fff, 0),
611 	.vact_st_end = VOP_REG(RK3366_LIT_DSP_VACT_ST_END, 0x0fff0fff, 0),
612 	.vact_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VACT_ST_END_F1, 0x0fff0fff, 0),
613 	.vs_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VS_ST_END_F1, 0x0fff0fff, 0),
614 	.global_regdone_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 13),
615 	.auto_gate_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 0),
616 	.dsp_layer_sel = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 3),
617 	.overlay_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 4),
618 	.dclk_ddr = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 14),
619 	.rgb_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 0),
620 	.rgb_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 2),
621 	.rgb_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 1),
622 	.dither_up = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 2),
623 	.dither_down = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x7, 6),
624 	.dsp_data_swap = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1f, 9),
625 	.dsp_ccir656_avg = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 5),
626 	.dsp_black = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 15),
627 	.dsp_blank = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 14),
628 	.dsp_outzero = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 3),
629 	.dsp_lut_en = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 5),
630 	.out_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 16),
631 	.dsp_background = VOP_REG(RK3366_LIT_DSP_BG, 0x00ffffff, 0),
632 	.cfg_done = VOP_REG(RK3366_LIT_REG_CFG_DONE, 0x1, 0),
633 
634 	.bcsh_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 0),
635 	.bcsh_r2y_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 1),
636 	.bcsh_out_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 2),
637 	.bcsh_y2r_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 4),
638 	.bcsh_y2r_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 6),
639 	.bcsh_r2y_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 7),
640 	.bcsh_color_bar = VOP_REG(RK3366_LIT_BCSH_COL_BAR, 0xffffff, 0),
641 	.bcsh_brightness = VOP_REG(RK3366_LIT_BCSH_BCS, 0xff, 0),
642 	.bcsh_contrast = VOP_REG(RK3366_LIT_BCSH_BCS, 0x1ff, 8),
643 	.bcsh_sat_con = VOP_REG(RK3366_LIT_BCSH_BCS, 0x3ff, 20),
644 	.bcsh_sin_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 0),
645 	.bcsh_cos_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 16),
646 
647 	.mcu_pix_total = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 0),
648 	.mcu_cs_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 6),
649 	.mcu_cs_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 10),
650 	.mcu_rw_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 16),
651 	.mcu_rw_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 20),
652 	.mcu_clk_sel = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 26),
653 	.mcu_hold_mode = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 27),
654 	.mcu_frame_st = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 28),
655 	.mcu_rs = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 29),
656 	.mcu_bypass = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 30),
657 	.mcu_type = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 31),
658 	.mcu_rw_bypass_port = VOP_REG(RK3366_LIT_MCU_RW_BYPASS_PORT,
659 				      0xffffffff, 0),
660 };
661 
662 const struct vop_data rk3308_vop = {
663 	.version = VOP_VERSION(2, 7),
664 	.max_output = {1920, 1080},
665 	.ctrl = &rk3308_ctrl_data,
666 	.win = &rk3366_win0_data,
667 	.line_flag = &rk3366_vop_lite_line_flag,
668 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
669 };
670 
671 static const struct vop_grf_ctrl rk1808_grf_ctrl = {
672 	.grf_dclk_inv = VOP_REG(RK1808_GRF_PD_VO_CON1, 0x1, 4),
673 };
674 
675 const struct vop_data rk1808_vop = {
676 	.version = VOP_VERSION(2, 8),
677 	.max_output = {1920, 1080},
678 	.ctrl = &px30_ctrl_data,
679 	.grf_ctrl = &rk1808_grf_ctrl,
680 	.win = &rk3366_win1_data,
681 	.line_flag = &rk3366_vop_lite_line_flag,
682 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
683 };
684 
685 const struct vop_data rv1108_vop = {
686 	.version = VOP_VERSION(2, 4),
687 	.max_output = {1920, 1080},
688 	.ctrl = &rk3308_ctrl_data,
689 	.win = &rk3366_win0_data,
690 	.line_flag = &rk3366_vop_lite_line_flag,
691 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
692 };
693