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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
/*
 * 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.
 */
 
#ifndef __DE_RTMX_TYPE_H__
#define __DE_RTMX_TYPE_H__
 
/* for global control */
union __glb_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int rt_en:1;
       unsigned int r0:3;
       unsigned int finish_irq_en:1;
       unsigned int error_irq_en:1;
       unsigned int r1:2;
       unsigned int sync_rev:1;
       unsigned int flied_rev:1;
       unsigned int r2:2;
       unsigned int rtwb_port:2;
       unsigned int r3:18;
   } bits;
};
/* 0x0 */
 
union __glb_status_reg_t {
   unsigned int dwval;
   struct {
       unsigned int finish_irq:1;
       unsigned int error_irq:1;
       unsigned int r0:2;
       unsigned int busy_status:1;
       unsigned int error_status:1;
       unsigned int r1:2;
       unsigned int even_odd_flag:1;
       unsigned int r2:23;
   } bits;
};
/* 0x4 */
 
union __glb_dbuff_reg_t {
   unsigned int dwval;
   struct {
       unsigned int dbuff_rdy:1;
       unsigned int r0:31;
   } bits;
};
/* 0x8 */
 
union __glb_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int width:13;
       unsigned int r0:3;
       unsigned int height:13;
       unsigned int r1:3;
   } bits;
};
/* 0xc */
 
struct __glb_reg_t {
   union __glb_ctl_reg_t glb_ctl;
   union __glb_status_reg_t glb_status;
   union __glb_dbuff_reg_t glb_dbuff;
   union __glb_size_reg_t glb_size;
};
 
/* for video overlay */
union __vi_lay_attr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_en:1;
       unsigned int alpmode:2;
       unsigned int r0:1;
       unsigned int lay_fcolor_en:1;
       unsigned int r1:3;
       unsigned int lay_fmt:5;
       unsigned int r2:2;
       unsigned int ui_sel:1;
       unsigned int alpctl:2;
       unsigned int r3:2;
       unsigned int brust:3;
       unsigned int lay_top_down:1;
       unsigned int alpha:8;
   } bits;
};
/* 0x0+N*0x30(N=0,1,2,3) */
 
union __vi_lay_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_width:13;
       unsigned int r0:3;
       unsigned int lay_height:13;
       unsigned int r1:3;
   } bits;
};
/* 0x4+N*0x30(N=0,1,2,3) */
 
union __vi_lay_coor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_coorx:16;
       unsigned int lay_coory:16;
   } bits;
};
/* 0x8+N*0x30(N=0,1,2,3) */
 
union __vi_lay_pitch_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_pitch:32;
   } bits;
};
/* 0xc/0x010/0x014+N*0x30(N=0,1,2,3) */
 
union __vi_lay_top_laddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_top_laddr:32;
   } bits;
};
/* 0x018/0x01c/0x020+N*0x30(N=0,1,2,3) */
 
union __vi_lay_bot_laddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_bot_laddr:32;
   } bits;
};
/* 0x024/0x028/0x02c+N*0x30(N=0,1,2,3) */
 
union __vi_lay_fcolor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_vb:8;
       unsigned int lay_ug:8;
       unsigned int lay_yr:8;
       unsigned int r0:8;
   } bits;
};
/* 0x0c0+N*0x4(N=0,1,2,3) */
 
union __vi_lay_top_haddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay0_top_haddr:8;
       unsigned int lay1_top_haddr:8;
       unsigned int lay2_top_haddr:8;
       unsigned int lay3_top_haddr:8;
   } bits;
};
/* 0xd0~0x0xd8 */
 
union __vi_lay_bot_haddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay0_bot_haddr:8;
       unsigned int lay1_bot_haddr:8;
       unsigned int lay2_bot_haddr:8;
       unsigned int lay3_bot_haddr:8;
   } bits;
};
/* 0xdc~0xe4 */
 
union __vi_ovl_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int ovl_width:13;
       unsigned int r0:3;
       unsigned int ovl_height:13;
       unsigned int r1:3;
   } bits;
};
/* 0xe8~0xec */
 
union __vi_hori_ds_reg_t {
   unsigned int dwval;
   struct {
       unsigned int m:14;
       unsigned int r0:2;
       unsigned int n:14;
       unsigned int r1:2;
   } bits;
};
/* 0xf0~0xf4 */
 
union __vi_vert_ds_reg_t {
   unsigned int dwval;
   struct {
       unsigned int m:14;
       unsigned int r0:2;
       unsigned int n:14;
       unsigned int r1:2;
   } bits;
};
/* 0xf8~0xfc */
 
struct __vi_lay_reg_t {
   union __vi_lay_attr_reg_t lay_attr;
   union __vi_lay_size_reg_t lay_size;
   union __vi_lay_coor_reg_t lay_coor;
   union __vi_lay_pitch_reg_t lay_pitch[3];
   union __vi_lay_top_laddr_reg_t lay_top_laddr[3];
   union __vi_lay_bot_laddr_reg_t lay_bot_laddr[3];
};
 
struct __vi_ovl_reg_t {
   struct  __vi_lay_reg_t vi_lay_cfg[4];
   union __vi_lay_fcolor_reg_t vi_lay_fcolor[4];
   union __vi_lay_top_haddr_reg_t vi_lay_top_haddr[3];
   union __vi_lay_bot_haddr_reg_t vi_lay_bot_haddr[3];
   union __vi_ovl_size_reg_t vi_ovl_size[2];
   union __vi_hori_ds_reg_t vi_hori_ds[2];
   union __vi_vert_ds_reg_t vi_vert_ds[2];
};
 
/* for ui overlay */
union __ui_lay_attr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_en:1;
       unsigned int lay_alpmod:2;
       unsigned int r0:1;
       unsigned int lay_fcolor_en:1;
       unsigned int r1:3;
       unsigned int lay_fmt:5;
       unsigned int r2:3;
       unsigned int lay_alpctl:2;
       unsigned int r3:5;
       unsigned int lay_top_down:1;
       unsigned int lay_alpha:8;
   } bits;
};
/* 0x0+N*0x20(N=0,1,2,3) */
 
union __ui_lay_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_width:13;
       unsigned int r0:3;
       unsigned int lay_height:13;
       unsigned int r1:3;
   } bits;
};
/* 0x4+N*0x20(N=0,1,2,3) */
 
union __ui_lay_coor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_coorx:16;
       unsigned int lay_coory:16;
   } bits;
};
/* 0x8+N*0x20(N=0,1,2,3) */
 
union __ui_lay_pitch_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_pitch:32;
   } bits;
};
/* 0xc+N*0x20(N=0,1,2,3) */
 
union __ui_lay_top_laddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_top_laddr:32;
   } bits;
};
/* 0x10+N*0x20(N=0,1,2,3) */
 
union __ui_lay_bot_laddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_bot_laddr:32;
   } bits;
};
/* 0x14+N*0x20(N=0,1,2,3) */
 
union __ui_lay_fcolor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay_blue:8;
       unsigned int lay_green:8;
       unsigned int lay_red:8;
       unsigned int lay_alpha:8;
   } bits;
};
/* 0x18+N*0x20(N=0,1,2,3) */
 
union __ui_lay_top_haddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay0_top_haddr:8;
       unsigned int lay1_top_haddr:8;
       unsigned int lay2_top_haddr:8;
       unsigned int lay3_top_haddr:8;
   } bits;
};
/* 0x80 */
 
union __ui_lay_bot_haddr_reg_t {
   unsigned int dwval;
   struct {
       unsigned int lay0_bot_haddr:8;
       unsigned int lay1_bot_haddr:8;
       unsigned int lay2_bot_haddr:8;
       unsigned int lay3_bot_haddr:8;
   } bits;
};
/* 0x84 */
 
union __ui_ovl_size_reg_t {
   unsigned int dwval;
   struct {
       unsigned int ovl_width:13;
       unsigned int r0:3;
       unsigned int ovl_height:13;
       unsigned int r1:3;
   } bits;
};
/* 0x88 */
 
struct __ui_lay_reg_t {
   union __ui_lay_attr_reg_t lay_attr;
   union __ui_lay_size_reg_t lay_size;
   union __ui_lay_coor_reg_t lay_coor;
   union __ui_lay_pitch_reg_t lay_pitch;
   union __ui_lay_top_laddr_reg_t lay_top_laddr;
   union __ui_lay_bot_laddr_reg_t lay_bot_laddr;
   union __ui_lay_fcolor_reg_t lay_fcolor;
   unsigned int r0;
};
 
struct __ui_ovl_reg_t {
   struct __ui_lay_reg_t ui_lay_cfg[4];
   union __ui_lay_top_haddr_reg_t ui_lay_top_haddr;
   union __ui_lay_bot_haddr_reg_t ui_lay_bot_haddr;
   union __ui_ovl_size_reg_t ui_ovl_size;
};
 
/* for alpha blending     */
union __bld_fcolor_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int p0_fcolor_en:1;
       unsigned int p1_fcolor_en:1;
       unsigned int p2_fcolor_en:1;
       unsigned int p3_fcolor_en:1;
       unsigned int p4_fcolor_en:1;
       unsigned int r0:3;
       unsigned int p0_en:1;
       unsigned int p1_en:1;
       unsigned int p2_en:1;
       unsigned int p3_en:1;
       unsigned int p4_en:1;
       unsigned int r1:19;
   } bits;
};
/* 0x0 */
 
union __bld_fcolor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int blue:8;
       unsigned int green:8;
       unsigned int red:8;
       unsigned int alpha:8;
   } bits;
};
/* 0x4+N*0x10(N=0,1,2,3,4) */
 
union __bld_isize_reg_t {
   unsigned int dwval;
   struct {
       unsigned int width:13;
       unsigned int r0:3;
       unsigned int height:13;
       unsigned int r1:3;
   } bits;
};
/* 0x8+N*0x10(N=0,1,2,3,4) */
 
union __bld_offset_reg_t {
   unsigned int dwval;
   struct {
       unsigned int coorx:16;
       unsigned int coory:13;
   } bits;
};
/* 0xc+N*0x10(N=0,1,2,3,4) */
 
union __bld_route_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int ch0_routr_ctl:4;
       unsigned int ch1_routr_ctl:4;
       unsigned int ch2_routr_ctl:4;
       unsigned int ch3_routr_ctl:4;
       unsigned int ch4_routr_ctl:4;
       unsigned int r0:12;
   } bits;
};
 
union __bld_premultiply_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int p0_alpha_mode:1;
       unsigned int p1_alpha_mode:1;
       unsigned int p2_alpha_mode:1;
       unsigned int p3_alpha_mode:1;
       unsigned int p4_alpha_mode:1;
       unsigned int r0:27;
   } bits;
};
 
union __bld_bkcolor_reg_t {
   unsigned int dwval;
   struct {
       unsigned int blue:8;
       unsigned int green:8;
       unsigned int red:8;
       unsigned int alpha:8;
   } bits;
};
 
union __bld_output_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 __bld_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int pixel_fs:4;
       unsigned int r0:4;
       unsigned int pixel_fd:4;
       unsigned int r1:4;
       unsigned int alpha_fs:4;
       unsigned int r2:4;
       unsigned int alpha_fd:4;
       unsigned int r3:4;
   } bits;
};
 
union __bld_colorkey_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int key0_en:1;
       unsigned int key0_dir:2;
       unsigned int r0:1;
       unsigned int key1_en:1;
       unsigned int key1_dir:2;
       unsigned int r1:1;
       unsigned int key2_en:1;
       unsigned int key2_dir:2;
       unsigned int r2:1;
       unsigned int key3_en:1;
       unsigned int key3_dir:2;
       unsigned int r3:17;
   } bits;
};
 
union __bld_colorkey_cfg_reg_t {
   unsigned int dwval;
   struct {
       unsigned int key0_blue:1;
       unsigned int key0_green:1;
       unsigned int key0_red:1;
       unsigned int r0:5;
       unsigned int key1_blue:1;
       unsigned int key1_green:1;
       unsigned int key1_red:1;
       unsigned int r1:5;
       unsigned int key2_blue:1;
       unsigned int key2_green:1;
       unsigned int key2_red:1;
       unsigned int r2:5;
       unsigned int key3_blue:1;
       unsigned int key3_green:1;
       unsigned int key3_red:1;
       unsigned int r3:5;
   } bits;
};
 
union __bld_colorkey_max_reg_t {
   unsigned int dwval;
   struct {
       unsigned int max_blue:8;
       unsigned int max_green:8;
       unsigned int max_red:8;
       unsigned int r0:8;
   } bits;
};
 
union __bld_colorkey_min_reg_t {
   unsigned int dwval;
   struct {
       unsigned int min_blue:8;
       unsigned int min_green:8;
       unsigned int min_red:8;
       unsigned int r0:8;
   } bits;
};
 
union __bld_out_color_ctl_reg_t {
   unsigned int dwval;
   struct {
       unsigned int premultiply_en:1;
       unsigned int interlace_en:1;
       unsigned int r0:30;
   } bits;
};
 
struct __bld_pipe_reg_t {
   union __bld_fcolor_reg_t fcolor;
   union __bld_isize_reg_t insize;
   union __bld_offset_reg_t offset;
   unsigned int r0;
};
 
struct __bld_reg_t {
   union __bld_fcolor_ctl_reg_t bld_fcolor_ctl;
   struct __bld_pipe_reg_t bld_pipe_attr[5];
   unsigned int r0[11];
   union __bld_route_ctl_reg_t bld_route_ctl;
   union __bld_premultiply_ctl_reg_t bld_premultiply_ctl;
   union __bld_bkcolor_reg_t bld_bkcolor;
   union __bld_output_size_reg_t bld_output_size;
   union __bld_ctl_reg_t bld_mode[4];
   unsigned int r1[4];
   union __bld_colorkey_ctl_reg_t bld_ck_ctl;
   union __bld_colorkey_cfg_reg_t bld_ck_cfg;
   unsigned int r2[2];
   union __bld_colorkey_max_reg_t bld_ck_max[4];
   unsigned int r3[4];
   union __bld_colorkey_min_reg_t bld_ck_min[4];
   unsigned int r4[3];
   union __bld_out_color_ctl_reg_t bld_out_ctl;
};
 
struct __rtmx_reg_t {
   struct __glb_reg_t *glb_ctl;
   struct __bld_reg_t *bld_ctl;
   struct __vi_ovl_reg_t *vi_ovl[VI_CHN_NUM];
   struct __ui_ovl_reg_t *ui_ovl[UI_CHN_NUM];
};
 
#endif