diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2020-04-09 09:40:01 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-04-14 12:48:43 -0400 |
commit | 974229db7e6c1f2ff83ceaf3022d5128bf62caca (patch) | |
tree | c588b7d051584031d335f5fdae6c727402bbba15 /drivers/gpu/drm/amd | |
parent | b2a7e9735ab2864330be9d00d7f38c961c28de5d (diff) | |
download | linux-974229db7e6c1f2ff83ceaf3022d5128bf62caca.tar.gz linux-974229db7e6c1f2ff83ceaf3022d5128bf62caca.tar.bz2 linux-974229db7e6c1f2ff83ceaf3022d5128bf62caca.zip |
drm/amdgpu/gfx9: add gfxoff quirk
Fix screen corruption with firefox.
Bug: https://bugzilla.kernel.org/show_bug.cgi?id=207171
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/amd')
-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 e6b113ed2f40..0c390485bc10 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -1234,6 +1234,8 @@ struct amdgpu_gfxoff_quirk { static const struct amdgpu_gfxoff_quirk amdgpu_gfxoff_quirk_list[] = { /* https://bugzilla.kernel.org/show_bug.cgi?id=204689 */ { 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc8 }, + /* https://bugzilla.kernel.org/show_bug.cgi?id=207171 */ + { 0x1002, 0x15dd, 0x103c, 0x83e7, 0xd3 }, { 0, 0, 0, 0, 0 }, }; |