Tristan Hsieh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/32466
Change subject: google/kukui: Raising the CPU frequency ......................................................................
google/kukui: Raising the CPU frequency
Run CPU at the highest freqency (1989MHz) to speed up the boot time.
BUG=b:80501386 BRANCH=none Test=Boots correctly on Kukui
Change-Id: I703ffcb99367f87e6792a72485f5634e0505e5ac Signed-off-by: Tristan Shieh tristan.shieh@mediatek.com --- M src/mainboard/google/kukui/romstage.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/32466/1
diff --git a/src/mainboard/google/kukui/romstage.c b/src/mainboard/google/kukui/romstage.c index 81ae9c5..baaca43 100644 --- a/src/mainboard/google/kukui/romstage.c +++ b/src/mainboard/google/kukui/romstage.c @@ -17,6 +17,7 @@ #include <soc/emi.h> #include <soc/mmu_operations.h> #include <soc/mt6358.h> +#include <soc/pll.h> #include <soc/rtc.h>
#include "early_init.h" @@ -28,6 +29,7 @@ mainboard_early_init();
mt6358_init(); + mt_pll_raise_ca53_freq(1989 * MHz); rtc_boot(); mt_mem_init(get_sdram_config()); mtk_mmu_after_dram();