HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60057 )
Change subject: include/smbios.h: Update misc_slot_type and smbios_onboard_device_type ......................................................................
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 --- M src/include/smbios.h 1 file changed, 13 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/60057/1
diff --git a/src/include/smbios.h b/src/include/smbios.h index c11fc6c..605840d 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -730,7 +730,13 @@ 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 @@ 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