From: Tom St Denis Date: Thu, 28 Jul 2016 13:45:07 +0000 (-0400) Subject: drm/amd/amdgpu: enable PG_EN bit in powergating UVD X-Git-Tag: v4.9-rc1~41^2~35^2~137 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fa5d2e0c103a7763b140746d396dcb8c723e74f2;p=karo-tx-linux.git drm/amd/amdgpu: enable PG_EN bit in powergating UVD Enable the PG_EN bit just before the SMU would be tasked with the PG transition. Signed-off-by: Tom St Denis Reviewed-by: Rex Zhu Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c index 7f2b5de29f67..391457f1eafd 100644 --- a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c +++ b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c @@ -997,6 +997,8 @@ static int uvd_v6_0_set_powergating_state(void *handle, if (!(adev->pg_flags & AMD_PG_SUPPORT_UVD)) return 0; + WREG32(mmUVD_POWER_STATUS, UVD_POWER_STATUS__UVD_PG_EN_MASK); + if (state == AMD_PG_STATE_GATE) { uvd_v6_0_stop(adev); return 0;