86 lines
2.3 KiB
INI
86 lines
2.3 KiB
INI
## @file
|
|
# This module will initialize TCM device and measure FVs in PEI phase.
|
|
#
|
|
#******************************************************************************
|
|
#* Copyright (c) 2019, Insyde Software Corp. All Rights Reserved.
|
|
#*
|
|
#* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
#* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
#* any part of this publication in any form, by any means, without the prior
|
|
#* written permission of Insyde Software Corporation.
|
|
#*
|
|
#******************************************************************************
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = TcmPei
|
|
FILE_GUID = 017ADA1F-926A-4e94-B311-57B70F9461C7
|
|
MODULE_TYPE = PEIM
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = PeimEntryMA
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
#
|
|
|
|
[Sources]
|
|
TcmPei.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
SecurityPkg/SecurityPkg.dec
|
|
InsydeModulePkg/InsydeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
HobLib
|
|
PeimEntryPoint
|
|
PeiServicesLib
|
|
BaseMemoryLib
|
|
DebugLib
|
|
TimerLib
|
|
IoLib
|
|
PeiServicesTablePointerLib
|
|
PcdLib
|
|
MemoryAllocationLib
|
|
MemoryOverwriteLib
|
|
H2OFvHashLib
|
|
BaseCryptLib
|
|
TcmDeviceLib
|
|
TcmCommandLib
|
|
|
|
[Guids]
|
|
gTcgEventEntryHobGuid
|
|
gMeasuredFvHobGuid
|
|
gEfiTpmDeviceInstanceTpm12Guid
|
|
gEfiTpmDeviceInstanceTcmGuid
|
|
gEfiMemoryOverwriteControlDataGuid
|
|
|
|
[Ppis]
|
|
gPeiLockPhysicalPresencePpiGuid
|
|
gEfiPeiFirmwareVolumeInfoPpiGuid
|
|
gEfiPeiFirmwareVolumeInfo2PpiGuid
|
|
gPeiTpmInitializedPpiGuid
|
|
gEfiEndOfPeiSignalPpiGuid
|
|
gEfiPeiMemoryDiscoveredPpiGuid
|
|
gEfiPeiReadOnlyVariable2PpiGuid
|
|
gPeiTpmInitializationDonePpiGuid
|
|
gEdkiiIoMmuPpiGuid
|
|
|
|
[Pcd]
|
|
gEfiSecurityPkgTokenSpaceGuid.PcdPhysicalPresenceLifetimeLock
|
|
gEfiSecurityPkgTokenSpaceGuid.PcdPhysicalPresenceCmdEnable
|
|
gEfiSecurityPkgTokenSpaceGuid.PcdPhysicalPresenceHwEnable
|
|
gEfiSecurityPkgTokenSpaceGuid.PcdTpmInstanceGuid
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVersionString
|
|
gInsydeTokenSpaceGuid.PcdPeiTpmPolicy
|
|
gInsydeTokenSpaceGuid.PcdTpmHide
|
|
|
|
[Depex]
|
|
gEfiPeiMasterBootModePpiGuid AND
|
|
gEfiPeiReadOnlyVariable2PpiGuid AND
|
|
gEfiTpmDeviceSelectedGuid
|