From d699de071fee0572971170637fe3bd81dbc463c9 Mon Sep 17 00:00:00 2001 From: Rex-BC Chen Date: Mon, 25 Jul 2022 20:26:52 +0800 Subject: [PATCH] mb/google/geralt: Initialize RTC and clk_buf in romstage TEST=build pass. BUG=b:233720142 Signed-off-by: Bo-Chen Chen Change-Id: I869c0879d09e00cf66882adb728c9ccb6ac57e03 Reviewed-on: https://review.coreboot.org/c/coreboot/+/66183 Reviewed-by: Yidi Lin Reviewed-by: Yu-Ping Wu Tested-by: build bot (Jenkins) --- src/mainboard/google/geralt/romstage.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mainboard/google/geralt/romstage.c b/src/mainboard/google/geralt/romstage.c index f0ca3dd6d6..0f04021bde 100644 --- a/src/mainboard/google/geralt/romstage.c +++ b/src/mainboard/google/geralt/romstage.c @@ -1,13 +1,17 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include +#include #include #include #include +#include void platform_romstage_main(void) { mtk_pmif_init(); mt6315_init(); mt6359p_init(); + clk_buf_init(); + rtc_boot(); }