stmpe.h 6.5 KB

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