]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePeiCore/AArch64/PrePeiCoreEntryPoint.S
ArmPkg: apply Cortex-A57 errata
[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
HL
3//\r
4// This program and the accompanying materials\r
5// are licensed and made available under the terms and conditions of the BSD License\r
6// which accompanies this distribution. The full text of the license may be found at\r
7// http://opensource.org/licenses/bsd-license.php\r
8//\r
9// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11//\r
12//\r
13\r
14#include <AsmMacroIoLibV8.h>\r
15#include <Base.h>\r
16#include <Library/PcdLib.h>\r
17#include <AutoGen.h>\r
18\r
19.text\r
20.align 3\r
21\r
22GCC_ASM_IMPORT(CEntryPoint)\r
23GCC_ASM_IMPORT(ArmPlatformGetCorePosition)\r
24GCC_ASM_IMPORT(ArmPlatformIsPrimaryCore)\r
25GCC_ASM_IMPORT(ArmReadMpidr)\r
26GCC_ASM_IMPORT(ArmPlatformPeiBootAction)\r
27GCC_ASM_EXPORT(_ModuleEntryPoint)\r
28\r
f8a9910c 29StartupAddr: .8byte CEntryPoint\r
1bc83266
HL
30\r
31ASM_PFX(_ModuleEntryPoint):\r
32 // Do early platform specific actions\r
33 bl ASM_PFX(ArmPlatformPeiBootAction)\r
34\r
35// NOTE: We could be booting from EL3, EL2 or EL1. Need to correctly detect\r
36// and configure the system accordingly. EL2 is default if possible.\r
37// If we started in EL3 we need to switch and run at EL2.\r
38// If we are running at EL2 stay in EL2\r
39// If we are starting at EL1 stay in EL1.\r
40\r
41// If started at EL3 Sec is run and switches to EL2 before jumping to PEI.\r
42// If started at EL1 or EL2 Sec jumps directly to PEI without making any\r
43// changes.\r
44\r
45// Which EL are we running at? Every EL needs some level of setup...\r
eaa84fd5
OM
46// We should not run this code in EL3\r
47 EL1_OR_EL2(x0)\r
1bc83266
HL
481:bl ASM_PFX(SetupExceptionLevel1)\r
49 b ASM_PFX(MainEntryPoint)\r
502:bl ASM_PFX(SetupExceptionLevel2)\r
51 b ASM_PFX(MainEntryPoint)\r
1bc83266
HL
52\r
53ASM_PFX(MainEntryPoint):\r
54 // Identify CPU ID\r
55 bl ASM_PFX(ArmReadMpidr)\r
56 // Keep a copy of the MpId register value\r
57 mov x5, x0\r
58\r
59 // Is it the Primary Core ?\r
60 bl ASM_PFX(ArmPlatformIsPrimaryCore)\r
61\r
62 // Get the top of the primary stacks (and the base of the secondary stacks)\r
63 LoadConstantToReg (FixedPcdGet32(PcdCPUCoresStackBase), x1)\r
64 LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), x2)\r
65 add x1, x1, x2\r
66\r
67 // x0 is equal to 1 if I am the primary core\r
68 cmp x0, #1\r
69 b.eq _SetupPrimaryCoreStack\r
70\r
71_SetupSecondaryCoreStack:\r
72 // x1 contains the base of the secondary stacks\r
73\r
74 // Get the Core Position\r
75 mov x6, x1 // Save base of the secondary stacks\r
76 mov x0, x5\r
77 bl ASM_PFX(ArmPlatformGetCorePosition)\r
78 // The stack starts at the top of the stack region. Add '1' to the Core Position to get the top of the stack\r
79 add x0, x0, #1\r
80\r
81 // StackOffset = CorePos * StackSize\r
82 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), x2)\r
83 mul x0, x0, x2\r
84 // SP = StackBase + StackOffset\r
85 add sp, x6, x0\r
86\r
87_PrepareArguments:\r
88 // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector\r
89 LoadConstantToReg (FixedPcdGet64(PcdFvBaseAddress), x2)\r
90 add x2, x2, #8\r
91 ldr x1, [x2]\r
92\r
93 // Move sec startup address into a data register\r
94 // Ensure we're jumping to FV version of the code (not boot remapped alias)\r
95 ldr x3, StartupAddr\r
96\r
97 // Jump to PrePeiCore C code\r
98 // x0 = mp_id\r
99 // x1 = pei_core_address\r
100 mov x0, x5\r
101 blr x3\r
102\r
103_SetupPrimaryCoreStack:\r
3707dee3 104 mov sp, x1\r
1bc83266 105 b _PrepareArguments\r