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