1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */ 2 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> 10 bootblock_soc_init(void)11void bootblock_soc_init(void) 12 { 13 mtk_mmu_init(); 14 bustracker_init(); 15 mtk_wdt_init(); 16 mt_pll_init(); 17 unmask_eint_event_mask(); 18 early_init_clear(); 19 } 20