public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* VIA VT610 IDE support for 2.4.28 (trivial)
@ 2004-11-23  7:23 Mathias Kretschmer
  2004-11-23 18:27 ` Jeff Garzik
  0 siblings, 1 reply; 9+ messages in thread
From: Mathias Kretschmer @ 2004-11-23  7:23 UTC (permalink / raw)
  To: Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

hi,

I found an older version of this patch (against 2.4.22) on some website. 
After a little bit of editing it applied cleanly to 2.4.27 (and now 
2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 4x 300GB disks.

Maybe someone finds this patch helpful. Any reason why the original 
patch did not make it into the kernel ?

-Mathias

[-- Attachment #2: 2.4.28-vt610.patch --]
[-- Type: text/plain, Size: 2417 bytes --]

diff -u -r -N linux-2.4.28/drivers/ide/pci/generic.c linux-2.4.28-vt610/drivers/ide/pci/generic.c
--- linux-2.4.28/drivers/ide/pci/generic.c	2004-08-07 16:26:04.000000000 -0700
+++ linux-2.4.28-vt610/drivers/ide/pci/generic.c	2004-11-22 21:50:25.000000000 -0800
@@ -66,6 +66,9 @@
 	hwif->mwdma_mask = 0x07;
 	hwif->swdma_mask = 0x07;
 
+	if (hwif->pci_dev->device == PCI_DEVICE_ID_VIA_610) 
+   		hwif->udma_four = 1; /* mj */
+
 	if (!noautodma)
 		hwif->autodma = 1;
 	hwif->drives[0].autodma = hwif->autodma;
@@ -143,6 +146,7 @@
 	{ PCI_VENDOR_ID_TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO,	   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 9},
 	{ PCI_VENDOR_ID_TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_1,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 10},
 	{ PCI_VENDOR_ID_TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_2,  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 11},
+	{ PCI_VENDOR_ID_VIA,    PCI_DEVICE_ID_VIA_610,             PCI_ANY_ID, PCI_ANY_ID, 0, 0, 12},
 	{ 0, },
 };
 
diff -u -r -N linux-2.4.28/drivers/ide/pci/generic.h linux-2.4.28-vt610/drivers/ide/pci/generic.h
--- linux-2.4.28/drivers/ide/pci/generic.h	2004-08-07 16:26:04.000000000 -0700
+++ linux-2.4.28-vt610/drivers/ide/pci/generic.h	2004-11-22 21:50:13.000000000 -0800
@@ -157,6 +157,19 @@
 		.channels	= 2,
 		.autodma	= NOAUTODMA,
 		.bootable	= ON_BOARD,
+	},{	/* 12 */
+	        .vendor         = PCI_VENDOR_ID_VIA,
+	        .device         = PCI_DEVICE_ID_VIA_610,
+	        .name           = "VIA_610",
+	        .init_chipset   = init_chipset_generic,
+	        .init_iops      = NULL,
+	        .init_hwif      = init_hwif_generic,
+	        .init_dma       = init_dma_generic,
+	        .channels       = 2,
+	        .autodma        = AUTODMA,
+	        .enablebits     = {{0x00,0x00,0x00}, {0x00,0x00,0x00}},
+	        .bootable       = ON_BOARD,
+	        .extra          = 0,
 	},{
 		.vendor		= 0,
 		.device		= 0,
diff -u -r -N linux-2.4.28/include/linux/pci_ids.h linux-2.4.28-vt610/include/linux/pci_ids.h
--- linux-2.4.28/include/linux/pci_ids.h	2004-11-17 03:54:22.000000000 -0800
+++ linux-2.4.28-vt610/include/linux/pci_ids.h	2004-11-22 21:54:09.000000000 -0800
@@ -1123,6 +1123,7 @@
 #define PCI_DEVICE_ID_VIA_8233A		0x3147
 #define PCI_DEVICE_ID_VIA_P4M266	0x3148
 #define PCI_DEVICE_ID_VIA_8237_SATA	0x3149
+#define PCI_DEVICE_ID_VIA_610		0x3164
 #define PCI_DEVICE_ID_VIA_P4X333	0x3168
 #define PCI_DEVICE_ID_VIA_8235		0x3177
 #define PCI_DEVICE_ID_VIA_8377_0	0x3189

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

* Re: VIA VT610 IDE support for 2.4.28 (trivial)
  2004-11-23  7:23 VIA VT610 IDE support for 2.4.28 (trivial) Mathias Kretschmer
@ 2004-11-23 18:27 ` Jeff Garzik
  2004-11-23 20:48   ` Mathias Kretschmer
  0 siblings, 1 reply; 9+ messages in thread
From: Jeff Garzik @ 2004-11-23 18:27 UTC (permalink / raw)
  To: Mathias Kretschmer; +Cc: Kernel Mailing List

Mathias Kretschmer wrote:
> hi,
> 
> I found an older version of this patch (against 2.4.22) on some website. 
> After a little bit of editing it applied cleanly to 2.4.27 (and now 
> 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 4x 300GB disks.
> 
> Maybe someone finds this patch helpful. Any reason why the original 
> patch did not make it into the kernel ?

Why not add it to the existing via82cxxx driver, and get better 
performance and device tuning?

	Jeff




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

* Re: VIA VT610 IDE support for 2.4.28 (trivial)
  2004-11-23 18:27 ` Jeff Garzik
@ 2004-11-23 20:48   ` Mathias Kretschmer
  2005-02-06 23:02     ` VIA VT610 IDE support for 2.4.28 (trivial) - now for 2.4.29/via82cxxx Mathias Kretschmer
  0 siblings, 1 reply; 9+ messages in thread
From: Mathias Kretschmer @ 2004-11-23 20:48 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel

Jeff Garzik wrote:

> Mathias Kretschmer wrote:
>
>> hi,
>>
>> I found an older version of this patch (against 2.4.22) on some 
>> website. After a little bit of editing it applied cleanly to 2.4.27 
>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 
>> 4x 300GB disks.
>>
>> Maybe someone finds this patch helpful. Any reason why the original 
>> patch did not make it into the kernel ?
>
>
> Why not add it to the existing via82cxxx driver, and get better 
> performance and device tuning?


I only have that one ASUS board and there's data on the disks that I do 
not want to loose.
The current patch worked well for me (performance is pretty decent), so 
I went with it.

I can modify the VIA driver code, but looking at the various 
exceptions/quirks for the various VIA chip sets, I'm a bit hesitant to 
test it on my box.

-Mathias


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

* Re: VIA VT610 IDE support for 2.4.28 (trivial) - now for 2.4.29/via82cxxx
  2004-11-23 20:48   ` Mathias Kretschmer
@ 2005-02-06 23:02     ` Mathias Kretschmer
  2005-02-07 17:16       ` VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx Mathias Kretschmer
  0 siblings, 1 reply; 9+ messages in thread
From: Mathias Kretschmer @ 2005-02-06 23:02 UTC (permalink / raw)
  Cc: Jeff Garzik, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 760 bytes --]

Mathias Kretschmer wrote:
> Jeff Garzik wrote:
> 
>> Mathias Kretschmer wrote:
>>
>>> hi,
>>>
>>> I found an older version of this patch (against 2.4.22) on some 
>>> website. After a little bit of editing it applied cleanly to 2.4.27 
>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 
>>> 4x 300GB disks.
>>>
>>> Maybe someone finds this patch helpful. Any reason why the original 
>>> patch did not make it into the kernel ?
>>
>>
>>
>> Why not add it to the existing via82cxxx driver, and get better 
>> performance and device tuning?

OK, the attached patch adds support for the VIA 6410 chip to the 
via82cxxx driver (instead of the generic driver).
I've tested it on the board mentioned above. Works fine for me.

Cheers,

Mathias

[-- Attachment #2: 2.4.29-vt6410.patch --]
[-- Type: text/plain, Size: 2661 bytes --]

diff -aurN linux-2.4.29/drivers/ide/pci/via82cxxx.c linux-2.4.29-vanilla/drivers/ide/pci/via82cxxx.c
--- linux-2.4.29/drivers/ide/pci/via82cxxx.c	2003-08-25 04:44:41.000000000 -0700
+++ linux-2.4.29-vanilla/drivers/ide/pci/via82cxxx.c	2005-02-06 14:45:20.000000000 -0800
@@ -74,6 +74,7 @@
 	u8 rev_max;
 	u16 flags;
 } via_isa_bridges[] = {
+	{ "vt6410",	PCI_DEVICE_ID_VIA_6410,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8237",	PCI_DEVICE_ID_VIA_8237,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8235",	PCI_DEVICE_ID_VIA_8235,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8233a",	PCI_DEVICE_ID_VIA_8233A,    0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
@@ -641,6 +642,7 @@
 static struct pci_device_id via_pci_tbl[] __devinitdata = {
 	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C576_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
 	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
+	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_6410,     PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
 	{ 0, },
 };
 
diff -aurN linux-2.4.29/drivers/ide/pci/via82cxxx.h linux-2.4.29-vanilla/drivers/ide/pci/via82cxxx.h
--- linux-2.4.29/drivers/ide/pci/via82cxxx.h	2003-06-13 07:51:33.000000000 -0700
+++ linux-2.4.29-vanilla/drivers/ide/pci/via82cxxx.h	2005-02-06 14:45:16.000000000 -0800
@@ -56,6 +56,19 @@
 		.enablebits	= {{0x40,0x02,0x02}, {0x40,0x01,0x01}},
 		.bootable	= ON_BOARD,
 		.extra		= 0,
+        },{     /* 2 */
+                .vendor         = PCI_VENDOR_ID_VIA,
+                .device         = PCI_DEVICE_ID_VIA_6410,
+                .name           = "VP_IDE",
+                .init_chipset   = init_chipset_via82cxxx,
+                .init_iops      = NULL,
+                .init_hwif      = init_hwif_via82cxxx,
+                .init_dma       = init_dma_via82cxxx,
+                .channels       = 2,
+                .autodma        = AUTODMA,
+                .enablebits     = {{0x00,0x00,0x00}, {0x00,0x00,0x00}},
+                .bootable       = ON_BOARD,
+                .extra          = 0,
 	},{
 		.vendor		= 0,
 		.device		= 0,
diff -aurN linux-2.4.29/include/linux/pci_ids.h linux-2.4.29-vanilla/include/linux/pci_ids.h
--- linux-2.4.29/include/linux/pci_ids.h	2005-01-19 06:10:12.000000000 -0800
+++ linux-2.4.29-vanilla/include/linux/pci_ids.h	2005-02-06 14:46:48.000000000 -0800
@@ -1136,6 +1136,7 @@
 #define PCI_DEVICE_ID_VIA_8233A		0x3147
 #define PCI_DEVICE_ID_VIA_P4M266	0x3148
 #define PCI_DEVICE_ID_VIA_8237_SATA	0x3149
+#define PCI_DEVICE_ID_VIA_6410          0x3164
 #define PCI_DEVICE_ID_VIA_P4X333	0x3168
 #define PCI_DEVICE_ID_VIA_8235		0x3177
 #define PCI_DEVICE_ID_VIA_8377_0	0x3189

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

* VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx
  2005-02-06 23:02     ` VIA VT610 IDE support for 2.4.28 (trivial) - now for 2.4.29/via82cxxx Mathias Kretschmer
@ 2005-02-07 17:16       ` Mathias Kretschmer
  2005-02-07 17:27         ` Jeff Garzik
  0 siblings, 1 reply; 9+ messages in thread
From: Mathias Kretschmer @ 2005-02-07 17:16 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 861 bytes --]

Mathias Kretschmer wrote:
> Mathias Kretschmer wrote:
> 
>> Jeff Garzik wrote:
>>
>>> Mathias Kretschmer wrote:
>>>
>>>> hi,
>>>>
>>>> I found an older version of this patch (against 2.4.22) on some 
>>>> website. After a little bit of editing it applied cleanly to 2.4.27 
>>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 
>>>> 4x 300GB disks.
>>>>
>>>> Maybe someone finds this patch helpful. Any reason why the original 
>>>> patch did not make it into the kernel ?
>>>
>>>
>>>
>>>
>>> Why not add it to the existing via82cxxx driver, and get better 
>>> performance and device tuning?
> 
> 
> OK, the attached patch adds support for the VIA 6410 chip to the 
> via82cxxx driver (instead of the generic driver).
> I've tested it on the board mentioned above. Works fine for me.
> 
> Cheers,
> 
> Mathias

as above, but for 2.6.11-rc3

[-- Attachment #2: 2.6.11-rc3-vt6410.patch --]
[-- Type: text/plain, Size: 2866 bytes --]

diff -ruaN linux-2.6.10/drivers/ide/pci/via82cxxx.c linux-2.6.10-vt6410/drivers/ide/pci/via82cxxx.c
--- linux-2.6.10/drivers/ide/pci/via82cxxx.c	2005-02-07 08:43:05.899657752 -0800
+++ linux-2.6.10-vt6410/drivers/ide/pci/via82cxxx.c	2005-02-07 08:47:24.001420320 -0800
@@ -79,6 +79,7 @@
 	u8 rev_max;
 	u16 flags;
 } via_isa_bridges[] = {
+	{ "vt6410",	PCI_DEVICE_ID_VIA_6410,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8237",	PCI_DEVICE_ID_VIA_8237,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8235",	PCI_DEVICE_ID_VIA_8235,     0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
 	{ "vt8233a",	PCI_DEVICE_ID_VIA_8233A,    0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },
@@ -619,24 +620,35 @@
 	hwif->drives[1].autodma = hwif->autodma;
 }
 
-static ide_pci_device_t via82cxxx_chipset __devinitdata = {
-	.name		= "VP_IDE",
-	.init_chipset	= init_chipset_via82cxxx,
-	.init_hwif	= init_hwif_via82cxxx,
-	.channels	= 2,
-	.autodma	= NOAUTODMA,
-	.enablebits	= {{0x40,0x02,0x02}, {0x40,0x01,0x01}},
-	.bootable	= ON_BOARD,
+static ide_pci_device_t via82cxxx_chipsets[] __devinitdata = {
+	{ /* 0 */
+		.name		= "VP_IDE",
+		.init_chipset	= init_chipset_via82cxxx,
+		.init_hwif	= init_hwif_via82cxxx,
+		.channels	= 2,
+		.autodma	= NOAUTODMA,
+		.enablebits	= {{0x40,0x02,0x02}, {0x40,0x01,0x01}},
+		.bootable	= ON_BOARD
+	},{ /* 1 */
+                .name           = "VP_IDE",
+                .init_chipset   = init_chipset_via82cxxx,
+                .init_hwif      = init_hwif_via82cxxx,
+                .channels       = 2,
+                .autodma        = AUTODMA,
+                .enablebits     = {{0x00,0x00,0x00}, {0x00,0x00,0x00}},
+                .bootable       = ON_BOARD,
+	}
 };
 
 static int __devinit via_init_one(struct pci_dev *dev, const struct pci_device_id *id)
 {
-	return ide_setup_pci_device(dev, &via82cxxx_chipset);
+	return ide_setup_pci_device(dev, &via82cxxx_chipsets[id->driver_data]);
 }
 
 static struct pci_device_id via_pci_tbl[] = {
 	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C576_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
 	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
+	{ PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_6410,     PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
 	{ 0, },
 };
 MODULE_DEVICE_TABLE(pci, via_pci_tbl);
diff -ruaN linux-2.6.10/include/linux/pci_ids.h linux-2.6.10-vt6410/include/linux/pci_ids.h
--- linux-2.6.10/include/linux/pci_ids.h	2005-02-07 08:43:10.560949128 -0800
+++ linux-2.6.10-vt6410/include/linux/pci_ids.h	2005-02-06 17:42:54.836256000 -0800
@@ -1280,6 +1280,7 @@
 #define PCI_DEVICE_ID_VIA_8703_51_0	0x3148
 #define PCI_DEVICE_ID_VIA_8237_SATA	0x3149
 #define PCI_DEVICE_ID_VIA_XN266		0x3156
+#define PCI_DEVICE_ID_VIA_6410          0x3164
 #define PCI_DEVICE_ID_VIA_8754C_0	0x3168
 #define PCI_DEVICE_ID_VIA_8235		0x3177
 #define PCI_DEVICE_ID_VIA_P4N333	0x3178

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

* Re: VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx
  2005-02-07 17:16       ` VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx Mathias Kretschmer
@ 2005-02-07 17:27         ` Jeff Garzik
  2005-02-11 18:33           ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 9+ messages in thread
From: Jeff Garzik @ 2005-02-07 17:27 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz; +Cc: Mathias Kretschmer, linux-kernel

Mathias Kretschmer wrote:
> Mathias Kretschmer wrote:
> 
>> Mathias Kretschmer wrote:
>>
>>> Jeff Garzik wrote:
>>>
>>>> Mathias Kretschmer wrote:
>>>>
>>>>> hi,
>>>>>
>>>>> I found an older version of this patch (against 2.4.22) on some 
>>>>> website. After a little bit of editing it applied cleanly to 2.4.27 
>>>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with 
>>>>> 4x 300GB disks.
>>>>>
>>>>> Maybe someone finds this patch helpful. Any reason why the original 
>>>>> patch did not make it into the kernel ?
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Why not add it to the existing via82cxxx driver, and get better 
>>>> performance and device tuning?
>>
>>
>>
>> OK, the attached patch adds support for the VIA 6410 chip to the 
>> via82cxxx driver (instead of the generic driver).
>> I've tested it on the board mentioned above. Works fine for me.
>>
>> Cheers,
>>
>> Mathias
> 
> 
> as above, but for 2.6.11-rc3


Bart, got this one?

	Jeff



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

* Re: VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx
  2005-02-07 17:27         ` Jeff Garzik
@ 2005-02-11 18:33           ` Bartlomiej Zolnierkiewicz
  2005-08-15 11:50             ` Sergey Vlasov
  2005-08-17 13:16             ` Sergey Vlasov
  0 siblings, 2 replies; 9+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2005-02-11 18:33 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Mathias Kretschmer, linux-kernel

On Mon, 07 Feb 2005 12:27:47 -0500, Jeff Garzik <jgarzik@pobox.com> wrote:
> Mathias Kretschmer wrote:
> > Mathias Kretschmer wrote:
> >
> >> Mathias Kretschmer wrote:
> >>
> >>> Jeff Garzik wrote:
> >>>
> >>>> Mathias Kretschmer wrote:
> >>>>
> >>>>> hi,
> >>>>>
> >>>>> I found an older version of this patch (against 2.4.22) on some
> >>>>> website. After a little bit of editing it applied cleanly to 2.4.27
> >>>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with
> >>>>> 4x 300GB disks.
> >>>>>
> >>>>> Maybe someone finds this patch helpful. Any reason why the original
> >>>>> patch did not make it into the kernel ?
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>> Why not add it to the existing via82cxxx driver, and get better
> >>>> performance and device tuning?
> >>
> >>
> >>
> >> OK, the attached patch adds support for the VIA 6410 chip to the
> >> via82cxxx driver (instead of the generic driver).
> >> I've tested it on the board mentioned above. Works fine for me.
> >>
> >> Cheers,
> >>
> >> Mathias
> >
> >
> > as above, but for 2.6.11-rc3
> 
> Bart, got this one?

I applied it (after whitespace cleanup) to ide-dev-2.6.

Thanks,
Bartlomiej

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

* Re: VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx
  2005-02-11 18:33           ` Bartlomiej Zolnierkiewicz
@ 2005-08-15 11:50             ` Sergey Vlasov
  2005-08-17 13:16             ` Sergey Vlasov
  1 sibling, 0 replies; 9+ messages in thread
From: Sergey Vlasov @ 2005-08-15 11:50 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz; +Cc: Jeff Garzik, Mathias Kretschmer, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1469 bytes --]

On Fri, Feb 11, 2005 at 07:33:59PM +0100, Bartlomiej Zolnierkiewicz wrote:
> On Mon, 07 Feb 2005 12:27:47 -0500, Jeff Garzik <jgarzik@pobox.com> wrote:
> > Mathias Kretschmer wrote:
> > > Mathias Kretschmer wrote:
> > >> Mathias Kretschmer wrote:
> > >>> Jeff Garzik wrote:
> > >>>> Mathias Kretschmer wrote:
> > >>>>> hi,
> > >>>>>
> > >>>>> I found an older version of this patch (against 2.4.22) on some
> > >>>>> website. After a little bit of editing it applied cleanly to 2.4.27
> > >>>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with
> > >>>>> 4x 300GB disks.
> > >>>>>
> > >>>>> Maybe someone finds this patch helpful. Any reason why the original
> > >>>>> patch did not make it into the kernel ?
> > >>>>
> > >>>> Why not add it to the existing via82cxxx driver, and get better
> > >>>> performance and device tuning?
> > >>
> > >> OK, the attached patch adds support for the VIA 6410 chip to the
> > >> via82cxxx driver (instead of the generic driver).
> > >> I've tested it on the board mentioned above. Works fine for me.
> > >
> > > as above, but for 2.6.11-rc3
> > 
> > Bart, got this one?
> 
> I applied it (after whitespace cleanup) to ide-dev-2.6.

Sorry to bother you, but what's the status of this patch?  Since that
time, 2.6.11 and 2.6.12 kernels were released, now 2.6.13 is almost
ready, and the VT6410 support does not seem to appear even in -mm.
Has the patch been lost, or is it broken?

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx
  2005-02-11 18:33           ` Bartlomiej Zolnierkiewicz
  2005-08-15 11:50             ` Sergey Vlasov
@ 2005-08-17 13:16             ` Sergey Vlasov
  1 sibling, 0 replies; 9+ messages in thread
From: Sergey Vlasov @ 2005-08-17 13:16 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz; +Cc: Jeff Garzik, Mathias Kretschmer, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1628 bytes --]

(sending this again, because did not see the message in linux-kernel
for 2 days and suspect that it has been lost; sorry if someone
receives a duplicate)

On Fri, Feb 11, 2005 at 07:33:59PM +0100, Bartlomiej Zolnierkiewicz wrote:
> On Mon, 07 Feb 2005 12:27:47 -0500, Jeff Garzik <jgarzik@pobox.com> wrote:
> > Mathias Kretschmer wrote:
> > > Mathias Kretschmer wrote:
> > >> Mathias Kretschmer wrote:
> > >>> Jeff Garzik wrote:
> > >>>> Mathias Kretschmer wrote:
> > >>>>> hi,
> > >>>>>
> > >>>>> I found an older version of this patch (against 2.4.22) on some
> > >>>>> website. After a little bit of editing it applied cleanly to 2.4.27
> > >>>>> (and now 2.4.28). It works fine for me on a ASUS P4P800-Deluxe with
> > >>>>> 4x 300GB disks.
> > >>>>>
> > >>>>> Maybe someone finds this patch helpful. Any reason why the original
> > >>>>> patch did not make it into the kernel ?
> > >>>>
> > >>>> Why not add it to the existing via82cxxx driver, and get better
> > >>>> performance and device tuning?
> > >>
> > >> OK, the attached patch adds support for the VIA 6410 chip to the
> > >> via82cxxx driver (instead of the generic driver).
> > >> I've tested it on the board mentioned above. Works fine for me.
> > >
> > > as above, but for 2.6.11-rc3
> > 
> > Bart, got this one?
> 
> I applied it (after whitespace cleanup) to ide-dev-2.6.

Sorry to bother you, but what's the status of this patch?  Since that
time, 2.6.11 and 2.6.12 kernels were released, now 2.6.13 is almost
ready, and the VT6410 support does not seem to appear even in -mm.
Has the patch been lost, or is it broken?

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

end of thread, other threads:[~2005-08-17 13:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-23  7:23 VIA VT610 IDE support for 2.4.28 (trivial) Mathias Kretschmer
2004-11-23 18:27 ` Jeff Garzik
2004-11-23 20:48   ` Mathias Kretschmer
2005-02-06 23:02     ` VIA VT610 IDE support for 2.4.28 (trivial) - now for 2.4.29/via82cxxx Mathias Kretschmer
2005-02-07 17:16       ` VIA VT6410 IDE support for 2.6.11-rc3/via82cxxx Mathias Kretschmer
2005-02-07 17:27         ` Jeff Garzik
2005-02-11 18:33           ` Bartlomiej Zolnierkiewicz
2005-08-15 11:50             ` Sergey Vlasov
2005-08-17 13:16             ` Sergey Vlasov

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