aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/acpi
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2022-02-01 11:43:13 +0000
committerAndrew Turner <andrew@FreeBSD.org>2022-02-22 16:23:07 +0000
commit6d518e308cc773c8e8442535172401fef6c053db (patch)
treebe044aeb793ab512e05502175218469c07e3721c /usr.sbin/acpi
parent1633d17f613706733d7be8bf9ac303ea7848f544 (diff)
downloadsrc-6d518e308cc773c8e8442535172401fef6c053db.tar.gz
src-6d518e308cc773c8e8442535172401fef6c053db.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 (cherry picked from commit c363da4ae81b319223ae06adb96c5ecd9260b45e)
Diffstat (limited to 'usr.sbin/acpi')
-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;