aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/meson
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2022-08-14 23:25:31 +0200
committerJerome Brunet <jbrunet@baylibre.com>2022-11-08 17:05:02 +0100
commitd73406ed2dcfab7d25493ff3a62dd57f0d9c2bf2 (patch)
tree79ee0e88858d7c3784e8fe6bd1982827fdfd3622 /drivers/clk/meson
parentclk: meson: pll: adjust timeout in meson_clk_pll_wait_lock() (diff)
downloadwireguard-linux-d73406ed2dcfab7d25493ff3a62dd57f0d9c2bf2.tar.xz
wireguard-linux-d73406ed2dcfab7d25493ff3a62dd57f0d9c2bf2.zip
clk: meson: pll: add pcie lock retry workaround
The PCIe PLL locking may be unreliable under some circumstance, such as high or low temperature. If the PLL fails to lock, reset it a try again. This helps on the S905X4 Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> [commit message amend] Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Link: https://lore.kernel.org/r/cc80cda0-4dda-2e3e-3fc8-afa97717479b@gmail.com
Diffstat (limited to 'drivers/clk/meson')
-rw-r--r--drivers/clk/meson/clk-pll.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/clk/meson/clk-pll.c b/drivers/clk/meson/clk-pll.c
index f7b59f7389af..5dfb7d38f452 100644
--- a/drivers/clk/meson/clk-pll.c
+++ b/drivers/clk/meson/clk-pll.c
@@ -320,12 +320,16 @@ static int meson_clk_pll_is_enabled(struct clk_hw *hw)
static int meson_clk_pcie_pll_enable(struct clk_hw *hw)
{
- meson_clk_pll_init(hw);
+ int retries = 10;
- if (meson_clk_pll_wait_lock(hw))
- return -EIO;
+ do {
+ meson_clk_pll_init(hw);
+ if (!meson_clk_pll_wait_lock(hw))
+ return 0;
+ pr_info("Retry enabling PCIe PLL clock\n");
+ } while (--retries);
- return 0;
+ return -EIO;
}
static int meson_clk_pll_enable(struct clk_hw *hw)