2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-08-04 12:33:46 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 12:57:34 -07:00
|
|
|
#include <cpu_func.h>
|
2015-08-04 12:33:46 -06:00
|
|
|
#include <fdtdec.h>
|
2020-05-10 11:40:02 -06:00
|
|
|
#include <init.h>
|
2015-08-04 12:33:46 -06:00
|
|
|
#include <netdev.h>
|
|
|
|
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
2018-06-12 08:36:25 -07:00
|
|
|
return x86_cpu_init_f();
|
2015-08-04 12:33:46 -06:00
|
|
|
}
|
|
|
|
|
2017-03-28 10:27:30 -06:00
|
|
|
int checkcpu(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-04 12:33:46 -06:00
|
|
|
int print_cpuinfo(void)
|
|
|
|
{
|
|
|
|
return default_print_cpuinfo();
|
|
|
|
}
|
|
|
|
|
2020-07-16 21:22:38 -06:00
|
|
|
void board_final_init(void)
|
2015-08-04 12:33:46 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|