blob: b005bc7d9a0edad15c067ddcedc17588baaa675a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Felipe Balbie564d592017-07-06 14:41:52 +03002/*
3 * Copyright (c) 2017 Intel Corporation
Felipe Balbie564d592017-07-06 14:41:52 +03004 */
5
Simon Glass1fa70f82019-11-14 12:57:34 -07006#include <cpu_func.h>
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Felipe Balbie564d592017-07-06 14:41:52 +03008#include <asm/u-boot-x86.h>
9
Felipe Balbie564d592017-07-06 14:41:52 +030010/*
11 * Miscellaneous platform dependent initializations
12 */
13int arch_cpu_init(void)
14{
15 return x86_cpu_init_f();
16}
17
18int checkcpu(void)
19{
20 return 0;
21}