Skip to content

Commit 5a0510d

Browse files
superm1alexdeucher
authored andcommitted
drm/amd: Downgrade message about watermarks table after s0i3 to debug
This message shows up on s0i3 resume for DCN31 and DCN314 platforms but it has been decided that this flow won't be changed and the message is expected behavior. Downgrade the message to debug. Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent 83033f7 commit 5a0510d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/gpu/drm/amd/display/dc/clk_mgr/dcn31/dcn31_smu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ static int dcn31_smu_send_msg_with_param(struct clk_mgr_internal *clk_mgr,
130130
if (result == VBIOSSMC_Result_Failed) {
131131
if (msg_id == VBIOSSMC_MSG_TransferTableDram2Smu &&
132132
param == TABLE_WATERMARKS)
133-
DC_LOG_WARNING("Watermarks table not configured properly by SMU");
133+
DC_LOG_DEBUG("Watermarks table not configured properly by SMU");
134134
else
135135
ASSERT(0);
136136
REG_WRITE(MP1_SMN_C2PMSG_91, VBIOSSMC_Result_OK);

drivers/gpu/drm/amd/display/dc/clk_mgr/dcn314/dcn314_smu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ static int dcn314_smu_send_msg_with_param(struct clk_mgr_internal *clk_mgr,
145145
if (result == VBIOSSMC_Result_Failed) {
146146
if (msg_id == VBIOSSMC_MSG_TransferTableDram2Smu &&
147147
param == TABLE_WATERMARKS)
148-
DC_LOG_WARNING("Watermarks table not configured properly by SMU");
148+
DC_LOG_DEBUG("Watermarks table not configured properly by SMU");
149149
else if (msg_id == VBIOSSMC_MSG_SetHardMinDcfclkByFreq ||
150150
msg_id == VBIOSSMC_MSG_SetMinDeepSleepDcfclk)
151151
DC_LOG_WARNING("DCFCLK_DPM is not enabled by BIOS");

0 commit comments

Comments
 (0)