Lines Matching full:mapped
8 * This is needed for high PCI addresses that aren't mapped in the
31 * On 32-bit SH, we traditionally have the whole physical address space mapped
46 * mapped. Uncached access for P1 addresses are done through P2. in __ioremap_29bit()
65 /* P4 above the store queues are always mapped. */ in __ioremap_29bit()
90 void __iomem *mapped; in __ioremap_caller() local
92 mapped = __ioremap_trapped(phys_addr, size); in __ioremap_caller()
93 if (mapped) in __ioremap_caller()
94 return mapped; in __ioremap_caller()
96 mapped = __ioremap_29bit(phys_addr, size, pgprot); in __ioremap_caller()
97 if (mapped) in __ioremap_caller()
98 return mapped; in __ioremap_caller()
115 mapped = pmb_remap_caller(phys_addr, size, pgprot, caller); in __ioremap_caller()
116 if (mapped && !IS_ERR(mapped)) in __ioremap_caller()
117 return mapped; in __ioremap_caller()