mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 20:35:07 +07:00
drm/amd/display: fix ASSERT() caused by missing registers.
Signed-off-by: Ken Chalmers <ken.chalmers@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:
parent
dbaed8037c
commit
5df921d4c0
@ -771,14 +771,16 @@ static void power_on_plane(
|
||||
struct dce_hwseq *hws,
|
||||
int plane_id)
|
||||
{
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 1);
|
||||
dpp_pg_control(hws, plane_id, true);
|
||||
hubp_pg_control(hws, plane_id, true);
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 0);
|
||||
dm_logger_write(hws->ctx->logger, LOG_DEBUG,
|
||||
"Un-gated front end for pipe %d\n", plane_id);
|
||||
if (REG(DC_IP_REQUEST_CNTL)) {
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 1);
|
||||
dpp_pg_control(hws, plane_id, true);
|
||||
hubp_pg_control(hws, plane_id, true);
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 0);
|
||||
dm_logger_write(hws->ctx->logger, LOG_DEBUG,
|
||||
"Un-gated front end for pipe %d\n", plane_id);
|
||||
}
|
||||
}
|
||||
|
||||
static void undo_DEGVIDCN10_253_wa(struct dc *dc)
|
||||
@ -1130,18 +1132,20 @@ static void plane_atomic_power_down(struct dc *dc, int fe_idx)
|
||||
struct dce_hwseq *hws = dc->hwseq;
|
||||
struct transform *xfm = dc->res_pool->transforms[fe_idx];
|
||||
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 1);
|
||||
dpp_pg_control(hws, fe_idx, false);
|
||||
hubp_pg_control(hws, fe_idx, false);
|
||||
xfm->funcs->transform_reset(xfm);
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 0);
|
||||
dm_logger_write(dc->ctx->logger, LOG_DEBUG,
|
||||
"Power gated front end %d\n", fe_idx);
|
||||
if (REG(DC_IP_REQUEST_CNTL)) {
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 1);
|
||||
dpp_pg_control(hws, fe_idx, false);
|
||||
hubp_pg_control(hws, fe_idx, false);
|
||||
xfm->funcs->transform_reset(xfm);
|
||||
REG_SET(DC_IP_REQUEST_CNTL, 0,
|
||||
IP_REQUEST_EN, 0);
|
||||
dm_logger_write(dc->ctx->logger, LOG_DEBUG,
|
||||
"Power gated front end %d\n", fe_idx);
|
||||
|
||||
if (dc->debug.sanity_checks)
|
||||
verify_allow_pstate_change_high(dc->hwseq);
|
||||
if (dc->debug.sanity_checks)
|
||||
verify_allow_pstate_change_high(dc->hwseq);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user