coreboot-kgpe-d16/src/soc/mediatek/mt8195/bootblock.c

20 lines
390 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include <soc/early_init.h>
#include <soc/eint_event.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();
unmask_eint_event_mask();
early_init_clear();
}