Merge branch 'for-2.6.30' into for-2.6.31
[pandora-kernel.git] / arch / arm / mach-pxa / include / mach / colibri.h
1 #ifndef _COLIBRI_H_
2 #define _COLIBRI_H_
3 /*
4  * common settings for all modules
5  */
6
7 #if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
8 extern void colibri_pxa3xx_init_mmc(mfp_cfg_t *pins, int len, int detect_pin);
9 #else
10 static inline void colibri_pxa3xx_init_mmc(mfp_cfg_t *, int, int) {}
11 #endif
12
13 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
14 extern void colibri_pxa3xx_init_lcd(int bl_pin);
15 #else
16 static inline void colibri_pxa3xx_init_lcd(int) {}
17 #endif
18
19 /* physical memory regions */
20 #define COLIBRI_SDRAM_BASE      0xa0000000      /* SDRAM region */
21
22 /* definitions for Colibri PXA270 */
23
24 #define COLIBRI_PXA270_FLASH_PHYS       (PXA_CS0_PHYS)  /* Flash region */
25 #define COLIBRI_PXA270_ETH_PHYS         (PXA_CS2_PHYS)  /* Ethernet */
26 #define COLIBRI_PXA270_ETH_IRQ_GPIO     114
27 #define COLIBRI_PXA270_ETH_IRQ          \
28         gpio_to_irq(mfp_to_gpio(COLIBRI_PXA270_ETH_IRQ_GPIO))
29
30 #endif /* _COLIBRI_H_ */
31