mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
radv: do not emit non-existent CP_COHER_START_DELAY on GFX11
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Timur Kristóf <timur.kristof@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16419>
This commit is contained in:
parent
dcb324eb53
commit
2e3aec1633
1 changed files with 2 additions and 1 deletions
|
|
@ -105,7 +105,8 @@ si_emit_compute(struct radv_device *device, struct radeon_cmdbuf *cs)
|
|||
}
|
||||
}
|
||||
|
||||
if (device->physical_device->rad_info.gfx_level >= GFX9) {
|
||||
if (device->physical_device->rad_info.gfx_level >= GFX9 &&
|
||||
device->physical_device->rad_info.gfx_level < GFX11) {
|
||||
radeon_set_uconfig_reg(cs, R_0301EC_CP_COHER_START_DELAY,
|
||||
device->physical_device->rad_info.gfx_level >= GFX10 ? 0x20 : 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue