mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
radv/gfx10: disable LATE_ALLOC_GS on Navi14
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
e041a74588
commit
bb8f25233a
1 changed files with 8 additions and 1 deletions
|
|
@ -311,6 +311,7 @@ si_emit_graphics(struct radv_physical_device *physical_device,
|
|||
late_alloc_limit = (num_cu_per_sh - 2) * 4;
|
||||
}
|
||||
|
||||
unsigned late_alloc_limit_gs = late_alloc_limit;
|
||||
unsigned cu_mask_vs = 0xffff;
|
||||
unsigned cu_mask_gs = 0xffff;
|
||||
|
||||
|
|
@ -324,6 +325,12 @@ si_emit_graphics(struct radv_physical_device *physical_device,
|
|||
}
|
||||
}
|
||||
|
||||
/* Don't use late alloc for NGG on Navi14 due to a hw bug. */
|
||||
if (physical_device->rad_info.family == CHIP_NAVI14) {
|
||||
late_alloc_limit_gs = 0;
|
||||
cu_mask_gs = 0xffff;
|
||||
}
|
||||
|
||||
radeon_set_sh_reg_idx(physical_device, cs, R_00B118_SPI_SHADER_PGM_RSRC3_VS,
|
||||
3, S_00B118_CU_EN(cu_mask_vs) |
|
||||
S_00B118_WAVE_LIMIT(0x3F));
|
||||
|
|
@ -336,7 +343,7 @@ si_emit_graphics(struct radv_physical_device *physical_device,
|
|||
if (physical_device->rad_info.chip_class >= GFX10) {
|
||||
radeon_set_sh_reg_idx(physical_device, cs, R_00B204_SPI_SHADER_PGM_RSRC4_GS,
|
||||
3, S_00B204_CU_EN(0xffff) |
|
||||
S_00B204_SPI_SHADER_LATE_ALLOC_GS_GFX10(late_alloc_limit));
|
||||
S_00B204_SPI_SHADER_LATE_ALLOC_GS_GFX10(late_alloc_limit_gs));
|
||||
}
|
||||
|
||||
radeon_set_sh_reg_idx(physical_device, cs, R_00B01C_SPI_SHADER_PGM_RSRC3_PS,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue