ia64/kvm: compilation fix. export account_system_vtime.
[pv_ops_mirror.git] / include / asm-arm / arch-pxa / zylonite.h
blob4881b80f0f9009a90c5dedc3bebbcea2631723e0
1 #ifndef __ASM_ARCH_ZYLONITE_H
2 #define __ASM_ARCH_ZYLONITE_H
4 #define ZYLONITE_ETH_PHYS 0x14000000
6 #define EXT_GPIO(x) (128 + (x))
8 /* the following variables are processor specific and initialized
9 * by the corresponding zylonite_pxa3xx_init()
11 struct platform_mmc_slot {
12 int gpio_cd;
13 int gpio_wp;
16 extern struct platform_mmc_slot zylonite_mmc_slot[];
18 extern int gpio_backlight;
19 extern int gpio_eth_irq;
21 extern int wm9713_irq;
23 extern int lcd_id;
24 extern int lcd_orientation;
26 #ifdef CONFIG_CPU_PXA300
27 extern void zylonite_pxa300_init(void);
28 #else
29 static inline void zylonite_pxa300_init(void)
31 if (cpu_is_pxa300() || cpu_is_pxa310())
32 panic("%s: PXA300/PXA310 not supported\n", __FUNCTION__);
34 #endif
36 #ifdef CONFIG_CPU_PXA320
37 extern void zylonite_pxa320_init(void);
38 #else
39 static inline void zylonite_pxa320_init(void)
41 if (cpu_is_pxa320())
42 panic("%s: PXA320 not supported\n", __FUNCTION__);
44 #endif
46 #endif /* __ASM_ARCH_ZYLONITE_H */