mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 22:14:54 +00:00
riscv: 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: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
22fcd1da55
commit
b7d029bb8a
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ struct arch_global_data {
|
|||
ulong available_harts;
|
||||
#endif
|
||||
#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
|
||||
#ifdef CONFIG_SMBIOS
|
||||
ulong smbios_start; /* Start address of SMBIOS table */
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue