blob: fcf2ad282a76f08fc90047229db1e300349847e2 [file] [log] [blame]
Masahiro Yamada3365b4e2015-07-21 14:04:22 +09001/*
2 * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <linux/io.h>
9#include <mach/sc-regs.h>
10
11void 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}