forked from Minki/linux
drm/amd/display: Remove reliance on pipe indexing
[Why] In certain instances, there was a reliance on pipe indexing being accurate. However, this assumption fails with harvesting of pipes 1 or 2, which can occur in production B6 parts. HW hang would occur as a result. [How] Use hubp index for mpcc, and do mpc_init for all theoretical pipes (including disabled ones). Signed-off-by: Noah Abradjian <noah.abradjian@amd.com> Reviewed-by: Yongqiang Sun <yongqiang.sun@amd.com> Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
32ff3217d6
commit
1380c1bf5b
@ -1163,7 +1163,8 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context)
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < dc->res_pool->pipe_count; i++) {
|
||||
/* num_opp will be equal to number of mpcc */
|
||||
for (i = 0; i < dc->res_pool->res_cap->num_opp; i++) {
|
||||
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
|
||||
|
||||
/* Cannot reset the MPC mux if seamless boot */
|
||||
|
@ -1356,7 +1356,7 @@ static void dcn20_update_dchubp_dpp(
|
||||
|| plane_state->update_flags.bits.global_alpha_change
|
||||
|| plane_state->update_flags.bits.per_pixel_alpha_change) {
|
||||
// MPCC inst is equal to pipe index in practice
|
||||
int mpcc_inst = pipe_ctx->pipe_idx;
|
||||
int mpcc_inst = hubp->inst;
|
||||
int opp_inst;
|
||||
int opp_count = dc->res_pool->pipe_count;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user