Commit 8980aa3c authored by Yongqiang Sun's avatar Yongqiang Sun Committed by Alex Deucher

drm/amd/display: Only program watermark for full update.

For scaling and position change, it isn't necessary to program
watermark and check P-State as well.
Signed-off-by: default avatarYongqiang Sun <yongqiang.sun@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 f97da580
...@@ -1178,9 +1178,7 @@ static void commit_planes_for_stream(struct dc *dc, ...@@ -1178,9 +1178,7 @@ static void commit_planes_for_stream(struct dc *dc,
if (update_type == UPDATE_TYPE_FULL) { if (update_type == UPDATE_TYPE_FULL) {
dc->hwss.set_bandwidth(dc, context, false); dc->hwss.set_bandwidth(dc, context, false);
context_clock_trace(dc, context); context_clock_trace(dc, context);
}
if (update_type > UPDATE_TYPE_FAST) {
for (j = 0; j < dc->res_pool->pipe_count; j++) { for (j = 0; j < dc->res_pool->pipe_count; j++) {
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j]; struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[j];
...@@ -1215,7 +1213,7 @@ static void commit_planes_for_stream(struct dc *dc, ...@@ -1215,7 +1213,7 @@ static void commit_planes_for_stream(struct dc *dc,
} }
} }
if (update_type > UPDATE_TYPE_FAST) if (update_type == UPDATE_TYPE_FULL)
context_timing_trace(dc, &context->res_ctx); context_timing_trace(dc, &context->res_ctx);
/* Perform requested Updates */ /* Perform requested Updates */
......
...@@ -651,6 +651,8 @@ void dpp1_dscl_set_scaler_manual_scale( ...@@ -651,6 +651,8 @@ void dpp1_dscl_set_scaler_manual_scale(
if (memcmp(&dpp->scl_data, scl_data, sizeof(*scl_data)) == 0) if (memcmp(&dpp->scl_data, scl_data, sizeof(*scl_data)) == 0)
return; return;
PERF_TRACE();
dpp->scl_data = *scl_data; dpp->scl_data = *scl_data;
/* Recout */ /* Recout */
...@@ -704,4 +706,5 @@ void dpp1_dscl_set_scaler_manual_scale( ...@@ -704,4 +706,5 @@ void dpp1_dscl_set_scaler_manual_scale(
SCL_H_NUM_TAPS_C, scl_data->taps.h_taps_c - 1); SCL_H_NUM_TAPS_C, scl_data->taps.h_taps_c - 1);
dpp1_dscl_set_scl_filter(dpp, scl_data, ycbcr); dpp1_dscl_set_scl_filter(dpp, scl_data, ycbcr);
PERF_TRACE();
} }
...@@ -2056,11 +2056,6 @@ static void program_all_pipe_in_tree( ...@@ -2056,11 +2056,6 @@ static void program_all_pipe_in_tree(
{ {
if (pipe_ctx->top_pipe == NULL) { if (pipe_ctx->top_pipe == NULL) {
if (dc->debug.sanity_checks) {
/* pstate stuck check after watermark update */
dcn10_verify_allow_pstate_change_high(dc);
}
pipe_ctx->stream_res.tg->dlg_otg_param.vready_offset = pipe_ctx->pipe_dlg_param.vready_offset; pipe_ctx->stream_res.tg->dlg_otg_param.vready_offset = pipe_ctx->pipe_dlg_param.vready_offset;
pipe_ctx->stream_res.tg->dlg_otg_param.vstartup_start = pipe_ctx->pipe_dlg_param.vstartup_start; pipe_ctx->stream_res.tg->dlg_otg_param.vstartup_start = pipe_ctx->pipe_dlg_param.vstartup_start;
pipe_ctx->stream_res.tg->dlg_otg_param.vupdate_offset = pipe_ctx->pipe_dlg_param.vupdate_offset; pipe_ctx->stream_res.tg->dlg_otg_param.vupdate_offset = pipe_ctx->pipe_dlg_param.vupdate_offset;
...@@ -2094,11 +2089,6 @@ static void program_all_pipe_in_tree( ...@@ -2094,11 +2089,6 @@ static void program_all_pipe_in_tree(
dc->hwss.set_output_transfer_func(pipe_ctx, pipe_ctx->stream); dc->hwss.set_output_transfer_func(pipe_ctx, pipe_ctx->stream);
} }
if (dc->debug.sanity_checks) {
/* pstate stuck check after each pipe is programmed */
dcn10_verify_allow_pstate_change_high(dc);
}
if (pipe_ctx->bottom_pipe != NULL && pipe_ctx->bottom_pipe != pipe_ctx) if (pipe_ctx->bottom_pipe != NULL && pipe_ctx->bottom_pipe != pipe_ctx)
program_all_pipe_in_tree(dc, pipe_ctx->bottom_pipe, context); program_all_pipe_in_tree(dc, pipe_ctx->bottom_pipe, context);
} }
...@@ -2183,6 +2173,7 @@ static void dcn10_apply_ctx_for_surface( ...@@ -2183,6 +2173,7 @@ static void dcn10_apply_ctx_for_surface(
struct timing_generator *tg; struct timing_generator *tg;
bool removed_pipe[4] = { false }; bool removed_pipe[4] = { false };
unsigned int ref_clk_mhz = dc->res_pool->ref_clock_inKhz/1000; unsigned int ref_clk_mhz = dc->res_pool->ref_clock_inKhz/1000;
bool program_water_mark = false;
struct pipe_ctx *top_pipe_to_program = struct pipe_ctx *top_pipe_to_program =
find_top_pipe_for_stream(dc, context, stream); find_top_pipe_for_stream(dc, context, stream);
...@@ -2192,9 +2183,6 @@ static void dcn10_apply_ctx_for_surface( ...@@ -2192,9 +2183,6 @@ static void dcn10_apply_ctx_for_surface(
tg = top_pipe_to_program->stream_res.tg; tg = top_pipe_to_program->stream_res.tg;
if (dc->debug.sanity_checks)
dcn10_verify_allow_pstate_change_high(dc);
tg->funcs->lock(tg); tg->funcs->lock(tg);
if (num_planes == 0) { if (num_planes == 0) {
...@@ -2261,24 +2249,31 @@ static void dcn10_apply_ctx_for_surface( ...@@ -2261,24 +2249,31 @@ static void dcn10_apply_ctx_for_surface(
for (i = 0; i < dc->res_pool->pipe_count; i++) { for (i = 0; i < dc->res_pool->pipe_count; i++) {
struct pipe_ctx *old_pipe_ctx = struct pipe_ctx *old_pipe_ctx =
&dc->current_state->res_ctx.pipe_ctx[i]; &dc->current_state->res_ctx.pipe_ctx[i];
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
if (pipe_ctx->stream == stream &&
pipe_ctx->plane_state &&
pipe_ctx->plane_state->update_flags.bits.full_update)
program_water_mark = true;
if (removed_pipe[i] && num_planes == 0) if (removed_pipe[i] && num_planes == 0)
dcn10_disable_plane(dc, old_pipe_ctx); dcn10_disable_plane(dc, old_pipe_ctx);
} }
if (dc->debug.sanity_checks) { if (program_water_mark) {
/* pstate stuck check after watermark update */ if (dc->debug.sanity_checks) {
dcn10_verify_allow_pstate_change_high(dc); /* pstate stuck check after watermark update */
} dcn10_verify_allow_pstate_change_high(dc);
/* watermark is for all pipes */ }
hubbub1_program_watermarks(dc->res_pool->hubbub, /* watermark is for all pipes */
&context->bw.dcn.watermarks, ref_clk_mhz); hubbub1_program_watermarks(dc->res_pool->hubbub,
&context->bw.dcn.watermarks, ref_clk_mhz);
if (dc->debug.sanity_checks) { if (dc->debug.sanity_checks) {
/* pstate stuck check after watermark update */ /* pstate stuck check after watermark update */
dcn10_verify_allow_pstate_change_high(dc); dcn10_verify_allow_pstate_change_high(dc);
}
} }
/* dm_logger_write(dc->ctx->logger, LOG_BANDWIDTH_CALCS, /* dm_logger_write(dc->ctx->logger, LOG_BANDWIDTH_CALCS,
"\n============== Watermark parameters ==============\n" "\n============== Watermark parameters ==============\n"
"a.urgent_ns: %d \n" "a.urgent_ns: %d \n"
...@@ -2326,9 +2321,6 @@ static void dcn10_apply_ctx_for_surface( ...@@ -2326,9 +2321,6 @@ static void dcn10_apply_ctx_for_surface(
context->bw.dcn.watermarks.d.pte_meta_urgent_ns context->bw.dcn.watermarks.d.pte_meta_urgent_ns
); );
*/ */
if (dc->debug.sanity_checks)
dcn10_verify_allow_pstate_change_high(dc);
} }
static void dcn10_set_bandwidth( static void dcn10_set_bandwidth(
......
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