Lines Matching refs:dma_base
67 void __iomem *dma_base; member
309 void __iomem *dma_base, *addr; in etherh_block_output() local
327 dma_base = etherh_priv(dev)->dma_base; in etherh_block_output()
348 writesw (dma_base, buf, count >> 1); in etherh_block_output()
350 writesb (dma_base, buf, count); in etherh_block_output()
374 void __iomem *dma_base, *addr; in etherh_block_input() local
386 dma_base = etherh_priv(dev)->dma_base; in etherh_block_input()
397 readsw (dma_base, buf, count >> 1); in etherh_block_input()
399 buf[count - 1] = readb (dma_base); in etherh_block_input()
401 readsb (dma_base, buf, count); in etherh_block_input()
414 void __iomem *dma_base, *addr; in etherh_get_header() local
426 dma_base = etherh_priv(dev)->dma_base; in etherh_get_header()
436 readsw (dma_base, hdr, sizeof (*hdr) >> 1); in etherh_get_header()
438 readsb (dma_base, hdr, sizeof (*hdr)); in etherh_get_header()
709 eh->dma_base = eh->memc + data->dataport_offset; in etherh_probe()