diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-18 18:30:07 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-18 18:30:07 -0400 |
commit | 5f8b6c34854a966fe5eb7241fde0419d47d5d408 (patch) | |
tree | 052afd508d9cd314f503d938182db55355f1b392 /drivers/ide/pci/siimage.c | |
parent | 9adf768a398745c539623210502b521e671c59d7 (diff) |
ide: add ->mwdma_mask and ->swdma_mask to ide_pci_device_t (take 2)
* Add ->mwdma_mask and ->swdma_mask to ide_pci_device_t.
* Set ide_hwif_t DMA masks using DMA masks from ide_pci_device_t in
setup-pci.c::ide_pci_setup_ports() (iff DMA base is valid and ->init_hwif
method may still override them).
* Convert IDE PCI host drivers to use ide_pci_device_t DMA masks.
While at it:
* Use ATA_{UDMA,MWDMA,SWDMA}* defines.
* hpt34x.c: add separate ide_pci_device_t instances for HPT343 and HPT345.
* serverworks.c: fix DMA masks being set before checking DMA base.
v2:
* Add missing masks to DECLARE_GENERIC_PCI_DEV() macro.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/siimage.c')
-rw-r--r-- | drivers/ide/pci/siimage.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/ide/pci/siimage.c b/drivers/ide/pci/siimage.c index f3ed91006f3f..eda11050a02d 100644 --- a/drivers/ide/pci/siimage.c +++ b/drivers/ide/pci/siimage.c | |||
@@ -896,9 +896,6 @@ static void __devinit init_hwif_siimage(ide_hwif_t *hwif) | |||
896 | if (hwif->dma_base == 0) | 896 | if (hwif->dma_base == 0) |
897 | return; | 897 | return; |
898 | 898 | ||
899 | hwif->ultra_mask = 0x7f; | ||
900 | hwif->mwdma_mask = 0x07; | ||
901 | |||
902 | if (is_sata(hwif)) | 899 | if (is_sata(hwif)) |
903 | hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA; | 900 | hwif->host_flags |= IDE_HFLAG_NO_ATAPI_DMA; |
904 | 901 | ||
@@ -921,6 +918,8 @@ static void __devinit init_hwif_siimage(ide_hwif_t *hwif) | |||
921 | .fixup = siimage_fixup, \ | 918 | .fixup = siimage_fixup, \ |
922 | .host_flags = IDE_HFLAG_BOOTABLE, \ | 919 | .host_flags = IDE_HFLAG_BOOTABLE, \ |
923 | .pio_mask = ATA_PIO4, \ | 920 | .pio_mask = ATA_PIO4, \ |
921 | .mwdma_mask = ATA_MWDMA2, \ | ||
922 | .udma_mask = ATA_UDMA6, \ | ||
924 | } | 923 | } |
925 | 924 | ||
926 | static ide_pci_device_t siimage_chipsets[] __devinitdata = { | 925 | static ide_pci_device_t siimage_chipsets[] __devinitdata = { |