diff options
| author | Aapo Vienamo <[email protected]> | 2024-12-04 08:02:08 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2024-12-04 13:44:01 +0000 |
| commit | ceb259e43bf572ba7d766e1679ba73861d16203a (patch) | |
| tree | 4c4f61098c9c8835f90556c8a8b6c98e5f8b9971 | |
| parent | spi: apple: Set use_gpio_descriptors to true (diff) | |
| download | kernel-ceb259e43bf572ba7d766e1679ba73861d16203a.tar.gz kernel-ceb259e43bf572ba7d766e1679ba73861d16203a.zip | |
spi: intel: Add Panther Lake SPI controller support
The Panther Lake SPI controllers are compatible with the Cannon Lake
controllers. Add support for following SPI controller device IDs:
- H-series: 0xe323
- P-series: 0xe423
- U-series: 0xe423
Signed-off-by: Aapo Vienamo <[email protected]>
Signed-off-by: Mika Westerberg <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/spi/spi-intel-pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/spi/spi-intel-pci.c b/drivers/spi/spi-intel-pci.c index c3b54928143d..4d9ffec900bb 100644 --- a/drivers/spi/spi-intel-pci.c +++ b/drivers/spi/spi-intel-pci.c @@ -86,6 +86,8 @@ static const struct pci_device_id intel_spi_pci_ids[] = { { PCI_VDEVICE(INTEL, 0xa324), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa3a4), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0xa823), (unsigned long)&cnl_info }, + { PCI_VDEVICE(INTEL, 0xe323), (unsigned long)&cnl_info }, + { PCI_VDEVICE(INTEL, 0xe423), (unsigned long)&cnl_info }, { }, }; MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids); |
