aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2025-01-06 16:36:39 +0000
committerAndrew Turner <andrew@FreeBSD.org>2025-02-04 12:21:04 +0000
commitff977fd34b4bb85cf27b55106131b4dd6594afab (patch)
tree5f698a1dcbff937da965b3bf3f924abc884e03a7
parent8fd88aeedb1e4f34d6c127cf66fa3e7ecb3f5168 (diff)
arm64: Add a quirk for arm,fvp-base-revc
This is a software model so may have too many CPUs in its dtb. Add the MP_QUIRK_CPULIST quirk so we don't panic on boot. Sponsored by: Arm Ltd
-rw-r--r--sys/arm64/arm64/mp_machdep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/arm64/arm64/mp_machdep.c b/sys/arm64/arm64/mp_machdep.c
index d052033d9575..bca6487e487a 100644
--- a/sys/arm64/arm64/mp_machdep.c
+++ b/sys/arm64/arm64/mp_machdep.c
@@ -91,6 +91,7 @@ static struct {
} fdt_quirks[] = {
{ "arm,foundation-aarch64", MP_QUIRK_CPULIST },
{ "arm,fvp-base", MP_QUIRK_CPULIST },
+ { "arm,fvp-base-revc", MP_QUIRK_CPULIST },
/* This is incorrect in some DTS files */
{ "arm,vfp-base", MP_QUIRK_CPULIST },
{ NULL, 0 },