aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/pci')
-rw-r--r--drivers/ide/pci/pdc202xx_new.c16
-rw-r--r--drivers/ide/pci/pdc202xx_old.c20
2 files changed, 1 insertions, 35 deletions
diff --git a/drivers/ide/pci/pdc202xx_new.c b/drivers/ide/pci/pdc202xx_new.c
index 772ca4007de4..65b1e124edf7 100644
--- a/drivers/ide/pci/pdc202xx_new.c
+++ b/drivers/ide/pci/pdc202xx_new.c
@@ -37,8 +37,6 @@
37#include <asm/pci-bridge.h> 37#include <asm/pci-bridge.h>
38#endif 38#endif
39 39
40#define PDC202_DEBUG_CABLE 0
41
42#undef DEBUG 40#undef DEBUG
43 41
44#ifdef DEBUG 42#ifdef DEBUG
@@ -234,17 +232,8 @@ static int config_chipset_for_dma(ide_drive_t *drive)
234{ 232{
235 struct hd_driveid *id = drive->id; 233 struct hd_driveid *id = drive->id;
236 ide_hwif_t *hwif = HWIF(drive); 234 ide_hwif_t *hwif = HWIF(drive);
237 u8 ultra_66 = (id->dma_ultra & 0x0078) ? 1 : 0;
238 u8 cable = pdcnew_cable_detect(hwif);
239 u8 speed; 235 u8 speed;
240 236
241 if (ultra_66 && cable) {
242 printk(KERN_WARNING "Warning: %s channel "
243 "requires an 80-pin cable for operation.\n",
244 hwif->channel ? "Secondary" : "Primary");
245 printk(KERN_WARNING "%s reduced to Ultra33 mode.\n", drive->name);
246 }
247
248 if (id->capability & 4) { 237 if (id->capability & 4) {
249 /* 238 /*
250 * Set IORDY_EN & PREFETCH_EN (this seems to have 239 * Set IORDY_EN & PREFETCH_EN (this seems to have
@@ -547,11 +536,6 @@ static void __devinit init_hwif_pdc202new(ide_hwif_t *hwif)
547 if (!noautodma) 536 if (!noautodma)
548 hwif->autodma = 1; 537 hwif->autodma = 1;
549 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma; 538 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma;
550
551#if PDC202_DEBUG_CABLE
552 printk(KERN_DEBUG "%s: %s-pin cable\n",
553 hwif->name, hwif->udma_four ? "80" : "40");
554#endif /* PDC202_DEBUG_CABLE */
555} 539}
556 540
557static int __devinit init_setup_pdcnew(struct pci_dev *dev, ide_pci_device_t *d) 541static int __devinit init_setup_pdcnew(struct pci_dev *dev, ide_pci_device_t *d)
diff --git a/drivers/ide/pci/pdc202xx_old.c b/drivers/ide/pci/pdc202xx_old.c
index 207a6191fac7..7146fe3f6ba7 100644
--- a/drivers/ide/pci/pdc202xx_old.c
+++ b/drivers/ide/pci/pdc202xx_old.c
@@ -46,7 +46,6 @@
46#include <asm/io.h> 46#include <asm/io.h>
47#include <asm/irq.h> 47#include <asm/irq.h>
48 48
49#define PDC202_DEBUG_CABLE 0
50#define PDC202XX_DEBUG_DRIVE_INFO 0 49#define PDC202XX_DEBUG_DRIVE_INFO 0
51 50
52static const char *pdc_quirk_drives[] = { 51static const char *pdc_quirk_drives[] = {
@@ -238,20 +237,7 @@ static int config_chipset_for_dma (ide_drive_t *drive)
238 u32 drive_conf = 0; 237 u32 drive_conf = 0;
239 u8 drive_pci = 0x60 + (drive->dn << 2); 238 u8 drive_pci = 0x60 + (drive->dn << 2);
240 u8 test1 = 0, test2 = 0, speed = -1; 239 u8 test1 = 0, test2 = 0, speed = -1;
241 u8 AP = 0, cable = 0; 240 u8 AP = 0;
242
243 u8 ultra_66 = ((id->dma_ultra & 0x0010) ||
244 (id->dma_ultra & 0x0008)) ? 1 : 0;
245
246 if (dev->device != PCI_DEVICE_ID_PROMISE_20246)
247 cable = pdc202xx_old_cable_detect(hwif);
248 else
249 ultra_66 = 0;
250
251 if (ultra_66 && cable) {
252 printk(KERN_WARNING "Warning: %s channel requires an 80-pin cable for operation.\n", hwif->channel ? "Secondary":"Primary");
253 printk(KERN_WARNING "%s reduced to Ultra33 mode.\n", drive->name);
254 }
255 241
256 if (dev->device != PCI_DEVICE_ID_PROMISE_20246) 242 if (dev->device != PCI_DEVICE_ID_PROMISE_20246)
257 pdc_old_disable_66MHz_clock(drive->hwif); 243 pdc_old_disable_66MHz_clock(drive->hwif);
@@ -477,10 +463,6 @@ static void __devinit init_hwif_pdc202xx(ide_hwif_t *hwif)
477 if (!noautodma) 463 if (!noautodma)
478 hwif->autodma = 1; 464 hwif->autodma = 1;
479 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma; 465 hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma;
480#if PDC202_DEBUG_CABLE
481 printk(KERN_DEBUG "%s: %s-pin cable\n",
482 hwif->name, hwif->udma_four ? "80" : "40");
483#endif /* PDC202_DEBUG_CABLE */
484} 466}
485 467
486static void __devinit init_dma_pdc202xx(ide_hwif_t *hwif, unsigned long dmabase) 468static void __devinit init_dma_pdc202xx(ide_hwif_t *hwif, unsigned long dmabase)