1 ## @file 2 # 3 # A helper driver to save information to SMRAM after SMRR is enabled. 4 # 5 # Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR> 6 # 8 # This program and the accompanying materials are licensed and made available under 10 # the terms and conditions of the BSD License that accompanies this distribution. 12 # The full text of the license may be found at 14 # http://opensource.org/licenses/bsd-license.php. 16 # 18 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 20 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 22 # 24 # 25 # 26 # 27 ## 28 29 [Defines] 30 INF_VERSION = 0x00010005 31 BASE_NAME = SmramSaveInfoHandlerSmm 32 FILE_GUID = 63296C52-01CF-4eea-A47C-782A14DA6894 33 MODULE_TYPE = DXE_SMM_DRIVER 34 VERSION_STRING = 1.0 35 PI_SPECIFICATION_VERSION = 0x0001000A 36 37 ENTRY_POINT = SmramSaveInfoHandlerSmmMain 38 39 # 40 # The following information is for reference only and not required by the build tools. 41 # 42 # VALID_ARCHITECTURES = IA32 X64 43 # 44 45 [Sources.common] 46 SmramSaveInfoHandlerSmm.c 47 48 [Packages] 49 MdePkg/MdePkg.dec 50 IntelFrameworkPkg/IntelFrameworkPkg.dec 51 Vlv2DeviceRefCodePkg/Vlv2DeviceRefCodePkg.dec 52 53 [LibraryClasses] 54 UefiDriverEntryPoint 55 UefiRuntimeServicesTableLib 56 SmmServicesTableLib 57 BaseLib 58 BaseMemoryLib 59 IoLib 60 61 [Protocols] 62 gEfiSmmSwDispatchProtocolGuid ## CONSUMED 63 gEfiSmmControlProtocolGuid ## CONSUMED 64 gEfiSmmReadyToLockProtocolGuid ## CONSUMED 65 66 [Pcd.common] 67 gEfiVLVTokenSpaceGuid.PcdCpuLockBoxDataAddress 68 gEfiVLVTokenSpaceGuid.PcdCpuSmramCpuDataAddress 69 gEfiVLVTokenSpaceGuid.PcdCpuLockBoxSize 70 71 [Depex] 72 gEfiSmmSwDispatchProtocolGuid AND 73 gEfiSmmControlProtocolGuid 74 75