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>
This commit is contained in:
Jay Patel 2023-03-13 11:29:59 -07:00 committed by Felix Held
parent 252e7c5d71
commit b7da7d5263
1 changed files with 2 additions and 0 deletions

View File

@ -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))