case CHIP_POLARIS12: chip_string = "AMD RADV POLARIS12"; break;
case CHIP_STONEY: chip_string = "AMD RADV STONEY"; 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;
default: chip_string = "AMD RADV unknown"; break;
}
if (device->rad_info.family == CHIP_STONEY ||
device->rad_info.chip_class >= GFX9) {
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
case CHIP_POLARIS11:
case CHIP_POLARIS12:
case CHIP_VEGA10:
+ case CHIP_VEGA12:
case CHIP_RAVEN:
device->gs_table_depth = 32;
return;