Commit ccd8ab03 authored by Varadarajan Narayanan's avatar Varadarajan Narayanan Committed by Bjorn Andersson

clk: qcom: ipq5332: Drop set rate parent from gpll0 dependent clocks

IPQ5332's GPLL0's nominal/turbo frequency is 800MHz.
This must not be scaled based on the requirement of
dependent clocks. Hence remove the CLK_SET_RATE_PARENT
flag.

Fixes: 3d89d529 ("clk: qcom: add Global Clock controller (GCC) driver for IPQ5332 SoC")
Signed-off-by: default avatarVaradarajan Narayanan <quic_varada@quicinc.com>
Reviewed-by: default avatarKathiravan T <quic_kathirav@quicinc.com>
Link: https://lore.kernel.org/r/1693474133-10467-1-git-send-email-quic_varada@quicinc.comSigned-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent 07c34b37
...@@ -71,7 +71,6 @@ static struct clk_fixed_factor gpll0_div2 = { ...@@ -71,7 +71,6 @@ static struct clk_fixed_factor gpll0_div2 = {
&gpll0_main.clkr.hw }, &gpll0_main.clkr.hw },
.num_parents = 1, .num_parents = 1,
.ops = &clk_fixed_factor_ops, .ops = &clk_fixed_factor_ops,
.flags = CLK_SET_RATE_PARENT,
}, },
}; };
...@@ -85,7 +84,6 @@ static struct clk_alpha_pll_postdiv gpll0 = { ...@@ -85,7 +84,6 @@ static struct clk_alpha_pll_postdiv gpll0 = {
&gpll0_main.clkr.hw }, &gpll0_main.clkr.hw },
.num_parents = 1, .num_parents = 1,
.ops = &clk_alpha_pll_postdiv_ro_ops, .ops = &clk_alpha_pll_postdiv_ro_ops,
.flags = CLK_SET_RATE_PARENT,
}, },
}; };
......
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