mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-16 16:16:32 -04:00
drm/amd/display: fix not enter/exit PSR with latest driver/SBIOS
Signed-off-by: Charlene Liu <charlene.liu@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
1bd4653a29
commit
b05dee52ef
@@ -1975,7 +1975,7 @@ bool dc_link_setup_psr(struct dc_link *link,
|
||||
#if defined(CONFIG_DRM_AMD_DC_DCN1_0)
|
||||
/*skip power down the single pipe since it blocks the cstate*/
|
||||
if (ASIC_REV_IS_RAVEN(link->ctx->asic_id.hw_internal_rev))
|
||||
psr_context->psr_level.bits.SKIP_SINGLE_OTG_DISABLE = true;
|
||||
psr_context->psr_level.bits.SKIP_SINGLE_OTG_DISABLE = false;
|
||||
#endif
|
||||
|
||||
/* SMU will perform additional powerdown sequence.
|
||||
|
||||
@@ -417,9 +417,10 @@ static int dce112_set_clock(
|
||||
|
||||
bp->funcs->set_dce_clock(bp, &dce_clk_params);
|
||||
|
||||
if (abm->funcs->is_dmcu_initialized(abm))
|
||||
if (abm->funcs->is_dmcu_initialized(abm) && clk_dce->dfs_bypass_disp_clk != actual_clock)
|
||||
dmcu->funcs->set_psr_wait_loop(dmcu,
|
||||
actual_clock / 1000 / 7);
|
||||
clk_dce->dfs_bypass_disp_clk = actual_clock;
|
||||
return actual_clock;
|
||||
}
|
||||
|
||||
|
||||
@@ -260,6 +260,8 @@ static void dce_psr_wait_loop(
|
||||
{
|
||||
struct dce_dmcu *dmcu_dce = TO_DCE_DMCU(dmcu);
|
||||
union dce_dmcu_psr_config_data_wait_loop_reg1 masterCmdData1;
|
||||
if (cached_wait_loop_number == wait_loop_number)
|
||||
return;
|
||||
|
||||
/* waitDMCUReadyForCmd */
|
||||
REG_WAIT(MASTER_COMM_CNTL_REG, MASTER_COMM_INTERRUPT, 0, 1, 10000);
|
||||
@@ -500,7 +502,7 @@ static void dcn10_psr_wait_loop(
|
||||
{
|
||||
struct dce_dmcu *dmcu_dce = TO_DCE_DMCU(dmcu);
|
||||
union dce_dmcu_psr_config_data_wait_loop_reg1 masterCmdData1;
|
||||
|
||||
if (wait_loop_number != 0) {
|
||||
/* waitDMCUReadyForCmd */
|
||||
REG_WAIT(MASTER_COMM_CNTL_REG, MASTER_COMM_INTERRUPT, 0, 1, 10000);
|
||||
|
||||
@@ -514,6 +516,7 @@ static void dcn10_psr_wait_loop(
|
||||
|
||||
/* notifyDMCUMsg */
|
||||
REG_UPDATE(MASTER_COMM_CNTL_REG, MASTER_COMM_INTERRUPT, 1);
|
||||
}
|
||||
}
|
||||
|
||||
static void dcn10_get_psr_wait_loop(unsigned int *psr_wait_loop_number)
|
||||
|
||||
Reference in New Issue
Block a user