Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * EFI application ACPI tables support |
| 4 | * |
| 5 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <efi_loader.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Simon Glass | 367f00d | 2021-12-01 09:02:42 -0700 | [diff] [blame] | 11 | #include <mapmem.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 12 | #include <acpi/acpi_table.h> |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
| 14 | |
| 15 | DECLARE_GLOBAL_DATA_PTR; |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 16 | |
| 17 | static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID; |
| 18 | |
| 19 | /* |
| 20 | * Install the ACPI table as a configuration table. |
| 21 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 22 | * Return: status code |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 23 | */ |
| 24 | efi_status_t efi_acpi_register(void) |
| 25 | { |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 26 | ulong addr, start, end; |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 27 | efi_status_t ret; |
| 28 | |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 29 | /* Mark space used for tables */ |
| 30 | start = ALIGN_DOWN(gd->arch.table_start, EFI_PAGE_MASK); |
| 31 | end = ALIGN(gd->arch.table_end, EFI_PAGE_MASK); |
| 32 | ret = efi_add_memory_map(start, end - start, EFI_ACPI_RECLAIM_MEMORY); |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 33 | if (ret != EFI_SUCCESS) |
| 34 | return ret; |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 35 | if (gd->arch.table_start_high) { |
| 36 | start = ALIGN_DOWN(gd->arch.table_start_high, EFI_PAGE_MASK); |
| 37 | end = ALIGN(gd->arch.table_end_high, EFI_PAGE_MASK); |
| 38 | ret = efi_add_memory_map(start, end - start, |
| 39 | EFI_ACPI_RECLAIM_MEMORY); |
| 40 | if (ret != EFI_SUCCESS) |
| 41 | return ret; |
| 42 | } |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 43 | |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 44 | addr = gd_acpi_start(); |
| 45 | printf("EFI using ACPI tables at %lx\n", addr); |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 46 | |
| 47 | /* And expose them to our EFI payload */ |
| 48 | return efi_install_configuration_table(&acpi_guid, |
Simon Glass | 8965f29 | 2023-07-15 21:39:17 -0600 | [diff] [blame] | 49 | (void *)(ulong)addr); |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 50 | } |