Commit 157cc885 authored by Sung Lee's avatar Sung Lee Committed by Alex Deucher

drm/amd/display: Handle Unknown Result for SMU Periodic Retraining on DCN2.1

[WHY & HOW]
Currently if VBIOSSMC_Result_UnknownCmd is returned as result of smu msg
there is no way to know.  Put 1 in param so if 1 is returned, this unknown case is handled.
Signed-off-by: default avatarSung Lee <sung.lee@amd.com>
Acked-by: default avatarBindu Ramamurthy <bindu.r@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 82df77ae
...@@ -247,5 +247,6 @@ int rn_vbios_smu_is_periodic_retraining_disabled(struct clk_mgr_internal *clk_mg ...@@ -247,5 +247,6 @@ int rn_vbios_smu_is_periodic_retraining_disabled(struct clk_mgr_internal *clk_mg
return rn_vbios_smu_send_msg_with_param( return rn_vbios_smu_send_msg_with_param(
clk_mgr, clk_mgr,
VBIOSSMC_MSG_IsPeriodicRetrainingDisabled, VBIOSSMC_MSG_IsPeriodicRetrainingDisabled,
0); 1); // if PMFW doesn't support this message, assume retraining is disabled
// so we only use most optimal watermark if we know retraining is enabled.
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment