]> git.proxmox.com Git - mirror_edk2.git/blob - ArmVirtPkg/PrePi/Arm/ModuleEntryPoint.S
ArmVirtPkg/PrePi: remove ArmPlatformStackLib dependency
[mirror_edk2.git] / ArmVirtPkg / PrePi / Arm / ModuleEntryPoint.S
1 //
2 // Copyright (c) 2011-2013, ARM Limited. All rights reserved.
3 // Copyright (c) 2015-2016, Linaro Limited. All rights reserved.
4 //
5 // This program and the accompanying materials
6 // are licensed and made available under the terms and conditions of the BSD License
7 // which accompanies this distribution. The full text of the license may be found at
8 // http://opensource.org/licenses/bsd-license.php
9 //
10 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 //
13 //
14
15 #include <AsmMacroIoLib.h>
16
17 ASM_FUNC(_ModuleEntryPoint)
18 //
19 // We are built as a ET_DYN PIE executable, so we need to process all
20 // relative relocations if we are executing from a different offset than we
21 // were linked at. This is only possible if we are running from RAM.
22 //
23 ADRL (r4, __reloc_base)
24 ADRL (r5, __reloc_start)
25 ADRL (r6, __reloc_end)
26
27 .Lreloc_loop:
28 cmp r5, r6
29 bhs .Lreloc_done
30
31 //
32 // AArch32 uses the ELF32 REL format, which means each entry in the
33 // relocation table consists of
34 //
35 // UINT32 offset : the relative offset of the value that needs to
36 // be relocated
37 // UINT32 info : relocation type and symbol index (the latter is
38 // not used for R_ARM_RELATIVE relocations)
39 //
40 ldrd r8, r9, [r5], #8 // read offset into r8 and info into r9
41 cmp r9, #23 // check info == R_ARM_RELATIVE?
42 bne .Lreloc_loop // not a relative relocation? then skip
43
44 ldr r9, [r8, r4] // read addend into r9
45 add r9, r9, r1 // add image base to addend to get relocated value
46 str r9, [r8, r4] // write relocated value at offset
47 b .Lreloc_loop
48 .Lreloc_done:
49
50 // Do early platform specific actions
51 bl ASM_PFX(ArmPlatformPeiBootAction)
52
53 // Get ID of this CPU in Multicore system
54 bl ASM_PFX(ArmReadMpidr)
55 // Keep a copy of the MpId register value
56 mov r10, r0
57
58 // Check if we can install the stack at the top of the System Memory or if we need
59 // to install the stacks at the bottom of the Firmware Device (case the FD is located
60 // at the top of the DRAM)
61 _SetupStackPosition:
62 // Compute Top of System Memory
63 LDRL (r1, PcdGet64 (PcdSystemMemoryBase))
64 ADRL (r12, PcdGet64 (PcdSystemMemorySize))
65 ldrd r2, r3, [r12]
66
67 // calculate the top of memory
68 adds r2, r2, r1
69 sub r2, r2, #1
70 addcs r3, r3, #1
71
72 // truncate the memory used by UEFI to 4 GB range
73 teq r3, #0
74 movne r1, #-1
75 moveq r1, r2
76
77 // Calculate Top of the Firmware Device
78 LDRL (r2, PcdGet64 (PcdFdBaseAddress))
79 MOV32 (r3, FixedPcdGet32 (PcdFdSize) - 1)
80 add r3, r3, r2 // r3 = FdTop = PcdFdBaseAddress + PcdFdSize
81
82 // UEFI Memory Size (stacks are allocated in this region)
83 MOV32 (r4, FixedPcdGet32(PcdSystemMemoryUefiRegionSize))
84
85 //
86 // Reserve the memory for the UEFI region (contain stacks on its top)
87 //
88
89 // Calculate how much space there is between the top of the Firmware and the Top of the System Memory
90 subs r0, r1, r3 // r0 = SystemMemoryTop - FdTop
91 bmi _SetupStack // Jump if negative (FdTop > SystemMemoryTop). Case when the PrePi is in XIP memory outside of the DRAM
92 cmp r0, r4
93 bge _SetupStack
94
95 // Case the top of stacks is the FdBaseAddress
96 mov r1, r2
97
98 _SetupStack:
99 // r1 contains the top of the stack (and the UEFI Memory)
100
101 // Because the 'push' instruction is equivalent to 'stmdb' (decrement before), we need to increment
102 // one to the top of the stack. We check if incrementing one does not overflow (case of DRAM at the
103 // top of the memory space)
104 adds r11, r1, #1
105 bcs _SetupOverflowStack
106
107 _SetupAlignedStack:
108 mov r1, r11
109 b _GetBaseUefiMemory
110
111 _SetupOverflowStack:
112 // Case memory at the top of the address space. Ensure the top of the stack is EFI_PAGE_SIZE
113 // aligned (4KB)
114 MOV32 (r11, (~EFI_PAGE_MASK) & 0xffffffff)
115 and r1, r1, r11
116
117 _GetBaseUefiMemory:
118 // Calculate the Base of the UEFI Memory
119 sub r11, r1, r4
120
121 _GetStackBase:
122 // r1 = The top of the Mpcore Stacks
123 mov sp, r1
124
125 // Stack for the primary core = PrimaryCoreStack
126 MOV32 (r2, FixedPcdGet32(PcdCPUCorePrimaryStackSize))
127 sub r9, r1, r2
128
129 mov r0, r10
130 mov r1, r11
131 mov r2, r9
132
133 // Jump to PrePiCore C code
134 // r0 = MpId
135 // r1 = UefiMemoryBase
136 // r2 = StacksBase
137 bl ASM_PFX(CEntryPoint)
138
139 _NeverReturn:
140 b _NeverReturn
141
142 ASM_PFX(ArmPlatformPeiBootAction):
143 //
144 // If we are booting from RAM using the Linux kernel boot protocol, r0 will
145 // point to the DTB image in memory. Otherwise, use the default value defined
146 // by the platform.
147 //
148 teq r0, #0
149 bne 0f
150 LDRL (r0, PcdGet64 (PcdDeviceTreeInitialBaseAddress))
151
152 0:mov r11, r14 // preserve LR
153 mov r10, r0 // preserve DTB pointer
154 mov r9, r1 // preserve base of image pointer
155
156 //
157 // The base of the runtime image has been preserved in r1. Check whether
158 // the expected magic number can be found in the header.
159 //
160 ldr r8, .LArm32LinuxMagic
161 ldr r7, [r1, #0x24]
162 cmp r7, r8
163 bne .Lout
164
165 //
166 //
167 // OK, so far so good. We have confirmed that we likely have a DTB and are
168 // booting via the ARM Linux boot protocol. Update the base-of-image PCD
169 // to the actual relocated value, and add the shift of PcdFdBaseAddress to
170 // PcdFvBaseAddress as well
171 //
172 ADRL (r8, PcdGet64 (PcdFdBaseAddress))
173 ADRL (r7, PcdGet64 (PcdFvBaseAddress))
174 ldr r6, [r8]
175 ldr r5, [r7]
176 sub r5, r5, r6
177 add r5, r5, r1
178 str r1, [r8]
179 str r5, [r7]
180
181 //
182 // Discover the memory size and offset from the DTB, and record in the
183 // respective PCDs. This will also return false if a corrupt DTB is
184 // encountered. Since we are calling a C function, use the window at the
185 // beginning of the FD image as a temp stack.
186 //
187 ADRL (r1, PcdGet64 (PcdSystemMemoryBase))
188 ADRL (r2, PcdGet64 (PcdSystemMemorySize))
189 mov sp, r5
190 bl FindMemnode
191 teq r0, #0
192 beq .Lout
193
194 //
195 // Copy the DTB to the slack space right after the 64 byte arm64/Linux style
196 // image header at the base of this image (defined in the FDF), and record the
197 // pointer in PcdDeviceTreeInitialBaseAddress.
198 //
199 ADRL (r8, PcdGet64 (PcdDeviceTreeInitialBaseAddress))
200 add r9, r9, #0x40
201 str r9, [r8]
202
203 mov r0, r9
204 mov r1, r10
205 bl CopyFdt
206
207 .Lout:
208 bx r11
209
210 .LArm32LinuxMagic:
211 .byte 0x18, 0x28, 0x6f, 0x01