zylonite.h 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #ifndef __ASM_ARCH_ZYLONITE_H
  2. #define __ASM_ARCH_ZYLONITE_H
  3. #define ZYLONITE_ETH_PHYS 0x14000000
  4. #define EXT_GPIO(x) (128 + (x))
  5. /* the following variables are processor specific and initialized
  6. * by the corresponding zylonite_pxa3xx_init()
  7. */
  8. struct platform_mmc_slot {
  9. int gpio_cd;
  10. int gpio_wp;
  11. };
  12. extern struct platform_mmc_slot zylonite_mmc_slot[];
  13. extern int gpio_eth_irq;
  14. extern int wm9713_irq;
  15. extern int lcd_id;
  16. extern int lcd_orientation;
  17. #ifdef CONFIG_CPU_PXA300
  18. extern void zylonite_pxa300_init(void);
  19. #else
  20. static inline void zylonite_pxa300_init(void)
  21. {
  22. if (cpu_is_pxa300() || cpu_is_pxa310())
  23. panic("%s: PXA300/PXA310 not supported\n", __FUNCTION__);
  24. }
  25. #endif
  26. #ifdef CONFIG_CPU_PXA320
  27. extern void zylonite_pxa320_init(void);
  28. #else
  29. static inline void zylonite_pxa320_init(void)
  30. {
  31. if (cpu_is_pxa320())
  32. panic("%s: PXA320 not supported\n", __FUNCTION__);
  33. }
  34. #endif
  35. #endif /* __ASM_ARCH_ZYLONITE_H */