162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci#ifndef __MB826XXFB_ACCEL_H__
362306a36Sopenharmony_ci#define __MB826XXFB_ACCEL_H__
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci/* registers */
662306a36Sopenharmony_ci#define GDC_GEO_REG_INPUT_FIFO 0x00000400L
762306a36Sopenharmony_ci
862306a36Sopenharmony_ci/* Special Registers */
962306a36Sopenharmony_ci#define GDC_REG_CTRL                0x00000400L
1062306a36Sopenharmony_ci#define GDC_REG_FIFO_STATUS         0x00000404L
1162306a36Sopenharmony_ci#define GDC_REG_FIFO_COUNT          0x00000408L
1262306a36Sopenharmony_ci#define GDC_REG_SETUP_STATUS        0x0000040CL
1362306a36Sopenharmony_ci#define GDC_REG_DDA_STATUS          0x00000410L
1462306a36Sopenharmony_ci#define GDC_REG_ENGINE_STATUS       0x00000414L
1562306a36Sopenharmony_ci#define GDC_REG_ERROR_STATUS        0x00000418L
1662306a36Sopenharmony_ci#define GDC_REG_MODE_MISC           0x00000420L	/* MDR0 */
1762306a36Sopenharmony_ci#define GDC_REG_MODE_LINE           0x00000424L	/* MDR1 */
1862306a36Sopenharmony_ci#define GDC_REG_MODE_POLYGON        0x00000428L	/* MDR2 */
1962306a36Sopenharmony_ci#define GDC_REG_MODE_TEXTURE        0x0000042CL	/* MDR3 */
2062306a36Sopenharmony_ci#define GDC_REG_MODE_BITMAP         0x00000430L	/* MDR4 */
2162306a36Sopenharmony_ci#define GDC_REG_MODE_EXTENSION      0x0000043CL	/* MDR7 */
2262306a36Sopenharmony_ci
2362306a36Sopenharmony_ci/* Configuration Registers */
2462306a36Sopenharmony_ci#define GDC_REG_DRAW_BASE           0x00000440L
2562306a36Sopenharmony_ci#define GDC_REG_X_RESOLUTION        0x00000444L
2662306a36Sopenharmony_ci#define GDC_REG_Z_BASE              0x00000448L
2762306a36Sopenharmony_ci#define GDC_REG_TEXTURE_BASE        0x0000044CL
2862306a36Sopenharmony_ci#define GDC_REG_POLYGON_FLAG_BASE   0x00000450L
2962306a36Sopenharmony_ci#define GDC_REG_CLIP_XMIN           0x00000454L
3062306a36Sopenharmony_ci#define GDC_REG_CLIP_XMAX           0x00000458L
3162306a36Sopenharmony_ci#define GDC_REG_CLIP_YMIN           0x0000045CL
3262306a36Sopenharmony_ci#define GDC_REG_CLIP_YMAX           0x00000460L
3362306a36Sopenharmony_ci#define GDC_REG_TEXURE_SIZE         0x00000464L
3462306a36Sopenharmony_ci#define GDC_REG_TILE_SIZE           0x00000468L
3562306a36Sopenharmony_ci#define GDC_REG_TEX_BUF_OFFSET      0x0000046CL
3662306a36Sopenharmony_ci
3762306a36Sopenharmony_ci/* for MB86293 or later */
3862306a36Sopenharmony_ci#define GDC_REG_ALPHA_MAP_BASE      0x00000474L	/* ABR */
3962306a36Sopenharmony_ci
4062306a36Sopenharmony_ci/* Constant Registers */
4162306a36Sopenharmony_ci#define GDC_REG_FOREGROUND_COLOR    0x00000480L
4262306a36Sopenharmony_ci#define GDC_REG_BACKGROUND_COLOR    0x00000484L
4362306a36Sopenharmony_ci#define GDC_REG_ALPHA               0x00000488L
4462306a36Sopenharmony_ci#define GDC_REG_LINE_PATTERN        0x0000048CL
4562306a36Sopenharmony_ci#define GDC_REG_TEX_BORDER_COLOR    0x00000494L
4662306a36Sopenharmony_ci#define GDC_REG_LINE_PATTERN_OFFSET 0x000003E0L
4762306a36Sopenharmony_ci
4862306a36Sopenharmony_ci/* Coomand Code */
4962306a36Sopenharmony_ci#define GDC_CMD_PIXEL                   0x00000000L
5062306a36Sopenharmony_ci#define GDC_CMD_PIXEL_Z                 0x00000001L
5162306a36Sopenharmony_ci
5262306a36Sopenharmony_ci#define GDC_CMD_X_VECTOR                0x00000020L
5362306a36Sopenharmony_ci#define GDC_CMD_Y_VECTOR                0x00000021L
5462306a36Sopenharmony_ci#define GDC_CMD_X_VECTOR_NOEND          0x00000022L
5562306a36Sopenharmony_ci#define GDC_CMD_Y_VECTOR_NOEND          0x00000023L
5662306a36Sopenharmony_ci#define GDC_CMD_X_VECTOR_BLPO           0x00000024L
5762306a36Sopenharmony_ci#define GDC_CMD_Y_VECTOR_BLPO           0x00000025L
5862306a36Sopenharmony_ci#define GDC_CMD_X_VECTOR_NOEND_BLPO     0x00000026L
5962306a36Sopenharmony_ci#define GDC_CMD_Y_VECTOR_NOEND_BLPO     0x00000027L
6062306a36Sopenharmony_ci#define GDC_CMD_AA_X_VECTOR             0x00000028L
6162306a36Sopenharmony_ci#define GDC_CMD_AA_Y_VECTOR             0x00000029L
6262306a36Sopenharmony_ci#define GDC_CMD_AA_X_VECTOR_NOEND       0x0000002AL
6362306a36Sopenharmony_ci#define GDC_CMD_AA_Y_VECTOR_NOEND       0x0000002BL
6462306a36Sopenharmony_ci#define GDC_CMD_AA_X_VECTOR_BLPO        0x0000002CL
6562306a36Sopenharmony_ci#define GDC_CMD_AA_Y_VECTOR_BLPO        0x0000002DL
6662306a36Sopenharmony_ci#define GDC_CMD_AA_X_VECTOR_NOEND_BLPO  0x0000002EL
6762306a36Sopenharmony_ci#define GDC_CMD_AA_Y_VECTOR_NOEND_BLPO  0x0000002FL
6862306a36Sopenharmony_ci
6962306a36Sopenharmony_ci#define GDC_CMD_0_VECTOR                0x00000030L
7062306a36Sopenharmony_ci#define GDC_CMD_1_VECTOR                0x00000031L
7162306a36Sopenharmony_ci#define GDC_CMD_0_VECTOR_NOEND          0x00000032L
7262306a36Sopenharmony_ci#define GDC_CMD_1_VECTOR_NOEND          0x00000033L
7362306a36Sopenharmony_ci#define GDC_CMD_0_VECTOR_BLPO           0x00000034L
7462306a36Sopenharmony_ci#define GDC_CMD_1_VECTOR_BLPO           0x00000035L
7562306a36Sopenharmony_ci#define GDC_CMD_0_VECTOR_NOEND_BLPO     0x00000036L
7662306a36Sopenharmony_ci#define GDC_CMD_1_VECTOR_NOEND_BLPO     0x00000037L
7762306a36Sopenharmony_ci#define GDC_CMD_AA_0_VECTOR             0x00000038L
7862306a36Sopenharmony_ci#define GDC_CMD_AA_1_VECTOR             0x00000039L
7962306a36Sopenharmony_ci#define GDC_CMD_AA_0_VECTOR_NOEND       0x0000003AL
8062306a36Sopenharmony_ci#define GDC_CMD_AA_1_VECTOR_NOEND       0x0000003BL
8162306a36Sopenharmony_ci#define GDC_CMD_AA_0_VECTOR_BLPO        0x0000003CL
8262306a36Sopenharmony_ci#define GDC_CMD_AA_1_VECTOR_BLPO        0x0000003DL
8362306a36Sopenharmony_ci#define GDC_CMD_AA_0_VECTOR_NOEND_BLPO  0x0000003EL
8462306a36Sopenharmony_ci#define GDC_CMD_AA_1_VECTOR_NOEND_BLPO  0x0000003FL
8562306a36Sopenharmony_ci
8662306a36Sopenharmony_ci#define GDC_CMD_BLT_FILL                0x00000041L
8762306a36Sopenharmony_ci#define GDC_CMD_BLT_DRAW                0x00000042L
8862306a36Sopenharmony_ci#define GDC_CMD_BITMAP                  0x00000043L
8962306a36Sopenharmony_ci#define GDC_CMD_BLTCOPY_TOP_LEFT        0x00000044L
9062306a36Sopenharmony_ci#define GDC_CMD_BLTCOPY_TOP_RIGHT       0x00000045L
9162306a36Sopenharmony_ci#define GDC_CMD_BLTCOPY_BOTTOM_LEFT     0x00000046L
9262306a36Sopenharmony_ci#define GDC_CMD_BLTCOPY_BOTTOM_RIGHT    0x00000047L
9362306a36Sopenharmony_ci#define GDC_CMD_LOAD_TEXTURE            0x00000048L
9462306a36Sopenharmony_ci#define GDC_CMD_LOAD_TILE               0x00000049L
9562306a36Sopenharmony_ci
9662306a36Sopenharmony_ci#define GDC_CMD_TRAP_RIGHT              0x00000060L
9762306a36Sopenharmony_ci#define GDC_CMD_TRAP_LEFT               0x00000061L
9862306a36Sopenharmony_ci#define GDC_CMD_TRIANGLE_FAN            0x00000062L
9962306a36Sopenharmony_ci#define GDC_CMD_FLAG_TRIANGLE_FAN       0x00000063L
10062306a36Sopenharmony_ci
10162306a36Sopenharmony_ci#define GDC_CMD_FLUSH_FB                0x000000C1L
10262306a36Sopenharmony_ci#define GDC_CMD_FLUSH_Z                 0x000000C2L
10362306a36Sopenharmony_ci
10462306a36Sopenharmony_ci#define GDC_CMD_POLYGON_BEGIN           0x000000E0L
10562306a36Sopenharmony_ci#define GDC_CMD_POLYGON_END             0x000000E1L
10662306a36Sopenharmony_ci#define GDC_CMD_CLEAR_POLY_FLAG         0x000000E2L
10762306a36Sopenharmony_ci#define GDC_CMD_NORMAL                  0x000000FFL
10862306a36Sopenharmony_ci
10962306a36Sopenharmony_ci#define GDC_CMD_VECTOR_BLPO_FLAG        0x00040000L
11062306a36Sopenharmony_ci#define GDC_CMD_FAST_VECTOR_BLPO_FLAG   0x00000004L
11162306a36Sopenharmony_ci
11262306a36Sopenharmony_ci/* for MB86293 or later */
11362306a36Sopenharmony_ci#define GDC_CMD_MDR1                            0x00000000L
11462306a36Sopenharmony_ci#define GDC_CMD_MDR1S                           0x00000002L
11562306a36Sopenharmony_ci#define GDC_CMD_MDR1B                           0x00000004L
11662306a36Sopenharmony_ci#define GDC_CMD_MDR2                            0x00000001L
11762306a36Sopenharmony_ci#define GDC_CMD_MDR2S                           0x00000003L
11862306a36Sopenharmony_ci#define GDC_CMD_MDR2TL                          0x00000007L
11962306a36Sopenharmony_ci#define GDC_CMD_GMDR1E                          0x00000010L
12062306a36Sopenharmony_ci#define GDC_CMD_GMDR2E                          0x00000020L
12162306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_SHADOW_XY               0x00000000L
12262306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_SHADOW_XY_COMPOSITION   0x00000001L
12362306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_Z_PACKED_ONBS           0x00000007L
12462306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_Z_ORIGIN                0x00000000L
12562306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_Z_NON_TOPLEFT           0x00000001L
12662306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_Z_BORDER                0x00000002L
12762306a36Sopenharmony_ci#define GDC_CMD_OVERLAP_Z_SHADOW                0x00000003L
12862306a36Sopenharmony_ci#define GDC_CMD_BLTCOPY_ALT_ALPHA               0x00000000L	/* Reserverd */
12962306a36Sopenharmony_ci#define GDC_CMD_DC_LOGOUT                       0x00000000L	/* Reserverd */
13062306a36Sopenharmony_ci#define GDC_CMD_BODY_FORE_COLOR                 0x00000000L
13162306a36Sopenharmony_ci#define GDC_CMD_BODY_BACK_COLOR                 0x00000001L
13262306a36Sopenharmony_ci#define GDC_CMD_SHADOW_FORE_COLOR               0x00000002L
13362306a36Sopenharmony_ci#define GDC_CMD_SHADOW_BACK_COLOR               0x00000003L
13462306a36Sopenharmony_ci#define GDC_CMD_BORDER_FORE_COLOR               0x00000004L
13562306a36Sopenharmony_ci#define GDC_CMD_BORDER_BACK_COLOR               0x00000005L
13662306a36Sopenharmony_ci
13762306a36Sopenharmony_ci/* Type Code Table */
13862306a36Sopenharmony_ci#define GDC_TYPE_G_NOP                                  0x00000020L
13962306a36Sopenharmony_ci#define GDC_TYPE_G_BEGIN                                0x00000021L
14062306a36Sopenharmony_ci#define GDC_TYPE_G_BEGINCONT                            0x00000022L
14162306a36Sopenharmony_ci#define GDC_TYPE_G_END                                  0x00000023L
14262306a36Sopenharmony_ci#define GDC_TYPE_G_VERTEX                               0x00000030L
14362306a36Sopenharmony_ci#define GDC_TYPE_G_VERTEXLOG                            0x00000032L
14462306a36Sopenharmony_ci#define GDC_TYPE_G_VERTEXNOPLOG                         0x00000033L
14562306a36Sopenharmony_ci#define GDC_TYPE_G_INIT                                 0x00000040L
14662306a36Sopenharmony_ci#define GDC_TYPE_G_VIEWPORT                             0x00000041L
14762306a36Sopenharmony_ci#define GDC_TYPE_G_DEPTHRANGE                           0x00000042L
14862306a36Sopenharmony_ci#define GDC_TYPE_G_LOADMATRIX                           0x00000043L
14962306a36Sopenharmony_ci#define GDC_TYPE_G_VIEWVOLUMEXYCLIP                     0x00000044L
15062306a36Sopenharmony_ci#define GDC_TYPE_G_VIEWVOLUMEZCLIP                      0x00000045L
15162306a36Sopenharmony_ci#define GDC_TYPE_G_VIEWVOLUMEWCLIP                      0x00000046L
15262306a36Sopenharmony_ci#define GDC_TYPE_SETLVERTEX2I                           0x00000072L
15362306a36Sopenharmony_ci#define GDC_TYPE_SETLVERTEX2IP                          0x00000073L
15462306a36Sopenharmony_ci#define GDC_TYPE_SETMODEREGISTER                        0x000000C0L
15562306a36Sopenharmony_ci#define GDC_TYPE_SETGMODEREGISTER                       0x000000C1L
15662306a36Sopenharmony_ci#define GDC_TYPE_OVERLAPXYOFFT                          0x000000C8L
15762306a36Sopenharmony_ci#define GDC_TYPE_OVERLAPZOFFT                           0x000000C9L
15862306a36Sopenharmony_ci#define GDC_TYPE_DC_LOGOUTADDR                          0x000000CCL
15962306a36Sopenharmony_ci#define GDC_TYPE_SETCOLORREGISTER                       0x000000CEL
16062306a36Sopenharmony_ci#define GDC_TYPE_G_BEGINE                               0x000000E1L
16162306a36Sopenharmony_ci#define GDC_TYPE_G_BEGINCONTE                           0x000000E2L
16262306a36Sopenharmony_ci#define GDC_TYPE_G_ENDE                                 0x000000E3L
16362306a36Sopenharmony_ci#define GDC_TYPE_DRAWPIXEL                              0x00000000L
16462306a36Sopenharmony_ci#define GDC_TYPE_DRAWPIXELZ                             0x00000001L
16562306a36Sopenharmony_ci#define GDC_TYPE_DRAWLINE                               0x00000002L
16662306a36Sopenharmony_ci#define GDC_TYPE_DRAWLINE2I                             0x00000003L
16762306a36Sopenharmony_ci#define GDC_TYPE_DRAWLINE2IP                            0x00000004L
16862306a36Sopenharmony_ci#define GDC_TYPE_DRAWTRAP                               0x00000005L
16962306a36Sopenharmony_ci#define GDC_TYPE_DRAWVERTEX2I                           0x00000006L
17062306a36Sopenharmony_ci#define GDC_TYPE_DRAWVERTEX2IP                          0x00000007L
17162306a36Sopenharmony_ci#define GDC_TYPE_DRAWRECTP                              0x00000009L
17262306a36Sopenharmony_ci#define GDC_TYPE_DRAWBITMAPP                            0x0000000BL
17362306a36Sopenharmony_ci#define GDC_TYPE_BLTCOPYP                               0x0000000DL
17462306a36Sopenharmony_ci#define GDC_TYPE_BLTCOPYALTERNATEP                      0x0000000FL
17562306a36Sopenharmony_ci#define GDC_TYPE_LOADTEXTUREP                           0x00000011L
17662306a36Sopenharmony_ci#define GDC_TYPE_BLTTEXTUREP                            0x00000013L
17762306a36Sopenharmony_ci#define GDC_TYPE_BLTCOPYALTALPHABLENDP                  0x0000001FL
17862306a36Sopenharmony_ci#define GDC_TYPE_SETVERTEX2I                            0x00000070L
17962306a36Sopenharmony_ci#define GDC_TYPE_SETVERTEX2IP                           0x00000071L
18062306a36Sopenharmony_ci#define GDC_TYPE_DRAW                                   0x000000F0L
18162306a36Sopenharmony_ci#define GDC_TYPE_SETREGISTER                            0x000000F1L
18262306a36Sopenharmony_ci#define GDC_TYPE_SYNC                                   0x000000FCL
18362306a36Sopenharmony_ci#define GDC_TYPE_INTERRUPT                              0x000000FDL
18462306a36Sopenharmony_ci#define GDC_TYPE_NOP                                    0x0
18562306a36Sopenharmony_ci
18662306a36Sopenharmony_ci/* Raster operation */
18762306a36Sopenharmony_ci#define GDC_ROP_CLEAR                   0x0000
18862306a36Sopenharmony_ci#define GDC_ROP_AND                     0x0001
18962306a36Sopenharmony_ci#define GDC_ROP_AND_REVERSE             0x0002
19062306a36Sopenharmony_ci#define GDC_ROP_COPY                    0x0003
19162306a36Sopenharmony_ci#define GDC_ROP_AND_INVERTED            0x0004
19262306a36Sopenharmony_ci#define GDC_ROP_NOP                     0x0005
19362306a36Sopenharmony_ci#define GDC_ROP_XOR                     0x0006
19462306a36Sopenharmony_ci#define GDC_ROP_OR                      0x0007
19562306a36Sopenharmony_ci#define GDC_ROP_NOR                     0x0008
19662306a36Sopenharmony_ci#define GDC_ROP_EQUIV                   0x0009
19762306a36Sopenharmony_ci#define GDC_ROP_INVERT                  0x000A
19862306a36Sopenharmony_ci#define GDC_ROP_OR_REVERSE              0x000B
19962306a36Sopenharmony_ci#define GDC_ROP_COPY_INVERTED           0x000C
20062306a36Sopenharmony_ci#define GDC_ROP_OR_INVERTED             0x000D
20162306a36Sopenharmony_ci#define GDC_ROP_NAND                    0x000E
20262306a36Sopenharmony_ci#define GDC_ROP_SET                     0x000F
20362306a36Sopenharmony_ci
20462306a36Sopenharmony_ci#endif
205