Module Name: src
Committed By: jmcneill
Date: Mon Sep 27 09:54:52 UTC 2021
Modified Files:
src/sys/arch/arm/fdt: pmu_fdt.c
Log Message:
No longer need to call arm_pmu_init on all CPUs.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/fdt/pmu_fdt.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/fdt/pmu_fdt.c
diff -u src/sys/arch/arm/fdt/pmu_fdt.c:1.8 src/sys/arch/arm/fdt/pmu_fdt.c:1.9
--- src/sys/arch/arm/fdt/pmu_fdt.c:1.8 Wed Jan 27 03:10:19 2021
+++ src/sys/arch/arm/fdt/pmu_fdt.c Mon Sep 27 09:54:52 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pmu_fdt.c,v 1.8 2021/01/27 03:10:19 thorpej Exp $ */
+/* $NetBSD: pmu_fdt.c,v 1.9 2021/09/27 09:54:52 jmcneill Exp $ */
/*-
* Copyright (c) 2018 Jared McNeill <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmu_fdt.c,v 1.8 2021/01/27 03:10:19 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmu_fdt.c,v 1.9 2021/09/27 09:54:52 jmcneill Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -113,19 +113,12 @@ pmu_fdt_attach(device_t parent, device_t
}
static void
-pmu_fdt_init_cpu(void *arg1, void *arg2)
-{
- arm_pmu_init();
-}
-
-static void
pmu_fdt_init(device_t self)
{
struct pmu_fdt_softc * const sc = device_private(self);
const int phandle = sc->sc_phandle;
char intrstr[128];
int error, n;
- uint64_t xc;
void **ih;
if (pmu_fdt_uses_ppi && pmu_fdt_count > 0) {
@@ -140,8 +133,7 @@ pmu_fdt_init(device_t self)
}
if (pmu_fdt_count == 0) {
- xc = xc_broadcast(0, pmu_fdt_init_cpu, NULL, NULL);
- xc_wait(xc);
+ arm_pmu_init();
}
ih = kmem_zalloc(sizeof(void *) * ncpu, KM_SLEEP);