diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2020-05-26 13:58:26 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-12-23 15:07:58 -0500 |
commit | ed0a508b460d470261c886fc7aee540f9994110b (patch) | |
tree | 6a83e4af7d64db54304cff15c1af423eeb8af934 | |
parent | 95f3de9152114428e4b9c1607a1b53d0d1dfad57 (diff) |
drm/amdgpu: add another raven1 gfxoff quirk
HP Elite Disk 705 G4 Micro seems to have issues with gfxoff.
Bug: https://bugzilla.kernel.org/show_bug.cgi?id=207899
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 |
1 files changed, 2 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 5f4805e4d04a..ec03c0764768 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -1243,6 +1243,8 @@ static const struct amdgpu_gfxoff_quirk amdgpu_gfxoff_quirk_list[] = { { 0x1002, 0x15dd, 0x103c, 0x83e7, 0xd3 }, /* GFXOFF is unstable on C6 parts with a VBIOS 113-RAVEN-114 */ { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc6 }, + /* https://bugzilla.kernel.org/show_bug.cgi?id=207899 */ + { 0x1002, 0x15dd, 0x103c, 0x83e9, 0xd6 }, { 0, 0, 0, 0, 0 }, }; |