drm/amdgpu: implement raster configuration for gfx v6
This patch is to implement the raster configuration and harvested configuration of gfx v6. Signed-off-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Acked-by: Edward O'Callaghan <funfunctor@folklore1984.net> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -1398,10 +1398,45 @@
|
||||
#define DB_DEPTH_INFO 0xA00F
|
||||
|
||||
#define PA_SC_RASTER_CONFIG 0xA0D4
|
||||
# define RB_MAP_PKR0(x) ((x) << 0)
|
||||
# define RB_MAP_PKR0_MASK (0x3 << 0)
|
||||
# define RB_MAP_PKR1(x) ((x) << 2)
|
||||
# define RB_MAP_PKR1_MASK (0x3 << 2)
|
||||
# define RASTER_CONFIG_RB_MAP_0 0
|
||||
# define RASTER_CONFIG_RB_MAP_1 1
|
||||
# define RASTER_CONFIG_RB_MAP_2 2
|
||||
# define RASTER_CONFIG_RB_MAP_3 3
|
||||
# define RB_XSEL2(x) ((x) << 4)
|
||||
# define RB_XSEL2_MASK (0x3 << 4)
|
||||
# define RB_XSEL (1 << 6)
|
||||
# define RB_YSEL (1 << 7)
|
||||
# define PKR_MAP(x) ((x) << 8)
|
||||
# define PKR_MAP_MASK (0x3 << 8)
|
||||
# define RASTER_CONFIG_PKR_MAP_0 0
|
||||
# define RASTER_CONFIG_PKR_MAP_1 1
|
||||
# define RASTER_CONFIG_PKR_MAP_2 2
|
||||
# define RASTER_CONFIG_PKR_MAP_3 3
|
||||
# define PKR_XSEL(x) ((x) << 10)
|
||||
# define PKR_XSEL_MASK (0x3 << 10)
|
||||
# define PKR_YSEL(x) ((x) << 12)
|
||||
# define PKR_YSEL_MASK (0x3 << 12)
|
||||
# define SC_MAP(x) ((x) << 16)
|
||||
# define SC_MAP_MASK (0x3 << 16)
|
||||
# define SC_XSEL(x) ((x) << 18)
|
||||
# define SC_XSEL_MASK (0x3 << 18)
|
||||
# define SC_YSEL(x) ((x) << 20)
|
||||
# define SC_YSEL_MASK (0x3 << 20)
|
||||
# define SE_MAP(x) ((x) << 24)
|
||||
# define SE_MAP_MASK (0x3 << 24)
|
||||
# define RASTER_CONFIG_SE_MAP_0 0
|
||||
# define RASTER_CONFIG_SE_MAP_1 1
|
||||
# define RASTER_CONFIG_SE_MAP_2 2
|
||||
# define RASTER_CONFIG_SE_MAP_3 3
|
||||
# define SE_XSEL(x) ((x) << 26)
|
||||
# define SE_XSEL_MASK (0x3 << 26)
|
||||
# define SE_YSEL(x) ((x) << 28)
|
||||
# define SE_YSEL_MASK (0x3 << 28)
|
||||
|
||||
|
||||
#define VGT_EVENT_INITIATOR 0xA2A4
|
||||
# define SAMPLE_STREAMOUTSTATS1 (1 << 0)
|
||||
|
Reference in New Issue
Block a user