diff options
author | Jay Patel <jay2.patel@intel.com> | 2023-03-13 11:29:59 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-29 13:19:32 +0000 |
commit | b7da7d5263a710318e79fe8679b8368224f317c2 (patch) | |
tree | 1af957e137b3f92d22ef91006d59433dbabe0948 /src/arch/x86/smbios.c | |
parent | 252e7c5d7190ab6ae6cc8805036ef52a763405ce (diff) |
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>
Diffstat (limited to 'src/arch/x86/smbios.c')
-rw-r--r-- | src/arch/x86/smbios.c | 2 |
1 files changed, 2 insertions, 0 deletions
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)) |