]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Allocate and write ACPI tables
authorPatrick Rudolph <patrick.rudolph@9elements.com>
Wed, 23 Oct 2024 13:19:57 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 27 Oct 2024 23:24:13 +0000 (17:24 -0600)
Allocate memory for ACPI tables in generic acpi code. When ACPI wasn't
installed in other places, install the ACPI table using BLOBLISTs.

This allows non x86 platforms to boot using ACPI only in case the
EFI loader is being used, since EFI is necessary to advertise the location
of the ACPI tables in memory.

TEST: Booted QEMU SBSA (no QFW) using EFI and ACPI only.

Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
lib/acpi/acpi_table.c
test/py/tests/test_event_dump.py

index d6357bdc4db50f4c933ba5a6153a60e00faf7dca..e6ebffcf1b0a246b6bbd890c348c2b391059d296 100644 (file)
@@ -5,8 +5,11 @@
  * Copyright 2019 Google LLC
  */
 
-#include <dm.h>
+#include <bloblist.h>
 #include <cpu.h>
+#include <dm.h>
+#include <efi_api.h>
+#include <efi_loader.h>
 #include <log.h>
 #include <mapmem.h>
 #include <tables_csum.h>
 #include <acpi/acpi_device.h>
 #include <asm/global_data.h>
 #include <dm/acpi.h>
+#include <linux/sizes.h>
+#include <linux/log2.h>
+
+enum {
+       TABLE_SIZE      = SZ_64K,
+};
+
+DECLARE_GLOBAL_DATA_PTR;
 
 /*
  * OEM_REVISION is 32-bit unsigned number. It should be increased only when
@@ -752,3 +763,56 @@ static int acpi_write_iort(struct acpi_ctx *ctx, const struct acpi_writer *entry
 }
 
 ACPI_WRITER(5iort, "IORT", acpi_write_iort, 0);
+
+/*
+ * Allocate memory for ACPI tables and write ACPI tables to the
+ * allocated buffer.
+ *
+ * Return:     status code
+ */
+static int alloc_write_acpi_tables(void)
+{
+       u64 table_end;
+       void *addr;
+
+       if (IS_ENABLED(CONFIG_X86) ||
+           IS_ENABLED(CONFIG_QFW_ACPI) ||
+           IS_ENABLED(CONFIG_SANDBOX)) {
+               log_debug("Skipping writing ACPI tables as already done\n");
+               return 0;
+       }
+
+       if (!IS_ENABLED(CONFIG_BLOBLIST_TABLES)) {
+               log_debug("Skipping writing ACPI tables as BLOBLIST_TABLES is not selected\n");
+               return 0;
+       }
+
+       /* Align the table to a 4KB boundary to keep EFI happy */
+       addr = bloblist_add(BLOBLISTT_ACPI_TABLES, TABLE_SIZE,
+                           ilog2(SZ_4K));
+
+       if (!addr)
+               return log_msg_ret("mem", -ENOMEM);
+
+       gd->arch.table_start_high = virt_to_phys(addr);
+       gd->arch.table_end_high = gd->arch.table_start_high + TABLE_SIZE;
+
+       table_end = write_acpi_tables(gd->arch.table_start_high);
+       if (!table_end) {
+               log_err("Can't create ACPI configuration table\n");
+               return -EINTR;
+       }
+
+       log_debug("- wrote 'acpi' to %lx, end %llx\n", gd->arch.table_start_high, table_end);
+       if (table_end > gd->arch.table_end_high) {
+               log_err("Out of space for configuration tables: need %llx, have %x\n",
+                       table_end - gd->arch.table_start_high, TABLE_SIZE);
+               return log_msg_ret("acpi", -ENOSPC);
+       }
+
+       log_debug("- done writing tables\n");
+
+       return 0;
+}
+
+EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, alloc_write_acpi_tables);
index e282c67335cd8a30568e826875ebcbc1a69be9f7..45143c1c7d983653c7caa4ec9d61ade1af76bbad 100644 (file)
@@ -18,6 +18,7 @@ def test_event_dump(u_boot_console):
 --------------------  ------------------------------  ------------------------------
 EVT_FT_FIXUP          bootmeth_vbe_ft_fixup           .*boot/vbe_request.c:.*
 EVT_FT_FIXUP          bootmeth_vbe_simple_ft_fixup    .*boot/vbe_simple_os.c:.*
+EVT_LAST_STAGE_INIT   alloc_write_acpi_tables         .*lib/acpi/acpi_table.c:.*
 EVT_LAST_STAGE_INIT   install_smbios_table            .*lib/efi_loader/efi_smbios.c:.*
 EVT_MISC_INIT_F       sandbox_early_getopt_check      .*arch/sandbox/cpu/start.c:.*
 EVT_TEST              h_adder_simple                  .*test/common/event.c:'''