]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/PeiMain.inf
0b354dc506c809863b8c886ebf9471c910a4f50c
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain.inf
1 #/** @file
2 # PeiMain module is core module in PEI phase. It takes responsibilities of:
3 # 1) Initialize memory, PPI, image services etc, to establish PEIM runtime environment.
4 # 2) Dispatch PEIM from discovered FV.
5 # 3) Handoff control to DxeIpl to load DXE core and enter DXE phase.
6 #
7 # Copyright (c) 2006 - 2008, 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 PI_SPECIFICATION_VERSION = 0x00010000
26
27 ENTRY_POINT = PeiCore
28
29 #
30 # The following information is for reference only and not required by the build tools.
31 #
32 # VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
33 #
34
35 [Sources.common]
36 StatusCode/StatusCode.c
37 Security/Security.c
38 Reset/Reset.c
39 Ppi/Ppi.c
40 PeiMain/PeiMain.c
41 Memory/MemoryServices.c
42 Image/Image.c
43 Hob/Hob.c
44 FwVol/FwVol.c
45 Dispatcher/Dispatcher.c
46 Dependency/Dependency.c
47 Dependency/Dependency.h
48 BootMode/BootMode.c
49 PeiMain.h
50
51 [Packages]
52 MdeModulePkg/MdeModulePkg.dec
53 MdePkg/MdePkg.dec
54
55 [LibraryClasses]
56 TimerLib
57 BaseMemoryLib
58 PeCoffGetEntryPointLib
59 ReportStatusCodeLib
60 PeiServicesLib
61 PerformanceLib
62 HobLib
63 BaseLib
64 PeiCoreEntryPoint
65 DebugLib
66 MemoryAllocationLib
67 CacheMaintenanceLib
68 PeCoffLib
69 PeiServicesTablePointerLib
70
71
72 [Guids]
73 gPeiAprioriFileNameGuid
74 gEfiFirmwareFileSystem2Guid
75
76 [Ppis]
77 gEfiPeiStatusCodePpiGuid # PPI SOMETIMES_CONSUMED
78 gEfiPeiResetPpiGuid # PPI SOMETIMES_CONSUMED
79 gEfiDxeIplPpiGuid # PPI ALWAYS_CONSUMED
80 gEfiPeiMemoryDiscoveredPpiGuid # PPI ALWAYS_CONSUMED
81 gEfiPeiDecompressPpiGuid # PPI ALWAYS_CONSUMED
82 gEfiPeiFirmwareVolumeInfoPpiGuid # PPI ALWAYS_CONSUMED
83 gEfiPeiLoadFilePpiGuid # PPI ALWAYS_CONSUMED
84 gEfiPeiSecurity2PpiGuid # PPI ALWAYS_CONSUMED
85 gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_CONSUMED
86
87 [FixedPcd.common]
88 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported
89 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv
90 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported
91 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeimDispatch
92 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiCoreEntry
93 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize
94
95 [FeaturePcd.common]
96 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst
97 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkFvHobCompatibilitySupport
98