2011-08-30 00:19:13 +02:00
|
|
|
## @file
|
2014-08-28 07:09:12 +02:00
|
|
|
# S3 Resume Module installs EFI_PEI_S3_RESUME2_PPI.
|
|
|
|
#
|
2011-08-30 00:19:13 +02:00
|
|
|
# This module works with StandAloneBootScriptExecutor to S3 resume to OS.
|
|
|
|
# This module will excute the boot script saved during last boot and after that,
|
|
|
|
# control is passed to OS waking up handler.
|
|
|
|
#
|
2014-08-28 07:09:12 +02:00
|
|
|
# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
2017-02-26 18:43:05 +01:00
|
|
|
# Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
|
2011-08-30 00:19:13 +02:00
|
|
|
#
|
|
|
|
# This program and the accompanying materials are
|
|
|
|
# licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
#
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = S3Resume2Pei
|
2014-08-28 07:09:12 +02:00
|
|
|
MODULE_UNI_FILE = S3Resume2Pei.uni
|
2011-08-30 00:19:13 +02:00
|
|
|
FILE_GUID = 89E549B0-7CFE-449d-9BA3-10D8B2312D71
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = PeimS3ResumeEntryPoint
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
S3Resume.c
|
|
|
|
|
2012-08-22 10:56:50 +02:00
|
|
|
[Sources.IA32]
|
2013-12-11 09:22:43 +01:00
|
|
|
Ia32/AsmFuncs.asm
|
2016-06-14 10:21:44 +02:00
|
|
|
Ia32/AsmFuncs.nasm
|
|
|
|
Ia32/AsmFuncs.S
|
2012-08-22 10:56:50 +02:00
|
|
|
|
|
|
|
[Sources.X64]
|
2013-12-11 09:22:43 +01:00
|
|
|
X64/AsmFuncs.asm
|
2016-06-14 10:21:44 +02:00
|
|
|
X64/AsmFuncs.nasm
|
|
|
|
X64/AsmFuncs.S
|
2012-08-22 10:56:50 +02:00
|
|
|
|
2011-08-30 00:19:13 +02:00
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
UefiCpuPkg/UefiCpuPkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeiServicesTablePointerLib
|
|
|
|
PerformanceLib
|
|
|
|
HobLib
|
|
|
|
PeiServicesLib
|
|
|
|
PeimEntryPoint
|
|
|
|
TimerLib
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
PcdLib
|
|
|
|
IoLib
|
|
|
|
BaseMemoryLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
DebugAgentLib
|
|
|
|
LocalApicLib
|
|
|
|
ReportStatusCodeLib
|
|
|
|
LockBoxLib
|
|
|
|
PrintLib
|
|
|
|
|
|
|
|
[Guids]
|
2014-08-28 07:09:12 +02:00
|
|
|
gEfiBootScriptExecutorVariableGuid ## SOMETIMES_CONSUMES ## UNDEFINED # LockBox
|
|
|
|
gEfiBootScriptExecutorContextGuid ## SOMETIMES_CONSUMES ## UNDEFINED # LockBox
|
|
|
|
gPerformanceProtocolGuid ## SOMETIMES_CONSUMES ## Variable:L"PerfDataMemAddr"
|
|
|
|
## SOMETIMES_CONSUMES ## HOB
|
|
|
|
## SOMETIMES_CONSUMES ## UNDEFINED # LockBox
|
|
|
|
gEfiAcpiVariableGuid
|
|
|
|
gEfiAcpiS3ContextGuid ## SOMETIMES_CONSUMES ## UNDEFINED # LockBox
|
2011-08-30 00:19:13 +02:00
|
|
|
|
|
|
|
[Ppis]
|
2014-08-28 07:09:12 +02:00
|
|
|
gEfiPeiReadOnlyVariable2PpiGuid ## CONSUMES
|
|
|
|
gEfiPeiS3Resume2PpiGuid ## PRODUCES
|
|
|
|
gPeiSmmAccessPpiGuid ## SOMETIMES_CONSUMES
|
|
|
|
gPeiPostScriptTablePpiGuid ## SOMETIMES_PRODUCES
|
|
|
|
gEfiEndOfPeiSignalPpiGuid ## SOMETIMES_PRODUCES
|
2017-10-11 03:25:07 +02:00
|
|
|
gEfiPeiSmmCommunicationPpiGuid ## SOMETIMES_CONSUMES
|
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEdkiiSmmEndOfS3ResumeProtocolGuid ## SOMETIMES_CONSUMES
|
2011-08-30 00:19:13 +02:00
|
|
|
|
|
|
|
[FeaturePcd]
|
2014-08-28 07:09:12 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode ## CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES
|
2011-08-30 00:19:13 +02:00
|
|
|
|
2011-09-21 05:45:35 +02:00
|
|
|
[Pcd]
|
2014-08-28 07:09:12 +02:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable ## SOMETIMES_CONSUMES
|
2017-02-26 18:43:05 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdPteMemoryEncryptionAddressOrMask ## CONSUMES
|
2011-09-21 05:45:35 +02:00
|
|
|
|
2011-08-30 00:19:13 +02:00
|
|
|
[Depex]
|
2012-08-06 05:08:49 +02:00
|
|
|
TRUE
|
2014-08-28 07:09:12 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
S3Resume2PeiExtra.uni
|