summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/cherry/romstage.c
blob: cdb268124063cd8a0f6f41f959898d8f3354fff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/stages.h>
#include <soc/clkbuf.h>
#include <soc/mt6315.h>
#include <soc/mt6359p.h>
#include <soc/pmif.h>
#include <soc/rtc.h>

void platform_romstage_main(void)
{
	mtk_pmif_init();
	mt6359p_init();
	mt6315_init();
	clk_buf_init();
	rtc_boot();
}