]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePi/AArch64/ModuleEntryPoint.S
ARM Packages: Use .8byte instead of .dword for pointers
[mirror_edk2.git] / ArmPlatformPkg / PrePi / AArch64 / ModuleEntryPoint.S
CommitLineData
1bc83266
HL
1//\r
2// Copyright (c) 2011-2013, ARM Limited. All rights reserved.\r
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
1bc83266
HL
19.text\r
20.align 3\r
21\r
22GCC_ASM_IMPORT(ArmPlatformIsPrimaryCore)\r
23GCC_ASM_IMPORT(ArmReadMpidr)\r
24GCC_ASM_IMPORT(ArmPlatformPeiBootAction)\r
25GCC_ASM_IMPORT(ArmPlatformStackSet)\r
26GCC_ASM_EXPORT(_ModuleEntryPoint)\r
27\r
f8a9910c 28StartupAddr: .8byte ASM_PFX(CEntryPoint)\r
1bc83266
HL
29\r
30ASM_PFX(_ModuleEntryPoint):\r
31 // Do early platform specific actions\r
32 bl ASM_PFX(ArmPlatformPeiBootAction)\r
33\r
34 // Get ID of this CPU in Multicore system\r
35 bl ASM_PFX(ArmReadMpidr)\r
36 // Keep a copy of the MpId register value\r
37 mov x10, x0\r
38\r
39_SetSVCMode:\r
40// Check if we can install the stack at the top of the System Memory or if we need\r
41// to install the stacks at the bottom of the Firmware Device (case the FD is located\r
42// at the top of the DRAM)\r
43_SetupStackPosition:\r
44 // Compute Top of System Memory\r
c357fd6a
OM
45 LoadConstantToReg (FixedPcdGet64 (PcdSystemMemoryBase), x1)\r
46 LoadConstantToReg (FixedPcdGet64 (PcdSystemMemorySize), x2)\r
1bc83266
HL
47 sub x2, x2, #1\r
48 add x1, x1, x2 // x1 = SystemMemoryTop = PcdSystemMemoryBase + PcdSystemMemorySize\r
49\r
50 // Calculate Top of the Firmware Device\r
51 LoadConstantToReg (FixedPcdGet32(PcdFdBaseAddress), x2)\r
52 LoadConstantToReg (FixedPcdGet32(PcdFdSize), x3)\r
53 sub x3, x3, #1\r
54 add x3, x3, x2 // x3 = FdTop = PcdFdBaseAddress + PcdFdSize\r
55\r
56 // UEFI Memory Size (stacks are allocated in this region)\r
57 LoadConstantToReg (FixedPcdGet32(PcdSystemMemoryUefiRegionSize), x4)\r
58\r
59 //\r
60 // Reserve the memory for the UEFI region (contain stacks on its top)\r
61 //\r
62\r
63 // Calculate how much space there is between the top of the Firmware and the Top of the System Memory\r
64 subs x0, x1, x3 // x0 = SystemMemoryTop - FdTop\r
65 b.mi _SetupStack // Jump if negative (FdTop > SystemMemoryTop). Case when the PrePi is in XIP memory outside of the DRAM\r
66 cmp x0, x4\r
67 b.ge _SetupStack\r
68\r
69 // Case the top of stacks is the FdBaseAddress\r
70 mov x1, x2\r
71\r
72_SetupStack:\r
73 // x1 contains the top of the stack (and the UEFI Memory)\r
74\r
75 // Because the 'push' instruction is equivalent to 'stmdb' (decrement before), we need to increment\r
76 // one to the top of the stack. We check if incrementing one does not overflow (case of DRAM at the\r
77 // top of the memory space)\r
78 adds x11, x1, #1\r
79 b.cs _SetupOverflowStack\r
80\r
81_SetupAlignedStack:\r
82 mov x1, x11\r
83 b _GetBaseUefiMemory\r
84\r
85_SetupOverflowStack:\r
86 // Case memory at the top of the address space. Ensure the top of the stack is EFI_PAGE_SIZE\r
87 // aligned (4KB)\r
88 LoadConstantToReg (EFI_PAGE_MASK, x11)\r
89 and x11, x11, x1\r
90 sub x1, x1, x11\r
91\r
92_GetBaseUefiMemory:\r
93 // Calculate the Base of the UEFI Memory\r
94 sub x11, x1, x4\r
95\r
96_GetStackBase:\r
97 // r1 = The top of the Mpcore Stacks\r
98 // Stack for the primary core = PrimaryCoreStack\r
99 LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), x2)\r
100 sub x12, x1, x2\r
101\r
102 // Stack for the secondary core = Number of Cores - 1\r
103 LoadConstantToReg (FixedPcdGet32(PcdCoreCount), x0)\r
104 sub x0, x0, #1\r
105 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), x1)\r
106 mul x1, x1, x0\r
107 sub x12, x12, x1\r
108\r
109 // x12 = The base of the MpCore Stacks (primary stack & secondary stacks)\r
110 mov x0, x12\r
111 mov x1, x10\r
112 //ArmPlatformStackSet(StackBase, MpId, PrimaryStackSize, SecondaryStackSize)\r
113 LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), x2)\r
114 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), x3)\r
115 bl ASM_PFX(ArmPlatformStackSet)\r
116\r
117 // Is it the Primary Core ?\r
118 mov x0, x10\r
119 bl ASM_PFX(ArmPlatformIsPrimaryCore)\r
120 cmp x0, #1\r
121 bne _PrepareArguments\r
122\r
123_ReserveGlobalVariable:\r
124 LoadConstantToReg (FixedPcdGet32(PcdPeiGlobalVariableSize), x0)\r
125 // InitializePrimaryStack($GlobalVariableSize, $Tmp1, $Tmp2)\r
126 InitializePrimaryStack(x0, x1, x2)\r
127\r
128_PrepareArguments:\r
129 mov x0, x10\r
130 mov x1, x11\r
131 mov x2, x12\r
132 mov x3, sp\r
133\r
134 // Move sec startup address into a data register\r
135 // Ensure we're jumping to FV version of the code (not boot remapped alias)\r
136 ldr x4, StartupAddr\r
137\r
138 // Jump to PrePiCore C code\r
139 // x0 = MpId\r
140 // x1 = UefiMemoryBase\r
141 // x2 = StacksBase\r
142 // x3 = GlobalVariableBase\r
143 blr x4\r
144\r
145_NeverReturn:\r
146 b _NeverReturn\r