mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
5b66006646
Eliminate the "ph1"_ prefixes from function names because "uniphier_" describes the SoC familiy better. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
21 lines
372 B
C
21 lines
372 B
C
/*
|
|
* Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include "../init.h"
|
|
#include "../sc-regs.h"
|
|
|
|
int uniphier_ld4_enable_dpll_ssc(const struct uniphier_board_data *bd)
|
|
{
|
|
u32 tmp;
|
|
|
|
tmp = readl(SC_DPLLCTRL);
|
|
tmp |= SC_DPLLCTRL_SSC_EN;
|
|
writel(tmp, SC_DPLLCTRL);
|
|
|
|
return 0;
|
|
}
|