1## @file
2#  Produces a PPI to indicate whether to lock TPM in PEI phase
3#
4#  This module produces PEI_LOCK_PHYSICAL_PRESENCE_PPI to indicate whether
5#  TPM physical presence needs to be locked. It can be replaced by a
6#  platform specific module.
7#
8# Copyright (c) 2005 - 2014, 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
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = PhysicalPresencePei
22  MODULE_UNI_FILE                = PhysicalPresencePei.uni
23  FILE_GUID                      = 4FE772E8-FE3E-4086-B638-8C493C490488
24  MODULE_TYPE                    = PEIM
25  VERSION_STRING                 = 1.0
26
27  ENTRY_POINT                    = PeimEntry
28
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32 X64 IPF
33#
34
35[Sources]
36  PhysicalPresencePei.c
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41  SecurityPkg/SecurityPkg.dec
42
43[LibraryClasses]
44  PeimEntryPoint
45  PeiServicesLib
46
47[Ppis]
48  gPeiLockPhysicalPresencePpiGuid                       ## PRODUCES
49  gEfiPeiReadOnlyVariable2PpiGuid                       ## CONSUMES
50
51[Guids]
52  gEfiPhysicalPresenceGuid                              ## SOMETIMES_CONSUMES    ## Variable:L"PhysicalPresence"
53
54[Pcd]
55  gEfiSecurityPkgTokenSpaceGuid.PcdTpmPhysicalPresence  ## SOMETIMES_CONSUMES
56
57[Depex]
58  gEfiPeiMemoryDiscoveredPpiGuid AND
59  gEfiPeiReadOnlyVariable2PpiGuid AND
60  gPeiTpmInitializedPpiGuid
61
62[UserExtensions.TianoCore."ExtraFiles"]
63  PhysicalPresencePeiExtra.uni
64