1## @file 2# Provides TPM 2.0 TIS functions 3# 4# This library is TPM 2.0 device router. Platform can register multi TPM 2.0 instance to 5# it via PcdTpmInstanceGuid. Platform need make choice that which one will be final one. 6# At most one TPM 2.0 instance can be finally registered, and other will return unsupported. 7# 8# Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR> 9# This program and the accompanying materials 10# are licensed and made available under the terms and conditions of the BSD License 11# which accompanies this distribution. The full text of the license may be found at 12# http://opensource.org/licenses/bsd-license.php 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15# 16## 17 18[Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = Tpm2DeviceLibRouterPei 21 MODULE_UNI_FILE = Tpm2DeviceLibRouterPei.uni 22 FILE_GUID = 97CDCF04-4C8E-42fe-8015-11CC8A6E9D81 23 MODULE_TYPE = PEIM 24 VERSION_STRING = 1.0 25 LIBRARY_CLASS = Tpm2DeviceLib|PEIM 26 27# 28# The following information is for reference only and not required by the build tools. 29# 30# VALID_ARCHITECTURES = IA32 X64 IPF 31# 32 33[Sources] 34 Tpm2DeviceLibRouterPei.c 35 36[Packages] 37 MdePkg/MdePkg.dec 38 SecurityPkg/SecurityPkg.dec 39 40[LibraryClasses] 41 BaseLib 42 BaseMemoryLib 43 DebugLib 44 HobLib 45 PcdLib 46 47[Pcd] 48 gEfiSecurityPkgTokenSpaceGuid.PcdTpmInstanceGuid ## CONSUMES 49