aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/cpu/armv7/sunxi/clock.c
blob: 47fb70ff7cf845b56b93029ce2a9fc235987cfac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * (C) Copyright 2007-2012
 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
 * Tom Cubie <tangliang@allwinnertech.com>
 *
 * (C) Copyright 2013 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/arch/gpio.h>
#include <asm/arch/sys_proto.h>

int clock_init(void)
{
#ifdef CONFIG_SPL_BUILD
	clock_init_safe();
#endif
	clock_init_uart();

	return 0;
}