Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/powerplay: make sure VCE is disabled by default

This patch is a port of similar patch for amdgpu
when PP is disabled. Since the code flow is little
different when PP is enabled, we need to make sure
the patch is applied for PP enabled path as well.

With the current code, when we boot with the amdgpu
driver enabled and loaded, the VCE also automatically
remains enabled since bootup. This can be verified from
the output of amdgpu_pm_info. It does not matter whether
we boot into command line directly or into X, the VCE
stays enabled the entire time.

This patch addresses the issue and makes sure that
VCE is turned on only during playback, and remains
disabled otherwise.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Arindam Nath <arindam.nath@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Arindam Nath and committed by
Alex Deucher
505bc983 fb065ce7

+1
+1
drivers/gpu/drm/amd/powerplay/hwmgr/cz_clockpowergating.c
··· 225 225 } 226 226 } 227 227 } else { 228 + cz_hwmgr->vce_power_gated = bgate; 228 229 cz_dpm_update_vce_dpm(hwmgr); 229 230 cz_enable_disable_vce_dpm(hwmgr, !bgate); 230 231 return 0;