colibri.h 579 B

12345678910111213141516171819
  1. #ifndef _COLIBRI_H_
  2. #define _COLIBRI_H_
  3. /* physical memory regions */
  4. #define COLIBRI_FLASH_PHYS (PXA_CS0_PHYS) /* Flash region */
  5. #define COLIBRI_ETH_PHYS (PXA_CS2_PHYS) /* Ethernet DM9000 region */
  6. #define COLIBRI_SDRAM_BASE 0xa0000000 /* SDRAM region */
  7. /* virtual memory regions */
  8. #define COLIBRI_DISK_VIRT 0xF0000000 /* Disk On Chip region */
  9. /* size of flash */
  10. #define COLIBRI_FLASH_SIZE 0x02000000 /* Flash size 32 MB */
  11. /* Ethernet Controller Davicom DM9000 */
  12. #define GPIO_DM9000 114
  13. #define COLIBRI_ETH_IRQ IRQ_GPIO(GPIO_DM9000)
  14. #endif /* _COLIBRI_H_ */