Skip to content

Commit 2ff33c7

Browse files
sohaibndalexdeucher
authored andcommitted
drm/amd/display: increased min_dcfclk_mhz and min_fclk_mhz
[why] Originally, PMFW said min FCLK is 300Mhz, but min DCFCLK can be increased to 400Mhz because min FCLK is now 600Mhz so FCLK >= 1.5 * DCFCLK hardware requirement will still be satisfied. Increasing min DCFCLK addresses underflow issues (underflow occurs when phantom pipe is turned on for some Sub-Viewport configs). [how] Increasing DCFCLK by raising the min_dcfclk_mhz Reviewed-by: Chaitanya Dhere <chaitanya.dhere@amd.com> Reviewed-by: Alvin Lee <alvin.lee2@amd.com> Acked-by: Tom Chung <chiahsuan.chung@amd.com> Signed-off-by: Sohaib Nadeem <sohaib.nadeem@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent 514312c commit 2ff33c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2753,7 +2753,7 @@ static int build_synthetic_soc_states(bool disable_dc_mode_overwrite, struct clk
27532753
struct _vcs_dpi_voltage_scaling_st entry = {0};
27542754
struct clk_limit_table_entry max_clk_data = {0};
27552755

2756-
unsigned int min_dcfclk_mhz = 199, min_fclk_mhz = 299;
2756+
unsigned int min_dcfclk_mhz = 399, min_fclk_mhz = 599;
27572757

27582758
static const unsigned int num_dcfclk_stas = 5;
27592759
unsigned int dcfclk_sta_targets[DC__VOLTAGE_STATES] = {199, 615, 906, 1324, 1564};

0 commit comments

Comments
 (0)