Commit c0826487 authored by Wesley Chalmers's avatar Wesley Chalmers Committed by Alex Deucher

drm/amd/display: Use stream opp_id instead of hubp

[WHY]
By the time output csc matrix is being programmed, stream connection to
OPP has been established, but this information has not been relayed back
to HUBP.
Signed-off-by: default avatarWesley Chalmers <Wesley.Chalmers@amd.com>
Reviewed-by: default avatarAnthony Koo <Anthony.Koo@amd.com>
Acked-by: default avatarBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Acked-by: default avatarKrunoslav Kovac <Krunoslav.Kovac@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 910954da
...@@ -457,7 +457,7 @@ bool dc_stream_program_csc_matrix(struct dc *dc, struct dc_stream_state *stream) ...@@ -457,7 +457,7 @@ bool dc_stream_program_csc_matrix(struct dc *dc, struct dc_stream_state *stream)
pipes, pipes,
stream->output_color_space, stream->output_color_space,
stream->csc_color_matrix.matrix, stream->csc_color_matrix.matrix,
pipes->plane_res.hubp ? pipes->plane_res.hubp->opp_id : 0); pipes->stream_res.opp->inst);
ret = true; ret = true;
} }
} }
......
...@@ -2169,7 +2169,7 @@ void update_dchubp_dpp( ...@@ -2169,7 +2169,7 @@ void update_dchubp_dpp(
pipe_ctx, pipe_ctx,
pipe_ctx->stream->output_color_space, pipe_ctx->stream->output_color_space,
pipe_ctx->stream->csc_color_matrix.matrix, pipe_ctx->stream->csc_color_matrix.matrix,
hubp->opp_id); pipe_ctx->stream_res.opp->inst);
} }
if (plane_state->update_flags.bits.full_update || if (plane_state->update_flags.bits.full_update ||
......
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