]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ArmPlatformPkg / PrePeiCore / AArch64 / PrePeiCoreEntryPoint.S
CommitLineData
1bc83266 1//\r
eaa84fd5 2// Copyright (c) 2011-2014, ARM Limited. All rights reserved.\r
1bc83266 3//\r
f4dfad05 4// SPDX-License-Identifier: BSD-2-Clause-Patent\r
1bc83266
HL
5//\r
6//\r
7\r
8#include <AsmMacroIoLibV8.h>\r
1bc83266 9\r
13dc7fa5 10ASM_FUNC(_ModuleEntryPoint)\r
1bc83266
HL
11 // Do early platform specific actions\r
12 bl ASM_PFX(ArmPlatformPeiBootAction)\r
13\r
14// NOTE: We could be booting from EL3, EL2 or EL1. Need to correctly detect\r
15// and configure the system accordingly. EL2 is default if possible.\r
16// If we started in EL3 we need to switch and run at EL2.\r
17// If we are running at EL2 stay in EL2\r
18// If we are starting at EL1 stay in EL1.\r
19\r
20// If started at EL3 Sec is run and switches to EL2 before jumping to PEI.\r
21// If started at EL1 or EL2 Sec jumps directly to PEI without making any\r
22// changes.\r
23\r
24// Which EL are we running at? Every EL needs some level of setup...\r
eaa84fd5
OM
25// We should not run this code in EL3\r
26 EL1_OR_EL2(x0)\r
1bc83266
HL
271:bl ASM_PFX(SetupExceptionLevel1)\r
28 b ASM_PFX(MainEntryPoint)\r
292:bl ASM_PFX(SetupExceptionLevel2)\r
30 b ASM_PFX(MainEntryPoint)\r
1bc83266
HL
31\r
32ASM_PFX(MainEntryPoint):\r
33 // Identify CPU ID\r
34 bl ASM_PFX(ArmReadMpidr)\r
35 // Keep a copy of the MpId register value\r
36 mov x5, x0\r
37\r
38 // Is it the Primary Core ?\r
39 bl ASM_PFX(ArmPlatformIsPrimaryCore)\r
40\r
41 // Get the top of the primary stacks (and the base of the secondary stacks)\r
13dc7fa5 42 MOV64 (x1, FixedPcdGet64(PcdCPUCoresStackBase) + FixedPcdGet32(PcdCPUCorePrimaryStackSize))\r
1bc83266
HL
43\r
44 // x0 is equal to 1 if I am the primary core\r
45 cmp x0, #1\r
46 b.eq _SetupPrimaryCoreStack\r
47\r
48_SetupSecondaryCoreStack:\r
49 // x1 contains the base of the secondary stacks\r
50\r
51 // Get the Core Position\r
52 mov x6, x1 // Save base of the secondary stacks\r
53 mov x0, x5\r
54 bl ASM_PFX(ArmPlatformGetCorePosition)\r
55 // The stack starts at the top of the stack region. Add '1' to the Core Position to get the top of the stack\r
56 add x0, x0, #1\r
57\r
58 // StackOffset = CorePos * StackSize\r
13dc7fa5 59 MOV32 (x2, FixedPcdGet32(PcdCPUCoreSecondaryStackSize))\r
1bc83266
HL
60 mul x0, x0, x2\r
61 // SP = StackBase + StackOffset\r
62 add sp, x6, x0\r
63\r
64_PrepareArguments:\r
65 // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector\r
13dc7fa5
AB
66 MOV64 (x2, FixedPcdGet64(PcdFvBaseAddress))\r
67 ldr x1, [x2, #8]\r
1bc83266
HL
68\r
69 // Move sec startup address into a data register\r
70 // Ensure we're jumping to FV version of the code (not boot remapped alias)\r
13dc7fa5 71 ldr x3, =ASM_PFX(CEntryPoint)\r
1bc83266 72\r
0bcf71c1
AB
73 // Set the frame pointer to NULL so any backtraces terminate here\r
74 mov x29, xzr\r
75\r
1bc83266
HL
76 // Jump to PrePeiCore C code\r
77 // x0 = mp_id\r
78 // x1 = pei_core_address\r
79 mov x0, x5\r
80 blr x3\r
81\r
82_SetupPrimaryCoreStack:\r
3707dee3 83 mov sp, x1\r
7e2a8dfe
AB
84 MOV64 (x8, FixedPcdGet64 (PcdCPUCoresStackBase))\r
85 MOV64 (x9, FixedPcdGet32 (PcdInitValueInTempStack) |\\r
86 FixedPcdGet32 (PcdInitValueInTempStack) << 32)\r
870:stp x9, x9, [x8], #16\r
88 cmp x8, x1\r
89 b.lt 0b\r
1bc83266 90 b _PrepareArguments\r