31f228cf |
1 | #/** @file\r |
2 | # Last PEIM executed in PEI phase to load DXE Core from a Firmware Volume.\r |
3 | # \r |
4 | # This module produces a special PPI named the DXE Initial Program Load (IPL)\r |
5 | # PPI to discover and dispatch the DXE Foundation and components that are\r |
6 | # needed to run the DXE Foundation.\r |
7 | #\r |
f9876ecf |
8 | # Copyright (c) 2006 - 2010, Intel Corporation. <BR>\r |
31f228cf |
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 | # \r |
14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
16 | # \r |
17 | #**/\r |
18 | \r |
19 | [Defines]\r |
20 | INF_VERSION = 0x00010005\r |
21 | BASE_NAME = DxeIpl\r |
22 | FILE_GUID = 86D70125-BAA3-4296-A62F-602BEBBB9081\r |
23 | MODULE_TYPE = PEIM\r |
24 | VERSION_STRING = 1.0\r |
25 | \r |
26 | ENTRY_POINT = PeimInitializeDxeIpl\r |
27 | \r |
28 | #\r |
29 | # The following information is for reference only and not required by the build tools.\r |
30 | #\r |
31 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)\r |
32 | #\r |
33 | \r |
34 | [Sources.common]\r |
35 | DxeIpl.h\r |
36 | DxeLoad.c\r |
37 | \r |
38 | [Sources.Ia32]\r |
4140a663 |
39 | X64/VirtualMemory.h ||||PcdDxeIplSwitchToLongMode\r |
40 | X64/VirtualMemory.c ||||PcdDxeIplSwitchToLongMode\r |
31f228cf |
41 | Ia32/DxeLoadFunc.c\r |
42 | Ia32/IdtVectorAsm.asm||||PcdDxeIplSwitchToLongMode\r |
43 | Ia32/IdtVectorAsm.S ||||PcdDxeIplSwitchToLongMode\r |
44 | \r |
45 | [Sources.X64]\r |
46 | X64/VirtualMemory.h\r |
47 | X64/VirtualMemory.c\r |
48 | X64/DxeLoadFunc.c\r |
49 | \r |
50 | [Sources.IPF]\r |
51 | Ipf/DxeLoadFunc.c\r |
52 | \r |
53 | [Sources.EBC]\r |
54 | Ebc/DxeLoadFunc.c\r |
55 | \r |
56 | [Sources.ARM]\r |
57 | Arm/DxeLoadFunc.c\r |
58 | \r |
59 | [Packages]\r |
60 | MdePkg/MdePkg.dec\r |
61 | MdeModulePkg/MdeModulePkg.dec\r |
62 | \r |
63 | [LibraryClasses]\r |
64 | PcdLib\r |
65 | MemoryAllocationLib\r |
66 | BaseMemoryLib\r |
67 | ExtractGuidedSectionLib\r |
68 | UefiDecompressLib\r |
69 | ReportStatusCodeLib\r |
70 | PeiServicesLib\r |
71 | HobLib\r |
72 | BaseLib\r |
73 | PeimEntryPoint\r |
74 | DebugLib\r |
75 | \r |
76 | [Ppis]\r |
77 | gEfiDxeIplPpiGuid ## PRODUCES\r |
78 | gEfiEndOfPeiSignalPpiGuid ## SOMETIMES_PRODUCES(Not produced on S3 boot path)\r |
79 | gEfiPeiDecompressPpiGuid ## SOMETIMES_PRODUCES\r |
80 | gEfiPeiReadOnlyVariable2PpiGuid ## SOMETIMES_CONSUMES\r |
81 | gEfiPeiLoadFilePpiGuid ## CONSUMES\r |
82 | gEfiPeiS3ResumePpiGuid ## SOMETIMES_CONSUMES(Consumed on S3 boot path)\r |
83 | gEfiPeiRecoveryModulePpiGuid ## SOMETIMES_CONSUMES(Consumed on recovery boot path)\r |
84 | \r |
85 | [Guids]\r |
86 | gEfiMemoryTypeInformationGuid ## SOMETIMES_CONSUMES ## Variable:L"MemoryTypeInformation"\r |
87 | gEfiMemoryTypeInformationGuid ## SOMETIMES_PRODUCES ## HOB\r |
88 | \r |
89 | [FeaturePcd.IA32]\r |
90 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode\r |
91 | \r |
92 | [FeaturePcd.common]\r |
93 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress\r |
94 | \r |
31f228cf |
95 | [Depex]\r |
96 | gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiLoadFilePpiGuid\r |
97 | \r |
98 | #\r |
99 | # [BootMode] \r |
100 | # S3_RESUME ## SOMETIMES_CONSUMES\r |
101 | # RECOVERY ## SOMETIMES_CONSUMES\r |
102 | #\r |
103 | # \r |
104 | # [Hob]\r |
105 | # ##\r |
106 | # # New Stack HoB\r |
107 | # MEMORY_ALLOCATION ## PRODUCES\r |
108 | # ##\r |
109 | # # Old Stack HOB\r |
110 | # MEMORY_ALLOCATION ## CONSUMES\r |
111 | #\r |
112 | # [Hob.IPF]\r |
113 | # ##\r |
114 | # # BSP Stack HOB for IPF\r |
115 | # MEMORY_ALLOCATION ## PRODUCES\r |
116 | #\r |
117 | # \r |