diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-10-08 16:13:34 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-10-09 10:39:26 +0000 |
commit | 5d0942baa28141de0b4ad7dcd76cc3aba5964b1f (patch) | |
tree | 49aa6bf6e77fa7eb0e5b96a8322dd1484bf85a7c | |
parent | 6c244bd4dd2b72690e74e2f721efe9cba6c8f26f (diff) |
SMBIOS: (Type 9) Add PCI Express Gen 4 values
Change-Id: I616a435d80715bee6f7530d7318319556a7580e7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35890
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r-- | src/include/smbios.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h index 0bba0a7f9e..424718313d 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -550,7 +550,13 @@ enum misc_slot_type { SlotTypePciExpressGen3X2 = 0xB3, SlotTypePciExpressGen3X4 = 0xB4, SlotTypePciExpressGen3X8 = 0xB5, - SlotTypePciExpressGen3X16 = 0xB6 + SlotTypePciExpressGen3X16 = 0xB6, + SlotTypePciExpressGen4 = 0xB8, + SlotTypePciExpressGen4x1 = 0xB9, + SlotTypePciExpressGen4x2 = 0xBA, + SlotTypePciExpressGen4x4 = 0xBB, + SlotTypePciExpressGen4x8 = 0xBC, + SlotTypePciExpressGen4x16 = 0xBD }; /* System Slots - Slot Data Bus Width. */ |