summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2022-09-20 16:19:09 +0800
committerJason Liu <jason.hui.liu@nxp.com>2022-10-08 21:33:43 +0800
commit16e8414193985cf7a171f7b79e12ff30700157ba (patch)
tree524aaf502b895cdf88bbfe5d8e8acb98ab81eba1
parent50758c92e8fd1544a2d47da0b483a741863b7981 (diff)
LFU-400 imx8ulp: clock: Clear dividers in PLL3DIV_PFD registers
At present, in cgc1_pll3_init we don't set the pll3pfd div values, just use the default 0. But when MROM-3029 is applied, ROM will set PLL3 pfd1div2 to 1 and pfd2div1 to 3. This finally causes some clocks' rate decreased, for example USDHC. So clear the PLL3DIV_PFD dividers to get correct rate. Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> (cherry picked from commit 91eb5a47b996b531c5fda5e421d35f54f486c548)
-rw-r--r--arch/arm/mach-imx/imx8ulp/cgc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx8ulp/cgc.c b/arch/arm/mach-imx/imx8ulp/cgc.c
index 3913b17051..d3c0e64cd6 100644
--- a/arch/arm/mach-imx/imx8ulp/cgc.c
+++ b/arch/arm/mach-imx/imx8ulp/cgc.c
@@ -169,6 +169,9 @@ void cgc1_pll3_init(ulong freq)
while (!(readl(&cgc1_regs->pll3pfdcfg) & BIT(30)))
;
+ clrbits_le32(&cgc1_regs->pll3div_pfd0, 0x3f3f3f3f);
+ clrbits_le32(&cgc1_regs->pll3div_pfd1, 0x3f3f3f3f);
+
clrbits_le32(&cgc1_regs->pll3div_pfd0, BIT(7));
clrbits_le32(&cgc1_regs->pll3div_pfd0, BIT(15));
clrbits_le32(&cgc1_regs->pll3div_pfd0, BIT(23));