colibri.h 423 B

1234567891011121314
  1. #ifndef _COLIBRI_H_
  2. #define _COLIBRI_H_
  3. /* physical memory regions */
  4. #define COLIBRI_SDRAM_BASE 0xa0000000 /* SDRAM region */
  5. #define COLIBRI_PXA270_FLASH_PHYS (PXA_CS0_PHYS) /* Flash region */
  6. #define COLIBRI_PXA270_ETH_PHYS (PXA_CS2_PHYS) /* Ethernet */
  7. #define COLIBRI_PXA270_ETH_IRQ_GPIO 114
  8. #define COLIBRI_PXA270_ETH_IRQ \
  9. gpio_to_irq(mfp_to_gpio(COLIBRI_PXA270_ETH_IRQ_GPIO))
  10. #endif /* _COLIBRI_H_ */