summaryrefslogtreecommitdiff
path: root/drivers/clk/qcom/a53-pll.c
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2021-07-04 05:40:29 +0300
committerStephen Boyd <sboyd@kernel.org>2021-08-06 04:52:11 +0300
commit0dfe9bf91f9f2993ae73c603571a85e3c6e6fc24 (patch)
tree9a5bad9fd513b87bc7221284762df95aca9e8159 /drivers/clk/qcom/a53-pll.c
parent945cb3a105aef63af1354e0fbe10a0d1ca7a32c2 (diff)
downloadlinux-0dfe9bf91f9f2993ae73c603571a85e3c6e6fc24.tar.xz
clk: qcom: apcs-msm8916: Flag a53mux instead of a53pll as critical
The clock source for MSM8916 cpu cores is like below. |\ a53pll --------| \ a53mux +------+ | |------------| cpus | gpll0_vote --------| / +------+ |/ So a53mux rather than a53pll is actually the parent clock of cpu cores. It makes more sense to flag a53mux as critical instead, so that when either a53pll or gpll0_vote is used by cpu cores, the clock will be kept enabled while the other can be disabled. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Link: https://lore.kernel.org/r/20210704024032.11559-2-shawn.guo@linaro.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/qcom/a53-pll.c')
-rw-r--r--drivers/clk/qcom/a53-pll.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/qcom/a53-pll.c b/drivers/clk/qcom/a53-pll.c
index af6ac17c7dae..d6756bd777ce 100644
--- a/drivers/clk/qcom/a53-pll.c
+++ b/drivers/clk/qcom/a53-pll.c
@@ -70,7 +70,6 @@ static int qcom_a53pll_probe(struct platform_device *pdev)
init.parent_names = (const char *[]){ "xo" };
init.num_parents = 1;
init.ops = &clk_pll_sr2_ops;
- init.flags = CLK_IS_CRITICAL;
pll->clkr.hw.init = &init;
ret = devm_clk_register_regmap(dev, &pll->clkr);