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/gic.h>
6 #include <soc/mmu_operations.h>
7 #include <soc/pll.h>
8 #include <soc/tracker_common.h>
9 #include <soc/wdt.h>
10 
12 {
13  mtk_mmu_init();
16  mtk_wdt_init();
17  mt_pll_init();
20 }
void bootblock_soc_init(void)
Definition: bootblock.c:27
void unmask_eint_event_mask(void)
Definition: eint_event.c:5
void mtk_gic_preinit(void)
Definition: gic.c:12
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
void mtk_wdt_preinit(void)
Definition: wdt.c:19