The firmware is ovmf-aarch64 (UEFI). and I am using "qemu-system-aarch64 -machine virt".
Here is the relevant part of the log:
Code: Select all
Debug : [ACPI] attempt to enable ACPI...
Error : [ACPI] laihost_outb() not implemented: 0, 0
Error : [ACPI] laihost_sleep() not implemented (10 ms)
Error : [ACPI] laihost_inw() not implemented: 0
Debug : [ACPI] wrote event register value 0x8300
Debug : [ACPI] ACPI is now enabled.
Code: Select all
/* enable ACPI SCI */
laihost_outb(instance->fadt->smi_command_port, instance->fadt->acpi_enable);
laihost_sleep(10);
for (size_t i = 0; i < 100; i++) {
if (laihost_inw(instance->fadt->pm1a_control_block) & ACPI_ENABLED)
break;
laihost_sleep(10);
}
I can look into submitting a pull request, but was wondering if I am missing something here.