From c732f406c7ab5855ae2a44d1920f2a22f2de8bf9 Mon Sep 17 00:00:00 2001 From: Avi Uday Date: Mon, 25 Aug 2025 19:14:52 +0530 Subject: [PATCH] mb/google/ocelot: ec.h: Disable sync IRQ, sync IRQ wake capable for OCELOT4ES This commit introduces changes to support the OCELOT4ES variant by adding a conditional check in the EC header file for enabling this new variant. TEST=Verify that ocelot builds without any error Change-Id: Id7b27ce405df8e67675834a069133c87af71fd37 Signed-off-by: Avi Uday Reviewed-on: https://review.coreboot.org/c/coreboot/+/88940 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik Reviewed-by: Pranava Y N --- .../ocelot/variants/baseboard/ocelot/include/baseboard/ec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/google/ocelot/variants/baseboard/ocelot/include/baseboard/ec.h b/src/mainboard/google/ocelot/variants/baseboard/ocelot/include/baseboard/ec.h index 5804b303d0..1302946b93 100644 --- a/src/mainboard/google/ocelot/variants/baseboard/ocelot/include/baseboard/ec.h +++ b/src/mainboard/google/ocelot/variants/baseboard/ocelot/include/baseboard/ec.h @@ -75,7 +75,7 @@ /* Enable EC backed PD MCU device in ACPI */ #define EC_ENABLE_PD_MCU_DEVICE -#if !CONFIG(BOARD_GOOGLE_OCELOT) +#if !CONFIG(BOARD_GOOGLE_OCELOT) && !CONFIG(BOARD_GOOGLE_OCELOT4ES) #define EC_ENABLE_SYNC_IRQ /* Enable tight timestamp / wake support */ #define EC_SYNC_IRQ_WAKE_CAPABLE /* Let the OS know ec_sync is wake capable */ #endif