radeonsi: fix the raster config setup for 1 RB iceland chips
I didn't realize there were 1 and 2 RB variants when this code was originally added. Reviewed-by: Marek Olšák <marek.olsak@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: 11.1 11.2 12.0 <mesa-stable@lists.freedesktop.org>
This commit is contained in:
@@ -3712,7 +3712,10 @@ static void si_init_config(struct si_context *sctx)
|
||||
raster_config_1 = 0x0000002a;
|
||||
break;
|
||||
case CHIP_ICELAND:
|
||||
raster_config = 0x00000002;
|
||||
if (num_rb == 1)
|
||||
raster_config = 0x00000000;
|
||||
else
|
||||
raster_config = 0x00000002;
|
||||
raster_config_1 = 0x00000000;
|
||||
break;
|
||||
case CHIP_CARRIZO:
|
||||
|
||||
Reference in New Issue
Block a user