radv: add support for Vega12
Based on RadeonSI. Untested. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
@@ -101,6 +101,7 @@ radv_get_device_name(enum radeon_family family, char *name, size_t name_len)
|
|||||||
case CHIP_POLARIS12: chip_string = "AMD RADV POLARIS12"; break;
|
case CHIP_POLARIS12: chip_string = "AMD RADV POLARIS12"; break;
|
||||||
case CHIP_STONEY: chip_string = "AMD RADV STONEY"; break;
|
case CHIP_STONEY: chip_string = "AMD RADV STONEY"; break;
|
||||||
case CHIP_VEGA10: chip_string = "AMD RADV VEGA"; break;
|
case CHIP_VEGA10: chip_string = "AMD RADV VEGA"; break;
|
||||||
|
case CHIP_VEGA12: chip_string = "AMD RADV VEGA12"; break;
|
||||||
case CHIP_RAVEN: chip_string = "AMD RADV RAVEN"; break;
|
case CHIP_RAVEN: chip_string = "AMD RADV RAVEN"; break;
|
||||||
default: chip_string = "AMD RADV unknown"; break;
|
default: chip_string = "AMD RADV unknown"; break;
|
||||||
}
|
}
|
||||||
@@ -290,7 +291,8 @@ radv_physical_device_init(struct radv_physical_device *device,
|
|||||||
if (device->rad_info.family == CHIP_STONEY ||
|
if (device->rad_info.family == CHIP_STONEY ||
|
||||||
device->rad_info.chip_class >= GFX9) {
|
device->rad_info.chip_class >= GFX9) {
|
||||||
device->has_rbplus = true;
|
device->has_rbplus = true;
|
||||||
device->rbplus_allowed = device->rad_info.family == CHIP_STONEY;
|
device->rbplus_allowed = device->rad_info.family == CHIP_STONEY ||
|
||||||
|
device->rad_info.family == CHIP_VEGA12;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The mere presense of CLEAR_STATE in the IB causes random GPU hangs
|
/* The mere presense of CLEAR_STATE in the IB causes random GPU hangs
|
||||||
@@ -1174,6 +1176,7 @@ radv_device_init_gs_info(struct radv_device *device)
|
|||||||
case CHIP_POLARIS11:
|
case CHIP_POLARIS11:
|
||||||
case CHIP_POLARIS12:
|
case CHIP_POLARIS12:
|
||||||
case CHIP_VEGA10:
|
case CHIP_VEGA10:
|
||||||
|
case CHIP_VEGA12:
|
||||||
case CHIP_RAVEN:
|
case CHIP_RAVEN:
|
||||||
device->gs_table_depth = 32;
|
device->gs_table_depth = 32;
|
||||||
return;
|
return;
|
||||||
|
@@ -2155,6 +2155,7 @@ radv_pipeline_generate_binning_state(struct radeon_winsys_cs *cs,
|
|||||||
|
|
||||||
switch (pipeline->device->physical_device->rad_info.family) {
|
switch (pipeline->device->physical_device->rad_info.family) {
|
||||||
case CHIP_VEGA10:
|
case CHIP_VEGA10:
|
||||||
|
case CHIP_VEGA12:
|
||||||
context_states_per_bin = 1;
|
context_states_per_bin = 1;
|
||||||
persistent_states_per_bin = 1;
|
persistent_states_per_bin = 1;
|
||||||
fpovs_per_batch = 63;
|
fpovs_per_batch = 63;
|
||||||
|
@@ -509,6 +509,7 @@ si_emit_config(struct radv_physical_device *physical_device,
|
|||||||
|
|
||||||
switch (physical_device->rad_info.family) {
|
switch (physical_device->rad_info.family) {
|
||||||
case CHIP_VEGA10:
|
case CHIP_VEGA10:
|
||||||
|
case CHIP_VEGA12:
|
||||||
pc_lines = 4096;
|
pc_lines = 4096;
|
||||||
break;
|
break;
|
||||||
case CHIP_RAVEN:
|
case CHIP_RAVEN:
|
||||||
|
Reference in New Issue
Block a user