1## @file 2# AcpiS3Save module installs ACPI S3 Save protocol to prepare S3 boot data. 3# 4# Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR> 5# 6# This program and the accompanying materials are 7# licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = AcpiS3SaveDxe 19 MODULE_UNI_FILE = AcpiS3SaveDxe.uni 20 FILE_GUID = 2BDED685-F733-455f-A840-43A22B791FB3 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 24 ENTRY_POINT = InstallAcpiS3Save 25 26# 27# The following information is for reference only and not required by the build tools. 28# 29# VALID_ARCHITECTURES = IA32 X64 30# 31 32[Sources] 33 AcpiS3Save.h 34 AcpiS3Save.c 35 AcpiVariableThunkPlatform.c 36 37[Packages] 38 MdePkg/MdePkg.dec 39 MdeModulePkg/MdeModulePkg.dec 40 IntelFrameworkPkg/IntelFrameworkPkg.dec 41 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec 42 43[LibraryClasses] 44 PcdLib 45 UefiRuntimeServicesTableLib 46 UefiBootServicesTableLib 47 UefiDriverEntryPoint 48 BaseMemoryLib 49 HobLib 50 UefiLib 51 DebugLib 52 53[Guids] 54 ## SOMETIMES_CONSUMES ## Variable:L"AcpiGlobalVariable" 55 ## SOMETIMES_PRODUCES ## Variable:L"AcpiGlobalVariable" 56 gEfiAcpiVariableCompatiblityGuid 57 58[Protocols] 59 gEfiAcpiS3SaveProtocolGuid ## PRODUCES 60 gFrameworkEfiMpServiceProtocolGuid ## SOMETIMES_CONSUMES 61 ## NOTIFY 62 ## SOMETIMES_CONSUMES 63 gEdkiiVariableLockProtocolGuid 64 65[FeaturePcd] 66 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPlatformCsmSupport ## CONSUMES 67 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES 68 69[Pcd] 70 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdS3AcpiReservedMemorySize ## SOMETIMES_CONSUMES 71 gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable ## CONSUMES 72 73[Depex] 74 # 75 # Note: the extra dependency of gEfiMpServiceProtocolGuid is to ensure that ACPI variable is set by MpDxe driver before 76 # AcpiS3SaveDxe module is executed. 77 # 78 gEfiVariableArchProtocolGuid AND gEfiVariableWriteArchProtocolGuid AND gEfiMpServiceProtocolGuid 79 80[UserExtensions.TianoCore."ExtraFiles"] 81 AcpiS3SaveDxeExtra.uni 82