From b7da7d5263a710318e79fe8679b8368224f317c2 Mon Sep 17 00:00:00 2001 From: Jay Patel Date: Mon, 13 Mar 2023 11:29:59 -0700 Subject: arch/x86/smbios: Add socket type for Meteor Lake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add socket type for Meteor Lake as PROCESSOR_UPGRADE_OTHER. BUG=None TEST=processor upgrade is equal to "Other" for "dmidecode -t 4" Signed-off-by: Jay Patel Change-Id: If891990436a0679697e292b460eaec63c09e7bf8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73708 Tested-by: build bot (Jenkins) Reviewed-by: Bora Guvendik Reviewed-by: Jérémy Compostella Reviewed-by: Eric Lai --- src/arch/x86/smbios.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index f094825a51..188fb4256f 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -407,6 +407,8 @@ static int get_socket_type(void) return PROCESSOR_UPGRADE_SOCKET_LGA775; if (CONFIG(SOC_INTEL_ALDERLAKE)) return PROCESSOR_UPGRADE_SOCKET_LGA1700; + if (CONFIG(SOC_INTEL_METEORLAKE)) + return PROCESSOR_UPGRADE_OTHER; if (CONFIG(SOC_INTEL_SKYLAKE_SP)) return PROCESSOR_UPGRADE_SOCKET_LGA3647_1; if (CONFIG(SOC_INTEL_COOPERLAKE_SP)) -- cgit v1.2.3