mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
acpi: arm64 doesn't support ACPI 1.0 RSDP, report when we see one
arm64 requires ACPI RSDP Revision 2.0 since it requires 64-bit physical addresses. It is an error worth reporting if we have a RSDP pointer, but it points to the wrong version. Sponsored by: Netflix Reviewed by: andrew Differential Revision: https://reviews.freebsd.org/D36404
This commit is contained in:
parent
75a91c70f8
commit
195f794318
1 changed files with 3 additions and 0 deletions
|
|
@ -194,6 +194,9 @@ acpi_find_table(const char *sig)
|
|||
break;
|
||||
}
|
||||
acpi_unmap_table(xsdt);
|
||||
} else {
|
||||
printf("ACPI: Unsupported RSDP version %d and XSDT %#llx\n",
|
||||
rsdp->Revision, rsdp->XsdtPhysicalAddress);
|
||||
}
|
||||
pmap_unmapbios((vm_offset_t)rsdp, sizeof(ACPI_TABLE_RSDP));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue