Struct smbioslib::SMBiosEntryPoint64 [−][src]
pub struct SMBiosEntryPoint64 { /* fields omitted */ }
Expand description
SMBIOS 3.0 (64 bit) Entry Point structure
On non-UEFI systems, the 64-bit SMBIOS Entry Point structure can be located by application software by searching for the anchor-string on paragraph (16-byte) boundaries within the physical memory address range 000F0000h to 000FFFFFh.
On UEFI-based systems, the SMBIOS Entry Point structure can be located by looking in the EFI Configuration Table for the SMBIOS 3.x GUID (SMBIOS3_TABLE_GUID, {F2FD1544-9794-4A2C-992E836 E5BBCF20E394}) and using the associated pointer. See section 4.6 of the UEFI Specification for details. See section 2.3 of the UEFI Specification for how to report the containing memory type.
Implementations
Minimum acceptable size of this structure
TODO: Review DMTF SMBIOS document history and see if structure sizes smaller than 0x18 existed. If so then change this structure design to return Option<> values and adjust this size accordingly.
Anchor String “SM3” (offset 0)
Entry Point Structure Checksum Offset
Entry Point Length Offset
SMBIOS Major Version Offset
SMBIOS Minor Version Offset
SMBIOS Docrev
Entry Point Revision Offset
Structure Table Maximum Size Offset
Structure Table Address Offset
Entry Point Structure Checksum
Checksum of the Entry Point Structure (EPS)
This value, when added to all other bytes in the EPS, results in
the value 00h (using 8-bit addition calculations). Values in the
EPS are summed starting at offset 00h, for entry_point_length
bytes.
Entry Point Length
Length of the Entry Point Structure, starting with the Anchor String field, in bytes, currently 18h
SMBIOS Major Version
Major version of this specification implemented in the table structures (for example, the value is 0Ah (10) for revision 10.22 and 02h for revision 2.1)
SMBIOS Minor Version
Minor version of this specification implemented in the table structures (for example, the value is 16h (22) for revision 10.22 and 01h for revision 2.1)
SMBIOS Docrev
Identifies the docrev of this specification implemented in the table structures (for example, the value is 00h for revision 10.22.0 and 01h for revision 2.7.1).
Entry Point Revision
EPS revision implemented in this structure and identifies the formatting of offsets 0Bh and beyond as follows:
- 00h Reserved for assignment by this specification
- 01h Entry Point is based on SMBIOS 3.0 definition;
- 02h-FFh Reserved for assignment by this specification; offsets 0Ch-17h are defined per revision 01h
Structure Table Maximum Size
Maximum size of SMBIOS Structure Table, pointed to by the Structure Table Address, in bytes. The actual size is guaranteed to be less or equal to the maximum size.
Structure Table Address
The 64-bit physical starting address of the read-only SMBIOS Structure Table, which can start at any 64-bit address. This area contains all of the SMBIOS structures fully packed together
Load this structure from a file
pub fn try_scan_from_file<T: Iterator<Item = u64>>(
file: &mut File,
range: T
) -> Result<Self, Error> where
T: RangeBounds<u64>,
[src]
pub fn try_scan_from_file<T: Iterator<Item = u64>>(
file: &mut File,
range: T
) -> Result<Self, Error> where
T: RangeBounds<u64>,
[src]Load this structure by scanning a file within the given offsets, looking for the SMBiosEntryPoint64::SM3_ANCHOR string.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SMBiosEntryPoint64
impl Send for SMBiosEntryPoint64
impl Sync for SMBiosEntryPoint64
impl Unpin for SMBiosEntryPoint64
impl UnwindSafe for SMBiosEntryPoint64