• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
4 #include <soc/eint_event.h>
5 #include <soc/mmu_operations.h>
6 #include <soc/pll.h>
7 #include <soc/tracker_common.h>
8 #include <soc/wdt.h>
9 
bootblock_soc_init(void)10 void bootblock_soc_init(void)
11 {
12 	mtk_mmu_init();
13 	bustracker_init();
14 	mtk_wdt_init();
15 	mt_pll_init();
16 	unmask_eint_event_mask();
17 }
18