* [PATCH ide-2.6] pdc202xx_new: hardware auto set timing registers fix
@ 2005-03-07 10:43 Albert Lee
0 siblings, 0 replies; only message in thread
From: Albert Lee @ 2005-03-07 10:43 UTC (permalink / raw)
To: Bartlomiej Zolnierkiewicz; +Cc: Linux IDE
Hi Bart,
These is the patches for pdc202xx_new hardware auto set timing register problem.
(Promise pdc2027x hardware will look at the SET FEATURES and set the timing registers
automatically. Under 133MHz PLL, the values set by the hardware is based on 100MHz and is incorrect.)
Changes:
- Reorder initialization sequence in pdcnew_new_tune_chipset() to issue SETFEATURES_XFER to the drive first.
- If the adapter is running 133MHz PLL, then override the timing registers set by hardware by software.
Attached please find the patch against the ide-2.6 tree for your review. Thanks.
Albert
Signed-off-by: Albert Lee <albertcc@tw.ibm.com>
-------
diff -Nru libata-dev-2.6-pll/drivers/ide/pci/pdc202xx_new.c libata-dev-2.6-hwauto/drivers/ide/pci/pdc202xx_new.c
--- libata-dev-2.6-pll/drivers/ide/pci/pdc202xx_new.c 2005-03-04 15:48:09.000000000 +0800
+++ libata-dev-2.6-hwauto/drivers/ide/pci/pdc202xx_new.c 2005-03-07 18:19:06.000000000 +0800
@@ -191,6 +191,13 @@
u8 adj = (drive->dn%2) ? 0x08 : 0x00;
u8 speed = ide_rate_filter(pdcnew_ratemask(drive), xferspeed);
unsigned int mode;
+ int rc;
+
+ /*
+ * Issue SETFEATURES_XFER to the drive first. The pdc202xx hardware will
+ * automatically set the timing registers based on 100MHz PLL.
+ */
+ rc = ide_config_drive_speed(drive, speed);
if (speed == XFER_UDMA_2) {
u8 tmp8;
@@ -200,44 +207,50 @@
} else if (speed == XFER_UDMA_7)
speed = XFER_UDMA_6;
- mode = speed & 0x07;
+ /*
+ * Override the timing registers by software if the PLL is 133MHz.
+ */
+ if (pdcnew_chip_clock(hwif->pci_dev) == 4) {
+ mode = speed & 0x07;
- switch (speed) {
- case XFER_UDMA_6:
- case XFER_UDMA_5:
- case XFER_UDMA_4:
- case XFER_UDMA_3:
- case XFER_UDMA_2:
- case XFER_UDMA_1:
- case XFER_UDMA_0:
- pdc_set_indexed_reg(hwif, 0x10 + adj, pdcnew_udma_timing_tbl[mode].value0);
- pdc_set_indexed_reg(hwif, 0x11 + adj, pdcnew_udma_timing_tbl[mode].value1);
- pdc_set_indexed_reg(hwif, 0x12 + adj, pdcnew_udma_timing_tbl[mode].value2);
- break;
-
- case XFER_MW_DMA_2:
- case XFER_MW_DMA_1:
- case XFER_MW_DMA_0:
- pdc_set_indexed_reg(hwif, 0x0e + adj, pdcnew_mdma_timing_tbl[mode].value0);
- pdc_set_indexed_reg(hwif, 0x0f + adj, pdcnew_mdma_timing_tbl[mode].value1);
- break;
-
- case XFER_PIO_4:
- case XFER_PIO_3:
- case XFER_PIO_2:
- case XFER_PIO_1:
- case XFER_PIO_0:
- pdc_set_indexed_reg(hwif, 0x0c + adj, pdcnew_pio_timing_tbl[mode].value0);
- pdc_set_indexed_reg(hwif, 0x0d + adj, pdcnew_pio_timing_tbl[mode].value1);
- pdc_set_indexed_reg(hwif, 0x13 + adj, pdcnew_pio_timing_tbl[mode].value2);
- break;
-
- default:
- printk(KERN_ERR DRV_NAME ": Unknown speed %d ignored\n", speed);
- ;
+
+ switch (speed) {
+ case XFER_UDMA_6:
+ case XFER_UDMA_5:
+ case XFER_UDMA_4:
+ case XFER_UDMA_3:
+ case XFER_UDMA_2:
+ case XFER_UDMA_1:
+ case XFER_UDMA_0:
+ pdc_set_indexed_reg(hwif, 0x10 + adj, pdcnew_udma_timing_tbl[mode].value0);
+ pdc_set_indexed_reg(hwif, 0x11 + adj, pdcnew_udma_timing_tbl[mode].value1);
+ pdc_set_indexed_reg(hwif, 0x12 + adj, pdcnew_udma_timing_tbl[mode].value2);
+ break;
+
+ case XFER_MW_DMA_2:
+ case XFER_MW_DMA_1:
+ case XFER_MW_DMA_0:
+ pdc_set_indexed_reg(hwif, 0x0e + adj, pdcnew_mdma_timing_tbl[mode].value0);
+ pdc_set_indexed_reg(hwif, 0x0f + adj, pdcnew_mdma_timing_tbl[mode].value1);
+ break;
+
+ case XFER_PIO_4:
+ case XFER_PIO_3:
+ case XFER_PIO_2:
+ case XFER_PIO_1:
+ case XFER_PIO_0:
+ pdc_set_indexed_reg(hwif, 0x0c + adj, pdcnew_pio_timing_tbl[mode].value0);
+ pdc_set_indexed_reg(hwif, 0x0d + adj, pdcnew_pio_timing_tbl[mode].value1);
+ pdc_set_indexed_reg(hwif, 0x13 + adj, pdcnew_pio_timing_tbl[mode].value2);
+ break;
+
+ default:
+ printk(KERN_ERR DRV_NAME ": Unknown speed %d ignored\n", speed);
+ ;
+ }
}
- return (ide_config_drive_speed(drive, speed));
+ return rc;
}
/* 0 1 2 3 4 5 6 7 8
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-03-07 10:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-07 10:43 [PATCH ide-2.6] pdc202xx_new: hardware auto set timing registers fix Albert Lee
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).