Skip to content

Commit 5b7a4d3

Browse files
quic-varadaandersson
authored andcommitted
clk: qcom: apss-ipq-pll: Fix 'l' value for ipq5332_pll_config
The earlier 'l' value of 0x3e is for 1.5GHz. Not all SKUs support this frequency. Hence set it to 0x2d to get 1.1GHz which is supported in all SKUs. The frequency can still increase above this initial configuration made here when the cpufreq driver picks a different OPP. Reviewed-by: Dmitry Baryshkov <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Fixes: c7ef7fb ("clk: qcom: apss-ipq-pll: add support for IPQ5332") Signed-off-by: Kathiravan T <[email protected]> Signed-off-by: Varadarajan Narayanan <[email protected]> Link: https://lore.kernel.org/r/00e6be6cb9cee56628123a64ade118d0a752018b.1697781921.git.quic_varada@quicinc.com Signed-off-by: Bjorn Andersson <[email protected]>
1 parent 267e291 commit 5b7a4d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/qcom/apss-ipq-pll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ static struct clk_alpha_pll ipq_pll_stromer_plus = {
7474
};
7575

7676
static const struct alpha_pll_config ipq5332_pll_config = {
77-
.l = 0x3e,
77+
.l = 0x2d,
7878
.config_ctl_val = 0x4001075b,
7979
.config_ctl_hi_val = 0x304,
8080
.main_output_mask = BIT(0),

0 commit comments

Comments
 (0)