summaryrefslogtreecommitdiffstats
path: root/arch/x86/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-09-22 12:45:19 -0600
committerBin Meng <bmeng.cn@gmail.com>2020-09-25 11:27:19 +0800
commitda2c1b8fd9db6ffa6a8de6d11380a90feea725b4 (patch)
treedbc34ab90000f3588d806f0cb5d9e75a4d56d890 /arch/x86/include
parent022256b95b134dc62317d4aba11510add00a0c28 (diff)
downloadu-boot-da2c1b8fd9db6ffa6a8de6d11380a90feea725b4.tar.gz
u-boot-da2c1b8fd9db6ffa6a8de6d11380a90feea725b4.tar.xz
u-boot-da2c1b8fd9db6ffa6a8de6d11380a90feea725b4.zip
x86: apl: Generate required ACPI tables
Add support for generating various ACPI tables for Apollo Lake. Add a few S3 definitions that are needed. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/include')
-rw-r--r--arch/x86/include/asm/arch-apollolake/acpi.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/x86/include/asm/arch-apollolake/acpi.h b/arch/x86/include/asm/arch-apollolake/acpi.h
new file mode 100644
index 0000000000..ed852feee0
--- /dev/null
+++ b/arch/x86/include/asm/arch-apollolake/acpi.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright 2019 Google LLC
+ */
+
+#ifndef _ASM_ARCH_ACPI_H
+#define _ASM_ARCH_ACPI_H
+
+struct acpi_ctx;
+
+/**
+ * apl_acpi_fill_dmar() - Set up the DMAR for APL
+ *
+ * @ctx: ACPI context pointer
+ */
+int apl_acpi_fill_dmar(struct acpi_ctx *ctx);
+
+#endif /* _ASM_ARCH_CPU_H */