blob: ff9c73ff21d5a6f5b42dac85cecc6ebcd5e0485b [file] [log] [blame]
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +09001/*
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>
Masahiro Yamada95387e22015-02-27 02:26:44 +09009#include <mach/sc-regs.h>
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +090010
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}