From 8e1c86d8aa663ccdfad508d866692960d3359df2 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Mon, 14 Feb 2022 00:34:40 +0000 Subject: [PATCH] hppa: Membar audit in cpu.c. --- sys/arch/hppa/dev/cpu.c | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/sys/arch/hppa/dev/cpu.c b/sys/arch/hppa/dev/cpu.c index d318dbc90589..f437f2816195 100644 --- a/sys/arch/hppa/dev/cpu.c +++ b/sys/arch/hppa/dev/cpu.c @@ -240,11 +240,26 @@ cpu_boot_secondary_processors(void) if (ci->ci_flags & CPUF_PRIMARY) continue; - /* Release the specified CPU by triggering an EIR{0}. */ + /* + * Release the specified CPU by triggering an EIR{0}. + * + * The `load-acquire operation' matching this + * store-release is somewhere inside the silicon or + * firmware -- the point is that the store to + * cpu_hatch_info must happen before writing EIR{0}; + * there is conceptually some magic inside the silicon + * or firmware that effectively does + * + * if (atomic_load_acquire(&cpu->io_eir) == 0) { + * hw_cpu_spinup_trampoline(); + * } + * + * so that hw_cpu_spinup_trampoline correctly sees the + * value we just stored at cpu_hatch_info. + */ cpu_hatch_info = ci; cpu = (struct iomod *)(ci->ci_hpa); - cpu->io_eir = 0; - membar_sync(); + atomic_store_release(&cpu->io_eir, 0); /* Wait for CPU to wake up... */ j = 0; @@ -254,9 +269,12 @@ cpu_boot_secondary_processors(void) printf("failed to hatch cpu %i!\n", ci->ci_cpuid); } - /* Release secondary CPUs. */ - start_secondary_cpu = 1; - membar_sync(); + /* + * Release secondary CPUs. + * + * Matches load-acquire in cpu_hatch. + */ + atomic_store_release(&start_secondary_cpu, 1); } void @@ -282,8 +300,12 @@ cpu_hatch(void) ci->ci_flags |= CPUF_RUNNING; - /* Wait for additional CPUs to spinup. */ - while (!start_secondary_cpu) + /* + * Wait for additional CPUs to spinup. + * + * Matches store-release in cpu_boot_secondary_processors. + */ + while (!atomic_load_acquire(&start_secondary_cpu)) ; /* Spin for now */