mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
fcc238baee
Now PLLs for DRAM controller are initialized in SPL, and the others in U-Boot proper. Setting up all of them in a single directory will be helpful when we want to share code between SPL and U-Boot proper. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
40 lines
955 B
C
40 lines
955 B
C
/*
|
|
* Copyright (C) 2015 Masahiro Yamada <yamada.m@jp.panasonic.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include "../init.h"
|
|
#include "../sc-regs.h"
|
|
|
|
int uniphier_pro5_early_clk_init(const struct uniphier_board_data *bd)
|
|
{
|
|
u32 tmp;
|
|
|
|
/*
|
|
* deassert reset
|
|
* UMCA2: Ch1 (DDR3)
|
|
* UMCA1, UMC31: Ch0 (WIO1)
|
|
* UMCA0, UMC30: Ch0 (WIO0)
|
|
*/
|
|
tmp = readl(SC_RSTCTRL4);
|
|
tmp |= SC_RSTCTRL4_NRST_UMCSB | SC_RSTCTRL4_NRST_UMCA2 |
|
|
SC_RSTCTRL4_NRST_UMCA1 | SC_RSTCTRL4_NRST_UMCA0 |
|
|
SC_RSTCTRL4_NRST_UMC31 | SC_RSTCTRL4_NRST_UMC30;
|
|
writel(tmp, SC_RSTCTRL4);
|
|
readl(SC_RSTCTRL); /* dummy read */
|
|
|
|
/* provide clocks */
|
|
tmp = readl(SC_CLKCTRL);
|
|
tmp |= SC_CLKCTRL_CEN_SBC | SC_CLKCTRL_CEN_PERI;
|
|
writel(tmp, SC_CLKCTRL);
|
|
tmp = readl(SC_CLKCTRL4);
|
|
tmp |= SC_CLKCTRL4_CEN_UMCSB | SC_CLKCTRL4_CEN_UMC1 |
|
|
SC_CLKCTRL4_CEN_UMC0;
|
|
writel(tmp, SC_CLKCTRL4);
|
|
readl(SC_CLKCTRL4); /* dummy read */
|
|
|
|
return 0;
|
|
}
|