board-mop500.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010
  3. *
  4. * License terms: GNU General Public License (GPL) version 2
  5. */
  6. #ifndef __BOARD_MOP500_H
  7. #define __BOARD_MOP500_H
  8. /* snowball GPIO for MMC card */
  9. #define SNOWBALL_SDMMC_EN_GPIO 217
  10. #define SNOWBALL_SDMMC_1V8_3V_GPIO 228
  11. #define SNOWBALL_SDMMC_CD_GPIO 218
  12. /* HREFv60-specific GPIO assignments, this board has no GPIO expander */
  13. #define HREFV60_TOUCH_RST_GPIO 143
  14. #define HREFV60_PROX_SENSE_GPIO 217
  15. #define HREFV60_HAL_SW_GPIO 145
  16. #define HREFV60_SDMMC_EN_GPIO 169
  17. #define HREFV60_SDMMC_1V8_3V_GPIO 5
  18. #define HREFV60_SDMMC_CD_GPIO 95
  19. #define HREFV60_ACCEL_INT1_GPIO 82
  20. #define HREFV60_ACCEL_INT2_GPIO 83
  21. #define HREFV60_MAGNET_DRDY_GPIO 32
  22. #define HREFV60_DISP1_RST_GPIO 65
  23. #define HREFV60_DISP2_RST_GPIO 66
  24. /* GPIOs on the TC35892 expander */
  25. #define MOP500_EGPIO(x) (NOMADIK_NR_GPIO + (x))
  26. #define GPIO_SDMMC_CD MOP500_EGPIO(3)
  27. #define GPIO_PROX_SENSOR MOP500_EGPIO(7)
  28. #define GPIO_BU21013_CS MOP500_EGPIO(13)
  29. #define GPIO_SDMMC_EN MOP500_EGPIO(17)
  30. #define GPIO_SDMMC_1V8_3V_SEL MOP500_EGPIO(18)
  31. #define MOP500_EGPIO_END MOP500_EGPIO(24)
  32. /* GPIOs on the AB8500 mixed-signals circuit */
  33. #define MOP500_AB8500_GPIO(x) (MOP500_EGPIO_END + (x))
  34. struct i2c_board_info;
  35. extern void mop500_sdi_init(void);
  36. extern void snowball_sdi_init(void);
  37. extern void mop500_sdi_tc35892_init(void);
  38. void __init mop500_u8500uib_init(void);
  39. void __init mop500_stuib_init(void);
  40. void __init mop500_pins_init(void);
  41. void __init hrefv60_pins_init(void);
  42. void __init snowball_pins_init(void);
  43. void mop500_uib_i2c_add(int busnum, struct i2c_board_info *info,
  44. unsigned n);
  45. #endif