Go to the documentation of this file.
22 #ifndef __ASM_ARCH_HARDWARE_H
23 #define __ASM_ARCH_HARDWARE_H
25 #include <asm/sizes.h>
31 #define IO_BASE 0xF0000000 // VA of IO
32 #define IO_SIZE 0x0B000000 // How much?
33 #define IO_START INTEGRATOR_HDR_BASE // PA of IO
37 #define IO_ADDRESS(x) (((x) & 0x000fffff) | (((x) >> 4) & 0x0ff00000) | IO_BASE)
39 #define IO_ADDRESS(x) (x)
42 #define __io_address(n) ((void __iomem *)IO_ADDRESS(n))