blob: 92f34bbbcb73a9936c3cc38d7928410909fe4307 [file] [log] [blame]
Kever Yang52ead2f2016-08-12 17:58:12 +08001/*
2 * Copyright (c) 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6#include <asm/io.h>
7#include <asm/arch/hardware.h>
8
9#define GRF_SOC_CON2 0x24c
10
11int arch_cpu_init(void)
12{
13 /* We do some SoC one time setting here. */
14
15 /* Use rkpwm by default */
16 rk_setreg(GRF_SOC_CON2, 1 << 0);
17
18 return 0;
19}