]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Core/Pei/PeiMain.inf
clean up EBC in inf files.
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain.inf
index 245e979bd69c24b4ccfb19e16f5e465a7fa4b845..2164380934ec90917adc2013a860f8421d7399db 100644 (file)
@@ -1,7 +1,9 @@
 #/** @file\r
-# Component description file for PeiMain module\r
+# PeiMain module is core module in PEI phase. It take reponsiblities of:\r
+# 1) Initialize memory, ppi, image services etc, to establish PEIM runtime environment.\r
+# 2) Dispatch PEIM from discoveried FV.\r
+# 3) Handoff control to DxeIpl to load dxe core and enter DXE phase.\r
 #\r
-# This module provide an DXE CIS compliant implementation.\r
 # Copyright (c) 2006 - 2007, Intel Corporation\r
 #\r
 #  All rights reserved. This program and the accompanying materials\r
@@ -16,7 +18,7 @@
 \r
 [Defines]\r
   INF_VERSION                    = 0x00010005\r
-  BASE_NAME                      = PeiMain\r
+  BASE_NAME                      = PeiCore\r
   FILE_GUID                      = 52C05B14-0B98-496c-BC3B-04B50211D680\r
   MODULE_TYPE                    = PEI_CORE\r
   VERSION_STRING                 = 1.0\r
@@ -28,7 +30,7 @@
 #\r
 # The following information is for reference only and not required by the build tools.\r
 #\r
-#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC\r
+#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC (EBC is for build only)\r
 #\r
 \r
 [Sources.common]\r
   Hob/Hob.c\r
   FwVol/FwVol.c\r
   Dispatcher/Dispatcher.c\r
-  Dependency/dependency.c\r
-  Dependency/dependency.h\r
+  Dependency/Dependency.c\r
+  Dependency/Dependency.h\r
   BootMode/BootMode.c\r
   PeiMain.h\r
 \r
-[Sources.Ia32]\r
-  Dispatcher/Stack.c\r
-\r
-[Sources.X64]\r
-  Dispatcher/Stack.c\r
-\r
-[Sources.IPF]\r
-  Ipf/Stack.c\r
-  Ipf/IpfPeiMain.h\r
-  Ipf/IpfCpuCore.s\r
-  Ipf/IpfCpuCore.i\r
-  Ipf/SwitchToCacheMode.c\r
-\r
-[Sources.EBC]\r
-  Dispatcher/Stack.c\r
-\r
 [Packages]\r
   MdeModulePkg/MdeModulePkg.dec\r
   MdePkg/MdePkg.dec\r
-  IntelFrameworkPkg/IntelFrameworkPkg.dec\r
 \r
 [LibraryClasses]\r
   TimerLib\r
   PerformanceLib\r
   HobLib\r
   BaseLib\r
-  OldPeiCoreEntryPoint\r
+  PeiCoreEntryPoint\r
   DebugLib\r
+  MemoryAllocationLib\r
+  CacheMaintenanceLib\r
+  PeCoffLib\r
+  PeiPiLib\r
+  PeiServicesTablePointerLib\r
+  \r
 \r
 [Guids]\r
-  gEfiPeiCorePrivateGuid                        # PRIVATE\r
+  gPeiAprioriFileNameGuid\r
+  gEfiFirmwareFileSystem2Guid\r
 \r
 [Ppis]\r
-  gEfiPeiSecurityPpiGuid                        # PPI_NOTIFY SOMETIMES_CONSUMED\r
   gEfiPeiStatusCodePpiGuid                      # PPI SOMETIMES_CONSUMED\r
   gEfiPeiResetPpiGuid                           # PPI SOMETIMES_CONSUMED\r
   gEfiDxeIplPpiGuid                             # PPI ALWAYS_CONSUMED\r
-  gEfiPeiFvFileLoaderPpiGuid                    # PPI ALWAYS_CONSUMED\r
-  gEfiFindFvPpiGuid                             # PPI ALWAYS_CONSUMED\r
-  gEfiPeiMemoryDiscoveredPpiGuid                # PPI ALWAYS_PRODUCED\r
+  gEfiPeiMemoryDiscoveredPpiGuid                # PPI ALWAYS_CONSUMED\r
+  gEfiPeiDecompressPpiGuid                      # PPI ALWAYS_CONSUMED\r
+  gEfiPeiFirmwareVolumeInfoPpiGuid              # PPI ALWAYS_CONSUMED\r
+  gEfiPeiLoadFilePpiGuid                        # PPI ALWAYS_CONSUMED\r
+  gEfiPeiSecurity2PpiGuid                       # PPI ALWAYS_CONSUMED\r
+  gEfiTemporaryRamSupportPpiGuid                # PPI ALWAYS_CONSUMED\r
+\r
+[FixedPcd.common]\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported\r
+  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeimDispatch\r
+  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiCoreEntry\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize\r
 \r
+[FeaturePcd.common]\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst\r
+  gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkFvHobCompatibilitySupport\r
+  
\ No newline at end of file