MeasuredFvHob.h 742 B

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