Philipp Tomsich | 1620d35 | 2017-07-13 01:36:39 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | #include <common.h> | ||||
7 | #include <dm.h> | ||||
8 | #include <ram.h> | ||||
9 | #include <asm/io.h> | ||||
10 | #include <asm/arch/clock.h> | ||||
11 | #include <asm/arch/grf_rk3368.h> | ||||
12 | #include <asm/arch/timer.h> | ||||
13 | #include <syscon.h> | ||||
14 | |||||
15 | DECLARE_GLOBAL_DATA_PTR; | ||||
16 | |||||
17 | int mach_cpu_init(void) | ||||
18 | { | ||||
19 | return 0; | ||||
20 | } | ||||
21 | |||||
22 | int board_init(void) | ||||
23 | { | ||||
24 | return 0; | ||||
25 | } |