Bin Meng | 4374139 | 2016-02-17 00:16:21 -0800 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #include <common.h> | ||||
8 | #include <asm/post.h> | ||||
9 | #include <asm/processor.h> | ||||
10 | |||||
11 | int arch_cpu_init(void) | ||||
12 | { | ||||
Bin Meng | 4374139 | 2016-02-17 00:16:21 -0800 | [diff] [blame] | 13 | post_code(POST_CPU_INIT); |
14 | |||||
Masahiro Yamada | 0a8547a | 2016-09-06 22:17:36 +0900 | [diff] [blame] | 15 | return x86_cpu_init_f(); |
Bin Meng | 4374139 | 2016-02-17 00:16:21 -0800 | [diff] [blame] | 16 | } |