2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-10-03 10:21:06 +00:00
|
|
|
/*
|
2016-09-16 18:33:09 +00:00
|
|
|
* Copyright (C) 2013-2014 Panasonic Corporation
|
|
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
2014-10-03 10:21:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-01-21 09:05:24 +00:00
|
|
|
#include <linux/errno.h>
|
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
|
|
|
|
|
|
|
#undef DPLL_SSC_RATE_1PER
|
|
|
|
|
2016-09-16 18:33:09 +00:00
|
|
|
int uniphier_ld4_dpll_init(const struct uniphier_board_data *bd)
|
2014-10-03 10:21:06 +00:00
|
|
|
{
|
2016-09-16 18:33:09 +00:00
|
|
|
unsigned int dram_freq = bd->dram_freq;
|
2014-10-03 10:21:06 +00:00
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set Frequency
|
|
|
|
* Set 0xc(1600MHz)/0xd(1333MHz)/0xe(1066MHz)
|
|
|
|
* to FOUT (DPLLCTRL.bit[29:20])
|
|
|
|
*/
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_DPLLCTRL);
|
2014-10-03 10:21:06 +00:00
|
|
|
tmp &= ~0x000f0000;
|
2015-09-21 15:27:39 +00:00
|
|
|
switch (dram_freq) {
|
|
|
|
case 1333:
|
|
|
|
tmp |= 0x000d0000;
|
|
|
|
break;
|
|
|
|
case 1600:
|
|
|
|
tmp |= 0x000c0000;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pr_err("Unsupported frequency");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2014-10-03 10:21:06 +00:00
|
|
|
|
|
|
|
#if defined(DPLL_SSC_RATE_1PER)
|
|
|
|
tmp &= ~SC_DPLLCTRL_SSC_RATE;
|
|
|
|
#else
|
|
|
|
tmp |= SC_DPLLCTRL_SSC_RATE;
|
|
|
|
#endif
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_DPLLCTRL);
|
2014-10-03 10:21:06 +00:00
|
|
|
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_DPLLCTRL2);
|
2014-10-03 10:21:06 +00:00
|
|
|
tmp |= SC_DPLLCTRL2_NRSTDS;
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_DPLLCTRL2);
|
2015-09-21 15:27:39 +00:00
|
|
|
|
2016-09-16 18:33:09 +00:00
|
|
|
/* Wait 500 usec until dpll gets stable */
|
|
|
|
udelay(500);
|
2015-09-21 15:27:39 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-10-03 10:21:06 +00:00
|
|
|
}
|