mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 14:40:41 +00:00
ARM: uniphier: fix SSCPLL init code for LD11 SoC
Commit682e09ff9f
("ARM: uniphier: add PLL init code for LD20 SoC") missed to write the computed value to the SSCPLLCTRL2 register. Fixes:682e09ff9f
("ARM: uniphier: add PLL init code for LD20 SoC") Signed-off-by: Dai Okamura <okamura.dai@socionext.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
dc774e69bb
commit
c30c44e799
1 changed files with 1 additions and 0 deletions
|
@ -48,6 +48,7 @@ int uniphier_ld20_sscpll_init(unsigned long reg_base, unsigned int freq,
|
|||
tmp = readl(base + 4);
|
||||
tmp &= ~SC_PLLCTRL2_SSC_JK_MASK;
|
||||
tmp |= (41859 * freq / divn) & SC_PLLCTRL2_SSC_JK_MASK;
|
||||
writel(tmp, base + 4);
|
||||
|
||||
udelay(50);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue