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