diff options
author | Heinrich Schuchardt | 2023-11-09 09:23:02 -0800 |
---|---|---|
committer | Tom Rini | 2023-12-13 18:39:05 -0500 |
commit | c659ac7cca151be29712f37fc77dd18fb4ab96c5 (patch) | |
tree | 2aa632ee3da4811abc1d1b4edc0978a5f4560cf5 /include/acpi | |
parent | a4bee0b45504397d71302cd1b186f5651424a332 (diff) |
acpi: move acpi_get_rsdp_addr() to acpi/acpi_table.h
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>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpi_table.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/acpi/acpi_table.h b/include/acpi/acpi_table.h index 1f85de091d3..a3b67259e64 100644 --- a/include/acpi/acpi_table.h +++ b/include/acpi/acpi_table.h @@ -921,6 +921,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 * * This writes all ACPI tables to the given address |