diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-12-19 16:04:05 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-01-07 13:49:15 -0700 |
commit | 91970e83ed1b7cddec15559ec7b7df3f6d261066 (patch) | |
tree | a0aad67e237ddb5c3a68266baaa2aed944618108 /board/emulation | |
parent | 638cc363484b2b8f95b2160b1fae84398df10dd1 (diff) | |
download | u-boot-91970e83ed1b7cddec15559ec7b7df3f6d261066.tar.gz |
riscv: add support for QEMU firmware tables
Enable the QEMU firmware interface if ACPI tables are to be supported on
the QEMU platform.
Enable the QFW MMIO interface if the QEMU firmware interface is enabled.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'board/emulation')
-rw-r--r-- | board/emulation/qemu-riscv/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/emulation/qemu-riscv/Kconfig b/board/emulation/qemu-riscv/Kconfig index cdd0d0d95f6..d5f302ffdab 100644 --- a/board/emulation/qemu-riscv/Kconfig +++ b/board/emulation/qemu-riscv/Kconfig @@ -33,6 +33,8 @@ config BOARD_SPECIFIC_OPTIONS # dummy def_bool y select GENERIC_RISCV select SUPPORT_SPL + select QFW if ACPI + select QFW_MMIO if QFW imply AHCI imply SMP imply BOARD_LATE_INIT |