]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/PrePeiCore/Arm/PrePeiCoreEntryPoint.S
ArmPlatformPkg/ArmPlatformLib: Added support for ArmPlatformIsPrimaryCore()
[mirror_edk2.git] / ArmPlatformPkg / PrePeiCore / Arm / PrePeiCoreEntryPoint.S
1 //
2 // Copyright (c) 2011-2013, ARM Limited. All rights reserved.
3 //
4 // This program and the accompanying materials
5 // are licensed and made available under the terms and conditions of the BSD License
6 // which accompanies this distribution. The full text of the license may be found at
7 // http://opensource.org/licenses/bsd-license.php
8 //
9 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 //
12 //
13
14 #include <AsmMacroIoLib.h>
15 #include <Base.h>
16 #include <Library/PcdLib.h>
17 #include <AutoGen.h>
18
19 .text
20 .align 3
21
22 GCC_ASM_IMPORT(CEntryPoint)
23 GCC_ASM_IMPORT(ArmPlatformIsPrimaryCore)
24 GCC_ASM_IMPORT(ArmReadMpidr)
25 GCC_ASM_EXPORT(_ModuleEntryPoint)
26
27 StartupAddr: .word CEntryPoint
28
29 ASM_PFX(_ModuleEntryPoint):
30 // Identify CPU ID
31 bl ASM_PFX(ArmReadMpidr)
32 // Keep a copy of the MpId register value
33 mov r5, r0
34
35 // Is it the Primary Core ?
36 bl ASM_PFX(ArmPlatformIsPrimaryCore)
37
38 // Get the top of the primary stacks (and the base of the secondary stacks)
39 LoadConstantToReg (FixedPcdGet32(PcdCPUCoresStackBase), r1)
40 LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)
41 add r1, r1, r2
42
43 // r0 is equal to 1 if I am the primary core
44 cmp r0, #1
45 beq _SetupPrimaryCoreStack
46
47 _SetupSecondaryCoreStack:
48 // r1 contains the base of the secondary stacks
49
50 // Get the Core Position (ClusterId * 4) + CoreId
51 GetCorePositionFromMpId(r0, r5, r2)
52 // The stack starts at the top of the stack region. Add '1' to the Core Position to get the top of the stack
53 add r0, r0, #1
54
55 // StackOffset = CorePos * StackSize
56 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), r2)
57 mul r0, r0, r2
58 // SP = StackBase + StackOffset
59 add sp, r1, r0
60
61 _PrepareArguments:
62 // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector
63 LoadConstantToReg (FixedPcdGet32(PcdFvBaseAddress), r2)
64 add r2, r2, #4
65 ldr r1, [r2]
66
67 // Move sec startup address into a data register
68 // Ensure we're jumping to FV version of the code (not boot remapped alias)
69 ldr r3, StartupAddr
70
71 // Jump to PrePeiCore C code
72 // r0 = mp_id
73 // r1 = pei_core_address
74 mov r0, r5
75 blx r3
76
77 _SetupPrimaryCoreStack:
78 // r1 contains the top of the primary stack
79 LoadConstantToReg (FixedPcdGet32(PcdPeiGlobalVariableSize), r2)
80
81 // The reserved space for global variable must be 8-bytes aligned for pushing
82 // 64-bit variable on the stack
83 SetPrimaryStack (r1, r2, r3)
84 b _PrepareArguments
85
86 _NeverReturn:
87 b _NeverReturn