From: Simon Glass Date: Sun, 12 Nov 2023 20:55:09 +0000 (-0700) Subject: efi: Collect the ACPI tables in the app X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=a900d88e1af013362bb9243530af1bb80935389b;p=u-boot.git efi: Collect the ACPI tables in the app Locate these so that they can be displayed using the 'acpi' command. Signed-off-by: Simon Glass Reviewed-by: Heinrich Schuchardt --- diff --git a/lib/efi/efi_app.c b/lib/efi/efi_app.c index 2209410f35..c5eb816655 100644 --- a/lib/efi/efi_app.c +++ b/lib/efi/efi_app.c @@ -12,18 +12,21 @@ #include #include #include +#include +#include #include #include #include +#include +#include #include #include #include -#include -#include -#include +#include #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; @@ -320,6 +323,19 @@ int dm_scan_other(bool pre_reloc_only) return 0; } +static void scan_tables(struct efi_system_table *sys_table) +{ + efi_guid_t acpi = EFI_ACPI_TABLE_GUID; + uint i; + + for (i = 0; i < sys_table->nr_tables; i++) { + struct efi_configuration_table *tab = &sys_table->tables[i]; + + if (!memcmp(&tab->guid, &acpi, sizeof(efi_guid_t))) + gd_set_acpi_start(map_to_sysmem(tab->table)); + } +} + /** * efi_main() - Start an EFI image * @@ -354,6 +370,8 @@ efi_status_t EFIAPI efi_main(efi_handle_t image, return ret; } + scan_tables(priv->sys_table); + /* * We could store the EFI memory map here, but it changes all the time, * so this is only useful for debugging.