]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: imx: Make PLL settings configurable at board level
authorMarek Vasut <marex@denx.de>
Tue, 27 Aug 2024 20:04:27 +0000 (22:04 +0200)
committerFabio Estevam <festevam@gmail.com>
Sat, 31 Aug 2024 01:53:05 +0000 (22:53 -0300)
Staticize intpll_configure(). Add weak board_imx_intpll_override()
function which can be defined at board level to override specific
PLL frequency settings early during boot. This can be used to for
example force faster CPU core clock frequency if the hardware can
handle it.

Example of increasing CPU core clock to 1600 MHz on i.MX8M Plus:
```
int board_imx_intpll_override(enum pll_clocks pll, ulong *freq)
{
       if (pll == ANATOP_ARM_PLL)
               *freq = MHZ(1600);
       return 0;
}
```

Signed-off-by: Marek Vasut <marex@denx.de>
arch/arm/mach-imx/imx8m/clock_imx8mm.c

index de630e940c906fac615005e3dcb0aff795a01281..d7fd102c955591fba81e8948eb1e8ff7289ef2f4 100644 (file)
@@ -181,10 +181,19 @@ void dram_disable_bypass(void)
 }
 #endif
 
-int intpll_configure(enum pll_clocks pll, ulong freq)
+__weak int board_imx_intpll_override(enum pll_clocks pll, ulong *freq)
+{
+       return 0;
+}
+
+static int intpll_configure(enum pll_clocks pll, ulong freq)
 {
        void __iomem *pll_gnrl_ctl, __iomem *pll_div_ctl;
        u32 pll_div_ctl_val, pll_clke_masks;
+       int ret = board_imx_intpll_override(pll, &freq);
+
+       if (ret)
+               return ret;
 
        switch (pll) {
        case ANATOP_SYSTEM_PLL1: