Commit 765b2683 authored by Dmytro Laktyushkin's avatar Dmytro Laktyushkin Committed by Alex Deucher

drm/amd/display: replace clocks_value struct with dc_clocks

This will avoid structs with duplicate information. Also
removes pixel clock voltage request. This has no effect since
pixel clock does not affect dcn voltage and this function only
matters for dcn.
Signed-off-by: default avatarDmytro Laktyushkin <Dmytro.Laktyushkin@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 a25ca162
...@@ -1145,10 +1145,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1145,10 +1145,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
switch (clocks_type) { switch (clocks_type) {
case DM_PP_CLOCK_TYPE_DISPLAY_CLK: case DM_PP_CLOCK_TYPE_DISPLAY_CLK:
if (clocks_in_khz > dc->dcn_soc->max_dispclk_vmax0p9*1000) { /*if (clocks_in_khz > dc->dcn_soc->max_dispclk_vmax0p9*1000) {
vdd_level = dcn_bw_v_max0p91; vdd_level = dcn_bw_v_max0p91;
BREAK_TO_DEBUGGER(); //BREAK_TO_DEBUGGER();
} else if (clocks_in_khz > dc->dcn_soc->max_dispclk_vnom0p8*1000) { } else*/ if (clocks_in_khz > dc->dcn_soc->max_dispclk_vnom0p8*1000) {
vdd_level = dcn_bw_v_max0p9; vdd_level = dcn_bw_v_max0p9;
} else if (clocks_in_khz > dc->dcn_soc->max_dispclk_vmid0p72*1000) { } else if (clocks_in_khz > dc->dcn_soc->max_dispclk_vmid0p72*1000) {
vdd_level = dcn_bw_v_nom0p8; vdd_level = dcn_bw_v_nom0p8;
...@@ -1158,10 +1158,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1158,10 +1158,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
vdd_level = dcn_bw_v_min0p65; vdd_level = dcn_bw_v_min0p65;
break; break;
case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK: case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK:
if (clocks_in_khz > dc->dcn_soc->phyclkv_max0p9*1000) { /*if (clocks_in_khz > dc->dcn_soc->phyclkv_max0p9*1000) {
vdd_level = dcn_bw_v_max0p91; vdd_level = dcn_bw_v_max0p91;
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
} else if (clocks_in_khz > dc->dcn_soc->phyclkv_nom0p8*1000) { } else*/ if (clocks_in_khz > dc->dcn_soc->phyclkv_nom0p8*1000) {
vdd_level = dcn_bw_v_max0p9; vdd_level = dcn_bw_v_max0p9;
} else if (clocks_in_khz > dc->dcn_soc->phyclkv_mid0p72*1000) { } else if (clocks_in_khz > dc->dcn_soc->phyclkv_mid0p72*1000) {
vdd_level = dcn_bw_v_nom0p8; vdd_level = dcn_bw_v_nom0p8;
...@@ -1172,10 +1172,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1172,10 +1172,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
break; break;
case DM_PP_CLOCK_TYPE_DPPCLK: case DM_PP_CLOCK_TYPE_DPPCLK:
if (clocks_in_khz > dc->dcn_soc->max_dppclk_vmax0p9*1000) { /*if (clocks_in_khz > dc->dcn_soc->max_dppclk_vmax0p9*1000) {
vdd_level = dcn_bw_v_max0p91; vdd_level = dcn_bw_v_max0p91;
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
} else if (clocks_in_khz > dc->dcn_soc->max_dppclk_vnom0p8*1000) { } else*/ if (clocks_in_khz > dc->dcn_soc->max_dppclk_vnom0p8*1000) {
vdd_level = dcn_bw_v_max0p9; vdd_level = dcn_bw_v_max0p9;
} else if (clocks_in_khz > dc->dcn_soc->max_dppclk_vmid0p72*1000) { } else if (clocks_in_khz > dc->dcn_soc->max_dppclk_vmid0p72*1000) {
vdd_level = dcn_bw_v_nom0p8; vdd_level = dcn_bw_v_nom0p8;
...@@ -1189,10 +1189,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1189,10 +1189,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
{ {
unsigned factor = (ddr4_dram_factor_single_Channel * dc->dcn_soc->number_of_channels); unsigned factor = (ddr4_dram_factor_single_Channel * dc->dcn_soc->number_of_channels);
if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vmax0p9*1000000/factor) { /*if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vmax0p9*1000000/factor) {
vdd_level = dcn_bw_v_max0p91; vdd_level = dcn_bw_v_max0p91;
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
} else if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vnom0p8*1000000/factor) { } else */if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vnom0p8*1000000/factor) {
vdd_level = dcn_bw_v_max0p9; vdd_level = dcn_bw_v_max0p9;
} else if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vmid0p72*1000000/factor) { } else if (clocks_in_khz > dc->dcn_soc->fabric_and_dram_bandwidth_vmid0p72*1000000/factor) {
vdd_level = dcn_bw_v_nom0p8; vdd_level = dcn_bw_v_nom0p8;
...@@ -1204,10 +1204,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1204,10 +1204,10 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
break; break;
case DM_PP_CLOCK_TYPE_DCFCLK: case DM_PP_CLOCK_TYPE_DCFCLK:
if (clocks_in_khz > dc->dcn_soc->dcfclkv_max0p9*1000) { /*if (clocks_in_khz > dc->dcn_soc->dcfclkv_max0p9*1000) {
vdd_level = dcn_bw_v_max0p91; vdd_level = dcn_bw_v_max0p91;
BREAK_TO_DEBUGGER(); BREAK_TO_DEBUGGER();
} else if (clocks_in_khz > dc->dcn_soc->dcfclkv_nom0p8*1000) { } else */if (clocks_in_khz > dc->dcn_soc->dcfclkv_nom0p8*1000) {
vdd_level = dcn_bw_v_max0p9; vdd_level = dcn_bw_v_max0p9;
} else if (clocks_in_khz > dc->dcn_soc->dcfclkv_mid0p72*1000) { } else if (clocks_in_khz > dc->dcn_soc->dcfclkv_mid0p72*1000) {
vdd_level = dcn_bw_v_nom0p8; vdd_level = dcn_bw_v_nom0p8;
...@@ -1225,27 +1225,27 @@ static unsigned int dcn_find_normalized_clock_vdd_Level( ...@@ -1225,27 +1225,27 @@ static unsigned int dcn_find_normalized_clock_vdd_Level(
unsigned int dcn_find_dcfclk_suits_all( unsigned int dcn_find_dcfclk_suits_all(
const struct dc *dc, const struct dc *dc,
struct clocks_value *clocks) struct dc_clocks *clocks)
{ {
unsigned vdd_level, vdd_level_temp; unsigned vdd_level, vdd_level_temp;
unsigned dcf_clk; unsigned dcf_clk;
/*find a common supported voltage level*/ /*find a common supported voltage level*/
vdd_level = dcn_find_normalized_clock_vdd_Level( vdd_level = dcn_find_normalized_clock_vdd_Level(
dc, DM_PP_CLOCK_TYPE_DISPLAY_CLK, clocks->dispclk_in_khz); dc, DM_PP_CLOCK_TYPE_DISPLAY_CLK, clocks->dispclk_khz);
vdd_level_temp = dcn_find_normalized_clock_vdd_Level( vdd_level_temp = dcn_find_normalized_clock_vdd_Level(
dc, DM_PP_CLOCK_TYPE_DISPLAYPHYCLK, clocks->phyclk_in_khz); dc, DM_PP_CLOCK_TYPE_DISPLAYPHYCLK, clocks->phyclk_khz);
vdd_level = dcn_bw_max(vdd_level, vdd_level_temp); vdd_level = dcn_bw_max(vdd_level, vdd_level_temp);
vdd_level_temp = dcn_find_normalized_clock_vdd_Level( vdd_level_temp = dcn_find_normalized_clock_vdd_Level(
dc, DM_PP_CLOCK_TYPE_DPPCLK, clocks->dppclk_in_khz); dc, DM_PP_CLOCK_TYPE_DPPCLK, clocks->dppclk_khz);
vdd_level = dcn_bw_max(vdd_level, vdd_level_temp); vdd_level = dcn_bw_max(vdd_level, vdd_level_temp);
vdd_level_temp = dcn_find_normalized_clock_vdd_Level( vdd_level_temp = dcn_find_normalized_clock_vdd_Level(
dc, DM_PP_CLOCK_TYPE_MEMORY_CLK, clocks->dcfclock_in_khz); dc, DM_PP_CLOCK_TYPE_MEMORY_CLK, clocks->fclk_khz);
vdd_level = dcn_bw_max(vdd_level, vdd_level_temp); vdd_level = dcn_bw_max(vdd_level, vdd_level_temp);
vdd_level_temp = dcn_find_normalized_clock_vdd_Level( vdd_level_temp = dcn_find_normalized_clock_vdd_Level(
dc, DM_PP_CLOCK_TYPE_DCFCLK, clocks->dcfclock_in_khz); dc, DM_PP_CLOCK_TYPE_DCFCLK, clocks->dcfclk_khz);
/*find that level conresponding dcfclk*/ /*find that level conresponding dcfclk*/
vdd_level = dcn_bw_max(vdd_level, vdd_level_temp); vdd_level = dcn_bw_max(vdd_level, vdd_level_temp);
......
...@@ -1290,15 +1290,13 @@ static enum dc_status enable_link_dp( ...@@ -1290,15 +1290,13 @@ static enum dc_status enable_link_dp(
state->dis_clk, DM_PP_CLOCKS_STATE_NOMINAL); state->dis_clk, DM_PP_CLOCKS_STATE_NOMINAL);
} else { } else {
uint32_t dp_phyclk_in_khz; uint32_t dp_phyclk_in_khz;
const struct clocks_value clocks_value = const struct dc_clocks clocks_value =
state->dis_clk->cur_clocks_value; state->dis_clk->clks;
/* 27mhz = 27000000hz= 27000khz */ /* 27mhz = 27000000hz= 27000khz */
dp_phyclk_in_khz = link_settings.link_rate * 27000; dp_phyclk_in_khz = link_settings.link_rate * 27000;
if (((clocks_value.max_non_dp_phyclk_in_khz != 0) && if (dp_phyclk_in_khz > clocks_value.phyclk_khz) {
(dp_phyclk_in_khz > clocks_value.max_non_dp_phyclk_in_khz)) ||
(dp_phyclk_in_khz > clocks_value.max_dp_phyclk_in_khz)) {
state->dis_clk->funcs->apply_clock_voltage_request( state->dis_clk->funcs->apply_clock_voltage_request(
state->dis_clk, state->dis_clk,
DM_PP_CLOCK_TYPE_DISPLAYPHYCLK, DM_PP_CLOCK_TYPE_DISPLAYPHYCLK,
......
...@@ -186,6 +186,10 @@ enum wm_report_mode { ...@@ -186,6 +186,10 @@ enum wm_report_mode {
WM_REPORT_OVERRIDE = 1, WM_REPORT_OVERRIDE = 1,
}; };
/*
* For any clocks that may differ per pipe
* only the max is stored in this structure
*/
struct dc_clocks { struct dc_clocks {
int dispclk_khz; int dispclk_khz;
int max_supported_dppclk_khz; int max_supported_dppclk_khz;
...@@ -194,6 +198,7 @@ struct dc_clocks { ...@@ -194,6 +198,7 @@ struct dc_clocks {
int socclk_khz; int socclk_khz;
int dcfclk_deep_sleep_khz; int dcfclk_deep_sleep_khz;
int fclk_khz; int fclk_khz;
int phyclk_khz;
}; };
struct dc_debug { struct dc_debug {
......
...@@ -560,11 +560,9 @@ static bool dce_apply_clock_voltage_request( ...@@ -560,11 +560,9 @@ static bool dce_apply_clock_voltage_request(
switch (clocks_type) { switch (clocks_type) {
case DM_PP_CLOCK_TYPE_DISPLAY_CLK: case DM_PP_CLOCK_TYPE_DISPLAY_CLK:
case DM_PP_CLOCK_TYPE_PIXELCLK:
case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK: case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK:
break; break;
default: default:
BREAK_TO_DEBUGGER();
return false; return false;
} }
...@@ -575,31 +573,22 @@ static bool dce_apply_clock_voltage_request( ...@@ -575,31 +573,22 @@ static bool dce_apply_clock_voltage_request(
if (pre_mode_set) { if (pre_mode_set) {
switch (clocks_type) { switch (clocks_type) {
case DM_PP_CLOCK_TYPE_DISPLAY_CLK: case DM_PP_CLOCK_TYPE_DISPLAY_CLK:
if (clocks_in_khz > clk->cur_clocks_value.dispclk_in_khz) { if (clocks_in_khz > clk->clks.dispclk_khz) {
clk->cur_clocks_value.dispclk_notify_pplib_done = true; clk->dispclk_notify_pplib_done = true;
send_request = true; send_request = true;
} else } else
clk->cur_clocks_value.dispclk_notify_pplib_done = false; clk->dispclk_notify_pplib_done = false;
/* no matter incrase or decrase clock, update current clock value */ /* no matter incrase or decrase clock, update current clock value */
clk->cur_clocks_value.dispclk_in_khz = clocks_in_khz; clk->clks.dispclk_khz = clocks_in_khz;
break;
case DM_PP_CLOCK_TYPE_PIXELCLK:
if (clocks_in_khz > clk->cur_clocks_value.max_pixelclk_in_khz) {
clk->cur_clocks_value.pixelclk_notify_pplib_done = true;
send_request = true;
} else
clk->cur_clocks_value.pixelclk_notify_pplib_done = false;
/* no matter incrase or decrase clock, update current clock value */
clk->cur_clocks_value.max_pixelclk_in_khz = clocks_in_khz;
break; break;
case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK: case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK:
if (clocks_in_khz > clk->cur_clocks_value.max_non_dp_phyclk_in_khz) { if (clocks_in_khz > clk->clks.phyclk_khz) {
clk->cur_clocks_value.phyclk_notigy_pplib_done = true; clk->phyclk_notify_pplib_done = true;
send_request = true; send_request = true;
} else } else
clk->cur_clocks_value.phyclk_notigy_pplib_done = false; clk->phyclk_notify_pplib_done = false;
/* no matter incrase or decrase clock, update current clock value */ /* no matter incrase or decrase clock, update current clock value */
clk->cur_clocks_value.max_non_dp_phyclk_in_khz = clocks_in_khz; clk->clks.phyclk_khz = clocks_in_khz;
break; break;
default: default:
ASSERT(0); ASSERT(0);
...@@ -609,16 +598,14 @@ static bool dce_apply_clock_voltage_request( ...@@ -609,16 +598,14 @@ static bool dce_apply_clock_voltage_request(
} else { } else {
switch (clocks_type) { switch (clocks_type) {
case DM_PP_CLOCK_TYPE_DISPLAY_CLK: case DM_PP_CLOCK_TYPE_DISPLAY_CLK:
if (!clk->cur_clocks_value.dispclk_notify_pplib_done) if (!clk->dispclk_notify_pplib_done)
send_request = true;
break;
case DM_PP_CLOCK_TYPE_PIXELCLK:
if (!clk->cur_clocks_value.pixelclk_notify_pplib_done)
send_request = true; send_request = true;
clk->dispclk_notify_pplib_done = true;
break; break;
case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK: case DM_PP_CLOCK_TYPE_DISPLAYPHYCLK:
if (!clk->cur_clocks_value.phyclk_notigy_pplib_done) if (!clk->phyclk_notify_pplib_done)
send_request = true; send_request = true;
clk->phyclk_notify_pplib_done = true;
break; break;
default: default:
ASSERT(0); ASSERT(0);
...@@ -627,20 +614,21 @@ static bool dce_apply_clock_voltage_request( ...@@ -627,20 +614,21 @@ static bool dce_apply_clock_voltage_request(
} }
if (send_request) { if (send_request) {
#if defined(CONFIG_DRM_AMD_DC_DCN1_0) #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
if (clk->ctx->dce_version >= DCN_VERSION_1_0) { if (clk->ctx->dce_version >= DCN_VERSION_1_0
) {
struct dc *core_dc = clk->ctx->dc; struct dc *core_dc = clk->ctx->dc;
/*use dcfclk request voltage*/ /*use dcfclk request voltage*/
clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DCFCLK; clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DCFCLK;
clock_voltage_req.clocks_in_khz = clock_voltage_req.clocks_in_khz =
dcn_find_dcfclk_suits_all(core_dc, &clk->cur_clocks_value); dcn_find_dcfclk_suits_all(core_dc, &clk->clks);
} }
#endif #endif
dm_pp_apply_clock_for_voltage_request( dm_pp_apply_clock_for_voltage_request(
clk->ctx, &clock_voltage_req); clk->ctx, &clock_voltage_req);
} }
if (update_dp_phyclk && (clocks_in_khz > if (update_dp_phyclk && (clocks_in_khz >
clk->cur_clocks_value.max_dp_phyclk_in_khz)) clk->clks.phyclk_khz))
clk->cur_clocks_value.max_dp_phyclk_in_khz = clocks_in_khz; clk->clks.phyclk_khz = clocks_in_khz;
return true; return true;
} }
......
...@@ -1818,21 +1818,14 @@ static void apply_min_clocks( ...@@ -1818,21 +1818,14 @@ static void apply_min_clocks(
context->dis_clk->funcs->apply_clock_voltage_request( context->dis_clk->funcs->apply_clock_voltage_request(
context->dis_clk, context->dis_clk,
DM_PP_CLOCK_TYPE_DISPLAY_CLK, DM_PP_CLOCK_TYPE_DISPLAY_CLK,
context->dis_clk->cur_clocks_value.dispclk_in_khz, context->dis_clk->clks.dispclk_khz,
pre_mode_set,
false);
context->dis_clk->funcs->apply_clock_voltage_request(
context->dis_clk,
DM_PP_CLOCK_TYPE_PIXELCLK,
context->dis_clk->cur_clocks_value.max_pixelclk_in_khz,
pre_mode_set, pre_mode_set,
false); false);
context->dis_clk->funcs->apply_clock_voltage_request( context->dis_clk->funcs->apply_clock_voltage_request(
context->dis_clk, context->dis_clk,
DM_PP_CLOCK_TYPE_DISPLAYPHYCLK, DM_PP_CLOCK_TYPE_DISPLAYPHYCLK,
context->dis_clk->cur_clocks_value.max_non_dp_phyclk_in_khz, context->dis_clk->clks.phyclk_khz,
pre_mode_set, pre_mode_set,
false); false);
return; return;
...@@ -1859,13 +1852,6 @@ static void apply_min_clocks( ...@@ -1859,13 +1852,6 @@ static void apply_min_clocks(
pre_mode_set, pre_mode_set,
false); false);
context->dis_clk->funcs->apply_clock_voltage_request(
context->dis_clk,
DM_PP_CLOCK_TYPE_PIXELCLK,
req_clocks.pixel_clk_khz,
pre_mode_set,
false);
context->dis_clk->funcs->apply_clock_voltage_request( context->dis_clk->funcs->apply_clock_voltage_request(
context->dis_clk, context->dis_clk,
DM_PP_CLOCK_TYPE_DISPLAYPHYCLK, DM_PP_CLOCK_TYPE_DISPLAYPHYCLK,
......
...@@ -625,7 +625,7 @@ bool dcn_validate_bandwidth( ...@@ -625,7 +625,7 @@ bool dcn_validate_bandwidth(
unsigned int dcn_find_dcfclk_suits_all( unsigned int dcn_find_dcfclk_suits_all(
const struct dc *dc, const struct dc *dc,
struct clocks_value *clocks); struct dc_clocks *clocks);
void dcn_bw_update_from_pplib(struct dc *dc); void dcn_bw_update_from_pplib(struct dc *dc);
void dcn_bw_notify_pplib_of_wm_ranges(struct dc *dc); void dcn_bw_notify_pplib_of_wm_ranges(struct dc *dc);
......
...@@ -27,23 +27,7 @@ ...@@ -27,23 +27,7 @@
#define __DISPLAY_CLOCK_H__ #define __DISPLAY_CLOCK_H__
#include "dm_services_types.h" #include "dm_services_types.h"
#include "dc.h"
struct clocks_value {
int dispclk_in_khz;
int max_pixelclk_in_khz;
int max_non_dp_phyclk_in_khz;
int max_dp_phyclk_in_khz;
bool dispclk_notify_pplib_done;
bool pixelclk_notify_pplib_done;
bool phyclk_notigy_pplib_done;
int dcfclock_in_khz;
int dppclk_in_khz;
int mclk_in_khz;
int phyclk_in_khz;
int common_vdd_level;
};
/* Structure containing all state-dependent clocks /* Structure containing all state-dependent clocks
* (dependent on "enum clocks_state") */ * (dependent on "enum clocks_state") */
...@@ -56,9 +40,11 @@ struct display_clock { ...@@ -56,9 +40,11 @@ struct display_clock {
struct dc_context *ctx; struct dc_context *ctx;
const struct display_clock_funcs *funcs; const struct display_clock_funcs *funcs;
bool dispclk_notify_pplib_done;
bool phyclk_notify_pplib_done;
enum dm_pp_clocks_state max_clks_state; enum dm_pp_clocks_state max_clks_state;
enum dm_pp_clocks_state cur_min_clks_state; enum dm_pp_clocks_state cur_min_clks_state;
struct clocks_value cur_clocks_value; struct dc_clocks clks;
}; };
struct display_clock_funcs { struct display_clock_funcs {
......
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