diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-12-12 09:04:38 +0100 |
---|---|---|
committer | Michał Żygowski <michal.zygowski@3mdeb.com> | 2022-06-20 10:50:41 +0000 |
commit | f6c100fbac742817b90bda3a6a2394fee6d420c1 (patch) | |
tree | 7a9ff8ec12d46dd223988873e217a1f095a0d7dd /src/include | |
parent | bb58c1e438afab7a7ad89423b84d248495fc7cc3 (diff) |
include/smbios.h: Update misc_slot_type and smbios_onboard_device_type
Update according to DSP0134: https://www.dmtf.org/standards/smbios
Change-Id: Iceccc672eaef0ad0bc0589797fa15d2a6a918918
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60057
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Diffstat (limited to 'src/include')
-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 |