]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/PrePi/PrePi.c
7ef88c0e36a966157a51f6e8caba158f8d485fb2
[mirror_edk2.git] / ArmPlatformPkg / PrePi / PrePi.c
1 /** @file
2 *
3 * Copyright (c) 2011-2013, ARM 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 <PiPei.h>
16
17 #include <Library/DebugAgentLib.h>
18 #include <Library/PrePiLib.h>
19 #include <Library/PrintLib.h>
20 #include <Library/PeCoffGetEntryPointLib.h>
21 #include <Library/PrePiHobListPointerLib.h>
22 #include <Library/TimerLib.h>
23 #include <Library/PerformanceLib.h>
24
25 #include <Ppi/GuidedSectionExtraction.h>
26 #include <Ppi/ArmMpCoreInfo.h>
27 #include <Guid/LzmaDecompress.h>
28 #include <Guid/ArmGlobalVariableHob.h>
29
30 #include "PrePi.h"
31 #include "LzmaDecompress.h"
32
33 #define IS_XIP() (((UINT32)FixedPcdGet32 (PcdFdBaseAddress) > (UINT32)(FixedPcdGet32 (PcdSystemMemoryBase) + FixedPcdGet32 (PcdSystemMemorySize))) || \
34 ((FixedPcdGet32 (PcdFdBaseAddress) + FixedPcdGet32 (PcdFdSize)) < FixedPcdGet32 (PcdSystemMemoryBase)))
35
36 // Not used when PrePi in run in XIP mode
37 UINTN mGlobalVariableBase = 0;
38
39 EFI_STATUS
40 EFIAPI
41 ExtractGuidedSectionLibConstructor (
42 VOID
43 );
44
45 EFI_STATUS
46 EFIAPI
47 LzmaDecompressLibConstructor (
48 VOID
49 );
50
51 VOID
52 EFIAPI
53 BuildGlobalVariableHob (
54 IN EFI_PHYSICAL_ADDRESS GlobalVariableBase,
55 IN UINT32 GlobalVariableSize
56 )
57 {
58 ARM_HOB_GLOBAL_VARIABLE *Hob;
59
60 Hob = CreateHob (EFI_HOB_TYPE_GUID_EXTENSION, sizeof (ARM_HOB_GLOBAL_VARIABLE));
61 ASSERT(Hob != NULL);
62
63 CopyGuid (&(Hob->Header.Name), &gArmGlobalVariableGuid);
64 Hob->GlobalVariableBase = GlobalVariableBase;
65 Hob->GlobalVariableSize = GlobalVariableSize;
66 }
67
68 EFI_STATUS
69 GetPlatformPpi (
70 IN EFI_GUID *PpiGuid,
71 OUT VOID **Ppi
72 )
73 {
74 UINTN PpiListSize;
75 UINTN PpiListCount;
76 EFI_PEI_PPI_DESCRIPTOR *PpiList;
77 UINTN Index;
78
79 PpiListSize = 0;
80 ArmPlatformGetPlatformPpiList (&PpiListSize, &PpiList);
81 PpiListCount = PpiListSize / sizeof(EFI_PEI_PPI_DESCRIPTOR);
82 for (Index = 0; Index < PpiListCount; Index++, PpiList++) {
83 if (CompareGuid (PpiList->Guid, PpiGuid) == TRUE) {
84 *Ppi = PpiList->Ppi;
85 return EFI_SUCCESS;
86 }
87 }
88
89 return EFI_NOT_FOUND;
90 }
91
92 VOID
93 PrePiMain (
94 IN UINTN UefiMemoryBase,
95 IN UINTN StacksBase,
96 IN UINTN GlobalVariableBase,
97 IN UINT64 StartTimeStamp
98 )
99 {
100 EFI_HOB_HANDOFF_INFO_TABLE* HobList;
101 ARM_MP_CORE_INFO_PPI* ArmMpCoreInfoPpi;
102 UINTN ArmCoreCount;
103 ARM_CORE_INFO* ArmCoreInfoTable;
104 EFI_STATUS Status;
105 CHAR8 Buffer[100];
106 UINTN CharCount;
107 UINTN StacksSize;
108
109 // If ensure the FD is either part of the System Memory or totally outside of the System Memory (XIP)
110 ASSERT (IS_XIP() ||
111 ((FixedPcdGet32 (PcdFdBaseAddress) >= FixedPcdGet32 (PcdSystemMemoryBase)) &&
112 ((UINT32)(FixedPcdGet32 (PcdFdBaseAddress) + FixedPcdGet32 (PcdFdSize)) <= (UINT32)(FixedPcdGet32 (PcdSystemMemoryBase) + FixedPcdGet32 (PcdSystemMemorySize)))));
113
114 // Initialize the architecture specific bits
115 ArchInitialize ();
116
117 // Initialize the Serial Port
118 SerialPortInitialize ();
119 CharCount = AsciiSPrint (Buffer,sizeof (Buffer),"UEFI firmware (version %s built at %a on %a)\n\r",
120 (CHAR16*)PcdGetPtr(PcdFirmwareVersionString), __TIME__, __DATE__);
121 SerialPortWrite ((UINT8 *) Buffer, CharCount);
122
123 // Initialize the Debug Agent for Source Level Debugging
124 InitializeDebugAgent (DEBUG_AGENT_INIT_POSTMEM_SEC, NULL, NULL);
125 SaveAndSetDebugTimerInterrupt (TRUE);
126
127 // Declare the PI/UEFI memory region
128 HobList = HobConstructor (
129 (VOID*)UefiMemoryBase,
130 FixedPcdGet32 (PcdSystemMemoryUefiRegionSize),
131 (VOID*)UefiMemoryBase,
132 (VOID*)StacksBase // The top of the UEFI Memory is reserved for the stacks
133 );
134 PrePeiSetHobList (HobList);
135
136 // Initialize MMU and Memory HOBs (Resource Descriptor HOBs)
137 Status = MemoryPeim (UefiMemoryBase, FixedPcdGet32 (PcdSystemMemoryUefiRegionSize));
138 ASSERT_EFI_ERROR (Status);
139
140 // Create the Stacks HOB (reserve the memory for all stacks)
141 if (ArmIsMpCore ()) {
142 StacksSize = PcdGet32 (PcdCPUCorePrimaryStackSize) + (FixedPcdGet32(PcdClusterCount) * 4 * FixedPcdGet32(PcdCPUCoreSecondaryStackSize));
143 } else {
144 StacksSize = PcdGet32 (PcdCPUCorePrimaryStackSize);
145 }
146 BuildStackHob (StacksBase, StacksSize);
147
148 // Declare the Global Variable HOB
149 BuildGlobalVariableHob (GlobalVariableBase, FixedPcdGet32 (PcdPeiGlobalVariableSize));
150
151 //TODO: Call CpuPei as a library
152 BuildCpuHob (PcdGet8 (PcdPrePiCpuMemorySize), PcdGet8 (PcdPrePiCpuIoSize));
153
154 if (ArmIsMpCore ()) {
155 // Only MP Core platform need to produce gArmMpCoreInfoPpiGuid
156 Status = GetPlatformPpi (&gArmMpCoreInfoPpiGuid, (VOID**)&ArmMpCoreInfoPpi);
157
158 // On MP Core Platform we must implement the ARM MP Core Info PPI (gArmMpCoreInfoPpiGuid)
159 ASSERT_EFI_ERROR (Status);
160
161 // Build the MP Core Info Table
162 ArmCoreCount = 0;
163 Status = ArmMpCoreInfoPpi->GetMpCoreInfo (&ArmCoreCount, &ArmCoreInfoTable);
164 if (!EFI_ERROR(Status) && (ArmCoreCount > 0)) {
165 // Build MPCore Info HOB
166 BuildGuidDataHob (&gArmMpCoreInfoGuid, ArmCoreInfoTable, sizeof (ARM_CORE_INFO) * ArmCoreCount);
167 }
168 }
169
170 // Set the Boot Mode
171 SetBootMode (ArmPlatformGetBootMode ());
172
173 // Initialize Platform HOBs (CpuHob and FvHob)
174 Status = PlatformPeim ();
175 ASSERT_EFI_ERROR (Status);
176
177 // Now, the HOB List has been initialized, we can register performance information
178 PERF_START (NULL, "PEI", NULL, StartTimeStamp);
179
180 // SEC phase needs to run library constructors by hand.
181 ExtractGuidedSectionLibConstructor ();
182 LzmaDecompressLibConstructor ();
183
184 // Build HOBs to pass up our version of stuff the DXE Core needs to save space
185 BuildPeCoffLoaderHob ();
186 BuildExtractSectionHob (
187 &gLzmaCustomDecompressGuid,
188 LzmaGuidedSectionGetInfo,
189 LzmaGuidedSectionExtraction
190 );
191
192 // Assume the FV that contains the SEC (our code) also contains a compressed FV.
193 Status = DecompressFirstFv ();
194 ASSERT_EFI_ERROR (Status);
195
196 // Load the DXE Core and transfer control to it
197 Status = LoadDxeCoreFromFv (NULL, 0);
198 ASSERT_EFI_ERROR (Status);
199 }
200
201 VOID
202 CEntryPoint (
203 IN UINTN MpId,
204 IN UINTN UefiMemoryBase,
205 IN UINTN StacksBase,
206 IN UINTN GlobalVariableBase
207 )
208 {
209 UINT64 StartTimeStamp;
210
211 ASSERT(!ArmIsMpCore() || (PcdGet32 (PcdCoreCount) > 1));
212
213 // Initialize the platform specific controllers
214 ArmPlatformInitialize (MpId);
215
216 if (ArmPlatformIsPrimaryCore (MpId) && PerformanceMeasurementEnabled ()) {
217 // Initialize the Timer Library to setup the Timer HW controller
218 TimerConstructor ();
219 // We cannot call yet the PerformanceLib because the HOB List has not been initialized
220 StartTimeStamp = GetPerformanceCounter ();
221 } else {
222 StartTimeStamp = 0;
223 }
224
225 // Data Cache enabled on Primary core when MMU is enabled.
226 ArmDisableDataCache ();
227 // Invalidate Data cache
228 ArmInvalidateDataCache ();
229 // Invalidate instruction cache
230 ArmInvalidateInstructionCache ();
231 // Enable Instruction Caches on all cores.
232 ArmEnableInstructionCache ();
233
234 // Define the Global Variable region when we are not running in XIP
235 if (!IS_XIP()) {
236 if (ArmPlatformIsPrimaryCore (MpId)) {
237 mGlobalVariableBase = GlobalVariableBase;
238 if (ArmIsMpCore()) {
239 // Signal the Global Variable Region is defined (event: ARM_CPU_EVENT_DEFAULT)
240 ArmCallSEV ();
241 }
242 } else {
243 // Wait the Primay core has defined the address of the Global Variable region (event: ARM_CPU_EVENT_DEFAULT)
244 ArmCallWFE ();
245 }
246 }
247
248 // If not primary Jump to Secondary Main
249 if (ArmPlatformIsPrimaryCore (MpId)) {
250 // Goto primary Main.
251 PrimaryMain (UefiMemoryBase, StacksBase, GlobalVariableBase, StartTimeStamp);
252 } else {
253 SecondaryMain (MpId);
254 }
255
256 // DXE Core should always load and never return
257 ASSERT (FALSE);
258 }
259