mb/google/cherry: add mt6360 support for MT8195

For new MT8195 devices we will control mt6360 via EC,
so we have to add ec function of controlling MT6360 and
add CONFIG to separate them.

Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com>
Change-Id: Ic2228f5b45173f0905ea66a3a1f00ec820e0f855
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56446
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
diff --git a/src/mainboard/google/cherry/mainboard.c b/src/mainboard/google/cherry/mainboard.c
index 9cd0324..5758883 100644
--- a/src/mainboard/google/cherry/mainboard.c
+++ b/src/mainboard/google/cherry/mainboard.c
@@ -126,7 +126,10 @@
 			MSDC1_GPIO_MODE1_3, MSDC1_GPIO_MODE1_VALUE);
 
 	mtk_i2c_bus_init(7);
-	mt6360_init(7);
+
+	if (CONFIG(BOARD_GOOGLE_CHERRY))
+		mt6360_init(7);
+
 	mainboard_enable_regulator(MTK_REGULATOR_VCCQ, 1);
 	mainboard_enable_regulator(MTK_REGULATOR_VCC, 1);
 }