]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Include/Guid/MeasuredFvHob.h
SecurityPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / SecurityPkg / Include / Guid / MeasuredFvHob.h
1 /** @file
2 Defines the HOB GUID used to pass all PEI measured FV info to
3 DXE Driver.
4
5 Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _MEASURED_FV_HOB_H_
11 #define _MEASURED_FV_HOB_H_
12
13 #include <IndustryStandard/UefiTcgPlatform.h>
14
15 ///
16 /// The Global ID of a GUIDed HOB used to pass all PEI measured FV info to DXE Driver.
17 ///
18 #define EFI_MEASURED_FV_HOB_GUID \
19 { \
20 0xb2360b42, 0x7173, 0x420a, { 0x86, 0x96, 0x46, 0xca, 0x6b, 0xab, 0x10, 0x60 } \
21 }
22
23 extern EFI_GUID gMeasuredFvHobGuid;
24
25 typedef struct {
26 UINT32 Num;
27 EFI_PLATFORM_FIRMWARE_BLOB MeasuredFvBuf[1];
28 } MEASURED_HOB_DATA;
29
30 #endif