coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
gspi.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <intelblocks/gspi.h>
4 #include <soc/pci_devs.h>
5 
6 int gspi_soc_bus_to_devfn(unsigned int gspi_bus)
7 {
8  switch (gspi_bus) {
9  case 0:
10  return PCH_DEVFN_GSPI0;
11  case 1:
12  return PCH_DEVFN_GSPI1;
13  case 2:
14  return PCH_DEVFN_GSPI2;
15  }
16  return -1;
17 }
int gspi_soc_bus_to_devfn(unsigned int gspi_bus)
Definition: gspi.c:12
#define PCH_DEVFN_GSPI0
Definition: pci_devs.h:206
#define PCH_DEVFN_GSPI2
Definition: pci_devs.h:107
#define PCH_DEVFN_GSPI1
Definition: pci_devs.h:207