From f1a67f89240eaf8757736b132d0b2a384996d6fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Fri, 15 Apr 2022 18:12:33 +0200 Subject: [PATCH] include/smbios.h: Add PCIe Gen5 slot type definitions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add PCI Express Gen5 slot type definitions from DMTF SMBIOS specification 3.5.0. Signed-off-by: Michał Żygowski Change-Id: I46e07feb23bdd6ac9f145a649b77a88db1c08624 --- src/include/smbios.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/include/smbios.h b/src/include/smbios.h index c11fc6c658..4e53771994 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. */