]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/Pei/PeiMain/PeiMain.c
Fix the wrong memory type for BSP stack hob. EfiConventionalMemoryType will be reclai...
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain / PeiMain.c
CommitLineData
192f6d4c 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13\r
14 PeiMain.c\r
15\r
16Abstract:\r
17\r
18 Pei Core Main Entry Point\r
19\r
20Revision History\r
21\r
22--*/\r
23\r
192f6d4c 24#include <PeiMain.h>\r
25\r
26//\r
27//CAR is filled with this initial value during SEC phase\r
28//\r
29#define INIT_CAR_VALUE 0x5AA55AA5\r
30\r
31static EFI_PEI_PPI_DESCRIPTOR mMemoryDiscoveredPpi = {\r
32 (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),\r
33 &gEfiPeiMemoryDiscoveredPpiGuid,\r
34 NULL\r
35};\r
36\r
37//\r
38// Pei Core Module Variables\r
39//\r
40//\r
41static EFI_PEI_SERVICES mPS = {\r
42 {\r
43 PEI_SERVICES_SIGNATURE,\r
44 PEI_SERVICES_REVISION,\r
45 sizeof (EFI_PEI_SERVICES),\r
46 0,\r
47 0\r
48 },\r
49 PeiInstallPpi,\r
50 PeiReInstallPpi,\r
51 PeiLocatePpi,\r
52 PeiNotifyPpi,\r
53\r
54 PeiGetBootMode,\r
55 PeiSetBootMode,\r
56\r
57 PeiGetHobList,\r
58 PeiCreateHob,\r
59\r
60 PeiFvFindNextVolume,\r
61 PeiFfsFindNextFile,\r
62 PeiFfsFindSectionData,\r
63\r
b0d803fe 64 PeiInstallPeiMemory, \r
192f6d4c 65 PeiAllocatePages,\r
66 PeiAllocatePool,\r
67 (EFI_PEI_COPY_MEM)CopyMem,\r
68 (EFI_PEI_SET_MEM)SetMem,\r
69\r
70 PeiReportStatusCode,\r
14e8823a 71 PeiResetSystem,\r
b0d803fe 72\r
14e8823a 73 NULL,\r
74 NULL,\r
b0d803fe 75\r
76 PeiFfsFindFileByName,\r
77 PeiFfsGetFileInfo,\r
78 PeiFfsGetVolumeInfo,\r
14e8823a 79 PeiRegisterForShadow\r
192f6d4c 80};\r
81\r
82EFI_STATUS\r
83EFIAPI\r
84PeiCore (\r
5aae0aa7 85 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,\r
5088e385 86 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,\r
5aae0aa7 87 IN VOID *Data\r
192f6d4c 88 )\r
89/*++\r
90\r
91Routine Description:\r
92\r
93 The entry routine to Pei Core, invoked by PeiMain during transition\r
94 from SEC to PEI. After switching stack in the PEI core, it will restart\r
95 with the old core data.\r
96\r
97Arguments:\r
98\r
5aae0aa7 99 SecCoreData - Points to a data structure containing information about the PEI core's operating\r
100 environment, such as the size and location of temporary RAM, the stack location and\r
101 the BFV location.\r
102 PpiList - Points to a list of one or more PPI descriptors to be installed initially by the PEI core.\r
103 An empty PPI list consists of a single descriptor with the end-tag\r
104 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization\r
105 phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such\r
106 that both the PEI Foundation and any modules can leverage the associated service\r
107 calls and/or code in these early PPIs\r
108 Data - Pointer to old core data that is used to initialize the\r
192f6d4c 109 core's data areas.\r
110\r
111Returns:\r
112\r
113 This function never returns\r
114 EFI_NOT_FOUND - Never reach\r
115\r
116--*/\r
117{\r
118 PEI_CORE_INSTANCE PrivateData;\r
119 EFI_STATUS Status;\r
120 PEI_CORE_TEMP_POINTERS TempPtr;\r
192f6d4c 121 UINT64 mTick;\r
122 PEI_CORE_INSTANCE *OldCoreData;\r
b0d803fe 123 EFI_PEI_CPU_IO_PPI *CpuIo;\r
124 EFI_PEI_PCI_CFG2_PPI *PciCfg;\r
02422d17 125 UINT64 SecPlatformInfoRecordSize;\r
126 EFI_SEC_PLATFORM_INFORMATION_PPI *SecPlatformInfoPpi;\r
127 EFI_SEC_PLATFORM_INFORMATION_RECORD *SecPlatformInfoRecord;\r
192f6d4c 128\r
129 mTick = 0;\r
130 OldCoreData = (PEI_CORE_INSTANCE *) Data;\r
131\r
132 if (PerformanceMeasurementEnabled()) {\r
133 if (OldCoreData == NULL) {\r
134 mTick = GetPerformanceCounter ();\r
135 }\r
136 }\r
137\r
138 //\r
139 // For IPF in CAR mode the real memory access is uncached,in InstallPeiMemory()\r
140 // the 63-bit of address is set to 1.\r
141 //\r
142 SWITCH_TO_CACHE_MODE (OldCoreData);\r
143\r
144 if (OldCoreData != NULL) {\r
145 CopyMem (&PrivateData, OldCoreData, sizeof (PEI_CORE_INSTANCE));\r
b0d803fe 146 \r
147 CpuIo = (VOID*)PrivateData.ServiceTableShadow.CpuIo;\r
148 PciCfg = (VOID*)PrivateData.ServiceTableShadow.PciCfg;\r
149 \r
150 CopyMem (&PrivateData.ServiceTableShadow, &mPS, sizeof (mPS));\r
151 \r
152 PrivateData.ServiceTableShadow.CpuIo = CpuIo;\r
153 PrivateData.ServiceTableShadow.PciCfg = PciCfg;\r
192f6d4c 154 } else {\r
155 ZeroMem (&PrivateData, sizeof (PEI_CORE_INSTANCE));\r
b0d803fe 156 PrivateData.Signature = PEI_CORE_HANDLE_SIGNATURE;\r
157 CopyMem (&PrivateData.ServiceTableShadow, &mPS, sizeof (mPS));\r
192f6d4c 158 }\r
159\r
b0d803fe 160 PrivateData.PS = &PrivateData.ServiceTableShadow;\r
192f6d4c 161\r
162 //\r
163 // Initialize libraries that the PeiCore is linked against\r
b0d803fe 164 // BUGBUG: The FileHandle is passed in as NULL. Do we look it up or remove it from the lib init?\r
192f6d4c 165 //\r
166 ProcessLibraryConstructorList (NULL, &PrivateData.PS);\r
167\r
b0d803fe 168 InitializeMemoryServices (&PrivateData, SecCoreData, OldCoreData);\r
192f6d4c 169\r
b0d803fe 170 InitializePpiServices (&PrivateData, OldCoreData);\r
192f6d4c 171\r
81c7803c 172 //\r
173 // Save PeiServicePointer so that it can be retrieved anywhere.\r
174 //\r
175 SetPeiServicesTablePointer(&PrivateData.PS);\r
176 \r
192f6d4c 177 if (OldCoreData != NULL) {\r
178\r
179 PERF_END (NULL,"PreMem", NULL, 0);\r
180 PERF_START (NULL,"PostMem", NULL, 0);\r
181\r
182 //\r
183 // The following code dumps out interesting cache as RAM usage information\r
184 // so we can keep tabs on how the cache as RAM is being utilized. The\r
185 // DEBUG_CODE_BEGIN macro is used to prevent this code from being compiled\r
186 // on a debug build.\r
187 //\r
188 DEBUG_CODE_BEGIN ();\r
189 UINTN *StackPointer;\r
190 UINTN StackValue;\r
191\r
192 StackValue = INIT_CAR_VALUE;\r
6797657e 193 for (StackPointer = (UINTN *) OldCoreData->TopOfCarHeap;\r
194 ((UINTN) StackPointer < ((UINTN) OldCoreData->MaxTopOfCarHeap))\r
192f6d4c 195 && StackValue == INIT_CAR_VALUE;\r
196 StackPointer++) {\r
197 StackValue = *StackPointer;\r
198 }\r
6797657e 199 \r
192f6d4c 200 DEBUG ((EFI_D_INFO, "Total Cache as RAM: %d bytes.\n", OldCoreData->SizeOfCacheAsRam));\r
201 DEBUG ((EFI_D_INFO, " CAR stack ever used: %d bytes.\n",\r
61f21f40 202 ((UINTN) OldCoreData->MaxTopOfCarHeap - (UINTN) StackPointer)\r
192f6d4c 203 ));\r
204 DEBUG ((EFI_D_INFO, " CAR heap used: %d bytes.\n",\r
205 ((UINTN) OldCoreData->HobList.HandoffInformationTable->EfiFreeMemoryBottom -\r
206 (UINTN) OldCoreData->HobList.Raw)\r
207 ));\r
208 DEBUG_CODE_END ();\r
209\r
210 //\r
211 // Alert any listeners that there is permanent memory available\r
212 //\r
213 \r
214 PERF_START (NULL,"DisMem", NULL, 0);\r
215 Status = PeiServicesInstallPpi (&mMemoryDiscoveredPpi);\r
216 PERF_END (NULL,"DisMem", NULL, 0);\r
217\r
218 } else {\r
219\r
220 //\r
221 // Report Status Code EFI_SW_PC_INIT\r
222 //\r
223 REPORT_STATUS_CODE (\r
224 EFI_PROGRESS_CODE,\r
225 EFI_SOFTWARE_PEI_CORE | EFI_SW_PC_INIT\r
226 );\r
227\r
228 PERF_START (NULL,"PEI", NULL, mTick);\r
229 //\r
230 // If first pass, start performance measurement.\r
231 //\r
232 PERF_START (NULL,"PreMem", NULL, mTick);\r
233\r
234 //\r
235 // If SEC provided any PPI services to PEI, install them.\r
236 //\r
5088e385 237 if (PpiList != NULL) {\r
238 Status = PeiServicesInstallPpi (PpiList);\r
192f6d4c 239 ASSERT_EFI_ERROR (Status);\r
02422d17 240 \r
241 //\r
242 // PI spec Vol 1, 7.3.1 specifies that this same information reported by EFI_SEC_PLATFORM_INFORMATION_PPI\r
243 // will be placed in a GUIDed HOB with the PPI GUID as the HOB GUID for HOB consumer phase.\r
244 //\r
245 Status = PeiServicesLocatePpi (\r
246 &gEfiSecPlatformInformationPpiGuid,\r
247 0,\r
248 NULL,\r
249 (VOID **) &SecPlatformInfoPpi\r
250 );\r
251 if (!EFI_ERROR (Status)) {\r
252 SecPlatformInfoRecord = AllocateZeroPool (sizeof(*SecPlatformInfoRecord));\r
253 ASSERT (SecPlatformInfoRecord != NULL);\r
254\r
255 SecPlatformInfoRecordSize = sizeof(*SecPlatformInfoRecord);\r
256 \r
257 Status = SecPlatformInfoPpi->PlatformInformation (\r
258 (CONST EFI_PEI_SERVICES **) GetPeiServicesTablePointer (),\r
259 &SecPlatformInfoRecordSize,\r
260 SecPlatformInfoRecord\r
261 );\r
262 \r
263 if (!EFI_ERROR (Status)) {\r
264 BuildGuidDataHob (\r
265 &gEfiSecPlatformInformationPpiGuid,\r
266 SecPlatformInfoRecord,\r
267 sizeof (*SecPlatformInfoRecord)\r
268 );\r
269 }\r
270 }\r
192f6d4c 271 }\r
272 }\r
273\r
b0d803fe 274 InitializeSecurityServices (&PrivateData.PS, OldCoreData);\r
275\r
276 InitializeDispatcherData (&PrivateData, OldCoreData, SecCoreData);\r
277\r
278 //\r
279 // Install Pei Load File PPI. \r
280 //\r
281 InitializeImageServices (&PrivateData, OldCoreData);\r
192f6d4c 282\r
283 //\r
284 // Call PEIM dispatcher\r
285 //\r
b0d803fe 286 PeiDispatcher (SecCoreData, &PrivateData);\r
192f6d4c 287\r
288 //\r
289 // Check if InstallPeiMemory service was called.\r
290 //\r
291 ASSERT(PrivateData.PeiMemoryInstalled == TRUE);\r
292\r
293 PERF_END (NULL, "PostMem", NULL, 0);\r
294\r
295 Status = PeiServicesLocatePpi (\r
296 &gEfiDxeIplPpiGuid,\r
297 0,\r
298 NULL,\r
299 (VOID **)&TempPtr.DxeIpl\r
300 );\r
301 ASSERT_EFI_ERROR (Status);\r
302\r
303 DEBUG ((EFI_D_INFO, "DXE IPL Entry\n"));\r
304 Status = TempPtr.DxeIpl->Entry (\r
305 TempPtr.DxeIpl,\r
306 &PrivateData.PS,\r
307 PrivateData.HobList\r
308 );\r
309\r
310 ASSERT_EFI_ERROR (Status);\r
311\r
312 return EFI_NOT_FOUND;\r
313}\r
314\r