summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/apollolake/gspi.c
blob: c62be5886689b1abfd9f9cb7d10a0b8bbfcfedaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include <intelblocks/gspi.h>
#include <soc/pci_devs.h>

int gspi_soc_bus_to_devfn(unsigned int gspi_bus)
{
	switch (gspi_bus) {
	case 0:
		return PCH_DEVFN_SPI0;
	case 1:
		return PCH_DEVFN_SPI1;
	case 2:
		return PCH_DEVFN_SPI2;
	}
	return -1;
}