summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/apollolake/spi.c
blob: 68ea1b160943871e717da9202a5c93012c6886d6 (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/spi.h>
#include <soc/pci_devs.h>

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