aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci/it8213.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-10-18 18:30:07 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-10-18 18:30:07 -0400
commit5f8b6c34854a966fe5eb7241fde0419d47d5d408 (patch)
tree052afd508d9cd314f503d938182db55355f1b392 /drivers/ide/pci/it8213.c
parent9adf768a398745c539623210502b521e671c59d7 (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/it8213.c')
-rw-r--r--drivers/ide/pci/it8213.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/ide/pci/it8213.c b/drivers/ide/pci/it8213.c
index f161836709ff..e0c1d50e50d4 100644
--- a/drivers/ide/pci/it8213.c
+++ b/drivers/ide/pci/it8213.c
@@ -176,10 +176,6 @@ static void __devinit init_hwif_it8213(ide_hwif_t *hwif)
176 if (!hwif->dma_base) 176 if (!hwif->dma_base)
177 return; 177 return;
178 178
179 hwif->ultra_mask = 0x7f;
180 hwif->mwdma_mask = 0x06;
181 hwif->swdma_mask = 0x04;
182
183 pci_read_config_byte(hwif->pci_dev, 0x42, &reg42h); 179 pci_read_config_byte(hwif->pci_dev, 0x42, &reg42h);
184 180
185 if (hwif->cbl != ATA_CBL_PATA40_SHORT) 181 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
@@ -195,6 +191,9 @@ static void __devinit init_hwif_it8213(ide_hwif_t *hwif)
195 .host_flags = IDE_HFLAG_SINGLE | \ 191 .host_flags = IDE_HFLAG_SINGLE | \
196 IDE_HFLAG_BOOTABLE, \ 192 IDE_HFLAG_BOOTABLE, \
197 .pio_mask = ATA_PIO4, \ 193 .pio_mask = ATA_PIO4, \
194 .swdma_mask = ATA_SWDMA2_ONLY, \
195 .mwdma_mask = ATA_MWDMA12_ONLY, \
196 .udma_mask = ATA_UDMA6, \
198 } 197 }
199 198
200static ide_pci_device_t it8213_chipsets[] __devinitdata = { 199static ide_pci_device_t it8213_chipsets[] __devinitdata = {