2008-01-23 14:54:50 +01:00
# ifndef _COLIBRI_H_
# define _COLIBRI_H_
2009-04-02 08:33:15 +02:00
# include <net/ax88796.h>
2009-03-13 16:37:09 +01:00
/*
* common settings for all modules
*/
2008-01-23 14:54:50 +01:00
2009-03-23 02:04:17 +01:00
# if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
extern void colibri_pxa3xx_init_mmc ( mfp_cfg_t * pins , int len , int detect_pin ) ;
# else
2009-04-09 14:05:02 +08:00
static inline void colibri_pxa3xx_init_mmc ( mfp_cfg_t * pins , int len , int detect_pin ) { }
2009-03-23 02:04:17 +01:00
# endif
2009-03-23 02:04:19 +01:00
# if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
extern void colibri_pxa3xx_init_lcd ( int bl_pin ) ;
# else
2009-04-09 14:05:02 +08:00
static inline void colibri_pxa3xx_init_lcd ( int bl_pin ) { }
2009-03-23 02:04:19 +01:00
# endif
2009-04-02 08:33:14 +02:00
# if defined(CONFIG_AX88796)
extern void colibri_pxa3xx_init_eth ( struct ax_plat_data * plat_data ) ;
# endif
2009-06-17 10:32:54 +02:00
# if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
extern void colibri_pxa3xx_init_nand ( void ) ;
# else
static inline void colibri_pxa3xx_init_nand ( void ) { }
# endif
2008-01-23 14:54:50 +01:00
/* physical memory regions */
# define COLIBRI_SDRAM_BASE 0xa0000000 /* SDRAM region */
2009-03-13 16:37:09 +01:00
/* definitions for Colibri PXA270 */
2009-03-13 16:37:08 +01:00
# define COLIBRI_PXA270_FLASH_PHYS (PXA_CS0_PHYS) /* Flash region */
# define COLIBRI_PXA270_ETH_PHYS (PXA_CS2_PHYS) /* Ethernet */
# define COLIBRI_PXA270_ETH_IRQ_GPIO 114
# define COLIBRI_PXA270_ETH_IRQ \
gpio_to_irq ( mfp_to_gpio ( COLIBRI_PXA270_ETH_IRQ_GPIO ) )
2008-01-23 14:54:50 +01:00
# endif /* _COLIBRI_H_ */
2009-03-13 16:37:08 +01:00