soc/intel/commmon/fast_spi: Add missing ID for GLK

PCI ID taken from Intel doc #569262.

Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I5812e536f3e1c49a272a0b337cc69f3d8f30677f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67402
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sean Rhodes 2022-09-07 13:13:42 +01:00 committed by Felix Held
parent e078b058e3
commit e7bdc1b9e0
2 changed files with 2 additions and 0 deletions

View File

@ -3770,6 +3770,7 @@
#define PCI_DID_INTEL_GLK_SPI0 0x31c2 #define PCI_DID_INTEL_GLK_SPI0 0x31c2
#define PCI_DID_INTEL_GLK_SPI1 0x31c4 #define PCI_DID_INTEL_GLK_SPI1 0x31c4
#define PCI_DID_INTEL_GLK_SPI2 0x31c6 #define PCI_DID_INTEL_GLK_SPI2 0x31c6
#define PCI_DID_INTEL_GLK_HWSEQ_SPI 0x3196
#define PCI_DID_INTEL_CNL_SPI0 0x9daa #define PCI_DID_INTEL_CNL_SPI0 0x9daa
#define PCI_DID_INTEL_CNL_SPI1 0x9dab #define PCI_DID_INTEL_CNL_SPI1 0x9dab
#define PCI_DID_INTEL_CNL_SPI2 0x9dfb #define PCI_DID_INTEL_CNL_SPI2 0x9dfb

View File

@ -542,6 +542,7 @@ static struct device_operations fast_spi_dev_ops = {
static const unsigned short pci_device_ids[] = { static const unsigned short pci_device_ids[] = {
PCI_DID_INTEL_APL_HWSEQ_SPI, PCI_DID_INTEL_APL_HWSEQ_SPI,
PCI_DID_INTEL_GLK_HWSEQ_SPI,
0 0
}; };