diff options
| author | Heinrich Schuchardt <[email protected]> | 2023-12-19 16:04:00 +0100 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2024-01-07 13:49:15 -0700 |
| commit | b2f088c1210184b1ba11edaee0943ebd206e87e7 (patch) | |
| tree | 40fee07b4c07e6a5d6fb05511987237777061156 /drivers/misc/Kconfig | |
| parent | f47c86f6d3b468a4d467814783937ee9162b92fc (diff) | |
acpi: Kconfig symbol CONFIG_QFW_ACPI
We have two implementations of write_acpi_tables(). One for writing ACPI
tables based on ACPI_WRITER() entries another based on copying tables from
QEMU.
Create a symbol CONFIG_QFW_ACPI that signifies copying ACPI tables from
QEMU and use it consistently.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/misc/Kconfig')
| -rw-r--r-- | drivers/misc/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index ed7ecedd3ac..e8e4400516f 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -540,6 +540,13 @@ config QFW Hidden option to enable QEMU fw_cfg interface and uclass. This will be selected by either CONFIG_CMD_QFW or CONFIG_GENERATE_ACPI_TABLE. +config QFW_ACPI + bool + default y + depends on QFW && GENERATE_ACPI_TABLE && !SANDBOX + help + Hidden option to read ACPI tables from QEMU. + config QFW_PIO bool depends on QFW |
