blob: 0becf6215c1d1985ff4de4e05b859583826c4492 [file] [log] [blame]
Daniel Mack4e4fc052008-01-23 14:54:50 +01001#ifndef _COLIBRI_H_
2#define _COLIBRI_H_
Daniel Mack5fc9f9a2009-03-13 16:37:09 +01003/*
4 * common settings for all modules
5 */
Daniel Mack4e4fc052008-01-23 14:54:50 +01006
Daniel Mackacb36552009-03-23 02:04:17 +01007#if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
8extern void colibri_pxa3xx_init_mmc(mfp_cfg_t *pins, int len, int detect_pin);
9#else
10static inline void colibri_pxa3xx_init_mmc(mfp_cfg_t *, int, int) {}
11#endif
12
Daniel Mack4e4fc052008-01-23 14:54:50 +010013/* physical memory regions */
Daniel Mack4e4fc052008-01-23 14:54:50 +010014#define COLIBRI_SDRAM_BASE 0xa0000000 /* SDRAM region */
15
Daniel Mack5fc9f9a2009-03-13 16:37:09 +010016/* definitions for Colibri PXA270 */
17
Daniel Mack5c0dbb82009-03-13 16:37:08 +010018#define COLIBRI_PXA270_FLASH_PHYS (PXA_CS0_PHYS) /* Flash region */
19#define COLIBRI_PXA270_ETH_PHYS (PXA_CS2_PHYS) /* Ethernet */
20#define COLIBRI_PXA270_ETH_IRQ_GPIO 114
21#define COLIBRI_PXA270_ETH_IRQ \
22 gpio_to_irq(mfp_to_gpio(COLIBRI_PXA270_ETH_IRQ_GPIO))
Daniel Mack4e4fc052008-01-23 14:54:50 +010023
24#endif /* _COLIBRI_H_ */
Daniel Mack5c0dbb82009-03-13 16:37:08 +010025