Commit 71a2f23e authored by Eric Yang's avatar Eric Yang Committed by Alex Deucher

drm/amd/display: fix mpo exit hang

Signed-off-by: default avatarEric Yang <Eric.Yang2@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 38917a1e
...@@ -500,6 +500,8 @@ static void reset_front_end( ...@@ -500,6 +500,8 @@ static void reset_front_end(
HUBP_CLOCK_ENABLE, 0); HUBP_CLOCK_ENABLE, 0);
REG_UPDATE(DPP_CONTROL[fe_idx], REG_UPDATE(DPP_CONTROL[fe_idx],
DPP_CLOCK_ENABLE, 0); DPP_CLOCK_ENABLE, 0);
if (mpcc_cfg.top_of_tree)
REG_UPDATE(OPP_PIPE_CONTROL[opp_id], REG_UPDATE(OPP_PIPE_CONTROL[opp_id],
OPP_PIPE_CLOCK_EN, 0); OPP_PIPE_CLOCK_EN, 0);
...@@ -1584,7 +1586,7 @@ static void dcn10_apply_ctx_for_surface( ...@@ -1584,7 +1586,7 @@ static void dcn10_apply_ctx_for_surface(
int i; int i;
/* reset unused mpcc */ /* reset unused mpcc */
/*for (i = 0; i < dc->res_pool->pipe_count; i++) { for (i = 0; i < dc->res_pool->pipe_count; i++) {
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i]; struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
struct pipe_ctx *old_pipe_ctx = struct pipe_ctx *old_pipe_ctx =
&dc->current_context->res_ctx.pipe_ctx[i]; &dc->current_context->res_ctx.pipe_ctx[i];
...@@ -1593,7 +1595,12 @@ static void dcn10_apply_ctx_for_surface( ...@@ -1593,7 +1595,12 @@ static void dcn10_apply_ctx_for_surface(
|| (!pipe_ctx->stream && old_pipe_ctx->stream)) { || (!pipe_ctx->stream && old_pipe_ctx->stream)) {
struct mpcc_cfg mpcc_cfg; struct mpcc_cfg mpcc_cfg;
mpcc_cfg.opp_id = 0xf; if (!old_pipe_ctx->top_pipe) {
ASSERT(0);
continue;
}
mpcc_cfg.opp_id = old_pipe_ctx->mpcc->opp_id;
mpcc_cfg.top_dpp_id = 0xf; mpcc_cfg.top_dpp_id = 0xf;
mpcc_cfg.bot_mpcc_id = 0xf; mpcc_cfg.bot_mpcc_id = 0xf;
mpcc_cfg.top_of_tree = !old_pipe_ctx->top_pipe; mpcc_cfg.top_of_tree = !old_pipe_ctx->top_pipe;
...@@ -1607,7 +1614,7 @@ static void dcn10_apply_ctx_for_surface( ...@@ -1607,7 +1614,7 @@ static void dcn10_apply_ctx_for_surface(
"Reset mpcc for pipe %d\n", "Reset mpcc for pipe %d\n",
old_pipe_ctx->pipe_idx); old_pipe_ctx->pipe_idx);
} }
}*/ }
if (!surface) if (!surface)
return; return;
......
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