mirror of https://github.com/acidanthera/audk.git
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
/** @file
|
|
Defines the HOB GUID used to pass a TCG_PCR_EVENT from a TPM PEIM to
|
|
a TPM DXE Driver. A GUIDed HOB is generated for each measurement
|
|
made in the PEI Phase.
|
|
|
|
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
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.
|
|
|
|
**/
|
|
|
|
#ifndef _TCG_EVENT_HOB_H_
|
|
#define _TCG_EVENT_HOB_H_
|
|
|
|
///
|
|
/// The Global ID of a GUIDed HOB used to pass a TCG_PCR_EVENT from a TPM PEIM to a TPM DXE Driver.
|
|
///
|
|
#define EFI_TCG_EVENT_HOB_GUID \
|
|
{ \
|
|
0x2e3044ac, 0x879f, 0x490f, {0x97, 0x60, 0xbb, 0xdf, 0xaf, 0x69, 0x5f, 0x50 } \
|
|
}
|
|
|
|
extern EFI_GUID gTcgEventEntryHobGuid;
|
|
|
|
#endif
|