From edaa67d0c9f25bfd7518397d5ad31b11c090ab6d Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Wed, 4 Dec 2024 20:13:47 +0800 Subject: [PATCH] mb/google/skywalker: Add thermal init flow in romstage BUG=b:379008996 BRANCH=none TEST=build pass, thermal init log: [INFO ] ===== lvts_thermal_init begin ====== [INFO ] thermal_init: thermal initialized Signed-off-by: Raymond Sun Change-Id: Id57f73206135f814f44b34290c5f2624ea56e1df Reviewed-on: https://review.coreboot.org/c/coreboot/+/88442 Reviewed-by: Yidi Lin Reviewed-by: Yu-Ping Wu Tested-by: build bot (Jenkins) --- src/mainboard/google/skywalker/romstage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mainboard/google/skywalker/romstage.c b/src/mainboard/google/skywalker/romstage.c index f8643061bf..9aa89a2730 100644 --- a/src/mainboard/google/skywalker/romstage.c +++ b/src/mainboard/google/skywalker/romstage.c @@ -10,6 +10,7 @@ #include #include #include +#include static void raise_little_cpu_freq(void) { @@ -29,4 +30,5 @@ void platform_romstage_main(void) rtc_boot(); dvfs_init(); mtk_dram_init(); + thermal_init(); }