eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 1 | #ifndef __ASM_ARCH_ZYLONITE_H |
| 2 | #define __ASM_ARCH_ZYLONITE_H |
| 3 | |
| 4 | #define ZYLONITE_ETH_PHYS 0x14000000 |
| 5 | |
Bridge Wu | fafc9d3 | 2007-12-21 19:00:13 +0800 | [diff] [blame] | 6 | #define EXT_GPIO(x) (128 + (x)) |
| 7 | |
Haojian Zhuang | 6ac6b81 | 2010-08-20 15:23:59 +0800 | [diff] [blame] | 8 | #define ZYLONITE_NR_IRQS (IRQ_BOARD_START + 32) |
| 9 | |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 10 | /* the following variables are processor specific and initialized |
| 11 | * by the corresponding zylonite_pxa3xx_init() |
| 12 | */ |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 13 | extern int gpio_eth_irq; |
Eric Miao | 5c9f50e | 2008-06-17 19:03:54 +0800 | [diff] [blame] | 14 | extern int gpio_debug_led1; |
| 15 | extern int gpio_debug_led2; |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 16 | |
Mark Brown | 768dec4 | 2008-04-15 15:50:49 +0100 | [diff] [blame] | 17 | extern int wm9713_irq; |
| 18 | |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 19 | extern int lcd_id; |
| 20 | extern int lcd_orientation; |
| 21 | |
Arnd Bergmann | ec13592 | 2011-10-01 22:03:37 +0200 | [diff] [blame] | 22 | #ifdef CONFIG_MACH_ZYLONITE300 |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 23 | extern void zylonite_pxa300_init(void); |
| 24 | #else |
| 25 | static inline void zylonite_pxa300_init(void) |
| 26 | { |
| 27 | if (cpu_is_pxa300() || cpu_is_pxa310()) |
Harvey Harrison | 653c031 | 2008-10-20 16:00:08 -0700 | [diff] [blame] | 28 | panic("%s: PXA300/PXA310 not supported\n", __func__); |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 29 | } |
| 30 | #endif |
| 31 | |
Arnd Bergmann | ec13592 | 2011-10-01 22:03:37 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_MACH_ZYLONITE320 |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 33 | extern void zylonite_pxa320_init(void); |
| 34 | #else |
| 35 | static inline void zylonite_pxa320_init(void) |
| 36 | { |
| 37 | if (cpu_is_pxa320()) |
Harvey Harrison | 653c031 | 2008-10-20 16:00:08 -0700 | [diff] [blame] | 38 | panic("%s: PXA320 not supported\n", __func__); |
eric miao | 2c8086a | 2007-09-11 19:13:17 -0700 | [diff] [blame] | 39 | } |
| 40 | #endif |
| 41 | |
| 42 | #endif /* __ASM_ARCH_ZYLONITE_H */ |