public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFT][PATCH] fix ServerWorks PIO auto-tuning
@ 2003-10-16 21:44 Bartlomiej Zolnierkiewicz
  2003-10-17  7:37 ` Tomas Szepe
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2003-10-16 21:44 UTC (permalink / raw)
  To: Torben Mathiasen, Tomas Szepe; +Cc: linux-kernel


Hi,

I wonder if this patch fixes problems (reported back in 2.4.21 days)
with CSB5 IDE and Compaq Proliant machines.  Please test it if you can.

thanks,
--bartlomiej

[IDE] fix ServerWorks PIO auto-tuning

If PIO mode should be auto-tuned xferspeed argument for svwks_tune_chipset()
is equal to 255 (0xFF).  It is then passed to ide_rate_filter() which matches
desired mode with chipset capabilities.  Since 255 is greater than any of the
values used for transfer modes, ide_rate_filter() will always return the
highest mode supported by both device/chipset (which sometimes should not be
used ie. when host is a simplex one) and the wrong mode will be set.

 drivers/ide/pci/serverworks.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletion(-)

diff -puN drivers/ide/pci/serverworks.c~ide-serverworks-fix drivers/ide/pci/serverworks.c
--- linux-2.6.0-test7/drivers/ide/pci/serverworks.c~ide-serverworks-fix	2003-10-16 23:03:11.844836632 +0200
+++ linux-2.6.0-test7-root/drivers/ide/pci/serverworks.c	2003-10-16 23:36:01.068469136 +0200
@@ -272,7 +272,7 @@ static int svwks_tune_chipset (ide_drive
 
 	ide_hwif_t *hwif	= HWIF(drive);
 	struct pci_dev *dev	= hwif->pci_dev;
-	u8 speed		= ide_rate_filter(svwks_ratemask(drive), xferspeed);
+	u8 speed;
 	u8 pio			= ide_get_best_pio_mode(drive, 255, 5, NULL);
 	u8 unit			= (drive->select.b.unit & 0x01);
 	u8 csb5			= svwks_csb_check(dev);
@@ -280,6 +280,11 @@ static int svwks_tune_chipset (ide_drive
 	u8 dma_timing		= 0, pio_timing = 0;
 	u16 csb5_pio		= 0;
 
+	if (xferspeed == 255)	/* PIO auto-tuning */
+		speed = XFER_PIO_0 + pio;
+	else
+		speed = ide_rate_filter(svwks_ratemask(drive), xferspeed);
+
 	/* If we are about to put a disk into UDMA mode we screwed up.
 	   Our code assumes we never _ever_ do this on an OSB4 */
 	   

_


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

end of thread, other threads:[~2003-10-20 10:46 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-16 21:44 [RFT][PATCH] fix ServerWorks PIO auto-tuning Bartlomiej Zolnierkiewicz
2003-10-17  7:37 ` Tomas Szepe
2003-10-17  9:30   ` Bartlomiej Zolnierkiewicz
2003-10-17  9:51 ` Torben Mathiasen
2003-10-17 10:22   ` Bartlomiej Zolnierkiewicz
2003-10-17 10:20     ` Torben Mathiasen
2003-10-17 10:23   ` Tomas Szepe
2003-10-18 13:02 ` Tomas Szepe
2003-10-18 15:45   ` Bartlomiej Zolnierkiewicz
2003-10-20  9:24     ` Torben Mathiasen
2003-10-20 10:44       ` Tomas Szepe

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