All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash
@ 2017-09-21 13:19 Mika Westerberg
  2017-09-21 13:19 ` [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork " Mika Westerberg
  2017-10-10 16:58 ` [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg " Cyrille Pitchen
  0 siblings, 2 replies; 4+ messages in thread
From: Mika Westerberg @ 2017-09-21 13:19 UTC (permalink / raw)
  To: linux-mtd
  Cc: Cyrille Pitchen, Marek Vasut, David Woodhouse, Brian Norris,
	Boris Brezillon, Richard Weinberger, Mika Westerberg

Intel Lewisburg chipset exposes the SPI serial flash controller as a PCI
device in the same way than Intel Denverton. Add Intel Lewisburg SPI
serial flash PCI ID to the driver list of supported devices.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
---
 drivers/mtd/spi-nor/intel-spi-pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/spi-nor/intel-spi-pci.c b/drivers/mtd/spi-nor/intel-spi-pci.c
index e82652335ede..7fa5b81b0d88 100644
--- a/drivers/mtd/spi-nor/intel-spi-pci.c
+++ b/drivers/mtd/spi-nor/intel-spi-pci.c
@@ -64,6 +64,7 @@ static void intel_spi_pci_remove(struct pci_dev *pdev)
 
 static const struct pci_device_id intel_spi_pci_ids[] = {
 	{ PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
+	{ PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info },
 	{ },
 };
 MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids);
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork SPI serial flash
  2017-09-21 13:19 [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash Mika Westerberg
@ 2017-09-21 13:19 ` Mika Westerberg
  2017-10-10 16:59   ` Cyrille Pitchen
  2017-10-10 16:58 ` [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg " Cyrille Pitchen
  1 sibling, 1 reply; 4+ messages in thread
From: Mika Westerberg @ 2017-09-21 13:19 UTC (permalink / raw)
  To: linux-mtd
  Cc: Cyrille Pitchen, Marek Vasut, David Woodhouse, Brian Norris,
	Boris Brezillon, Richard Weinberger, Mika Westerberg

Intel Cedar Fork has the same SPI serial flash controller than Intel
Denverton. Add the Intel Cedar Fork PCI ID to the driver list of
supported devices.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
---
 drivers/mtd/spi-nor/intel-spi-pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/spi-nor/intel-spi-pci.c b/drivers/mtd/spi-nor/intel-spi-pci.c
index 7fa5b81b0d88..a5a5c5897aad 100644
--- a/drivers/mtd/spi-nor/intel-spi-pci.c
+++ b/drivers/mtd/spi-nor/intel-spi-pci.c
@@ -63,6 +63,7 @@ static void intel_spi_pci_remove(struct pci_dev *pdev)
 }
 
 static const struct pci_device_id intel_spi_pci_ids[] = {
+	{ PCI_VDEVICE(INTEL, 0x18e0), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
 	{ PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info },
 	{ },
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash
  2017-09-21 13:19 [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash Mika Westerberg
  2017-09-21 13:19 ` [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork " Mika Westerberg
@ 2017-10-10 16:58 ` Cyrille Pitchen
  1 sibling, 0 replies; 4+ messages in thread
From: Cyrille Pitchen @ 2017-10-10 16:58 UTC (permalink / raw)
  To: Mika Westerberg, linux-mtd
  Cc: Boris Brezillon, Richard Weinberger, Marek Vasut, Brian Norris,
	David Woodhouse

Le 21/09/2017 à 15:19, Mika Westerberg a écrit :
> Intel Lewisburg chipset exposes the SPI serial flash controller as a PCI
> device in the same way than Intel Denverton. Add Intel Lewisburg SPI
> serial flash PCI ID to the driver list of supported devices.
> 
> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>

Applied to the spi-nor/next branch of l2-mtd

Thanks!
> ---
>  drivers/mtd/spi-nor/intel-spi-pci.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/mtd/spi-nor/intel-spi-pci.c b/drivers/mtd/spi-nor/intel-spi-pci.c
> index e82652335ede..7fa5b81b0d88 100644
> --- a/drivers/mtd/spi-nor/intel-spi-pci.c
> +++ b/drivers/mtd/spi-nor/intel-spi-pci.c
> @@ -64,6 +64,7 @@ static void intel_spi_pci_remove(struct pci_dev *pdev)
>  
>  static const struct pci_device_id intel_spi_pci_ids[] = {
>  	{ PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
> +	{ PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info },
>  	{ },
>  };
>  MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids);
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork SPI serial flash
  2017-09-21 13:19 ` [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork " Mika Westerberg
@ 2017-10-10 16:59   ` Cyrille Pitchen
  0 siblings, 0 replies; 4+ messages in thread
From: Cyrille Pitchen @ 2017-10-10 16:59 UTC (permalink / raw)
  To: Mika Westerberg, linux-mtd
  Cc: Marek Vasut, David Woodhouse, Brian Norris, Boris Brezillon,
	Richard Weinberger

Le 21/09/2017 à 15:19, Mika Westerberg a écrit :
> Intel Cedar Fork has the same SPI serial flash controller than Intel
> Denverton. Add the Intel Cedar Fork PCI ID to the driver list of
> supported devices.
> 
> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>

Applied to the spi-nor/next branch of l2-mtd

Thanks!
> ---
>  drivers/mtd/spi-nor/intel-spi-pci.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/mtd/spi-nor/intel-spi-pci.c b/drivers/mtd/spi-nor/intel-spi-pci.c
> index 7fa5b81b0d88..a5a5c5897aad 100644
> --- a/drivers/mtd/spi-nor/intel-spi-pci.c
> +++ b/drivers/mtd/spi-nor/intel-spi-pci.c
> @@ -63,6 +63,7 @@ static void intel_spi_pci_remove(struct pci_dev *pdev)
>  }
>  
>  static const struct pci_device_id intel_spi_pci_ids[] = {
> +	{ PCI_VDEVICE(INTEL, 0x18e0), (unsigned long)&bxt_info },
>  	{ PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
>  	{ PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info },
>  	{ },
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-10-10 16:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-21 13:19 [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg SPI serial flash Mika Westerberg
2017-09-21 13:19 ` [PATCH 2/2] mtd: spi-nor: intel-spi: Add support for Intel Cedar Fork " Mika Westerberg
2017-10-10 16:59   ` Cyrille Pitchen
2017-10-10 16:58 ` [PATCH 1/2] mtd: spi-nor: intel-spi: Add support for Intel Lewisburg " Cyrille Pitchen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.