diff options
author | Appukuttan V K <appukuttan.vk@intel.com> | 2024-01-11 18:05:11 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-26 21:56:13 +0000 |
commit | 50c8f2ef363637ee6219d4771ed5311489686285 (patch) | |
tree | e03109cdc49983338952edad32bde48d9b9e0112 /src/soc/intel/common/block/spi | |
parent | 659f97c621c085248f68cf5a63819aa4c4497206 (diff) |
soc/intel/common: Add lunarlake device IDs
Added Lunar Lake device IDs the device specific functions
Reference:
Lunar Lake External Design Specification Volume 1 (734362)
Change-Id: Id31d567287b9921d60909b1eb617c7cfaf6672c9
Signed-off-by: Appukuttan V K <appukuttan.vk@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79900
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Saurabh Mishra <mishra.saurabh@intel.com>
Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com>
Reviewed-by: Bora Guvendik <bora.guvendik@intel.com>
Diffstat (limited to 'src/soc/intel/common/block/spi')
-rw-r--r-- | src/soc/intel/common/block/spi/spi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/spi/spi.c b/src/soc/intel/common/block/spi/spi.c index b95ac96188..d1063f10a8 100644 --- a/src/soc/intel/common/block/spi/spi.c +++ b/src/soc/intel/common/block/spi/spi.c @@ -123,6 +123,9 @@ struct device_operations spi_dev_ops = { }; static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_LNL_GSPI0, + PCI_DID_INTEL_LNL_GSPI1, + PCI_DID_INTEL_LNL_GSPI2, PCI_DID_INTEL_MTL_GSPI0, PCI_DID_INTEL_MTL_GSPI1, PCI_DID_INTEL_MTL_GSPI2, |