public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* PATCH: Add support for Innovision DM-8401H
@ 2004-07-28 13:49 Alan Cox
  2004-07-28 14:10 ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: Alan Cox @ 2004-07-28 13:49 UTC (permalink / raw)
  To: akpm, linux-kernel

This is an SII 680 with strange PCI identifiers it appears

Original patch: Alex Hewson
Verified by: Alan Cox <alan@redhat.com>

OSDL Developer Certificate Of Origin included herein by reference


--- include/linux/pci_ids.h~	2004-07-28 14:24:18.736251384 +0100
+++ include/linux/pci_ids.h	2004-07-28 14:24:18.736251384 +0100
@@ -1634,6 +1634,7 @@
 #define PCI_VENDOR_ID_ITE		0x1283
 #define PCI_DEVICE_ID_ITE_IT8172G	0x8172
 #define PCI_DEVICE_ID_ITE_IT8172G_AUDIO 0x0801
+#define PCI_DEVICE_ID_ITE_DM8401	0x8212
 #define PCI_DEVICE_ID_ITE_8872		0x8872
 #define PCI_DEVICE_ID_ITE_IT8330G_0	0xe886
 
--- drivers/ide/pci/siimage.c~	2004-07-28 14:23:17.506559712 +0100
+++ drivers/ide/pci/siimage.c	2004-07-28 14:23:17.507559560 +0100
@@ -19,6 +19,8 @@
  *	If you have strange problems with nVidia chipset systems please
  *	see the SI support documentation and update your system BIOS
  *	if neccessary
+ *
+ *  17/06/2004: Added PCI ID's for Innovision DM-8401H card - mocko@mocko.org.uk
  */
 
 #include <linux/config.h>
@@ -50,6 +52,7 @@
 		case PCI_DEVICE_ID_SII_1210SA:
 			return 1;
 		case PCI_DEVICE_ID_SII_680:
+		case PCI_DEVICE_ID_ITE_DM8401:
 			return 0;
 	}
 	BUG();
@@ -1108,7 +1111,8 @@
 static ide_pci_device_t siimage_chipsets[] __devinitdata = {
 	/* 0 */ DECLARE_SII_DEV("SiI680"),
 	/* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA"),
-	/* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA")
+	/* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA"),
+	/* 3 */ DECLARE_SII_DEV("InnoVISION DM8401H")
 };
 
 /**
@@ -1132,6 +1136,7 @@
 	{ PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_3112, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
 	{ PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_SII_1210SA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
 #endif
+	{ PCI_VENDOR_ID_ITE, PCI_DEVICE_ID_ITE_DM8401,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
 	{ 0, },
 };
 MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);

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

* Re: PATCH: Add support for Innovision DM-8401H
  2004-07-28 14:10 ` Bartlomiej Zolnierkiewicz
@ 2004-07-28 14:08   ` Alan Cox
  2004-07-28 14:34     ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: Alan Cox @ 2004-07-28 14:08 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz; +Cc: Alan Cox, akpm, linux-kernel

On Wed, Jul 28, 2004 at 04:10:54PM +0200, Bartlomiej Zolnierkiewicz wrote:
> On Wednesday 28 of July 2004 15:49, Alan Cox wrote:
> > This is an SII 680 with strange PCI identifiers it appears
> No, this is a different chipset (produced by ITE).

Ok then its a different chipset produced by ITE which appears to work
perfectly with the SII driver, rather like the different chipset produced
by Adaptec that is bug compatible and register identical with the SI3112

> I asked you to compare Sil and ITE datasheets
> (as I don't have one for Sil0680).
> 
> Have you done this?

I don't have the ITE datasheet.

Alan


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

* Re: PATCH: Add support for Innovision DM-8401H
  2004-07-28 13:49 PATCH: Add support for Innovision DM-8401H Alan Cox
@ 2004-07-28 14:10 ` Bartlomiej Zolnierkiewicz
  2004-07-28 14:08   ` Alan Cox
  0 siblings, 1 reply; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2004-07-28 14:10 UTC (permalink / raw)
  To: Alan Cox; +Cc: akpm, linux-kernel


[ cc: linux-ide, please! ]

On Wednesday 28 of July 2004 15:49, Alan Cox wrote:
> This is an SII 680 with strange PCI identifiers it appears

No, this is a different chipset (produced by ITE).

> Original patch: Alex Hewson
> Verified by: Alan Cox <alan@redhat.com>

I asked you to compare Sil and ITE datasheets
(as I don't have one for Sil0680).

Have you done this?

> @@ -1634,6 +1634,7 @@
>  #define PCI_VENDOR_ID_ITE		0x1283
>  #define PCI_DEVICE_ID_ITE_IT8172G	0x8172
>  #define PCI_DEVICE_ID_ITE_IT8172G_AUDIO 0x0801
> +#define PCI_DEVICE_ID_ITE_DM8401	0x8212

This chipset is used by other cards as well.
 
> @@ -1108,7 +1111,8 @@
>  static ide_pci_device_t siimage_chipsets[] __devinitdata = {
>  	/* 0 */ DECLARE_SII_DEV("SiI680"),
>  	/* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA"),
> -	/* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA")
> +	/* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA"),
> +	/* 3 */ DECLARE_SII_DEV("InnoVISION DM8401H")
>  };

ditto


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

* Re: PATCH: Add support for Innovision DM-8401H
  2004-07-28 14:08   ` Alan Cox
@ 2004-07-28 14:34     ` Bartlomiej Zolnierkiewicz
  2004-07-28 14:38       ` Alan Cox
  0 siblings, 1 reply; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2004-07-28 14:34 UTC (permalink / raw)
  To: Alan Cox; +Cc: akpm, linux-kernel

On Wednesday 28 of July 2004 16:08, Alan Cox wrote:
> On Wed, Jul 28, 2004 at 04:10:54PM +0200, Bartlomiej Zolnierkiewicz wrote:
> > On Wednesday 28 of July 2004 15:49, Alan Cox wrote:
> > > This is an SII 680 with strange PCI identifiers it appears
> >
> > No, this is a different chipset (produced by ITE).
>
> Ok then its a different chipset produced by ITE which appears to work
> perfectly with the SII driver, rather like the different chipset produced
> by Adaptec that is bug compatible and register identical with the SI3112
>
> > I asked you to compare Sil and ITE datasheets
> > (as I don't have one for Sil0680).
> >
> > Have you done this?
>
> I don't have the ITE datasheet.

google is your friend: "IT8212F .pdf"


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

* Re: PATCH: Add support for Innovision DM-8401H
  2004-07-28 14:34     ` Bartlomiej Zolnierkiewicz
@ 2004-07-28 14:38       ` Alan Cox
  0 siblings, 0 replies; 5+ messages in thread
From: Alan Cox @ 2004-07-28 14:38 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz; +Cc: Alan Cox, akpm, linux-kernel

On Wed, Jul 28, 2004 at 04:34:53PM +0200, Bartlomiej Zolnierkiewicz wrote:
> > > I asked you to compare Sil and ITE datasheets
> > > (as I don't have one for Sil0680).
> > >
> > > Have you done this?
> >
> > I don't have the ITE datasheet.
> google is your friend: "IT8212F .pdf"

Ok the 8212F is different. Similar enough that the si680 driver would happen
to work in a lot of cases but you are correct this patch should not go in.



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

end of thread, other threads:[~2004-07-28 14:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-28 13:49 PATCH: Add support for Innovision DM-8401H Alan Cox
2004-07-28 14:10 ` Bartlomiej Zolnierkiewicz
2004-07-28 14:08   ` Alan Cox
2004-07-28 14:34     ` Bartlomiej Zolnierkiewicz
2004-07-28 14:38       ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox