2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-10-03 10:21:06 +00:00
|
|
|
/*
|
2016-10-17 13:18:03 +00:00
|
|
|
* Copyright (C) 2011-2015 Panasonic Corporation
|
|
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
2014-10-03 10:21:06 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-29 08:30:00 +00:00
|
|
|
#include <linux/io.h>
|
2016-01-08 16:51:13 +00:00
|
|
|
|
|
|
|
#include "../init.h"
|
|
|
|
#include "../sc-regs.h"
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2016-03-30 11:17:02 +00:00
|
|
|
void uniphier_ld4_clk_init(void)
|
2014-10-03 10:21:06 +00:00
|
|
|
{
|
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
/* deassert reset */
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_RSTCTRL);
|
2015-02-26 17:26:51 +00:00
|
|
|
#ifdef CONFIG_NAND_DENALI
|
|
|
|
tmp |= SC_RSTCTRL_NRST_NAND;
|
|
|
|
#endif
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_RSTCTRL);
|
|
|
|
readl(sc_base + SC_RSTCTRL); /* dummy read */
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2016-03-30 11:17:42 +00:00
|
|
|
/* provide clocks */
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_CLKCTRL);
|
2015-02-26 17:26:51 +00:00
|
|
|
#ifdef CONFIG_NAND_DENALI
|
|
|
|
tmp |= SC_CLKCTRL_CEN_NAND;
|
|
|
|
#endif
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_CLKCTRL);
|
|
|
|
readl(sc_base + SC_CLKCTRL); /* dummy read */
|
2014-10-03 10:21:06 +00:00
|
|
|
}
|