projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b299bd
)
spi: intel: Add Panther Lake SPI controller support
author
Aapo Vienamo
<aapo.vienamo@iki.fi>
Wed, 4 Dec 2024 08:02:08 +0000
(10:02 +0200)
committer
Mark Brown
<broonie@kernel.org>
Wed, 4 Dec 2024 13:44:01 +0000
(13:44 +0000)
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 <aapo.vienamo@iki.fi>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Link:
https://patch.msgid.link/20241204080208.1036537-1-mika.westerberg@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-intel-pci.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/spi/spi-intel-pci.c
b/drivers/spi/spi-intel-pci.c
index c3b54928143d2bee4916006ceb9cf8e39a4f917f..4d9ffec900bbf13cf5443824db37741da5edfc89 100644
(file)
--- 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);