2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-01-15 05:59:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2014 Panasonic Corporation
|
|
|
|
* Copyright (C) 2015-2017 Socionext Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <spl.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include "../init.h"
|
|
|
|
#include "../sc-regs.h"
|
|
|
|
|
2017-08-13 00:01:13 +00:00
|
|
|
void uniphier_ld4_early_clk_init(void)
|
2017-01-15 05:59:03 +00:00
|
|
|
{
|
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
/* deassert reset */
|
|
|
|
if (spl_boot_device() != BOOT_DEVICE_NAND) {
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_RSTCTRL);
|
2017-01-15 05:59:03 +00:00
|
|
|
tmp &= ~SC_RSTCTRL_NRST_NAND;
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_RSTCTRL);
|
2017-01-15 05:59:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* provide clocks */
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_CLKCTRL);
|
2017-01-15 05:59:03 +00:00
|
|
|
tmp |= SC_CLKCTRL_CEN_SBC | SC_CLKCTRL_CEN_PERI;
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_CLKCTRL);
|
|
|
|
readl(sc_base + SC_CLKCTRL); /* dummy read */
|
2017-01-15 05:59:03 +00:00
|
|
|
}
|