aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/kukui/romstage.c
diff options
context:
space:
mode:
authorHsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>2018-10-24 19:18:28 +0800
committerJulius Werner <jwerner@chromium.org>2018-11-29 01:46:26 +0000
commit23b1afe4be644997817541159f346ea3d2d2ab8f (patch)
tree379fdc92bf4b89071eff28a34c72830130be2fc7 /src/mainboard/google/kukui/romstage.c
parenta6db8f3cc3879cc1650f8f42dcec7074dd3f8604 (diff)
mediatek/mt8183: Add MT6358 PMIC support
PMIC provides power features like auxadc, buck/ldo, interrupt-controller..etc BUG=b:80501386 BRANCH=none TEST=Boots correctly on Kukui Change-Id: Ic247faf73517f6512f9c9a69ba0254c749d68d4c Signed-off-by: Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com> Reviewed-on: https://review.coreboot.org/c/29422 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/kukui/romstage.c')
-rw-r--r--src/mainboard/google/kukui/romstage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/kukui/romstage.c b/src/mainboard/google/kukui/romstage.c
index 9eeaa68e09..4855334149 100644
--- a/src/mainboard/google/kukui/romstage.c
+++ b/src/mainboard/google/kukui/romstage.c
@@ -15,8 +15,10 @@
#include <arch/stages.h>
#include <soc/mmu_operations.h>
+#include <soc/mt6358.h>
void platform_romstage_main(void)
{
+ mt6358_init();
mtk_mmu_after_dram();
}