EmulatorPkg[all]
0.1
|
Data Structures | |
struct | SMBIOS_TEMPLATE_ENTRY |
Functions | |
EFI_STATUS EFIAPI | SmbiosLibInitializeFromTemplate (IN SMBIOS_TEMPLATE_ENTRY *Template) |
EFI_STATUS EFIAPI | SmbiosLibCreateEntry (IN SMBIOS_STRUCTURE *SmbiosEntry, IN CHAR8 **StringArray) |
EFI_STATUS EFIAPI | SmbiosLibUpdateString (IN EFI_SMBIOS_HANDLE SmbiosHandle, IN SMBIOS_TABLE_STRING StringNumber, IN CHAR8 *String) |
EFI_STATUS EFIAPI | SmbiosLibUpdateUnicodeString (IN EFI_SMBIOS_HANDLE SmbiosHandle, IN SMBIOS_TABLE_STRING StringNumber, IN CHAR16 *String) |
CHAR8 *EFIAPI | SmbiosLibReadString (IN SMBIOS_STRUCTURE *Header, IN EFI_SMBIOS_STRING StringNumber) |
SMBIOS_STRUCTURE *EFIAPI | SmbiosLibGetRecord (IN EFI_SMBIOS_TYPE Type, IN UINTN Instance, OUT EFI_SMBIOS_HANDLE *SmbiosHandle) |
EFI_STATUS EFIAPI | SmbiosLibRemove (OUT EFI_SMBIOS_HANDLE SmbiosHandle) |
Variables | |
EFI_SMBIOS_PROTOCOL * | gSmbios |
Provides library functions for common SMBIOS operations. Only available to DXE and UEFI module types.
Copyright (c) 2012, Apple Inc. All rights reserved. Portitions Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
EFI_STATUS EFIAPI SmbiosLibCreateEntry | ( | IN SMBIOS_STRUCTURE * | SmbiosEntry, |
IN CHAR8 ** | StringArray | ||
) |
Create SMBIOS record.
Converts a fixed SMBIOS structure and an array of pointers to strings into an SMBIOS record where the strings are cat'ed on the end of the fixed record and terminated via a double NULL and add to SMBIOS table.
SMBIOS_TABLE_TYPE32 gSmbiosType12 = { { EFI_SMBIOS_TYPE_SYSTEM_CONFIGURATION_OPTIONS, sizeof (SMBIOS_TABLE_TYPE12), 0 }, 1 // StringCount }; CHAR8 *gSmbiosType12Strings[] = { "Not Found", NULL };
... AddSmbiosEntryFromTemplate ( (EFI_SMBIOS_TABLE_HEADER*)&gSmbiosType12, gSmbiosType12Strings );
SmbiosEntry | Fixed SMBIOS structure |
StringArray | Array of strings to convert to an SMBIOS string pack. NULL is OK. |
EFI_SUCCESS | New SmbiosEntry was added to SMBIOS table. |
EFI_OUT_OF_RESOURCES | SmbiosEntry was not added. |
SMBIOS_STRUCTURE* EFIAPI SmbiosLibGetRecord | ( | IN EFI_SMBIOS_TYPE | Type, |
IN UINTN | Instance, | ||
OUT EFI_SMBIOS_HANDLE * | SmbiosHandle | ||
) |
Allow the caller to discover a specific SMBIOS entry, and patch it if necissary.
[in] | Type | Type of the next SMBIOS record to return. |
in[ | Instance Instance of SMBIOS record 0 - N-1. | |
[out] | SmbiosHandle | Returns SMBIOS handle for the matching record. |
NULL | Instance of Type SMBIOS record was not found. |
Other | Pointer to matching SMBIOS record. |
EFI_STATUS EFIAPI SmbiosLibInitializeFromTemplate | ( | IN SMBIOS_TEMPLATE_ENTRY * | Template | ) |
Create an initial SMBIOS Table from an array of SMBIOS_TEMPLATE_ENTRY entries. SMBIOS_TEMPLATE_ENTRY.NULL indicates the end of the table.
Template | Array of SMBIOS_TEMPLATE_ENTRY entries. |
EFI_SUCCESS | New SMBIOS tables were created. |
EFI_OUT_OF_RESOURCES | New SMBIOS tables were not created. |
CHAR8* EFIAPI SmbiosLibReadString | ( | IN SMBIOS_STRUCTURE * | Header, |
IN EFI_SMBIOS_STRING | StringNumber | ||
) |
Allow caller to read a specific SMBIOS string
[in] | Header | SMBIOS record that contains the string. |
in[ | StringNumber Instance of SMBIOS string 1 - N. |
NULL | Instance of Type SMBIOS string was not found. |
Other | Pointer to matching SMBIOS string. |
EFI_STATUS EFIAPI SmbiosLibRemove | ( | OUT EFI_SMBIOS_HANDLE | SmbiosHandle | ) |
Remove an SMBIOS record.
This function removes an SMBIOS record using the handle specified by SmbiosHandle.
[in] | SmbiosHandle | The handle of the SMBIOS record to remove. |
EFI_SUCCESS | SMBIOS record was removed. |
EFI_INVALID_PARAMETER | SmbiosHandle does not specify a valid SMBIOS record. |
EFI_STATUS EFIAPI SmbiosLibUpdateString | ( | IN EFI_SMBIOS_HANDLE | SmbiosHandle, |
IN SMBIOS_TABLE_STRING | StringNumber, | ||
IN CHAR8 * | String | ||
) |
Update the string associated with an existing SMBIOS record.
This function allows the update of specific SMBIOS strings. The number of valid strings for any SMBIOS record is defined by how many strings were present when Add() was called.
[in] | SmbiosHandle | SMBIOS Handle of structure that will have its string updated. |
[in] | StringNumber | The non-zero string number of the string to update. |
[in] | String | Update the StringNumber string with String. |
EFI_SUCCESS | SmbiosHandle had its StringNumber String updated. |
EFI_INVALID_PARAMETER | SmbiosHandle does not exist. Or String is invalid. |
EFI_UNSUPPORTED | String was not added because it is longer than the SMBIOS Table supports. |
EFI_NOT_FOUND | The StringNumber.is not valid for this SMBIOS record. |
EFI_STATUS EFIAPI SmbiosLibUpdateUnicodeString | ( | IN EFI_SMBIOS_HANDLE | SmbiosHandle, |
IN SMBIOS_TABLE_STRING | StringNumber, | ||
IN CHAR16 * | String | ||
) |
Update the string associated with an existing SMBIOS record.
This function allows the update of specific SMBIOS strings. The number of valid strings for any SMBIOS record is defined by how many strings were present when Add() was called.
[in] | SmbiosHandle | SMBIOS Handle of structure that will have its string updated. |
[in] | StringNumber | The non-zero string number of the string to update. |
[in] | String | Update the StringNumber string with String. |
EFI_SUCCESS | SmbiosHandle had its StringNumber String updated. |
EFI_INVALID_PARAMETER | SmbiosHandle does not exist. Or String is invalid. |
EFI_UNSUPPORTED | String was not added because it is longer than the SMBIOS Table supports. |
EFI_NOT_FOUND | The StringNumber.is not valid for this SMBIOS record. |
EFI_SMBIOS_PROTOCOL* gSmbios |
Cache copy of the SMBIOS Protocol pointer