]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
IntelFsp2WrapperPkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Core / Pei / Dispatcher / Dispatcher.c
CommitLineData
615c6dd0 1/** @file\r
b1f6a7c6 2 EFI PEI Core dispatch services\r
d1102dba 3\r
d39d1260 4Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>\r
d7bd924f 5(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>\r
9d510e61 6SPDX-License-Identifier: BSD-2-Clause-Patent\r
192f6d4c 7\r
615c6dd0 8**/\r
192f6d4c 9\r
0d516397 10#include "PeiMain.h"\r
192f6d4c 11\r
b1f6a7c6 12/**\r
b0d803fe 13\r
d39d1260 14 Discover all PEIMs and optional Apriori file in one FV. There is at most one\r
b0d803fe 15 Apriori file in one FV.\r
16\r
b0d803fe 17\r
3b428ade 18 @param Private Pointer to the private data passed in from caller\r
19 @param CoreFileHandle The instance of PEI_CORE_FV_HANDLE.\r
b0d803fe 20\r
b1f6a7c6 21**/\r
22VOID\r
23DiscoverPeimsAndOrderWithApriori (\r
24 IN PEI_CORE_INSTANCE *Private,\r
3b428ade 25 IN PEI_CORE_FV_HANDLE *CoreFileHandle\r
b1f6a7c6 26 )\r
b0d803fe 27{\r
28 EFI_STATUS Status;\r
890e5417 29 EFI_PEI_FILE_HANDLE FileHandle;\r
177aabe6 30 EFI_PEI_FILE_HANDLE AprioriFileHandle;\r
b0d803fe 31 EFI_GUID *Apriori;\r
32 UINTN Index;\r
33 UINTN Index2;\r
34 UINTN PeimIndex;\r
35 UINTN PeimCount;\r
36 EFI_GUID *Guid;\r
fe781940 37 EFI_PEI_FILE_HANDLE *TempFileHandles;\r
b62fe570 38 EFI_GUID *TempFileGuid;\r
3b428ade 39 EFI_PEI_FIRMWARE_VOLUME_PPI *FvPpi;\r
40 EFI_FV_FILE_INFO FileInfo;\r
d1102dba 41\r
3b428ade 42 FvPpi = CoreFileHandle->FvPpi;\r
d1102dba 43\r
b0d803fe 44 //\r
45 // Walk the FV and find all the PEIMs and the Apriori file.\r
46 //\r
47 AprioriFileHandle = NULL;\r
b62fe570 48 Private->CurrentFvFileHandles = NULL;\r
b0d803fe 49 Guid = NULL;\r
b0d803fe 50\r
51 //\r
d39d1260 52 // If the current FV has been scanned, directly get its cached records.\r
b0d803fe 53 //\r
b62fe570
SZ
54 if (CoreFileHandle->ScanFv) {\r
55 Private->CurrentFvFileHandles = CoreFileHandle->FvFileHandles;\r
b0d803fe 56 return;\r
57 }\r
58\r
b62fe570
SZ
59 TempFileHandles = Private->TempFileHandles;\r
60 TempFileGuid = Private->TempFileGuid;\r
61\r
b0d803fe 62 //\r
d39d1260 63 // Go ahead to scan this FV, get PeimCount and cache FileHandles within it to TempFileHandles.\r
b0d803fe 64 //\r
b62fe570
SZ
65 PeimCount = 0;\r
66 FileHandle = NULL;\r
67 do {\r
3b428ade 68 Status = FvPpi->FindFileByType (FvPpi, PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE, CoreFileHandle->FvHandle, &FileHandle);\r
b62fe570
SZ
69 if (!EFI_ERROR (Status)) {\r
70 if (PeimCount >= Private->TempPeimCount) {\r
71 //\r
72 // Run out of room, grow the buffer.\r
73 //\r
74 TempFileHandles = AllocatePool (\r
75 sizeof (EFI_PEI_FILE_HANDLE) * (Private->TempPeimCount + TEMP_FILE_GROWTH_STEP));\r
76 ASSERT (TempFileHandles != NULL);\r
77 CopyMem (\r
78 TempFileHandles,\r
79 Private->TempFileHandles,\r
80 sizeof (EFI_PEI_FILE_HANDLE) * Private->TempPeimCount\r
81 );\r
82 Private->TempFileHandles = TempFileHandles;\r
83 TempFileGuid = AllocatePool (\r
84 sizeof (EFI_GUID) * (Private->TempPeimCount + TEMP_FILE_GROWTH_STEP));\r
85 ASSERT (TempFileGuid != NULL);\r
86 CopyMem (\r
87 TempFileGuid,\r
88 Private->TempFileGuid,\r
89 sizeof (EFI_GUID) * Private->TempPeimCount\r
90 );\r
91 Private->TempFileGuid = TempFileGuid;\r
92 Private->TempPeimCount = Private->TempPeimCount + TEMP_FILE_GROWTH_STEP;\r
93 }\r
94\r
95 TempFileHandles[PeimCount++] = FileHandle;\r
b0d803fe 96 }\r
b62fe570
SZ
97 } while (!EFI_ERROR (Status));\r
98\r
99 DEBUG ((\r
100 DEBUG_INFO,\r
101 "%a(): Found 0x%x PEI FFS files in the %dth FV\n",\r
102 __FUNCTION__,\r
103 PeimCount,\r
104 Private->CurrentPeimFvCount\r
105 ));\r
58dcdada 106\r
b62fe570
SZ
107 if (PeimCount == 0) {\r
108 //\r
109 // No PEIM FFS file is found, set ScanFv flag and return.\r
110 //\r
111 CoreFileHandle->ScanFv = TRUE;\r
112 return;\r
b0d803fe 113 }\r
9b8e61be 114\r
97b2c9b5 115 //\r
b62fe570 116 // Record PeimCount, allocate buffer for PeimState and FvFileHandles.\r
97b2c9b5 117 //\r
b62fe570
SZ
118 CoreFileHandle->PeimCount = PeimCount;\r
119 CoreFileHandle->PeimState = AllocateZeroPool (sizeof (UINT8) * PeimCount);\r
120 ASSERT (CoreFileHandle->PeimState != NULL);\r
121 CoreFileHandle->FvFileHandles = AllocateZeroPool (sizeof (EFI_PEI_FILE_HANDLE) * PeimCount);\r
122 ASSERT (CoreFileHandle->FvFileHandles != NULL);\r
b0d803fe 123\r
3b428ade 124 //\r
125 // Get Apriori File handle\r
126 //\r
58dcdada 127 Private->AprioriCount = 0;\r
3b428ade 128 Status = FvPpi->FindFileByName (FvPpi, &gPeiAprioriFileNameGuid, &CoreFileHandle->FvHandle, &AprioriFileHandle);\r
129 if (!EFI_ERROR(Status) && AprioriFileHandle != NULL) {\r
b0d803fe 130 //\r
131 // Read the Apriori file\r
132 //\r
3b428ade 133 Status = FvPpi->FindSectionByType (FvPpi, EFI_SECTION_RAW, AprioriFileHandle, (VOID **) &Apriori);\r
b0d803fe 134 if (!EFI_ERROR (Status)) {\r
135 //\r
b62fe570 136 // Calculate the number of PEIMs in the Apriori file\r
b0d803fe 137 //\r
3b428ade 138 Status = FvPpi->GetFileInfo (FvPpi, AprioriFileHandle, &FileInfo);\r
139 ASSERT_EFI_ERROR (Status);\r
890e5417
SZ
140 Private->AprioriCount = FileInfo.BufferSize;\r
141 if (IS_SECTION2 (FileInfo.Buffer)) {\r
142 Private->AprioriCount -= sizeof (EFI_COMMON_SECTION_HEADER2);\r
143 } else {\r
144 Private->AprioriCount -= sizeof (EFI_COMMON_SECTION_HEADER);\r
145 }\r
b0d803fe 146 Private->AprioriCount /= sizeof (EFI_GUID);\r
58dcdada 147\r
b0d803fe 148 for (Index = 0; Index < PeimCount; Index++) {\r
149 //\r
d39d1260 150 // Make an array of file name GUIDs that matches the FileHandle array so we can convert\r
b0d803fe 151 // quickly from file name to file handle\r
152 //\r
b62fe570
SZ
153 Status = FvPpi->GetFileInfo (FvPpi, TempFileHandles[Index], &FileInfo);\r
154 ASSERT_EFI_ERROR (Status);\r
155 CopyMem (&TempFileGuid[Index], &FileInfo.FileName, sizeof(EFI_GUID));\r
b0d803fe 156 }\r
157\r
158 //\r
d39d1260 159 // Walk through TempFileGuid array to find out who is invalid PEIM GUID in Apriori file.\r
b62fe570 160 // Add available PEIMs in Apriori file into FvFileHandles array.\r
b0d803fe 161 //\r
b62fe570
SZ
162 Index = 0;\r
163 for (Index2 = 0; Index2 < Private->AprioriCount; Index2++) {\r
164 Guid = ScanGuid (TempFileGuid, PeimCount * sizeof (EFI_GUID), &Apriori[Index2]);\r
165 if (Guid != NULL) {\r
166 PeimIndex = ((UINTN)Guid - (UINTN)&TempFileGuid[0])/sizeof (EFI_GUID);\r
167 CoreFileHandle->FvFileHandles[Index++] = TempFileHandles[PeimIndex];\r
b0d803fe 168\r
b62fe570
SZ
169 //\r
170 // Since we have copied the file handle we can remove it from this list.\r
171 //\r
172 TempFileHandles[PeimIndex] = NULL;\r
173 }\r
b0d803fe 174 }\r
175\r
176 //\r
b62fe570 177 // Update valid AprioriCount\r
b0d803fe 178 //\r
179 Private->AprioriCount = Index;\r
58dcdada 180\r
b0d803fe 181 //\r
182 // Add in any PEIMs not in the Apriori file\r
183 //\r
b62fe570
SZ
184 for (Index2 = 0; Index2 < PeimCount; Index2++) {\r
185 if (TempFileHandles[Index2] != NULL) {\r
186 CoreFileHandle->FvFileHandles[Index++] = TempFileHandles[Index2];\r
187 TempFileHandles[Index2] = NULL;\r
b0d803fe 188 }\r
189 }\r
b62fe570 190 ASSERT (Index == PeimCount);\r
b0d803fe 191 }\r
b62fe570
SZ
192 } else {\r
193 CopyMem (CoreFileHandle->FvFileHandles, TempFileHandles, sizeof (EFI_PEI_FILE_HANDLE) * PeimCount);\r
b0d803fe 194 }\r
b62fe570 195\r
b0d803fe 196 //\r
d39d1260
MK
197 // The current FV File Handles have been cached. So that we don't have to scan the FV again.\r
198 // Instead, we can retrieve the file handles within this FV from cached records.\r
b0d803fe 199 //\r
b62fe570
SZ
200 CoreFileHandle->ScanFv = TRUE;\r
201 Private->CurrentFvFileHandles = CoreFileHandle->FvFileHandles;\r
58dcdada 202}\r
203\r
54ea99a7 204//\r
205// This is the minimum memory required by DxeCore initialization. When LMFA feature enabled,\r
d1102dba 206// This part of memory still need reserved on the very top of memory so that the DXE Core could\r
54ea99a7 207// use these memory for data initialization. This macro should be sync with the same marco\r
208// defined in DXE Core.\r
209//\r
210#define MINIMUM_INITIAL_MEMORY_SIZE 0x10000\r
9bfb4940 211/**\r
d1102dba
LG
212 This function is to test if the memory range described in resource HOB is available or not.\r
213\r
214 This function should only be invoked when Loading Module at Fixed Address(LMFA) feature is enabled. Some platform may allocate the\r
9bfb4940 215 memory before PeiLoadFixAddressHook in invoked. so this function is to test if the memory range described by the input resource HOB is\r
216 available or not.\r
217\r
218 @param PrivateData Pointer to the private data passed in from caller\r
219 @param ResourceHob Pointer to a resource HOB which described the memory range described by the input resource HOB\r
220**/\r
221BOOLEAN\r
222PeiLoadFixAddressIsMemoryRangeAvailable (\r
223 IN PEI_CORE_INSTANCE *PrivateData,\r
224 IN EFI_HOB_RESOURCE_DESCRIPTOR *ResourceHob\r
225 )\r
226{\r
d1102dba
LG
227 EFI_HOB_MEMORY_ALLOCATION *MemoryHob;\r
228 BOOLEAN IsAvailable;\r
229 EFI_PEI_HOB_POINTERS Hob;\r
230\r
9bfb4940 231 IsAvailable = TRUE;\r
d1102dba
LG
232 if (PrivateData == NULL || ResourceHob == NULL) {\r
233 return FALSE;\r
234 }\r
235 //\r
9bfb4940 236 // test if the memory range describe in the HOB is already allocated.\r
237 //\r
238 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
9bfb4940 239 //\r
d1102dba
LG
240 // See if this is a memory allocation HOB\r
241 //\r
242 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_MEMORY_ALLOCATION) {\r
9bfb4940 243 MemoryHob = Hob.MemoryAllocation;\r
d1102dba 244 if(MemoryHob->AllocDescriptor.MemoryBaseAddress == ResourceHob->PhysicalStart &&\r
9bfb4940 245 MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength == ResourceHob->PhysicalStart + ResourceHob->ResourceLength) {\r
246 IsAvailable = FALSE;\r
d1102dba 247 break;\r
9bfb4940 248 }\r
249 }\r
250 }\r
d1102dba 251\r
9bfb4940 252 return IsAvailable;\r
d1102dba 253\r
9bfb4940 254}\r
54ea99a7 255/**\r
256 Hook function for Loading Module at Fixed Address feature\r
d1102dba 257\r
54ea99a7 258 This function should only be invoked when Loading Module at Fixed Address(LMFA) feature is enabled. When feature is\r
d1102dba 259 configured as Load Modules at Fix Absolute Address, this function is to validate the top address assigned by user. When\r
93b8ed68 260 feature is configured as Load Modules at Fixed Offset, the function is to find the top address which is TOLM-TSEG in general.\r
d1102dba 261 And also the function will re-install PEI memory.\r
b0d803fe 262\r
54ea99a7 263 @param PrivateData Pointer to the private data passed in from caller\r
264\r
265**/\r
266VOID\r
267PeiLoadFixAddressHook(\r
268 IN PEI_CORE_INSTANCE *PrivateData\r
269 )\r
270{\r
271 EFI_PHYSICAL_ADDRESS TopLoadingAddress;\r
272 UINT64 PeiMemorySize;\r
273 UINT64 TotalReservedMemorySize;\r
274 UINT64 MemoryRangeEnd;\r
d1102dba 275 EFI_PHYSICAL_ADDRESS HighAddress;\r
54ea99a7 276 EFI_HOB_RESOURCE_DESCRIPTOR *ResourceHob;\r
277 EFI_HOB_RESOURCE_DESCRIPTOR *NextResourceHob;\r
278 EFI_HOB_RESOURCE_DESCRIPTOR *CurrentResourceHob;\r
279 EFI_PEI_HOB_POINTERS CurrentHob;\r
280 EFI_PEI_HOB_POINTERS Hob;\r
281 EFI_PEI_HOB_POINTERS NextHob;\r
9bfb4940 282 EFI_HOB_MEMORY_ALLOCATION *MemoryHob;\r
54ea99a7 283 //\r
284 // Initialize Local Variables\r
285 //\r
286 CurrentResourceHob = NULL;\r
287 ResourceHob = NULL;\r
288 NextResourceHob = NULL;\r
54ea99a7 289 HighAddress = 0;\r
290 TopLoadingAddress = 0;\r
291 MemoryRangeEnd = 0;\r
292 CurrentHob.Raw = PrivateData->HobList.Raw;\r
293 PeiMemorySize = PrivateData->PhysicalMemoryLength;\r
294 //\r
295 // The top reserved memory include 3 parts: the topest range is for DXE core initialization with the size MINIMUM_INITIAL_MEMORY_SIZE\r
296 // then RuntimeCodePage range and Boot time code range.\r
d1102dba 297 //\r
e18fa167 298 TotalReservedMemorySize = MINIMUM_INITIAL_MEMORY_SIZE + EFI_PAGES_TO_SIZE(PcdGet32(PcdLoadFixAddressRuntimeCodePageNumber));\r
d1102dba 299 TotalReservedMemorySize+= EFI_PAGES_TO_SIZE(PcdGet32(PcdLoadFixAddressBootTimeCodePageNumber)) ;\r
54ea99a7 300 //\r
301 // PEI memory range lies below the top reserved memory\r
d1102dba 302 //\r
54ea99a7 303 TotalReservedMemorySize += PeiMemorySize;\r
d1102dba 304\r
87000d77
MK
305 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressRuntimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressRuntimeCodePageNumber)));\r
306 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressBootTimeCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressBootTimeCodePageNumber)));\r
307 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PcdLoadFixAddressPeiCodePageNumber= 0x%x.\n", PcdGet32(PcdLoadFixAddressPeiCodePageNumber)));\r
308 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Total Reserved Memory Size = 0x%lx.\n", TotalReservedMemorySize));\r
54ea99a7 309 //\r
d39d1260 310 // Loop through the system memory typed HOB to merge the adjacent memory range\r
54ea99a7 311 //\r
312 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
d1102dba
LG
313 //\r
314 // See if this is a resource descriptor HOB\r
54ea99a7 315 //\r
316 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
d1102dba
LG
317\r
318 ResourceHob = Hob.ResourceDescriptor;\r
54ea99a7 319 //\r
d39d1260 320 // If range described in this HOB is not system memory or higher than MAX_ADDRESS, ignored.\r
54ea99a7 321 //\r
63e70348 322 if (ResourceHob->ResourceType != EFI_RESOURCE_SYSTEM_MEMORY ||\r
54ea99a7 323 ResourceHob->PhysicalStart + ResourceHob->ResourceLength > MAX_ADDRESS) {\r
324 continue;\r
d1102dba
LG
325 }\r
326\r
327 for (NextHob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(NextHob); NextHob.Raw = GET_NEXT_HOB(NextHob)) {\r
54ea99a7 328 if (NextHob.Raw == Hob.Raw){\r
329 continue;\r
d1102dba 330 }\r
54ea99a7 331 //\r
332 // See if this is a resource descriptor HOB\r
333 //\r
334 if (GET_HOB_TYPE (NextHob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
d1102dba 335\r
54ea99a7 336 NextResourceHob = NextHob.ResourceDescriptor;\r
337 //\r
338 // test if range described in this NextResourceHob is system memory and have the same attribute.\r
339 // Note: Here is a assumption that system memory should always be healthy even without test.\r
d1102dba 340 //\r
54ea99a7 341 if (NextResourceHob->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY &&\r
342 (((NextResourceHob->ResourceAttribute^ResourceHob->ResourceAttribute)&(~EFI_RESOURCE_ATTRIBUTE_TESTED)) == 0)){\r
d1102dba 343\r
54ea99a7 344 //\r
345 // See if the memory range described in ResourceHob and NextResourceHob is adjacent\r
346 //\r
d1102dba
LG
347 if ((ResourceHob->PhysicalStart <= NextResourceHob->PhysicalStart &&\r
348 ResourceHob->PhysicalStart + ResourceHob->ResourceLength >= NextResourceHob->PhysicalStart)||\r
54ea99a7 349 (ResourceHob->PhysicalStart >= NextResourceHob->PhysicalStart&&\r
350 ResourceHob->PhysicalStart <= NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength)) {\r
d1102dba 351\r
54ea99a7 352 MemoryRangeEnd = ((ResourceHob->PhysicalStart + ResourceHob->ResourceLength)>(NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength)) ?\r
353 (ResourceHob->PhysicalStart + ResourceHob->ResourceLength):(NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength);\r
d1102dba
LG
354\r
355 ResourceHob->PhysicalStart = (ResourceHob->PhysicalStart < NextResourceHob->PhysicalStart) ?\r
54ea99a7 356 ResourceHob->PhysicalStart : NextResourceHob->PhysicalStart;\r
d1102dba
LG
357\r
358\r
54ea99a7 359 ResourceHob->ResourceLength = (MemoryRangeEnd - ResourceHob->PhysicalStart);\r
d1102dba 360\r
54ea99a7 361 ResourceHob->ResourceAttribute = ResourceHob->ResourceAttribute & (~EFI_RESOURCE_ATTRIBUTE_TESTED);\r
362 //\r
363 // Delete the NextResourceHob by marking it as unused.\r
364 //\r
365 GET_HOB_TYPE (NextHob) = EFI_HOB_TYPE_UNUSED;\r
d1102dba 366\r
54ea99a7 367 }\r
368 }\r
d1102dba 369 }\r
54ea99a7 370 }\r
d1102dba 371 }\r
54ea99a7 372 }\r
9bfb4940 373 //\r
374 // Some platform is already allocated pages before the HOB re-org. Here to build dedicated resource HOB to describe\r
375 // the allocated memory range\r
376 //\r
377 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
d1102dba
LG
378 //\r
379 // See if this is a memory allocation HOB\r
9bfb4940 380 //\r
381 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_MEMORY_ALLOCATION) {\r
382 MemoryHob = Hob.MemoryAllocation;\r
383 for (NextHob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(NextHob); NextHob.Raw = GET_NEXT_HOB(NextHob)) {\r
384 //\r
385 // See if this is a resource descriptor HOB\r
386 //\r
387 if (GET_HOB_TYPE (NextHob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
d1102dba 388 NextResourceHob = NextHob.ResourceDescriptor;\r
9bfb4940 389 //\r
d39d1260 390 // If range described in this HOB is not system memory or higher than MAX_ADDRESS, ignored.\r
9bfb4940 391 //\r
63e70348 392 if (NextResourceHob->ResourceType != EFI_RESOURCE_SYSTEM_MEMORY || NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength > MAX_ADDRESS) {\r
9bfb4940 393 continue;\r
394 }\r
395 //\r
d39d1260 396 // If the range describe in memory allocation HOB belongs to the memory range described by the resource HOB\r
d1102dba
LG
397 //\r
398 if (MemoryHob->AllocDescriptor.MemoryBaseAddress >= NextResourceHob->PhysicalStart &&\r
9bfb4940 399 MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength <= NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength) {\r
400 //\r
d39d1260 401 // Build separate resource HOB for this allocated range\r
d1102dba 402 //\r
9bfb4940 403 if (MemoryHob->AllocDescriptor.MemoryBaseAddress > NextResourceHob->PhysicalStart) {\r
404 BuildResourceDescriptorHob (\r
d1102dba 405 EFI_RESOURCE_SYSTEM_MEMORY,\r
9bfb4940 406 NextResourceHob->ResourceAttribute,\r
d1102dba
LG
407 NextResourceHob->PhysicalStart,\r
408 (MemoryHob->AllocDescriptor.MemoryBaseAddress - NextResourceHob->PhysicalStart)\r
9bfb4940 409 );\r
410 }\r
411 if (MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength < NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength) {\r
412 BuildResourceDescriptorHob (\r
d1102dba 413 EFI_RESOURCE_SYSTEM_MEMORY,\r
9bfb4940 414 NextResourceHob->ResourceAttribute,\r
d1102dba
LG
415 MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength,\r
416 (NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength -(MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength))\r
9bfb4940 417 );\r
418 }\r
419 NextResourceHob->PhysicalStart = MemoryHob->AllocDescriptor.MemoryBaseAddress;\r
420 NextResourceHob->ResourceLength = MemoryHob->AllocDescriptor.MemoryLength;\r
421 break;\r
422 }\r
423 }\r
424 }\r
425 }\r
426 }\r
427\r
54ea99a7 428 //\r
429 // Try to find and validate the TOP address.\r
d1102dba 430 //\r
852081fc 431 if ((INT64)PcdGet64(PcdLoadModuleAtFixAddressEnable) > 0 ) {\r
54ea99a7 432 //\r
433 // The LMFA feature is enabled as load module at fixed absolute address.\r
434 //\r
852081fc 435 TopLoadingAddress = (EFI_PHYSICAL_ADDRESS)PcdGet64(PcdLoadModuleAtFixAddressEnable);\r
87000d77 436 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Loading module at fixed absolute address.\n"));\r
54ea99a7 437 //\r
438 // validate the Address. Loop the resource descriptor HOB to make sure the address is in valid memory range\r
439 //\r
440 if ((TopLoadingAddress & EFI_PAGE_MASK) != 0) {\r
87000d77 441 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid since top address should be page align. \n", TopLoadingAddress));\r
d1102dba 442 ASSERT (FALSE);\r
54ea99a7 443 }\r
444 //\r
d1102dba 445 // Search for a memory region that is below MAX_ADDRESS and in which TopLoadingAddress lies\r
54ea99a7 446 //\r
447 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
448 //\r
449 // See if this is a resource descriptor HOB\r
450 //\r
451 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
452\r
453 ResourceHob = Hob.ResourceDescriptor;\r
454 //\r
d39d1260 455 // See if this resource descriptor HOB describes tested system memory below MAX_ADDRESS\r
d1102dba 456 //\r
54ea99a7 457 if (ResourceHob->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY &&\r
458 ResourceHob->PhysicalStart + ResourceHob->ResourceLength <= MAX_ADDRESS) {\r
459 //\r
460 // See if Top address specified by user is valid.\r
461 //\r
d1102dba
LG
462 if (ResourceHob->PhysicalStart + TotalReservedMemorySize < TopLoadingAddress &&\r
463 (ResourceHob->PhysicalStart + ResourceHob->ResourceLength - MINIMUM_INITIAL_MEMORY_SIZE) >= TopLoadingAddress &&\r
9bfb4940 464 PeiLoadFixAddressIsMemoryRangeAvailable(PrivateData, ResourceHob)) {\r
d1102dba 465 CurrentResourceHob = ResourceHob;\r
54ea99a7 466 CurrentHob = Hob;\r
467 break;\r
9bfb4940 468 }\r
54ea99a7 469 }\r
d1102dba
LG
470 }\r
471 }\r
54ea99a7 472 if (CurrentResourceHob != NULL) {\r
87000d77 473 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO:Top Address 0x%lx is valid \n", TopLoadingAddress));\r
d1102dba 474 TopLoadingAddress += MINIMUM_INITIAL_MEMORY_SIZE;\r
54ea99a7 475 } else {\r
87000d77
MK
476 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:Top Address 0x%lx is invalid \n", TopLoadingAddress));\r
477 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:The recommended Top Address for the platform is: \n"));\r
54ea99a7 478 //\r
d39d1260 479 // Print the recommended Top address range.\r
d1102dba 480 //\r
54ea99a7 481 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
482 //\r
483 // See if this is a resource descriptor HOB\r
484 //\r
485 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
d1102dba 486\r
54ea99a7 487 ResourceHob = Hob.ResourceDescriptor;\r
488 //\r
d39d1260 489 // See if this resource descriptor HOB describes tested system memory below MAX_ADDRESS\r
d1102dba 490 //\r
54ea99a7 491 if (ResourceHob->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY &&\r
492 ResourceHob->PhysicalStart + ResourceHob->ResourceLength <= MAX_ADDRESS) {\r
493 //\r
494 // See if Top address specified by user is valid.\r
495 //\r
9bfb4940 496 if (ResourceHob->ResourceLength > TotalReservedMemorySize && PeiLoadFixAddressIsMemoryRangeAvailable(PrivateData, ResourceHob)) {\r
87000d77 497 DEBUG ((DEBUG_INFO, "(0x%lx, 0x%lx)\n",\r
d1102dba
LG
498 (ResourceHob->PhysicalStart + TotalReservedMemorySize -MINIMUM_INITIAL_MEMORY_SIZE),\r
499 (ResourceHob->PhysicalStart + ResourceHob->ResourceLength -MINIMUM_INITIAL_MEMORY_SIZE)\r
500 ));\r
54ea99a7 501 }\r
502 }\r
503 }\r
d1102dba 504 }\r
54ea99a7 505 //\r
d1102dba 506 // Assert here\r
54ea99a7 507 //\r
d1102dba
LG
508 ASSERT (FALSE);\r
509 return;\r
510 }\r
54ea99a7 511 } else {\r
512 //\r
513 // The LMFA feature is enabled as load module at fixed offset relative to TOLM\r
514 // Parse the Hob list to find the topest available memory. Generally it is (TOLM - TSEG)\r
515 //\r
516 //\r
517 // Search for a tested memory region that is below MAX_ADDRESS\r
518 //\r
519 for (Hob.Raw = PrivateData->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
520 //\r
d1102dba 521 // See if this is a resource descriptor HOB\r
54ea99a7 522 //\r
523 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {\r
d1102dba
LG
524\r
525 ResourceHob = Hob.ResourceDescriptor;\r
54ea99a7 526 //\r
d39d1260 527 // See if this resource descriptor HOB describes tested system memory below MAX_ADDRESS\r
54ea99a7 528 //\r
d1102dba 529 if (ResourceHob->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY &&\r
54ea99a7 530 ResourceHob->PhysicalStart + ResourceHob->ResourceLength <= MAX_ADDRESS &&\r
9bfb4940 531 ResourceHob->ResourceLength > TotalReservedMemorySize && PeiLoadFixAddressIsMemoryRangeAvailable(PrivateData, ResourceHob)) {\r
54ea99a7 532 //\r
533 // See if this is the highest largest system memory region below MaxAddress\r
534 //\r
535 if (ResourceHob->PhysicalStart > HighAddress) {\r
536 CurrentResourceHob = ResourceHob;\r
537 CurrentHob = Hob;\r
538 HighAddress = CurrentResourceHob->PhysicalStart;\r
539 }\r
540 }\r
d1102dba 541 }\r
54ea99a7 542 }\r
543 if (CurrentResourceHob == NULL) {\r
87000d77 544 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED ERROR:The System Memory is too small\n"));\r
54ea99a7 545 //\r
d1102dba 546 // Assert here\r
54ea99a7 547 //\r
9bfb4940 548 ASSERT (FALSE);\r
d1102dba 549 return;\r
54ea99a7 550 } else {\r
d1102dba
LG
551 TopLoadingAddress = CurrentResourceHob->PhysicalStart + CurrentResourceHob->ResourceLength ;\r
552 }\r
54ea99a7 553 }\r
d1102dba 554\r
54ea99a7 555 if (CurrentResourceHob != NULL) {\r
556 //\r
d39d1260 557 // rebuild resource HOB for PEI memory and reserved memory\r
54ea99a7 558 //\r
559 BuildResourceDescriptorHob (\r
d1102dba 560 EFI_RESOURCE_SYSTEM_MEMORY,\r
54ea99a7 561 (\r
562 EFI_RESOURCE_ATTRIBUTE_PRESENT |\r
563 EFI_RESOURCE_ATTRIBUTE_INITIALIZED |\r
564 EFI_RESOURCE_ATTRIBUTE_TESTED |\r
565 EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |\r
566 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |\r
567 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
568 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE\r
569 ),\r
d1102dba
LG
570 (TopLoadingAddress - TotalReservedMemorySize),\r
571 TotalReservedMemorySize\r
54ea99a7 572 );\r
573 //\r
9bfb4940 574 // rebuild resource for the remain memory if necessary\r
54ea99a7 575 //\r
576 if (CurrentResourceHob->PhysicalStart < TopLoadingAddress - TotalReservedMemorySize) {\r
577 BuildResourceDescriptorHob (\r
d1102dba 578 EFI_RESOURCE_SYSTEM_MEMORY,\r
54ea99a7 579 (\r
580 EFI_RESOURCE_ATTRIBUTE_PRESENT |\r
581 EFI_RESOURCE_ATTRIBUTE_INITIALIZED |\r
582 EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |\r
583 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |\r
584 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
585 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE\r
586 ),\r
d1102dba
LG
587 CurrentResourceHob->PhysicalStart,\r
588 (TopLoadingAddress - TotalReservedMemorySize - CurrentResourceHob->PhysicalStart)\r
54ea99a7 589 );\r
590 }\r
591 if (CurrentResourceHob->PhysicalStart + CurrentResourceHob->ResourceLength > TopLoadingAddress ) {\r
592 BuildResourceDescriptorHob (\r
d1102dba 593 EFI_RESOURCE_SYSTEM_MEMORY,\r
54ea99a7 594 (\r
595 EFI_RESOURCE_ATTRIBUTE_PRESENT |\r
596 EFI_RESOURCE_ATTRIBUTE_INITIALIZED |\r
597 EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |\r
598 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |\r
599 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |\r
600 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE\r
601 ),\r
d1102dba
LG
602 TopLoadingAddress,\r
603 (CurrentResourceHob->PhysicalStart + CurrentResourceHob->ResourceLength - TopLoadingAddress)\r
54ea99a7 604 );\r
605 }\r
606 //\r
93b8ed68 607 // Delete CurrentHob by marking it as unused since the memory range described by is rebuilt.\r
54ea99a7 608 //\r
d1102dba 609 GET_HOB_TYPE (CurrentHob) = EFI_HOB_TYPE_UNUSED;\r
54ea99a7 610 }\r
611\r
612 //\r
613 // Cache the top address for Loading Module at Fixed Address feature\r
614 //\r
615 PrivateData->LoadModuleAtFixAddressTopAddress = TopLoadingAddress - MINIMUM_INITIAL_MEMORY_SIZE;\r
87000d77 616 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: Top address = 0x%lx\n", PrivateData->LoadModuleAtFixAddressTopAddress));\r
54ea99a7 617 //\r
618 // reinstall the PEI memory relative to TopLoadingAddress\r
619 //\r
620 PrivateData->PhysicalMemoryBegin = TopLoadingAddress - TotalReservedMemorySize;\r
621 PrivateData->FreePhysicalMemoryTop = PrivateData->PhysicalMemoryBegin + PeiMemorySize;\r
622}\r
0f9ebb32
LG
623\r
624/**\r
625 This routine is invoked in switch stack as PeiCore Entry.\r
626\r
627 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
628 environment, such as the size and location of temporary RAM, the stack location and\r
629 the BFV location.\r
630 @param Private Pointer to old core data that is used to initialize the\r
631 core's data areas.\r
632**/\r
633VOID\r
634EFIAPI\r
635PeiCoreEntry (\r
636 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,\r
637 IN PEI_CORE_INSTANCE *Private\r
638 )\r
639{\r
640 //\r
641 // Entry PEI Phase 2\r
642 //\r
643 PeiCore (SecCoreData, NULL, Private);\r
644}\r
645\r
bfb685da
SZ
646/**\r
647 Check SwitchStackSignal and switch stack if SwitchStackSignal is TRUE.\r
648\r
649 @param[in] SecCoreData Points to a data structure containing information about the PEI core's operating\r
650 environment, such as the size and location of temporary RAM, the stack location and\r
651 the BFV location.\r
652 @param[in] Private Pointer to the private data passed in from caller.\r
653\r
654**/\r
655VOID\r
656PeiCheckAndSwitchStack (\r
657 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,\r
658 IN PEI_CORE_INSTANCE *Private\r
659 )\r
660{\r
661 VOID *LoadFixPeiCodeBegin;\r
662 EFI_STATUS Status;\r
663 CONST EFI_PEI_SERVICES **PeiServices;\r
664 UINT64 NewStackSize;\r
665 EFI_PHYSICAL_ADDRESS TopOfOldStack;\r
666 EFI_PHYSICAL_ADDRESS TopOfNewStack;\r
667 UINTN StackOffset;\r
668 BOOLEAN StackOffsetPositive;\r
669 EFI_PHYSICAL_ADDRESS TemporaryRamBase;\r
670 UINTN TemporaryRamSize;\r
671 UINTN TemporaryStackSize;\r
672 VOID *TemporaryStackBase;\r
673 UINTN PeiTemporaryRamSize;\r
674 VOID *PeiTemporaryRamBase;\r
675 EFI_PEI_TEMPORARY_RAM_SUPPORT_PPI *TemporaryRamSupportPpi;\r
676 EFI_PHYSICAL_ADDRESS BaseOfNewHeap;\r
677 EFI_PHYSICAL_ADDRESS HoleMemBase;\r
678 UINTN HoleMemSize;\r
679 UINTN HeapTemporaryRamSize;\r
680 EFI_PHYSICAL_ADDRESS TempBase1;\r
681 UINTN TempSize1;\r
682 EFI_PHYSICAL_ADDRESS TempBase2;\r
683 UINTN TempSize2;\r
684 UINTN Index;\r
685\r
686 PeiServices = (CONST EFI_PEI_SERVICES **) &Private->Ps;\r
687\r
688 if (Private->SwitchStackSignal) {\r
689 //\r
6393d9c8
GL
690 // Before switch stack from temporary memory to permanent memory, calculate the heap and stack\r
691 // usage in temporary memory for debugging.\r
bfb685da
SZ
692 //\r
693 DEBUG_CODE_BEGIN ();\r
aa57c0f0
SZ
694 UINT32 *StackPointer;\r
695 EFI_PEI_HOB_POINTERS Hob;\r
bfb685da
SZ
696\r
697 for (StackPointer = (UINT32*)SecCoreData->StackBase;\r
698 (StackPointer < (UINT32*)((UINTN)SecCoreData->StackBase + SecCoreData->StackSize)) \\r
98127071 699 && (*StackPointer == PcdGet32 (PcdInitValueInTempStack));\r
be18cb03
LG
700 StackPointer ++) {\r
701 }\r
bfb685da 702\r
b2374cec
SZ
703 DEBUG ((DEBUG_INFO, "Temp Stack : BaseAddress=0x%p Length=0x%X\n", SecCoreData->StackBase, (UINT32)SecCoreData->StackSize));\r
704 DEBUG ((DEBUG_INFO, "Temp Heap : BaseAddress=0x%p Length=0x%X\n", SecCoreData->PeiTemporaryRamBase, (UINT32)SecCoreData->PeiTemporaryRamSize));\r
705 DEBUG ((DEBUG_INFO, "Total temporary memory: %d bytes.\n", (UINT32)SecCoreData->TemporaryRamSize));\r
706 DEBUG ((DEBUG_INFO, " temporary memory stack ever used: %d bytes.\n",\r
df56e808
AF
707 (UINT32)(SecCoreData->StackSize - ((UINTN) StackPointer - (UINTN)SecCoreData->StackBase))\r
708 ));\r
b2374cec 709 DEBUG ((DEBUG_INFO, " temporary memory heap used for HobList: %d bytes.\n",\r
df56e808
AF
710 (UINT32)((UINTN)Private->HobList.HandoffInformationTable->EfiFreeMemoryBottom - (UINTN)Private->HobList.Raw)\r
711 ));\r
aa57c0f0
SZ
712 DEBUG ((DEBUG_INFO, " temporary memory heap occupied by memory pages: %d bytes.\n",\r
713 (UINT32)(UINTN)(Private->HobList.HandoffInformationTable->EfiMemoryTop - Private->HobList.HandoffInformationTable->EfiFreeMemoryTop)\r
714 ));\r
715 for (Hob.Raw = Private->HobList.Raw; !END_OF_HOB_LIST(Hob); Hob.Raw = GET_NEXT_HOB(Hob)) {\r
716 if (GET_HOB_TYPE (Hob) == EFI_HOB_TYPE_MEMORY_ALLOCATION) {\r
717 DEBUG ((DEBUG_INFO, "Memory Allocation 0x%08x 0x%0lx - 0x%0lx\n", \\r
718 Hob.MemoryAllocation->AllocDescriptor.MemoryType, \\r
719 Hob.MemoryAllocation->AllocDescriptor.MemoryBaseAddress, \\r
720 Hob.MemoryAllocation->AllocDescriptor.MemoryBaseAddress + Hob.MemoryAllocation->AllocDescriptor.MemoryLength - 1));\r
721 }\r
722 }\r
bfb685da
SZ
723 DEBUG_CODE_END ();\r
724\r
725 if (PcdGet64(PcdLoadModuleAtFixAddressEnable) != 0 && (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME)) {\r
726 //\r
727 // Loading Module at Fixed Address is enabled\r
728 //\r
729 PeiLoadFixAddressHook (Private);\r
730\r
731 //\r
732 // If Loading Module at Fixed Address is enabled, Allocating memory range for Pei code range.\r
733 //\r
734 LoadFixPeiCodeBegin = AllocatePages((UINTN)PcdGet32(PcdLoadFixAddressPeiCodePageNumber));\r
87000d77 735 DEBUG ((DEBUG_INFO, "LOADING MODULE FIXED INFO: PeiCodeBegin = 0x%lX, PeiCodeTop= 0x%lX\n", (UINT64)(UINTN)LoadFixPeiCodeBegin, (UINT64)((UINTN)LoadFixPeiCodeBegin + PcdGet32(PcdLoadFixAddressPeiCodePageNumber) * EFI_PAGE_SIZE)));\r
bfb685da
SZ
736 }\r
737\r
738 //\r
739 // Reserve the size of new stack at bottom of physical memory\r
740 //\r
6393d9c8 741 // The size of new stack in permanent memory must be the same size\r
bfb685da
SZ
742 // or larger than the size of old stack in temporary memory.\r
743 // But if new stack is smaller than the size of old stack, we also reserve\r
6393d9c8 744 // the size of old stack at bottom of permanent memory.\r
bfb685da
SZ
745 //\r
746 NewStackSize = RShiftU64 (Private->PhysicalMemoryLength, 1);\r
747 NewStackSize = ALIGN_VALUE (NewStackSize, EFI_PAGE_SIZE);\r
748 NewStackSize = MIN (PcdGet32(PcdPeiCoreMaxPeiStackSize), NewStackSize);\r
87000d77 749 DEBUG ((DEBUG_INFO, "Old Stack size %d, New stack size %d\n", (UINT32)SecCoreData->StackSize, (UINT32)NewStackSize));\r
bfb685da
SZ
750 ASSERT (NewStackSize >= SecCoreData->StackSize);\r
751\r
752 //\r
d39d1260 753 // Calculate stack offset and heap offset between temporary memory and new permanent\r
93b8ed68 754 // memory separately.\r
bfb685da
SZ
755 //\r
756 TopOfOldStack = (UINTN)SecCoreData->StackBase + SecCoreData->StackSize;\r
757 TopOfNewStack = Private->PhysicalMemoryBegin + NewStackSize;\r
758 if (TopOfNewStack >= TopOfOldStack) {\r
759 StackOffsetPositive = TRUE;\r
760 StackOffset = (UINTN)(TopOfNewStack - TopOfOldStack);\r
761 } else {\r
762 StackOffsetPositive = FALSE;\r
763 StackOffset = (UINTN)(TopOfOldStack - TopOfNewStack);\r
764 }\r
765 Private->StackOffsetPositive = StackOffsetPositive;\r
766 Private->StackOffset = StackOffset;\r
767\r
768 //\r
769 // Build Stack HOB that describes the permanent memory stack\r
770 //\r
87000d77 771 DEBUG ((DEBUG_INFO, "Stack Hob: BaseAddress=0x%lX Length=0x%lX\n", TopOfNewStack - NewStackSize, NewStackSize));\r
bfb685da
SZ
772 BuildStackHob (TopOfNewStack - NewStackSize, NewStackSize);\r
773\r
774 //\r
775 // Cache information from SecCoreData into locals before SecCoreData is converted to a permanent memory address\r
776 //\r
777 TemporaryRamBase = (EFI_PHYSICAL_ADDRESS)(UINTN)SecCoreData->TemporaryRamBase;\r
778 TemporaryRamSize = SecCoreData->TemporaryRamSize;\r
779 TemporaryStackSize = SecCoreData->StackSize;\r
780 TemporaryStackBase = SecCoreData->StackBase;\r
781 PeiTemporaryRamSize = SecCoreData->PeiTemporaryRamSize;\r
782 PeiTemporaryRamBase = SecCoreData->PeiTemporaryRamBase;\r
783\r
784 //\r
785 // TemporaryRamSupportPpi is produced by platform's SEC\r
786 //\r
787 Status = PeiServicesLocatePpi (\r
788 &gEfiTemporaryRamSupportPpiGuid,\r
789 0,\r
790 NULL,\r
791 (VOID**)&TemporaryRamSupportPpi\r
792 );\r
793 if (!EFI_ERROR (Status)) {\r
794 //\r
795 // Heap Offset\r
796 //\r
797 BaseOfNewHeap = TopOfNewStack;\r
798 if (BaseOfNewHeap >= (UINTN)SecCoreData->PeiTemporaryRamBase) {\r
799 Private->HeapOffsetPositive = TRUE;\r
800 Private->HeapOffset = (UINTN)(BaseOfNewHeap - (UINTN)SecCoreData->PeiTemporaryRamBase);\r
801 } else {\r
802 Private->HeapOffsetPositive = FALSE;\r
803 Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);\r
804 }\r
805\r
87000d77 806 DEBUG ((DEBUG_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));\r
bfb685da
SZ
807\r
808 //\r
809 // Calculate new HandOffTable and PrivateData address in permanent memory's stack\r
810 //\r
811 if (StackOffsetPositive) {\r
812 SecCoreData = (CONST EFI_SEC_PEI_HAND_OFF *)((UINTN)(VOID *)SecCoreData + StackOffset);\r
813 Private = (PEI_CORE_INSTANCE *)((UINTN)(VOID *)Private + StackOffset);\r
814 } else {\r
815 SecCoreData = (CONST EFI_SEC_PEI_HAND_OFF *)((UINTN)(VOID *)SecCoreData - StackOffset);\r
816 Private = (PEI_CORE_INSTANCE *)((UINTN)(VOID *)Private - StackOffset);\r
817 }\r
818\r
819 //\r
d1102dba 820 // Temporary Ram Support PPI is provided by platform, it will copy\r
6393d9c8 821 // temporary memory to permanent memory and do stack switching.\r
d1102dba 822 // After invoking Temporary Ram Support PPI, the following code's\r
bfb685da
SZ
823 // stack is in permanent memory.\r
824 //\r
825 TemporaryRamSupportPpi->TemporaryRamMigration (\r
826 PeiServices,\r
827 TemporaryRamBase,\r
828 (EFI_PHYSICAL_ADDRESS)(UINTN)(TopOfNewStack - TemporaryStackSize),\r
829 TemporaryRamSize\r
830 );\r
831\r
b2374cec
SZ
832 //\r
833 // Migrate memory pages allocated in pre-memory phase.\r
834 // It could not be called before calling TemporaryRamSupportPpi->TemporaryRamMigration()\r
835 // as the migrated memory pages may be overridden by TemporaryRamSupportPpi->TemporaryRamMigration().\r
836 //\r
837 MigrateMemoryPages (Private, TRUE);\r
838\r
bfb685da
SZ
839 //\r
840 // Entry PEI Phase 2\r
841 //\r
842 PeiCore (SecCoreData, NULL, Private);\r
843 } else {\r
b2374cec
SZ
844 //\r
845 // Migrate memory pages allocated in pre-memory phase.\r
846 //\r
847 MigrateMemoryPages (Private, FALSE);\r
848\r
bfb685da
SZ
849 //\r
850 // Migrate the PEI Services Table pointer from temporary RAM to permanent RAM.\r
851 //\r
852 MigratePeiServicesTablePointer ();\r
b2374cec 853\r
bfb685da
SZ
854 //\r
855 // Heap Offset\r
856 //\r
857 BaseOfNewHeap = TopOfNewStack;\r
858 HoleMemBase = TopOfNewStack;\r
859 HoleMemSize = TemporaryRamSize - PeiTemporaryRamSize - TemporaryStackSize;\r
860 if (HoleMemSize != 0) {\r
861 //\r
862 // Make sure HOB List start address is 8 byte alignment.\r
863 //\r
864 BaseOfNewHeap = ALIGN_VALUE (BaseOfNewHeap + HoleMemSize, 8);\r
865 }\r
866 if (BaseOfNewHeap >= (UINTN)SecCoreData->PeiTemporaryRamBase) {\r
867 Private->HeapOffsetPositive = TRUE;\r
868 Private->HeapOffset = (UINTN)(BaseOfNewHeap - (UINTN)SecCoreData->PeiTemporaryRamBase);\r
869 } else {\r
870 Private->HeapOffsetPositive = FALSE;\r
871 Private->HeapOffset = (UINTN)((UINTN)SecCoreData->PeiTemporaryRamBase - BaseOfNewHeap);\r
872 }\r
873\r
87000d77 874 DEBUG ((DEBUG_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));\r
bfb685da
SZ
875\r
876 //\r
877 // Migrate Heap\r
878 //\r
879 HeapTemporaryRamSize = (UINTN) (Private->HobList.HandoffInformationTable->EfiFreeMemoryBottom - Private->HobList.HandoffInformationTable->EfiMemoryBottom);\r
880 ASSERT (BaseOfNewHeap + HeapTemporaryRamSize <= Private->FreePhysicalMemoryTop);\r
b2374cec 881 CopyMem ((UINT8 *) (UINTN) BaseOfNewHeap, PeiTemporaryRamBase, HeapTemporaryRamSize);\r
bfb685da
SZ
882\r
883 //\r
884 // Migrate Stack\r
885 //\r
886 CopyMem ((UINT8 *) (UINTN) (TopOfNewStack - TemporaryStackSize), TemporaryStackBase, TemporaryStackSize);\r
887\r
888 //\r
889 // Copy Hole Range Data\r
bfb685da
SZ
890 //\r
891 if (HoleMemSize != 0) {\r
892 //\r
893 // Prepare Hole\r
894 //\r
895 if (PeiTemporaryRamBase < TemporaryStackBase) {\r
896 TempBase1 = (EFI_PHYSICAL_ADDRESS) (UINTN) PeiTemporaryRamBase;\r
897 TempSize1 = PeiTemporaryRamSize;\r
898 TempBase2 = (EFI_PHYSICAL_ADDRESS) (UINTN) TemporaryStackBase;\r
899 TempSize2 = TemporaryStackSize;\r
900 } else {\r
901 TempBase1 = (EFI_PHYSICAL_ADDRESS) (UINTN) TemporaryStackBase;\r
902 TempSize1 = TemporaryStackSize;\r
903 TempBase2 =(EFI_PHYSICAL_ADDRESS) (UINTN) PeiTemporaryRamBase;\r
904 TempSize2 = PeiTemporaryRamSize;\r
905 }\r
906 if (TemporaryRamBase < TempBase1) {\r
907 Private->HoleData[0].Base = TemporaryRamBase;\r
908 Private->HoleData[0].Size = (UINTN) (TempBase1 - TemporaryRamBase);\r
909 }\r
910 if (TempBase1 + TempSize1 < TempBase2) {\r
911 Private->HoleData[1].Base = TempBase1 + TempSize1;\r
912 Private->HoleData[1].Size = (UINTN) (TempBase2 - TempBase1 - TempSize1);\r
913 }\r
914 if (TempBase2 + TempSize2 < TemporaryRamBase + TemporaryRamSize) {\r
915 Private->HoleData[2].Base = TempBase2 + TempSize2;\r
916 Private->HoleData[2].Size = (UINTN) (TemporaryRamBase + TemporaryRamSize - TempBase2 - TempSize2);\r
917 }\r
918\r
919 //\r
920 // Copy Hole Range data.\r
921 //\r
922 for (Index = 0; Index < HOLE_MAX_NUMBER; Index ++) {\r
923 if (Private->HoleData[Index].Size > 0) {\r
924 if (HoleMemBase > Private->HoleData[Index].Base) {\r
925 Private->HoleData[Index].OffsetPositive = TRUE;\r
926 Private->HoleData[Index].Offset = (UINTN) (HoleMemBase - Private->HoleData[Index].Base);\r
927 } else {\r
928 Private->HoleData[Index].OffsetPositive = FALSE;\r
929 Private->HoleData[Index].Offset = (UINTN) (Private->HoleData[Index].Base - HoleMemBase);\r
930 }\r
931 CopyMem ((VOID *) (UINTN) HoleMemBase, (VOID *) (UINTN) Private->HoleData[Index].Base, Private->HoleData[Index].Size);\r
932 HoleMemBase = HoleMemBase + Private->HoleData[Index].Size;\r
933 }\r
934 }\r
935 }\r
936\r
937 //\r
938 // Switch new stack\r
939 //\r
940 SwitchStack (\r
941 (SWITCH_STACK_ENTRY_POINT)(UINTN)PeiCoreEntry,\r
942 (VOID *) SecCoreData,\r
943 (VOID *) Private,\r
944 (VOID *) (UINTN) TopOfNewStack\r
945 );\r
946 }\r
947\r
948 //\r
949 // Code should not come here\r
950 //\r
951 ASSERT (FALSE);\r
952 }\r
953}\r
954\r
9bedaec0
MK
955/**\r
956 Migrate a PEIM from temporary RAM to permanent memory.\r
957\r
958 @param PeimFileHandle Pointer to the FFS file header of the image.\r
959 @param MigratedFileHandle Pointer to the FFS file header of the migrated image.\r
960\r
6c80564b 961 @retval EFI_SUCCESS Successfully migrated the PEIM to permanent memory.\r
9bedaec0
MK
962\r
963**/\r
964EFI_STATUS\r
965EFIAPI\r
966MigratePeim (\r
967 IN EFI_PEI_FILE_HANDLE FileHandle,\r
968 IN EFI_PEI_FILE_HANDLE MigratedFileHandle\r
969 )\r
970{\r
971 EFI_STATUS Status;\r
972 EFI_FFS_FILE_HEADER *FileHeader;\r
973 VOID *Pe32Data;\r
974 VOID *ImageAddress;\r
975 CHAR8 *AsciiString;\r
976 UINTN Index;\r
977\r
978 Status = EFI_SUCCESS;\r
979\r
980 FileHeader = (EFI_FFS_FILE_HEADER *) FileHandle;\r
981 ASSERT (!IS_FFS_FILE2 (FileHeader));\r
982\r
983 ImageAddress = NULL;\r
984 PeiGetPe32Data (MigratedFileHandle, &ImageAddress);\r
985 if (ImageAddress != NULL) {\r
986 DEBUG_CODE_BEGIN ();\r
987 AsciiString = PeCoffLoaderGetPdbPointer (ImageAddress);\r
988 for (Index = 0; AsciiString[Index] != 0; Index++) {\r
989 if (AsciiString[Index] == '\\' || AsciiString[Index] == '/') {\r
990 AsciiString = AsciiString + Index + 1;\r
991 Index = 0;\r
992 } else if (AsciiString[Index] == '.') {\r
993 AsciiString[Index] = 0;\r
994 }\r
995 }\r
6f501a7c 996 DEBUG ((DEBUG_VERBOSE, "%a", AsciiString));\r
9bedaec0
MK
997 DEBUG_CODE_END ();\r
998\r
999 Pe32Data = (VOID *) ((UINTN) ImageAddress - (UINTN) MigratedFileHandle + (UINTN) FileHandle);\r
1000 Status = LoadAndRelocatePeCoffImageInPlace (Pe32Data, ImageAddress);\r
1001 ASSERT_EFI_ERROR (Status);\r
1002 }\r
1003\r
1004 return Status;\r
1005}\r
1006\r
1007/**\r
1008 Migrate Status Code Callback function pointers inside an FV from temporary memory to permanent memory.\r
1009\r
1010 @param OrgFvHandle Address of FV handle in temporary memory.\r
1011 @param FvHandle Address of FV handle in permanent memory.\r
1012 @param FvSize Size of the FV.\r
1013\r
1014**/\r
1015VOID\r
1016ConvertStatusCodeCallbacks (\r
1017 IN UINTN OrgFvHandle,\r
1018 IN UINTN FvHandle,\r
1019 IN UINTN FvSize\r
1020 )\r
1021{\r
1022 EFI_PEI_HOB_POINTERS Hob;\r
1023 UINTN *NumberOfEntries;\r
1024 UINTN *CallbackEntry;\r
1025 UINTN Index;\r
1026\r
1027 Hob.Raw = GetFirstGuidHob (&gStatusCodeCallbackGuid);\r
1028 while (Hob.Raw != NULL) {\r
1029 NumberOfEntries = GET_GUID_HOB_DATA (Hob);\r
1030 CallbackEntry = NumberOfEntries + 1;\r
1031 for (Index = 0; Index < *NumberOfEntries; Index++) {\r
1032 if (((VOID *) CallbackEntry[Index]) != NULL) {\r
1033 if ((CallbackEntry[Index] >= OrgFvHandle) && (CallbackEntry[Index] < (OrgFvHandle + FvSize))) {\r
1034 DEBUG ((\r
1035 DEBUG_INFO,\r
1036 "Migrating CallbackEntry[%Lu] from 0x%0*Lx to ",\r
1037 (UINT64)Index,\r
1038 (sizeof CallbackEntry[Index]) * 2,\r
1039 (UINT64)CallbackEntry[Index]\r
1040 ));\r
1041 if (OrgFvHandle > FvHandle) {\r
1042 CallbackEntry[Index] = CallbackEntry[Index] - (OrgFvHandle - FvHandle);\r
1043 } else {\r
1044 CallbackEntry[Index] = CallbackEntry[Index] + (FvHandle - OrgFvHandle);\r
1045 }\r
1046 DEBUG ((\r
1047 DEBUG_INFO,\r
1048 "0x%0*Lx\n",\r
1049 (sizeof CallbackEntry[Index]) * 2,\r
1050 (UINT64)CallbackEntry[Index]\r
1051 ));\r
1052 }\r
1053 }\r
1054 }\r
1055 Hob.Raw = GET_NEXT_HOB (Hob);\r
1056 Hob.Raw = GetNextGuidHob (&gStatusCodeCallbackGuid, Hob.Raw);\r
1057 }\r
1058}\r
1059\r
9bedaec0
MK
1060/**\r
1061 Migrates PEIMs in the given firmware volume.\r
1062\r
1063 @param Private Pointer to the PeiCore's private data structure.\r
1064 @param FvIndex The firmware volume index to migrate.\r
1065 @param OrgFvHandle The handle to the firmware volume in temporary memory.\r
1066 @param FvHandle The handle to the firmware volume in permanent memory.\r
1067\r
1068 @retval EFI_SUCCESS The PEIMs in the FV were migrated successfully\r
1069 @retval EFI_INVALID_PARAMETER The Private pointer is NULL or FvCount is invalid.\r
1070\r
1071**/\r
1072EFI_STATUS\r
1073EFIAPI\r
1074MigratePeimsInFv (\r
1075 IN PEI_CORE_INSTANCE *Private,\r
1076 IN UINTN FvIndex,\r
1077 IN UINTN OrgFvHandle,\r
1078 IN UINTN FvHandle\r
1079 )\r
1080{\r
1081 EFI_STATUS Status;\r
1082 volatile UINTN FileIndex;\r
1083 EFI_PEI_FILE_HANDLE MigratedFileHandle;\r
1084 EFI_PEI_FILE_HANDLE FileHandle;\r
1085\r
1086 if (Private == NULL || FvIndex >= Private->FvCount) {\r
1087 return EFI_INVALID_PARAMETER;\r
1088 }\r
1089\r
1090 if (Private->Fv[FvIndex].ScanFv) {\r
1091 for (FileIndex = 0; FileIndex < Private->Fv[FvIndex].PeimCount; FileIndex++) {\r
1092 if (Private->Fv[FvIndex].FvFileHandles[FileIndex] != NULL) {\r
1093 FileHandle = Private->Fv[FvIndex].FvFileHandles[FileIndex];\r
1094\r
1095 MigratedFileHandle = (EFI_PEI_FILE_HANDLE) ((UINTN) FileHandle - OrgFvHandle + FvHandle);\r
1096\r
1097 DEBUG ((DEBUG_VERBOSE, " Migrating FileHandle %2d ", FileIndex));\r
1098 Status = MigratePeim (FileHandle, MigratedFileHandle);\r
1099 DEBUG ((DEBUG_VERBOSE, "\n"));\r
1100 ASSERT_EFI_ERROR (Status);\r
1101\r
1102 if (!EFI_ERROR (Status)) {\r
1103 Private->Fv[FvIndex].FvFileHandles[FileIndex] = MigratedFileHandle;\r
1104 if (FvIndex == Private->CurrentPeimFvCount) {\r
1105 Private->CurrentFvFileHandles[FileIndex] = MigratedFileHandle;\r
1106 }\r
1107 }\r
1108 }\r
1109 }\r
1110 }\r
1111\r
1112 return EFI_SUCCESS;\r
1113}\r
1114\r
1115/**\r
1116 Migrate FVs out of temporary RAM before the cache is flushed.\r
1117\r
1118 @param Private PeiCore's private data structure\r
1119 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
1120 environment, such as the size and location of temporary RAM, the stack location and\r
1121 the BFV location.\r
1122\r
6c80564b 1123 @retval EFI_SUCCESS Successfully migrated installed FVs from temporary RAM to permanent memory.\r
9bedaec0
MK
1124 @retval EFI_OUT_OF_RESOURCES Insufficient memory exists to allocate needed pages.\r
1125\r
1126**/\r
1127EFI_STATUS\r
1128EFIAPI\r
1129EvacuateTempRam (\r
1130 IN PEI_CORE_INSTANCE *Private,\r
1131 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData\r
1132 )\r
1133{\r
1134 EFI_STATUS Status;\r
1135 volatile UINTN FvIndex;\r
1136 volatile UINTN FvChildIndex;\r
1137 UINTN ChildFvOffset;\r
c19d1813 1138 EFI_PHYSICAL_ADDRESS FvHeaderAddress;\r
9bedaec0
MK
1139 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;\r
1140 EFI_FIRMWARE_VOLUME_HEADER *ChildFvHeader;\r
1141 EFI_FIRMWARE_VOLUME_HEADER *MigratedFvHeader;\r
4b68cef0 1142 EFI_FIRMWARE_VOLUME_HEADER *RawDataFvHeader;\r
9bedaec0
MK
1143 EFI_FIRMWARE_VOLUME_HEADER *MigratedChildFvHeader;\r
1144\r
1145 PEI_CORE_FV_HANDLE PeiCoreFvHandle;\r
1146 EFI_PEI_CORE_FV_LOCATION_PPI *PeiCoreFvLocationPpi;\r
4b68cef0 1147 EDKII_MIGRATED_FV_INFO MigratedFvInfo;\r
9bedaec0
MK
1148\r
1149 ASSERT (Private->PeiMemoryInstalled);\r
1150\r
1151 DEBUG ((DEBUG_VERBOSE, "Beginning evacuation of content in temporary RAM.\n"));\r
1152\r
1153 //\r
1154 // Migrate PPI Pointers of PEI_CORE from temporary memory to newly loaded PEI_CORE in permanent memory.\r
1155 //\r
1156 Status = PeiLocatePpi ((CONST EFI_PEI_SERVICES **) &Private->Ps, &gEfiPeiCoreFvLocationPpiGuid, 0, NULL, (VOID **) &PeiCoreFvLocationPpi);\r
1157 if (!EFI_ERROR (Status) && (PeiCoreFvLocationPpi->PeiCoreFvLocation != NULL)) {\r
1158 PeiCoreFvHandle.FvHandle = (EFI_PEI_FV_HANDLE) PeiCoreFvLocationPpi->PeiCoreFvLocation;\r
1159 } else {\r
1160 PeiCoreFvHandle.FvHandle = (EFI_PEI_FV_HANDLE) SecCoreData->BootFirmwareVolumeBase;\r
1161 }\r
1162 for (FvIndex = 0; FvIndex < Private->FvCount; FvIndex++) {\r
1163 if (Private->Fv[FvIndex].FvHandle == PeiCoreFvHandle.FvHandle) {\r
31e8a47b 1164 CopyMem (&PeiCoreFvHandle, &Private->Fv[FvIndex], sizeof (PEI_CORE_FV_HANDLE));\r
9bedaec0
MK
1165 break;\r
1166 }\r
1167 }\r
1168 Status = EFI_SUCCESS;\r
1169\r
31e8a47b 1170 ConvertPeiCorePpiPointers (Private, &PeiCoreFvHandle);\r
9bedaec0
MK
1171\r
1172 for (FvIndex = 0; FvIndex < Private->FvCount; FvIndex++) {\r
1173 FvHeader = Private->Fv[FvIndex].FvHeader;\r
1174 ASSERT (FvHeader != NULL);\r
1175 ASSERT (FvIndex < Private->FvCount);\r
1176\r
1177 DEBUG ((DEBUG_VERBOSE, "FV[%02d] at 0x%x.\n", FvIndex, (UINTN) FvHeader));\r
1178 if (\r
1179 !(\r
1180 ((EFI_PHYSICAL_ADDRESS)(UINTN) FvHeader >= Private->PhysicalMemoryBegin) &&\r
1181 (((EFI_PHYSICAL_ADDRESS)(UINTN) FvHeader + (FvHeader->FvLength - 1)) < Private->FreePhysicalMemoryTop)\r
1182 )\r
1183 ) {\r
4b68cef0
GJ
1184 //\r
1185 // Allocate page to save the rebased PEIMs, the PEIMs will get dispatched later.\r
1186 //\r
9bedaec0
MK
1187 Status = PeiServicesAllocatePages (\r
1188 EfiBootServicesCode,\r
1189 EFI_SIZE_TO_PAGES ((UINTN) FvHeader->FvLength),\r
c19d1813 1190 &FvHeaderAddress\r
9bedaec0
MK
1191 );\r
1192 ASSERT_EFI_ERROR (Status);\r
c19d1813 1193 MigratedFvHeader = (EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)FvHeaderAddress;\r
9bedaec0 1194\r
4b68cef0
GJ
1195 //\r
1196 // Allocate pool to save the raw PEIMs, which is used to keep consistent context across\r
1197 // multiple boot and PCR0 will keep the same no matter if the address of allocated page is changed.\r
1198 //\r
1199 Status = PeiServicesAllocatePages (\r
1200 EfiBootServicesCode,\r
1201 EFI_SIZE_TO_PAGES ((UINTN) FvHeader->FvLength),\r
c19d1813 1202 &FvHeaderAddress\r
4b68cef0
GJ
1203 );\r
1204 ASSERT_EFI_ERROR (Status);\r
c19d1813 1205 RawDataFvHeader = (EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)FvHeaderAddress;\r
4b68cef0 1206\r
9bedaec0
MK
1207 DEBUG ((\r
1208 DEBUG_VERBOSE,\r
1209 " Migrating FV[%d] from 0x%08X to 0x%08X\n",\r
1210 FvIndex,\r
1211 (UINTN) FvHeader,\r
1212 (UINTN) MigratedFvHeader\r
1213 ));\r
1214\r
4b68cef0
GJ
1215 //\r
1216 // Copy the context to the rebased pages and raw pages, and create hob to save the\r
1217 // information. The MigratedFvInfo HOB will never be produced when\r
1218 // PcdMigrateTemporaryRamFirmwareVolumes is FALSE, because the PCD control the\r
1219 // feature.\r
1220 //\r
9bedaec0 1221 CopyMem (MigratedFvHeader, FvHeader, (UINTN) FvHeader->FvLength);\r
4b68cef0
GJ
1222 CopyMem (RawDataFvHeader, MigratedFvHeader, (UINTN) FvHeader->FvLength);\r
1223 MigratedFvInfo.FvOrgBase = (UINT32) (UINTN) FvHeader;\r
1224 MigratedFvInfo.FvNewBase = (UINT32) (UINTN) MigratedFvHeader;\r
1225 MigratedFvInfo.FvDataBase = (UINT32) (UINTN) RawDataFvHeader;\r
1226 MigratedFvInfo.FvLength = (UINT32) (UINTN) FvHeader->FvLength;\r
1227 BuildGuidDataHob (&gEdkiiMigratedFvInfoGuid, &MigratedFvInfo, sizeof (MigratedFvInfo));\r
9bedaec0
MK
1228\r
1229 //\r
1230 // Migrate any children for this FV now\r
1231 //\r
1232 for (FvChildIndex = FvIndex; FvChildIndex < Private->FvCount; FvChildIndex++) {\r
1233 ChildFvHeader = Private->Fv[FvChildIndex].FvHeader;\r
1234 if (\r
1235 ((UINTN) ChildFvHeader > (UINTN) FvHeader) &&\r
1236 (((UINTN) ChildFvHeader + ChildFvHeader->FvLength) < ((UINTN) FvHeader) + FvHeader->FvLength)\r
1237 ) {\r
1238 DEBUG ((DEBUG_VERBOSE, " Child FV[%02d] is being migrated.\n", FvChildIndex));\r
1239 ChildFvOffset = (UINTN) ChildFvHeader - (UINTN) FvHeader;\r
1240 DEBUG ((DEBUG_VERBOSE, " Child FV offset = 0x%x.\n", ChildFvOffset));\r
1241 MigratedChildFvHeader = (EFI_FIRMWARE_VOLUME_HEADER *) ((UINTN) MigratedFvHeader + ChildFvOffset);\r
1242 Private->Fv[FvChildIndex].FvHeader = MigratedChildFvHeader;\r
1243 Private->Fv[FvChildIndex].FvHandle = (EFI_PEI_FV_HANDLE) MigratedChildFvHeader;\r
1244 DEBUG ((DEBUG_VERBOSE, " Child migrated FV header at 0x%x.\n", (UINTN) MigratedChildFvHeader));\r
1245\r
1246 Status = MigratePeimsInFv (Private, FvChildIndex, (UINTN) ChildFvHeader, (UINTN) MigratedChildFvHeader);\r
1247 ASSERT_EFI_ERROR (Status);\r
1248\r
1249 ConvertPpiPointersFv (\r
1250 Private,\r
1251 (UINTN) ChildFvHeader,\r
1252 (UINTN) MigratedChildFvHeader,\r
1253 (UINTN) ChildFvHeader->FvLength - 1\r
1254 );\r
1255\r
1256 ConvertStatusCodeCallbacks (\r
1257 (UINTN) ChildFvHeader,\r
1258 (UINTN) MigratedChildFvHeader,\r
1259 (UINTN) ChildFvHeader->FvLength - 1\r
1260 );\r
1261\r
1262 ConvertFvHob (Private, (UINTN) ChildFvHeader, (UINTN) MigratedChildFvHeader);\r
1263 }\r
1264 }\r
1265 Private->Fv[FvIndex].FvHeader = MigratedFvHeader;\r
1266 Private->Fv[FvIndex].FvHandle = (EFI_PEI_FV_HANDLE) MigratedFvHeader;\r
1267\r
1268 Status = MigratePeimsInFv (Private, FvIndex, (UINTN) FvHeader, (UINTN) MigratedFvHeader);\r
1269 ASSERT_EFI_ERROR (Status);\r
1270\r
1271 ConvertPpiPointersFv (\r
1272 Private,\r
1273 (UINTN) FvHeader,\r
1274 (UINTN) MigratedFvHeader,\r
1275 (UINTN) FvHeader->FvLength - 1\r
1276 );\r
1277\r
1278 ConvertStatusCodeCallbacks (\r
1279 (UINTN) FvHeader,\r
1280 (UINTN) MigratedFvHeader,\r
1281 (UINTN) FvHeader->FvLength - 1\r
1282 );\r
1283\r
1284 ConvertFvHob (Private, (UINTN) FvHeader, (UINTN) MigratedFvHeader);\r
1285 }\r
1286 }\r
1287\r
1288 RemoveFvHobsInTemporaryMemory (Private);\r
1289\r
1290 return Status;\r
1291}\r
1292\r
b1f6a7c6 1293/**\r
192f6d4c 1294 Conduct PEIM dispatch.\r
1295\r
b1f6a7c6 1296 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
5aae0aa7 1297 environment, such as the size and location of temporary RAM, the stack location and\r
1298 the BFV location.\r
b1f6a7c6 1299 @param Private Pointer to the private data passed in from caller\r
192f6d4c 1300\r
b1f6a7c6 1301**/\r
1302VOID\r
1303PeiDispatcher (\r
1304 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,\r
1305 IN PEI_CORE_INSTANCE *Private\r
1306 )\r
192f6d4c 1307{\r
b0d803fe 1308 EFI_STATUS Status;\r
1309 UINT32 Index1;\r
1310 UINT32 Index2;\r
6c7a807a 1311 CONST EFI_PEI_SERVICES **PeiServices;\r
b0d803fe 1312 EFI_PEI_FILE_HANDLE PeimFileHandle;\r
1313 UINTN FvCount;\r
1314 UINTN PeimCount;\r
1315 UINT32 AuthenticationState;\r
1316 EFI_PHYSICAL_ADDRESS EntryPoint;\r
797a9d67 1317 EFI_PEIM_ENTRY_POINT2 PeimEntryPoint;\r
b0d803fe 1318 UINTN SaveCurrentPeimCount;\r
1053e0c5 1319 UINTN SaveCurrentFvCount;\r
b0d803fe 1320 EFI_PEI_FILE_HANDLE SaveCurrentFileHandle;\r
288f9b38 1321 EFI_FV_FILE_INFO FvFileInfo;\r
3b428ade 1322 PEI_CORE_FV_HANDLE *CoreFvHandle;\r
d1102dba 1323\r
4140a663 1324 PeiServices = (CONST EFI_PEI_SERVICES **) &Private->Ps;\r
b0d803fe 1325 PeimEntryPoint = NULL;\r
1326 PeimFileHandle = NULL;\r
288f9b38 1327 EntryPoint = 0;\r
b0d803fe 1328\r
9bedaec0
MK
1329 if ((Private->PeiMemoryInstalled) &&\r
1330 (PcdGetBool (PcdMigrateTemporaryRamFirmwareVolumes) ||\r
1331 (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME) ||\r
1332 PcdGetBool (PcdShadowPeimOnS3Boot))\r
1333 ) {\r
b0d803fe 1334 //\r
1335 // Once real memory is available, shadow the RegisterForShadow modules. And meanwhile\r
c2c4199b 1336 // update the modules' status from PEIM_STATE_REGISTER_FOR_SHADOW to PEIM_STATE_DONE.\r
b0d803fe 1337 //\r
1338 SaveCurrentPeimCount = Private->CurrentPeimCount;\r
1053e0c5 1339 SaveCurrentFvCount = Private->CurrentPeimFvCount;\r
b0d803fe 1340 SaveCurrentFileHandle = Private->CurrentFileHandle;\r
1341\r
b22d0931 1342 for (Index1 = 0; Index1 < Private->FvCount; Index1++) {\r
b62fe570 1343 for (Index2 = 0; Index2 < Private->Fv[Index1].PeimCount; Index2++) {\r
c2c4199b 1344 if (Private->Fv[Index1].PeimState[Index2] == PEIM_STATE_REGISTER_FOR_SHADOW) {\r
58dcdada 1345 PeimFileHandle = Private->Fv[Index1].FvFileHandles[Index2];\r
3d44658c
LG
1346 Private->CurrentFileHandle = PeimFileHandle;\r
1347 Private->CurrentPeimFvCount = Index1;\r
1348 Private->CurrentPeimCount = Index2;\r
b0d803fe 1349 Status = PeiLoadImage (\r
4140a663 1350 (CONST EFI_PEI_SERVICES **) &Private->Ps,\r
58dcdada 1351 PeimFileHandle,\r
c2c4199b 1352 PEIM_STATE_REGISTER_FOR_SHADOW,\r
58dcdada 1353 &EntryPoint,\r
b0d803fe 1354 &AuthenticationState\r
1355 );\r
1356 if (Status == EFI_SUCCESS) {\r
1357 //\r
c2c4199b 1358 // PEIM_STATE_REGISTER_FOR_SHADOW move to PEIM_STATE_DONE\r
b0d803fe 1359 //\r
1360 Private->Fv[Index1].PeimState[Index2]++;\r
b0d803fe 1361 //\r
1362 // Call the PEIM entry point\r
1363 //\r
797a9d67 1364 PeimEntryPoint = (EFI_PEIM_ENTRY_POINT2)(UINTN)EntryPoint;\r
58dcdada 1365\r
67e9ab84 1366 PERF_START_IMAGE_BEGIN (PeimFileHandle);\r
4140a663 1367 PeimEntryPoint(PeimFileHandle, (const EFI_PEI_SERVICES **) &Private->Ps);\r
67e9ab84 1368 PERF_START_IMAGE_END (PeimFileHandle);\r
58dcdada 1369 }\r
1370\r
b0d803fe 1371 //\r
1372 // Process the Notify list and dispatch any notifies for\r
1373 // newly installed PPIs.\r
1374 //\r
f2bc359c 1375 ProcessDispatchNotifyList (Private);\r
b0d803fe 1376 }\r
1377 }\r
1378 }\r
58dcdada 1379 Private->CurrentFileHandle = SaveCurrentFileHandle;\r
1380 Private->CurrentPeimFvCount = SaveCurrentFvCount;\r
1381 Private->CurrentPeimCount = SaveCurrentPeimCount;\r
b0d803fe 1382 }\r
192f6d4c 1383\r
1384 //\r
1385 // This is the main dispatch loop. It will search known FVs for PEIMs and\r
1386 // attempt to dispatch them. If any PEIM gets dispatched through a single\r
d39d1260 1387 // pass of the dispatcher, it will start over from the BFV again to see\r
192f6d4c 1388 // if any new PEIMs dependencies got satisfied. With a well ordered\r
1389 // FV where PEIMs are found in the order their dependencies are also\r
d39d1260 1390 // satisfied, this dispatcher should run only once.\r
192f6d4c 1391 //\r
b0d803fe 1392 do {\r
82b8c8df 1393 //\r
d1102dba 1394 // In case that reenter PeiCore happens, the last pass record is still available.\r
82b8c8df 1395 //\r
1396 if (!Private->PeimDispatcherReenter) {\r
1397 Private->PeimNeedingDispatch = FALSE;\r
1398 Private->PeimDispatchOnThisPass = FALSE;\r
1399 } else {\r
1400 Private->PeimDispatcherReenter = FALSE;\r
1401 }\r
d1102dba 1402\r
b0d803fe 1403 for (FvCount = Private->CurrentPeimFvCount; FvCount < Private->FvCount; FvCount++) {\r
3b428ade 1404 CoreFvHandle = FindNextCoreFvHandle (Private, FvCount);\r
1405 ASSERT (CoreFvHandle != NULL);\r
d1102dba 1406\r
2a00326e 1407 //\r
3b428ade 1408 // If the FV has corresponding EFI_PEI_FIRMWARE_VOLUME_PPI instance, then dispatch it.\r
2a00326e 1409 //\r
3b428ade 1410 if (CoreFvHandle->FvPpi == NULL) {\r
1411 continue;\r
1412 }\r
d1102dba 1413\r
3b428ade 1414 Private->CurrentPeimFvCount = FvCount;\r
192f6d4c 1415\r
b0d803fe 1416 if (Private->CurrentPeimCount == 0) {\r
1417 //\r
1418 // When going through each FV, at first, search Apriori file to\r
58dcdada 1419 // reorder all PEIMs to ensure the PEIMs in Apriori file to get\r
b0d803fe 1420 // dispatch at first.\r
1421 //\r
3b428ade 1422 DiscoverPeimsAndOrderWithApriori (Private, CoreFvHandle);\r
b0d803fe 1423 }\r
192f6d4c 1424\r
1425 //\r
d39d1260 1426 // Start to dispatch all modules within the current FV.\r
192f6d4c 1427 //\r
58dcdada 1428 for (PeimCount = Private->CurrentPeimCount;\r
b62fe570 1429 PeimCount < Private->Fv[FvCount].PeimCount;\r
b0d803fe 1430 PeimCount++) {\r
1431 Private->CurrentPeimCount = PeimCount;\r
1432 PeimFileHandle = Private->CurrentFileHandle = Private->CurrentFvFileHandles[PeimCount];\r
1433\r
1434 if (Private->Fv[FvCount].PeimState[PeimCount] == PEIM_STATE_NOT_DISPATCHED) {\r
1435 if (!DepexSatisfied (Private, PeimFileHandle, PeimCount)) {\r
82b8c8df 1436 Private->PeimNeedingDispatch = TRUE;\r
b0d803fe 1437 } else {\r
3b428ade 1438 Status = CoreFvHandle->FvPpi->GetFileInfo (CoreFvHandle->FvPpi, PeimFileHandle, &FvFileInfo);\r
288f9b38
LG
1439 ASSERT_EFI_ERROR (Status);\r
1440 if (FvFileInfo.FileType == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {\r
1441 //\r
d39d1260 1442 // For FV type file, Produce new FvInfo PPI and FV HOB\r
288f9b38 1443 //\r
c7935105
SZ
1444 Status = ProcessFvFile (Private, &Private->Fv[FvCount], PeimFileHandle);\r
1445 if (Status == EFI_SUCCESS) {\r
1446 //\r
1447 // PEIM_STATE_NOT_DISPATCHED move to PEIM_STATE_DISPATCHED\r
1448 //\r
1449 Private->Fv[FvCount].PeimState[PeimCount]++;\r
1450 Private->PeimDispatchOnThisPass = TRUE;\r
116cd856
SZ
1451 } else {\r
1452 //\r
1453 // The related GuidedSectionExtraction/Decompress PPI for the\r
1454 // encapsulated FV image section may be installed in the rest\r
1455 // of this do-while loop, so need to make another pass.\r
1456 //\r
1457 Private->PeimNeedingDispatch = TRUE;\r
c7935105 1458 }\r
288f9b38
LG
1459 } else {\r
1460 //\r
1461 // For PEIM driver, Load its entry point\r
1462 //\r
1463 Status = PeiLoadImage (\r
58dcdada 1464 PeiServices,\r
1465 PeimFileHandle,\r
341a658f 1466 PEIM_STATE_NOT_DISPATCHED,\r
58dcdada 1467 &EntryPoint,\r
288f9b38
LG
1468 &AuthenticationState\r
1469 );\r
c7935105 1470 if (Status == EFI_SUCCESS) {\r
b0d803fe 1471 //\r
c7935105
SZ
1472 // The PEIM has its dependencies satisfied, and its entry point\r
1473 // has been found, so invoke it.\r
b0d803fe 1474 //\r
67e9ab84 1475 PERF_START_IMAGE_BEGIN (PeimFileHandle);\r
58dcdada 1476\r
c7935105
SZ
1477 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
1478 EFI_PROGRESS_CODE,\r
1479 (EFI_SOFTWARE_PEI_CORE | EFI_SW_PC_INIT_BEGIN),\r
fa3d30ea
LG
1480 (VOID *)(&PeimFileHandle),\r
1481 sizeof (PeimFileHandle)\r
c7935105
SZ
1482 );\r
1483\r
1484 Status = VerifyPeim (Private, CoreFvHandle->FvHandle, PeimFileHandle, AuthenticationState);\r
1485 if (Status != EFI_SECURITY_VIOLATION) {\r
1486 //\r
1487 // PEIM_STATE_NOT_DISPATCHED move to PEIM_STATE_DISPATCHED\r
1488 //\r
1489 Private->Fv[FvCount].PeimState[PeimCount]++;\r
288f9b38
LG
1490 //\r
1491 // Call the PEIM entry point for PEIM driver\r
1492 //\r
797a9d67 1493 PeimEntryPoint = (EFI_PEIM_ENTRY_POINT2)(UINTN)EntryPoint;\r
1494 PeimEntryPoint (PeimFileHandle, (const EFI_PEI_SERVICES **) PeiServices);\r
c7935105 1495 Private->PeimDispatchOnThisPass = TRUE;\r
9f671b47
LG
1496 } else {\r
1497 //\r
1498 // The related GuidedSectionExtraction PPI for the\r
1499 // signed PEIM image section may be installed in the rest\r
1500 // of this do-while loop, so need to make another pass.\r
1501 //\r
1502 Private->PeimNeedingDispatch = TRUE;\r
288f9b38 1503 }\r
797a9d67 1504\r
c7935105
SZ
1505 REPORT_STATUS_CODE_WITH_EXTENDED_DATA (\r
1506 EFI_PROGRESS_CODE,\r
1507 (EFI_SOFTWARE_PEI_CORE | EFI_SW_PC_INIT_END),\r
fa3d30ea
LG
1508 (VOID *)(&PeimFileHandle),\r
1509 sizeof (PeimFileHandle)\r
c7935105 1510 );\r
67e9ab84 1511 PERF_START_IMAGE_END (PeimFileHandle);\r
b0d803fe 1512\r
c7935105 1513 }\r
58dcdada 1514 }\r
1515\r
bfb685da 1516 PeiCheckAndSwitchStack (SecCoreData, Private);\r
192f6d4c 1517\r
58dcdada 1518 //\r
1519 // Process the Notify list and dispatch any notifies for\r
1520 // newly installed PPIs.\r
1521 //\r
f2bc359c 1522 ProcessDispatchNotifyList (Private);\r
58dcdada 1523\r
bfb685da 1524 //\r
f2bc359c 1525 // Recheck SwitchStackSignal after ProcessDispatchNotifyList()\r
bfb685da
SZ
1526 // in case PeiInstallPeiMemory() is done in a callback with\r
1527 // EFI_PEI_PPI_DESCRIPTOR_NOTIFY_DISPATCH.\r
1528 //\r
1529 PeiCheckAndSwitchStack (SecCoreData, Private);\r
1530\r
c2c4199b 1531 if ((Private->PeiMemoryInstalled) && (Private->Fv[FvCount].PeimState[PeimCount] == PEIM_STATE_REGISTER_FOR_SHADOW) && \\r
9bedaec0
MK
1532 (PcdGetBool (PcdMigrateTemporaryRamFirmwareVolumes) ||\r
1533 (Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME) ||\r
1534 PcdGetBool (PcdShadowPeimOnS3Boot))\r
1535 ) {\r
b0d803fe 1536 //\r
6393d9c8 1537 // If memory is available we shadow images by default for performance reasons.\r
58dcdada 1538 // We call the entry point a 2nd time so the module knows it's shadowed.\r
b0d803fe 1539 //\r
1540 //PERF_START (PeiServices, L"PEIM", PeimFileHandle, 0);\r
9bedaec0
MK
1541 if ((Private->HobList.HandoffInformationTable->BootMode != BOOT_ON_S3_RESUME) && !PcdGetBool (PcdShadowPeimOnBoot) &&\r
1542 !PcdGetBool (PcdMigrateTemporaryRamFirmwareVolumes)) {\r
3d44658c
LG
1543 //\r
1544 // Load PEIM into Memory for Register for shadow PEIM.\r
1545 //\r
1546 Status = PeiLoadImage (\r
1547 PeiServices,\r
1548 PeimFileHandle,\r
c2c4199b 1549 PEIM_STATE_REGISTER_FOR_SHADOW,\r
3d44658c
LG
1550 &EntryPoint,\r
1551 &AuthenticationState\r
1552 );\r
1553 if (Status == EFI_SUCCESS) {\r
1554 PeimEntryPoint = (EFI_PEIM_ENTRY_POINT2)(UINTN)EntryPoint;\r
1555 }\r
1556 }\r
e67ca95c 1557 ASSERT (PeimEntryPoint != NULL);\r
797a9d67 1558 PeimEntryPoint (PeimFileHandle, (const EFI_PEI_SERVICES **) PeiServices);\r
b0d803fe 1559 //PERF_END (PeiServices, L"PEIM", PeimFileHandle, 0);\r
58dcdada 1560\r
b0d803fe 1561 //\r
c2c4199b 1562 // PEIM_STATE_REGISTER_FOR_SHADOW move to PEIM_STATE_DONE\r
b0d803fe 1563 //\r
1564 Private->Fv[FvCount].PeimState[PeimCount]++;\r
192f6d4c 1565\r
192f6d4c 1566 //\r
b0d803fe 1567 // Process the Notify list and dispatch any notifies for\r
1568 // newly installed PPIs.\r
192f6d4c 1569 //\r
f2bc359c 1570 ProcessDispatchNotifyList (Private);\r
192f6d4c 1571 }\r
1572 }\r
1573 }\r
192f6d4c 1574 }\r
192f6d4c 1575\r
b0d803fe 1576 //\r
b62fe570 1577 // Before walking through the next FV, we should set them to NULL/0 to\r
93b8ed68 1578 // start at the beginning of the next FV.\r
b0d803fe 1579 //\r
1580 Private->CurrentFileHandle = NULL;\r
1581 Private->CurrentPeimCount = 0;\r
b62fe570 1582 Private->CurrentFvFileHandles = NULL;\r
192f6d4c 1583 }\r
1584\r
1585 //\r
b62fe570
SZ
1586 // Before making another pass, we should set it to 0 to\r
1587 // go through all the FVs.\r
192f6d4c 1588 //\r
b0d803fe 1589 Private->CurrentPeimFvCount = 0;\r
192f6d4c 1590\r
1591 //\r
116cd856 1592 // PeimNeedingDispatch being TRUE means we found a PEIM/FV that did not get\r
b0d803fe 1593 // dispatched. So we need to make another pass\r
192f6d4c 1594 //\r
116cd856
SZ
1595 // PeimDispatchOnThisPass being TRUE means we dispatched a PEIM/FV on this\r
1596 // pass. If we did not dispatch a PEIM/FV there is no point in trying again\r
b0d803fe 1597 // as it will fail the next time too (nothing has changed).\r
192f6d4c 1598 //\r
82b8c8df 1599 } while (Private->PeimNeedingDispatch && Private->PeimDispatchOnThisPass);\r
192f6d4c 1600\r
192f6d4c 1601}\r
1602\r
b1f6a7c6 1603/**\r
192f6d4c 1604 Initialize the Dispatcher's data members\r
1605\r
b1f6a7c6 1606 @param PrivateData PeiCore's private data structure\r
1607 @param OldCoreData Old data from SecCore\r
93b8ed68 1608 NULL if being run in non-permanent memory mode.\r
b1f6a7c6 1609 @param SecCoreData Points to a data structure containing information about the PEI core's operating\r
5aae0aa7 1610 environment, such as the size and location of temporary RAM, the stack location and\r
1611 the BFV location.\r
192f6d4c 1612\r
b1f6a7c6 1613 @return None.\r
192f6d4c 1614\r
b1f6a7c6 1615**/\r
1616VOID\r
1617InitializeDispatcherData (\r
1618 IN PEI_CORE_INSTANCE *PrivateData,\r
1619 IN PEI_CORE_INSTANCE *OldCoreData,\r
1620 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData\r
1621 )\r
192f6d4c 1622{\r
192f6d4c 1623 if (OldCoreData == NULL) {\r
82b8c8df 1624 PrivateData->PeimDispatcherReenter = FALSE;\r
b0d803fe 1625 PeiInitializeFv (PrivateData, SecCoreData);\r
8e0e40ed 1626 } else {\r
7ec93917 1627 PeiReinitializeFv (PrivateData);\r
192f6d4c 1628 }\r
1629\r
1630 return;\r
1631}\r
1632\r
b1f6a7c6 1633/**\r
1634 This routine parses the Dependency Expression, if available, and\r
1635 decides if the module can be executed.\r
1636\r
1637\r
1638 @param Private PeiCore's private data structure\r
1639 @param FileHandle PEIM's file handle\r
1640 @param PeimCount Peim count in all dispatched PEIMs.\r
192f6d4c 1641\r
b1f6a7c6 1642 @retval TRUE Can be dispatched\r
1643 @retval FALSE Cannot be dispatched\r
1644\r
1645**/\r
192f6d4c 1646BOOLEAN\r
1647DepexSatisfied (\r
b0d803fe 1648 IN PEI_CORE_INSTANCE *Private,\r
1649 IN EFI_PEI_FILE_HANDLE FileHandle,\r
1650 IN UINTN PeimCount\r
192f6d4c 1651 )\r
192f6d4c 1652{\r
288f9b38
LG
1653 EFI_STATUS Status;\r
1654 VOID *DepexData;\r
6a55eea3 1655 EFI_FV_FILE_INFO FileInfo;\r
b0d803fe 1656\r
6a55eea3 1657 Status = PeiServicesFfsGetFileInfo (FileHandle, &FileInfo);\r
1658 if (EFI_ERROR (Status)) {\r
1659 DEBUG ((DEBUG_DISPATCH, "Evaluate PEI DEPEX for FFS(Unknown)\n"));\r
1660 } else {\r
1661 DEBUG ((DEBUG_DISPATCH, "Evaluate PEI DEPEX for FFS(%g)\n", &FileInfo.FileName));\r
1662 }\r
d1102dba 1663\r
b0d803fe 1664 if (PeimCount < Private->AprioriCount) {\r
1665 //\r
d39d1260 1666 // If it's in the Apriori file then we set DEPEX to TRUE\r
b0d803fe 1667 //\r
6a55eea3 1668 DEBUG ((DEBUG_DISPATCH, " RESULT = TRUE (Apriori)\n"));\r
b0d803fe 1669 return TRUE;\r
1670 }\r
58dcdada 1671\r
288f9b38 1672 //\r
58dcdada 1673 // Depex section not in the encapsulated section.\r
288f9b38
LG
1674 //\r
1675 Status = PeiServicesFfsFindSectionData (\r
1676 EFI_SECTION_PEI_DEPEX,\r
58dcdada 1677 FileHandle,\r
288f9b38
LG
1678 (VOID **)&DepexData\r
1679 );\r
b0d803fe 1680\r
192f6d4c 1681 if (EFI_ERROR (Status)) {\r
b0d803fe 1682 //\r
1683 // If there is no DEPEX, assume the module can be executed\r
1684 //\r
6a55eea3 1685 DEBUG ((DEBUG_DISPATCH, " RESULT = TRUE (No DEPEX)\n"));\r
192f6d4c 1686 return TRUE;\r
1687 }\r
1688\r
1689 //\r
1690 // Evaluate a given DEPEX\r
1691 //\r
4140a663 1692 return PeimDispatchReadiness (&Private->Ps, DepexData);\r
192f6d4c 1693}\r
1694\r
14e8823a 1695/**\r
d3add11e
MK
1696 This routine enables a PEIM to register itself for shadow when the PEI Foundation\r
1697 discovers permanent memory.\r
14e8823a 1698\r
b1f6a7c6 1699 @param FileHandle File handle of a PEIM.\r
58dcdada 1700\r
b1f6a7c6 1701 @retval EFI_NOT_FOUND The file handle doesn't point to PEIM itself.\r
1702 @retval EFI_ALREADY_STARTED Indicate that the PEIM has been registered itself.\r
1703 @retval EFI_SUCCESS Successfully to register itself.\r
14e8823a 1704\r
58dcdada 1705**/\r
14e8823a 1706EFI_STATUS\r
1707EFIAPI\r
1708PeiRegisterForShadow (\r
1709 IN EFI_PEI_FILE_HANDLE FileHandle\r
1710 )\r
1711{\r
1712 PEI_CORE_INSTANCE *Private;\r
1713 Private = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer ());\r
1714\r
1715 if (Private->CurrentFileHandle != FileHandle) {\r
1716 //\r
1717 // The FileHandle must be for the current PEIM\r
1718 //\r
1719 return EFI_NOT_FOUND;\r
1720 }\r
1721\r
c2c4199b 1722 if (Private->Fv[Private->CurrentPeimFvCount].PeimState[Private->CurrentPeimCount] >= PEIM_STATE_REGISTER_FOR_SHADOW) {\r
14e8823a 1723 //\r
1724 // If the PEIM has already entered the PEIM_STATE_REGISTER_FOR_SHADOW or PEIM_STATE_DONE then it's already been started\r
1725 //\r
1726 return EFI_ALREADY_STARTED;\r
1727 }\r
58dcdada 1728\r
c2c4199b 1729 Private->Fv[Private->CurrentPeimFvCount].PeimState[Private->CurrentPeimCount] = PEIM_STATE_REGISTER_FOR_SHADOW;\r
14e8823a 1730\r
1731 return EFI_SUCCESS;\r
1732}\r