aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c')
-rw-r--r--roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c b/roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c
new file mode 100644
index 000000000..eb3f362e4
--- /dev/null
+++ b/roms/u-boot/arch/x86/cpu/ivybridge/ivybridge.c
@@ -0,0 +1,16 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
+ */
+
+#include <common.h>
+#include <init.h>
+#include <asm/post.h>
+#include <asm/processor.h>
+
+int arch_cpu_init(void)
+{
+ post_code(POST_CPU_INIT);
+
+ return x86_cpu_init_f();
+}