]>
Commit | Line | Data |
---|---|---|
c1d93242 | 1 | ## @file\r |
60c944c7 DG |
2 | # Executes TPM 2.0 requests from OS or BIOS\r |
3 | #\r | |
4 | # This library will check and execute TPM 2.0 request from OS or BIOS. The request may\r | |
5 | # ask for user confirmation before execution.\r | |
c1d93242 JY |
6 | #\r |
7 | # Caution: This module requires additional review when modified.\r | |
8 | # This driver will have external input - variable.\r | |
9 | # This external input must be validated carefully to avoid security issue.\r | |
10 | #\r | |
4610b23a | 11 | # Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR>\r |
c1d93242 JY |
12 | # This program and the accompanying materials\r |
13 | # are licensed and made available under the terms and conditions of the BSD License\r | |
14 | # which accompanies this distribution. The full text of the license may be found at\r | |
15 | # http://opensource.org/licenses/bsd-license.php\r | |
16 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
17 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
18 | #\r | |
19 | ##\r | |
20 | \r | |
21 | [Defines]\r | |
22 | INF_VERSION = 0x00010005\r | |
60c944c7 DG |
23 | BASE_NAME = DxeTrEEPhysicalPresenceLib\r |
24 | MODULE_UNI_FILE = DxeTrEEPhysicalPresenceLib.uni\r | |
c1d93242 JY |
25 | FILE_GUID = 601ECB06-7874-489e-A280-805780F6C861\r |
26 | MODULE_TYPE = DXE_DRIVER\r | |
27 | VERSION_STRING = 1.0\r | |
28 | LIBRARY_CLASS = TrEEPhysicalPresenceLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION UEFI_DRIVER \r | |
29 | CONSTRUCTOR = TrEEPhysicalPresenceLibConstructor\r | |
30 | \r | |
31 | #\r | |
32 | # The following information is for reference only and not required by the build tools.\r | |
33 | #\r | |
34 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
35 | #\r | |
36 | \r | |
37 | [Sources]\r | |
38 | DxeTrEEPhysicalPresenceLib.c\r | |
39 | PhysicalPresenceStrings.uni\r | |
40 | \r | |
41 | [Packages]\r | |
42 | MdePkg/MdePkg.dec\r | |
43 | MdeModulePkg/MdeModulePkg.dec\r | |
44 | SecurityPkg/SecurityPkg.dec\r | |
45 | \r | |
46 | [LibraryClasses]\r | |
47 | MemoryAllocationLib\r | |
48 | UefiLib\r | |
49 | UefiBootServicesTableLib\r | |
50 | UefiDriverEntryPoint\r | |
51 | UefiRuntimeServicesTableLib\r | |
52 | BaseMemoryLib\r | |
53 | DebugLib\r | |
54 | PrintLib\r | |
55 | HiiLib\r | |
56 | Tpm2CommandLib\r | |
4610b23a | 57 | TrEEPpVendorLib\r |
c1d93242 JY |
58 | \r |
59 | [Protocols]\r | |
7921de09 LG |
60 | gEfiTrEEProtocolGuid ## SOMETIMES_CONSUMES\r |
61 | gEdkiiVariableLockProtocolGuid ## SOMETIMES_CONSUMES\r | |
c1d93242 JY |
62 | \r |
63 | [Guids]\r | |
7921de09 | 64 | ## SOMETIMES_CONSUMES ## HII\r |
60c944c7 DG |
65 | ## SOMETIMES_PRODUCES ## Variable:L"PhysicalPresence"\r |
66 | ## SOMETIMES_CONSUMES ## Variable:L"PhysicalPresence"\r | |
67 | ## SOMETIMES_PRODUCES ## Variable:L"PhysicalPresenceFlags"\r | |
68 | ## SOMETIMES_CONSUMES ## Variable:L"PhysicalPresenceFlags"\r | |
c1d93242 | 69 | gEfiTrEEPhysicalPresenceGuid\r |