aboutsummaryrefslogtreecommitdiff
path: root/arch/x86
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-04-25 21:58:47 -0600
committerBin Meng <bmeng.cn@gmail.com>2019-05-08 13:02:12 +0800
commit62be5dd8858e4b9c1aea635619be707ec45d4a88 (patch)
tree4b07bd09a0023931fff4d9b4efb603b263fab707 /arch/x86
parent7c2ca877fee42085ad1b6ff24d9d10d91dcd9332 (diff)
downloadu-boot-62be5dd8858e4b9c1aea635619be707ec45d4a88.zip
u-boot-62be5dd8858e4b9c1aea635619be707ec45d4a88.tar.gz
u-boot-62be5dd8858e4b9c1aea635619be707ec45d4a88.tar.bz2
x86: Add a handoff header file
Add an arch-specific handoff header so that we can use the HANDOFF feature on x86 devices. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/include/asm/handoff.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/x86/include/asm/handoff.h b/arch/x86/include/asm/handoff.h
new file mode 100644
index 0000000..4d18d59
--- /dev/null
+++ b/arch/x86/include/asm/handoff.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Architecture-specific SPL handoff information for x86
+ *
+ * Copyright 2018 Google, Inc
+ * Written by Simon Glass <sjg@chromium.org>
+ */
+
+#ifndef __x86_asm_handoff_h
+#define __x86_asm_handoff_h
+
+struct arch_spl_handoff {
+};
+
+#endif