Blame SOURCES/0001-dmidecode-Add-new-system-slot-types-from-SMBIOS-spec.patch

c46e21
From 0d40ff02f2ae692c34cfd63b0617abf66ea58c5e Mon Sep 17 00:00:00 2001
c46e21
From: Jean Delvare <jdelvare@suse.de>
c46e21
Date: Wed, 21 Oct 2020 15:24:40 +0200
c46e21
Subject: [PATCH 1/2] dmidecode: Add new system slot types from SMBIOS spec
c46e21
 3.4.0
c46e21
c46e21
Based on an earlier patch from Prabhakar Pujeri (Dell).
c46e21
c46e21
Version 3.4.0 of the SMBIOS specification adds 14 new system slot
c46e21
types and updates 2 (DMI type 9).
c46e21
c46e21
Signed-off-by: Jean Delvare <jdelvare@suse.de>
c46e21
Signed-off-by: Lianbo Jiang <lijiang@redhat.com>
c46e21
---
c46e21
 dmidecode.c | 26 ++++++++++++++++++++------
c46e21
 1 file changed, 20 insertions(+), 6 deletions(-)
c46e21
c46e21
diff --git a/dmidecode.c b/dmidecode.c
c46e21
index 981fe9697458..0e480d3e337b 100644
c46e21
--- a/dmidecode.c
c46e21
+++ b/dmidecode.c
c46e21
@@ -1931,11 +1931,16 @@ static const char *dmi_slot_type(u8 code)
c46e21
 		"MXM Type IV",
c46e21
 		"MXM 3.0 Type A",
c46e21
 		"MXM 3.0 Type B",
c46e21
-		"PCI Express 2 SFF-8639",
c46e21
-		"PCI Express 3 SFF-8639",
c46e21
+		"PCI Express 2 SFF-8639 (U.2)",
c46e21
+		"PCI Express 3 SFF-8639 (U.2)",
c46e21
 		"PCI Express Mini 52-pin with bottom-side keep-outs",
c46e21
 		"PCI Express Mini 52-pin without bottom-side keep-outs",
c46e21
-		"PCI Express Mini 76-pin" /* 0x23 */
c46e21
+		"PCI Express Mini 76-pin"
c46e21
+		"PCI Express 4 SFF-8639 (U.2)",
c46e21
+		"PCI Express 5 SFF-8639 (U.2)",
c46e21
+		"OCP NIC 3.0 Small Form Factor (SFF)",
c46e21
+		"OCP NIC 3.0 Large Form Factor (LFF)",
c46e21
+		"OCP NIC Prior to 3.0" /* 0x28 */
c46e21
 	};
c46e21
 	static const char *type_0x30[] = {
c46e21
 		"CXL FLexbus 1.0" /* 0x30 */
c46e21
@@ -1970,18 +1975,27 @@ static const char *dmi_slot_type(u8 code)
c46e21
 		"PCI Express 4 x2",
c46e21
 		"PCI Express 4 x4",
c46e21
 		"PCI Express 4 x8",
c46e21
-		"PCI Express 4 x16" /* 0xBD */
c46e21
+		"PCI Express 4 x16",
c46e21
+		"PCI Express 5",
c46e21
+		"PCI Express 5 x1",
c46e21
+		"PCI Express 5 x2",
c46e21
+		"PCI Express 5 x4",
c46e21
+		"PCI Express 5 x8",
c46e21
+		"PCI Express 5 x16",
c46e21
+		"PCI Express 6+",
c46e21
+		"EDSFF E1",
c46e21
+		"EDSFF E3" /* 0xC6 */
c46e21
 	};
c46e21
 	/*
c46e21
 	 * Note to developers: when adding entries to these lists, check if
c46e21
 	 * function dmi_slot_id below needs updating too.
c46e21
 	 */
c46e21
 
c46e21
-	if (code >= 0x01 && code <= 0x23)
c46e21
+	if (code >= 0x01 && code <= 0x28)
c46e21
 		return type[code - 0x01];
c46e21
 	if (code == 0x30)
c46e21
 		return type_0x30[code - 0x30];
c46e21
-	if (code >= 0xA0 && code <= 0xBD)
c46e21
+	if (code >= 0xA0 && code <= 0xC6)
c46e21
 		return type_0xA0[code - 0xA0];
c46e21
 	return out_of_spec;
c46e21
 }
c46e21
-- 
c46e21
2.17.1
c46e21