diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-08 09:11:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-08 09:11:53 -0500 |
commit | f28a77589e7505535a4eebdc7269df98f67dbe68 (patch) | |
tree | 69bb9a116ba839ffc101d1ae923485401332294f /arch/arm/include/asm/global_data.h | |
parent | c2c598e87cfe56f5991730762c00733c5aa9a994 (diff) | |
parent | 8c4b37ce97c27ad4e7f83b028d4cd1396a51a36f (diff) |
Merge tag 'dm-next-7jan23' of https://source.denx.de/u-boot/custodians/u-boot-dm into next
switch to SMBIOS3 tables
allow devicetree from bloblist
ACPI support for ARM and RISC-V
Diffstat (limited to 'arch/arm/include/asm/global_data.h')
-rw-r--r-- | arch/arm/include/asm/global_data.h | 7 |
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 2bb978d668..452bcd1b8f 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 |