diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2024-07-12 18:21:48 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-07-23 17:42:11 -0400 |
commit | 9c7e69d2e1245fdd5fa5c65cd022530b2a5ef1b7 (patch) | |
tree | 01286b91b963f6a40d80aa95f17d71e5fa056bc7 /drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | |
parent | 7e60ecc2b70adb41b92752cbcd749040e00b57b8 (diff) | |
download | linux-9c7e69d2e1245fdd5fa5c65cd022530b2a5ef1b7.tar.gz linux-9c7e69d2e1245fdd5fa5c65cd022530b2a5ef1b7.tar.bz2 linux-9c7e69d2e1245fdd5fa5c65cd022530b2a5ef1b7.zip |
drm/amdgpu/gfx9: enable wave kill for compute queues
It should work the same for compute as well as gfx.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c index 2929c8972ea7..d4e38edc9353 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -7244,6 +7244,7 @@ static const struct amdgpu_ring_funcs gfx_v9_0_ring_funcs_compute = { .emit_wreg = gfx_v9_0_ring_emit_wreg, .emit_reg_wait = gfx_v9_0_ring_emit_reg_wait, .emit_reg_write_reg_wait = gfx_v9_0_ring_emit_reg_write_reg_wait, + .soft_recovery = gfx_v9_0_ring_soft_recovery, .emit_mem_sync = gfx_v9_0_emit_mem_sync, .emit_wave_limit = gfx_v9_0_emit_wave_limit, }; |