diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2024-10-14 09:07:47 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-10-16 15:27:31 +0000 |
commit | ad0d2cad8b6c6cc8f4f5e1cc698a597251638036 (patch) | |
tree | 44b44cf55b7921e63e2ce9422e46f180efa93297 /src | |
parent | 1d18513ad5d10034effb0b10e7db11487fa7e6cf (diff) |
smbios: Add slot types
Add slot types found in SMBIOS spec 3.8.0.
Change-Id: I705529efcbf2add420fb6f4a720ec33444d46efa
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84760
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/include/smbios.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h index b5b9e7a83f..fd44e098d4 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -870,7 +870,10 @@ enum misc_slot_type { SlotTypePciExpressGen5x2 = 0xC0, SlotTypePciExpressGen5x4 = 0xC1, SlotTypePciExpressGen5x8 = 0xC2, - SlotTypePciExpressGen5x16 = 0xC3 + SlotTypePciExpressGen5x16 = 0xC3, + SlotTypePciExpressGen6AndBeyond = 0xC4, + SlotTypeEDSFF_E1 = 0xC5, + SlotTypeEDSFF_E3 = 0xC6, }; /* System Slots - Slot Data Bus Width. */ |