]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Pei/FwVol/FwVol.c
MdeModulePkg PeiCore: Improve comment semantics
[mirror_edk2.git] / MdeModulePkg / Core / Pei / FwVol / FwVol.c
index 0bbb86d958194082fa2fd4edcfe80cd5e36f7163..b3661146f29c8acb1a4e47f1b6471ef60bfe612d 100644 (file)
@@ -1,15 +1,9 @@
 /** @file\r
   Pei Core Firmware File System service routines.\r
-  \r
+\r
 Copyright (c) 2015 HP Development Company, L.P.\r
-Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials                          \r
-are licensed and made available under the terms and conditions of the BSD License         \r
-which accompanies this distribution.  The full text of the license may be found at        \r
-http://opensource.org/licenses/bsd-license.php                                            \r
-                                                                                          \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>\r
+SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -19,12 +13,12 @@ EFI_PEI_NOTIFY_DESCRIPTOR mNotifyOnFvInfoList[] = {
   {\r
     EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK,\r
     &gEfiPeiFirmwareVolumeInfoPpiGuid,\r
-    FirmwareVolmeInfoPpiNotifyCallback \r
+    FirmwareVolumeInfoPpiNotifyCallback\r
   },\r
   {\r
     (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),\r
     &gEfiPeiFirmwareVolumeInfo2PpiGuid,\r
-    FirmwareVolmeInfoPpiNotifyCallback \r
+    FirmwareVolumeInfoPpiNotifyCallback\r
   }\r
 };\r
 \r
@@ -61,7 +55,7 @@ PEI_FW_VOL_INSTANCE mPeiFfs3FwVol = {
     EFI_PEI_FIRMWARE_VOLUME_PPI_REVISION\r
   }\r
 };\r
-            \r
+\r
 EFI_PEI_PPI_DESCRIPTOR  mPeiFfs2FvPpiList = {\r
   (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),\r
   &gEfiFirmwareFileSystem2Guid,\r
@@ -75,18 +69,27 @@ EFI_PEI_PPI_DESCRIPTOR  mPeiFfs3FvPpiList = {
 };\r
 \r
 /**\r
-Required Alignment             Alignment Value in FFS         Alignment Value in\r
-(bytes)                        Attributes Field               Firmware Volume Interfaces\r
-1                                    0                                     0\r
-16                                   1                                     4\r
-128                                  2                                     7\r
-512                                  3                                     9\r
-1 KB                                 4                                     10\r
-4 KB                                 5                                     12\r
-32 KB                                6                                     15\r
-64 KB                                7                                     16\r
+Required Alignment   Alignment Value in FFS   FFS_ATTRIB_DATA_ALIGNMENT2   Alignment Value in\r
+(bytes)              Attributes Field         in FFS Attributes Field      Firmware Volume Interfaces\r
+1                               0                          0                            0\r
+16                              1                          0                            4\r
+128                             2                          0                            7\r
+512                             3                          0                            9\r
+1 KB                            4                          0                            10\r
+4 KB                            5                          0                            12\r
+32 KB                           6                          0                            15\r
+64 KB                           7                          0                            16\r
+128 KB                          0                          1                            17\r
+256 KB                          1                          1                            18\r
+512 KB                          2                          1                            19\r
+1 MB                            3                          1                            20\r
+2 MB                            4                          1                            21\r
+4 MB                            5                          1                            22\r
+8 MB                            6                          1                            23\r
+16 MB                           7                          1                            24\r
 **/\r
 UINT8 mFvAttributes[] = {0, 4, 7, 9, 10, 12, 15, 16};\r
+UINT8 mFvAttributes2[] = {17, 18, 19, 20, 21, 22, 23, 24};\r
 \r
 /**\r
   Convert the FFS File Attributes to FV File Attributes\r
@@ -107,7 +110,11 @@ FfsAttributes2FvFileAttributes (
   DataAlignment = (UINT8) ((FfsAttributes & FFS_ATTRIB_DATA_ALIGNMENT) >> 3);\r
   ASSERT (DataAlignment < 8);\r
 \r
-  FileAttribute = (EFI_FV_FILE_ATTRIBUTES) mFvAttributes[DataAlignment];\r
+  if ((FfsAttributes & FFS_ATTRIB_DATA_ALIGNMENT_2) != 0) {\r
+    FileAttribute = (EFI_FV_FILE_ATTRIBUTES) mFvAttributes2[DataAlignment];\r
+  } else {\r
+    FileAttribute = (EFI_FV_FILE_ATTRIBUTES) mFvAttributes[DataAlignment];\r
+  }\r
 \r
   if ((FfsAttributes & FFS_ATTRIB_FIXED) == FFS_ATTRIB_FIXED) {\r
     FileAttribute |= EFI_FV_FILE_ATTRIB_FIXED;\r
@@ -123,7 +130,7 @@ FfsAttributes2FvFileAttributes (
                          in the Attributes field.\r
   @param FfsHeader       Pointer to FFS File Header.\r
 \r
-  @retval EFI_FFS_FILE_STATE File state is set by the highest none zero bit \r
+  @retval EFI_FFS_FILE_STATE File state is set by the highest none zero bit\r
                              in the header State field.\r
 **/\r
 EFI_FFS_FILE_STATE\r
@@ -140,7 +147,7 @@ GetFileState(
   if (ErasePolarity != 0) {\r
     FileState = (EFI_FFS_FILE_STATE)~FileState;\r
   }\r
-  \r
+\r
   //\r
   // Get file state set by its highest none zero bit.\r
   //\r
@@ -150,7 +157,7 @@ GetFileState(
   }\r
 \r
   return HighestBit;\r
-} \r
+}\r
 \r
 /**\r
   Calculates the checksum of the header of a file.\r
@@ -193,7 +200,7 @@ CalculateHeaderChecksum (
   Find FV handler according to FileHandle in that FV.\r
 \r
   @param FileHandle      Handle of file image\r
-  \r
+\r
   @return Pointer to instance of PEI_CORE_FV_HANDLE.\r
 **/\r
 PEI_CORE_FV_HANDLE*\r
@@ -208,10 +215,10 @@ FileHandleToVolume (
 \r
   PrivateData = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer ());\r
   BestIndex   = PrivateData->FvCount;\r
-  \r
+\r
   //\r
   // Find the best matched FV image that includes this FileHandle.\r
-  // FV may include the child FV, and they are in the same continuous space. \r
+  // FV may include the child FV, and they are in the same continuous space.\r
   // If FileHandle is from the child FV, the updated logic can find its matched FV.\r
   //\r
   for (Index = 0; Index < PrivateData->FvCount; Index++) {\r
@@ -240,8 +247,8 @@ FileHandleToVolume (
   FFS volume as defined by SearchType. The search starts from FileHeader inside\r
   the Firmware Volume defined by FwVolHeader.\r
   If SearchType is EFI_FV_FILETYPE_ALL, the first FFS file will return without check its file type.\r
-  If SearchType is PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE, \r
-  the first PEIM, or COMBINED PEIM or FV file type FFS file will return.  \r
+  If SearchType is PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE,\r
+  the first PEIM, or COMBINED PEIM or FV file type FFS file will return.\r
 \r
   @param FvHandle        Pointer to the FV header of the volume to search\r
   @param FileName        File name\r
@@ -275,7 +282,7 @@ FindFileEx (
   UINT8                                 FileState;\r
   UINT8                                 DataCheckSum;\r
   BOOLEAN                               IsFfs3Fv;\r
-  \r
+\r
   //\r
   // Convert the handle of FV to FV header for memory-mapped firmware volume\r
   //\r
@@ -290,7 +297,7 @@ FindFileEx (
   } else {\r
     ErasePolarity = 0;\r
   }\r
-  \r
+\r
   //\r
   // If FileHeader is not specified (NULL) or FileName is not NULL,\r
   // start with the first file in the firmware volume.  Otherwise,\r
@@ -303,10 +310,10 @@ FindFileEx (
       //\r
       FwVolExtHeader = (EFI_FIRMWARE_VOLUME_EXT_HEADER *) ((UINT8 *) FwVolHeader + FwVolHeader->ExtHeaderOffset);\r
       FfsFileHeader = (EFI_FFS_FILE_HEADER *) ((UINT8 *) FwVolExtHeader + FwVolExtHeader->ExtHeaderSize);\r
-      FfsFileHeader = (EFI_FFS_FILE_HEADER *) ALIGN_POINTER (FfsFileHeader, 8);\r
     } else {\r
       FfsFileHeader = (EFI_FFS_FILE_HEADER *)((UINT8 *) FwVolHeader + FwVolHeader->HeaderLength);\r
     }\r
+    FfsFileHeader = (EFI_FFS_FILE_HEADER *) ALIGN_POINTER (FfsFileHeader, 8);\r
   } else {\r
     if (IS_FFS_FILE2 (*FileHeader)) {\r
       if (!IsFfs3Fv) {\r
@@ -323,13 +330,13 @@ FindFileEx (
     FileOccupiedSize = GET_OCCUPIED_SIZE (FileLength, 8);\r
     FfsFileHeader = (EFI_FFS_FILE_HEADER *)((UINT8 *)*FileHeader + FileOccupiedSize);\r
   }\r
-  \r
+\r
   FileOffset = (UINT32) ((UINT8 *)FfsFileHeader - (UINT8 *)FwVolHeader);\r
   ASSERT (FileOffset <= 0xFFFFFFFF);\r
 \r
   while (FileOffset < (FvLength - sizeof (EFI_FFS_FILE_HEADER))) {\r
     //\r
-    // Get FileState which is the highest bit of the State \r
+    // Get FileState which is the highest bit of the State\r
     //\r
     FileState = GetFileState (ErasePolarity, FfsFileHeader);\r
     switch (FileState) {\r
@@ -347,7 +354,7 @@ FindFileEx (
         FfsFileHeader =  (EFI_FFS_FILE_HEADER *) ((UINT8 *) FfsFileHeader + sizeof (EFI_FFS_FILE_HEADER));\r
       }\r
       break;\r
-        \r
+\r
     case EFI_FILE_DATA_VALID:\r
     case EFI_FILE_MARKED_FOR_UPDATE:\r
       if (CalculateHeaderChecksum (FfsFileHeader) != 0) {\r
@@ -391,29 +398,29 @@ FindFileEx (
           return EFI_SUCCESS;\r
         }\r
       } else if (SearchType == PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE) {\r
-        if ((FfsFileHeader->Type == EFI_FV_FILETYPE_PEIM) || \r
+        if ((FfsFileHeader->Type == EFI_FV_FILETYPE_PEIM) ||\r
             (FfsFileHeader->Type == EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER) ||\r
-            (FfsFileHeader->Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE)) { \r
-          \r
+            (FfsFileHeader->Type == EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE)) {\r
+\r
           *FileHeader = FfsFileHeader;\r
           return EFI_SUCCESS;\r
         } else if (AprioriFile != NULL) {\r
           if (FfsFileHeader->Type == EFI_FV_FILETYPE_FREEFORM) {\r
             if (CompareGuid (&FfsFileHeader->Name, &gPeiAprioriFileNameGuid)) {\r
-              *AprioriFile = FfsFileHeader;\r
-            }           \r
-          } \r
+              *AprioriFile = (EFI_PEI_FILE_HANDLE)FfsFileHeader;\r
+            }\r
+          }\r
         }\r
-      } else if (((SearchType == FfsFileHeader->Type) || (SearchType == EFI_FV_FILETYPE_ALL)) && \r
-                 (FfsFileHeader->Type != EFI_FV_FILETYPE_FFS_PAD)) { \r
+      } else if (((SearchType == FfsFileHeader->Type) || (SearchType == EFI_FV_FILETYPE_ALL)) &&\r
+                 (FfsFileHeader->Type != EFI_FV_FILETYPE_FFS_PAD)) {\r
         *FileHeader = FfsFileHeader;\r
         return EFI_SUCCESS;\r
       }\r
 \r
-      FileOffset    += FileOccupiedSize; \r
+      FileOffset    += FileOccupiedSize;\r
       FfsFileHeader =  (EFI_FFS_FILE_HEADER *)((UINT8 *)FfsFileHeader + FileOccupiedSize);\r
       break;\r
-    \r
+\r
     case EFI_FILE_DELETED:\r
       if (IS_FFS_FILE2 (FfsFileHeader)) {\r
         if (!IsFfs3Fv) {\r
@@ -432,20 +439,20 @@ FindFileEx (
     default:\r
       *FileHeader = NULL;\r
       return EFI_NOT_FOUND;\r
-    } \r
+    }\r
   }\r
-  \r
+\r
   *FileHeader = NULL;\r
-  return EFI_NOT_FOUND;  \r
+  return EFI_NOT_FOUND;\r
 }\r
 \r
 /**\r
-  Initialize PeiCore Fv List.\r
+  Initialize PeiCore FV List.\r
 \r
   @param PrivateData     - Pointer to PEI_CORE_INSTANCE.\r
   @param SecCoreData     - Pointer to EFI_SEC_PEI_HAND_OFF.\r
 **/\r
-VOID \r
+VOID\r
 PeiInitializeFv (\r
   IN  PEI_CORE_INSTANCE           *PrivateData,\r
   IN CONST EFI_SEC_PEI_HAND_OFF   *SecCoreData\r
@@ -455,7 +462,7 @@ PeiInitializeFv (
   EFI_PEI_FIRMWARE_VOLUME_PPI   *FvPpi;\r
   EFI_PEI_FV_HANDLE             FvHandle;\r
   EFI_FIRMWARE_VOLUME_HEADER    *BfvHeader;\r
-  \r
+\r
   //\r
   // Install FV_PPI for FFS2 file system.\r
   //\r
@@ -467,7 +474,7 @@ PeiInitializeFv (
   PeiServicesInstallPpi (&mPeiFfs3FvPpiList);\r
 \r
   BfvHeader = (EFI_FIRMWARE_VOLUME_HEADER *)SecCoreData->BootFirmwareVolumeBase;\r
-  \r
+\r
   //\r
   // The FV_PPI in BFV's format should be installed.\r
   //\r
@@ -478,16 +485,21 @@ PeiInitializeFv (
              (VOID**)&FvPpi\r
              );\r
   ASSERT_EFI_ERROR (Status);\r
-    \r
+\r
   //\r
   // Get handle of BFV\r
   //\r
-  FvPpi->ProcessVolume (\r
-           FvPpi, \r
-           SecCoreData->BootFirmwareVolumeBase,\r
-           (UINTN)BfvHeader->FvLength,\r
-           &FvHandle\r
-           );\r
+  Status = FvPpi->ProcessVolume (\r
+                    FvPpi,\r
+                    SecCoreData->BootFirmwareVolumeBase,\r
+                    (UINTN)BfvHeader->FvLength,\r
+                    &FvHandle\r
+                    );\r
+  ASSERT_EFI_ERROR (Status);\r
+\r
+  PrivateData->Fv = AllocateZeroPool (sizeof (PEI_CORE_FV_HANDLE) * FV_GROWTH_STEP);\r
+  ASSERT (PrivateData->Fv != NULL);\r
+  PrivateData->MaxFvCount = FV_GROWTH_STEP;\r
 \r
   //\r
   // Update internal PEI_CORE_FV array.\r
@@ -497,26 +509,26 @@ PeiInitializeFv (
   PrivateData->Fv[PrivateData->FvCount].FvHandle = FvHandle;\r
   PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = 0;\r
   DEBUG ((\r
-    EFI_D_INFO, \r
-    "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n", \r
-    (UINT32) PrivateData->FvCount, \r
-    (VOID *) BfvHeader, \r
-    BfvHeader->FvLength,\r
+    EFI_D_INFO,\r
+    "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",\r
+    (UINT32) PrivateData->FvCount,\r
+    (VOID *) BfvHeader,\r
+    (UINT32) BfvHeader->FvLength,\r
     FvHandle\r
-    ));    \r
+    ));\r
   PrivateData->FvCount ++;\r
-                            \r
+\r
   //\r
   // Post a call-back for the FvInfoPPI and FvInfo2PPI services to expose\r
-  // additional Fvs to PeiCore.\r
+  // additional FVs to PeiCore.\r
   //\r
   Status = PeiServicesNotifyPpi (mNotifyOnFvInfoList);\r
   ASSERT_EFI_ERROR (Status);\r
 \r
 }\r
-  \r
+\r
 /**\r
-  Process Firmware Volum Information once FvInfoPPI or FvInfo2PPI install.\r
+  Process Firmware Volume Information once FvInfoPPI or FvInfo2PPI install.\r
   The FV Info will be registered into PeiCore private data structure.\r
   And search the inside FV image, if found, the new FV INFO(2) PPI will be installed.\r
 \r
@@ -525,12 +537,12 @@ PeiInitializeFv (
   @param Ppi               Address of the PPI that was installed.\r
 \r
   @retval EFI_SUCCESS    The FV Info is registered into PeiCore private data structure.\r
-  @return if not EFI_SUCESS, fail to verify FV.\r
+  @return if not EFI_SUCCESS, fail to verify FV.\r
 \r
 **/\r
 EFI_STATUS\r
 EFIAPI\r
-FirmwareVolmeInfoPpiNotifyCallback (\r
+FirmwareVolumeInfoPpiNotifyCallback (\r
   IN EFI_PEI_SERVICES              **PeiServices,\r
   IN EFI_PEI_NOTIFY_DESCRIPTOR     *NotifyDescriptor,\r
   IN VOID                          *Ppi\r
@@ -546,6 +558,7 @@ FirmwareVolmeInfoPpiNotifyCallback (
   VOID                                  *DepexData;\r
   BOOLEAN                               IsFvInfo2;\r
   UINTN                                 CurFvCount;\r
+  VOID                                  *TempPtr;\r
 \r
   Status       = EFI_SUCCESS;\r
   PrivateData  = PEI_CORE_INSTANCE_FROM_PS_THIS (PeiServices);\r
@@ -580,7 +593,7 @@ FirmwareVolmeInfoPpiNotifyCallback (
   }\r
 \r
   //\r
-  // Locate the corresponding FV_PPI according to founded FV's format guid\r
+  // Locate the corresponding FV_PPI according to the format GUID of the FV found\r
   //\r
   Status = PeiServicesLocatePpi (\r
              &FvInfo2Ppi.FvFormat,\r
@@ -605,17 +618,28 @@ FirmwareVolmeInfoPpiNotifyCallback (
       if (PrivateData->Fv[FvIndex].FvHandle == FvHandle) {\r
         if (IsFvInfo2 && (FvInfo2Ppi.AuthenticationStatus != PrivateData->Fv[FvIndex].AuthenticationStatus)) {\r
           PrivateData->Fv[FvIndex].AuthenticationStatus = FvInfo2Ppi.AuthenticationStatus;\r
-          DEBUG ((EFI_D_INFO, "Update AuthenticationStatus of the %dth FV to 0x%x!\n", FvIndex, FvInfo2Ppi.AuthenticationStatus));          \r
+          DEBUG ((EFI_D_INFO, "Update AuthenticationStatus of the %dth FV to 0x%x!\n", FvIndex, FvInfo2Ppi.AuthenticationStatus));\r
         }\r
-        DEBUG ((EFI_D_INFO, "The Fv %p has already been processed!\n", FvInfo2Ppi.FvInfo));\r
+        DEBUG ((DEBUG_INFO, "The FV %p has already been processed!\n", FvInfo2Ppi.FvInfo));\r
         return EFI_SUCCESS;\r
       }\r
     }\r
 \r
-    if (PrivateData->FvCount >= PcdGet32 (PcdPeiCoreMaxFvSupported)) {\r
-      DEBUG ((EFI_D_ERROR, "The number of Fv Images (%d) exceed the max supported FVs (%d) in Pei", PrivateData->FvCount + 1, PcdGet32 (PcdPeiCoreMaxFvSupported)));\r
-      DEBUG ((EFI_D_ERROR, "PcdPeiCoreMaxFvSupported value need be reconfigurated in DSC"));\r
-      ASSERT (FALSE);\r
+    if (PrivateData->FvCount >= PrivateData->MaxFvCount) {\r
+      //\r
+      // Run out of room, grow the buffer.\r
+      //\r
+      TempPtr = AllocateZeroPool (\r
+                  sizeof (PEI_CORE_FV_HANDLE) * (PrivateData->MaxFvCount + FV_GROWTH_STEP)\r
+                  );\r
+      ASSERT (TempPtr != NULL);\r
+      CopyMem (\r
+        TempPtr,\r
+        PrivateData->Fv,\r
+        sizeof (PEI_CORE_FV_HANDLE) * PrivateData->MaxFvCount\r
+        );\r
+      PrivateData->Fv = TempPtr;\r
+      PrivateData->MaxFvCount = PrivateData->MaxFvCount + FV_GROWTH_STEP;\r
     }\r
 \r
     //\r
@@ -627,17 +651,17 @@ FirmwareVolmeInfoPpiNotifyCallback (
     PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = FvInfo2Ppi.AuthenticationStatus;\r
     CurFvCount = PrivateData->FvCount;\r
     DEBUG ((\r
-      EFI_D_INFO, \r
-      "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n", \r
+      EFI_D_INFO,\r
+      "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",\r
       (UINT32) CurFvCount,\r
-      (VOID *) FvInfo2Ppi.FvInfo, \r
+      (VOID *) FvInfo2Ppi.FvInfo,\r
       FvInfo2Ppi.FvInfoSize,\r
       FvHandle\r
-      ));    \r
+      ));\r
     PrivateData->FvCount ++;\r
 \r
     //\r
-    // Scan and process the new discoveried FV for EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE \r
+    // Scan and process the new discovered FV for EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE\r
     //\r
     FileHandle = NULL;\r
     do {\r
@@ -662,17 +686,17 @@ FirmwareVolmeInfoPpiNotifyCallback (
             continue;\r
           }\r
         }\r
-        \r
+\r
         DEBUG ((EFI_D_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));\r
         ProcessFvFile (PrivateData, &PrivateData->Fv[CurFvCount], FileHandle);\r
       }\r
     } while (FileHandle != NULL);\r
   } else {\r
     DEBUG ((EFI_D_ERROR, "Fail to process FV %p because no corresponding EFI_FIRMWARE_VOLUME_PPI is found!\n", FvInfo2Ppi.FvInfo));\r
-    \r
+\r
     AddUnknownFormatFvInfo (PrivateData, &FvInfo2Ppi);\r
   }\r
-  \r
+\r
   return EFI_SUCCESS;\r
 }\r
 \r
@@ -685,7 +709,7 @@ FirmwareVolmeInfoPpiNotifyCallback (
 \r
   @return TRUE      The GuidedSectionGuid could be identified, and the pointer to\r
                     the Guided Section Extraction Ppi will be returned to *GuidedSectionExtraction.\r
-  @return FALSE     The GuidedSectionGuid could not be identified, or \r
+  @return FALSE     The GuidedSectionGuid could not be identified, or\r
                     the Guided Section Extraction Ppi has not been installed yet.\r
 \r
 **/\r
@@ -726,10 +750,10 @@ VerifyGuidedSectionGuid (
 }\r
 \r
 /**\r
-  Go through the file to search SectionType section. \r
-  Search within encapsulation sections (compression and GUIDed) recursively, \r
+  Go through the file to search SectionType section.\r
+  Search within encapsulation sections (compression and GUIDed) recursively,\r
   until the match section is found.\r
-  \r
+\r
   @param PeiServices       An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
   @param SectionType       Filter to find only section of this type.\r
   @param SectionInstance   Pointer to the filter to find the specific instance of section.\r
@@ -848,8 +872,8 @@ ProcessSection (
                      PeiServices,\r
                      SectionType,\r
                      SectionInstance,\r
-                     PpiOutput, \r
-                     PpiOutputSize, \r
+                     PpiOutput,\r
+                     PpiOutputSize,\r
                      &TempOutputBuffer,\r
                      &TempAuthenticationStatus,\r
                      IsFfs3Fv\r
@@ -932,8 +956,8 @@ ProcessSection (
                      PeiServices,\r
                      SectionType,\r
                      SectionInstance,\r
-                     PpiOutput, \r
-                     PpiOutputSize, \r
+                     PpiOutput,\r
+                     PpiOutputSize,\r
                      &TempOutputBuffer,\r
                      &TempAuthenticationStatus,\r
                      IsFfs3Fv\r
@@ -961,7 +985,7 @@ ProcessSection (
     ParsedLength += SectionLength;\r
     Section = (EFI_COMMON_SECTION_HEADER *)((UINT8 *)Section + SectionLength);\r
   }\r
-  \r
+\r
   return EFI_NOT_FOUND;\r
 }\r
 \r
@@ -989,12 +1013,12 @@ PeiFfsFindSectionData (
   )\r
 {\r
   PEI_CORE_FV_HANDLE           *CoreFvHandle;\r
-  \r
+\r
   CoreFvHandle = FileHandleToVolume (FileHandle);\r
   if ((CoreFvHandle == NULL) || (CoreFvHandle->FvPpi == NULL)) {\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   return CoreFvHandle->FvPpi->FindSectionByType (CoreFvHandle->FvPpi, SectionType, FileHandle, SectionData);\r
 }\r
 \r
@@ -1024,7 +1048,7 @@ PeiFfsFindSectionData3 (
   )\r
 {\r
   PEI_CORE_FV_HANDLE           *CoreFvHandle;\r
-  \r
+\r
   CoreFvHandle = FileHandleToVolume (FileHandle);\r
   if ((CoreFvHandle == NULL) || (CoreFvHandle->FvPpi == NULL)) {\r
     return EFI_NOT_FOUND;\r
@@ -1067,22 +1091,13 @@ PeiFfsFindNextFile (
   )\r
 {\r
   PEI_CORE_FV_HANDLE      *CoreFvHandle;\r
-  \r
+\r
   CoreFvHandle = FvHandleToCoreHandle (FvHandle);\r
-  \r
-  //\r
-  // To make backward compatiblity, if can not find corresponding the handle of FV\r
-  // then treat FV as build-in FFS2/FFS3 format and memory mapped FV that FV handle is pointed\r
-  // to the address of first byte of FV.\r
-  //\r
-  if ((CoreFvHandle == NULL) && FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {\r
-    return FindFileEx (FvHandle, NULL, SearchType, FileHandle, NULL);\r
-  } \r
-  \r
+\r
   if ((CoreFvHandle == NULL) || CoreFvHandle->FvPpi == NULL) {\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   return CoreFvHandle->FvPpi->FindFileByType (CoreFvHandle->FvPpi, SearchType, FvHandle, FileHandle);\r
 }\r
 \r
@@ -1100,7 +1115,7 @@ PeiFfsFindNextFile (
   @retval EFI_SUCCESS            The volume was found.\r
 \r
 **/\r
-EFI_STATUS \r
+EFI_STATUS\r
 EFIAPI\r
 PeiFfsFindNextVolume (\r
   IN CONST EFI_PEI_SERVICES         **PeiServices,\r
@@ -1110,21 +1125,21 @@ PeiFfsFindNextVolume (
 {\r
   PEI_CORE_INSTANCE  *Private;\r
   PEI_CORE_FV_HANDLE *CoreFvHandle;\r
-  \r
+\r
   if (VolumeHandle == NULL) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   Private = PEI_CORE_INSTANCE_FROM_PS_THIS (PeiServices);\r
-  \r
+\r
   CoreFvHandle = FindNextCoreFvHandle (Private, Instance);\r
   if (CoreFvHandle == NULL) {\r
     *VolumeHandle = NULL;\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   *VolumeHandle = CoreFvHandle->FvHandle;\r
-  \r
+\r
   return EFI_SUCCESS;\r
 }\r
 \r
@@ -1134,7 +1149,7 @@ PeiFfsFindNextVolume (
 \r
   @param FileName        A pointer to the name of the file to find within the firmware volume.\r
   @param VolumeHandle    The firmware volume to search\r
-  @param FileHandle      Upon exit, points to the found file's handle \r
+  @param FileHandle      Upon exit, points to the found file's handle\r
                          or NULL if it could not be found.\r
 \r
   @retval EFI_SUCCESS            File was found.\r
@@ -1143,7 +1158,7 @@ PeiFfsFindNextVolume (
 \r
 **/\r
 EFI_STATUS\r
-EFIAPI \r
+EFIAPI\r
 PeiFfsFindFileByName (\r
   IN  CONST EFI_GUID        *FileName,\r
   IN  EFI_PEI_FV_HANDLE     VolumeHandle,\r
@@ -1151,16 +1166,16 @@ PeiFfsFindFileByName (
   )\r
 {\r
   PEI_CORE_FV_HANDLE            *CoreFvHandle;\r
-  \r
+\r
   if ((VolumeHandle == NULL) || (FileName == NULL) || (FileHandle == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   CoreFvHandle = FvHandleToCoreHandle (VolumeHandle);\r
   if ((CoreFvHandle == NULL) || (CoreFvHandle->FvPpi == NULL)) {\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   return CoreFvHandle->FvPpi->FindFileByName (CoreFvHandle->FvPpi, FileName, &VolumeHandle, FileHandle);\r
 }\r
 \r
@@ -1176,14 +1191,14 @@ PeiFfsFindFileByName (
 \r
 **/\r
 EFI_STATUS\r
-EFIAPI \r
+EFIAPI\r
 PeiFfsGetFileInfo (\r
   IN EFI_PEI_FILE_HANDLE  FileHandle,\r
   OUT EFI_FV_FILE_INFO    *FileInfo\r
   )\r
 {\r
   PEI_CORE_FV_HANDLE          *CoreFvHandle;\r
-  \r
+\r
   if ((FileHandle == NULL) || (FileInfo == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
@@ -1211,14 +1226,14 @@ PeiFfsGetFileInfo (
 \r
 **/\r
 EFI_STATUS\r
-EFIAPI \r
+EFIAPI\r
 PeiFfsGetFileInfo2 (\r
   IN EFI_PEI_FILE_HANDLE  FileHandle,\r
   OUT EFI_FV_FILE_INFO2   *FileInfo\r
   )\r
 {\r
   PEI_CORE_FV_HANDLE          *CoreFvHandle;\r
-  \r
+\r
   if ((FileHandle == NULL) || (FileInfo == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
@@ -1260,40 +1275,102 @@ PeiFfsGetFileInfo2 (
 \r
 **/\r
 EFI_STATUS\r
-EFIAPI \r
+EFIAPI\r
 PeiFfsGetVolumeInfo (\r
   IN EFI_PEI_FV_HANDLE  VolumeHandle,\r
   OUT EFI_FV_INFO       *VolumeInfo\r
   )\r
 {\r
   PEI_CORE_FV_HANDLE                     *CoreHandle;\r
-  \r
+\r
   if ((VolumeInfo == NULL) || (VolumeHandle == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   CoreHandle = FvHandleToCoreHandle (VolumeHandle);\r
-  \r
+\r
   if ((CoreHandle == NULL) || (CoreHandle->FvPpi == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   return CoreHandle->FvPpi->GetVolumeInfo (CoreHandle->FvPpi, VolumeHandle, VolumeInfo);\r
 }\r
 \r
 /**\r
-  Get Fv image from the FV type file, then install FV INFO(2) ppi, Build FV hob.\r
+  Find USED_SIZE FV_EXT_TYPE entry in FV extension header and get the FV used size.\r
+\r
+  @param[in]  FvHeader      Pointer to FV header.\r
+  @param[out] FvUsedSize    Pointer to FV used size returned,\r
+                            only valid if USED_SIZE FV_EXT_TYPE entry is found.\r
+  @param[out] EraseByte     Pointer to erase byte returned,\r
+                            only valid if USED_SIZE FV_EXT_TYPE entry is found.\r
+\r
+  @retval TRUE              USED_SIZE FV_EXT_TYPE entry is found,\r
+                            FV used size and erase byte are returned.\r
+  @retval FALSE             No USED_SIZE FV_EXT_TYPE entry found.\r
+\r
+**/\r
+BOOLEAN\r
+GetFvUsedSize (\r
+  IN EFI_FIRMWARE_VOLUME_HEADER     *FvHeader,\r
+  OUT UINT32                        *FvUsedSize,\r
+  OUT UINT8                         *EraseByte\r
+  )\r
+{\r
+  UINT16                                        ExtHeaderOffset;\r
+  EFI_FIRMWARE_VOLUME_EXT_HEADER                *ExtHeader;\r
+  EFI_FIRMWARE_VOLUME_EXT_ENTRY                 *ExtEntryList;\r
+  EFI_FIRMWARE_VOLUME_EXT_ENTRY_USED_SIZE_TYPE  *ExtEntryUsedSize;\r
+\r
+  ExtHeaderOffset = ReadUnaligned16 (&FvHeader->ExtHeaderOffset);\r
+  if (ExtHeaderOffset != 0) {\r
+    ExtHeader    = (EFI_FIRMWARE_VOLUME_EXT_HEADER *) ((UINT8 *) FvHeader + ExtHeaderOffset);\r
+    ExtEntryList = (EFI_FIRMWARE_VOLUME_EXT_ENTRY *) (ExtHeader + 1);\r
+    while ((UINTN) ExtEntryList < ((UINTN) ExtHeader + ReadUnaligned32 (&ExtHeader->ExtHeaderSize))) {\r
+      if (ReadUnaligned16 (&ExtEntryList->ExtEntryType) == EFI_FV_EXT_TYPE_USED_SIZE_TYPE) {\r
+        //\r
+        // USED_SIZE FV_EXT_TYPE entry is found.\r
+        //\r
+        ExtEntryUsedSize = (EFI_FIRMWARE_VOLUME_EXT_ENTRY_USED_SIZE_TYPE *) ExtEntryList;\r
+        *FvUsedSize = ReadUnaligned32 (&ExtEntryUsedSize->UsedSize);\r
+        if ((ReadUnaligned32 (&FvHeader->Attributes) & EFI_FVB2_ERASE_POLARITY) != 0) {\r
+          *EraseByte = 0xFF;\r
+        } else {\r
+          *EraseByte = 0;\r
+        }\r
+        DEBUG ((\r
+          DEBUG_INFO,\r
+          "FV at 0x%x has 0x%x used size, and erase byte is 0x%02x\n",\r
+          FvHeader,\r
+          *FvUsedSize,\r
+          *EraseByte\r
+          ));\r
+        return TRUE;\r
+      }\r
+      ExtEntryList = (EFI_FIRMWARE_VOLUME_EXT_ENTRY *)\r
+                     ((UINT8 *) ExtEntryList + ReadUnaligned16 (&ExtEntryList->ExtEntrySize));\r
+    }\r
+  }\r
+\r
+  //\r
+  // No USED_SIZE FV_EXT_TYPE entry found.\r
+  //\r
+  return FALSE;\r
+}\r
+\r
+/**\r
+  Get FV image(s) from the FV type file, then install FV INFO(2) PPI, Build FV(2, 3) HOB.\r
 \r
   @param PrivateData          PeiCore's private data structure\r
-  @param ParentFvCoreHandle   Pointer of EFI_CORE_FV_HANDLE to parent Fv image that contain this Fv image.\r
-  @param ParentFvFileHandle   File handle of a Fv type file that contain this Fv image.\r
+  @param ParentFvCoreHandle   Pointer of EFI_CORE_FV_HANDLE to parent FV image that contain this FV image.\r
+  @param ParentFvFileHandle   File handle of a FV type file that contain this FV image.\r
 \r
   @retval EFI_NOT_FOUND         FV image can't be found.\r
   @retval EFI_SUCCESS           Successfully to process it.\r
   @retval EFI_OUT_OF_RESOURCES  Can not allocate page when aligning FV image\r
   @retval EFI_SECURITY_VIOLATION Image is illegal\r
   @retval Others                Can not find EFI_SECTION_FIRMWARE_VOLUME_IMAGE section\r
-  \r
+\r
 **/\r
 EFI_STATUS\r
 ProcessFvFile (\r
@@ -1313,7 +1390,10 @@ ProcessFvFile (
   EFI_FV_FILE_INFO              FileInfo;\r
   UINT64                        FvLength;\r
   UINT32                        AuthenticationStatus;\r
-  \r
+  UINT32                        FvUsedSize;\r
+  UINT8                         EraseByte;\r
+  UINTN                         Index;\r
+\r
   //\r
   // Check if this EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE file has already\r
   // been extracted.\r
@@ -1332,114 +1412,168 @@ ProcessFvFile (
 \r
   ParentFvHandle = ParentFvCoreHandle->FvHandle;\r
   ParentFvPpi    = ParentFvCoreHandle->FvPpi;\r
-  \r
-  //\r
-  // Find FvImage in FvFile\r
-  //\r
-  AuthenticationStatus = 0;\r
-  if ((ParentFvPpi->Signature == EFI_PEI_FIRMWARE_VOLUME_PPI_SIGNATURE) &&\r
-      (ParentFvPpi->Revision == EFI_PEI_FIRMWARE_VOLUME_PPI_REVISION)) {\r
-    Status = ParentFvPpi->FindSectionByType2 (\r
-                            ParentFvPpi,\r
-                            EFI_SECTION_FIRMWARE_VOLUME_IMAGE,\r
-                            0,\r
-                            ParentFvFileHandle,\r
-                            (VOID **)&FvHeader,\r
-                            &AuthenticationStatus\r
-                            );\r
-  } else {\r
-    Status = ParentFvPpi->FindSectionByType (\r
-                            ParentFvPpi,\r
-                            EFI_SECTION_FIRMWARE_VOLUME_IMAGE,\r
-                            ParentFvFileHandle,\r
-                            (VOID **)&FvHeader\r
-                            );\r
-  }\r
-  if (EFI_ERROR (Status)) {\r
-    return Status;\r
-  }\r
 \r
-  Status = VerifyPeim (PrivateData, ParentFvHandle, ParentFvFileHandle, AuthenticationStatus);\r
-  if (Status == EFI_SECURITY_VIOLATION) {\r
-    return Status;\r
-  }\r
+  Status = EFI_SUCCESS;\r
 \r
   //\r
-  // If EFI_FVB2_WEAK_ALIGNMENT is set in the volume header then the first byte of the volume\r
-  // can be aligned on any power-of-two boundary. A weakly aligned volume can not be moved from\r
-  // its initial linked location and maintain its alignment.\r
+  // Find FvImage(s) in FvFile\r
   //\r
-  if ((ReadUnaligned32 (&FvHeader->Attributes) & EFI_FVB2_WEAK_ALIGNMENT) != EFI_FVB2_WEAK_ALIGNMENT) {\r
-    //\r
-    // FvAlignment must be greater than or equal to 8 bytes of the minimum FFS alignment value.\r
-    //\r
-    FvAlignment = 1 << ((ReadUnaligned32 (&FvHeader->Attributes) & EFI_FVB2_ALIGNMENT) >> 16);\r
-    if (FvAlignment < 8) {\r
-      FvAlignment = 8;\r
+  Index = 0;\r
+  do {\r
+    AuthenticationStatus = 0;\r
+    if ((ParentFvPpi->Signature == EFI_PEI_FIRMWARE_VOLUME_PPI_SIGNATURE) &&\r
+        (ParentFvPpi->Revision == EFI_PEI_FIRMWARE_VOLUME_PPI_REVISION)) {\r
+      Status = ParentFvPpi->FindSectionByType2 (\r
+                              ParentFvPpi,\r
+                              EFI_SECTION_FIRMWARE_VOLUME_IMAGE,\r
+                              Index,\r
+                              ParentFvFileHandle,\r
+                              (VOID **)&FvHeader,\r
+                              &AuthenticationStatus\r
+                              );\r
+    } else {\r
+      //\r
+      // Old FvPpi has no parameter to input SearchInstance,\r
+      // only one instance is supported.\r
+      //\r
+      if (Index > 0) {\r
+        break;\r
+      }\r
+      Status = ParentFvPpi->FindSectionByType (\r
+                              ParentFvPpi,\r
+                              EFI_SECTION_FIRMWARE_VOLUME_IMAGE,\r
+                              ParentFvFileHandle,\r
+                              (VOID **)&FvHeader\r
+                              );\r
+    }\r
+    if (EFI_ERROR (Status)) {\r
+      break;\r
+    }\r
+\r
+    Status = VerifyPeim (PrivateData, ParentFvHandle, ParentFvFileHandle, AuthenticationStatus);\r
+    if (Status == EFI_SECURITY_VIOLATION) {\r
+      break;\r
     }\r
 \r
     //\r
-    // Check FvImage\r
+    // If EFI_FVB2_WEAK_ALIGNMENT is set in the volume header then the first byte of the volume\r
+    // can be aligned on any power-of-two boundary. A weakly aligned volume can not be moved from\r
+    // its initial linked location and maintain its alignment.\r
     //\r
-    if ((UINTN) FvHeader % FvAlignment != 0) {\r
-      FvLength    = ReadUnaligned64 (&FvHeader->FvLength);\r
-      NewFvBuffer = AllocateAlignedPages (EFI_SIZE_TO_PAGES ((UINT32) FvLength), FvAlignment);\r
-      if (NewFvBuffer == NULL) {\r
-        return EFI_OUT_OF_RESOURCES;\r
+    if ((ReadUnaligned32 (&FvHeader->Attributes) & EFI_FVB2_WEAK_ALIGNMENT) != EFI_FVB2_WEAK_ALIGNMENT) {\r
+      //\r
+      // FvAlignment must be greater than or equal to 8 bytes of the minimum FFS alignment value.\r
+      //\r
+      FvAlignment = 1 << ((ReadUnaligned32 (&FvHeader->Attributes) & EFI_FVB2_ALIGNMENT) >> 16);\r
+      if (FvAlignment < 8) {\r
+        FvAlignment = 8;\r
+      }\r
+\r
+      DEBUG ((\r
+        DEBUG_INFO,\r
+        "%a() FV at 0x%x, FvAlignment required is 0x%x\n",\r
+        __FUNCTION__,\r
+        FvHeader,\r
+        FvAlignment\r
+        ));\r
+\r
+      //\r
+      // Check FvImage alignment.\r
+      //\r
+      if ((UINTN) FvHeader % FvAlignment != 0) {\r
+        FvLength    = ReadUnaligned64 (&FvHeader->FvLength);\r
+        NewFvBuffer = AllocateAlignedPages (EFI_SIZE_TO_PAGES ((UINT32) FvLength), FvAlignment);\r
+        if (NewFvBuffer == NULL) {\r
+          Status = EFI_OUT_OF_RESOURCES;\r
+          break;\r
+        }\r
+        if (GetFvUsedSize (FvHeader, &FvUsedSize, &EraseByte)) {\r
+          //\r
+          // Copy the used bytes and fill the rest with the erase value.\r
+          //\r
+          CopyMem (NewFvBuffer, FvHeader, (UINTN) FvUsedSize);\r
+          SetMem (\r
+            (UINT8 *) NewFvBuffer + FvUsedSize,\r
+            (UINTN) (FvLength - FvUsedSize),\r
+            EraseByte\r
+            );\r
+        } else {\r
+          CopyMem (NewFvBuffer, FvHeader, (UINTN) FvLength);\r
+        }\r
+        FvHeader = (EFI_FIRMWARE_VOLUME_HEADER*) NewFvBuffer;\r
       }\r
-      CopyMem (NewFvBuffer, FvHeader, (UINTN) FvLength);\r
-      FvHeader = (EFI_FIRMWARE_VOLUME_HEADER*) NewFvBuffer;\r
     }\r
-  }\r
 \r
-  Status = ParentFvPpi->GetVolumeInfo (ParentFvPpi, ParentFvHandle, &ParentFvImageInfo);\r
-  ASSERT_EFI_ERROR (Status);\r
-  \r
-  Status = ParentFvPpi->GetFileInfo (ParentFvPpi, ParentFvFileHandle, &FileInfo);\r
-  ASSERT_EFI_ERROR (Status);\r
-  \r
-  //\r
-  // Install FvInfo(2) Ppi\r
-  // NOTE: FvInfo2 must be installed before FvInfo so that recursive processing of encapsulated\r
-  // FVs inherit the proper AuthenticationStatus.\r
-  //\r
-  PeiServicesInstallFvInfo2Ppi(\r
-    &FvHeader->FileSystemGuid,\r
-    (VOID**)FvHeader,\r
-    (UINT32)FvHeader->FvLength,\r
-    &ParentFvImageInfo.FvName,\r
-    &FileInfo.FileName,\r
-    AuthenticationStatus\r
-    );\r
+    Status = ParentFvPpi->GetVolumeInfo (ParentFvPpi, ParentFvHandle, &ParentFvImageInfo);\r
+    ASSERT_EFI_ERROR (Status);\r
 \r
-  PeiServicesInstallFvInfoPpi (\r
-    &FvHeader->FileSystemGuid,\r
-    (VOID**) FvHeader,\r
-    (UINT32) FvHeader->FvLength,\r
-    &ParentFvImageInfo.FvName,\r
-    &FileInfo.FileName\r
-    );\r
+    Status = ParentFvPpi->GetFileInfo (ParentFvPpi, ParentFvFileHandle, &FileInfo);\r
+    ASSERT_EFI_ERROR (Status);\r
 \r
-  //\r
-  // Inform the extracted FvImage to Fv HOB consumer phase, i.e. DXE phase\r
-  //\r
-  BuildFvHob (\r
-    (EFI_PHYSICAL_ADDRESS) (UINTN) FvHeader,\r
-    FvHeader->FvLength\r
-    );\r
+    //\r
+    // Install FvInfo(2) Ppi\r
+    // NOTE: FvInfo2 must be installed before FvInfo so that recursive processing of encapsulated\r
+    // FVs inherit the proper AuthenticationStatus.\r
+    //\r
+    PeiServicesInstallFvInfo2Ppi(\r
+      &FvHeader->FileSystemGuid,\r
+      (VOID**)FvHeader,\r
+      (UINT32)FvHeader->FvLength,\r
+      &ParentFvImageInfo.FvName,\r
+      &FileInfo.FileName,\r
+      AuthenticationStatus\r
+      );\r
+\r
+    PeiServicesInstallFvInfoPpi (\r
+      &FvHeader->FileSystemGuid,\r
+      (VOID**) FvHeader,\r
+      (UINT32) FvHeader->FvLength,\r
+      &ParentFvImageInfo.FvName,\r
+      &FileInfo.FileName\r
+      );\r
 \r
-  //\r
-  // Makes the encapsulated volume show up in DXE phase to skip processing of\r
-  // encapsulated file again.\r
-  //\r
-  BuildFv2Hob (\r
-    (EFI_PHYSICAL_ADDRESS) (UINTN) FvHeader,\r
-    FvHeader->FvLength,\r
-    &ParentFvImageInfo.FvName,\r
-    &FileInfo.FileName\r
-    );\r
+    //\r
+    // Expose the extracted FvImage to the FV HOB consumer phase, i.e. DXE phase\r
+    //\r
+    BuildFvHob (\r
+      (EFI_PHYSICAL_ADDRESS) (UINTN) FvHeader,\r
+      FvHeader->FvLength\r
+      );\r
 \r
-  return EFI_SUCCESS;\r
+    //\r
+    // Makes the encapsulated volume show up in DXE phase to skip processing of\r
+    // encapsulated file again.\r
+    //\r
+    BuildFv2Hob (\r
+      (EFI_PHYSICAL_ADDRESS) (UINTN) FvHeader,\r
+      FvHeader->FvLength,\r
+      &ParentFvImageInfo.FvName,\r
+      &FileInfo.FileName\r
+      );\r
+\r
+    //\r
+    // Build FV3 HOB with authentication status to be propagated to DXE.\r
+    //\r
+    BuildFv3Hob (\r
+      (EFI_PHYSICAL_ADDRESS) (UINTN) FvHeader,\r
+      FvHeader->FvLength,\r
+      AuthenticationStatus,\r
+      TRUE,\r
+      &ParentFvImageInfo.FvName,\r
+      &FileInfo.FileName\r
+      );\r
+\r
+    Index++;\r
+  } while (TRUE);\r
+\r
+  if (Index > 0) {\r
+    //\r
+    // At least one FvImage has been processed successfully.\r
+    //\r
+    return EFI_SUCCESS;\r
+  } else {\r
+    return Status;\r
+  }\r
 }\r
 \r
 /**\r
@@ -1452,15 +1586,15 @@ ProcessFvFile (
   buffer which contains the necessary information for creating\r
   the firmware volume handle. Normally, these values are derived\r
   from the EFI_FIRMWARE_VOLUME_INFO_PPI.\r
-  \r
-  \r
+\r
+\r
   @param This                   Points to this instance of the\r
                                 EFI_PEI_FIRMWARE_VOLUME_PPI.\r
   @param Buffer                 Points to the start of the buffer.\r
   @param BufferSize             Size of the buffer.\r
   @param FvHandle               Points to the returned firmware volume\r
                                 handle. The firmware volume handle must\r
-                                be unique within the system. \r
+                                be unique within the system.\r
 \r
   @retval EFI_SUCCESS           Firmware volume handle created.\r
   @retval EFI_VOLUME_CORRUPTED  Volume was corrupt.\r
@@ -1476,19 +1610,19 @@ PeiFfsFvPpiProcessVolume (
   )\r
 {\r
   EFI_STATUS          Status;\r
-  \r
+\r
   ASSERT (FvHandle != NULL);\r
-  \r
+\r
   if (Buffer == NULL) {\r
     return EFI_VOLUME_CORRUPTED;\r
   }\r
-  \r
+\r
   //\r
   // The build-in EFI_PEI_FIRMWARE_VOLUME_PPI for FFS2/FFS3 support memory-mapped\r
-  // FV image and the handle is pointed to Fv image's buffer.\r
+  // FV image and the handle is pointed to FV image's buffer.\r
   //\r
   *FvHandle = (EFI_PEI_FV_HANDLE) Buffer;\r
-  \r
+\r
   //\r
   // Do verify for given FV buffer.\r
   //\r
@@ -1499,12 +1633,12 @@ PeiFfsFvPpiProcessVolume (
   }\r
 \r
   return EFI_SUCCESS;\r
-}  \r
+}\r
 \r
 /**\r
   Finds the next file of the specified type.\r
 \r
-  This service enables PEI modules to discover additional firmware files. \r
+  This service enables PEI modules to discover additional firmware files.\r
   The FileHandle must be unique within the system.\r
 \r
   @param This           Points to this instance of the\r
@@ -1531,13 +1665,13 @@ PeiFfsFvPpiFindFileByType (
   IN        EFI_PEI_FV_HANDLE           FvHandle,\r
   IN OUT    EFI_PEI_FILE_HANDLE         *FileHandle\r
   )\r
-{ \r
+{\r
   return FindFileEx (FvHandle, NULL, SearchType, FileHandle, NULL);\r
 }\r
 \r
 /**\r
-  Find a file within a volume by its name. \r
-  \r
+  Find a file within a volume by its name.\r
+\r
   This service searches for files with a specific name, within\r
   either the specified firmware volume or all firmware volumes.\r
 \r
@@ -1566,28 +1700,28 @@ PeiFfsFvPpiFindFileByName (
   IN  CONST  EFI_PEI_FIRMWARE_VOLUME_PPI *This,\r
   IN  CONST  EFI_GUID                    *FileName,\r
   IN  EFI_PEI_FV_HANDLE                  *FvHandle,\r
-  OUT EFI_PEI_FILE_HANDLE                *FileHandle  \r
+  OUT EFI_PEI_FILE_HANDLE                *FileHandle\r
   )\r
 {\r
   EFI_STATUS        Status;\r
   PEI_CORE_INSTANCE *PrivateData;\r
   UINTN             Index;\r
-  \r
+\r
   if ((FvHandle == NULL) || (FileName == NULL) || (FileHandle == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   if (*FvHandle != NULL) {\r
     Status = FindFileEx (*FvHandle, FileName, 0, FileHandle, NULL);\r
     if (Status == EFI_NOT_FOUND) {\r
       *FileHandle = NULL;\r
     }\r
-  } else {   \r
+  } else {\r
     //\r
     // If *FvHandle = NULL, so search all FV for given filename\r
     //\r
     Status = EFI_NOT_FOUND;\r
-    \r
+\r
     PrivateData = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer());\r
     for (Index = 0; Index < PrivateData->FvCount; Index ++) {\r
       //\r
@@ -1602,17 +1736,17 @@ PeiFfsFvPpiFindFileByName (
       }\r
     }\r
   }\r
-  \r
-  return Status;  \r
-}  \r
+\r
+  return Status;\r
+}\r
 \r
 /**\r
   Returns information about a specific file.\r
 \r
   This function returns information about a specific\r
   file, including its file name, type, attributes, starting\r
-  address and size. \r
-   \r
+  address and size.\r
+\r
   @param This                     Points to this instance of the\r
                                   EFI_PEI_FIRMWARE_VOLUME_PPI.\r
   @param FileHandle               Handle of the file.\r
@@ -1623,13 +1757,13 @@ PeiFfsFvPpiFindFileByName (
   @retval EFI_INVALID_PARAMETER   If FileHandle does not\r
                                   represent a valid file.\r
   @retval EFI_INVALID_PARAMETER   If FileInfo is NULL.\r
-  \r
-**/ \r
+\r
+**/\r
 EFI_STATUS\r
 EFIAPI\r
 PeiFfsFvPpiGetFileInfo (\r
-  IN  CONST EFI_PEI_FIRMWARE_VOLUME_PPI   *This, \r
-  IN        EFI_PEI_FILE_HANDLE           FileHandle, \r
+  IN  CONST EFI_PEI_FIRMWARE_VOLUME_PPI   *This,\r
+  IN        EFI_PEI_FILE_HANDLE           FileHandle,\r
   OUT       EFI_FV_FILE_INFO              *FileInfo\r
   )\r
 {\r
@@ -1660,14 +1794,14 @@ PeiFfsFvPpiGetFileInfo (
   }\r
 \r
   //\r
-  // Get FileState which is the highest bit of the State \r
+  // Get FileState which is the highest bit of the State\r
   //\r
   FileState = GetFileState (ErasePolarity, (EFI_FFS_FILE_HEADER*)FileHandle);\r
 \r
   switch (FileState) {\r
     case EFI_FILE_DATA_VALID:\r
     case EFI_FILE_MARKED_FOR_UPDATE:\r
-      break;  \r
+      break;\r
     default:\r
       return EFI_INVALID_PARAMETER;\r
     }\r
@@ -1716,8 +1850,8 @@ PeiFfsFvPpiGetFileInfo (
 EFI_STATUS\r
 EFIAPI\r
 PeiFfsFvPpiGetFileInfo2 (\r
-  IN  CONST EFI_PEI_FIRMWARE_VOLUME_PPI   *This, \r
-  IN        EFI_PEI_FILE_HANDLE           FileHandle, \r
+  IN  CONST EFI_PEI_FIRMWARE_VOLUME_PPI   *This,\r
+  IN        EFI_PEI_FILE_HANDLE           FileHandle,\r
   OUT       EFI_FV_FILE_INFO2             *FileInfo\r
   )\r
 {\r
@@ -1746,7 +1880,7 @@ PeiFfsFvPpiGetFileInfo2 (
 \r
 /**\r
   This function returns information about the firmware volume.\r
-  \r
+\r
   @param This                     Points to this instance of the\r
                                   EFI_PEI_FIRMWARE_VOLUME_PPI.\r
   @param FvHandle                 Handle to the firmware handle.\r
@@ -1757,12 +1891,12 @@ PeiFfsFvPpiGetFileInfo2 (
   @retval EFI_INVALID_PARAMETER   FvHandle does not indicate a valid\r
                                   firmware volume or VolumeInfo is NULL.\r
 \r
-**/   \r
+**/\r
 EFI_STATUS\r
 EFIAPI\r
 PeiFfsFvPpiGetVolumeInfo (\r
-  IN  CONST  EFI_PEI_FIRMWARE_VOLUME_PPI   *This, \r
-  IN  EFI_PEI_FV_HANDLE                    FvHandle, \r
+  IN  CONST  EFI_PEI_FIRMWARE_VOLUME_PPI   *This,\r
+  IN  EFI_PEI_FV_HANDLE                    FvHandle,\r
   OUT EFI_FV_INFO                          *VolumeInfo\r
   )\r
 {\r
@@ -1772,16 +1906,16 @@ PeiFfsFvPpiGetVolumeInfo (
   if ((VolumeInfo == NULL) || (FvHandle == NULL)) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   //\r
-  // VolumeHandle may not align at 8 byte, \r
-  // but FvLength is UINT64 type, which requires FvHeader align at least 8 byte. \r
+  // VolumeHandle may not align at 8 byte,\r
+  // but FvLength is UINT64 type, which requires FvHeader align at least 8 byte.\r
   // So, Copy FvHeader into the local FvHeader structure.\r
   //\r
   CopyMem (&FwVolHeader, FvHandle, sizeof (EFI_FIRMWARE_VOLUME_HEADER));\r
 \r
   //\r
-  // Check Fv Image Signature\r
+  // Check FV Image Signature\r
   //\r
   if (FwVolHeader.Signature != EFI_FVH_SIGNATURE) {\r
     return EFI_INVALID_PARAMETER;\r
@@ -1797,16 +1931,16 @@ PeiFfsFvPpiGetVolumeInfo (
     FwVolExHeaderInfo = (EFI_FIRMWARE_VOLUME_EXT_HEADER*)(((UINT8 *)FvHandle) + FwVolHeader.ExtHeaderOffset);\r
     CopyMem (&VolumeInfo->FvName, &FwVolExHeaderInfo->FvName, sizeof(EFI_GUID));\r
   }\r
-  \r
-  return EFI_SUCCESS;  \r
-}    \r
+\r
+  return EFI_SUCCESS;\r
+}\r
 \r
 /**\r
   Find the next matching section in the firmware file.\r
-  \r
+\r
   This service enables PEI modules to discover sections\r
   of a given type within a valid file.\r
-  \r
+\r
   @param This             Points to this instance of the\r
                           EFI_PEI_FIRMWARE_VOLUME_PPI.\r
   @param SearchType       A filter to find only sections of this\r
@@ -1815,7 +1949,7 @@ PeiFfsFvPpiGetVolumeInfo (
                           search.\r
   @param SectionData      Updated upon return to point to the\r
                           section found.\r
-  \r
+\r
   @retval EFI_SUCCESS     Section was found.\r
   @retval EFI_NOT_FOUND   Section of the specified type was not\r
                           found. SectionData contains NULL.\r
@@ -1911,8 +2045,8 @@ PeiFfsFvPpiFindSectionByType2 (
              GetPeiServicesTablePointer (),\r
              SearchType,\r
              &Instance,\r
-             Section, \r
-             FileSize, \r
+             Section,\r
+             FileSize,\r
              SectionData,\r
              &ExtractedAuthenticationStatus,\r
              FwVolInstance->IsFfs3Fv\r
@@ -1928,11 +2062,11 @@ PeiFfsFvPpiFindSectionByType2 (
 \r
 /**\r
   Convert the handle of FV to pointer of corresponding PEI_CORE_FV_HANDLE.\r
-  \r
+\r
   @param FvHandle   The handle of a FV.\r
-  \r
+\r
   @retval NULL if can not find.\r
-  @return Pointer of corresponding PEI_CORE_FV_HANDLE. \r
+  @return Pointer of corresponding PEI_CORE_FV_HANDLE.\r
 **/\r
 PEI_CORE_FV_HANDLE *\r
 FvHandleToCoreHandle (\r
@@ -1941,25 +2075,26 @@ FvHandleToCoreHandle (
 {\r
   UINTN             Index;\r
   PEI_CORE_INSTANCE *PrivateData;\r
-  \r
-  PrivateData = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer());  \r
+\r
+  PrivateData = PEI_CORE_INSTANCE_FROM_PS_THIS (GetPeiServicesTablePointer());\r
   for (Index = 0; Index < PrivateData->FvCount; Index ++) {\r
     if (FvHandle == PrivateData->Fv[Index].FvHandle) {\r
       return &PrivateData->Fv[Index];\r
     }\r
   }\r
-  \r
+\r
   return NULL;\r
-}  \r
+}\r
 \r
 /**\r
-  Get instance of PEI_CORE_FV_HANDLE for next volume according to given index.\r
-  \r
-  This routine also will install FvInfo ppi for FV hob in PI ways.\r
-  \r
+  Gets a PEI_CORE_FV_HANDLE instance for the next volume according to the given index.\r
+\r
+  This routine also will install an instance of the FvInfo PPI for the FV HOB\r
+  as defined in the PI specification.\r
+\r
   @param Private    Pointer of PEI_CORE_INSTANCE\r
-  @param Instance   The index of FV want to be searched.\r
-  \r
+  @param Instance   Index of the FV to search\r
+\r
   @return Instance of PEI_CORE_FV_HANDLE.\r
 **/\r
 PEI_CORE_FV_HANDLE *\r
@@ -1968,78 +2103,21 @@ FindNextCoreFvHandle (
   IN UINTN              Instance\r
   )\r
 {\r
-  UINTN                    Index;\r
-  BOOLEAN                  Match;\r
-  EFI_HOB_FIRMWARE_VOLUME  *FvHob;\r
-  \r
-  //\r
-  // Handle Framework FvHob and Install FvInfo Ppi for it.\r
-  //\r
-  if (FeaturePcdGet (PcdFrameworkCompatibilitySupport)) {\r
-    //\r
-    // Loop to search the wanted FirmwareVolume which supports FFS\r
-    //\r
-    FvHob = (EFI_HOB_FIRMWARE_VOLUME *)GetFirstHob (EFI_HOB_TYPE_FV);\r
-    while (FvHob != NULL) {\r
-      //\r
-      // Search whether FvHob has been installed into PeiCore's FV database.\r
-      // If found, no need install new FvInfoPpi for it.\r
-      //\r
-      for (Index = 0, Match = FALSE; Index < Private->FvCount; Index++) {\r
-        if ((EFI_PEI_FV_HANDLE)(UINTN)FvHob->BaseAddress == Private->Fv[Index].FvHeader) {\r
-          Match = TRUE;\r
-          break;\r
-        }\r
-      }\r
-      \r
-      //\r
-      // Search whether FvHob has been cached into PeiCore's Unknown FV database.\r
-      // If found, no need install new FvInfoPpi for it.\r
-      //\r
-      if (!Match) {\r
-        for (Index = 0; Index < Private->UnknownFvInfoCount; Index ++) {\r
-          if ((UINTN)FvHob->BaseAddress == (UINTN)Private->UnknownFvInfo[Index].FvInfo) {\r
-            Match = TRUE;\r
-            break;\r
-          }\r
-        }\r
-      }\r
-\r
-      //\r
-      // If the Fv in FvHob has not been installed into PeiCore's FV database and has\r
-      // not been cached into PeiCore's Unknown FV database, install a new FvInfoPpi\r
-      // for it then PeiCore will dispatch it in callback of FvInfoPpi.\r
-      //\r
-      if (!Match) {\r
-        PeiServicesInstallFvInfoPpi (\r
-          &(((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)FvHob->BaseAddress)->FileSystemGuid),\r
-          (VOID *)(UINTN)FvHob->BaseAddress,\r
-          (UINT32)FvHob->Length,\r
-          NULL,\r
-          NULL\r
-          );\r
-      }\r
-      \r
-      FvHob = (EFI_HOB_FIRMWARE_VOLUME *)GetNextHob (EFI_HOB_TYPE_FV, (VOID *)((UINTN)FvHob + FvHob->Header.HobLength)); \r
-    }\r
-  }\r
-\r
-  ASSERT (Private->FvCount <= PcdGet32 (PcdPeiCoreMaxFvSupported));\r
   if (Instance >= Private->FvCount) {\r
     return NULL;\r
   }\r
 \r
   return &Private->Fv[Instance];\r
-}  \r
+}\r
 \r
 /**\r
   After PeiCore image is shadowed into permanent memory, all build-in FvPpi should\r
-  be re-installed with the instance in permanent memory and all cached FvPpi pointers in \r
+  be re-installed with the instance in permanent memory and all cached FvPpi pointers in\r
   PrivateData->Fv[] array should be fixed up to be pointed to the one in permanent\r
   memory.\r
-  \r
+\r
   @param PrivateData   Pointer to PEI_CORE_INSTANCE.\r
-**/  \r
+**/\r
 VOID\r
 PeiReinitializeFv (\r
   IN  PEI_CORE_INSTANCE           *PrivateData\r
@@ -2072,7 +2150,7 @@ PeiReinitializeFv (
   //\r
   // Fixup all FvPpi pointers for the implementation in flash to permanent memory.\r
   //\r
-  for (Index = 0; Index < PcdGet32 (PcdPeiCoreMaxFvSupported); Index ++) {\r
+  for (Index = 0; Index < PrivateData->FvCount; Index ++) {\r
     if (PrivateData->Fv[Index].FvPpi == OldFfsFvPpi) {\r
       PrivateData->Fv[Index].FvPpi = &mPeiFfs2FwVol.Fv;\r
     }\r
@@ -2100,7 +2178,7 @@ PeiReinitializeFv (
   //\r
   // Fixup all FvPpi pointers for the implementation in flash to permanent memory.\r
   //\r
-  for (Index = 0; Index < PcdGet32 (PcdPeiCoreMaxFvSupported); Index ++) {\r
+  for (Index = 0; Index < PrivateData->FvCount; Index ++) {\r
     if (PrivateData->Fv[Index].FvPpi == OldFfsFvPpi) {\r
       PrivateData->Fv[Index].FvPpi = &mPeiFfs3FwVol.Fv;\r
     }\r
@@ -2108,18 +2186,19 @@ PeiReinitializeFv (
 }\r
 \r
 /**\r
-  Report the information for a new discoveried FV in unknown third-party format.\r
-  \r
-  If the EFI_PEI_FIRMWARE_VOLUME_PPI has not been installed for third-party FV format, but\r
-  the FV in this format has been discoveried, then this FV's information will be cached into\r
-  PEI_CORE_INSTANCE's UnknownFvInfo array.\r
-  Also a notification would be installed for unknown third-party FV format guid, if EFI_PEI_FIRMWARE_VOLUME_PPI\r
-  is installed later by platform's PEIM, the original unknown third-party FV will be processed by\r
+  Report the information for a newly discovered FV in an unknown format.\r
+\r
+  If the EFI_PEI_FIRMWARE_VOLUME_PPI has not been installed for a third-party FV format, but\r
+  the FV has been discovered, then the information of this FV will be cached into PEI_CORE_INSTANCE's\r
+  UnknownFvInfo array.\r
+\r
+  Also a notification would be installed for unknown FV format GUID, if EFI_PEI_FIRMWARE_VOLUME_PPI\r
+  is installed later by platform's PEIM, the original unknown FV will be processed by\r
   using new installed EFI_PEI_FIRMWARE_VOLUME_PPI.\r
-  \r
+\r
   @param PrivateData  Point to instance of PEI_CORE_INSTANCE\r
   @param FvInfo2Ppi   Point to FvInfo2 PPI.\r
-  \r
+\r
   @retval EFI_OUT_OF_RESOURCES  The FV info array in PEI_CORE_INSTANCE has no more spaces.\r
   @retval EFI_SUCCESS           Success to add the information for unknown FV.\r
 **/\r
@@ -2130,14 +2209,28 @@ AddUnknownFormatFvInfo (
   )\r
 {\r
   PEI_CORE_UNKNOW_FORMAT_FV_INFO    *NewUnknownFv;\r
-  \r
-  if (PrivateData->UnknownFvInfoCount + 1 >= PcdGet32 (PcdPeiCoreMaxFvSupported)) {\r
-    return EFI_OUT_OF_RESOURCES;\r
+  VOID                              *TempPtr;\r
+\r
+  if (PrivateData->UnknownFvInfoCount >= PrivateData->MaxUnknownFvInfoCount) {\r
+    //\r
+    // Run out of room, grow the buffer.\r
+    //\r
+    TempPtr = AllocateZeroPool (\r
+                sizeof (PEI_CORE_UNKNOW_FORMAT_FV_INFO) * (PrivateData->MaxUnknownFvInfoCount + FV_GROWTH_STEP)\r
+                );\r
+    ASSERT (TempPtr != NULL);\r
+    CopyMem (\r
+      TempPtr,\r
+      PrivateData->UnknownFvInfo,\r
+      sizeof (PEI_CORE_UNKNOW_FORMAT_FV_INFO) * PrivateData->MaxUnknownFvInfoCount\r
+      );\r
+    PrivateData->UnknownFvInfo = TempPtr;\r
+    PrivateData->MaxUnknownFvInfoCount = PrivateData->MaxUnknownFvInfoCount + FV_GROWTH_STEP;\r
   }\r
-  \r
+\r
   NewUnknownFv = &PrivateData->UnknownFvInfo[PrivateData->UnknownFvInfoCount];\r
   PrivateData->UnknownFvInfoCount ++;\r
-  \r
+\r
   CopyGuid (&NewUnknownFv->FvFormat, &FvInfo2Ppi->FvFormat);\r
   NewUnknownFv->FvInfo     = FvInfo2Ppi->FvInfo;\r
   NewUnknownFv->FvInfoSize = FvInfo2Ppi->FvInfoSize;\r
@@ -2145,23 +2238,23 @@ AddUnknownFormatFvInfo (
   NewUnknownFv->NotifyDescriptor.Flags  = (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST);\r
   NewUnknownFv->NotifyDescriptor.Guid   = &NewUnknownFv->FvFormat;\r
   NewUnknownFv->NotifyDescriptor.Notify = ThirdPartyFvPpiNotifyCallback;\r
-  \r
+\r
   PeiServicesNotifyPpi (&NewUnknownFv->NotifyDescriptor);\r
   return EFI_SUCCESS;\r
 }\r
 \r
 /**\r
-  Find the FV information according to third-party FV format guid.\r
-  \r
-  This routine also will remove the FV information found by given FV format guid from\r
+  Find the FV information according to third-party FV format GUID.\r
+\r
+  This routine also will remove the FV information found by given FV format GUID from\r
   PrivateData->UnknownFvInfo[].\r
-  \r
+\r
   @param PrivateData      Point to instance of PEI_CORE_INSTANCE\r
-  @param Format           Point to given FV format guid\r
+  @param Format           Point to given FV format GUID\r
   @param FvInfo           On return, the pointer of FV information buffer\r
   @param FvInfoSize       On return, the size of FV information buffer.\r
   @param AuthenticationStatus On return, the authentication status of FV information buffer.\r
-  \r
+\r
   @retval EFI_NOT_FOUND  The FV is not found for new installed EFI_PEI_FIRMWARE_VOLUME_PPI\r
   @retval EFI_SUCCESS    Success to find a FV which could be processed by new installed EFI_PEI_FIRMWARE_VOLUME_PPI.\r
 **/\r
@@ -2183,15 +2276,15 @@ FindUnknownFormatFvInfo (
       break;\r
     }\r
   }\r
-  \r
+\r
   if (Index == PrivateData->UnknownFvInfoCount) {\r
     return EFI_NOT_FOUND;\r
   }\r
-  \r
+\r
   *FvInfo     = PrivateData->UnknownFvInfo[Index].FvInfo;\r
   *FvInfoSize = PrivateData->UnknownFvInfo[Index].FvInfoSize;\r
   *AuthenticationStatus = PrivateData->UnknownFvInfo[Index].AuthenticationStatus;\r
-  \r
+\r
   //\r
   // Remove an entry from UnknownFvInfo array.\r
   //\r
@@ -2201,18 +2294,18 @@ FindUnknownFormatFvInfo (
   }\r
   PrivateData->UnknownFvInfoCount --;\r
   return EFI_SUCCESS;\r
-}  \r
+}\r
 \r
 /**\r
   Notification callback function for EFI_PEI_FIRMWARE_VOLUME_PPI.\r
-  \r
-  When a EFI_PEI_FIRMWARE_VOLUME_PPI is installed to support new FV format, this \r
-  routine is called to process all discoveried FVs in this format.\r
-  \r
+\r
+  When a EFI_PEI_FIRMWARE_VOLUME_PPI is installed to support new FV format, this\r
+  routine is called to process all discovered FVs in this format.\r
+\r
   @param PeiServices       An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation\r
   @param NotifyDescriptor  Address of the notification descriptor data structure.\r
   @param Ppi               Address of the PPI that was installed.\r
-  \r
+\r
   @retval EFI_SUCCESS  The notification callback is processed correctly.\r
 **/\r
 EFI_STATUS\r
@@ -2233,18 +2326,19 @@ ThirdPartyFvPpiNotifyCallback (
   BOOLEAN                      IsProcessed;\r
   UINTN                        FvIndex;\r
   EFI_PEI_FILE_HANDLE          FileHandle;\r
-  VOID                         *DepexData;  \r
+  VOID                         *DepexData;\r
   UINTN                        CurFvCount;\r
+  VOID                         *TempPtr;\r
 \r
   PrivateData  = PEI_CORE_INSTANCE_FROM_PS_THIS (PeiServices);\r
   FvPpi = (EFI_PEI_FIRMWARE_VOLUME_PPI*) Ppi;\r
-  \r
+\r
   do {\r
     Status = FindUnknownFormatFvInfo (PrivateData, NotifyDescriptor->Guid, &FvInfo, &FvInfoSize, &AuthenticationStatus);\r
     if (EFI_ERROR (Status)) {\r
       return EFI_SUCCESS;\r
     }\r
-    \r
+\r
     //\r
     // Process new found FV and get FV handle.\r
     //\r
@@ -2260,22 +2354,33 @@ ThirdPartyFvPpiNotifyCallback (
     IsProcessed = FALSE;\r
     for (FvIndex = 0; FvIndex < PrivateData->FvCount; FvIndex ++) {\r
       if (PrivateData->Fv[FvIndex].FvHandle == FvHandle) {\r
-        DEBUG ((EFI_D_INFO, "The Fv %p has already been processed!\n", FvInfo));\r
+        DEBUG ((DEBUG_INFO, "The FV %p has already been processed!\n", FvInfo));\r
         IsProcessed = TRUE;\r
         break;\r
       }\r
     }\r
-  \r
+\r
     if (IsProcessed) {\r
       continue;\r
     }\r
-    \r
-    if (PrivateData->FvCount >= PcdGet32 (PcdPeiCoreMaxFvSupported)) {\r
-      DEBUG ((EFI_D_ERROR, "The number of Fv Images (%d) exceed the max supported FVs (%d) in Pei", PrivateData->FvCount + 1, PcdGet32 (PcdPeiCoreMaxFvSupported)));\r
-      DEBUG ((EFI_D_ERROR, "PcdPeiCoreMaxFvSupported value need be reconfigurated in DSC"));\r
-      ASSERT (FALSE);\r
+\r
+    if (PrivateData->FvCount >= PrivateData->MaxFvCount) {\r
+      //\r
+      // Run out of room, grow the buffer.\r
+      //\r
+      TempPtr = AllocateZeroPool (\r
+                  sizeof (PEI_CORE_FV_HANDLE) * (PrivateData->MaxFvCount + FV_GROWTH_STEP)\r
+                  );\r
+      ASSERT (TempPtr != NULL);\r
+      CopyMem (\r
+        TempPtr,\r
+        PrivateData->Fv,\r
+        sizeof (PEI_CORE_FV_HANDLE) * PrivateData->MaxFvCount\r
+        );\r
+      PrivateData->Fv = TempPtr;\r
+      PrivateData->MaxFvCount = PrivateData->MaxFvCount + FV_GROWTH_STEP;\r
     }\r
-        \r
+\r
     //\r
     // Update internal PEI_CORE_FV array.\r
     //\r
@@ -2285,17 +2390,17 @@ ThirdPartyFvPpiNotifyCallback (
     PrivateData->Fv[PrivateData->FvCount].AuthenticationStatus = AuthenticationStatus;\r
     CurFvCount = PrivateData->FvCount;\r
     DEBUG ((\r
-      EFI_D_INFO, \r
-      "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n", \r
+      EFI_D_INFO,\r
+      "The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",\r
       (UINT32) CurFvCount,\r
-      (VOID *) FvInfo, \r
+      (VOID *) FvInfo,\r
       FvInfoSize,\r
       FvHandle\r
-      ));    \r
+      ));\r
     PrivateData->FvCount ++;\r
 \r
     //\r
-    // Scan and process the new discoveried FV for EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE \r
+    // Scan and process the new discovered FV for EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE\r
     //\r
     FileHandle = NULL;\r
     do {\r
@@ -2320,7 +2425,7 @@ ThirdPartyFvPpiNotifyCallback (
             continue;\r
           }\r
         }\r
-        \r
+\r
         DEBUG ((EFI_D_INFO, "Found firmware volume Image File %p in FV[%d] %p\n", FileHandle, CurFvCount, FvHandle));\r
         ProcessFvFile (PrivateData, &PrivateData->Fv[CurFvCount], FileHandle);\r
       }\r