Lines Matching refs:bmdma2
224 unsigned long bmdma2; /* DMA register block #2 */ member
255 void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2; in sil_bmdma_stop() local
258 iowrite8(0, bmdma2); in sil_bmdma_stop()
281 void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2; in sil_bmdma_start() local
289 iowrite8(dmactl, bmdma2); in sil_bmdma_start()
419 static void sil_host_intr(struct ata_port *ap, u32 bmdma2) in sil_host_intr() argument
425 if (unlikely(bmdma2 & SIL_DMA_SATA_IRQ)) { in sil_host_intr()
443 if (!(bmdma2 & SIL_DMA_COMPLETE)) in sil_host_intr()
472 if (bmdma2 & SIL_DMA_ERROR) { in sil_host_intr()
496 ata_ehi_push_desc(ehi, "BMDMA2 stat 0x%x", bmdma2); in sil_host_intr()
517 u32 bmdma2 = readl(mmio_base + sil_port[ap->port_no].bmdma2); in sil_interrupt() local
521 bmdma2 &= ~SIL_DMA_SATA_IRQ; in sil_interrupt()
523 if (bmdma2 == 0xffffffff || in sil_interrupt()
524 !(bmdma2 & (SIL_DMA_COMPLETE | SIL_DMA_SATA_IRQ))) in sil_interrupt()
527 sil_host_intr(ap, bmdma2); in sil_interrupt()