]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
armv8: layerscape: fix spin-table support
authorMichael Walle <michael@walle.cc>
Mon, 1 Jun 2020 19:53:24 +0000 (21:53 +0200)
committerPriyanka Jain <priyanka.jain@nxp.com>
Mon, 27 Jul 2020 08:46:27 +0000 (14:16 +0530)
Spin tables are broken with bootefi. This is because - in contrast to
the booti call chain - there is no call to smp_kick_all_cpus(). Due to
this missing call the secondary CPUs are never released from their "wait
for interrupt state", see secondary_boot_func() in lowlevel.S.

Originally, this "wait for interrupt" is there to make sure, the spin
table is cleared before the secondary cores read it for the first time.
But the boot flow for the layerscape architecture is different from
that. The CPUs are release from their BootROM _after_ U-Boot's
spin-table is cleared, see fsl_layerscape_wake_seconday_cores() in mp.c.
Thus, there is no need to wait for this interrupt and no need for
kicking all cores on cpu_release. An atomic 64bit write to the
spin-table and a "sev" is sufficient.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
arch/arm/cpu/armv8/fsl-layerscape/lowlevel.S
arch/arm/cpu/armv8/fsl-layerscape/mp.c

index 711ab8755690ea9eb9e58ed025a707b5fa8c6cbc..2a8d592cc5c378ff307b352c253ee898f0273a80 100644 (file)
@@ -474,13 +474,6 @@ ENTRY(secondary_boot_func)
        mov     x4, #1
        str     x4, [x11, #8]   /* STATUS */
        dsb     sy
-#if defined(CONFIG_GICV3)
-       gic_wait_for_interrupt_m x0
-#elif defined(CONFIG_GICV2)
-       bl      get_gic_offset
-       mov     x0, x1
-        gic_wait_for_interrupt_m x0, w1
-#endif
 
 slave_cpu:
        wfe
index 1ea887b3319f89b288f8699e405189c7a33f3276..e078d1cd37d35aeb4c94924c3fa1a36390cca1d2 100644 (file)
@@ -277,11 +277,12 @@ int cpu_release(u32 nr, int argc, char *const argv[])
        flush_dcache_range((unsigned long)table,
                           (unsigned long)table + SPIN_TABLE_ELEM_SIZE);
        asm volatile("dsb st");
-       smp_kick_all_cpus();    /* only those with entry addr set will run */
+
        /*
-        * When the first release command runs, all cores are set to go. Those
-        * without a valid entry address will be trapped by "wfe". "sev" kicks
-        * them off to check the address again. When set, they continue to run.
+        * The secondary CPUs polling the spin-table above for a non-zero
+        * value. To save power "wfe" is called. Thus call "sev" here to
+        * wake the CPUs and let them check the spin-table again (see
+        * slave_cpu loop in lowlevel.S)
         */
        asm volatile("sev");