Skip to content

Commit 602e338

Browse files
Evan Quanalexdeucher
authored andcommitted
drm/amdgpu: reenable BACO support for 699F:C7 polaris12 SKU
This reverts the commit below: "drm/amdgpu: disable BACO support for 699F:C7 polaris12 SKU temporarily". As the S3 hang issue has been fixed by another commit: "drm/amdgpu: add missing cleanups for Polaris12 UVD/VCE on suspend". Signed-off-by: Evan Quan <[email protected]> Acked-by: Alex Deucher <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 64261a0 commit 602e338

File tree

1 file changed

+1
-8
lines changed
  • drivers/gpu/drm/amd/amdgpu

1 file changed

+1
-8
lines changed

drivers/gpu/drm/amd/amdgpu/vi.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -904,14 +904,7 @@ static bool vi_asic_supports_baco(struct amdgpu_device *adev)
904904
case CHIP_POLARIS11:
905905
case CHIP_POLARIS12:
906906
case CHIP_TOPAZ:
907-
/* Disable BACO support for the specific polaris12 SKU temporarily */
908-
if ((adev->pdev->device == 0x699F) &&
909-
(adev->pdev->revision == 0xC7) &&
910-
(adev->pdev->subsystem_vendor == 0x1028) &&
911-
(adev->pdev->subsystem_device == 0x0039))
912-
return false;
913-
else
914-
return amdgpu_dpm_is_baco_supported(adev);
907+
return amdgpu_dpm_is_baco_supported(adev);
915908
default:
916909
return false;
917910
}

0 commit comments

Comments
 (0)