2011-09-02 09:49:32 +02:00
|
|
|
## @file
|
2014-08-28 07:31:09 +02:00
|
|
|
# Produces a PPI to indicate whether to lock TPM in PEI phase
|
2011-09-02 09:49:32 +02:00
|
|
|
#
|
2014-08-28 07:31:09 +02:00
|
|
|
# This module produces PEI_LOCK_PHYSICAL_PRESENCE_PPI to indicate whether
|
2018-06-27 15:13:09 +02:00
|
|
|
# TPM physical presence needs to be locked. It can be replaced by a
|
2014-08-28 07:31:09 +02:00
|
|
|
# platform specific module.
|
|
|
|
#
|
2018-06-27 15:13:09 +02:00
|
|
|
# Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
|
2011-09-02 09:49:32 +02:00
|
|
|
# This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = PhysicalPresencePei
|
2014-08-28 07:31:09 +02:00
|
|
|
MODULE_UNI_FILE = PhysicalPresencePei.uni
|
2011-09-02 09:49:32 +02:00
|
|
|
FILE_GUID = 4FE772E8-FE3E-4086-B638-8C493C490488
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
ENTRY_POINT = PeimEntry
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:33:44 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
2011-09-02 09:49:32 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
PhysicalPresencePei.c
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
SecurityPkg/SecurityPkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PeimEntryPoint
|
|
|
|
PeiServicesLib
|
|
|
|
|
|
|
|
[Ppis]
|
2014-08-28 07:31:09 +02:00
|
|
|
gPeiLockPhysicalPresencePpiGuid ## PRODUCES
|
|
|
|
gEfiPeiReadOnlyVariable2PpiGuid ## CONSUMES
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
[Guids]
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiPhysicalPresenceGuid ## SOMETIMES_CONSUMES ## Variable:L"PhysicalPresence"
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
[Pcd]
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiSecurityPkgTokenSpaceGuid.PcdTpmPhysicalPresence ## SOMETIMES_CONSUMES
|
2011-09-02 09:49:32 +02:00
|
|
|
|
2018-06-27 15:13:09 +02:00
|
|
|
[Depex]
|
2011-09-02 09:49:32 +02:00
|
|
|
gEfiPeiMemoryDiscoveredPpiGuid AND
|
|
|
|
gEfiPeiReadOnlyVariable2PpiGuid AND
|
|
|
|
gPeiTpmInitializedPpiGuid
|
2014-08-28 07:31:09 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
PhysicalPresencePeiExtra.uni
|
2018-06-27 15:13:09 +02:00
|
|
|
|