tc3589x.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010
  3. *
  4. * License Terms: GNU General Public License, version 2
  5. */
  6. #ifndef __LINUX_MFD_TC3589x_H
  7. #define __LINUX_MFD_TC3589x_H
  8. #include <linux/device.h>
  9. enum tx3589x_block {
  10. TC3589x_BLOCK_GPIO = 1 << 0,
  11. TC3589x_BLOCK_KEYPAD = 1 << 1,
  12. };
  13. #define TC3589x_RSTCTRL_IRQRST (1 << 4)
  14. #define TC3589x_RSTCTRL_TIMRST (1 << 3)
  15. #define TC3589x_RSTCTRL_ROTRST (1 << 2)
  16. #define TC3589x_RSTCTRL_KBDRST (1 << 1)
  17. #define TC3589x_RSTCTRL_GPIRST (1 << 0)
  18. #define TC3589x_IRQST 0x91
  19. #define TC3589x_MANFCODE_MAGIC 0x03
  20. #define TC3589x_MANFCODE 0x80
  21. #define TC3589x_VERSION 0x81
  22. #define TC3589x_IOCFG 0xA7
  23. #define TC3589x_CLKMODE 0x88
  24. #define TC3589x_CLKCFG 0x89
  25. #define TC3589x_CLKEN 0x8A
  26. #define TC3589x_RSTCTRL 0x82
  27. #define TC3589x_EXTRSTN 0x83
  28. #define TC3589x_RSTINTCLR 0x84
  29. #define TC3589x_GPIOIS0 0xC9
  30. #define TC3589x_GPIOIS1 0xCA
  31. #define TC3589x_GPIOIS2 0xCB
  32. #define TC3589x_GPIOIBE0 0xCC
  33. #define TC3589x_GPIOIBE1 0xCD
  34. #define TC3589x_GPIOIBE2 0xCE
  35. #define TC3589x_GPIOIEV0 0xCF
  36. #define TC3589x_GPIOIEV1 0xD0
  37. #define TC3589x_GPIOIEV2 0xD1
  38. #define TC3589x_GPIOIE0 0xD2
  39. #define TC3589x_GPIOIE1 0xD3
  40. #define TC3589x_GPIOIE2 0xD4
  41. #define TC3589x_GPIORIS0 0xD6
  42. #define TC3589x_GPIORIS1 0xD7
  43. #define TC3589x_GPIORIS2 0xD8
  44. #define TC3589x_GPIOMIS0 0xD9
  45. #define TC3589x_GPIOMIS1 0xDA
  46. #define TC3589x_GPIOMIS2 0xDB
  47. #define TC3589x_GPIOIC0 0xDC
  48. #define TC3589x_GPIOIC1 0xDD
  49. #define TC3589x_GPIOIC2 0xDE
  50. #define TC3589x_GPIODATA0 0xC0
  51. #define TC3589x_GPIOMASK0 0xc1
  52. #define TC3589x_GPIODATA1 0xC2
  53. #define TC3589x_GPIOMASK1 0xc3
  54. #define TC3589x_GPIODATA2 0xC4
  55. #define TC3589x_GPIOMASK2 0xC5
  56. #define TC3589x_GPIODIR0 0xC6
  57. #define TC3589x_GPIODIR1 0xC7
  58. #define TC3589x_GPIODIR2 0xC8
  59. #define TC3589x_GPIOSYNC0 0xE6
  60. #define TC3589x_GPIOSYNC1 0xE7
  61. #define TC3589x_GPIOSYNC2 0xE8
  62. #define TC3589x_GPIOWAKE0 0xE9
  63. #define TC3589x_GPIOWAKE1 0xEA
  64. #define TC3589x_GPIOWAKE2 0xEB
  65. #define TC3589x_GPIOODM0 0xE0
  66. #define TC3589x_GPIOODE0 0xE1
  67. #define TC3589x_GPIOODM1 0xE2
  68. #define TC3589x_GPIOODE1 0xE3
  69. #define TC3589x_GPIOODM2 0xE4
  70. #define TC3589x_GPIOODE2 0xE5
  71. #define TC3589x_INT_GPIIRQ 0
  72. #define TC3589x_INT_TI0IRQ 1
  73. #define TC3589x_INT_TI1IRQ 2
  74. #define TC3589x_INT_TI2IRQ 3
  75. #define TC3589x_INT_ROTIRQ 5
  76. #define TC3589x_INT_KBDIRQ 6
  77. #define TC3589x_INT_PORIRQ 7
  78. #define TC3589x_NR_INTERNAL_IRQS 8
  79. #define TC3589x_INT_GPIO(x) (TC3589x_NR_INTERNAL_IRQS + (x))
  80. struct tc3589x {
  81. struct mutex lock;
  82. struct device *dev;
  83. struct i2c_client *i2c;
  84. int irq_base;
  85. int num_gpio;
  86. struct tc3589x_platform_data *pdata;
  87. };
  88. extern int tc3589x_reg_write(struct tc3589x *tc3589x, u8 reg, u8 data);
  89. extern int tc3589x_reg_read(struct tc3589x *tc3589x, u8 reg);
  90. extern int tc3589x_block_read(struct tc3589x *tc3589x, u8 reg, u8 length,
  91. u8 *values);
  92. extern int tc3589x_block_write(struct tc3589x *tc3589x, u8 reg, u8 length,
  93. const u8 *values);
  94. extern int tc3589x_set_bits(struct tc3589x *tc3589x, u8 reg, u8 mask, u8 val);
  95. /**
  96. * struct tc3589x_gpio_platform_data - TC3589x GPIO platform data
  97. * @gpio_base: first gpio number assigned to TC3589x. A maximum of
  98. * %TC3589x_NR_GPIOS GPIOs will be allocated.
  99. * @setup: callback for board-specific initialization
  100. * @remove: callback for board-specific teardown
  101. */
  102. struct tc3589x_gpio_platform_data {
  103. int gpio_base;
  104. void (*setup)(struct tc3589x *tc3589x, unsigned gpio_base);
  105. void (*remove)(struct tc3589x *tc3589x, unsigned gpio_base);
  106. };
  107. /**
  108. * struct tc3589x_platform_data - TC3589x platform data
  109. * @block: bitmask of blocks to enable (use TC3589x_BLOCK_*)
  110. * @irq_base: base IRQ number. %TC3589x_NR_IRQS irqs will be used.
  111. * @gpio: GPIO-specific platform data
  112. */
  113. struct tc3589x_platform_data {
  114. unsigned int block;
  115. int irq_base;
  116. struct tc3589x_gpio_platform_data *gpio;
  117. };
  118. #define TC3589x_NR_GPIOS 24
  119. #define TC3589x_NR_IRQS TC3589x_INT_GPIO(TC3589x_NR_GPIOS)
  120. #endif