docs: Add 24.12 release notes
[coreboot2.git] / src / soc / mediatek / mt8195 / bootblock.c
blob342a661845fa28df94044820283c5ebd29218be4
1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */
3 #include <bootblock_common.h>
4 #include <soc/early_init.h>
5 #include <soc/eint_event.h>
6 #include <soc/mmu_operations.h>
7 #include <soc/pll.h>
8 #include <soc/tracker_common.h>
9 #include <soc/wdt.h>
11 void bootblock_soc_init(void)
13 mtk_mmu_init();
14 bustracker_init();
15 mtk_wdt_init();
16 mt_pll_init();
17 unmask_eint_event_mask();
18 early_init_clear();