1 /** @file 2 TPM instance guid, used for PcdTpmInstanceGuid. 3 4 Copyright (c) 2013, Intel Corporation. All rights reserved. <BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 **/ 14 15 #ifndef __TPM_INSTANCE_GUID_H__ 16 #define __TPM_INSTANCE_GUID_H__ 17 18 #define TPM_DEVICE_INTERFACE_NONE \ 19 { 0x00000000, 0x0000, 0x0000, { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } } 20 21 #define TPM_DEVICE_INTERFACE_TPM12 \ 22 { 0x8b01e5b6, 0x4f19, 0x46e8, { 0xab, 0x93, 0x1c, 0x53, 0x67, 0x1b, 0x90, 0xcc } } 23 24 #define TPM_DEVICE_INTERFACE_TPM20_DTPM \ 25 { 0x286bf25a, 0xc2c3, 0x408c, { 0xb3, 0xb4, 0x25, 0xe6, 0x75, 0x8b, 0x73, 0x17 } } 26 27 extern EFI_GUID gEfiTpmDeviceInstanceNoneGuid; 28 extern EFI_GUID gEfiTpmDeviceInstanceTpm12Guid; 29 extern EFI_GUID gEfiTpmDeviceInstanceTpm20DtpmGuid; 30 31 32 #define TPM_DEVICE_SELECTED_GUID \ 33 { 0x7f4158d3, 0x74d, 0x456d, { 0x8c, 0xb2, 0x1, 0xf9, 0xc8, 0xf7, 0x9d, 0xaa } } 34 35 extern EFI_GUID gEfiTpmDeviceSelectedGuid; 36 37 #endif 38 39