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 "board.h"
5 #include <soc/qupv3_spi_common.h>
6 
8 {
10  qup_spi_init(CONFIG_DRIVER_TPM_SPI_BUS, 1010 * KHz);
11  qup_spi_init(CONFIG_EC_GOOGLE_CHROMEEC_SPI_BUS, 1010 * KHz);
12 }
#define KHz
Definition: helpers.h:79
void setup_chromeos_gpios(void)
Definition: chromeos.c:10
__weak void bootblock_mainboard_init(void)
Definition: bootblock.c:19
void qup_spi_init(unsigned int bus, unsigned int speed_hz)
Definition: qupv3_spi.c:157