1## @file
2#  Provides a DTPM instance for TPM 2.0 TIS/PTP.
3#
4#  This library can be registered to Tpm 2.0 device router, to be active TPM 2.0
5#  engine, based on platform setting. It supports both TIS (TPM Interface Specification)
6#  and PTP (Platform TPM Profile) functions.
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                      = Tpm2InstanceLibDTpm
21  MODULE_UNI_FILE                = Tpm2InstanceLibDTpm.uni
22  FILE_GUID                      = 286BF25A-C2C3-408c-B3B4-25E6758B7317
23  MODULE_TYPE                    = BASE
24  VERSION_STRING                 = 1.0
25  LIBRARY_CLASS                  = NULL
26  CONSTRUCTOR                    = Tpm2InstanceLibDTpmConstructor
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64 IPF
32#
33
34[Sources]
35  Tpm2Tis.c
36  Tpm2Ptp.c
37  Tpm2InstanceLibDTpm.c
38
39[Packages]
40  MdePkg/MdePkg.dec
41  SecurityPkg/SecurityPkg.dec
42
43[LibraryClasses]
44  BaseLib
45  BaseMemoryLib
46  IoLib
47  TimerLib
48  DebugLib
49
50[Pcd]
51  gEfiSecurityPkgTokenSpaceGuid.PcdTpmBaseAddress        ## CONSUMES
52