radeonsi: properly handler raster_config setup on CZ

Need to take into account the number of RBs.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Alex Deucher 2015-06-10 11:43:24 -04:00 committed by Marek Olšák
parent 649975e716
commit f0e24a7bea
1 changed files with 1 additions and 1 deletions

View File

@ -3190,10 +3190,10 @@ static void si_init_config(struct si_context *sctx)
si_pm4_set_reg(pm4, R_028354_PA_SC_RASTER_CONFIG_1, 0x0000002a);
break;
case CHIP_ICELAND:
case CHIP_CARRIZO:
si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG, 0x00000002);
si_pm4_set_reg(pm4, R_028354_PA_SC_RASTER_CONFIG_1, 0x00000000);
break;
case CHIP_CARRIZO:
case CHIP_KAVERI:
if (num_rb > 1)
si_pm4_set_reg(pm4, R_028350_PA_SC_RASTER_CONFIG, 0x00000002);