1 #ifndef BCM63XX_IOREMAP_H_
2 #define BCM63XX_IOREMAP_H_
4 #include <bcm63xx_cpu.h>
6 static inline phys_addr_t
fixup_bigphys_addr(phys_addr_t phys_addr
, phys_addr_t size
)
11 static inline int is_bcm63xx_internal_registers(phys_addr_t offset
)
13 switch (bcm63xx_get_cpu_id()) {
15 if (offset
>= 0xfff80000)
22 if (offset
>= 0xfff00000)
28 if (offset
>= 0xb0000000 && offset
< 0xb1000000)
35 static inline void __iomem
*plat_ioremap(phys_addr_t offset
, unsigned long size
,
38 if (is_bcm63xx_internal_registers(offset
))
39 return (void __iomem
*)offset
;
43 static inline int plat_iounmap(const volatile void __iomem
*addr
)
45 return is_bcm63xx_internal_registers((unsigned long)addr
);
48 #endif /* BCM63XX_IOREMAP_H_ */