]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: move acpi_get_rsdp_addr() to acpi/acpi_table.h
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 9 Nov 2023 17:23:02 +0000 (09:23 -0800)
committerTom Rini <trini@konsulko.com>
Wed, 13 Dec 2023 23:39:05 +0000 (18:39 -0500)
Function acpi_get_rsdp_addr() is needed on all architectures which
write ACPI tables. Move the definition from the x86 include to an
architecture independent one.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/x86/include/asm/acpi_table.h
drivers/misc/qfw.c
include/acpi/acpi_table.h

index 226753b65d6a2fbbedcf078e9746b735943b00fc..57e41654ce34de6fd14f872b18ec498ed7ae0a5e 100644 (file)
@@ -64,15 +64,6 @@ int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
  */
 int acpi_create_gnvs(struct acpi_global_nvs *gnvs);
 
-/**
- * acpi_get_rsdp_addr() - get ACPI RSDP table address
- *
- * This routine returns the ACPI RSDP table address in the system memory.
- *
- * @return:    ACPI RSDP table address
- */
-ulong acpi_get_rsdp_addr(void);
-
 /**
  * arch_read_sci_irq_select() - Read the system-control interrupt number
  *
index 7c01bf23d53bd2e085d2201d3c37e2d87184fcc5..e3b6b4cd741a1c5f9c9bd17b43776cadf1ffdb4e 100644 (file)
@@ -7,6 +7,7 @@
 #define LOG_CATEGORY UCLASS_QFW
 
 #include <common.h>
+#include <acpi/acpi_table.h>
 #include <bootdev.h>
 #include <bootflow.h>
 #include <bootmeth.h>
index 1f85de091d392e1564e966e0fb56dd35747ab427..a3b67259e64143b6117de04d48d869eceee6ea96 100644 (file)
@@ -920,6 +920,15 @@ void acpi_fill_header(struct acpi_table_header *header, char *signature);
  */
 int acpi_fill_csrt(struct acpi_ctx *ctx);
 
+/**
+ * acpi_get_rsdp_addr() - get ACPI RSDP table address
+ *
+ * This routine returns the ACPI RSDP table address in the system memory.
+ *
+ * @return:    ACPI RSDP table address
+ */
+ulong acpi_get_rsdp_addr(void);
+
 /**
  * write_acpi_tables() - Write out the ACPI tables
  *