2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-09-21 22:42:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Socionext Inc.
|
|
|
|
*/
|
|
|
|
|
2017-08-26 08:57:58 +00:00
|
|
|
#include <linux/delay.h>
|
2016-09-21 22:42:19 +00:00
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include "../init.h"
|
|
|
|
#include "../sc64-regs.h"
|
|
|
|
#include "pll.h"
|
|
|
|
|
2017-08-26 08:57:59 +00:00
|
|
|
/* PLL type: SSC */
|
2019-07-10 11:07:41 +00:00
|
|
|
#define SC_CPLLCTRL 0x1400 /* CPU/ARM */
|
|
|
|
#define SC_SPLLCTRL 0x1410 /* misc */
|
|
|
|
#define SC_MPLLCTRL 0x1430 /* DSP */
|
|
|
|
#define SC_VSPLLCTRL 0x1440 /* Video codec, VPE etc. */
|
|
|
|
#define SC_DPLLCTRL 0x1460 /* DDR memory */
|
2017-08-26 08:57:59 +00:00
|
|
|
|
|
|
|
/* PLL type: VPLL27 */
|
2019-07-10 11:07:41 +00:00
|
|
|
#define SC_VPLL27FCTRL 0x1500
|
|
|
|
#define SC_VPLL27ACTRL 0x1520
|
2017-08-26 08:57:59 +00:00
|
|
|
|
2016-09-21 22:42:19 +00:00
|
|
|
void uniphier_ld11_pll_init(void)
|
|
|
|
{
|
|
|
|
uniphier_ld20_sscpll_init(SC_CPLLCTRL, 1960, 1, 2); /* 2000MHz -> 1960MHz */
|
|
|
|
/* do nothing for SPLL */
|
|
|
|
uniphier_ld20_sscpll_init(SC_MPLLCTRL, 1600, 1, 2); /* 1500MHz -> 1600MHz */
|
|
|
|
uniphier_ld20_sscpll_init(SC_VSPLLCTRL, UNIPHIER_PLL_FREQ_DEFAULT, 0, 2);
|
|
|
|
|
2017-02-21 14:00:35 +00:00
|
|
|
uniphier_ld20_sscpll_set_regi(SC_MPLLCTRL, 5);
|
|
|
|
|
2016-09-21 22:42:19 +00:00
|
|
|
mdelay(1);
|
|
|
|
|
|
|
|
uniphier_ld20_sscpll_ssc_en(SC_CPLLCTRL);
|
|
|
|
uniphier_ld20_sscpll_ssc_en(SC_MPLLCTRL);
|
|
|
|
uniphier_ld20_sscpll_ssc_en(SC_VSPLLCTRL);
|
2016-10-08 04:25:23 +00:00
|
|
|
uniphier_ld20_sscpll_ssc_en(SC_DPLLCTRL);
|
2016-09-21 22:42:19 +00:00
|
|
|
|
|
|
|
uniphier_ld20_vpll27_init(SC_VPLL27FCTRL);
|
|
|
|
uniphier_ld20_vpll27_init(SC_VPLL27ACTRL);
|
|
|
|
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(0, sc_base + SC_CA53_GEARSET); /* Gear0: CPLL/2 */
|
|
|
|
writel(SC_CA_GEARUPD, sc_base + SC_CA53_GEARUPD);
|
2016-09-21 22:42:19 +00:00
|
|
|
}
|