mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
6717e15447
<common.h> pulls in a lot of bloat. <common.h> is unneeded in most of places. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Simon Glass <sjg@chromium.org>
59 lines
1.1 KiB
C
59 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2013-2014 Panasonic Corporation
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
*/
|
|
|
|
#include <linux/delay.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/io.h>
|
|
|
|
#include "../init.h"
|
|
#include "../sc-regs.h"
|
|
|
|
#undef DPLL_SSC_RATE_1PER
|
|
|
|
int uniphier_pro4_dpll_init(const struct uniphier_board_data *bd)
|
|
{
|
|
unsigned int dram_freq = bd->dram_freq;
|
|
u32 tmp;
|
|
|
|
/*
|
|
* Set Frequency
|
|
* Set 0xc(1600MHz)/0xd(1333MHz)/0xe(1066MHz)
|
|
* to FOUT ( DPLLCTRL.bit[29:20] )
|
|
*/
|
|
tmp = readl(sc_base + SC_DPLLCTRL);
|
|
tmp &= ~(0x000f0000);
|
|
switch (dram_freq) {
|
|
case 1333:
|
|
tmp |= 0x000d0000;
|
|
break;
|
|
case 1600:
|
|
tmp |= 0x000c0000;
|
|
break;
|
|
default:
|
|
pr_err("Unsupported frequency");
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Set Moduration rate
|
|
* Set 0x0(1%)/0x1(2%) to SSC_RATE(DPLLCTRL.bit[15])
|
|
*/
|
|
#if defined(DPLL_SSC_RATE_1PER)
|
|
tmp &= ~0x00008000;
|
|
#else
|
|
tmp |= 0x00008000;
|
|
#endif
|
|
writel(tmp, sc_base + SC_DPLLCTRL);
|
|
|
|
tmp = readl(sc_base + SC_DPLLCTRL2);
|
|
tmp |= SC_DPLLCTRL2_NRSTDS;
|
|
writel(tmp, sc_base + SC_DPLLCTRL2);
|
|
|
|
/* Wait until dpll gets stable */
|
|
udelay(500);
|
|
|
|
return 0;
|
|
}
|