diff options
Diffstat (limited to 'drivers/ide/pci/cmd64x.c')
-rw-r--r-- | drivers/ide/pci/cmd64x.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/ide/pci/cmd64x.c b/drivers/ide/pci/cmd64x.c index 360ca32a0f7e..0ad57c497b0d 100644 --- a/drivers/ide/pci/cmd64x.c +++ b/drivers/ide/pci/cmd64x.c | |||
@@ -517,9 +517,6 @@ static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif) | |||
517 | if (!hwif->dma_base) | 517 | if (!hwif->dma_base) |
518 | return; | 518 | return; |
519 | 519 | ||
520 | hwif->mwdma_mask = 0x07; | ||
521 | hwif->ultra_mask = hwif->cds->udma_mask; | ||
522 | |||
523 | /* | 520 | /* |
524 | * UltraDMA only supported on PCI646U and PCI646U2, which | 521 | * UltraDMA only supported on PCI646U and PCI646U2, which |
525 | * correspond to revisions 0x03, 0x05 and 0x07 respectively. | 522 | * correspond to revisions 0x03, 0x05 and 0x07 respectively. |
@@ -586,6 +583,7 @@ static ide_pci_device_t cmd64x_chipsets[] __devinitdata = { | |||
586 | .enablebits = {{0x00,0x00,0x00}, {0x51,0x08,0x08}}, | 583 | .enablebits = {{0x00,0x00,0x00}, {0x51,0x08,0x08}}, |
587 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, | 584 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, |
588 | .pio_mask = ATA_PIO5, | 585 | .pio_mask = ATA_PIO5, |
586 | .mwdma_mask = ATA_MWDMA2, | ||
589 | .udma_mask = 0x00, /* no udma */ | 587 | .udma_mask = 0x00, /* no udma */ |
590 | },{ /* 1 */ | 588 | },{ /* 1 */ |
591 | .name = "CMD646", | 589 | .name = "CMD646", |
@@ -595,7 +593,8 @@ static ide_pci_device_t cmd64x_chipsets[] __devinitdata = { | |||
595 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, | 593 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
596 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, | 594 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, |
597 | .pio_mask = ATA_PIO5, | 595 | .pio_mask = ATA_PIO5, |
598 | .udma_mask = 0x07, /* udma0-2 */ | 596 | .mwdma_mask = ATA_MWDMA2, |
597 | .udma_mask = ATA_UDMA2, | ||
599 | },{ /* 2 */ | 598 | },{ /* 2 */ |
600 | .name = "CMD648", | 599 | .name = "CMD648", |
601 | .init_setup = init_setup_cmd64x, | 600 | .init_setup = init_setup_cmd64x, |
@@ -604,7 +603,8 @@ static ide_pci_device_t cmd64x_chipsets[] __devinitdata = { | |||
604 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, | 603 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
605 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, | 604 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, |
606 | .pio_mask = ATA_PIO5, | 605 | .pio_mask = ATA_PIO5, |
607 | .udma_mask = 0x1f, /* udma0-4 */ | 606 | .mwdma_mask = ATA_MWDMA2, |
607 | .udma_mask = ATA_UDMA4, | ||
608 | },{ /* 3 */ | 608 | },{ /* 3 */ |
609 | .name = "CMD649", | 609 | .name = "CMD649", |
610 | .init_setup = init_setup_cmd64x, | 610 | .init_setup = init_setup_cmd64x, |
@@ -613,7 +613,8 @@ static ide_pci_device_t cmd64x_chipsets[] __devinitdata = { | |||
613 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, | 613 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
614 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, | 614 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH | IDE_HFLAG_BOOTABLE, |
615 | .pio_mask = ATA_PIO5, | 615 | .pio_mask = ATA_PIO5, |
616 | .udma_mask = 0x3f, /* udma0-5 */ | 616 | .mwdma_mask = ATA_MWDMA2, |
617 | .udma_mask = ATA_UDMA5, | ||
617 | } | 618 | } |
618 | }; | 619 | }; |
619 | 620 | ||