aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-12-19 16:04:02 +0100
committerSimon Glass <sjg@chromium.org>2024-01-07 13:49:15 -0700
commit22fcd1da5511cef43ca2252c1d7b66c99416f0fd (patch)
treed253031313392f0964394f9eba24ba36a274ec20
parent27a66fc3f3102bf88df5d7569e3aae88355c6e47 (diff)
downloadu-boot-22fcd1da5511cef43ca2252c1d7b66c99416f0fd.zip
u-boot-22fcd1da5511cef43ca2252c1d7b66c99416f0fd.tar.gz
u-boot-22fcd1da5511cef43ca2252c1d7b66c99416f0fd.tar.bz2
arm: add ACPI fields to global data
Add fields for the location of ACPI tables to the global data. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--arch/arm/include/asm/global_data.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h
index 2bb978d..452bcd1 100644
--- a/arch/arm/include/asm/global_data.h
+++ b/arch/arm/include/asm/global_data.h
@@ -18,7 +18,12 @@ struct arch_global_data {
#if defined(CONFIG_FSL_ESDHC) || defined(CONFIG_FSL_ESDHC_IMX)
u32 sdhc_clk;
#endif
-
+#if CONFIG_IS_ENABLED(ACPI)
+ ulong table_start; /* Start address of ACPI tables */
+ ulong table_end; /* End address of ACPI tables */
+ ulong table_start_high; /* Start address of high ACPI tables */
+ ulong table_end_high; /* End address of high ACPI tables */
+#endif
#if defined(CONFIG_FSL_ESDHC)
u32 sdhc_per_clk;
#endif