mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 12:40:23 +01:00
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:
parent
6400144041
commit
bd85e4a041
1 changed files with 4 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue