2007-07-05 09:05:28 +02:00
|
|
|
#/** @file
|
2008-12-23 17:20:43 +01:00
|
|
|
# Last PEIM executed in PEI phase to load DXE Core from a Firmware Volume.
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2008-12-23 17:20:43 +01:00
|
|
|
# This module produces a special PPI named the DXE Initial Program Load (IPL)
|
|
|
|
# PPI to discover and dispatch the DXE Foundation and components that are
|
|
|
|
# needed to run the DXE Foundation.
|
|
|
|
#
|
2008-04-08 05:01:25 +02:00
|
|
|
# Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|
2007-07-05 09:05:28 +02:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-04-08 05:01:25 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-07-05 09:05:28 +02:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2007-07-05 09:05:28 +02:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-04-08 05:01:25 +02:00
|
|
|
#
|
2007-07-05 09:05:28 +02:00
|
|
|
#**/
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeIpl
|
|
|
|
FILE_GUID = 86D70125-BAA3-4296-A62F-602BEBBB9081
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
ENTRY_POINT = PeimInitializeDxeIpl
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2008-10-28 08:17:17 +01:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
|
2007-07-05 09:05:28 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources.common]
|
|
|
|
DxeIpl.h
|
|
|
|
DxeLoad.c
|
|
|
|
|
|
|
|
[Sources.Ia32]
|
2009-01-20 04:01:44 +01:00
|
|
|
Ia32/VirtualMemory.h ||||PcdDxeIplSwitchToLongMode
|
|
|
|
Ia32/VirtualMemory.c ||||PcdDxeIplSwitchToLongMode
|
2007-07-05 09:05:28 +02:00
|
|
|
Ia32/DxeLoadFunc.c
|
|
|
|
Ia32/ImageRead.c
|
2009-01-20 04:01:44 +01:00
|
|
|
Ia32/IdtVectorAsm.asm||||PcdDxeIplSwitchToLongMode AND PcdDxeIplEnableIdt
|
|
|
|
Ia32/IdtVectorAsm.S ||||PcdDxeIplSwitchToLongMode AND PcdDxeIplEnableIdt
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2008-11-19 04:06:02 +01:00
|
|
|
[Sources.X64]
|
2008-11-16 00:59:07 +01:00
|
|
|
X64/VirtualMemory.h
|
|
|
|
X64/VirtualMemory.c
|
2007-07-05 09:05:28 +02:00
|
|
|
X64/DxeLoadFunc.c
|
|
|
|
Ia32/ImageRead.c
|
|
|
|
|
|
|
|
[Sources.IPF]
|
|
|
|
Ipf/DxeLoadFunc.c
|
|
|
|
Ipf/ImageRead.c
|
|
|
|
|
2008-11-19 04:06:02 +01:00
|
|
|
[Sources.EBC]
|
|
|
|
Ebc/DxeLoadFunc.c
|
|
|
|
Ia32/ImageRead.c
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
[Packages]
|
2007-08-29 10:52:49 +02:00
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeCoffLib
|
|
|
|
PcdLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
2007-09-29 10:04:29 +02:00
|
|
|
ExtractGuidedSectionLib
|
2007-07-05 09:05:28 +02:00
|
|
|
UefiDecompressLib
|
|
|
|
CacheMaintenanceLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
PeiServicesLib
|
|
|
|
HobLib
|
|
|
|
BaseLib
|
|
|
|
PeimEntryPoint
|
|
|
|
DebugLib
|
2007-09-26 11:35:36 +02:00
|
|
|
S3Lib
|
|
|
|
RecoveryLib
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
[Ppis]
|
2009-01-20 04:01:44 +01:00
|
|
|
gEfiDxeIplPpiGuid ## PRODUCES
|
|
|
|
gEfiEndOfPeiSignalPpiGuid ## SOMETIMES_PRODUCES(Not produced on S3 boot path)
|
|
|
|
gEfiPeiDecompressPpiGuid ## SOMETIMES_PRODUCES
|
|
|
|
gEfiPeiReadOnlyVariable2PpiGuid ## SOMETIMES_CONSUMES
|
2007-11-27 03:47:37 +01:00
|
|
|
|
|
|
|
[Guids]
|
2009-01-20 04:01:44 +01:00
|
|
|
gEfiMemoryTypeInformationGuid ## SOMETIMES_CONSUMES ## Variable:L"MemoryTypeInformation"
|
|
|
|
gEfiMemoryTypeInformationGuid ## SOMETIMES_PRODUCES ## HOB
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-08-30 11:11:54 +02:00
|
|
|
[FeaturePcd.IA32]
|
2009-01-21 08:25:23 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplEnableIdt||PcdDxeIplSwitchToLongMode
|
2007-08-30 11:11:54 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-12-10 04:47:56 +01:00
|
|
|
[FixedPcd.common]
|
|
|
|
gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValuePeiHandoffToDxe
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
[Depex]
|
|
|
|
gEfiPeiMemoryDiscoveredPpiGuid
|
|
|
|
|
2009-01-20 04:01:44 +01:00
|
|
|
#
|
|
|
|
# [BootMode]
|
|
|
|
# S3_RESUME ## SOMETIMES_CONSUMES
|
|
|
|
# RECOVERY ## SOMETIMES_CONSUMES
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# [Hob]
|
|
|
|
# ##
|
|
|
|
# # New Stack HoB
|
|
|
|
# MEMORY_ALLOCATION ## PRODUCES
|
|
|
|
# ##
|
|
|
|
# # Old Stack HOB
|
|
|
|
# MEMORY_ALLOCATION ## CONSUMES
|
|
|
|
#
|
|
|
|
# [Hob.IPF]
|
|
|
|
# ##
|
|
|
|
# # BSP Stack HOB for IPF
|
|
|
|
# MEMORY_ALLOCATION ## PRODUCES
|
|
|
|
#
|
|
|
|
#
|