blob: 75fab9a90b3d873a6aa5ec882d345e1df76207fb [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
#include <bootblock_common.h>
#include <soc/mmu_operations.h>
#include <soc/pll.h>
#include <soc/tracker_common.h>
#include <soc/wdt.h>
void bootblock_soc_init(void)
{
mtk_mmu_init();
bustracker_init();
mtk_wdt_init();
mt_pll_init();
}