Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 1fa70f8 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 8 | #include <fdtdec.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 10 | #include <netdev.h> |
| 11 | |
| 12 | int arch_cpu_init(void) |
| 13 | { |
Bin Meng | 90e565e | 2018-06-12 08:36:25 -0700 | [diff] [blame] | 14 | return x86_cpu_init_f(); |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 15 | } |
| 16 | |
Simon Glass | ee7c36f | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 17 | int checkcpu(void) |
| 18 | { |
| 19 | return 0; |
| 20 | } |
| 21 | |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 22 | int print_cpuinfo(void) |
| 23 | { |
| 24 | return default_print_cpuinfo(); |
| 25 | } |
| 26 | |
Simon Glass | 75ece5f | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 27 | void board_final_init(void) |
Ben Stoltz | ab76a47 | 2015-08-04 12:33:46 -0600 | [diff] [blame] | 28 | { |
| 29 | } |
| 30 | |
| 31 | int misc_init_r(void) |
| 32 | { |
| 33 | return 0; |
| 34 | } |