aboutsummaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2020-12-29 14:37:54 +0000
committerMichael Brown <mcb30@ipxe.org>2020-12-29 14:41:50 +0000
commitdced22d6dee346ac4d98502c9008fd3d5c6197d2 (patch)
tree6d01b40c5cafc6b1a9962b097ec54d439c8807ad /src/include
parent485f8ce5547f5c165b4eeecb388bc7e1ce5cad12 (diff)
downloadipxe-dced22d6dee346ac4d98502c9008fd3d5c6197d2.tar.gz
[smbios] Add support for the 64-bit SMBIOS3 entry point
Support UEFI systems that provide only 64-bit versions of the SMBIOS entry point. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ipxe/smbios.h51
1 files changed, 47 insertions, 4 deletions
diff --git a/src/include/ipxe/smbios.h b/src/include/ipxe/smbios.h
index c1d8fea3e..53fbd8cb8 100644
--- a/src/include/ipxe/smbios.h
+++ b/src/include/ipxe/smbios.h
@@ -31,15 +31,20 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
/* Include all architecture-dependent SMBIOS API headers */
#include <bits/smbios.h>
-/** Signature for SMBIOS entry point */
+/** Signature for 32-bit SMBIOS entry point */
#define SMBIOS_SIGNATURE \
( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '_' << 24 ) )
+/** Signature for 64-bit SMBIOS entry point */
+#define SMBIOS3_SIGNATURE \
+ ( ( '_' << 0 ) + ( 'S' << 8 ) + ( 'M' << 16 ) + ( '3' << 24 ) )
+
/**
- * SMBIOS entry point
+ * SMBIOS 32-bit entry point
*
- * This is the single table which describes the list of SMBIOS
- * structures. It is located by scanning through the BIOS segment.
+ * This is the 32-bit version of the table which describes the list of
+ * SMBIOS structures. It may be located by scanning through the BIOS
+ * segment or via an EFI configuration table.
*/
struct smbios_entry {
/** Signature
@@ -75,6 +80,41 @@ struct smbios_entry {
uint8_t bcd_revision;
} __attribute__ (( packed ));
+/**
+ * SMBIOS 64-bit entry point
+ *
+ * This is the 64-bit version of the table which describes the list of
+ * SMBIOS structures. It may be located by scanning through the BIOS
+ * segment or via an EFI configuration table.
+ */
+struct smbios3_entry {
+ /** Signature
+ *
+ * Must be equal to SMBIOS3_SIGNATURE
+ */
+ uint32_t signature;
+ /** Signature extra byte */
+ uint8_t extra;
+ /** Checksum */
+ uint8_t checksum;
+ /** Length */
+ uint8_t len;
+ /** Major version */
+ uint8_t major;
+ /** Minor version */
+ uint8_t minor;
+ /** Documentation revision */
+ uint8_t docrev;
+ /** Entry point revision */
+ uint8_t revision;
+ /** Reserved */
+ uint8_t reserved;
+ /** Structure table length */
+ uint32_t smbios_len;
+ /** Structure table address */
+ uint64_t smbios_address;
+} __attribute__ (( packed ));
+
/** An SMBIOS structure header */
struct smbios_header {
/** Type */
@@ -155,6 +195,9 @@ struct smbios_enclosure_information {
/** SMBIOS OEM strings structure type */
#define SMBIOS_TYPE_OEM_STRINGS 11
+/** SMBIOS end of table type */
+#define SMBIOS_TYPE_END 127
+
/**
* SMBIOS entry point descriptor
*