coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
spi.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <intelblocks/fast_spi.h>
4 #include <spi-generic.h>
5 
6 const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
7  { .ctrlr = &fast_spi_flash_ctrlr, .bus_start = 0, .bus_end = 0 },
8 };
9 
#define ARRAY_SIZE(a)
Definition: helpers.h:12
const struct spi_ctrlr fast_spi_flash_ctrlr
const struct spi_ctrlr_buses spi_ctrlr_bus_map[]
Definition: spi.c:401
const size_t spi_ctrlr_bus_map_count
Definition: spi.c:408
const struct spi_ctrlr * ctrlr
Definition: spi-generic.h:175