diff mbox series

spi: intel: Add Panther Lake SPI controller support

Message ID 20241204080208.1036537-1-mika.westerberg@linux.intel.com (mailing list archive)
State Accepted
Commit ceb259e43bf572ba7d766e1679ba73861d16203a
Headers show
Series spi: intel: Add Panther Lake SPI controller support | expand

Commit Message

Mika Westerberg Dec. 4, 2024, 8:02 a.m. UTC
From: Aapo Vienamo <aapo.vienamo@iki.fi>

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>
---
 drivers/spi/spi-intel-pci.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Mark Brown Dec. 4, 2024, 3:22 p.m. UTC | #1
On Wed, 04 Dec 2024 10:02:08 +0200, Mika Westerberg wrote:
> 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
> 
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: intel: Add Panther Lake SPI controller support
      commit: ceb259e43bf572ba7d766e1679ba73861d16203a

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

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);