drm/amdgpu: disable BACO support on more cards

Otherwise, some unexpected PCIE AER errors will be observed
in runtime suspend/resume cycle.

Signed-off-by: Guchun Chen <guchun.chen@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Guchun Chen 2022-11-11 16:54:18 +08:00 committed by Alex Deucher
parent 0e444a4de6
commit 192039f122
1 changed files with 4 additions and 0 deletions

View File

@ -379,6 +379,10 @@ static void sienna_cichlid_check_bxco_support(struct smu_context *smu)
((adev->pdev->device == 0x73BF) && ((adev->pdev->device == 0x73BF) &&
(adev->pdev->revision == 0xCF)) || (adev->pdev->revision == 0xCF)) ||
((adev->pdev->device == 0x7422) && ((adev->pdev->device == 0x7422) &&
(adev->pdev->revision == 0x00)) ||
((adev->pdev->device == 0x73A3) &&
(adev->pdev->revision == 0x00)) ||
((adev->pdev->device == 0x73E3) &&
(adev->pdev->revision == 0x00))) (adev->pdev->revision == 0x00)))
smu_baco->platform_support = false; smu_baco->platform_support = false;