blob: df2c600be334bbe2109f8fb0a7e6e88867f9908e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Felipe Balbie71de542017-07-06 14:41:52 +03002/*
3 * Copyright (c) 2017 Intel Corporation
Felipe Balbie71de542017-07-06 14:41:52 +03004 */
5
6#include <common.h>
Felipe Balbie71de542017-07-06 14:41:52 +03007#include <asm/u-boot-x86.h>
8
Felipe Balbie71de542017-07-06 14:41:52 +03009/*
10 * Miscellaneous platform dependent initializations
11 */
12int arch_cpu_init(void)
13{
14 return x86_cpu_init_f();
15}
16
17int checkcpu(void)
18{
19 return 0;
20}
21
22int print_cpuinfo(void)
23{
24 return default_print_cpuinfo();
25}