2021-01-07 13:25:54 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
|
|
|
#include <bootblock_common.h>
|
|
|
|
#include <soc/mmu_operations.h>
|
2021-02-03 09:20:57 +01:00
|
|
|
#include <soc/pll.h>
|
2021-04-22 07:34:04 +02:00
|
|
|
#include <soc/wdt.h>
|
2021-01-07 13:25:54 +01:00
|
|
|
|
|
|
|
void bootblock_soc_init(void)
|
|
|
|
{
|
|
|
|
mtk_mmu_init();
|
2021-04-22 07:34:04 +02:00
|
|
|
mtk_wdt_init();
|
2021-02-03 09:20:57 +01:00
|
|
|
mt_pll_init();
|
2021-01-07 13:25:54 +01:00
|
|
|
}
|