Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63653 )
Change subject: include/smbios.h: Add PCIe Gen5 slot type definitions ......................................................................
include/smbios.h: Add PCIe Gen5 slot type definitions
Add PCI Express Gen5 slot type definitions from DMTF SMBIOS specification 3.5.0.
Signed-off-by: Michał Żygowski michal.zygowski@3mdeb.com Change-Id: I46e07feb23bdd6ac9f145a649b77a88db1c08624 --- M src/include/smbios.h 1 file changed, 7 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/63653/1
diff --git a/src/include/smbios.h b/src/include/smbios.h index c11fc6c..4e53771 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. */