xref: /rk3399_rockchip-uboot/drivers/video/drm/rockchip_vop_reg.c (revision 87e4c6020eff05133e40ab8b7b0e37e6a2be37e4)
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_win rk3368_win23_data = {
207 	.enable = VOP_REG(RK3368_WIN2_CTRL0, 0x1, 4),
208 	.format = VOP_REG(RK3368_WIN2_CTRL0, 0x3, 5),
209 	.ymirror = VOP_REG(RK3368_WIN2_CTRL1, 0x1, 15),
210 	.rb_swap = VOP_REG(RK3368_WIN2_CTRL0, 0x1, 20),
211 	.dsp_info = VOP_REG(RK3368_WIN2_DSP_INFO0, 0x0fff0fff, 0),
212 	.dsp_st = VOP_REG(RK3368_WIN2_DSP_ST0, 0x1fff1fff, 0),
213 	.yrgb_mst = VOP_REG(RK3368_WIN2_MST0, 0xffffffff, 0),
214 	.yrgb_vir = VOP_REG(RK3368_WIN2_VIR0_1, 0x1fff, 0),
215 	.src_alpha_ctl = VOP_REG(RK3368_WIN2_SRC_ALPHA_CTRL, 0xffff, 0),
216 	.dst_alpha_ctl = VOP_REG(RK3368_WIN2_DST_ALPHA_CTRL, 0xffffffff, 0),
217 };
218 
219 static const struct vop_line_flag rk3368_vop_line_flag = {
220 	.line_flag_num[0] = VOP_REG(RK3368_LINE_FLAG, 0xffff, 0),
221 	.line_flag_num[1] = VOP_REG(RK3368_LINE_FLAG, 0xffff, 16),
222 };
223 
224 static const struct vop_grf_ctrl rk3368_vop_grf_ctrl = {
225 	.grf_dclk_inv = VOP_REG(RK3368_GRF_SOC_CON6, 0x1, 5),
226 };
227 
228 const struct vop_data rk3368_vop = {
229 	.version = VOP_VERSION(3, 2),
230 	.max_output = {4096, 2160},
231 	.ctrl = &rk3288_ctrl_data,
232 	.grf_ctrl = &rk3368_vop_grf_ctrl,
233 	.win = &rk3288_win01_data,
234 	.line_flag = &rk3368_vop_line_flag,
235 	.reg_len = RK3368_DSP_VACT_ST_END_F1 * 4,
236 };
237 
238 static const struct vop_line_flag rk3366_vop_line_flag = {
239 	.line_flag_num[0] = VOP_REG(RK3366_LINE_FLAG, 0xffff, 0),
240 	.line_flag_num[1] = VOP_REG(RK3366_LINE_FLAG, 0xffff, 16),
241 };
242 
243 const struct vop_data rk3366_vop = {
244 	.version = VOP_VERSION(3, 4),
245 	.max_output = {4096, 2160},
246 	.ctrl = &rk3288_ctrl_data,
247 	.win = &rk3288_win01_data,
248 	.line_flag = &rk3366_vop_line_flag,
249 	.reg_len = RK3366_DSP_VACT_ST_END_F1 * 4,
250 };
251 
252 static const uint32_t vop_csc_r2y_bt601[] = {
253 	0x02590132, 0xff530075, 0x0200fead, 0xfe530200,
254 	0x0000ffad, 0x00000200, 0x00080200, 0x00080200,
255 };
256 
257 static const uint32_t vop_csc_r2y_bt601_12_235[] = {
258 	0x02040107, 0xff680064, 0x01c2fed6, 0xffb7fe87,
259 	0x0000ffb7, 0x00010200, 0x00080200, 0x00080200,
260 };
261 
262 static const uint32_t vop_csc_r2y_bt709[] = {
263 	0x027500bb, 0xff99003f, 0x01c2fea5, 0xfe6801c2,
264 	0x0000ffd7, 0x00010200, 0x00080200, 0x00080200,
265 };
266 
267 static const uint32_t vop_csc_r2y_bt2020[] = {
268 	0x025300e6, 0xff830034, 0x01c1febd, 0xfe6401c1,
269 	0x0000ffdc, 0x00010200, 0x00080200, 0x00080200,
270 };
271 
272 static const struct vop_csc_table rk3399_csc_table = {
273 	.r2y_bt601		= vop_csc_r2y_bt601,
274 	.r2y_bt601_12_235	= vop_csc_r2y_bt601_12_235,
275 	.r2y_bt709		= vop_csc_r2y_bt709,
276 	.r2y_bt2020		= vop_csc_r2y_bt2020,
277 };
278 
279 static const struct vop_csc rk3399_win0_csc = {
280 	.r2r_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 0),
281 	.y2r_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 1),
282 	.r2y_en = VOP_REG(RK3399_YUV2YUV_WIN, 0x1, 2),
283 	.y2r_offset = RK3399_WIN0_YUV2YUV_Y2R,
284 	.r2r_offset = RK3399_WIN0_YUV2YUV_3X3,
285 	.r2y_offset = RK3399_WIN0_YUV2YUV_R2Y,
286 };
287 
288 const struct vop_data rk3399_vop_big = {
289 	.version = VOP_VERSION(3, 5),
290 	.max_output = {4096, 2160},
291 	.feature = VOP_FEATURE_OUTPUT_10BIT,
292 	.ctrl = &rk3288_ctrl_data,
293 	.win = &rk3288_win01_data,
294 	.line_flag = &rk3366_vop_line_flag,
295 	.csc_table = &rk3399_csc_table,
296 	.win_csc = &rk3399_win0_csc,
297 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
298 };
299 
300 const struct vop_data rk3399_vop_lit = {
301 	.version = VOP_VERSION(3, 6),
302 	.max_output = {2560, 1600},
303 	.ctrl = &rk3288_ctrl_data,
304 	.win = &rk3368_win23_data,
305 	.line_flag = &rk3366_vop_line_flag,
306 	.csc_table = &rk3399_csc_table,
307 	.win_csc = &rk3399_win0_csc,
308 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
309 };
310 
311 const struct vop_data rk322x_vop = {
312 	.version = VOP_VERSION(3, 7),
313 	.max_output = {4096, 2160},
314 	.feature = VOP_FEATURE_OUTPUT_10BIT,
315 	.ctrl = &rk3288_ctrl_data,
316 	.win = &rk3288_win01_data,
317 	.line_flag = &rk3366_vop_line_flag,
318 	.reg_len = RK3399_DSP_VACT_ST_END_F1 * 4,
319 };
320 
321 static const struct vop_ctrl rk3328_ctrl_data = {
322 	.standby = VOP_REG(RK3328_SYS_CTRL, 0x1, 22),
323 	.axi_outstanding_max_num = VOP_REG(RK3328_SYS_CTRL1, 0x1f, 13),
324 	.axi_max_outstanding_en = VOP_REG(RK3328_SYS_CTRL1, 0x1, 12),
325 	.reg_done_frm = VOP_REG(RK3328_SYS_CTRL1, 0x1, 24),
326 	.auto_gate_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 23),
327 	.htotal_pw = VOP_REG(RK3328_DSP_HTOTAL_HS_END, 0x1fff1fff, 0),
328 	.hact_st_end = VOP_REG(RK3328_DSP_HACT_ST_END, 0x1fff1fff, 0),
329 	.vtotal_pw = VOP_REG(RK3328_DSP_VTOTAL_VS_END, 0x1fff1fff, 0),
330 	.vact_st_end = VOP_REG(RK3328_DSP_VACT_ST_END, 0x1fff1fff, 0),
331 	.vact_st_end_f1 = VOP_REG(RK3328_DSP_VACT_ST_END_F1, 0x1fff1fff, 0),
332 	.vs_st_end_f1 = VOP_REG(RK3328_DSP_VS_ST_END_F1, 0x1fff1fff, 0),
333 	.hpost_st_end = VOP_REG(RK3328_POST_DSP_HACT_INFO, 0x1fff1fff, 0),
334 	.vpost_st_end = VOP_REG(RK3328_POST_DSP_VACT_INFO, 0x1fff1fff, 0),
335 	.vpost_st_end_f1 = VOP_REG(RK3328_POST_DSP_VACT_INFO_F1, 0x1fff1fff, 0),
336 	.post_scl_factor = VOP_REG(RK3328_POST_SCL_FACTOR_YRGB, 0xffffffff, 0),
337 	.post_scl_ctrl = VOP_REG(RK3328_POST_SCL_CTRL, 0x3, 0),
338 	.dsp_out_yuv = VOP_REG(RK3328_POST_SCL_CTRL, 0x1, 2),
339 	.dsp_interlace = VOP_REG(RK3328_DSP_CTRL0, 0x1, 10),
340 	.dsp_layer_sel = VOP_REG(RK3328_DSP_CTRL1, 0xff, 8),
341 	.post_lb_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 18),
342 	.global_regdone_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 11),
343 	.overlay_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 16),
344 	.core_dclk_div = VOP_REG(RK3328_DSP_CTRL0, 0x1, 4),
345 	.dclk_ddr = VOP_REG(RK3328_DSP_CTRL0, 0x1, 8),
346 	.p2i_en = VOP_REG(RK3328_DSP_CTRL0, 0x1, 5),
347 	.rgb_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 12),
348 	.hdmi_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 13),
349 	.edp_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 14),
350 	.mipi_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 15),
351 	.tve_dclk_en = VOP_REG(RK3328_SYS_CTRL, 0x1, 24),
352 	.tve_dclk_pol = VOP_REG(RK3328_SYS_CTRL, 0x1, 25),
353 	.tve_sw_mode = VOP_REG(RK3328_SYS_CTRL, 0x1, 26),
354 	.sw_uv_offset_en  = VOP_REG(RK3328_SYS_CTRL, 0x1, 27),
355 	.sw_genlock   = VOP_REG(RK3328_SYS_CTRL, 0x1, 28),
356 	.sw_dac_sel = VOP_REG(RK3328_SYS_CTRL, 0x1, 29),
357 	.rgb_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 16),
358 	.hdmi_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 20),
359 	.edp_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 24),
360 	.mipi_pin_pol = VOP_REG(RK3328_DSP_CTRL1, 0xf, 28),
361 
362 	.dither_down = VOP_REG(RK3328_DSP_CTRL1, 0xf, 1),
363 	.dither_up = VOP_REG(RK3328_DSP_CTRL1, 0x1, 6),
364 
365 	.dsp_data_swap = VOP_REG(RK3328_DSP_CTRL0, 0x1f, 12),
366 	.dsp_ccir656_avg = VOP_REG(RK3328_DSP_CTRL0, 0x1, 20),
367 	.dsp_blank = VOP_REG(RK3328_DSP_CTRL0, 0x3, 18),
368 	.dsp_lut_en = VOP_REG(RK3328_DSP_CTRL1, 0x1, 0),
369 	.out_mode = VOP_REG(RK3328_DSP_CTRL0, 0xf, 0),
370 
371 	.xmirror = VOP_REG(RK3328_DSP_CTRL0, 0x1, 22),
372 	.ymirror = VOP_REG(RK3328_DSP_CTRL0, 0x1, 23),
373 
374 	.dsp_background = VOP_REG(RK3328_DSP_BG, 0xffffffff, 0),
375 
376 	.bcsh_brightness = VOP_REG(RK3328_BCSH_BCS, 0xff, 0),
377 	.bcsh_contrast = VOP_REG(RK3328_BCSH_BCS, 0x1ff, 8),
378 	.bcsh_sat_con = VOP_REG(RK3328_BCSH_BCS, 0x3ff, 20),
379 	.bcsh_out_mode = VOP_REG(RK3328_BCSH_BCS, 0x3, 30),
380 	.bcsh_sin_hue = VOP_REG(RK3328_BCSH_H, 0x1ff, 0),
381 	.bcsh_cos_hue = VOP_REG(RK3328_BCSH_H, 0x1ff, 16),
382 	.bcsh_r2y_csc_mode = VOP_REG(RK3328_BCSH_CTRL, 0x3, 6),
383 	.bcsh_r2y_en = VOP_REG(RK3328_BCSH_CTRL, 0x1, 4),
384 	.bcsh_y2r_csc_mode = VOP_REG(RK3328_BCSH_CTRL, 0x3, 2),
385 	.bcsh_y2r_en = VOP_REG(RK3328_BCSH_CTRL, 0x1, 0),
386 	.bcsh_color_bar = VOP_REG(RK3328_BCSH_COLOR_BAR, 0xffffff, 8),
387 	.bcsh_en = VOP_REG(RK3328_BCSH_COLOR_BAR, 0x1, 0),
388 	.win_channel[0] = VOP_REG_VER(RK3328_WIN0_CTRL2, 0xff, 0, 3, 8, 8),
389 	.win_channel[1] = VOP_REG_VER(RK3328_WIN1_CTRL2, 0xff, 0, 3, 8, 8),
390 	.win_channel[2] = VOP_REG_VER(RK3328_WIN2_CTRL2, 0xff, 0, 3, 8, 8),
391 
392 	.cfg_done = VOP_REG(RK3328_REG_CFG_DONE, 0x1, 0),
393 };
394 
395 
396 static const struct vop_line_flag rk3328_vop_line_flag = {
397 	.line_flag_num[0] = VOP_REG(RK3328_LINE_FLAG, 0xffff, 0),
398 	.line_flag_num[1] = VOP_REG(RK3328_LINE_FLAG, 0xffff, 16),
399 };
400 
401 const struct vop_data rk3328_vop = {
402 	.version = VOP_VERSION(3, 8),
403 	.max_output = {4096, 2160},
404 	.feature = VOP_FEATURE_OUTPUT_10BIT,
405 	.ctrl = &rk3328_ctrl_data,
406 	.win = &rk3288_win01_data,
407 	.win_offset = 0xd0,
408 	.line_flag = &rk3328_vop_line_flag,
409 	.reg_len = RK3328_DSP_VACT_ST_END_F1 * 4,
410 };
411 
412 static const struct vop_scl_regs rk3036_win_scl = {
413 	.scale_yrgb_x = VOP_REG(RK3036_WIN0_SCL_FACTOR_YRGB, 0xffff, 0x0),
414 	.scale_yrgb_y = VOP_REG(RK3036_WIN0_SCL_FACTOR_YRGB, 0xffff, 16),
415 	.scale_cbcr_x = VOP_REG(RK3036_WIN0_SCL_FACTOR_CBR, 0xffff, 0x0),
416 	.scale_cbcr_y = VOP_REG(RK3036_WIN0_SCL_FACTOR_CBR, 0xffff, 16),
417 };
418 
419 static const struct vop_win rk3036_win0_data = {
420 	.scl = &rk3036_win_scl,
421 	.enable = VOP_REG(RK3036_SYS_CTRL, 0x1, 0),
422 	.format = VOP_REG(RK3036_SYS_CTRL, 0x7, 3),
423 	.rb_swap = VOP_REG(RK3036_SYS_CTRL, 0x1, 15),
424 	.act_info = VOP_REG(RK3036_WIN0_ACT_INFO, 0x1fff1fff, 0),
425 	.dsp_info = VOP_REG(RK3036_WIN0_DSP_INFO, 0x0fff0fff, 0),
426 	.dsp_st = VOP_REG(RK3036_WIN0_DSP_ST, 0x1fff1fff, 0),
427 	.yrgb_mst = VOP_REG(RK3036_WIN0_YRGB_MST, 0xffffffff, 0),
428 	.uv_mst = VOP_REG(RK3036_WIN0_CBR_MST, 0xffffffff, 0),
429 	.yrgb_vir = VOP_REG(RK3036_WIN0_VIR, 0xffff, 0),
430 	.uv_vir = VOP_REG(RK3036_WIN0_VIR, 0x1fff, 16),
431 	.alpha_mode = VOP_REG(RK3036_DSP_CTRL0, 0x1, 18),
432 	.alpha_en = VOP_REG(RK3036_ALPHA_CTRL, 0x1, 0)
433 };
434 
435 static const struct vop_ctrl rk3036_ctrl_data = {
436 	.standby = VOP_REG(RK3036_SYS_CTRL, 0x1, 30),
437 	.out_mode = VOP_REG(RK3036_DSP_CTRL0, 0xf, 0),
438 	.dsp_blank = VOP_REG(RK3036_DSP_CTRL1, 0x1, 24),
439 	.dclk_pol = VOP_REG(RK3036_DSP_CTRL0, 0x1, 7),
440 	.pin_pol = VOP_REG(RK3036_DSP_CTRL0, 0xf, 4),
441 	.dither_down = VOP_REG(RK3036_DSP_CTRL0, 0x3, 10),
442 	.dsp_layer_sel = VOP_REG(RK3036_DSP_CTRL0, 0x1, 8),
443 	.htotal_pw = VOP_REG(RK3036_DSP_HTOTAL_HS_END, 0x1fff1fff, 0),
444 	.hact_st_end = VOP_REG(RK3036_DSP_HACT_ST_END, 0x1fff1fff, 0),
445 	.hdmi_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 22),
446 	.hdmi_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 23),
447 	.hdmi_pin_pol = VOP_REG(RK3036_INT_SCALER, 0x7, 4),
448 	.rgb_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 24),
449 	.rgb_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 25),
450 	.lvds_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 26),
451 	.lvds_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 27),
452 	.mipi_en = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 28),
453 	.mipi_dclk_pol = VOP_REG(RK3036_AXI_BUS_CTRL, 0x1, 29),
454 	.vtotal_pw = VOP_REG(RK3036_DSP_VTOTAL_VS_END, 0x1fff1fff, 0),
455 	.vact_st_end = VOP_REG(RK3036_DSP_VACT_ST_END, 0x1fff1fff, 0),
456 	.cfg_done = VOP_REG(RK3036_REG_CFG_DONE, 0x1, 0),
457 };
458 
459 static const struct vop_line_flag rk3036_vop_line_flag = {
460 	.line_flag_num[0] = VOP_REG(RK3036_INT_STATUS, 0xfff, 12),
461 };
462 
463 const struct vop_data rk3036_vop = {
464 	.version = VOP_VERSION(2, 2),
465 	.max_output = {1920, 1080},
466 	.ctrl = &rk3036_ctrl_data,
467 	.win = &rk3036_win0_data,
468 	.line_flag = &rk3036_vop_line_flag,
469 	.reg_len = RK3036_DSP_VACT_ST_END_F1 * 4,
470 };
471 
472 static const struct vop_scl_regs rk3366_lit_win_scl = {
473 	.scale_yrgb_x = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_YRGB, 0xffff, 0x0),
474 	.scale_yrgb_y = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_YRGB, 0xffff, 16),
475 	.scale_cbcr_x = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_CBR, 0xffff, 0x0),
476 	.scale_cbcr_y = VOP_REG(RK3366_LIT_WIN0_SCL_FACTOR_CBR, 0xffff, 16),
477 };
478 
479 static const struct vop_win rk3366_win0_data = {
480 	.scl = &rk3366_lit_win_scl,
481 
482 	.enable = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x1, 0),
483 	.format = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x7, 1),
484 	.rb_swap = VOP_REG(RK3366_LIT_WIN0_CTRL0, 0x1, 12),
485 	.act_info = VOP_REG(RK3366_LIT_WIN0_ACT_INFO, 0xffffffff, 0),
486 	.dsp_info = VOP_REG(RK3366_LIT_WIN0_DSP_INFO, 0xffffffff, 0),
487 	.dsp_st = VOP_REG(RK3366_LIT_WIN0_DSP_ST, 0xffffffff, 0),
488 	.yrgb_mst = VOP_REG(RK3366_LIT_WIN0_YRGB_MST0, 0xffffffff, 0),
489 	.uv_mst = VOP_REG(RK3366_LIT_WIN0_CBR_MST0, 0xffffffff, 0),
490 	.yrgb_vir = VOP_REG(RK3366_LIT_WIN0_VIR, 0x1fff, 0),
491 	.uv_vir = VOP_REG(RK3366_LIT_WIN0_VIR, 0x1fff, 16),
492 
493 	.alpha_mode = VOP_REG(RK3366_LIT_WIN0_ALPHA_CTRL, 0x1, 1),
494 	.alpha_en = VOP_REG(RK3366_LIT_WIN0_ALPHA_CTRL, 0x1, 0),
495 };
496 
497 static const struct vop_win rk3366_win1_data = {
498 	.enable = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x1, 0),
499 	.format = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x7, 4),
500 	.rb_swap = VOP_REG(RK3366_LIT_WIN1_CTRL0, 0x1, 12),
501 	.dsp_info = VOP_REG(RK3366_LIT_WIN1_DSP_INFO, 0xffffffff, 0),
502 	.dsp_st = VOP_REG(RK3366_LIT_WIN1_DSP_ST, 0xffffffff, 0),
503 	.yrgb_mst = VOP_REG(RK3366_LIT_WIN1_MST, 0xffffffff, 0),
504 	.yrgb_vir = VOP_REG(RK3366_LIT_WIN1_VIR, 0x1fff, 0),
505 
506 	.alpha_mode = VOP_REG(RK3366_LIT_WIN1_ALPHA_CTRL, 0x1, 1),
507 	.alpha_en = VOP_REG(RK3366_LIT_WIN1_ALPHA_CTRL, 0x1, 0),
508 };
509 
510 static const struct vop_ctrl px30_ctrl_data = {
511 	.standby = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 1),
512 	.htotal_pw = VOP_REG(RK3366_LIT_DSP_HTOTAL_HS_END, 0x0fff0fff, 0),
513 	.hact_st_end = VOP_REG(RK3366_LIT_DSP_HACT_ST_END, 0x0fff0fff, 0),
514 	.vtotal_pw = VOP_REG(RK3366_LIT_DSP_VTOTAL_VS_END, 0x0fff0fff, 0),
515 	.vact_st_end = VOP_REG(RK3366_LIT_DSP_VACT_ST_END, 0x0fff0fff, 0),
516 	.vact_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VACT_ST_END_F1, 0x0fff0fff, 0),
517 	.vs_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VS_ST_END_F1, 0x0fff0fff, 0),
518 	.dsp_interlace = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 0),
519 	.global_regdone_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 13),
520 	.auto_gate_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 0),
521 	.dsp_layer_sel = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 22),
522 	.overlay_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 4),
523 	.core_dclk_div = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 13),
524 	.dclk_ddr = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 14),
525 	.rgb_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 0),
526 	.rgb_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 2),
527 	.hdmi_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 8),
528 	.hdmi_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 10),
529 	.lvds_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 16),
530 	.lvds_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 18),
531 	.mipi_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 24),
532 	.mipi_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 26),
533 	.mipi_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 25),
534 	.lvds_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 17),
535 	.hdmi_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 9),
536 	.rgb_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 1),
537 	.dither_up = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 2),
538 	.dither_down = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x7, 6),
539 	.dsp_data_swap = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1f, 9),
540 	.dsp_ccir656_avg = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 5),
541 	.dsp_black = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 15),
542 	.dsp_blank = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 14),
543 	.dsp_outzero = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 3),
544 	.dsp_lut_en = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 5),
545 	.out_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 16),
546 	.dsp_background = VOP_REG(RK3366_LIT_DSP_BG, 0x00ffffff, 0),
547 	.cfg_done = VOP_REG(RK3366_LIT_REG_CFG_DONE, 0x1, 0),
548 
549 	.bcsh_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 0),
550 	.bcsh_r2y_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 1),
551 	.bcsh_out_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 2),
552 	.bcsh_y2r_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 4),
553 	.bcsh_y2r_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 6),
554 	.bcsh_r2y_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 7),
555 	.bcsh_color_bar = VOP_REG(RK3366_LIT_BCSH_COL_BAR, 0xffffff, 0),
556 	.bcsh_brightness = VOP_REG(RK3366_LIT_BCSH_BCS, 0xff, 0),
557 	.bcsh_contrast = VOP_REG(RK3366_LIT_BCSH_BCS, 0x1ff, 8),
558 	.bcsh_sat_con = VOP_REG(RK3366_LIT_BCSH_BCS, 0x3ff, 20),
559 	.bcsh_sin_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 0),
560 	.bcsh_cos_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 16),
561 
562 	.cabc_config_mode = VOP_REG(PX30_CABC_CTRL0, 0x3, 2),
563 	.cabc_calc_pixel_num = VOP_REG(PX30_CABC_CTRL0, 0x7fffff, 4),
564 	.cabc_handle_en = VOP_REG(PX30_CABC_CTRL0, 0x1, 1),
565 	.cabc_en = VOP_REG(PX30_CABC_CTRL0, 0x1, 0),
566 	.cabc_total_num = VOP_REG(PX30_CABC_CTRL1, 0x7fffff, 4),
567 	.cabc_lut_en = VOP_REG(PX30_CABC_CTRL1, 0x1, 0),
568 	.cabc_stage_up_mode = VOP_REG(PX30_CABC_CTRL2, 0x1, 19),
569 	.cabc_stage_up = VOP_REG(PX30_CABC_CTRL2, 0x1ff, 8),
570 	.cabc_stage_down = VOP_REG(PX30_CABC_CTRL2, 0xff, 0),
571 	.cabc_global_dn = VOP_REG(PX30_CABC_CTRL3, 0xff, 0),
572 	.cabc_global_dn_limit_en = VOP_REG(PX30_CABC_CTRL3, 0x1, 8),
573 
574 	.mcu_pix_total = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 0),
575 	.mcu_cs_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 6),
576 	.mcu_cs_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 10),
577 	.mcu_rw_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 16),
578 	.mcu_rw_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 20),
579 	.mcu_clk_sel = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 26),
580 	.mcu_hold_mode = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 27),
581 	.mcu_frame_st = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 28),
582 	.mcu_rs = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 29),
583 	.mcu_bypass = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 30),
584 	.mcu_type = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 31),
585 	.mcu_rw_bypass_port = VOP_REG(RK3366_LIT_MCU_RW_BYPASS_PORT,
586 				      0xffffffff, 0),
587 };
588 
589 static const struct vop_line_flag rk3366_vop_lite_line_flag = {
590 	.line_flag_num[0] = VOP_REG(RK3366_LIT_LINE_FLAG, 0xfff, 0),
591 };
592 
593 static const struct vop_grf_ctrl px30_grf_ctrl = {
594 	.grf_dclk_inv = VOP_REG(PX30_GRF_PD_VO_CON1, 0x1, 4),
595 };
596 
597 const struct vop_data px30_vop_lit = {
598 	.version = VOP_VERSION(2, 5),
599 	.max_output = {1920, 1080},
600 	.ctrl = &px30_ctrl_data,
601 	.grf_ctrl = &px30_grf_ctrl,
602 	.win = &rk3366_win1_data,
603 	.line_flag = &rk3366_vop_lite_line_flag,
604 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
605 };
606 
607 const struct vop_data px30_vop_big = {
608 	.version = VOP_VERSION(2, 6),
609 	.max_output = {1920, 1080},
610 	.ctrl = &px30_ctrl_data,
611 	.grf_ctrl = &px30_grf_ctrl,
612 	.win = &rk3366_win1_data,
613 	.line_flag = &rk3366_vop_lite_line_flag,
614 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
615 };
616 
617 static const struct vop_ctrl rk3308_ctrl_data = {
618 	.standby = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 1),
619 	.axi_outstanding_max_num = VOP_REG(RK3366_LIT_SYS_CTRL1, 0x1f, 16),
620 	.axi_max_outstanding_en = VOP_REG(RK3366_LIT_SYS_CTRL1, 0x1, 12),
621 	.htotal_pw = VOP_REG(RK3366_LIT_DSP_HTOTAL_HS_END, 0x0fff0fff, 0),
622 	.hact_st_end = VOP_REG(RK3366_LIT_DSP_HACT_ST_END, 0x0fff0fff, 0),
623 	.vtotal_pw = VOP_REG(RK3366_LIT_DSP_VTOTAL_VS_END, 0x0fff0fff, 0),
624 	.vact_st_end = VOP_REG(RK3366_LIT_DSP_VACT_ST_END, 0x0fff0fff, 0),
625 	.vact_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VACT_ST_END_F1, 0x0fff0fff, 0),
626 	.vs_st_end_f1 = VOP_REG(RK3366_LIT_DSP_VS_ST_END_F1, 0x0fff0fff, 0),
627 	.global_regdone_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 13),
628 	.auto_gate_en = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 0),
629 	.dsp_layer_sel = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 3),
630 	.overlay_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 4),
631 	.dclk_ddr = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 14),
632 	.rgb_en = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 0),
633 	.rgb_pin_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x7, 2),
634 	.rgb_dclk_pol = VOP_REG(RK3366_LIT_DSP_CTRL0, 0x1, 1),
635 	.dither_up = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 2),
636 	.dither_down = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x7, 6),
637 	.dsp_data_swap = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1f, 9),
638 	.dsp_ccir656_avg = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 5),
639 	.dsp_black = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 15),
640 	.dsp_blank = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 14),
641 	.dsp_outzero = VOP_REG(RK3366_LIT_SYS_CTRL2, 0x1, 3),
642 	.dsp_lut_en = VOP_REG(RK3366_LIT_DSP_CTRL2, 0x1, 5),
643 	.out_mode = VOP_REG(RK3366_LIT_DSP_CTRL2, 0xf, 16),
644 	.dsp_background = VOP_REG(RK3366_LIT_DSP_BG, 0x00ffffff, 0),
645 	.cfg_done = VOP_REG(RK3366_LIT_REG_CFG_DONE, 0x1, 0),
646 
647 	.bcsh_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 0),
648 	.bcsh_r2y_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 1),
649 	.bcsh_out_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 2),
650 	.bcsh_y2r_csc_mode = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x3, 4),
651 	.bcsh_y2r_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 6),
652 	.bcsh_r2y_en = VOP_REG(RK3366_LIT_BCSH_CTRL, 0x1, 7),
653 	.bcsh_color_bar = VOP_REG(RK3366_LIT_BCSH_COL_BAR, 0xffffff, 0),
654 	.bcsh_brightness = VOP_REG(RK3366_LIT_BCSH_BCS, 0xff, 0),
655 	.bcsh_contrast = VOP_REG(RK3366_LIT_BCSH_BCS, 0x1ff, 8),
656 	.bcsh_sat_con = VOP_REG(RK3366_LIT_BCSH_BCS, 0x3ff, 20),
657 	.bcsh_sin_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 0),
658 	.bcsh_cos_hue = VOP_REG(RK3366_LIT_BCSH_H, 0x1ff, 16),
659 
660 	.mcu_pix_total = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 0),
661 	.mcu_cs_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 6),
662 	.mcu_cs_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 10),
663 	.mcu_rw_pst = VOP_REG(RK3366_LIT_MCU_CTRL, 0xf, 16),
664 	.mcu_rw_pend = VOP_REG(RK3366_LIT_MCU_CTRL, 0x3f, 20),
665 	.mcu_clk_sel = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 26),
666 	.mcu_hold_mode = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 27),
667 	.mcu_frame_st = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 28),
668 	.mcu_rs = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 29),
669 	.mcu_bypass = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 30),
670 	.mcu_type = VOP_REG(RK3366_LIT_MCU_CTRL, 0x1, 31),
671 	.mcu_rw_bypass_port = VOP_REG(RK3366_LIT_MCU_RW_BYPASS_PORT,
672 				      0xffffffff, 0),
673 };
674 
675 const struct vop_data rk3308_vop = {
676 	.version = VOP_VERSION(2, 7),
677 	.max_output = {1920, 1080},
678 	.ctrl = &rk3308_ctrl_data,
679 	.win = &rk3366_win0_data,
680 	.line_flag = &rk3366_vop_lite_line_flag,
681 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
682 };
683 
684 static const struct vop_grf_ctrl rk1808_grf_ctrl = {
685 	.grf_dclk_inv = VOP_REG(RK1808_GRF_PD_VO_CON1, 0x1, 4),
686 };
687 
688 const struct vop_data rk1808_vop = {
689 	.version = VOP_VERSION(2, 8),
690 	.max_output = {1920, 1080},
691 	.ctrl = &px30_ctrl_data,
692 	.grf_ctrl = &rk1808_grf_ctrl,
693 	.win = &rk3366_win1_data,
694 	.line_flag = &rk3366_vop_lite_line_flag,
695 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
696 };
697 
698 const struct vop_data rv1108_vop = {
699 	.version = VOP_VERSION(2, 4),
700 	.max_output = {1920, 1080},
701 	.ctrl = &rk3308_ctrl_data,
702 	.win = &rk3366_win0_data,
703 	.line_flag = &rk3366_vop_lite_line_flag,
704 	.reg_len = RK3366_LIT_FRC_LOWER01_0 * 4,
705 };
706