xref: /illumos-gate/usr/src/boot/efi/include/Guid/Mps.h (revision f334afcfaebea1b7dc3430015651d8d748fa8a3e)
1*f334afcfSToomas Soome /** @file
2*f334afcfSToomas Soome   GUIDs used for MPS entries in the UEFI 2.0 system table
3*f334afcfSToomas Soome   ACPI is the primary means of exporting MPS information to the OS. MPS only was
4*f334afcfSToomas Soome   included to support Itanium-based platform power on. So don't use it if you don't have too.
5*f334afcfSToomas Soome 
6*f334afcfSToomas Soome   Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
7*f334afcfSToomas Soome   SPDX-License-Identifier: BSD-2-Clause-Patent
8*f334afcfSToomas Soome 
9*f334afcfSToomas Soome   @par Revision Reference:
10*f334afcfSToomas Soome   GUIDs defined in UEFI 2.0 spec.
11*f334afcfSToomas Soome 
12*f334afcfSToomas Soome **/
13*f334afcfSToomas Soome 
14*f334afcfSToomas Soome #ifndef __MPS_GUID_H__
15*f334afcfSToomas Soome #define __MPS_GUID_H__
16*f334afcfSToomas Soome 
17*f334afcfSToomas Soome #define EFI_MPS_TABLE_GUID \
18*f334afcfSToomas Soome   { \
19*f334afcfSToomas Soome     0xeb9d2d2f, 0x2d88, 0x11d3, {0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
20*f334afcfSToomas Soome   }
21*f334afcfSToomas Soome 
22*f334afcfSToomas Soome //
23*f334afcfSToomas Soome // GUID name defined in spec.
24*f334afcfSToomas Soome //
25*f334afcfSToomas Soome #define MPS_TABLE_GUID  EFI_MPS_TABLE_GUID
26*f334afcfSToomas Soome 
27*f334afcfSToomas Soome extern EFI_GUID  gEfiMpsTableGuid;
28*f334afcfSToomas Soome 
29*f334afcfSToomas Soome #endif
30