From 9495063993e32345b138fa99631d03309f3506f1 Mon Sep 17 00:00:00 2001 From: Zhixing Ma Date: Mon, 13 Jan 2025 13:20:12 -0800 Subject: [PATCH] mainboard/google/fatcat: Fix SMBIOS Processor upgrade info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current SMBIOS for fatcat is missing processor upgrade information. This patch adds the missing value by enabling kconfig flag CPU_INTEL_SOCKET_OTHER. Refer to SMBIOS spec sheet for documentation on cpu socket values: https://web.archive.org/web/20221012222420/https://www.dmtf.org/sites/default/files/standards/documents/DSP0134_3.6.0.pdf Output of dmidecode: Handle 0x0004, DMI type 4, 48 bytes Processor Information Socket Designation: CPU0 Type: Central Processor Family: Pentium Pro Manufacturer: GenuineIntel ID: C0 06 0C 00 FF FB EB BF Signature: Type 0, Family 6, Model 204, Stepping 0 Flags: ... Version: Genuine Intel(R) 0000 Voltage: Unknown External Clock: 100 MHz Max Speed: 3200 MHz Current Speed: 3000 MHz Status: Populated, Enabled - Upgrade: Unknown + Upgrade: Other BUG=NONE TEST=Boot and verified that SMBIOS processor upgrade value is correct. Change-Id: Ica92d15e4a6123f928fceb77c7638e4c45d6dc7d Signed-off-by: Zhixing Ma Reviewed-on: https://review.coreboot.org/c/coreboot/+/85960 Tested-by: build bot (Jenkins) Reviewed-by: Jérémy Compostella Reviewed-by: Bora Guvendik --- src/mainboard/google/fatcat/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainboard/google/fatcat/Kconfig b/src/mainboard/google/fatcat/Kconfig index e82081d822..13d791a812 100644 --- a/src/mainboard/google/fatcat/Kconfig +++ b/src/mainboard/google/fatcat/Kconfig @@ -3,6 +3,7 @@ config BOARD_GOOGLE_FATCAT_COMMON def_bool n select BOARD_ROMSIZE_KB_32768 + select CPU_INTEL_SOCKET_OTHER select DRIVERS_GFX_GENERIC select DRIVERS_I2C_GENERIC select DRIVERS_I2C_HID