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/clock.h>
5 #include <soc/qspi_common.h>
7 
9 {
10  clock_init();
11  quadspi_init(37500 * KHz);
12  qupv3_fw_init();
13 }
#define KHz
Definition: helpers.h:79
void bootblock_soc_init(void)
Definition: bootblock.c:27
void quadspi_init(uint32_t hz)
Definition: qspi.c:251
void qupv3_fw_init(void)
Definition: qupv3_config.c:253
void clock_init(void)
Definition: clock.c:539