]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-uniphier/ph1-pro4/pll_spectrum.c
ARM: UniPhier: move SoC sources to mach-uniphier
[karo-tx-uboot.git] / arch / arm / mach-uniphier / ph1-pro4 / pll_spectrum.c
1 /*
2  * Copyright (C) 2011-2014 Panasonic Corporation
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <asm/io.h>
9 #include <asm/arch/sc-regs.h>
10
11 void enable_dpll_ssc(void)
12 {
13         u32 tmp;
14
15         tmp = readl(SC_DPLLCTRL);
16         tmp |= SC_DPLLCTRL_SSC_EN;
17         writel(tmp, SC_DPLLCTRL);
18 }