2 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
3 * Author: Jacob Chen <jacob-chen@iotwrt.com>
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
17 #define RGA_CMDBUF_SIZE 0x20
20 #define MAX_WIDTH 8192
21 #define MAX_HEIGHT 8192
26 #define DEFAULT_WIDTH 100
27 #define DEFAULT_HEIGHT 100
29 #define RGA_TIMEOUT 500
31 /* Registers address */
32 #define RGA_SYS_CTRL 0x0000
33 #define RGA_CMD_CTRL 0x0004
34 #define RGA_CMD_BASE 0x0008
35 #define RGA_INT 0x0010
36 #define RGA_MMU_CTRL0 0x0014
37 #define RGA_VERSION_INFO 0x0028
39 #define RGA_MODE_BASE_REG 0x0100
40 #define RGA_MODE_MAX_REG 0x017C
42 #define RGA_MODE_CTRL 0x0100
43 #define RGA_SRC_INFO 0x0104
44 #define RGA_SRC_Y_RGB_BASE_ADDR 0x0108
45 #define RGA_SRC_CB_BASE_ADDR 0x010c
46 #define RGA_SRC_CR_BASE_ADDR 0x0110
47 #define RGA_SRC1_RGB_BASE_ADDR 0x0114
48 #define RGA_SRC_VIR_INFO 0x0118
49 #define RGA_SRC_ACT_INFO 0x011c
50 #define RGA_SRC_X_FACTOR 0x0120
51 #define RGA_SRC_Y_FACTOR 0x0124
52 #define RGA_SRC_BG_COLOR 0x0128
53 #define RGA_SRC_FG_COLOR 0x012c
54 #define RGA_SRC_TR_COLOR0 0x0130
55 #define RGA_SRC_TR_COLOR1 0x0134
57 #define RGA_DST_INFO 0x0138
58 #define RGA_DST_Y_RGB_BASE_ADDR 0x013c
59 #define RGA_DST_CB_BASE_ADDR 0x0140
60 #define RGA_DST_CR_BASE_ADDR 0x0144
61 #define RGA_DST_VIR_INFO 0x0148
62 #define RGA_DST_ACT_INFO 0x014c
64 #define RGA_ALPHA_CTRL0 0x0150
65 #define RGA_ALPHA_CTRL1 0x0154
66 #define RGA_FADING_CTRL 0x0158
67 #define RGA_PAT_CON 0x015c
68 #define RGA_ROP_CON0 0x0160
69 #define RGA_ROP_CON1 0x0164
70 #define RGA_MASK_BASE 0x0168
72 #define RGA_MMU_CTRL1 0x016C
73 #define RGA_MMU_SRC_BASE 0x0170
74 #define RGA_MMU_SRC1_BASE 0x0174
75 #define RGA_MMU_DST_BASE 0x0178
78 #define RGA_MODE_RENDER_BITBLT 0
79 #define RGA_MODE_RENDER_COLOR_PALETTE 1
80 #define RGA_MODE_RENDER_RECTANGLE_FILL 2
81 #define RGA_MODE_RENDER_UPDATE_PALETTE_LUT_RAM 3
83 #define RGA_MODE_BITBLT_MODE_SRC_TO_DST 0
84 #define RGA_MODE_BITBLT_MODE_SRC_SRC1_TO_DST 1
86 #define RGA_MODE_CF_ROP4_SOLID 0
87 #define RGA_MODE_CF_ROP4_PATTERN 1
89 #define RGA_COLOR_FMT_ABGR8888 0
90 #define RGA_COLOR_FMT_XBGR8888 1
91 #define RGA_COLOR_FMT_RGB888 2
92 #define RGA_COLOR_FMT_BGR565 4
93 #define RGA_COLOR_FMT_ABGR1555 5
94 #define RGA_COLOR_FMT_ABGR4444 6
95 #define RGA_COLOR_FMT_YUV422SP 8
96 #define RGA_COLOR_FMT_YUV422P 9
97 #define RGA_COLOR_FMT_YUV420SP 10
98 #define RGA_COLOR_FMT_YUV420P 11
99 /* SRC_COLOR Palette */
100 #define RGA_COLOR_FMT_CP_1BPP 12
101 #define RGA_COLOR_FMT_CP_2BPP 13
102 #define RGA_COLOR_FMT_CP_4BPP 14
103 #define RGA_COLOR_FMT_CP_8BPP 15
104 #define RGA_COLOR_FMT_MASK 15
106 #define RGA_COLOR_NONE_SWAP 0
107 #define RGA_COLOR_RB_SWAP 1
108 #define RGA_COLOR_ALPHA_SWAP 2
109 #define RGA_COLOR_UV_SWAP 4
111 #define RGA_SRC_CSC_MODE_BYPASS 0
112 #define RGA_SRC_CSC_MODE_BT601_R0 1
113 #define RGA_SRC_CSC_MODE_BT601_R1 2
114 #define RGA_SRC_CSC_MODE_BT709_R0 3
115 #define RGA_SRC_CSC_MODE_BT709_R1 4
117 #define RGA_SRC_ROT_MODE_0_DEGREE 0
118 #define RGA_SRC_ROT_MODE_90_DEGREE 1
119 #define RGA_SRC_ROT_MODE_180_DEGREE 2
120 #define RGA_SRC_ROT_MODE_270_DEGREE 3
122 #define RGA_SRC_MIRR_MODE_NO 0
123 #define RGA_SRC_MIRR_MODE_X 1
124 #define RGA_SRC_MIRR_MODE_Y 2
125 #define RGA_SRC_MIRR_MODE_X_Y 3
127 #define RGA_SRC_HSCL_MODE_NO 0
128 #define RGA_SRC_HSCL_MODE_DOWN 1
129 #define RGA_SRC_HSCL_MODE_UP 2
131 #define RGA_SRC_VSCL_MODE_NO 0
132 #define RGA_SRC_VSCL_MODE_DOWN 1
133 #define RGA_SRC_VSCL_MODE_UP 2
135 #define RGA_SRC_TRANS_ENABLE_R 1
136 #define RGA_SRC_TRANS_ENABLE_G 2
137 #define RGA_SRC_TRANS_ENABLE_B 4
138 #define RGA_SRC_TRANS_ENABLE_A 8
140 #define RGA_SRC_BIC_COE_SELEC_CATROM 0
141 #define RGA_SRC_BIC_COE_SELEC_MITCHELL 1
142 #define RGA_SRC_BIC_COE_SELEC_HERMITE 2
143 #define RGA_SRC_BIC_COE_SELEC_BSPLINE 3
145 #define RGA_DST_DITHER_MODE_888_TO_666 0
146 #define RGA_DST_DITHER_MODE_888_TO_565 1
147 #define RGA_DST_DITHER_MODE_888_TO_555 2
148 #define RGA_DST_DITHER_MODE_888_TO_444 3
150 #define RGA_DST_CSC_MODE_BYPASS 0
151 #define RGA_DST_CSC_MODE_BT601_R0 1
152 #define RGA_DST_CSC_MODE_BT601_R1 2
153 #define RGA_DST_CSC_MODE_BT709_R0 3
155 #define RGA_ALPHA_ROP_MODE_2 0
156 #define RGA_ALPHA_ROP_MODE_3 1
157 #define RGA_ALPHA_ROP_MODE_4 2
159 #define RGA_ALPHA_SELECT_ALPHA 0
160 #define RGA_ALPHA_SELECT_ROP 1
162 #define RGA_ALPHA_MASK_BIG_ENDIAN 0
163 #define RGA_ALPHA_MASK_LITTLE_ENDIAN 1
165 #define RGA_ALPHA_NORMAL 0
166 #define RGA_ALPHA_REVERSE 1
168 #define RGA_ALPHA_BLEND_GLOBAL 0
169 #define RGA_ALPHA_BLEND_NORMAL 1
170 #define RGA_ALPHA_BLEND_MULTIPLY 2
172 #define RGA_ALPHA_CAL_CUT 0
173 #define RGA_ALPHA_CAL_NORMAL 1
175 #define RGA_ALPHA_FACTOR_ZERO 0
176 #define RGA_ALPHA_FACTOR_ONE 1
177 #define RGA_ALPHA_FACTOR_OTHER 2
178 #define RGA_ALPHA_FACTOR_OTHER_REVERSE 3
179 #define RGA_ALPHA_FACTOR_SELF 4
181 #define RGA_ALPHA_COLOR_NORMAL 0
182 #define RGA_ALPHA_COLOR_MULTIPLY_CAL 1
184 /* Registers union */
185 union rga_mode_ctrl
{
189 unsigned int render
:3;
191 unsigned int bitblt
:1;
192 unsigned int cf_rop4_pat
:1;
193 unsigned int alpha_zero_key
:1;
194 unsigned int gradient_sat
:1;
196 unsigned int reserved
:25;
204 unsigned int format
:4;
207 unsigned int cp_endian
:1;
209 unsigned int csc_mode
:2;
210 unsigned int rot_mode
:2;
211 unsigned int mir_mode
:2;
212 unsigned int hscl_mode
:2;
213 unsigned int vscl_mode
:2;
215 unsigned int trans_mode
:1;
216 unsigned int trans_enable
:4;
218 unsigned int dither_up_en
:1;
219 unsigned int bic_coe_sel
:2;
221 unsigned int reserved
:6;
225 union rga_src_vir_info
{
229 unsigned int vir_width
:15;
230 unsigned int reserved
:1;
232 unsigned int vir_stride
:10;
234 unsigned int reserved1
:6;
238 union rga_src_act_info
{
242 unsigned int act_width
:13;
243 unsigned int reserved
:3;
245 unsigned int act_height
:13;
246 unsigned int reserved1
:3;
250 union rga_src_x_factor
{
254 unsigned int down_scale_factor
:16;
256 unsigned int up_scale_factor
:16;
260 union rga_src_y_factor
{
264 unsigned int down_scale_factor
:16;
266 unsigned int up_scale_factor
:16;
270 /* Alpha / Red / Green / Blue */
271 union rga_src_cp_gr_color
{
275 unsigned int gradient_x
:16;
277 unsigned int gradient_y
:16;
281 union rga_src_transparency_color0
{
285 unsigned int trans_rmin
:8;
287 unsigned int trans_gmin
:8;
289 unsigned int trans_bmin
:8;
291 unsigned int trans_amin
:8;
295 union rga_src_transparency_color1
{
299 unsigned int trans_rmax
:8;
301 unsigned int trans_gmax
:8;
303 unsigned int trans_bmax
:8;
305 unsigned int trans_amax
:8;
313 unsigned int format
:4;
317 unsigned int src1_format
:3;
319 unsigned int src1_swap
:2;
321 unsigned int dither_up_en
:1;
322 unsigned int dither_down_en
:1;
323 unsigned int dither_down_mode
:2;
325 unsigned int csc_mode
:2;
326 unsigned int csc_clip
:1;
328 unsigned int reserved
:13;
332 union rga_dst_vir_info
{
336 unsigned int vir_stride
:15;
337 unsigned int reserved
:1;
339 unsigned int src1_vir_stride
:15;
340 unsigned int reserved1
:1;
344 union rga_dst_act_info
{
348 unsigned int act_width
:12;
349 unsigned int reserved
:4;
351 unsigned int act_height
:12;
352 unsigned int reserved1
:4;
356 union rga_alpha_ctrl0
{
360 unsigned int rop_en
:1;
361 unsigned int rop_select
:1;
362 unsigned int rop_mode
:2;
364 unsigned int src_fading_val
:8;
366 unsigned int dst_fading_val
:8;
367 unsigned int mask_endian
:1;
369 unsigned int reserved
:11;
373 union rga_alpha_ctrl1
{
377 unsigned int dst_color_m0
:1;
378 unsigned int src_color_m0
:1;
380 unsigned int dst_factor_m0
:3;
381 unsigned int src_factor_m0
:3;
383 unsigned int dst_alpha_cal_m0
:1;
384 unsigned int src_alpha_cal_m0
:1;
386 unsigned int dst_blend_m0
:2;
387 unsigned int src_blend_m0
:2;
389 unsigned int dst_alpha_m0
:1;
390 unsigned int src_alpha_m0
:1;
392 unsigned int dst_factor_m1
:3;
393 unsigned int src_factor_m1
:3;
395 unsigned int dst_alpha_cal_m1
:1;
396 unsigned int src_alpha_cal_m1
:1;
398 unsigned int dst_blend_m1
:2;
399 unsigned int src_blend_m1
:2;
401 unsigned int dst_alpha_m1
:1;
402 unsigned int src_alpha_m1
:1;
404 unsigned int reserved
:2;
408 union rga_fading_ctrl
{
412 unsigned int fading_offset_r
:8;
414 unsigned int fading_offset_g
:8;
416 unsigned int fading_offset_b
:8;
418 unsigned int fading_en
:1;
419 unsigned int reserved
:7;
427 unsigned int width
:8;
429 unsigned int height
:8;
431 unsigned int offset_x
:8;
433 unsigned int offset_y
:8;