summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Patel <jay2.patel@intel.com>2023-03-13 11:29:59 -0700
committerFelix Held <felix-coreboot@felixheld.de>2023-03-29 13:19:32 +0000
commitb7da7d5263a710318e79fe8679b8368224f317c2 (patch)
tree1af957e137b3f92d22ef91006d59433dbabe0948
parent252e7c5d7190ab6ae6cc8805036ef52a763405ce (diff)
downloadcoreboot-b7da7d5263a710318e79fe8679b8368224f317c2.tar.gz
coreboot-b7da7d5263a710318e79fe8679b8368224f317c2.tar.bz2
coreboot-b7da7d5263a710318e79fe8679b8368224f317c2.zip
arch/x86/smbios: Add socket type for Meteor Lake
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 <jay2.patel@intel.com> Change-Id: If891990436a0679697e292b460eaec63c09e7bf8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73708 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Bora Guvendik <bora.guvendik@intel.com> Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r--src/arch/x86/smbios.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index f094825a51f1..188fb4256f37 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))