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