diff options
author | 2022-03-22 16:25:29 +0800 | |
---|---|---|
committer | 2022-03-25 12:40:25 -0400 | |
commit | 0dc386add50b07e1cf9341b4e6e4fea77295c98a (patch) | |
tree | 2b129b751dee0467400bcad219736d5d7e01f7df | |
parent | drm/amdgpu: set noretry=1 for GFX 10.3.4 (diff) | |
download | linux-rng-0dc386add50b07e1cf9341b4e6e4fea77295c98a.tar.xz linux-rng-0dc386add50b07e1cf9341b4e6e4fea77295c98a.zip |
drm/amdgpu: set noretry for gfx 10.3.7
Disable xnack on the gfx10.3.7 for the KFD test.
Signed-off-by: Prike Liang <Prike.Liang@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c index e1635a3f2553..a66a0881a934 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c @@ -569,6 +569,7 @@ void amdgpu_gmc_noretry_set(struct amdgpu_device *adev) case IP_VERSION(10, 3, 4): case IP_VERSION(10, 3, 5): case IP_VERSION(10, 3, 6): + case IP_VERSION(10, 3, 7): /* * noretry = 0 will cause kfd page fault tests fail * for some ASICs, so set default to 1 for these ASICs. |