Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/altera make CPU 1 bootstrapping work even if th...



details:   https://anonhg.NetBSD.org/src/rev/b90ec14faf27
branches:  trunk
changeset: 451392:b90ec14faf27
user:      aymeric <aymeric%NetBSD.org@localhost>
date:      Mon May 20 20:17:25 2019 +0000

description:
make CPU 1 bootstrapping work even if the kernel is not loaded close to PA 0.

More precisely, we used "B cpu_mpstart", which worked for small addresses and
thus does not work in the EFI case.
It is now replaced by a "LDR PC, =cpu_mpstart", which works for arbitrary
addresses.

diffstat:

 sys/arch/arm/altera/cycv_platform.c |  19 +++++++++++--------
 1 files changed, 11 insertions(+), 8 deletions(-)

diffs (46 lines):

diff -r 90e7b2a938da -r b90ec14faf27 sys/arch/arm/altera/cycv_platform.c
--- a/sys/arch/arm/altera/cycv_platform.c       Mon May 20 20:14:08 2019 +0000
+++ b/sys/arch/arm/altera/cycv_platform.c       Mon May 20 20:17:25 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cycv_platform.c,v 1.10 2019/01/31 13:06:10 skrll Exp $ */
+/* $NetBSD: cycv_platform.c,v 1.11 2019/05/20 20:17:25 aymeric Exp $ */
 
 /* This file is in the public domain. */
 
@@ -7,7 +7,7 @@
 #include "opt_multiprocessor.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cycv_platform.c,v 1.10 2019/01/31 13:06:10 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cycv_platform.c,v 1.11 2019/05/20 20:17:25 aymeric Exp $");
 
 #define        _ARM32_BUS_DMA_PRIVATE
 #include <sys/param.h>
@@ -92,18 +92,21 @@
        bus_space_write_4(bst, bsh_scu, SCU_CTL,
                bus_space_read_4(bst, bsh_scu, SCU_CTL) | SCU_CTL_SCU_ENA);
 
-       const uint32_t startfunc = (uint32_t) KERN_VTOPHYS((vaddr_t)cpu_mpstart);
+       const uint32_t startfunc =
+               (uint32_t) KERN_VTOPHYS((vaddr_t) cpu_mpstart);
 
        /*
-        * We place a "B cortex_mpstart" at address 0 in order to bootstrap
+        * We place a "LDR PC, =cpu_mpstart" at address 0 in order to bootstrap
         * CPU 1. We can't use the similar feature of the Boot ROM because
-        * it was unmapped by u-boot in favor of the SDRAM. Plus the dtb is
-        * stored very low in RAM so we can't re-map the Boot ROM easily.
+        * it was unmapped by u-boot in favor of the SDRAM.
         */
        pmap_map_chunk(kernel_l1pt.pv_va, CYCV_SDRAM_VBASE, CYCV_SDRAM_BASE,
                L1_S_SIZE, VM_PROT_READ|VM_PROT_WRITE, PMAP_NOCACHE);
-       *(volatile uint32_t *) CYCV_SDRAM_VBASE =
-           htole32(0xea000000 | ((startfunc - 8 - 0x0) >> 2));
+
+       /* 0: LDR PC, [PC, #0x18] -> loads address at 0x20 into PC */
+       *(volatile uint32_t *) CYCV_SDRAM_VBASE = htole32(0xe59ff018);
+       *(volatile uint32_t *) (CYCV_SDRAM_VBASE + 0x20) = startfunc;
+
        pmap_unmap_chunk(kernel_l1pt.pv_va, CYCV_SDRAM_VBASE, L1_S_SIZE);
 
        bus_space_write_4(bst, bsh_rst, CYCV_RSTMGR_MPUMODRST,



Home | Main Index | Thread Index | Old Index