Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Felipe Balbi | e564d59 | 2017-07-06 14:41:52 +0300 | [diff] [blame] | 2 | /* |
3 | * Copyright (c) 2017 Intel Corporation | ||||
Felipe Balbi | e564d59 | 2017-07-06 14:41:52 +0300 | [diff] [blame] | 4 | */ |
5 | |||||
Simon Glass | 1fa70f8 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 6 | #include <cpu_func.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 7 | #include <init.h> |
Felipe Balbi | e564d59 | 2017-07-06 14:41:52 +0300 | [diff] [blame] | 8 | #include <asm/u-boot-x86.h> |
9 | |||||
Felipe Balbi | e564d59 | 2017-07-06 14:41:52 +0300 | [diff] [blame] | 10 | /* |
11 | * Miscellaneous platform dependent initializations | ||||
12 | */ | ||||
13 | int arch_cpu_init(void) | ||||
14 | { | ||||
15 | return x86_cpu_init_f(); | ||||
16 | } | ||||
17 | |||||
18 | int checkcpu(void) | ||||
19 | { | ||||
20 | return 0; | ||||
21 | } |