mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
5894ca007d
These are used by Panasonic UniPhier SoC family. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
18 lines
292 B
C
18 lines
292 B
C
/*
|
|
* Copyright (C) 2011-2014 Panasonic Corporation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/io.h>
|
|
#include <asm/arch/sc-regs.h>
|
|
|
|
void enable_dpll_ssc(void)
|
|
{
|
|
u32 tmp;
|
|
|
|
tmp = readl(SC_DPLLCTRL);
|
|
tmp |= SC_DPLLCTRL_SSC_EN;
|
|
writel(tmp, SC_DPLLCTRL);
|
|
}
|