coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
bootblock.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
4 #include <soc/eint_event.h>
5 #include <soc/mmu_operations.h>
6 #include <soc/pll.h>
7 #include <soc/tracker_common.h>
8 #include <soc/wdt.h>
9 
11 {
12  mtk_mmu_init();
14  mtk_wdt_init();
15  mt_pll_init();
17 }
void bootblock_soc_init(void)
Definition: bootblock.c:27
void unmask_eint_event_mask(void)
Definition: eint_event.c:5
void mtk_mmu_init(void)
void mt_pll_init(void)
Definition: pll.c:289
void bustracker_init(void)
Definition: tracker.c:43
int mtk_wdt_init(void)
Definition: wdt.c:31