When the "acpi=on", ACPI tables need to be added. Detect the option and initialize the ACPI tables.
Signed-off-by: Sunil V L <[email protected]> Reviewed-by: Bin Meng <[email protected]> --- hw/riscv/virt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c index 5017ba62ec..43c201c8cf 100644 --- a/hw/riscv/virt.c +++ b/hw/riscv/virt.c @@ -1316,6 +1316,10 @@ static void virt_machine_done(Notifier *notifier, void *data) if (kvm_enabled()) { riscv_setup_direct_kernel(kernel_entry, fdt_load_addr); } + + if (virt_is_acpi_enabled(s)) { + virt_acpi_setup(s); + } } static void virt_machine_init(MachineState *machine) -- 2.34.1
