Message ID | 1503925035-13961-1-git-send-email-yamada.masahiro@socionext.com |
---|---|
State | Accepted |
Commit | 4013bbb1f34cc7f468600eba115fb8cfa0ff5dee |
Headers | show |
Series | ARM: uniphier: fix DSPLL init code for LD20 SoC | expand |
2017-08-28 21:57 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>: > From: Dai Okamura <okamura.dai@socionext.com> > > Signed-off-by: Dai Okamura <okamura.dai@socionext.com> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > --- Applied to u-boot-uniphier. Thanks.
diff --git a/arch/arm/mach-uniphier/clk/pll-base-ld20.c b/arch/arm/mach-uniphier/clk/pll-base-ld20.c index 697eb7aabf01..3aa42f8bfdcd 100644 --- a/arch/arm/mach-uniphier/clk/pll-base-ld20.c +++ b/arch/arm/mach-uniphier/clk/pll-base-ld20.c @@ -88,7 +88,7 @@ int uniphier_ld20_sscpll_set_regi(unsigned long reg_base, unsigned regi) if (!base) return -ENOMEM; - tmp = readl(base + 8); /* SSCPLLCTRL */ + tmp = readl(base + 8); /* SSCPLLCTRL3 */ tmp &= ~SC_PLLCTRL3_REGI_MASK; tmp |= regi << SC_PLLCTRL3_REGI_SHIFT; writel(tmp, base + 8); @@ -133,9 +133,9 @@ int uniphier_ld20_dspll_init(unsigned long reg_base) if (!base) return -ENOMEM; - tmp = readl(base + 8); /* DSPLLCTRL2 */ + tmp = readl(base + 4); /* DSPLLCTRL2 */ tmp |= SC_DSPLLCTRL2_K_LD; - writel(tmp, base + 8); + writel(tmp, base + 4); iounmap(base);