repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git]
/
src
/
soc
/
qualcomm
/
sc7280
/
bootblock.c
blob
bdabea1fbb4966db08ff554fb0f4a2fc714f253c
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <bootblock_common.h>
4
#include <soc/clock.h>
5
#include <soc/qspi_common.h>
6
#include <soc/qupv3_config_common.h>
7
8
void
bootblock_soc_init
(
void
)
9
{
10
clock_init
();
11
quadspi_init
(
50000
*
KHz
);
12
qupv3_fw_init
();
13
}