I am trying to enable SMP functionality for our custom target having a dual core.
Below is my understanding w.r.t Basic ARM secondary CPU boot address:
a. The secondary CPU is provided with some registers (named like BOOTUP REG) to keep the address to where the secondary CPUs jumps after WFE.b. Linux stores address of "secondary CPU startup" function in that register.
c. When secondary CPU's WFE is released, it gets this address & starts booting.
Below is my understanding w.r.t SMP boot on ARM linux target.
a. Upon power on each CPU will start executing instruction from ROM boot address, the ROM Boot code identify each CPUs and continue with CPU0 keeping all other secondary CPUS in WFE state.
b. Once linux Bootup, the CPU(0) will try to wakeup the secondary CPU(1) with an boot address from where the CPU1 should start executing.
c. This boot address has to be written into some CPU specific BOOT Register or Memory as discussed in "Below is my understanding w.r.t Basic ARM secondary CPU boot address:", Generally does happen with other arm cortex-A9 boards like omap, realview and vexpress board etc..
1. Is the above understanding correct? if so how to get the address of such BOOT REG ?
2. Can we have the Cortex-A9 secondary CPUs without such BOOT REG? if so, then how does secondary CPU boot happens in that case?
3. Or Is this an IMPLEMENTATION DEFINED ?
4. Will reset vector be different for different cores ?
Thanks in advance,
A. Mydeen.