diff options
-rw-r--r-- | src/mainboard/google/geralt/romstage.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 <arch/stages.h> +#include <soc/clkbuf.h> #include <soc/mt6315.h> #include <soc/mt6359p.h> #include <soc/pmif.h> +#include <soc/rtc.h> void platform_romstage_main(void) { mtk_pmif_init(); mt6315_init(); mt6359p_init(); + clk_buf_init(); + rtc_boot(); } |