mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 18:51:21 +02:00
drm/amd/display: Remove DTB DTO on CLK update
[Why] DTB DTO is programmed more correctly during link enable. Programming them on CLK update which may arrive frequently and sporadically per flip throws off DTB DTO. [How] Remove DTB DTO programming on clock update. Reviewed-by: Alvin Lee <Alvin.Lee2@amd.com> Acked-by: Jasdeep Dhillon <jdhillon@amd.com> Signed-off-by: Chris Park <Chris.Park@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
4670ac706f
commit
c6ac25f646
|
|
@ -233,41 +233,6 @@ void dcn32_init_clocks(struct clk_mgr *clk_mgr_base)
|
|||
DC_FP_END();
|
||||
}
|
||||
|
||||
static void dcn32_update_clocks_update_dtb_dto(struct clk_mgr_internal *clk_mgr,
|
||||
struct dc_state *context,
|
||||
int ref_dtbclk_khz)
|
||||
{
|
||||
struct dccg *dccg = clk_mgr->dccg;
|
||||
uint32_t tg_mask = 0;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < clk_mgr->base.ctx->dc->res_pool->pipe_count; i++) {
|
||||
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
|
||||
struct dtbclk_dto_params dto_params = {0};
|
||||
|
||||
/* use mask to program DTO once per tg */
|
||||
if (pipe_ctx->stream_res.tg &&
|
||||
!(tg_mask & (1 << pipe_ctx->stream_res.tg->inst))) {
|
||||
tg_mask |= (1 << pipe_ctx->stream_res.tg->inst);
|
||||
|
||||
dto_params.otg_inst = pipe_ctx->stream_res.tg->inst;
|
||||
dto_params.ref_dtbclk_khz = ref_dtbclk_khz;
|
||||
|
||||
if (is_dp_128b_132b_signal(pipe_ctx)) {
|
||||
dto_params.pixclk_khz = pipe_ctx->stream->phy_pix_clk;
|
||||
|
||||
if (pipe_ctx->stream_res.audio != NULL)
|
||||
dto_params.req_audio_dtbclk_khz = 24000;
|
||||
}
|
||||
if (dc_is_hdmi_signal(pipe_ctx->stream->signal))
|
||||
dto_params.is_hdmi = true;
|
||||
|
||||
dccg->funcs->set_dtbclk_dto(clk_mgr->dccg, &dto_params);
|
||||
//dccg->funcs->set_audio_dtbclk_dto(clk_mgr->dccg, &dto_params);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Since DPPCLK request to PMFW needs to be exact (due to DPP DTO programming),
|
||||
* update DPPCLK to be the exact frequency that will be set after the DPPCLK
|
||||
* divider is updated. This will prevent rounding issues that could cause DPP
|
||||
|
|
@ -447,8 +412,6 @@ static void dcn32_update_clocks(struct clk_mgr *clk_mgr_base,
|
|||
/* DCCG requires KHz precision for DTBCLK */
|
||||
clk_mgr_base->clks.ref_dtbclk_khz =
|
||||
dcn32_smu_set_hard_min_by_freq(clk_mgr, PPCLK_DTBCLK, khz_to_mhz_ceil(new_clocks->ref_dtbclk_khz));
|
||||
|
||||
dcn32_update_clocks_update_dtb_dto(clk_mgr, context, clk_mgr_base->clks.ref_dtbclk_khz);
|
||||
}
|
||||
|
||||
if (dc->config.forced_clocks == false || (force_reset && safe_to_lower)) {
|
||||
|
|
|
|||
|
|
@ -743,7 +743,7 @@ static const struct dc_debug_options debug_defaults_diags = {
|
|||
.dmub_command_table = true,
|
||||
.enable_tri_buf = true,
|
||||
.use_max_lb = true,
|
||||
.force_disable_subvp = true
|
||||
.force_disable_subvp = true,
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user