summaryrefslogtreecommitdiff
path: root/src/mainboard/google/cherry/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/cherry/romstage.c')
-rw-r--r--src/mainboard/google/cherry/romstage.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mainboard/google/cherry/romstage.c b/src/mainboard/google/cherry/romstage.c
new file mode 100644
index 0000000000..cba599596c
--- /dev/null
+++ b/src/mainboard/google/cherry/romstage.c
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <arch/stages.h>
+#include <soc/mt6315.h>
+#include <soc/mt6359p.h>
+#include <soc/pmif.h>
+
+void platform_romstage_main(void)
+{
+ mtk_pmif_init();
+ mt6359p_init();
+ mt6315_init();
+}