Multicore Assembly on the Allwinner H3

310 Views Asked by At

I'm using a NanoPi Neo Air and I'm finding it impossible to get any code to run on any of the other cores. I am using no OS. This example shows how to get multicore code running on the Raspberry Pi. I have not been able to find any information about the NanoPi equivalent of that code though, except for the Linux source code. I have attempted to write an equivalent of the smp_boot_secondary function in ARM assembly, but this isn't working.

LDR  r0, =multicore_start @ Func ptr
MOVW r11, #0x1DA4 @ Set ptr
MOVT r11, #0x01F0
STR  r0, [r11]

MOVW r1, #0x1C80
MOVT r1, #0x01F0
MOV  r11, #0      @ Reset core
STR  r11, [r1]

MOVW r2, #0x0003 @ Mask to reset L1 for CORE1
MOVT r2, #0x0000

MOVW r11, #0x1D84 @ Turn off L1
MOVT r11, #0x01F0
LDR  r10, [r11]
BIC  r10, r10, r2
STR  r10, [r11]

MOVW r11, #0x1500 @ Clear power off
MOVT r11, #0x01F0
LDR  r10, [r11]
BIC  r10, r10, r2
STR  r10, [r11]

MOVW r11, #0x1C80
MOVT r11, #0x01F0
MOV r11, #3       @ Power up the core
STR r11, [r1]

Am I approaching this the wrong way?

0

There are 0 best solutions below