From f6c100fbac742817b90bda3a6a2394fee6d420c1 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 12 Dec 2021 09:04:38 +0100 Subject: [PATCH] include/smbios.h: Update misc_slot_type and smbios_onboard_device_type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update according to DSP0134: https://www.dmtf.org/standards/smbios Change-Id: Iceccc672eaef0ad0bc0589797fa15d2a6a918918 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/coreboot/+/60057 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Michał Żygowski --- src/include/smbios.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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