]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
Fix GCC build error!
[mirror_edk2.git] / MdeModulePkg / Core / Pei / Dispatcher / Dispatcher.c
... / ...
CommitLineData
1/** @file\r
2 EFI PEI Core dispatch services\r
3 \r
4Copyright (c) 2006 - 2009, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "PeiMain.h"\r
16\r
17///\r
18/// temporary memory is filled with this initial value during SEC phase\r
19///\r
20#define INIT_CAR_VALUE 0x5AA55AA5\r
21\r
22typedef struct {\r
23 EFI_STATUS_CODE_DATA DataHeader;\r
24 EFI_HANDLE Handle;\r
25} PEIM_FILE_HANDLE_EXTENDED_DATA;\r
26\r
27/**\r
28\r
29 Discover all Peims and optional Apriori file in one FV. There is at most one\r
30 Apriori file in one FV.\r
31\r
32\r
33 @param Private Pointer to the private data passed in from caller\r
34 @param CoreFileHandle The instance of PEI_CORE_FV_HANDLE.\r
35\r
36**/\r
37VOID\r
38DiscoverPeimsAndOrderWithApriori (\r
39 IN PEI_CORE_INSTANCE *Private,\r
40 IN PEI_CORE_FV_HANDLE *CoreFileHandle\r
41 )\r
42{\r
43 EFI_STATUS Status;\r
44 EFI_PEI_FV_HANDLE FileHandle;\r
45 EFI_PEI_FILE_HANDLE AprioriFileHandle;\r
46 EFI_GUID *Apriori;\r
47 UINTN Index;\r
48 UINTN Index2;\r
49 UINTN PeimIndex;\r
50 UINTN PeimCount;\r
51 EFI_GUID *Guid;\r
52 EFI_PEI_FV_HANDLE TempFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];\r
53 EFI_GUID FileGuid[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];\r
54 EFI_PEI_FIRMWARE_VOLUME_PPI *FvPpi;\r
55 EFI_FV_FILE_INFO FileInfo;\r
56 \r
57 FvPpi = CoreFileHandle->FvPpi;\r
58 \r
59 //\r
60 // Walk the FV and find all the PEIMs and the Apriori file.\r
61 //\r
62 AprioriFileHandle = NULL;\r
63 Private->CurrentFvFileHandles[0] = NULL;\r
64 Guid = NULL;\r
65 FileHandle = NULL;\r
66\r
67 //\r
68 // If the current Fv has been scanned, directly get its cachable record.\r
69 //\r
70 if (Private->Fv[Private->CurrentPeimFvCount].ScanFv) {\r
71 CopyMem (Private->CurrentFvFileHandles, Private->Fv[Private->CurrentPeimFvCount].FvFileHandles, sizeof (Private->CurrentFvFileHandles));\r
72 return;\r
73 }\r
74\r
75 //\r
76 // Go ahead to scan this Fv, and cache FileHandles within it.\r
77 //\r
78 for (PeimCount = 0; PeimCount < FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv); PeimCount++) {\r
79 Status = FvPpi->FindFileByType (FvPpi, PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE, CoreFileHandle->FvHandle, &FileHandle);\r
80 if (Status != EFI_SUCCESS) {\r
81 break;\r
82 }\r
83\r
84 Private->CurrentFvFileHandles[PeimCount] = FileHandle;\r
85 }\r
86 \r
87 //\r
88 // Check whether the count of Peims exceeds the max support PEIMs in a FV image\r
89 // If more Peims are required in a FV image, PcdPeiCoreMaxPeimPerFv can be set to a larger value in DSC file.\r
90 //\r
91 ASSERT (PeimCount < FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv));\r
92\r
93 //\r
94 // Get Apriori File handle\r
95 //\r
96 Private->AprioriCount = 0;\r
97 Status = FvPpi->FindFileByName (FvPpi, &gPeiAprioriFileNameGuid, &CoreFileHandle->FvHandle, &AprioriFileHandle);\r
98 if (!EFI_ERROR(Status) && AprioriFileHandle != NULL) {\r
99 //\r
100 // Read the Apriori file\r
101 //\r
102 Status = FvPpi->FindSectionByType (FvPpi, EFI_SECTION_RAW, AprioriFileHandle, (VOID **) &Apriori);\r
103 if (!EFI_ERROR (Status)) {\r
104 //\r
105 // Calculate the number of PEIMs in the A Priori list\r
106 //\r
107 Status = FvPpi->GetFileInfo (FvPpi, AprioriFileHandle, &FileInfo);\r
108 ASSERT_EFI_ERROR (Status);\r
109 Private->AprioriCount = FileInfo.BufferSize & 0x00FFFFFF;\r
110 Private->AprioriCount -= sizeof (EFI_FFS_FILE_HEADER) - sizeof (EFI_COMMON_SECTION_HEADER);\r
111 Private->AprioriCount /= sizeof (EFI_GUID);\r
112\r
113 ZeroMem (FileGuid, sizeof (FileGuid));\r
114 for (Index = 0; Index < PeimCount; Index++) {\r
115 //\r
116 // Make an array of file name guids that matches the FileHandle array so we can convert\r
117 // quickly from file name to file handle\r
118 //\r
119 Status = FvPpi->GetFileInfo (FvPpi, Private->CurrentFvFileHandles[Index], &FileInfo);\r
120 CopyMem (&FileGuid[Index], &FileInfo.FileName, sizeof(EFI_GUID));\r
121 }\r
122\r
123 //\r
124 // Walk through FileGuid array to find out who is invalid PEIM guid in Apriori file.\r
125 // Add avalible PEIMs in Apriori file into TempFileHandles array at first.\r
126 //\r
127 Index2 = 0;\r
128 for (Index = 0; Index2 < Private->AprioriCount; Index++) {\r
129 while (Index2 < Private->AprioriCount) {\r
130 Guid = ScanGuid (FileGuid, PeimCount * sizeof (EFI_GUID), &Apriori[Index2++]);\r
131 if (Guid != NULL) {\r
132 break;\r
133 }\r
134 }\r
135 if (Guid == NULL) {\r
136 break;\r
137 }\r
138 PeimIndex = ((UINTN)Guid - (UINTN)&FileGuid[0])/sizeof (EFI_GUID);\r
139 TempFileHandles[Index] = Private->CurrentFvFileHandles[PeimIndex];\r
140\r
141 //\r
142 // Since we have copied the file handle we can remove it from this list.\r
143 //\r
144 Private->CurrentFvFileHandles[PeimIndex] = NULL;\r
145 }\r
146\r
147 //\r
148 // Update valid Aprioricount\r
149 //\r
150 Private->AprioriCount = Index;\r
151\r
152 //\r
153 // Add in any PEIMs not in the Apriori file\r
154 //\r
155 for (;Index < PeimCount; Index++) {\r
156 for (Index2 = 0; Index2 < PeimCount; Index2++) {\r
157 if (Private->CurrentFvFileHandles[Index2] != NULL) {\r
158 TempFileHandles[Index] = Private->CurrentFvFileHandles[Index2];\r
159 Private->CurrentFvFileHandles[Index2] = NULL;\r
160 break;\r
161 }\r
162 }\r
163 }\r
164 //\r
165 //Index the end of array contains re-range Pei moudle.\r
166 //\r
167 TempFileHandles[Index] = NULL;\r
168\r
169 //\r
170 // Private->CurrentFvFileHandles is currently in PEIM in the FV order.\r
171 // We need to update it to start with files in the A Priori list and\r
172 // then the remaining files in PEIM order.\r
173 //\r
174 CopyMem (Private->CurrentFvFileHandles, TempFileHandles, sizeof (Private->CurrentFvFileHandles));\r
175 }\r
176 }\r
177 //\r
178 // Cache the current Fv File Handle. So that we don't have to scan the Fv again.\r
179 // Instead, we can retrieve the file handles within this Fv from cachable data.\r
180 //\r
181 Private->Fv[Private->CurrentPeimFvCount].ScanFv = TRUE;\r
182 CopyMem (Private->Fv[Private->CurrentPeimFvCount].FvFileHandles, Private->CurrentFvFileHandles, sizeof (Private->CurrentFvFileHandles));\r
183\r
184}\r
185\r
186/**\r
187 Shadow PeiCore module from flash to installed memory.\r
188 \r
189 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
190 @param PrivateInMem PeiCore's private data structure\r
191\r
192 @return PeiCore function address after shadowing.\r
193**/\r
194VOID*\r
195ShadowPeiCore(\r
196 IN CONST EFI_PEI_SERVICES **PeiServices,\r
197 IN PEI_CORE_INSTANCE *PrivateInMem\r
198 )\r
199{\r
200 EFI_PEI_FILE_HANDLE PeiCoreFileHandle;\r
201 EFI_PHYSICAL_ADDRESS EntryPoint;\r
202 EFI_STATUS Status;\r
203 UINT32 AuthenticationState;\r
204\r
205 PeiCoreFileHandle = NULL;\r
206\r
207 //\r
208 // Find the PEI Core in the BFV\r
209 //\r
210 Status = PrivateInMem->Fv[0].FvPpi->FindFileByType (\r
211 PrivateInMem->Fv[0].FvPpi,\r
212 EFI_FV_FILETYPE_PEI_CORE,\r
213 PrivateInMem->Fv[0].FvHandle,\r
214 &PeiCoreFileHandle\r
215 );\r
216 ASSERT_EFI_ERROR (Status);\r
217\r
218 //\r
219 // Shadow PEI Core into memory so it will run faster\r
220 //\r
221 Status = PeiLoadImage (\r
222 PeiServices,\r
223 *((EFI_PEI_FILE_HANDLE*)&PeiCoreFileHandle),\r
224 &EntryPoint,\r
225 &AuthenticationState\r
226 );\r
227 ASSERT_EFI_ERROR (Status);\r
228\r
229 //\r
230 // Compute the PeiCore's function address after shaowed PeiCore.\r
231 // _ModuleEntryPoint is PeiCore main function entry\r
232 //\r
233 return (VOID*) ((UINTN) EntryPoint + (UINTN) PeiCore - (UINTN) _ModuleEntryPoint);\r
234}\r
235\r
236/**\r
237 Conduct PEIM dispatch.\r
238\r
239 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
240 environment, such as the size and location of temporary RAM, the stack location and\r
241 the BFV location.\r
242 @param Private Pointer to the private data passed in from caller\r
243\r
244**/\r
245VOID\r
246PeiDispatcher (\r
247 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,\r
248 IN PEI_CORE_INSTANCE *Private\r
249 )\r
250{\r
251 EFI_STATUS Status;\r
252 UINT32 Index1;\r
253 UINT32 Index2;\r
254 CONST EFI_PEI_SERVICES **PeiServices;\r
255 EFI_PEI_FILE_HANDLE PeimFileHandle;\r
256 UINTN FvCount;\r
257 UINTN PeimCount;\r
258 UINT32 AuthenticationState;\r
259 EFI_PHYSICAL_ADDRESS EntryPoint;\r
260 EFI_PEIM_ENTRY_POINT2 PeimEntryPoint;\r
261 UINTN SaveCurrentPeimCount;\r
262 UINTN SaveCurrentFvCount;\r
263 EFI_PEI_FILE_HANDLE SaveCurrentFileHandle;\r
264 PEIM_FILE_HANDLE_EXTENDED_DATA ExtendedData;\r
265 EFI_PHYSICAL_ADDRESS NewPermenentMemoryBase;\r
266 TEMPORARY_RAM_SUPPORT_PPI *TemporaryRamSupportPpi;\r
267 EFI_HOB_HANDOFF_INFO_TABLE *OldHandOffTable;\r
268 EFI_HOB_HANDOFF_INFO_TABLE *NewHandOffTable;\r
269 INTN StackOffset;\r
270 INTN HeapOffset;\r
271 PEI_CORE_INSTANCE *PrivateInMem;\r
272 UINT64 NewPeiStackSize;\r
273 UINT64 OldPeiStackSize;\r
274 UINT64 StackGap;\r
275 EFI_FV_FILE_INFO FvFileInfo;\r
276 UINTN OldCheckingTop;\r
277 UINTN OldCheckingBottom;\r
278 PEI_CORE_FV_HANDLE *CoreFvHandle;\r
279\r
280 PeiServices = (CONST EFI_PEI_SERVICES **) &Private->PS;\r
281 PeimEntryPoint = NULL;\r
282 PeimFileHandle = NULL;\r
283 EntryPoint = 0;\r
284\r
285 if ((Private->PeiMemoryInstalled) && (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME)) {\r
286 //\r
287 // Once real memory is available, shadow the RegisterForShadow modules. And meanwhile\r
288 // update the modules' status from PEIM_STATE_REGISITER_FOR_SHADOW to PEIM_STATE_DONE.\r
289 //\r
290 SaveCurrentPeimCount = Private->CurrentPeimCount;\r
291 SaveCurrentFvCount = Private->CurrentPeimFvCount;\r
292 SaveCurrentFileHandle = Private->CurrentFileHandle;\r
293\r
294 for (Index1 = 0; Index1 <= SaveCurrentFvCount; Index1++) {\r
295 for (Index2 = 0; (Index2 < FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)) && (Private->Fv[Index1].FvFileHandles[Index2] != NULL); Index2++) {\r
296 if (Private->Fv[Index1].PeimState[Index2] == PEIM_STATE_REGISITER_FOR_SHADOW) {\r
297 PeimFileHandle = Private->Fv[Index1].FvFileHandles[Index2];\r
298 Status = PeiLoadImage (\r
299 (CONST EFI_PEI_SERVICES **) &Private->PS,\r
300 PeimFileHandle,\r
301 &EntryPoint,\r
302 &AuthenticationState\r
303 );\r
304 if (Status == EFI_SUCCESS) {\r
305 //\r
306 // PEIM_STATE_REGISITER_FOR_SHADOW move to PEIM_STATE_DONE\r
307 //\r
308 Private->Fv[Index1].PeimState[Index2]++;\r
309 Private->CurrentFileHandle = PeimFileHandle;\r
310 Private->CurrentPeimFvCount = Index1;\r
311 Private->CurrentPeimCount = Index2;\r
312 //\r
313 // Call the PEIM entry point\r
314 //\r
315 PeimEntryPoint = (EFI_PEIM_ENTRY_POINT2)(UINTN)EntryPoint;\r
316\r
317 PERF_START (0, "PEIM", NULL, 0);\r
318 PeimEntryPoint(PeimFileHandle, (const EFI_PEI_SERVICES **) &Private->PS);\r
319 PERF_END (0, "PEIM", NULL, 0);\r
320 }\r
321\r
322 //\r
323 // Process the Notify list and dispatch any notifies for\r
324 // newly installed PPIs.\r
325 //\r
326 ProcessNotifyList (Private);\r
327 }\r
328 }\r
329 }\r
330 Private->CurrentFileHandle = SaveCurrentFileHandle;\r
331 Private->CurrentPeimFvCount = SaveCurrentFvCount;\r
332 Private->CurrentPeimCount = SaveCurrentPeimCount;\r
333 }\r
334\r
335 //\r
336 // This is the main dispatch loop. It will search known FVs for PEIMs and\r
337 // attempt to dispatch them. If any PEIM gets dispatched through a single\r
338 // pass of the dispatcher, it will start over from the Bfv again to see\r
339 // if any new PEIMs dependencies got satisfied. With a well ordered\r
340 // FV where PEIMs are found in the order their dependencies are also\r
341 // satisfied, this dipatcher should run only once.\r
342 //\r
343 do {\r
344 //\r
345 // In case that reenter PeiCore happens, the last pass record is still available. \r
346 //\r
347 if (!Private->PeimDispatcherReenter) {\r
348 Private->PeimNeedingDispatch = FALSE;\r
349 Private->PeimDispatchOnThisPass = FALSE;\r
350 } else {\r
351 Private->PeimDispatcherReenter = FALSE;\r
352 }\r
353 \r
354 for (FvCount = Private->CurrentPeimFvCount; FvCount < Private->FvCount; FvCount++) {\r
355 CoreFvHandle = FindNextCoreFvHandle (Private, FvCount);\r
356 ASSERT (CoreFvHandle != NULL);\r
357 \r
358 //\r
359 // If the FV has corresponding EFI_PEI_FIRMWARE_VOLUME_PPI instance, then dispatch it.\r
360 //\r
361 if (CoreFvHandle->FvPpi == NULL) {\r
362 continue;\r
363 }\r
364 \r
365 Private->CurrentPeimFvCount = FvCount;\r
366\r
367 if (Private->CurrentPeimCount == 0) {\r
368 //\r
369 // When going through each FV, at first, search Apriori file to\r
370 // reorder all PEIMs to ensure the PEIMs in Apriori file to get\r
371 // dispatch at first.\r
372 //\r
373 DiscoverPeimsAndOrderWithApriori (Private, CoreFvHandle);\r
374 }\r
375\r
376 //\r
377 // Start to dispatch all modules within the current Fv.\r
378 //\r
379 for (PeimCount = Private->CurrentPeimCount;\r
380 (PeimCount < FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)) && (Private->CurrentFvFileHandles[PeimCount] != NULL);\r
381 PeimCount++) {\r
382 Private->CurrentPeimCount = PeimCount;\r
383 PeimFileHandle = Private->CurrentFileHandle = Private->CurrentFvFileHandles[PeimCount];\r
384\r
385 if (Private->Fv[FvCount].PeimState[PeimCount] == PEIM_STATE_NOT_DISPATCHED) {\r
386 if (!DepexSatisfied (Private, PeimFileHandle, PeimCount)) {\r
387 Private->PeimNeedingDispatch = TRUE;\r
388 } else {\r
389 Status = CoreFvHandle->FvPpi->GetFileInfo (CoreFvHandle->FvPpi, PeimFileHandle, &FvFileInfo);\r
390 ASSERT_EFI_ERROR (Status);\r
391 if (FvFileInfo.FileType == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {\r
392 //\r
393 // For Fv type file, Produce new FV PPI and FV hob\r
394 //\r
395 Status = ProcessFvFile (&Private->Fv[FvCount], PeimFileHandle);\r
396 AuthenticationState = 0;\r
397 } else {\r
398 //\r
399 // For PEIM driver, Load its entry point\r
400 //\r
401 Status = PeiLoadImage (\r
402 PeiServices,\r
403 PeimFileHandle,\r
404 &EntryPoint,\r
405 &AuthenticationState\r
406 );\r
407 }\r
408\r
409 if ((Status == EFI_SUCCESS)) {\r
410 //\r
411 // The PEIM has its dependencies satisfied, and its entry point\r
412 // has been found, so invoke it.\r
413 //\r
414 PERF_START (0, "PEIM", NULL, 0);\r
415\r
416 ExtendedData.Handle = (EFI_HANDLE)PeimFileHandle;\r
417\r
418 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
419 EFI_PROGRESS_CODE,\r
420 FixedPcdGet32(PcdStatusCodeValuePeimDispatch),\r
421 (VOID *)(&ExtendedData),\r
422 sizeof (ExtendedData)\r
423 );\r
424\r
425 Status = VerifyPeim (Private, CoreFvHandle->FvHandle, PeimFileHandle);\r
426 if (Status != EFI_SECURITY_VIOLATION && (AuthenticationState == 0)) {\r
427 //\r
428 // PEIM_STATE_NOT_DISPATCHED move to PEIM_STATE_DISPATCHED\r
429 //\r
430 Private->Fv[FvCount].PeimState[PeimCount]++;\r
431\r
432 if (FvFileInfo.FileType != EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {\r
433 //\r
434 // Call the PEIM entry point for PEIM driver\r
435 //\r
436 PeimEntryPoint = (EFI_PEIM_ENTRY_POINT2)(UINTN)EntryPoint;\r
437 PeimEntryPoint (PeimFileHandle, (const EFI_PEI_SERVICES **) PeiServices);\r
438 }\r
439\r
440 Private->PeimDispatchOnThisPass = TRUE;\r
441 }\r
442\r
443 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
444 EFI_PROGRESS_CODE,\r
445 FixedPcdGet32(PcdStatusCodeValuePeimDispatch),\r
446 (VOID *)(&ExtendedData),\r
447 sizeof (ExtendedData)\r
448 );\r
449 PERF_END (0, "PEIM", NULL, 0);\r
450\r
451 }\r
452\r
453 if (Private->SwitchStackSignal) {\r
454 //\r
455 // Before switch stack from temporary memory to permenent memory, caculate the heap and stack\r
456 // usage in temporary memory for debuging.\r
457 //\r
458 DEBUG_CODE_BEGIN ();\r
459 UINT32 *StackPointer;\r
460 \r
461 for (StackPointer = (UINT32*)SecCoreData->StackBase;\r
462 (StackPointer < (UINT32*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \\r
463 && (*StackPointer == INIT_CAR_VALUE);\r
464 StackPointer ++);\r
465 \r
466 DEBUG ((EFI_D_INFO, "Total temporary memory: %d bytes.\n", (UINT32)SecCoreData->TemporaryRamSize));\r
467 DEBUG ((EFI_D_INFO, " temporary memory stack ever used: %d bytes.\n",\r
468 (SecCoreData->StackSize - ((UINTN) StackPointer - (UINTN)SecCoreData->StackBase))\r
469 ));\r
470 DEBUG ((EFI_D_INFO, " temporary memory heap used: %d bytes.\n",\r
471 ((UINTN) Private->HobList.HandoffInformationTable->EfiFreeMemoryBottom -\r
472 (UINTN) Private->HobList.Raw)\r
473 ));\r
474 DEBUG_CODE_END ();\r
475 \r
476 //\r
477 // Reserve the size of new stack at bottom of physical memory\r
478 //\r
479 OldPeiStackSize = (UINT64) SecCoreData->StackSize;\r
480 NewPeiStackSize = (RShiftU64 (Private->PhysicalMemoryLength, 1) + EFI_PAGE_MASK) & ~EFI_PAGE_MASK;\r
481 if (FixedPcdGet32(PcdPeiCoreMaxPeiStackSize) > (UINT32) NewPeiStackSize) {\r
482 Private->StackSize = NewPeiStackSize;\r
483 } else {\r
484 Private->StackSize = FixedPcdGet32(PcdPeiCoreMaxPeiStackSize);\r
485 }\r
486\r
487 //\r
488 // In theory, the size of new stack in permenent memory should large than\r
489 // size of old stack in temporary memory.\r
490 // But if new stack is smaller than the size of old stack, we also reserve\r
491 // the size of old stack at bottom of permenent memory.\r
492 //\r
493 DEBUG ((EFI_D_INFO, "Old Stack size %d, New stack size %d\n", (INT32) OldPeiStackSize, (INT32) Private->StackSize));\r
494 ASSERT (Private->StackSize >= OldPeiStackSize);\r
495 StackGap = Private->StackSize - OldPeiStackSize;\r
496\r
497 //\r
498 // Update HandOffHob for new installed permenent memory\r
499 //\r
500 OldHandOffTable = Private->HobList.HandoffInformationTable;\r
501 OldCheckingBottom = (UINTN)(SecCoreData->TemporaryRamBase);\r
502 OldCheckingTop = (UINTN)(OldCheckingBottom + SecCoreData->TemporaryRamSize);\r
503\r
504 //\r
505 // The whole temporary memory will be migrated to physical memory.\r
506 // CAUTION: The new base is computed accounding to gap of new stack.\r
507 //\r
508 NewPermenentMemoryBase = Private->PhysicalMemoryBegin + StackGap;\r
509 \r
510 //\r
511 // Caculate stack offset and heap offset between temporary memory and new permement \r
512 // memory seperately.\r
513 //\r
514 StackOffset = (UINTN) NewPermenentMemoryBase - (UINTN) SecCoreData->StackBase;\r
515 HeapOffset = (INTN) ((UINTN) Private->PhysicalMemoryBegin + Private->StackSize - \\r
516 (UINTN) SecCoreData->PeiTemporaryRamBase);\r
517 DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (INT64)HeapOffset, (INT64)StackOffset));\r
518 \r
519 //\r
520 // Caculate new HandOffTable and PrivateData address in permenet memory's stack\r
521 //\r
522 NewHandOffTable = (EFI_HOB_HANDOFF_INFO_TABLE *)((UINTN)OldHandOffTable + HeapOffset);\r
523 PrivateInMem = (PEI_CORE_INSTANCE *)((UINTN) (VOID*) Private + StackOffset);\r
524\r
525 //\r
526 // TemporaryRamSupportPpi is produced by platform's SEC\r
527 //\r
528 Status = PeiLocatePpi (\r
529 (CONST EFI_PEI_SERVICES **) PeiServices,\r
530 &gEfiTemporaryRamSupportPpiGuid,\r
531 0,\r
532 NULL,\r
533 (VOID**)&TemporaryRamSupportPpi\r
534 );\r
535\r
536\r
537 if (!EFI_ERROR (Status)) {\r
538 //\r
539 // Temporary Ram support Ppi is provided by platform, it will copy \r
540 // temporary memory to permenent memory and do stack switching.\r
541 // After invoken temporary Ram support, following code's stack is in \r
542 // memory but not in temporary memory.\r
543 //\r
544 TemporaryRamSupportPpi->TemporaryRamMigration (\r
545 (CONST EFI_PEI_SERVICES **) PeiServices,\r
546 (EFI_PHYSICAL_ADDRESS)(UINTN) SecCoreData->TemporaryRamBase,\r
547 (EFI_PHYSICAL_ADDRESS)(UINTN) NewPermenentMemoryBase,\r
548 SecCoreData->TemporaryRamSize\r
549 );\r
550\r
551 } else {\r
552 //\r
553 // In IA32/x64/Itanium architecture, we need platform provide\r
554 // TEMPORAY_RAM_MIGRATION_PPI.\r
555 //\r
556 ASSERT (FALSE);\r
557 }\r
558\r
559\r
560 //\r
561 //\r
562 // Fixup the PeiCore's private data\r
563 //\r
564 PrivateInMem->PS = &PrivateInMem->ServiceTableShadow;\r
565 PrivateInMem->CpuIo = &PrivateInMem->ServiceTableShadow.CpuIo;\r
566 PrivateInMem->HobList.Raw = (VOID*) ((UINTN) PrivateInMem->HobList.Raw + HeapOffset);\r
567 PrivateInMem->StackBase = (EFI_PHYSICAL_ADDRESS)(((UINTN)PrivateInMem->PhysicalMemoryBegin + EFI_PAGE_MASK) & ~EFI_PAGE_MASK);\r
568\r
569 PeiServices = (CONST EFI_PEI_SERVICES **) &PrivateInMem->PS;\r
570\r
571 //\r
572 // Fixup for PeiService's address\r
573 //\r
574 SetPeiServicesTablePointer(PeiServices);\r
575\r
576 //\r
577 // Update HandOffHob for new installed permenent memory\r
578 //\r
579 NewHandOffTable->EfiEndOfHobList =\r
580 (EFI_PHYSICAL_ADDRESS)((UINTN) NewHandOffTable->EfiEndOfHobList + HeapOffset);\r
581 NewHandOffTable->EfiMemoryTop = PrivateInMem->PhysicalMemoryBegin +\r
582 PrivateInMem->PhysicalMemoryLength;\r
583 NewHandOffTable->EfiMemoryBottom = PrivateInMem->PhysicalMemoryBegin;\r
584 NewHandOffTable->EfiFreeMemoryTop = PrivateInMem->FreePhysicalMemoryTop;\r
585 NewHandOffTable->EfiFreeMemoryBottom = NewHandOffTable->EfiEndOfHobList +\r
586 sizeof (EFI_HOB_GENERIC_HEADER);\r
587\r
588 //\r
589 // We need convert the PPI desciptor's pointer\r
590 //\r
591 ConvertPpiPointers (PrivateInMem, \r
592 OldCheckingBottom, \r
593 OldCheckingTop, \r
594 HeapOffset\r
595 );\r
596\r
597 DEBUG ((EFI_D_INFO, "Stack Hob: BaseAddress=0x%lX Length=0x%lX\n",\r
598 PrivateInMem->StackBase,\r
599 PrivateInMem->StackSize));\r
600 BuildStackHob (PrivateInMem->StackBase, PrivateInMem->StackSize);\r
601\r
602 //\r
603 // After the whole temporary memory is migrated, then we can allocate page in\r
604 // permenent memory.\r
605 //\r
606 PrivateInMem->PeiMemoryInstalled = TRUE;\r
607\r
608 //\r
609 // Indicate that PeiCore reenter\r
610 //\r
611 PrivateInMem->PeimDispatcherReenter = TRUE;\r
612 \r
613 //\r
614 // Shadow PEI Core. When permanent memory is avaiable, shadow\r
615 // PEI Core and PEIMs to get high performance.\r
616 //\r
617 PrivateInMem->ShadowedPeiCore = ShadowPeiCore (\r
618 PeiServices,\r
619 PrivateInMem\r
620 );\r
621 //\r
622 // Process the Notify list and dispatch any notifies for\r
623 // newly installed PPIs.\r
624 //\r
625 ProcessNotifyList (PrivateInMem);\r
626\r
627 //\r
628 // Entry PEI Phase 2\r
629 //\r
630 PeiCore (SecCoreData, NULL, PrivateInMem);\r
631\r
632 //\r
633 // Code should not come here\r
634 //\r
635 ASSERT_EFI_ERROR(FALSE);\r
636 }\r
637\r
638 //\r
639 // Process the Notify list and dispatch any notifies for\r
640 // newly installed PPIs.\r
641 //\r
642 ProcessNotifyList (Private);\r
643\r
644 if ((Private->PeiMemoryInstalled) && (Private->Fv[FvCount].PeimState[PeimCount] == PEIM_STATE_REGISITER_FOR_SHADOW) && \\r
645 (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME)) {\r
646 //\r
647 // If memory is availble we shadow images by default for performance reasons.\r
648 // We call the entry point a 2nd time so the module knows it's shadowed.\r
649 //\r
650 //PERF_START (PeiServices, L"PEIM", PeimFileHandle, 0);\r
651 ASSERT (PeimEntryPoint != NULL);\r
652 PeimEntryPoint (PeimFileHandle, (const EFI_PEI_SERVICES **) PeiServices);\r
653 //PERF_END (PeiServices, L"PEIM", PeimFileHandle, 0);\r
654\r
655 //\r
656 // PEIM_STATE_REGISITER_FOR_SHADOW move to PEIM_STATE_DONE\r
657 //\r
658 Private->Fv[FvCount].PeimState[PeimCount]++;\r
659\r
660 //\r
661 // Process the Notify list and dispatch any notifies for\r
662 // newly installed PPIs.\r
663 //\r
664 ProcessNotifyList (Private);\r
665 }\r
666 }\r
667 }\r
668 }\r
669\r
670 //\r
671 // We set to NULL here to optimize the 2nd entry to this routine after\r
672 // memory is found. This reprevents rescanning of the FV. We set to\r
673 // NULL here so we start at the begining of the next FV\r
674 //\r
675 Private->CurrentFileHandle = NULL;\r
676 Private->CurrentPeimCount = 0;\r
677 //\r
678 // Before walking through the next FV,Private->CurrentFvFileHandles[]should set to NULL\r
679 //\r
680 SetMem (Private->CurrentFvFileHandles, sizeof (Private->CurrentFvFileHandles), 0);\r
681 }\r
682\r
683 //\r
684 // Before making another pass, we should set Private->CurrentPeimFvCount =0 to go\r
685 // through all the FV.\r
686 //\r
687 Private->CurrentPeimFvCount = 0;\r
688\r
689 //\r
690 // PeimNeedingDispatch being TRUE means we found a PEIM that did not get\r
691 // dispatched. So we need to make another pass\r
692 //\r
693 // PeimDispatchOnThisPass being TRUE means we dispatched a PEIM on this\r
694 // pass. If we did not dispatch a PEIM there is no point in trying again\r
695 // as it will fail the next time too (nothing has changed).\r
696 //\r
697 } while (Private->PeimNeedingDispatch && Private->PeimDispatchOnThisPass);\r
698\r
699}\r
700\r
701/**\r
702 Initialize the Dispatcher's data members\r
703\r
704 @param PrivateData PeiCore's private data structure\r
705 @param OldCoreData Old data from SecCore\r
706 NULL if being run in non-permament memory mode.\r
707 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
708 environment, such as the size and location of temporary RAM, the stack location and\r
709 the BFV location.\r
710\r
711 @return None.\r
712\r
713**/\r
714VOID\r
715InitializeDispatcherData (\r
716 IN PEI_CORE_INSTANCE *PrivateData,\r
717 IN PEI_CORE_INSTANCE *OldCoreData,\r
718 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData\r
719 )\r
720{\r
721 if (OldCoreData == NULL) {\r
722 PrivateData->PeimDispatcherReenter = FALSE;\r
723 PeiInitializeFv (PrivateData, SecCoreData);\r
724 }\r
725\r
726 return;\r
727}\r
728\r
729/**\r
730 This routine parses the Dependency Expression, if available, and\r
731 decides if the module can be executed.\r
732\r
733\r
734 @param Private PeiCore's private data structure\r
735 @param FileHandle PEIM's file handle\r
736 @param PeimCount Peim count in all dispatched PEIMs.\r
737\r
738 @retval TRUE Can be dispatched\r
739 @retval FALSE Cannot be dispatched\r
740\r
741**/\r
742BOOLEAN\r
743DepexSatisfied (\r
744 IN PEI_CORE_INSTANCE *Private,\r
745 IN EFI_PEI_FILE_HANDLE FileHandle,\r
746 IN UINTN PeimCount\r
747 )\r
748{\r
749 EFI_STATUS Status;\r
750 VOID *DepexData;\r
751\r
752 if (PeimCount < Private->AprioriCount) {\r
753 //\r
754 // If its in the A priori file then we set Depex to TRUE\r
755 //\r
756 return TRUE;\r
757 }\r
758\r
759 //\r
760 // Depex section not in the encapsulated section.\r
761 //\r
762 Status = PeiServicesFfsFindSectionData (\r
763 EFI_SECTION_PEI_DEPEX,\r
764 FileHandle,\r
765 (VOID **)&DepexData\r
766 );\r
767\r
768 if (EFI_ERROR (Status)) {\r
769 //\r
770 // If there is no DEPEX, assume the module can be executed\r
771 //\r
772 return TRUE;\r
773 }\r
774\r
775 //\r
776 // Evaluate a given DEPEX\r
777 //\r
778 return PeimDispatchReadiness (&Private->PS, DepexData);\r
779}\r
780\r
781/**\r
782 This routine enable a PEIM to register itself to shadow when PEI Foundation\r
783 discovery permanent memory.\r
784\r
785 @param FileHandle File handle of a PEIM.\r
786\r
787 @retval EFI_NOT_FOUND The file handle doesn't point to PEIM itself.\r
788 @retval EFI_ALREADY_STARTED Indicate that the PEIM has been registered itself.\r
789 @retval EFI_SUCCESS Successfully to register itself.\r
790\r
791**/\r
792EFI_STATUS\r
793EFIAPI\r
794PeiRegisterForShadow (\r
795 IN EFI_PEI_FILE_HANDLE FileHandle\r
796 )\r
797{\r
798 PEI_CORE_INSTANCE *Private;\r
799 Private = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer ());\r
800\r
801 if (Private->CurrentFileHandle != FileHandle) {\r
802 //\r
803 // The FileHandle must be for the current PEIM\r
804 //\r
805 return EFI_NOT_FOUND;\r
806 }\r
807\r
808 if (Private->Fv[Private->CurrentPeimFvCount].PeimState[Private->CurrentPeimCount] >= PEIM_STATE_REGISITER_FOR_SHADOW) {\r
809 //\r
810 // If the PEIM has already entered the PEIM_STATE_REGISTER_FOR_SHADOW or PEIM_STATE_DONE then it's already been started\r
811 //\r
812 return EFI_ALREADY_STARTED;\r
813 }\r
814\r
815 Private->Fv[Private->CurrentPeimFvCount].PeimState[Private->CurrentPeimCount] = PEIM_STATE_REGISITER_FOR_SHADOW;\r
816\r
817 return EFI_SUCCESS;\r
818}\r
819\r
820\r