MsegSmram.h 521 B

123456789101112131415161718192021222324
  1. /** @file
  2. Defines the HOB GUID used to describe the MSEG memory region allocated in PEI.
  3. Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _MSEG_SMRAM_H_
  7. #define _MSEG_SMRAM_H_
  8. #define MSEG_SMRAM_GUID \
  9. { \
  10. 0x5802bce4, 0xeeee, 0x4e33, { 0xa1, 0x30, 0xeb, 0xad, 0x27, 0xf0, 0xe4, 0x39 } \
  11. }
  12. extern EFI_GUID gMsegSmramGuid;
  13. //
  14. // The data portion of this HOB is type EFI_SMRAM_DESCRIPTOR
  15. //
  16. #endif