blob: 94301b465c0ba09fac046d612626c45dcf073fb9 [file] [log] [blame]
Ronak Kanabar1ae366f2023-06-07 01:21:56 +05301/** @file
2
3 Defines the HOB GUID used to describe the MSEG memory region allocated in PEI.
4
5 Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#ifndef _MSEG_SMRAM_H_
11#define _MSEG_SMRAM_H_
12
13#define MSEG_SMRAM_GUID \
14 { \
15 0x5802bce4, 0xeeee, 0x4e33, { 0xa1, 0x30, 0xeb, 0xad, 0x27, 0xf0, 0xe4, 0x39 } \
16 }
17
18extern EFI_GUID gMsegSmramGuid;
19
20//
21// The data portion of this HOB is type EFI_SMRAM_DESCRIPTOR
22//
23
24#endif