The branch main has been updated by andrew:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=ff977fd34b4bb85cf27b55106131b4dd6594afab

commit ff977fd34b4bb85cf27b55106131b4dd6594afab
Author:     Andrew Turner <and...@freebsd.org>
AuthorDate: 2025-01-06 16:36:39 +0000
Commit:     Andrew Turner <and...@freebsd.org>
CommitDate: 2025-02-04 12:21:04 +0000

    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
---
 sys/arm64/arm64/mp_machdep.c | 1 +
 1 file changed, 1 insertion(+)

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 },

Reply via email to