summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola
diff options
context:
space:
mode:
authorJames Lo <james.lo@mediatek.corp-partner.google.com>2021-10-05 18:14:12 +0800
committerHung-Te Lin <hungte@chromium.org>2021-11-15 03:06:25 +0000
commit1e0765d85c3854a54783f01cd6e8194ccf6ca399 (patch)
treede9c2f212e46d7d0b1ff3b5e6a2a76e2b3d1f55e /src/mainboard/google/corsola
parent1327f0bf0719abcccafbbf03f47af8e6e54f4f26 (diff)
soc/mediatek/mt8186: Add support for PMIC MT6366
Add basic support for VCORE/VDRAM1/VDDQ of MT6366. TEST=build pass BUG=b:202871018 Signed-off-by: James Lo <james.lo@mediatek.corp-partner.google.com> Change-Id: I22e30421560a32f4a9e15899e8150376b1414494 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59245 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/mainboard/google/corsola')
-rw-r--r--src/mainboard/google/corsola/romstage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/corsola/romstage.c b/src/mainboard/google/corsola/romstage.c
index 891dc1b0d7..07b9127719 100644
--- a/src/mainboard/google/corsola/romstage.c
+++ b/src/mainboard/google/corsola/romstage.c
@@ -1,7 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/stages.h>
+#include <soc/mt6366.h>
void platform_romstage_main(void)
{
+ mt6366_init();
}