summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/mt8188/bootblock.c
blob: f7b7849b364f27c0c7fe9584650085389c9a724c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only OR MIT */

#include <bootblock_common.h>
#include <soc/eint_event.h>
#include <soc/mmu_operations.h>
#include <soc/pll.h>
#include <soc/lastbus_v2.h>
#include <soc/tracker_common.h>
#include <soc/wdt.h>

void bootblock_soc_init(void)
{
	mtk_mmu_init();
	bustracker_init();
	lastbus_init();
	mtk_wdt_init();
	mt_pll_init();
	unmask_eint_event_mask();
}