Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: qcom: clk-alpha-pll: Increase PLL lock detect poll time

PLL poll for lock detection can take more than 100us for certain type
of Lucid PLLs and also the new PLLs types(Lucid EVO), thus update to 200us.

Signed-off-by: Taniya Das <tdas@codeaurora.org>
Link: https://lore.kernel.org/r/1640018638-19436-2-git-send-email-tdas@codeaurora.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Taniya Das and committed by
Stephen Boyd
a5273ed2 fa55b7dc

+1 -1
+1 -1
drivers/clk/qcom/clk-alpha-pll.c
··· 204 204 if (ret) 205 205 return ret; 206 206 207 - for (count = 100; count > 0; count--) { 207 + for (count = 200; count > 0; count--) { 208 208 ret = regmap_read(pll->clkr.regmap, PLL_MODE(pll), &val); 209 209 if (ret) 210 210 return ret;