From: David Rokhvarg Date: Fri, 11 Dec 2015 17:06:25 +0000 (-0500) Subject: drm/amdgpu/powerplay: Program a calculated value as Deep Sleep clock. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c90e5d20fc1bfefdeb99d5ec2cb0fb28f26d208d;p=deliverable%2Flinux.git drm/amdgpu/powerplay: Program a calculated value as Deep Sleep clock. This replaces programming of a hardcoded value. Signed-off-by: David Rokhvarg --- diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c index 464109592aaf..344806521468 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c @@ -789,9 +789,11 @@ static int cz_tf_set_deep_sleep_sclk_threshold(struct pp_hwmgr *hwmgr, if (clks == 0) clks = CZ_MIN_DEEP_SLEEP_SCLK; + PP_DBG_LOG("Setting Deep Sleep Clock: %d\n", clks); + smum_send_msg_to_smc_with_parameter(hwmgr->smumgr, - PPSMC_MSG_SetMinDeepSleepSclk, - CZ_MIN_DEEP_SLEEP_SCLK); + PPSMC_MSG_SetMinDeepSleepSclk, + clks); } return 0;