2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-02-17 00:16:21 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 11:40:02 -06:00
|
|
|
#include <init.h>
|
2016-02-17 00:16:21 -08:00
|
|
|
#include <asm/post.h>
|
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
|
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
|
{
|
|
|
|
|
post_code(POST_CPU_INIT);
|
|
|
|
|
|
2016-09-06 22:17:36 +09:00
|
|
|
return x86_cpu_init_f();
|
2016-02-17 00:16:21 -08:00
|
|
|
}
|