zylonite.h 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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_backlight;
  14. extern int gpio_eth_irq;
  15. extern int wm9713_irq;
  16. extern int lcd_id;
  17. extern int lcd_orientation;
  18. #ifdef CONFIG_CPU_PXA300
  19. extern void zylonite_pxa300_init(void);
  20. #else
  21. static inline void zylonite_pxa300_init(void)
  22. {
  23. if (cpu_is_pxa300() || cpu_is_pxa310())
  24. panic("%s: PXA300/PXA310 not supported\n", __FUNCTION__);
  25. }
  26. #endif
  27. #ifdef CONFIG_CPU_PXA320
  28. extern void zylonite_pxa320_init(void);
  29. #else
  30. static inline void zylonite_pxa320_init(void)
  31. {
  32. if (cpu_is_pxa320())
  33. panic("%s: PXA320 not supported\n", __FUNCTION__);
  34. }
  35. #endif
  36. #endif /* __ASM_ARCH_ZYLONITE_H */