Lines Matching refs:va
185 void __iomem *va; /* P3 diag */ in _sparc_alloc_io() local
208 va = _sparc_ioremap(res, busno, phys, size); in _sparc_alloc_io()
210 return va; in _sparc_alloc_io()
267 unsigned long va; in sbus_alloc_coherent() local
281 va = __get_free_pages(gfp, order); in sbus_alloc_coherent()
282 if (va == 0) in sbus_alloc_coherent()
300 if (sbus_map_dma_area(dev, dma_addrp, va, res->start, len_total) != 0) in sbus_alloc_coherent()
312 free_pages(va, order); in sbus_alloc_coherent()
360 void *va = page_address(page) + offset; in sbus_map_page() local
370 return mmu_get_scsi_one(dev, va, len); in sbus_map_page()
435 void *va; in pci32_alloc_coherent() local
447 va = (void *) __get_free_pages(gfp, order); in pci32_alloc_coherent()
448 if (va == NULL) { in pci32_alloc_coherent()
463 srmmu_mapiorange(0, virt_to_phys(va), res->start, len_total); in pci32_alloc_coherent()
465 *pba = virt_to_phys(va); /* equals virt_to_bus (R.I.P.) for us. */ in pci32_alloc_coherent()
471 free_pages((unsigned long)va, order); in pci32_alloc_coherent()