huangcm
2025-07-03 c26084b3642f262f858535ab4e46c1e9b520d3a1
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
 * Allwinner SoCs display driver.
 *
 * Copyright (C) 2016 Allwinner.
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
 
/**
 *    All Winner Tech, All Right Reserved. 2014-2015 Copyright (c)
 *
 *    File name   :       de_wb_type.h
 *
 *    Description :       display engine 2.0 wbc struct declaration
 *
 *    History     :       2014/03/03   wangxuan   initial version
 *
 */
#ifndef __DE_WB_TYPE_H__
#define __DE_WB_TPYE_H__
 
#define ____SEPARATOR_DEFEINE____
#define WB_END_IE    0x1
#define WB_FINISH_IE    (0x1<<4)
#define WB_FIFO_OVERFLOW_ERROR_IE    (0x1<<5)
#define WB_TIMEOUT_ERROR_IE    (0x1<<6)
 
#define MININWIDTH 8
#define MININHEIGHT 4
/* support 8192,limit by LCD */
#define MAXINWIDTH 4096
/* support 8192,limit by LCD */
#define MAXINHEIGHT 4096
#define LINE_BUF_LEN 2048
#define LOCFRACBIT 18
#define SCALERPHASE 16
 
#define ____SEPARATOR_REGISTERS____
union __wb_gctrl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int wb_start:1;
       unsigned int r0:3;
       unsigned int soft_reset:1;
       unsigned int self_timing:1; /* bit5 */
       unsigned int r1:10;
       unsigned int in_port_sel:2;
       unsigned int r2:10;
       unsigned int auto_gate_en:1;
       unsigned int clk_gate:1;
       unsigned int r3:1;
       unsigned int bist_en:1;
   } bits;
};
 
union __wb_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int width:13;
       unsigned int r0:3;
       unsigned int height:13;
       unsigned int r1:3;
   } bits;
};
 
union __wb_crop_coord_reg_t {
   unsigned int dwval;
   struct {
       unsigned int crop_left:13;
       unsigned int r0:3;
       unsigned int crop_top:13;
       unsigned int r1:3;
   } bits;
};
 
union __wb_crop_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int crop_width:13;
       unsigned int r0:3;
       unsigned int crop_height:13;
       unsigned int r1:3;
   } bits;
};
 
union __wb_addr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int addr:32;
   } bits;
};
 
union __wb_high_addr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int ch0_h_addr:8;
       unsigned int ch1_h_addr:8;
       unsigned int ch2_h_addr:8;
       unsigned int r0:8;
   } bits;
};
 
union __wb_pitch_reg_t {
   unsigned int dwval;
   struct {
       unsigned int pitch:32;
   } bits;
};
 
union __wb_addr_switch_reg_t {
   unsigned int dwval;
   struct {
       unsigned int cur_group:1;
       unsigned int r0:15;
       unsigned int auto_switch:1;
       unsigned int r1:3;
       unsigned int manual_group:1;
       unsigned int r2:11;
   } bits;
};
 
union __wb_format_reg_t {
   unsigned int dwval;
   struct {
       unsigned int format:4;
       unsigned int r0:28;
   } bits;
};
 
union __wb_int_reg_t {
   unsigned int dwval;
   struct {
       unsigned int int_en:1;
       unsigned int r0:31;
   } bits;
};
 
union __wb_status_reg_t {
   unsigned int dwval;
   struct {
       unsigned int irq:1;
       unsigned int r0:3;
       unsigned int finish:1;
       unsigned int overflow:1;
       unsigned int timeout:1;
       unsigned int r1:1;
       unsigned int busy:1;
       unsigned int r2:23;
   } bits;
};
 
union __wb_bypass_reg_t {
   unsigned int dwval;
   struct {
       unsigned int csc_en:1;
       unsigned int cs_en:1;
       unsigned int fs_en:1;
       unsigned int r0:29;
   } bits;
};
 
union __wb_cs_reg_t {
   unsigned int dwval;
   struct {
       unsigned int m:13;
       unsigned int r1:3;
       unsigned int n:13;
       unsigned int r0:3;
   } bits;
};
 
union __wb_fs_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int width:13;
       unsigned int r1:3;
       unsigned int height:13;
       unsigned int r0:3;
   } bits;
};
 
union __wb_fs_step_reg_t {
   unsigned int dwval;
   struct {
       unsigned int r1:2;
       unsigned int frac:18;
       unsigned int intg:2;
       unsigned int r0:10;
   } bits;
};
 
union __wb_coeff_reg_t {
   unsigned int dwval;
   struct {
       unsigned int coef0:8;
       unsigned int coef1:8;
       unsigned int coef2:8;
       unsigned int coef3:8;
   } bits;
};
union __wb_csc_coeff_reg_t {
   unsigned int dwval;
   struct {
       unsigned int coff        :13;/* Default: 0x0; */
       unsigned int res0        :19;/* Default: ; */
   } bits;
};
 
union __wb_csc_const_reg_t {
   unsigned int dwval;
   struct {
       unsigned int cont            :20;/* Default: 0x0; */
       unsigned int res0            :12;/* Default: ; */
   } bits;
};
 
union __wb_sftm_reg_t {
   unsigned int dwval;
   struct {
       unsigned int sf_vs        :  10;       /* Default: 0x0; */
       unsigned int res0        :  22;     /* Default: ; */
   } bits;
};
 
struct __wb_reg_t {
   union __wb_gctrl_reg_t gctrl;            /* 0x0000 */
   union __wb_size_reg_t size;            /* 0x0004 */
   union __wb_crop_coord_reg_t crop_coord;        /* 0x0008 */
   union __wb_crop_size_reg_t crop_size;        /* 0x000c */
   union __wb_addr_reg_t wb_addr_a0;        /* 0x0010 */
   union __wb_addr_reg_t wb_addr_a1;        /* 0x0014 */
   union __wb_addr_reg_t wb_addr_a2;        /* 0x0018 */
   union __wb_high_addr_reg_t wb_addr_ah;        /* 0x001c */
   union __wb_addr_reg_t wb_addr_b0;        /* 0x0020 */
   union __wb_addr_reg_t wb_addr_b1;        /* 0x0024 */
   union __wb_addr_reg_t wb_addr_b2;        /* 0x0028 */
   union __wb_high_addr_reg_t wb_addr_bh;        /* 0x002c */
   union __wb_pitch_reg_t wb_pitch0;        /* 0x0030 */
   union __wb_pitch_reg_t wb_pitch1;        /* 0x0034 */
   unsigned int res0[2];                /* 0x0038-0x003c */
   union __wb_addr_switch_reg_t addr_switch;    /* 0x0040 */
   union __wb_format_reg_t fmt;            /* 0x0044 */
   union __wb_int_reg_t intr;            /* 0x0048 */
   union __wb_status_reg_t status;            /* 0x004c */
   unsigned int res1;                /* 0x0050 */
   union __wb_bypass_reg_t bypass;            /* 0x0054 */
   unsigned int res2[6];                /* 0x0058-0x006c */
   union __wb_cs_reg_t cs_horz;            /* 0x0070 */
   union __wb_cs_reg_t cs_vert;            /* 0x0074 */
   unsigned int res3[2];                /* 0x0078-0x007c */
   union __wb_fs_size_reg_t fs_insize;        /* 0x0080 */
   union __wb_fs_size_reg_t fs_outsize;        /* 0x0084 */
   union __wb_fs_step_reg_t fs_hstep;        /* 0x0088 */
   union __wb_fs_step_reg_t fs_vstep;        /* 0x008c */
   unsigned int res4[28];                /* 0x0090-0x00fc */
   union __wb_csc_coeff_reg_t    c00;/* 0x0100 */
   union __wb_csc_coeff_reg_t    c01;/* 0x0104 */
   union __wb_csc_coeff_reg_t    c02;/* 0x0108 */
   union __wb_csc_const_reg_t    c03;/* 0x010C */
   union __wb_csc_coeff_reg_t    c10;/* 0x0110 */
   union __wb_csc_coeff_reg_t    c11;/* 0x0114 */
   union __wb_csc_coeff_reg_t    c12;/* 0x0118 */
   union __wb_csc_const_reg_t    c13;/* 0x011C */
   union __wb_csc_coeff_reg_t    c20;/* 0x0120 */
   union __wb_csc_coeff_reg_t    c21;/* 0x0124 */
   union __wb_csc_coeff_reg_t    c22;/* 0x0128 */
   union __wb_csc_const_reg_t    c23;/* 0x012C */
   unsigned int res41[52];            /* 0x0130-0x01fc */
   union __wb_coeff_reg_t yhcoeff[16];    /* 0X0200-0x23c */
   unsigned int res5[16];            /* 0X0240-0x27c */
   union __wb_coeff_reg_t chcoeff[16];    /* 0X0280-0x2bc */
   unsigned int res6[16];            /* 0x02c0-0x02fc */
};
 
enum wb_output_fmt {
   WB_FORMAT_RGB_888     = 0x0,
   WB_FORMAT_BGR_888     = 0x1,
   WB_FORMAT_ARGB_8888     = 0x4,
   WB_FORMAT_ABGR_8888     = 0x5,
   WB_FORMAT_BGRA_8888     = 0x6,
   WB_FORMAT_RGBA_8888     = 0x7,
   WB_FORMAT_YUV420_P     = 0x8,
   WB_FORMAT_Y         = 0x9,
   WB_FORMAT_YUV420_SP_VUVU = 0xc,
   WB_FORMAT_YUV420_SP_UVUV = 0xd,
};
 
#if defined(CONFIG_EINK_PANEL_USED)
typedef struct {
   int width;
   int height;
   int addr[3];
   int csc_std;
} __einkwb_config_t;
 
#define EWB_OK 0
#define EWB_OVFL 1
#define EWB_TIMEOUT 2
#define EWB_BUSY 3
#define EWB_ERR 4
extern unsigned int wb_lan2coefftab16[16];
extern unsigned int wb_lan2coefftab16_down[16];
 
extern int wb_eink_set_reg_base(unsigned int sel, unsigned int base);
extern int wb_eink_init(unsigned int sel, unsigned int base_addr);
extern int wb_eink_close(unsigned int sel);
extern int wb_eink_reset(unsigned int sel);
extern int wb_eink_dereset(unsigned int sel);
extern int wb_eink_set_para(unsigned int sel, __einkwb_config_t *cfg);
extern int wb_eink_writeback_enable(unsigned int sel);
extern int wb_eink_get_status(unsigned int sel);
extern int wb_eink_enableint(unsigned int sel);
extern int wb_eink_disableint(unsigned int sel);
extern int wb_eink_clearint(unsigned int sel);
#endif
#endif