Attention is currently required from: Hung-Te Lin, Yidi Lin, Yu-Ping Wu.
Jarried Lin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85755?usp=email )
Change subject: mb/google/rauru: Initialize PMICs in romstage ......................................................................
mb/google/rauru: Initialize PMICs in romstage
BUG=b:317009620 TEST=Build pass, boot ok.
Change-Id: Ia220db1d8d6d20e508f5e4d47054922012f6c417 Signed-off-by: Jarried Lin jarried.lin@mediatek.corp-partner.google.com --- M src/mainboard/google/rauru/romstage.c 1 file changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/85755/1
diff --git a/src/mainboard/google/rauru/romstage.c b/src/mainboard/google/rauru/romstage.c index b6f0d4e..87ea5f6 100644 --- a/src/mainboard/google/rauru/romstage.c +++ b/src/mainboard/google/rauru/romstage.c @@ -3,12 +3,20 @@ #include <arch/stages.h> #include <soc/emi.h> #include <soc/irq2axi.h> +#include <soc/mt6316.h> +#include <soc/mt6363.h> +#include <soc/mt6373.h> +#include <soc/mt6685_adc_init.h> #include <soc/mtk_pwrsel.h> #include <soc/pcie.h>
void platform_romstage_main(void) { irq2axi_disable(); + mt6316_init(); + mt6363_init(); + mt6373_init(); + mt6685_adc_init(); pwrsel_init(); mtk_dram_init();