dmidecode-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dmidecode] [PATCH v2] Support new byte value of Processor Upgrade field


From: Coiby Xu
Subject: [dmidecode] [PATCH v2] Support new byte value of Processor Upgrade field from SMBIOS 3.5.0
Date: Thu, 21 Oct 2021 15:35:19 +0800

Intel(R) 4th Generation Xeon Scalable 'Sapphire Rapids' processors
have byte value 3Fh which means Socket LGA4677 for Processor
Information - Processor Upgrade field.

Signed-off-by: Coiby Xu <coxu@redhat.com>
---
 dmidecode.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dmidecode.c b/dmidecode.c
index 0b44182..3147d4d 100644
--- a/dmidecode.c
+++ b/dmidecode.c
@@ -1394,10 +1394,11 @@ static const char *dmi_processor_upgrade(u8 code)
                "Socket BGA1510",
                "Socket BGA1528",
                "Socket LGA4189",
-               "Socket LGA1200" /* 0x3E */
+               "Socket LGA1200",
+               "Socket LGA4677" /* 0x3F */
        };
 
-       if (code >= 0x01 && code <= 0x3E)
+       if (code >= 0x01 && code <= 0x3F)
                return upgrade[code - 0x01];
        return out_of_spec;
 }
-- 
2.31.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]