diff options
Diffstat (limited to 'arch/arm/mach-footbridge/include/mach/hardware.h')
| -rw-r--r-- | arch/arm/mach-footbridge/include/mach/hardware.h | 34 | 
1 files changed, 16 insertions, 18 deletions
diff --git a/arch/arm/mach-footbridge/include/mach/hardware.h b/arch/arm/mach-footbridge/include/mach/hardware.h index 51dd902043a..02f6d7a706b 100644 --- a/arch/arm/mach-footbridge/include/mach/hardware.h +++ b/arch/arm/mach-footbridge/include/mach/hardware.h @@ -23,32 +23,35 @@   * 0xf9000000	0x50000000	1MB	Cache flush   * 0xf0000000	0x80000000	16MB	ISA memory   */ + +#ifdef CONFIG_MMU +#define MMU_IO(a, b)	(a) +#else +#define MMU_IO(a, b)	(b) +#endif +  #define XBUS_SIZE		0x00100000 -#define XBUS_BASE		0xff800000 +#define XBUS_BASE		MMU_IO(0xff800000, 0x40000000)  #define ARMCSR_SIZE		0x00100000 -#define ARMCSR_BASE		0xfe000000 +#define ARMCSR_BASE		MMU_IO(0xfe000000, 0x42000000)  #define WFLUSH_SIZE		0x00100000 -#define WFLUSH_BASE		0xfd000000 +#define WFLUSH_BASE		MMU_IO(0xfd000000, 0x78000000)  #define PCIIACK_SIZE		0x00100000 -#define PCIIACK_BASE		0xfc000000 +#define PCIIACK_BASE		MMU_IO(0xfc000000, 0x79000000)  #define PCICFG1_SIZE		0x01000000 -#define PCICFG1_BASE		0xfb000000 +#define PCICFG1_BASE		MMU_IO(0xfb000000, 0x7a000000)  #define PCICFG0_SIZE		0x01000000 -#define PCICFG0_BASE		0xfa000000 +#define PCICFG0_BASE		MMU_IO(0xfa000000, 0x7b000000)  #define PCIMEM_SIZE		0x01000000 -#define PCIMEM_BASE		0xf0000000 +#define PCIMEM_BASE		MMU_IO(0xf0000000, 0x80000000) -#define XBUS_LEDS		((volatile unsigned char *)(XBUS_BASE + 0x12000)) -#define XBUS_LED_AMBER		(1 << 0) -#define XBUS_LED_GREEN		(1 << 1) -#define XBUS_LED_RED		(1 << 2) -#define XBUS_LED_TOGGLE		(1 << 8) +#define XBUS_CS2		0x40012000  #define XBUS_SWITCH		((volatile unsigned char *)(XBUS_BASE + 0x12000))  #define XBUS_SWITCH_SWITCH	((*XBUS_SWITCH) & 15) @@ -86,16 +89,11 @@  #define CPLD_FLASH_WR_ENABLE	1  #ifndef __ASSEMBLY__ -extern spinlock_t nw_gpio_lock; +extern raw_spinlock_t nw_gpio_lock;  extern void nw_gpio_modify_op(unsigned int mask, unsigned int set);  extern void nw_gpio_modify_io(unsigned int mask, unsigned int in);  extern unsigned int nw_gpio_read(void);  extern void nw_cpld_modify(unsigned int mask, unsigned int set);  #endif -#define pcibios_assign_all_busses()	1 - -#define PCIBIOS_MIN_IO		0x1000 -#define PCIBIOS_MIN_MEM 	0x81000000 -  #endif  | 
