Lines Matching refs:dma_base
72 void __iomem *dma_base; member
314 void __iomem *dma_base, *addr; in etherh_block_output() local
332 dma_base = etherh_priv(dev)->dma_base; in etherh_block_output()
353 writesw (dma_base, buf, count >> 1); in etherh_block_output()
355 writesb (dma_base, buf, count); in etherh_block_output()
379 void __iomem *dma_base, *addr; in etherh_block_input() local
391 dma_base = etherh_priv(dev)->dma_base; in etherh_block_input()
402 readsw (dma_base, buf, count >> 1); in etherh_block_input()
404 buf[count - 1] = readb (dma_base); in etherh_block_input()
406 readsb (dma_base, buf, count); in etherh_block_input()
419 void __iomem *dma_base, *addr; in etherh_get_header() local
431 dma_base = etherh_priv(dev)->dma_base; in etherh_get_header()
441 readsw (dma_base, hdr, sizeof (*hdr) >> 1); in etherh_get_header()
443 readsb (dma_base, hdr, sizeof (*hdr)); in etherh_get_header()
725 eh->dma_base = eh->memc + data->dataport_offset; in etherh_probe()