repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MAINTAINERS: Add Yuchi and Vasiliy for Intel Atom Snow Ridge SoC
[coreboot.git]
/
src
/
soc
/
intel
/
cannonlake
/
spi.c
blob
8a7ed73b477ff8236e53fc19ecce91f93942ccc8
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3
#include <intelblocks/spi.h>
4
#include <soc/pci_devs.h>
5
6
int
spi_soc_devfn_to_bus
(
unsigned int
devfn
)
7
{
8
switch
(
devfn
) {
9
case
PCH_DEVFN_GSPI0
:
10
return
1
;
11
case
PCH_DEVFN_GSPI1
:
12
return
2
;
13
case
PCH_DEVFN_GSPI2
:
14
return
3
;
15
}
16
return
-
1
;
17
}