Toshifumi NISHINAGA | 65bfb9c | 2016-07-08 01:02:24 +0900 | [diff] [blame^] | 1 | /* |
2 | * (C) Copyright 2015 | ||||
3 | * Kamil Lulko, <kamil.lulko@gmail.com> | ||||
4 | * | ||||
5 | * SPDX-License-Identifier: GPL-2.0+ | ||||
6 | */ | ||||
7 | |||||
8 | #include <common.h> | ||||
9 | #include <asm/io.h> | ||||
10 | #include <asm/armv7m.h> | ||||
11 | #include <asm/arch/stm32.h> | ||||
12 | |||||
13 | u32 get_cpu_rev(void) | ||||
14 | { | ||||
15 | return 0; | ||||
16 | } | ||||
17 | |||||
18 | int arch_cpu_init(void) | ||||
19 | { | ||||
20 | configure_clocks(); | ||||
21 | |||||
22 | return 0; | ||||
23 | } | ||||
24 | |||||
25 | void s_init(void) | ||||
26 | { | ||||
27 | } |