diff mbox series

[v2,1/1] spi: intel-pci: Add support for Intel Ice Lake-N SPI serial flash

Message ID 20220215135139.4328-1-andriy.shevchenko@linux.intel.com (mailing list archive)
State Accepted
Commit 47b34f495b8b75475952f12c521c4c1fc2fa09b4
Headers show
Series [v2,1/1] spi: intel-pci: Add support for Intel Ice Lake-N SPI serial flash | expand

Commit Message

Andy Shevchenko Feb. 15, 2022, 1:51 p.m. UTC
Intel Ice Lake-N has the same SPI serial flash controller as Ice Lake-LP.
Add Ice Lake-N PCI ID to the driver list of supported devices.

The device can be found on MacBookPro16,2 [1].

[1]: https://linux-hardware.org/?probe=f1c5cf0c43

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: rebased on top of spi-mem conversion series (Michael Walle)
 drivers/spi/spi-intel-pci.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Mika Westerberg Feb. 15, 2022, 2:57 p.m. UTC | #1
On Tue, Feb 15, 2022 at 03:51:39PM +0200, Andy Shevchenko wrote:
> Intel Ice Lake-N has the same SPI serial flash controller as Ice Lake-LP.
> Add Ice Lake-N PCI ID to the driver list of supported devices.
> 
> The device can be found on MacBookPro16,2 [1].
> 
> [1]: https://linux-hardware.org/?probe=f1c5cf0c43
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Mark Brown Feb. 16, 2022, 6:02 p.m. UTC | #2
On Tue, 15 Feb 2022 15:51:39 +0200, Andy Shevchenko wrote:
> Intel Ice Lake-N has the same SPI serial flash controller as Ice Lake-LP.
> Add Ice Lake-N PCI ID to the driver list of supported devices.
> 
> The device can be found on MacBookPro16,2 [1].
> 
> [1]: https://linux-hardware.org/?probe=f1c5cf0c43
> 
> [...]

Applied to

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

Thanks!

[1/1] spi: intel-pci: Add support for Intel Ice Lake-N SPI serial flash
      commit: 47b34f495b8b75475952f12c521c4c1fc2fa09b4

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 a9cb4d77ffe3..a5ef7a526a7f 100644
--- a/drivers/spi/spi-intel-pci.c
+++ b/drivers/spi/spi-intel-pci.c
@@ -66,6 +66,7 @@  static const struct pci_device_id intel_spi_pci_ids[] = {
 	{ PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0x1bca), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0x34a4), (unsigned long)&bxt_info },
+	{ PCI_VDEVICE(INTEL, 0x38a4), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0x43a4), (unsigned long)&cnl_info },
 	{ PCI_VDEVICE(INTEL, 0x4b24), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0x4da4), (unsigned long)&bxt_info },