From 4f257a28f854a5aeec9661dd69ae39c5f9e92eca Mon Sep 17 00:00:00 2001 From: Sowmya Aralguppe Date: Fri, 28 Nov 2025 11:53:30 +0530 Subject: [PATCH] mb/google/ocelot: Add EC_GOOGLE_CHROMEEC_SKUID config The Wildcat Lake Ocelot mainboard is missing the EC_GOOGLE_CHROMEEC_SKUID configuration option, causing the sku_id() function to call the weak implementation that returns UNDEFINED_STRAPPING_ID instead of calling google_chromeec_get_board_sku(). This results in incorrect SKU ID reporting in the coreboot table. This patch adds missing EC_GOOGLE_CHROMEEC_SKUID configuration to retrieve SKU information from the Chrome EC. BUG=b:459266759 TEST= SKU ID is properly configured as 1 Change-Id: I143bdffe40303336d66d1a42e97872aebcb817a3 Signed-off-by: Sowmya Aralguppe Reviewed-on: https://review.coreboot.org/c/coreboot/+/90257 Tested-by: build bot (Jenkins) Reviewed-by: Tom, Poornima Reviewed-by: P, Usha Reviewed-by: Pranava Y N --- src/mainboard/google/ocelot/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainboard/google/ocelot/Kconfig b/src/mainboard/google/ocelot/Kconfig index 8b3c377289..ebe107b962 100644 --- a/src/mainboard/google/ocelot/Kconfig +++ b/src/mainboard/google/ocelot/Kconfig @@ -21,6 +21,7 @@ config BOARD_GOOGLE_OCELOT_COMMON select EC_GOOGLE_CHROMEEC select EC_GOOGLE_CHROMEEC_BOARDID select EC_GOOGLE_CHROMEEC_ESPI + select EC_GOOGLE_CHROMEEC_SKUID select EC_GOOGLE_CHROMEEC_SMBIOS select FW_CONFIG select FW_CONFIG_SOURCE_CHROMEEC_CBI