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