From c363da4ae81b319223ae06adb96c5ecd9260b45e Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Tue, 1 Feb 2022 11:43:13 +0000 Subject: Add the Arm SPE interrupt to acpidump To support the Arm Statistical Profiling Extension (SPE) ACPI 6.3 added a place to hold the SPE interrupt. Add to acpidump to show when printing the Arm Generic Interrupt data. Sponsored by: The FreeBSD Foundation --- usr.sbin/acpi/acpidump/acpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/acpi/acpidump/acpi.c b/usr.sbin/acpi/acpidump/acpi.c index 0e91a85f6a90..31baa3601338 100644 --- a/usr.sbin/acpi/acpidump/acpi.c +++ b/usr.sbin/acpi/acpidump/acpi.c @@ -556,6 +556,7 @@ acpi_print_madt(ACPI_SUBTABLE_HEADER *mp) (uintmax_t)gicc->GicrBaseAddress); printf("\tMPIDR=%jx\n", (uintmax_t)gicc->ArmMpidr); printf("\tEfficency Class=%d\n", (u_int)gicc->EfficiencyClass); + printf("\tSPE INTR=%d\n", gicc->SpeInterrupt); break; case ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR: gicd = (ACPI_MADT_GENERIC_DISTRIBUTOR *)mp; -- cgit v1.2.3