repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drivers/wifi: Remove unnecessary data structure copy
[coreboot2.git]
/
src
/
soc
/
mediatek
/
mt8196
/
bootblock.c
blob
578d353e398b93676409b99a4be6d79c4f3439a2
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <bootblock_common.h>
4
#include <soc/early_init.h>
5
#include <soc/lastbus_v2.h>
6
#include <soc/mmu_operations.h>
7
#include <soc/pll.h>
8
#include <soc/wdt.h>
9
10
void
bootblock_soc_init
(
void
)
11
{
12
mtk_mmu_init
();
13
lastbus_init
();
14
mtk_wdt_init
();
15
mt_pll_init
();
16
mt_pll_post_init
();
17
early_init_clear
();
18
}