summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/skylake/spi.c
blob: 74f578f1bbd9395a98bf8c3e74b3809f62437032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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_GSPI0:
		return 1;
	case PCH_DEVFN_GSPI1:
		return 2;
	}
	return -1;
}