123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- /*++
- Copyright (c) 2015 Minoca Corp. All Rights Reserved
- Module Name:
- smpa.S
- Abstract:
- This module implements assembly routines necessary for booting the
- application processors on the BCM2836.
- Author:
- Chris Stevens 19-Apr-2015
- Environment:
- Firmware
- --*/
- ##
- ## ------------------------------------------------------------------ Includes
- ##
- #include <minoca/kernel/arm.inc>
- ##
- ## --------------------------------------------------------------- Definitions
- ##
- ##
- ## ---------------------------------------------------------------------- Code
- ##
- ASSEMBLY_FILE_HEADER
- .arch_extension virt
- ##
- ## .globl allows these labels to be visible to the linker.
- ##
- .globl EfipBcm2836ProcessorStartup
- .globl EfipBcm2836ParkingLoop
- .globl EfipBcm2836ParkingLoopEnd
- ##
- ## VOID
- ## EfipBcm2836SendEvent (
- ## VOID
- ## )
- ##
- /*++
- Routine Description:
- This routine executes a SEV instruction, which is a hint instruction that
- causes an event to be signalled to all processors.
- Arguments:
- None.
- Return Value:
- None.
- --*/
- FUNCTION EfipBcm2836SendEvent
- DSB @ Data Synchronization Barrier.
- sev @ Send Event.
- bx %lr @ Return.
- END_FUNCTION EfipBcm2836SendEvent
- ##
- ## UINT32
- ## EfipBcm2836GetMultiprocessorIdRegister (
- ## VOID
- ## )
- ##
- /*++
- Routine Description:
- This routine gets the Multiprocessor ID register (MPIDR).
- Arguments:
- None.
- Return Value:
- Returns the value of the MPIDR.
- --*/
- FUNCTION EfipBcm2836GetMultiprocessorIdRegister
- mrc p15, 0, %r0, %c0, %c0, 5 @ Get the MPIDR
- bx %lr @
- END_FUNCTION EfipBcm2836GetMultiprocessorIdRegister
- ##
- ## VOID
- ## EfipBcm2836SwitchToSvcMode (
- ## VOID
- ## )
- ##
- /*++
- Routine Description:
- This routine disabled interrupts and switches to SVC mode. It handles the
- case where the core is in HYP mode, which requires an execution state
- transition in order to enter SVC mode.
- Arguments:
- None.
- Return Value:
- None.
- --*/
- FUNCTION EfipBcm2836SwitchToSvcMode
- ##
- ## Disable interrupts.
- ##
- cpsid i
- ##
- ## Test to see if the core is in HYP mode. Transitioning from HYP mode to
- ## SVC mode requires an ERET to switch execution states.
- ##
- mrs %r0, CPSR
- and %r1, %r0, #ARM_MODE_MASK
- cmp %r1, #ARM_MODE_HYP
- bne EfipBcm2836SwitchToSvcModeEnd
- ##
- ## While in HYP mode, zero out the Generic Timer's virtual offset. Assume
- ## that if the core is not in HYP mode that some other source appropriately
- ## set the virtual offset.
- ##
- mov %r2, #0
- mov %r3, #0
- mcrr p15, 4, %r2, %r3, %c14
- ##
- ## Trasition to SVC mode with the ERET.
- ##
- msr ELR_hyp, %lr
- and %r0, %r0, #~(ARM_MODE_MASK)
- orr %r0, %r0, #ARM_MODE_SVC
- msr SPSR_hyp, %r0
- eret
- EfipBcm2836SwitchToSvcModeEnd:
- ##
- ## The core was not in HYP mode. Switch to SVC mode the easy way.
- ##
- mov %r0, #(PSR_FLAG_IRQ | ARM_MODE_SVC)
- msr CPSR_c, %r0
- bx %lr
- END_FUNCTION EfipBcm2836SwitchToSvcMode
- ##
- ## VOID
- ## EfipBcm2836ProcessorStartup (
- ## VOID
- ## )
- ##
- /*++
- Routine Description:
- This routine implements the startup routine for the alternate CPUs on the
- Raspberry Pi 2. Since this is the very first set of instructions executed
- on this core there is nothing set up, including a stack.
- Arguments:
- None.
- Return Value:
- None. This function does not return, as there is nothing to return to.
- --*/
- .arm
- .align 4
- EfipBcm2836ProcessorStartup:
- ##
- ## Disable interrupts and switch to SVC mode.
- ##
- bl EfipBcm2836SwitchToSvcMode
- ##
- ## Park the core again, waiting until the firmware can allocate a page for
- ## the final parking location.
- ##
- mov %r3, #0
- ldr %r1, =EfiBcm2836ProcessorId @ Get the processor ID address.
- ldr %r0, [%r1] @ Get the value.
- str %r3, [%r1] @ Zero the value.
- EfipBcm2836ProcessorStartupLoop:
- DSB @ Data synchronization barrier.
- ldr %r2, [%r1] @ Load the processor ID.
- cmp %r0, %r2
- beq EfipBcm2836ProcessorStartupEnd @ Move to the jump if it's real.
- wfe @ Wait for an event.
- b EfipBcm2836ProcessorStartupLoop @ Try again.
- EfipBcm2836ProcessorStartupEnd:
- ldr %r1, =EfiBcm2836JumpAddress @ Get the jump address.
- ldr %r2, [%r1] @ Get the value.
- str %r3, [%r1] @ Store zero into jump address.
- bic %r1, %r2, #0xF00 @ Set the parking location.
- bic %r1, %r1, #0x0FF
- DSB @ One final breath, then...
- bx %r2 @ Jump head first into the abyss.
- .ltorg
- ##
- ## VOID
- ## EfipBcm2836ParkingLoop (
- ## UINT32 ProcessorId,
- ## VOID *ParkingLocation
- ## )
- ##
- /*++
- Routine Description:
- This routine implements the MP parking protocol loop.
- Arguments:
- ProcessorId - Supplies the ID of this processor.
- ParkingLocation - Supplies the parking protocol mailbox base.
- Return Value:
- None. This function does not return, it launches the core.
- --*/
- EfipBcm2836ParkingLoop:
- DSB @ Data synchronization barrier.
- ldr %r2, [%r1] @ Read the processor ID.
- cmp %r0, %r2 @ Compare to this processor ID.
- beq EfipBcm2836ParkingLoopJump @ Move to the jump if it's real.
- wfi @ Wait for an interrupt.
- b EfipBcm2836ParkingLoop @ Try again.
- EfipBcm2836ParkingLoopJump:
- ldr %r2, [%r1, #8] @ Get the jump address.
- mov %r3, #0 @ Clear R3.
- str %r3, [%r1, #8] @ Store zero into jump address.
- DSB @ One final breath, then...
- bx %r2 @ Jump head first into the abyss.
- ##
- ## Dump any literals being saved up.
- ##
- .ltorg
- EfipBcm2836ParkingLoopEnd:
- ##
- ## --------------------------------------------------------- Internal Functions
- ##
|