linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs
@ 2012-08-24 23:36 Dave Jiang
  2012-08-31  0:37 ` Vinod Koul
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Jiang @ 2012-08-24 23:36 UTC (permalink / raw)
  To: djbw; +Cc: vinod.koul, linux-kernel

Signed-off-by: Dave Jiang <dave.jiang@intel.com>
---

 drivers/dma/ioat/pci.c |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/drivers/dma/ioat/pci.c b/drivers/dma/ioat/pci.c
index 5e3a40f..c057306 100644
--- a/drivers/dma/ioat/pci.c
+++ b/drivers/dma/ioat/pci.c
@@ -40,6 +40,17 @@ MODULE_VERSION(IOAT_DMA_VERSION);
 MODULE_LICENSE("Dual BSD/GPL");
 MODULE_AUTHOR("Intel Corporation");
 
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB0	0x0e20
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB1	0x0e21
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB2	0x0e22
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB3	0x0e23
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB4	0x0e24
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB5	0x0e25
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB6	0x0e26
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB7	0x0e27
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB8	0x0e2e
+#define PCI_DEVICE_ID_INTEL_IOAT_IVB9	0x0e2f
+
 static struct pci_device_id ioat_pci_tbl[] = {
 	/* I/OAT v1 platforms */
 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
@@ -83,6 +94,17 @@ static struct pci_device_id ioat_pci_tbl[] = {
 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB8) },
 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB9) },
 
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB0) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB1) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB2) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB3) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB4) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB5) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB6) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB7) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB8) },
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB9) },
+
 	{ 0, }
 };
 MODULE_DEVICE_TABLE(pci, ioat_pci_tbl);


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

* Re: [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs
  2012-08-24 23:36 [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs Dave Jiang
@ 2012-08-31  0:37 ` Vinod Koul
  2012-08-31 15:28   ` Dan Williams
  0 siblings, 1 reply; 4+ messages in thread
From: Vinod Koul @ 2012-08-31  0:37 UTC (permalink / raw)
  To: Dave Jiang; +Cc: vinod.koul, djbw, linux-kernel

On Fri, 2012-08-24 at 16:36 -0700, Dave Jiang wrote:
> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Sounds okay to me, I can carry it once Dan acks it
> ---
> 
>  drivers/dma/ioat/pci.c |   22 ++++++++++++++++++++++
>  1 files changed, 22 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/dma/ioat/pci.c b/drivers/dma/ioat/pci.c
> index 5e3a40f..c057306 100644
> --- a/drivers/dma/ioat/pci.c
> +++ b/drivers/dma/ioat/pci.c
> @@ -40,6 +40,17 @@ MODULE_VERSION(IOAT_DMA_VERSION);
>  MODULE_LICENSE("Dual BSD/GPL");
>  MODULE_AUTHOR("Intel Corporation");
>  
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB0	0x0e20
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB1	0x0e21
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB2	0x0e22
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB3	0x0e23
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB4	0x0e24
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB5	0x0e25
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB6	0x0e26
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB7	0x0e27
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB8	0x0e2e
> +#define PCI_DEVICE_ID_INTEL_IOAT_IVB9	0x0e2f
> +
>  static struct pci_device_id ioat_pci_tbl[] = {
>  	/* I/OAT v1 platforms */
>  	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
> @@ -83,6 +94,17 @@ static struct pci_device_id ioat_pci_tbl[] = {
>  	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB8) },
>  	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB9) },
>  
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB0) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB1) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB2) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB3) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB4) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB5) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB6) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB7) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB8) },
> +	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB9) },
> +
>  	{ 0, }
>  };
>  MODULE_DEVICE_TABLE(pci, ioat_pci_tbl);
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

-- 
~Vinod Koul
Intel Corp.


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

* Re: [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs
  2012-08-31  0:37 ` Vinod Koul
@ 2012-08-31 15:28   ` Dan Williams
  2012-08-31 15:50     ` Vinod Koul
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Williams @ 2012-08-31 15:28 UTC (permalink / raw)
  To: Vinod Koul; +Cc: Dave Jiang, vinod.koul, linux-kernel



On Aug 30, 2012, at 5:30 PM, "Vinod Koul" <vkoul@infradead.org> wrote:

> On Fri, 2012-08-24 at 16:36 -0700, Dave Jiang wrote:
>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
> Sounds okay to me, I can carry it once Dan acks it

Thanks Vinod.

Acked-by: Dan Williams <djbw@db.com>


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

* Re: [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs
  2012-08-31 15:28   ` Dan Williams
@ 2012-08-31 15:50     ` Vinod Koul
  0 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2012-08-31 15:50 UTC (permalink / raw)
  To: Dan Williams; +Cc: vinod.koul, Dave Jiang, linux-kernel

On Fri, 2012-08-31 at 15:28 +0000, Dan Williams wrote:
> 
> On Aug 30, 2012, at 5:30 PM, "Vinod Koul" <vkoul@infradead.org> wrote:
> 
> > On Fri, 2012-08-24 at 16:36 -0700, Dave Jiang wrote:
> >> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
> > Sounds okay to me, I can carry it once Dan acks it
> 
> Thanks Vinod.
> 
> Acked-by: Dan Williams <djbw@db.com>
Applied, now

-- 
~Vinod Koul
Intel Corp.


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

end of thread, other threads:[~2012-08-31 15:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-24 23:36 [PATCH] ioat: Adding Ivy Bridge IOATDMA PCI device IDs Dave Jiang
2012-08-31  0:37 ` Vinod Koul
2012-08-31 15:28   ` Dan Williams
2012-08-31 15:50     ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).