Lines Matching defs:addr
9 void __iomem *ioremap_wt(phys_addr_t addr, unsigned long size)
13 return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
18 __ioremap_caller(phys_addr_t addr, unsigned long size, pgprot_t prot, void *caller)
30 p = addr & PAGE_MASK;
31 offset = addr & ~PAGE_MASK;
32 size = PAGE_ALIGN(addr + size) - p;
48 pr_warn("%s(): phys addr 0x%llx is RAM lr %ps\n", __func__,
81 void iounmap(volatile void __iomem *addr)
87 if (v_block_mapped((unsigned long)addr))
90 if (addr > high_memory && (unsigned long)addr < ioremap_bot)
91 vunmap((void *)(PAGE_MASK & (unsigned long)addr));