X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FCore%2FPei%2FPeiMain.inf;h=b2747bbd7ca93028eb7f6e14d3d8330646f605ce;hp=35f9b3bd97a040f7530787a62f8d3c38e4a4fbd9;hb=f9876ecf8a296a8e0d4ad8d22ed5ff12ecc11f65;hpb=add1f247668a82987607387ad349d7c4e6581902 diff --git a/MdeModulePkg/Core/Pei/PeiMain.inf b/MdeModulePkg/Core/Pei/PeiMain.inf index 35f9b3bd97..b2747bbd7c 100644 --- a/MdeModulePkg/Core/Pei/PeiMain.inf +++ b/MdeModulePkg/Core/Pei/PeiMain.inf @@ -1,10 +1,10 @@ #/** @file -# PeiMain module is core module in PEI phase. It take reponsiblities of: -# 1) Initialize memory, ppi, image services etc, to establish PEIM runtime environment. -# 2) Dispatch PEIM from discoveried FV. -# 3) Handoff control to DxeIpl to load dxe core and enter DXE phase. +# PeiMain module is core module in PEI phase. It takes responsibilities of: +# 1) Initialize memory, PPI, image services etc, to establish PEIM runtime environment. +# 2) Dispatch PEIM from discovered FV. +# 3) Handoff control to DxeIpl to load DXE core and enter DXE phase. # -# Copyright (c) 2006 - 2007, Intel Corporation +# Copyright (c) 2006 - 2010, Intel Corporation # # All rights reserved. This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -18,22 +18,19 @@ [Defines] INF_VERSION = 0x00010005 - BASE_NAME = PeiMain + BASE_NAME = PeiCore FILE_GUID = 52C05B14-0B98-496c-BC3B-04B50211D680 MODULE_TYPE = PEI_CORE VERSION_STRING = 1.0 - EDK_RELEASE_VERSION = 0x00020000 - EFI_SPECIFICATION_VERSION = 0x00020000 - ENTRY_POINT = PeiCore # # The following information is for reference only and not required by the build tools. # -# VALID_ARCHITECTURES = IA32 X64 IPF EBC +# VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only) # -[Sources.common] +[Sources] StatusCode/StatusCode.c Security/Security.c Reset/Reset.c @@ -43,15 +40,18 @@ Image/Image.c Hob/Hob.c FwVol/FwVol.c + FwVol/FwVol.h Dispatcher/Dispatcher.c Dependency/Dependency.c Dependency/Dependency.h BootMode/BootMode.c + CpuIo/CpuIo.c + PciCfg2/PciCfg2.c PeiMain.h [Packages] - MdeModulePkg/MdeModulePkg.dec MdePkg/MdePkg.dec + MdeModulePkg/MdeModulePkg.dec [LibraryClasses] TimerLib @@ -67,32 +67,30 @@ MemoryAllocationLib CacheMaintenanceLib PeCoffLib - PeiPiLib + PeiServicesTablePointerLib [Guids] - gPeiAprioriFileNameGuid - gEfiFirmwareFileSystem2Guid - + gPeiAprioriFileNameGuid ## CONSUMES ## GUID + gEfiFirmwareFileSystem2Guid ## CONSUMES ## FV + [Ppis] - gEfiPeiStatusCodePpiGuid # PPI SOMETIMES_CONSUMED - gEfiPeiResetPpiGuid # PPI SOMETIMES_CONSUMED - gEfiDxeIplPpiGuid # PPI ALWAYS_CONSUMED - gEfiPeiMemoryDiscoveredPpiGuid # PPI ALWAYS_CONSUMED - gEfiPeiDecompressPpiGuid # PPI ALWAYS_CONSUMED - gEfiPeiFirmwareVolumeInfoPpiGuid # PPI ALWAYS_CONSUMED - gEfiPeiLoadFilePpiGuid # PPI ALWAYS_CONSUMED - gEfiPeiSecurity2PpiGuid # PPI ALWAYS_CONSUMED - gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_CONSUMED + gEfiPeiStatusCodePpiGuid ## SOMETIMES_CONSUMES (PeiReportStatusService is not ready if this PPI doesn't exist) + gEfiPeiResetPpiGuid ## SOMETIMES_CONSUMES (PeiResetService is not ready if this PPI doesn't exist) + gEfiDxeIplPpiGuid ## CONSUMES + gEfiPeiMemoryDiscoveredPpiGuid ## PRODUCES + gEfiPeiDecompressPpiGuid ## CONSUMES + gEfiPeiFirmwareVolumeInfoPpiGuid ## NOTIFY ## SOMETIMES_PRODUCES (Produce FvInfoPpi if the encapsulated FvImage is found) + gEfiPeiLoadFilePpiGuid ## PRODUCES ## SOMETIMES_CONSUMES (The default load PeImage logic will be used when this PPI doesn't exist) + gEfiPeiSecurity2PpiGuid ## NOTIFY + gEfiTemporaryRamSupportPpiGuid ## CONSUMES -[FixedPcd.common] - gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported - gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv - gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported - gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeimDispatch - gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiCoreEntry - gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize +[FixedPcd] + gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported ## CONSUMES -[FeaturePcd.common] - gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst - gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkFvHobCompatibilitySupport - \ No newline at end of file +[Pcd] + gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst ## CONSUMES + gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES +