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