]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/PeiMain.inf
24486fe83f61ec06e209f6b72ed34048bc97712e
[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 EDK_RELEASE_VERSION = 0x00020000
26 PI_SPECIFICATION_VERSION = 0x00010000
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 (EBC is for build only)
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 PeiServicesTablePointerLib
71
72
73 [Guids]
74 gPeiAprioriFileNameGuid
75 gEfiFirmwareFileSystem2Guid
76
77 [Ppis]
78 gEfiPeiStatusCodePpiGuid # PPI SOMETIMES_CONSUMED
79 gEfiPeiResetPpiGuid # PPI SOMETIMES_CONSUMED
80 gEfiDxeIplPpiGuid # PPI ALWAYS_CONSUMED
81 gEfiPeiMemoryDiscoveredPpiGuid # PPI ALWAYS_CONSUMED
82 gEfiPeiDecompressPpiGuid # PPI ALWAYS_CONSUMED
83 gEfiPeiFirmwareVolumeInfoPpiGuid # PPI ALWAYS_CONSUMED
84 gEfiPeiLoadFilePpiGuid # PPI ALWAYS_CONSUMED
85 gEfiPeiSecurity2PpiGuid # PPI ALWAYS_CONSUMED
86 gEfiTemporaryRamSupportPpiGuid # PPI ALWAYS_CONSUMED
87
88 [FixedPcd.common]
89 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported
90 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv
91 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPpiSupported
92 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeimDispatch
93 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiCoreEntry
94 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize
95
96 [FeaturePcd.common]
97 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst
98 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkFvHobCompatibilitySupport
99