diff options
-rw-r--r-- | src/include/smbios.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h index c11fc6c658..605840d5a1 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -730,7 +730,13 @@ enum misc_slot_type { SlotTypePciExpressGen4x2 = 0xBA, SlotTypePciExpressGen4x4 = 0xBB, SlotTypePciExpressGen4x8 = 0xBC, - SlotTypePciExpressGen4x16 = 0xBD + SlotTypePciExpressGen4x16 = 0xBD, + SlotTypePciExpressGen5 = 0xBE, + SlotTypePciExpressGen5x1 = 0xBF, + SlotTypePciExpressGen5x2 = 0xC0, + SlotTypePciExpressGen5x4 = 0xC1, + SlotTypePciExpressGen5x8 = 0xC2, + SlotTypePciExpressGen5x16 = 0xC3 }; /* System Slots - Slot Data Bus Width. */ @@ -947,6 +953,12 @@ typedef enum { SMBIOS_DEVICE_TYPE_PATA, SMBIOS_DEVICE_TYPE_SATA, SMBIOS_DEVICE_TYPE_SAS, + SMBIOS_DEVICE_TYPE_WIRELESS_LAN, + SMBIOS_DEVICE_TYPE_BLUETOOTH, + SMBIOS_DEVICE_TYPE_WWAN, + SMBIOS_DEVICE_TYPE_EMMC, + SMBIOS_DEVICE_TYPE_NVME, + SMBIOS_DEVICE_TYPE_UFS, } smbios_onboard_device_type; #define SMBIOS_DEVICE_TYPE_COUNT 10 |