mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 17:50:12 +01:00
radv: configure SQ_THREAD_TRACE_CTRL.REG_AT_HWM on GFX11
AMDVLK sets this to 2 when the always stall mode is enabled, which is the default in RADV. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20338>
This commit is contained in:
parent
8bc78e8eb9
commit
ad4ad2ba84
1 changed files with 2 additions and 1 deletions
|
|
@ -47,7 +47,8 @@ gfx11_get_thread_trace_ctrl(struct radv_device *device, bool enable)
|
||||||
{
|
{
|
||||||
return S_0367B0_MODE(enable) | S_0367B0_HIWATER(5) | S_0367B0_UTIL_TIMER(1) |
|
return S_0367B0_MODE(enable) | S_0367B0_HIWATER(5) | S_0367B0_UTIL_TIMER(1) |
|
||||||
S_0367B0_RT_FREQ(2) | /* 4096 clk */
|
S_0367B0_RT_FREQ(2) | /* 4096 clk */
|
||||||
S_0367B0_DRAW_EVENT_EN(1) | S_0367B0_SPI_STALL_EN(1) | S_0367B0_SQ_STALL_EN(1);
|
S_0367B0_DRAW_EVENT_EN(1) | S_0367B0_SPI_STALL_EN(1) | S_0367B0_SQ_STALL_EN(1) |
|
||||||
|
S_0367B0_REG_AT_HWM(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t
|
static uint32_t
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue