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()
78 void __iomem *mapped; in ioremap_prot() local
80 mapped = __ioremap_trapped(phys_addr, size); in ioremap_prot()
81 if (mapped) in ioremap_prot()
82 return mapped; in ioremap_prot()
84 mapped = __ioremap_29bit(phys_addr, size, pgprot); in ioremap_prot()
85 if (mapped) in ioremap_prot()
86 return mapped; in ioremap_prot()
98 mapped = pmb_remap_caller(phys_addr, size, pgprot, in ioremap_prot()
100 if (mapped && !IS_ERR(mapped)) in ioremap_prot()
101 return mapped; in ioremap_prot()