aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorGuchun Chen <guchun.chen@amd.com>2022-11-07 16:46:59 +0800
committerAlex Deucher <alexander.deucher@amd.com>2022-11-09 18:06:16 -0500
commit0c85c067c9d9d7a1b2cc2e01a236d5d0d4a872b5 (patch)
treee676fd3ae6ec29309ce791082094c9eba6334453 /drivers/gpu
parentdrm/amdgpu: Drop eviction lock when allocating PT BO (diff)
downloadlinux-dev-0c85c067c9d9d7a1b2cc2e01a236d5d0d4a872b5.tar.xz
linux-dev-0c85c067c9d9d7a1b2cc2e01a236d5d0d4a872b5.zip
drm/amdgpu: disable BACO on special BEIGE_GOBY card
Still avoid intermittent failure. Signed-off-by: Guchun Chen <guchun.chen@amd.com> Reviewed-by: Lijo Lazar <lijo.lazar@amd.com> Acked-by: Evan Quan <evan.quan@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
index 74996a8fb671..6212fd270857 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
@@ -377,7 +377,9 @@ static void sienna_cichlid_check_bxco_support(struct smu_context *smu)
if (((adev->pdev->device == 0x73A1) &&
(adev->pdev->revision == 0x00)) ||
((adev->pdev->device == 0x73BF) &&
- (adev->pdev->revision == 0xCF)))
+ (adev->pdev->revision == 0xCF)) ||
+ ((adev->pdev->device == 0x7422) &&
+ (adev->pdev->revision == 0x00)))
smu_baco->platform_support = false;
}