]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/PeiMain.inf
Fix ECC issue.
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain.inf
1 #/** @file
2 # PeiMain module is core module in PEI phase. It take reponsiblities of:
3 # 1) Initialize memory, ppi, image services etc, to establish PEIM runtime environment.
4 # 2) Dispatch PEIM from discoveried FV.
5 # 3) Handoff control to DxeIpl to load dxe core and enter DXE phase.
6 #
7 # Copyright (c) 2006 - 2007, Intel Corporation
8 #
9 # All rights reserved. This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #
17 #**/
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = PeiCore
22 FILE_GUID = 52C05B14-0B98-496c-BC3B-04B50211D680
23 MODULE_TYPE = PEI_CORE
24 VERSION_STRING = 1.0
25 EDK_RELEASE_VERSION = 0x00020000
26 EFI_SPECIFICATION_VERSION = 0x00020000
27
28 ENTRY_POINT = PeiCore
29
30 #
31 # The following information is for reference only and not required by the build tools.
32 #
33 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
34 #
35
36 [Sources.common]
37 StatusCode/StatusCode.c
38 Security/Security.c
39 Reset/Reset.c
40 Ppi/Ppi.c
41 PeiMain/PeiMain.c
42 Memory/MemoryServices.c
43 Image/Image.c
44 Hob/Hob.c
45 FwVol/FwVol.c
46 Dispatcher/Dispatcher.c
47 Dependency/Dependency.c
48 Dependency/Dependency.h
49 BootMode/BootMode.c
50 PeiMain.h
51
52 [Packages]
53 MdeModulePkg/MdeModulePkg.dec
54 MdePkg/MdePkg.dec
55
56 [LibraryClasses]
57 TimerLib
58 BaseMemoryLib
59 PeCoffGetEntryPointLib
60 ReportStatusCodeLib
61 PeiServicesLib
62 PerformanceLib
63 HobLib
64 BaseLib
65 PeiCoreEntryPoint
66 DebugLib
67 MemoryAllocationLib
68 CacheMaintenanceLib
69 PeCoffLib
70 PeiPiLib
71 PeiServicesTablePointerLib
72
73
74 [Guids]
75 gPeiAprioriFileNameGuid
76 gEfiFirmwareFileSystem2Guid
77
78 [Ppis]
79 gEfiPeiStatusCodePpiGuid # PPI SOMETIMES_CONSUMED
80 gEfiPeiResetPpiGuid # PPI SOMETIMES_CONSUMED
81 gEfiDxeIplPpiGuid # PPI ALWAYS_CONSUMED
82 gEfiPeiMemoryDiscoveredPpiGuid # PPI ALWAYS_CONSUMED
83 gEfiPeiDecompressPpiGuid # PPI ALWAYS_CONSUMED
84 gEfiPeiFirmwareVolumeInfoPpiGuid # PPI ALWAYS_CONSUMED
85 gEfiPeiLoadFilePpiGuid # PPI ALWAYS_CONSUMED
86 gEfiPeiSecurity2PpiGuid # PPI ALWAYS_CONSUMED
87 gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_CONSUMED
88
89 [FixedPcd.common]
90 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported
91 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv
92 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported
93 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeimDispatch
94 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiCoreEntry
95 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize
96
97 [FeaturePcd.common]
98 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst
99 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkFvHobCompatibilitySupport
100