xref: /illumos-gate/usr/src/boot/efi/include/Guid/SmBios.h (revision f334afcfaebea1b7dc3430015651d8d748fa8a3e)
1*f334afcfSToomas Soome /** @file
2*f334afcfSToomas Soome   GUIDs used to locate the SMBIOS tables in the UEFI 2.5 system table.
3*f334afcfSToomas Soome 
4*f334afcfSToomas Soome   These GUIDs in the system table are the only legal ways to search for and
5*f334afcfSToomas Soome   locate the SMBIOS tables. Do not search the 0xF0000 segment to find SMBIOS
6*f334afcfSToomas Soome   tables.
7*f334afcfSToomas Soome 
8*f334afcfSToomas Soome   Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
9*f334afcfSToomas Soome   SPDX-License-Identifier: BSD-2-Clause-Patent
10*f334afcfSToomas Soome 
11*f334afcfSToomas Soome   @par Revision Reference:
12*f334afcfSToomas Soome   GUIDs defined in UEFI 2.5 spec.
13*f334afcfSToomas Soome 
14*f334afcfSToomas Soome **/
15*f334afcfSToomas Soome 
16*f334afcfSToomas Soome #ifndef __SMBIOS_GUID_H__
17*f334afcfSToomas Soome #define __SMBIOS_GUID_H__
18*f334afcfSToomas Soome 
19*f334afcfSToomas Soome #define SMBIOS_TABLE_GUID \
20*f334afcfSToomas Soome   { \
21*f334afcfSToomas Soome     0xeb9d2d31, 0x2d88, 0x11d3, {0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
22*f334afcfSToomas Soome   }
23*f334afcfSToomas Soome 
24*f334afcfSToomas Soome #define SMBIOS3_TABLE_GUID \
25*f334afcfSToomas Soome   { \
26*f334afcfSToomas Soome     0xf2fd1544, 0x9794, 0x4a2c, {0x99, 0x2e, 0xe5, 0xbb, 0xcf, 0x20, 0xe3, 0x94 } \
27*f334afcfSToomas Soome   }
28*f334afcfSToomas Soome 
29*f334afcfSToomas Soome extern EFI_GUID  gEfiSmbiosTableGuid;
30*f334afcfSToomas Soome extern EFI_GUID  gEfiSmbios3TableGuid;
31*f334afcfSToomas Soome 
32*f334afcfSToomas Soome #endif
33