blob: f754489784a727537a0ab4333ae1d31d02a612a7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ben Stoltz3dcdd172015-08-04 12:33:46 -06002/*
3 * Copyright (c) 2015 Google, Inc
Ben Stoltz3dcdd172015-08-04 12:33:46 -06004 */
5
6#include <common.h>
Simon Glass30c7c432019-11-14 12:57:34 -07007#include <cpu_func.h>
Ben Stoltz3dcdd172015-08-04 12:33:46 -06008#include <fdtdec.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Ben Stoltz3dcdd172015-08-04 12:33:46 -060010#include <netdev.h>
11
12int arch_cpu_init(void)
13{
Bin Meng01020232018-06-12 08:36:25 -070014 return x86_cpu_init_f();
Ben Stoltz3dcdd172015-08-04 12:33:46 -060015}
16
Simon Glass76d1d022017-03-28 10:27:30 -060017int checkcpu(void)
18{
19 return 0;
20}
21
Ben Stoltz3dcdd172015-08-04 12:33:46 -060022int print_cpuinfo(void)
23{
24 return default_print_cpuinfo();
25}
26
Simon Glass4021ee62020-07-16 21:22:38 -060027void board_final_init(void)
Ben Stoltz3dcdd172015-08-04 12:33:46 -060028{
29}
30
31int misc_init_r(void)
32{
33 return 0;
34}