Skip to content

Commit

Permalink
drm/amdgpu: set noretry=1 for GFX 10.3.4
Browse files Browse the repository at this point in the history
Retry faults are not supported on GFX 10.3.4.

Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
Reviewed-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Felix Kuehling authored and Alex Deucher committed Mar 25, 2022
1 parent 7057c81 commit 609910d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
Original file line number Diff line number Diff line change
@@ -561,12 +561,13 @@ void amdgpu_gmc_noretry_set(struct amdgpu_device *adev)

switch (adev->ip_versions[GC_HWIP][0]) {
case IP_VERSION(9, 0, 1):
case IP_VERSION(9, 3, 0):
case IP_VERSION(9, 4, 0):
case IP_VERSION(9, 4, 1):
case IP_VERSION(9, 4, 2):
case IP_VERSION(10, 3, 5):
case IP_VERSION(10, 3, 3):
case IP_VERSION(9, 3, 0):
case IP_VERSION(10, 3, 4):
case IP_VERSION(10, 3, 5):
case IP_VERSION(10, 3, 6):
/*
* noretry = 0 will cause kfd page fault tests fail

0 comments on commit 609910d

Please sign in to comment.