ARM: uniphier: fix DRAM init poll address for LD4, Pro4, sLD8
The status register should be polled. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
efaa22e426
commit
a8b66ac87c
@ -149,7 +149,7 @@ static int umc_ch_init(void __iomem *dc_base, void __iomem *ca_base,
|
||||
int ret;
|
||||
|
||||
writel(UMC_INITSET_INIT1EN, dc_base + UMC_INITSET);
|
||||
while (readl(dc_base + UMC_INITSET) & UMC_INITSTAT_INIT1ST)
|
||||
while (readl(dc_base + UMC_INITSTAT) & UMC_INITSTAT_INIT1ST)
|
||||
cpu_relax();
|
||||
|
||||
writel(0x00000101, dc_base + UMC_DIOCTLA);
|
||||
|
@ -137,7 +137,7 @@ static int umc_ch_init(void __iomem *dc_base, void __iomem *ca_base,
|
||||
int phy, ret;
|
||||
|
||||
writel(UMC_INITSET_INIT1EN, dc_base + UMC_INITSET);
|
||||
while (readl(dc_base + UMC_INITSET) & UMC_INITSTAT_INIT1ST)
|
||||
while (readl(dc_base + UMC_INITSTAT) & UMC_INITSTAT_INIT1ST)
|
||||
cpu_relax();
|
||||
|
||||
for (phy = 0; phy < nr_phy; phy++) {
|
||||
|
@ -152,7 +152,7 @@ static int umc_ch_init(void __iomem *dc_base, void __iomem *ca_base,
|
||||
int ret;
|
||||
|
||||
writel(UMC_INITSET_INIT1EN, dc_base + UMC_INITSET);
|
||||
while (readl(dc_base + UMC_INITSET) & UMC_INITSTAT_INIT1ST)
|
||||
while (readl(dc_base + UMC_INITSTAT) & UMC_INITSTAT_INIT1ST)
|
||||
cpu_relax();
|
||||
|
||||
writel(0x00000101, dc_base + UMC_DIOCTLA);
|
||||
|
Loading…
Reference in New Issue
Block a user