]> git.proxmox.com Git - mirror_edk2.git/blame - ArmVirtPkg/PrePi/Arm/ModuleEntryPoint.S
ArmVirtPkg/PrePi: remove mSystemMemoryEnd
[mirror_edk2.git] / ArmVirtPkg / PrePi / Arm / ModuleEntryPoint.S
CommitLineData
809a639e
AB
1//\r
2// Copyright (c) 2011-2013, ARM Limited. All rights reserved.\r
dfc28388 3// Copyright (c) 2015-2016, Linaro Limited. All rights reserved.\r
809a639e
AB
4//\r
5// This program and the accompanying materials\r
6// are licensed and made available under the terms and conditions of the BSD License\r
7// which accompanies this distribution. The full text of the license may be found at\r
8// http://opensource.org/licenses/bsd-license.php\r
9//\r
10// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12//\r
13//\r
14\r
15#include <AsmMacroIoLib.h>\r
809a639e 16\r
dfc28388 17ASM_FUNC(_ModuleEntryPoint)\r
809a639e
AB
18 //\r
19 // We are built as a ET_DYN PIE executable, so we need to process all\r
20 // relative relocations if we are executing from a different offset than we\r
21 // were linked at. This is only possible if we are running from RAM.\r
22 //\r
dfc28388
AB
23 ADRL (r4, __reloc_base)\r
24 ADRL (r5, __reloc_start)\r
25 ADRL (r6, __reloc_end)\r
809a639e
AB
26\r
27.Lreloc_loop:\r
28 cmp r5, r6\r
29 bhs .Lreloc_done\r
30\r
31 //\r
32 // AArch32 uses the ELF32 REL format, which means each entry in the\r
33 // relocation table consists of\r
34 //\r
35 // UINT32 offset : the relative offset of the value that needs to\r
36 // be relocated\r
37 // UINT32 info : relocation type and symbol index (the latter is\r
38 // not used for R_ARM_RELATIVE relocations)\r
39 //\r
40 ldrd r8, r9, [r5], #8 // read offset into r8 and info into r9\r
41 cmp r9, #23 // check info == R_ARM_RELATIVE?\r
42 bne .Lreloc_loop // not a relative relocation? then skip\r
43\r
44 ldr r9, [r8, r4] // read addend into r9\r
45 add r9, r9, r1 // add image base to addend to get relocated value\r
46 str r9, [r8, r4] // write relocated value at offset\r
47 b .Lreloc_loop\r
48.Lreloc_done:\r
49\r
50 // Do early platform specific actions\r
51 bl ASM_PFX(ArmPlatformPeiBootAction)\r
52\r
53 // Get ID of this CPU in Multicore system\r
54 bl ASM_PFX(ArmReadMpidr)\r
55 // Keep a copy of the MpId register value\r
56 mov r10, r0\r
57\r
58// Check if we can install the stack at the top of the System Memory or if we need\r
59// to install the stacks at the bottom of the Firmware Device (case the FD is located\r
60// at the top of the DRAM)\r
61_SetupStackPosition:\r
62 // Compute Top of System Memory\r
dfc28388
AB
63 LDRL (r1, PcdGet64 (PcdSystemMemoryBase))\r
64 ADRL (r12, PcdGet64 (PcdSystemMemorySize))\r
809a639e
AB
65 ldrd r2, r3, [r12]\r
66\r
5b005a6b 67 // calculate the top of memory\r
809a639e
AB
68 adds r2, r2, r1\r
69 sub r2, r2, #1\r
70 addcs r3, r3, #1\r
809a639e
AB
71\r
72 // truncate the memory used by UEFI to 4 GB range\r
73 teq r3, #0\r
74 movne r1, #-1\r
75 moveq r1, r2\r
76\r
77 // Calculate Top of the Firmware Device\r
dfc28388
AB
78 LDRL (r2, PcdGet64 (PcdFdBaseAddress))\r
79 MOV32 (r3, FixedPcdGet32 (PcdFdSize) - 1)\r
809a639e
AB
80 add r3, r3, r2 // r3 = FdTop = PcdFdBaseAddress + PcdFdSize\r
81\r
82 // UEFI Memory Size (stacks are allocated in this region)\r
dfc28388 83 MOV32 (r4, FixedPcdGet32(PcdSystemMemoryUefiRegionSize))\r
809a639e
AB
84\r
85 //\r
86 // Reserve the memory for the UEFI region (contain stacks on its top)\r
87 //\r
88\r
89 // Calculate how much space there is between the top of the Firmware and the Top of the System Memory\r
90 subs r0, r1, r3 // r0 = SystemMemoryTop - FdTop\r
91 bmi _SetupStack // Jump if negative (FdTop > SystemMemoryTop). Case when the PrePi is in XIP memory outside of the DRAM\r
92 cmp r0, r4\r
93 bge _SetupStack\r
94\r
95 // Case the top of stacks is the FdBaseAddress\r
96 mov r1, r2\r
97\r
98_SetupStack:\r
99 // r1 contains the top of the stack (and the UEFI Memory)\r
100\r
101 // Because the 'push' instruction is equivalent to 'stmdb' (decrement before), we need to increment\r
102 // one to the top of the stack. We check if incrementing one does not overflow (case of DRAM at the\r
103 // top of the memory space)\r
104 adds r11, r1, #1\r
105 bcs _SetupOverflowStack\r
106\r
107_SetupAlignedStack:\r
108 mov r1, r11\r
109 b _GetBaseUefiMemory\r
110\r
111_SetupOverflowStack:\r
112 // Case memory at the top of the address space. Ensure the top of the stack is EFI_PAGE_SIZE\r
113 // aligned (4KB)\r
dfc28388
AB
114 MOV32 (r11, (~EFI_PAGE_MASK) & 0xffffffff)\r
115 and r1, r1, r11\r
809a639e
AB
116\r
117_GetBaseUefiMemory:\r
118 // Calculate the Base of the UEFI Memory\r
119 sub r11, r1, r4\r
120\r
121_GetStackBase:\r
122 // r1 = The top of the Mpcore Stacks\r
123 // Stack for the primary core = PrimaryCoreStack\r
dfc28388 124 MOV32 (r2, FixedPcdGet32(PcdCPUCorePrimaryStackSize))\r
298f8361 125 sub r9, r1, r2\r
809a639e
AB
126\r
127 // Stack for the secondary core = Number of Cores - 1\r
dfc28388 128 MOV32 (r1, (FixedPcdGet32(PcdCoreCount) - 1) * FixedPcdGet32(PcdCPUCoreSecondaryStackSize))\r
298f8361 129 sub r9, r9, r1\r
809a639e 130\r
298f8361
AB
131 // r9 = The base of the MpCore Stacks (primary stack & secondary stacks)\r
132 mov r0, r9\r
809a639e
AB
133 mov r1, r10\r
134 //ArmPlatformStackSet(StackBase, MpId, PrimaryStackSize, SecondaryStackSize)\r
dfc28388
AB
135 MOV32 (r2, FixedPcdGet32(PcdCPUCorePrimaryStackSize))\r
136 MOV32 (r3, FixedPcdGet32(PcdCPUCoreSecondaryStackSize))\r
809a639e
AB
137 bl ASM_PFX(ArmPlatformStackSet)\r
138\r
139 // Is it the Primary Core ?\r
140 mov r0, r10\r
141 bl ASM_PFX(ArmPlatformIsPrimaryCore)\r
142 cmp r0, #1\r
143 bne _PrepareArguments\r
144\r
145_PrepareArguments:\r
146 mov r0, r10\r
147 mov r1, r11\r
298f8361 148 mov r2, r9\r
809a639e 149\r
809a639e
AB
150 // Jump to PrePiCore C code\r
151 // r0 = MpId\r
152 // r1 = UefiMemoryBase\r
153 // r2 = StacksBase\r
16a9fe2c 154 bl ASM_PFX(CEntryPoint)\r
809a639e
AB
155\r
156_NeverReturn:\r
157 b _NeverReturn\r