The 64-core versions of the Ampere Altra SoC still have 80 redistributors.
authorkettenis <kettenis@openbsd.org>
Thu, 16 Jun 2022 20:44:09 +0000 (20:44 +0000)
committerkettenis <kettenis@openbsd.org>
Thu, 16 Jun 2022 20:44:09 +0000 (20:44 +0000)
Presumably these are the same silicon and the 64-core version just has some
of the cores disabled.  This means that the redistributors don't necessarily
all match up with a core that is actually enabled.  So remove the panic
that would happen if we found a redistributor without a matching core.

ok patrick@, deraadt@

sys/arch/arm64/dev/agintc.c

index d62dd41..ec744b0 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: agintc.c,v 1.36 2022/01/02 20:00:21 kettenis Exp $ */
+/* $OpenBSD: agintc.c,v 1.37 2022/06/16 20:44:09 kettenis Exp $ */
 /*
  * Copyright (c) 2007, 2009, 2011, 2017 Dale Rahn <drahn@dalerahn.com>
  * Copyright (c) 2018 Mark Kettenis <kettenis@openbsd.org>
@@ -453,11 +453,6 @@ agintc_attach(struct device *parent, struct device *self, void *aux)
                }
                if (ci != NULL)
                        sc->sc_cpuremap[ci->ci_cpuid] = nredist;
-#ifdef MULTIPROCESSOR
-               else
-                       panic("%s: no CPU found for affinity %08x",
-                           sc->sc_sbus.sc_dev.dv_xname, affinity);
-#endif
 
                sc->sc_processor[nredist] = bus_space_read_8(sc->sc_iot,
                    sc->sc_redist_base, offset + GICR_TYPER) >> 8;