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
81 mapped = __ioremap_trapped(phys_addr, size); in ioremap_prot()
82 if (mapped) in ioremap_prot()
83 return mapped; in ioremap_prot()
85 mapped = __ioremap_29bit(phys_addr, size, pgprot); in ioremap_prot()
86 if (mapped) in ioremap_prot()
87 return mapped; in ioremap_prot()
99 mapped = pmb_remap_caller(phys_addr, size, pgprot, in ioremap_prot()
101 if (mapped && !IS_ERR(mapped)) in ioremap_prot()
102 return mapped; in ioremap_prot()