aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2022-02-01 11:43:13 +0000
committerAndrew Turner <andrew@FreeBSD.org>2022-02-01 11:43:13 +0000
commitc363da4ae81b319223ae06adb96c5ecd9260b45e (patch)
tree4835902a4763556c43b88e5adec0e69b71e2860a
parent303d3ae7e8419b457078598b8569e57a5e3fb5ce (diff)
downloadsrc-c363da4ae81b319223ae06adb96c5ecd9260b45e.tar.gz
src-c363da4ae81b319223ae06adb96c5ecd9260b45e.zip
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
-rw-r--r--usr.sbin/acpi/acpidump/acpi.c1
1 files changed, 1 insertions, 0 deletions
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;