]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Include/Guid/CcEventHob.h
SecurityPkg: Add definition of EFI_CC_EVENT_HOB_GUID
[mirror_edk2.git] / SecurityPkg / Include / Guid / CcEventHob.h
1 /** @file
2 Defines the HOB GUID used to pass a CC_EVENT from SEC to
3 a CC DXE Driver. A GUIDed HOB is generated for each measurement
4 made in the SEC Phase.
5
6 Copyright (c) 2021 - 2022, Intel Corporation. All rights reserved.<BR>
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef CC_EVENT_HOB_H_
12 #define CC_EVENT_HOB_H_
13
14 //
15 // The Global ID of a GUIDed HOB used to pass a CC_EVENT from SEC to a CC DXE Driver.
16 //
17 #define EFI_CC_EVENT_HOB_GUID \
18 { 0x20f8fd36, 0x6d00, 0x40fb, { 0xb7, 0x04, 0xd1, 0x2c, 0x15, 0x3c, 0x62, 0xeb } }
19
20 extern EFI_GUID gCcEventEntryHobGuid;
21
22 #endif