hwif->mmio = 1;
default_hwif_mmiops(hwif);
- ide_setup_dma(hwif, mem->start);
+ printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
+
+ if (ide_allocate_dma_engine(hwif) == 0)
+ ide_setup_dma(hwif, mem->start);
idx[0] = i;
void ide_setup_dma(ide_hwif_t *hwif, unsigned long base)
{
- if (hwif->mmio)
- printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
- else
- printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
- hwif->name, base, base + 7);
-
- hwif->extra_base = base + (hwif->channel ? 8 : 16);
-
- if (ide_allocate_dma_engine(hwif)) {
- ide_release_dma_engine(hwif);
- return;
- }
-
hwif->dma_base = base;
if (!hwif->dma_command)
if ((d->host_flags & IDE_HFLAG_NO_AUTODMA) == 0 ||
((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
(dev->class & 0x80))) {
- unsigned long dma_base = ide_get_or_set_dma_base(d, hwif);
+ unsigned long base = ide_get_or_set_dma_base(d, hwif);
- if (dma_base == 0 || ide_pci_set_master(dev, d->name) < 0)
+ if (base == 0 || ide_pci_set_master(dev, d->name) < 0)
goto out_disabled;
if (d->init_dma)
- d->init_dma(hwif, dma_base);
+ d->init_dma(hwif, base);
- ide_setup_dma(hwif, dma_base);
+ if (hwif->mmio)
+ printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
+ else
+ printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx\n",
+ hwif->name, base, base + 7);
+
+ hwif->extra_base = base + (hwif->channel ? 8 : 16);
+
+ if (ide_allocate_dma_engine(hwif) == 0)
+ ide_setup_dma(hwif, base);
}
return;