stmpe.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2010
  3. *
  4. * License Terms: GNU General Public License, version 2
  5. * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
  6. */
  7. #ifndef __LINUX_MFD_STMPE_H
  8. #define __LINUX_MFD_STMPE_H
  9. #include <linux/mutex.h>
  10. struct device;
  11. struct regulator;
  12. enum stmpe_block {
  13. STMPE_BLOCK_GPIO = 1 << 0,
  14. STMPE_BLOCK_KEYPAD = 1 << 1,
  15. STMPE_BLOCK_TOUCHSCREEN = 1 << 2,
  16. STMPE_BLOCK_ADC = 1 << 3,
  17. STMPE_BLOCK_PWM = 1 << 4,
  18. STMPE_BLOCK_ROTATOR = 1 << 5,
  19. };
  20. enum stmpe_partnum {
  21. STMPE610,
  22. STMPE801,
  23. STMPE811,
  24. STMPE1601,
  25. STMPE1801,
  26. STMPE2401,
  27. STMPE2403,
  28. STMPE_NBR_PARTS
  29. };
  30. /*
  31. * For registers whose locations differ on variants, the correct address is
  32. * obtained by indexing stmpe->regs with one of the following.
  33. */
  34. enum {
  35. STMPE_IDX_CHIP_ID,
  36. STMPE_IDX_ICR_LSB,
  37. STMPE_IDX_IER_LSB,
  38. STMPE_IDX_ISR_LSB,
  39. STMPE_IDX_ISR_MSB,
  40. STMPE_IDX_GPMR_LSB,
  41. STMPE_IDX_GPSR_LSB,
  42. STMPE_IDX_GPCR_LSB,
  43. STMPE_IDX_GPDR_LSB,
  44. STMPE_IDX_GPEDR_MSB,
  45. STMPE_IDX_GPRER_LSB,
  46. STMPE_IDX_GPFER_LSB,
  47. STMPE_IDX_GPAFR_U_MSB,
  48. STMPE_IDX_IEGPIOR_LSB,
  49. STMPE_IDX_ISGPIOR_LSB,
  50. STMPE_IDX_ISGPIOR_MSB,
  51. STMPE_IDX_MAX,
  52. };
  53. struct stmpe_variant_info;
  54. struct stmpe_client_info;
  55. /**
  56. * struct stmpe - STMPE MFD structure
  57. * @vcc: optional VCC regulator
  58. * @vio: optional VIO regulator
  59. * @lock: lock protecting I/O operations
  60. * @irq_lock: IRQ bus lock
  61. * @dev: device, mostly for dev_dbg()
  62. * @irq_domain: IRQ domain
  63. * @client: client - i2c or spi
  64. * @ci: client specific information
  65. * @partnum: part number
  66. * @variant: the detected STMPE model number
  67. * @regs: list of addresses of registers which are at different addresses on
  68. * different variants. Indexed by one of STMPE_IDX_*.
  69. * @irq: irq number for stmpe
  70. * @num_gpios: number of gpios, differs for variants
  71. * @ier: cache of IER registers for bus_lock
  72. * @oldier: cache of IER registers for bus_lock
  73. * @pdata: platform data
  74. */
  75. struct stmpe {
  76. struct regulator *vcc;
  77. struct regulator *vio;
  78. struct mutex lock;
  79. struct mutex irq_lock;
  80. struct device *dev;
  81. struct irq_domain *domain;
  82. void *client;
  83. struct stmpe_client_info *ci;
  84. enum stmpe_partnum partnum;
  85. struct stmpe_variant_info *variant;
  86. const u8 *regs;
  87. int irq;
  88. int num_gpios;
  89. u8 ier[2];
  90. u8 oldier[2];
  91. struct stmpe_platform_data *pdata;
  92. };
  93. extern int stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 data);
  94. extern int stmpe_reg_read(struct stmpe *stmpe, u8 reg);
  95. extern int stmpe_block_read(struct stmpe *stmpe, u8 reg, u8 length,
  96. u8 *values);
  97. extern int stmpe_block_write(struct stmpe *stmpe, u8 reg, u8 length,
  98. const u8 *values);
  99. extern int stmpe_set_bits(struct stmpe *stmpe, u8 reg, u8 mask, u8 val);
  100. extern int stmpe_set_altfunc(struct stmpe *stmpe, u32 pins,
  101. enum stmpe_block block);
  102. extern int stmpe_enable(struct stmpe *stmpe, unsigned int blocks);
  103. extern int stmpe_disable(struct stmpe *stmpe, unsigned int blocks);
  104. struct matrix_keymap_data;
  105. /**
  106. * struct stmpe_keypad_platform_data - STMPE keypad platform data
  107. * @keymap_data: key map table and size
  108. * @debounce_ms: debounce interval, in ms. Maximum is
  109. * %STMPE_KEYPAD_MAX_DEBOUNCE.
  110. * @scan_count: number of key scanning cycles to confirm key data.
  111. * Maximum is %STMPE_KEYPAD_MAX_SCAN_COUNT.
  112. * @no_autorepeat: disable key autorepeat
  113. */
  114. struct stmpe_keypad_platform_data {
  115. const struct matrix_keymap_data *keymap_data;
  116. unsigned int debounce_ms;
  117. unsigned int scan_count;
  118. bool no_autorepeat;
  119. };
  120. #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0)
  121. /**
  122. * struct stmpe_gpio_platform_data - STMPE GPIO platform data
  123. * @norequest_mask: bitmask specifying which GPIOs should _not_ be
  124. * requestable due to different usage (e.g. touch, keypad)
  125. * STMPE_GPIO_NOREQ_* macros can be used here.
  126. * @setup: board specific setup callback.
  127. * @remove: board specific remove callback
  128. */
  129. struct stmpe_gpio_platform_data {
  130. unsigned norequest_mask;
  131. void (*setup)(struct stmpe *stmpe, unsigned gpio_base);
  132. void (*remove)(struct stmpe *stmpe, unsigned gpio_base);
  133. };
  134. /**
  135. * struct stmpe_ts_platform_data - stmpe811 touch screen controller platform
  136. * data
  137. * @sample_time: ADC converstion time in number of clock.
  138. * (0 -> 36 clocks, 1 -> 44 clocks, 2 -> 56 clocks, 3 -> 64 clocks,
  139. * 4 -> 80 clocks, 5 -> 96 clocks, 6 -> 144 clocks),
  140. * recommended is 4.
  141. * @mod_12b: ADC Bit mode (0 -> 10bit ADC, 1 -> 12bit ADC)
  142. * @ref_sel: ADC reference source
  143. * (0 -> internal reference, 1 -> external reference)
  144. * @adc_freq: ADC Clock speed
  145. * (0 -> 1.625 MHz, 1 -> 3.25 MHz, 2 || 3 -> 6.5 MHz)
  146. * @ave_ctrl: Sample average control
  147. * (0 -> 1 sample, 1 -> 2 samples, 2 -> 4 samples, 3 -> 8 samples)
  148. * @touch_det_delay: Touch detect interrupt delay
  149. * (0 -> 10 us, 1 -> 50 us, 2 -> 100 us, 3 -> 500 us,
  150. * 4-> 1 ms, 5 -> 5 ms, 6 -> 10 ms, 7 -> 50 ms)
  151. * recommended is 3
  152. * @settling: Panel driver settling time
  153. * (0 -> 10 us, 1 -> 100 us, 2 -> 500 us, 3 -> 1 ms,
  154. * 4 -> 5 ms, 5 -> 10 ms, 6 for 50 ms, 7 -> 100 ms)
  155. * recommended is 2
  156. * @fraction_z: Length of the fractional part in z
  157. * (fraction_z ([0..7]) = Count of the fractional part)
  158. * recommended is 7
  159. * @i_drive: current limit value of the touchscreen drivers
  160. * (0 -> 20 mA typical 35 mA max, 1 -> 50 mA typical 80 mA max)
  161. *
  162. * */
  163. struct stmpe_ts_platform_data {
  164. u8 sample_time;
  165. u8 mod_12b;
  166. u8 ref_sel;
  167. u8 adc_freq;
  168. u8 ave_ctrl;
  169. u8 touch_det_delay;
  170. u8 settling;
  171. u8 fraction_z;
  172. u8 i_drive;
  173. };
  174. /**
  175. * struct stmpe_platform_data - STMPE platform data
  176. * @id: device id to distinguish between multiple STMPEs on the same board
  177. * @blocks: bitmask of blocks to enable (use STMPE_BLOCK_*)
  178. * @irq_trigger: IRQ trigger to use for the interrupt to the host
  179. * @autosleep: bool to enable/disable stmpe autosleep
  180. * @autosleep_timeout: inactivity timeout in milliseconds for autosleep
  181. * @irq_over_gpio: true if gpio is used to get irq
  182. * @irq_gpio: gpio number over which irq will be requested (significant only if
  183. * irq_over_gpio is true)
  184. * @gpio: GPIO-specific platform data
  185. * @keypad: keypad-specific platform data
  186. * @ts: touchscreen-specific platform data
  187. */
  188. struct stmpe_platform_data {
  189. int id;
  190. unsigned int blocks;
  191. unsigned int irq_trigger;
  192. bool autosleep;
  193. bool irq_over_gpio;
  194. int irq_gpio;
  195. int autosleep_timeout;
  196. struct stmpe_gpio_platform_data *gpio;
  197. struct stmpe_keypad_platform_data *keypad;
  198. struct stmpe_ts_platform_data *ts;
  199. };
  200. #endif