• 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/gic.h>
6 #include <soc/lastbus_v1.h>
7 #include <soc/mmu_operations.h>
8 #include <soc/pll.h>
9 #include <soc/tracker_common.h>
10 #include <soc/wdt.h>
11 
bootblock_soc_init(void)12 void bootblock_soc_init(void)
13 {
14 	mtk_mmu_init();
15 	bustracker_init();
16 	lastbus_init();
17 	mtk_wdt_init();
18 	mt_pll_init();
19 	unmask_eint_event_mask();
20 	mtk_gic_preinit();
21 }
22