Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ben Stoltz | 3dcdd17 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 2 | /* |
3 | * Copyright (c) 2015 Google, Inc | ||||
Ben Stoltz | 3dcdd17 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 4 | */ |
5 | |||||
6 | #include <common.h> | ||||
7 | #include <fdtdec.h> | ||||
8 | #include <netdev.h> | ||||
9 | |||||
10 | int arch_cpu_init(void) | ||||
11 | { | ||||
Bin Meng | 0102023 | 2018-06-12 08:36:25 -0700 | [diff] [blame] | 12 | return x86_cpu_init_f(); |
Ben Stoltz | 3dcdd17 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 13 | } |
14 | |||||
Simon Glass | 76d1d02 | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 15 | int checkcpu(void) |
16 | { | ||||
17 | return 0; | ||||
18 | } | ||||
19 | |||||
Ben Stoltz | 3dcdd17 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 20 | int print_cpuinfo(void) |
21 | { | ||||
22 | return default_print_cpuinfo(); | ||||
23 | } | ||||
24 | |||||
25 | void board_final_cleanup(void) | ||||
26 | { | ||||
27 | } | ||||
28 | |||||
29 | int misc_init_r(void) | ||||
30 | { | ||||
31 | return 0; | ||||
32 | } |