diff options
author | Tom St Denis <tom.stdenis@amd.com> | 2016-11-14 13:55:17 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-11-23 15:08:42 -0500 |
commit | b00861b98b4eed49460abc444f5455cfe52c40ea (patch) | |
tree | b59f47a79a78e7e3e16207e4e7cc2fb3352f4416 /drivers/gpu/drm/amd/amdgpu/si_enums.h | |
parent | 99e3820a6b4c13047a8f1829c4c682bb5b11acd7 (diff) |
drm/amd/amdgpu: port of DCE v6 to new headers (v3)
Port of SI DCE v6 over to new AMDGPU headers. Tested on a
Tahiti with GNOME through various hot plugs/rotations/sizes/fullscreen/windowed and
staging drm/xf86-video-amdgpu.
(v2) Re-factored to remove formatting changes to si_enums.h
as well rename various defines.
(v3) Rebase on upstream
Signed-off-by: Tom St Denis <tom.stdenis@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/si_enums.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/si_enums.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/si_enums.h b/drivers/gpu/drm/amd/amdgpu/si_enums.h index 3ecd36f30e2a..fde2086246fa 100644 --- a/drivers/gpu/drm/amd/amdgpu/si_enums.h +++ b/drivers/gpu/drm/amd/amdgpu/si_enums.h | |||
@@ -23,6 +23,84 @@ | |||
23 | #ifndef SI_ENUMS_H | 23 | #ifndef SI_ENUMS_H |
24 | #define SI_ENUMS_H | 24 | #define SI_ENUMS_H |
25 | 25 | ||
26 | #define VBLANK_INT_MASK (1 << 0) | ||
27 | #define DC_HPDx_INT_EN (1 << 16) | ||
28 | #define VBLANK_ACK (1 << 4) | ||
29 | #define VLINE_ACK (1 << 4) | ||
30 | |||
31 | #define CURSOR_WIDTH 64 | ||
32 | #define CURSOR_HEIGHT 64 | ||
33 | |||
34 | #define VGA_VSTATUS_CNTL 0xFFFCFFFF | ||
35 | #define PRIORITY_MARK_MASK 0x7fff | ||
36 | #define PRIORITY_OFF (1 << 16) | ||
37 | #define PRIORITY_ALWAYS_ON (1 << 20) | ||
38 | #define INTERLEAVE_EN (1 << 0) | ||
39 | |||
40 | #define LATENCY_WATERMARK_MASK(x) ((x) << 16) | ||
41 | #define DC_LB_MEMORY_CONFIG(x) ((x) << 20) | ||
42 | #define ICON_DEGAMMA_MODE(x) (((x) & 0x3) << 8) | ||
43 | |||
44 | #define GRPH_ENDIAN_SWAP(x) (((x) & 0x3) << 0) | ||
45 | #define GRPH_ENDIAN_NONE 0 | ||
46 | #define GRPH_ENDIAN_8IN16 1 | ||
47 | #define GRPH_ENDIAN_8IN32 2 | ||
48 | #define GRPH_ENDIAN_8IN64 3 | ||
49 | |||
50 | #define GRPH_DEPTH(x) (((x) & 0x3) << 0) | ||
51 | #define GRPH_DEPTH_8BPP 0 | ||
52 | #define GRPH_DEPTH_16BPP 1 | ||
53 | #define GRPH_DEPTH_32BPP 2 | ||
54 | |||
55 | #define GRPH_FORMAT(x) (((x) & 0x7) << 8) | ||
56 | #define GRPH_FORMAT_INDEXED 0 | ||
57 | #define GRPH_FORMAT_ARGB1555 0 | ||
58 | #define GRPH_FORMAT_ARGB565 1 | ||
59 | #define GRPH_FORMAT_ARGB4444 2 | ||
60 | #define GRPH_FORMAT_AI88 3 | ||
61 | #define GRPH_FORMAT_MONO16 4 | ||
62 | #define GRPH_FORMAT_BGRA5551 5 | ||
63 | #define GRPH_FORMAT_ARGB8888 0 | ||
64 | #define GRPH_FORMAT_ARGB2101010 1 | ||
65 | #define GRPH_FORMAT_32BPP_DIG 2 | ||
66 | #define GRPH_FORMAT_8B_ARGB2101010 3 | ||
67 | #define GRPH_FORMAT_BGRA1010102 4 | ||
68 | #define GRPH_FORMAT_8B_BGRA1010102 5 | ||
69 | #define GRPH_FORMAT_RGB111110 6 | ||
70 | #define GRPH_FORMAT_BGR101111 7 | ||
71 | |||
72 | #define GRPH_NUM_BANKS(x) (((x) & 0x3) << 2) | ||
73 | #define GRPH_ARRAY_MODE(x) (((x) & 0x7) << 20) | ||
74 | #define GRPH_ARRAY_LINEAR_GENERAL 0 | ||
75 | #define GRPH_ARRAY_LINEAR_ALIGNED 1 | ||
76 | #define GRPH_ARRAY_1D_TILED_THIN1 2 | ||
77 | #define GRPH_ARRAY_2D_TILED_THIN1 4 | ||
78 | #define GRPH_TILE_SPLIT(x) (((x) & 0x7) << 13) | ||
79 | #define GRPH_BANK_WIDTH(x) (((x) & 0x3) << 6) | ||
80 | #define GRPH_BANK_HEIGHT(x) (((x) & 0x3) << 11) | ||
81 | #define GRPH_MACRO_TILE_ASPECT(x) (((x) & 0x3) << 18) | ||
82 | #define GRPH_ARRAY_MODE(x) (((x) & 0x7) << 20) | ||
83 | #define GRPH_PIPE_CONFIG(x) (((x) & 0x1f) << 24) | ||
84 | |||
85 | #define CURSOR_EN (1 << 0) | ||
86 | #define CURSOR_MODE(x) (((x) & 0x3) << 8) | ||
87 | #define CURSOR_MONO 0 | ||
88 | #define CURSOR_24_1 1 | ||
89 | #define CURSOR_24_8_PRE_MULT 2 | ||
90 | #define CURSOR_24_8_UNPRE_MULT 3 | ||
91 | #define CURSOR_2X_MAGNIFY (1 << 16) | ||
92 | #define CURSOR_FORCE_MC_ON (1 << 20) | ||
93 | #define CURSOR_URGENT_CONTROL(x) (((x) & 0x7) << 24) | ||
94 | #define CURSOR_URGENT_ALWAYS 0 | ||
95 | #define CURSOR_URGENT_1_8 1 | ||
96 | #define CURSOR_URGENT_1_4 2 | ||
97 | #define CURSOR_URGENT_3_8 3 | ||
98 | #define CURSOR_URGENT_1_2 4 | ||
99 | #define CURSOR_UPDATE_PENDING (1 << 0) | ||
100 | #define CURSOR_UPDATE_TAKEN (1 << 1) | ||
101 | #define CURSOR_UPDATE_LOCK (1 << 16) | ||
102 | #define CURSOR_DISABLE_MULTIPLE_UPDATE (1 << 24) | ||
103 | |||
26 | #define AMDGPU_NUM_OF_VMIDS 8 | 104 | #define AMDGPU_NUM_OF_VMIDS 8 |
27 | #define SI_CRTC0_REGISTER_OFFSET 0 | 105 | #define SI_CRTC0_REGISTER_OFFSET 0 |
28 | #define SI_CRTC1_REGISTER_OFFSET 0x300 | 106 | #define SI_CRTC1_REGISTER_OFFSET 0x300 |