blob: 8d10fd6c549cc623145c07efbcc1b35df4d945ae [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng5dbe3042016-02-17 00:16:21 -08002/*
3 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Bin Meng5dbe3042016-02-17 00:16:21 -08004 */
5
6#include <common.h>
7#include <asm/post.h>
8#include <asm/processor.h>
9
10int arch_cpu_init(void)
11{
Bin Meng5dbe3042016-02-17 00:16:21 -080012 post_code(POST_CPU_INIT);
13
Masahiro Yamada17103212016-09-06 22:17:36 +090014 return x86_cpu_init_f();
Bin Meng5dbe3042016-02-17 00:16:21 -080015}