diff options
author | andy.hu <andy.hu@starfivetech.com> | 2024-01-15 04:27:20 +0300 |
---|---|---|
committer | andy.hu <andy.hu@starfivetech.com> | 2024-01-15 04:27:20 +0300 |
commit | 8500f4f5f6abc9da7b30666aa1bd75868fd597be (patch) | |
tree | e4cd7240f83489b91d19f99a556b94810a9ae905 | |
parent | 053e9d112865f5ea2e79f0100455584796219805 (diff) | |
parent | 0db35bf792c8f8c483930c064cbbd2db6703879f (diff) | |
download | linux-openwrt-6.1.y.tar.xz |
Merge branch 'CR_8950_openwrt-6.1_pll0-1.5G_hal.feng' into 'openwrt-6.1.y'JH7110_OpenWRT_6.1_v0.1.0openwrt-6.1.y
CR_8950_openwrt-6.1_pll0-1.5G_hal.feng
See merge request sbc/linux!187
-rw-r--r-- | drivers/clk/starfive/clk-starfive-jh7110-sys.c | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/drivers/clk/starfive/clk-starfive-jh7110-sys.c b/drivers/clk/starfive/clk-starfive-jh7110-sys.c index d46c7a3b782d..73bb317542e0 100644 --- a/drivers/clk/starfive/clk-starfive-jh7110-sys.c +++ b/drivers/clk/starfive/clk-starfive-jh7110-sys.c @@ -7,6 +7,7 @@ */ #include <linux/auxiliary_bus.h> +#include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/init.h> #include <linux/io.h> @@ -389,6 +390,7 @@ static int __init jh7110_syscrg_probe(struct platform_device *pdev) struct jh71x0_clk_priv *priv; unsigned int idx; int ret; + struct clk *pllclk; priv = devm_kzalloc(&pdev->dev, struct_size(priv, reg, JH7110_SYSCLK_END), @@ -462,7 +464,52 @@ static int __init jh7110_syscrg_probe(struct platform_device *pdev) if (ret) return ret; - return jh7110_reset_controller_register(priv, "rst-sys", 0); + ret = jh7110_reset_controller_register(priv, "rst-sys", 0); + if (ret) + return ret; + + /* + * Set PLL0 rate to 1.5GHz + * In order to not affect the cpu when the PLL0 rate is changing, + * we need to switch the parent of cpu_root clock to osc clock first, + * and then switch back after setting the PLL0 rate. + */ + pllclk = clk_get(priv->dev, "pll0_out"); + if (!IS_ERR(pllclk)) { + struct clk *osc = clk_get(&pdev->dev, "osc"); + struct clk *cpu_root = priv->reg[JH7110_SYSCLK_CPU_ROOT].hw.clk; + struct clk *cpu_core = priv->reg[JH7110_SYSCLK_CPU_CORE].hw.clk; + + if (IS_ERR(osc)) { + clk_put(pllclk); + return PTR_ERR(osc); + } + + /* + * CPU need voltage regulation by CPUfreq if set 1.5GHz. + * So in this driver, cpu_core need to be set the divider to be 2 first + * and will be 750M after setting parent. + */ + ret = clk_set_rate(cpu_core, clk_get_rate(cpu_core) / 2); + if (ret) + goto failed_set; + + ret = clk_set_parent(cpu_root, osc); + if (ret) + goto failed_set; + + ret = clk_set_rate(pllclk, 1500000000); + if (ret) + goto failed_set; + + ret = clk_set_parent(cpu_root, pllclk); + +failed_set: + clk_put(pllclk); + clk_put(osc); + } + + return ret; } static const struct of_device_id jh7110_syscrg_match[] = { |