Commit | Line | Data |
---|---|---|
f7c11c53 MK |
1 | /** @file\r |
2 | \r | |
3 | Defines the HOB GUID used to describe the MSEG memory region allocated in PEI.\r | |
4 | \r | |
5 | Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>\r | |
6 | This program and the accompanying materials\r | |
7 | are licensed and made available under the terms and conditions of the BSD License\r | |
8 | which accompanies this distribution. The full text of the license may be found at\r | |
9 | http://opensource.org/licenses/bsd-license.php.\r | |
10 | \r | |
11 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | \r | |
14 | **/\r | |
15 | \r | |
16 | #ifndef _MSEG_SMRAM_H_\r | |
17 | #define _MSEG_SMRAM_H_\r | |
18 | \r | |
19 | #define MSEG_SMRAM_GUID \\r | |
20 | { \\r | |
21 | 0x5802bce4, 0xeeee, 0x4e33, { 0xa1, 0x30, 0xeb, 0xad, 0x27, 0xf0, 0xe4, 0x39 } \\r | |
22 | }\r | |
23 | \r | |
24 | extern EFI_GUID gMsegSmramGuid;\r | |
25 | \r | |
26 | //\r | |
27 | // The data portion of this HOB is type EFI_SMRAM_DESCRIPTOR\r | |
28 | //\r | |
29 | \r | |
30 | #endif\r |