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>
This commit is contained in:
parent
bb58c1e438
commit
f6c100fbac
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue