Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 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 | |
| 8 | #ifndef __LINUX_MFD_STMPE_H |
| 9 | #define __LINUX_MFD_STMPE_H |
| 10 | |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 11 | #include <linux/mutex.h> |
| 12 | |
| 13 | struct device; |
Linus Walleij | 9c9e321 | 2014-05-08 23:16:35 +0200 | [diff] [blame] | 14 | struct regulator; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 15 | |
| 16 | enum stmpe_block { |
| 17 | STMPE_BLOCK_GPIO = 1 << 0, |
| 18 | STMPE_BLOCK_KEYPAD = 1 << 1, |
| 19 | STMPE_BLOCK_TOUCHSCREEN = 1 << 2, |
| 20 | STMPE_BLOCK_ADC = 1 << 3, |
| 21 | STMPE_BLOCK_PWM = 1 << 4, |
| 22 | STMPE_BLOCK_ROTATOR = 1 << 5, |
| 23 | }; |
| 24 | |
| 25 | enum stmpe_partnum { |
Viresh Kumar | 1cda239 | 2011-11-17 11:02:22 +0530 | [diff] [blame] | 26 | STMPE610, |
Viresh Kumar | 7f7f4ea | 2011-11-17 11:02:23 +0530 | [diff] [blame] | 27 | STMPE801, |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 28 | STMPE811, |
| 29 | STMPE1601, |
Jean-Nicolas Graux | 230f13a | 2013-04-09 10:35:19 +0200 | [diff] [blame] | 30 | STMPE1801, |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 31 | STMPE2401, |
| 32 | STMPE2403, |
Chris Blair | e31f9b8 | 2012-01-26 22:17:03 +0100 | [diff] [blame] | 33 | STMPE_NBR_PARTS |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | /* |
| 37 | * For registers whose locations differ on variants, the correct address is |
| 38 | * obtained by indexing stmpe->regs with one of the following. |
| 39 | */ |
| 40 | enum { |
| 41 | STMPE_IDX_CHIP_ID, |
| 42 | STMPE_IDX_ICR_LSB, |
| 43 | STMPE_IDX_IER_LSB, |
Jean-Nicolas Graux | 230f13a | 2013-04-09 10:35:19 +0200 | [diff] [blame] | 44 | STMPE_IDX_ISR_LSB, |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 45 | STMPE_IDX_ISR_MSB, |
| 46 | STMPE_IDX_GPMR_LSB, |
| 47 | STMPE_IDX_GPSR_LSB, |
| 48 | STMPE_IDX_GPCR_LSB, |
| 49 | STMPE_IDX_GPDR_LSB, |
| 50 | STMPE_IDX_GPEDR_MSB, |
| 51 | STMPE_IDX_GPRER_LSB, |
| 52 | STMPE_IDX_GPFER_LSB, |
Linus Walleij | 80e1dd8 | 2014-11-03 16:48:47 -0800 | [diff] [blame] | 53 | STMPE_IDX_GPPUR_LSB, |
| 54 | STMPE_IDX_GPPDR_LSB, |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 55 | STMPE_IDX_GPAFR_U_MSB, |
| 56 | STMPE_IDX_IEGPIOR_LSB, |
Jean-Nicolas Graux | 230f13a | 2013-04-09 10:35:19 +0200 | [diff] [blame] | 57 | STMPE_IDX_ISGPIOR_LSB, |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 58 | STMPE_IDX_ISGPIOR_MSB, |
| 59 | STMPE_IDX_MAX, |
| 60 | }; |
| 61 | |
| 62 | |
| 63 | struct stmpe_variant_info; |
Viresh Kumar | 1a6e4b7 | 2011-11-17 11:02:20 +0530 | [diff] [blame] | 64 | struct stmpe_client_info; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 65 | |
| 66 | /** |
| 67 | * struct stmpe - STMPE MFD structure |
Linus Walleij | 9c9e321 | 2014-05-08 23:16:35 +0200 | [diff] [blame] | 68 | * @vcc: optional VCC regulator |
| 69 | * @vio: optional VIO regulator |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 70 | * @lock: lock protecting I/O operations |
| 71 | * @irq_lock: IRQ bus lock |
| 72 | * @dev: device, mostly for dev_dbg() |
Lee Jones | 76f9399 | 2012-11-05 16:10:31 +0100 | [diff] [blame] | 73 | * @irq_domain: IRQ domain |
Viresh Kumar | 1a6e4b7 | 2011-11-17 11:02:20 +0530 | [diff] [blame] | 74 | * @client: client - i2c or spi |
| 75 | * @ci: client specific information |
Om Prakash | 4dcaa6b | 2011-06-27 09:54:22 +0200 | [diff] [blame] | 76 | * @partnum: part number |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 77 | * @variant: the detected STMPE model number |
| 78 | * @regs: list of addresses of registers which are at different addresses on |
| 79 | * different variants. Indexed by one of STMPE_IDX_*. |
Viresh Kumar | 73de16d | 2011-11-08 09:44:06 +0530 | [diff] [blame] | 80 | * @irq: irq number for stmpe |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 81 | * @num_gpios: number of gpios, differs for variants |
| 82 | * @ier: cache of IER registers for bus_lock |
| 83 | * @oldier: cache of IER registers for bus_lock |
| 84 | * @pdata: platform data |
| 85 | */ |
| 86 | struct stmpe { |
Linus Walleij | 9c9e321 | 2014-05-08 23:16:35 +0200 | [diff] [blame] | 87 | struct regulator *vcc; |
| 88 | struct regulator *vio; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 89 | struct mutex lock; |
| 90 | struct mutex irq_lock; |
| 91 | struct device *dev; |
Lee Jones | 76f9399 | 2012-11-05 16:10:31 +0100 | [diff] [blame] | 92 | struct irq_domain *domain; |
Viresh Kumar | 1a6e4b7 | 2011-11-17 11:02:20 +0530 | [diff] [blame] | 93 | void *client; |
| 94 | struct stmpe_client_info *ci; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 95 | enum stmpe_partnum partnum; |
| 96 | struct stmpe_variant_info *variant; |
| 97 | const u8 *regs; |
| 98 | |
Viresh Kumar | 73de16d | 2011-11-08 09:44:06 +0530 | [diff] [blame] | 99 | int irq; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 100 | int num_gpios; |
| 101 | u8 ier[2]; |
| 102 | u8 oldier[2]; |
| 103 | struct stmpe_platform_data *pdata; |
| 104 | }; |
| 105 | |
| 106 | extern int stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 data); |
| 107 | extern int stmpe_reg_read(struct stmpe *stmpe, u8 reg); |
| 108 | extern int stmpe_block_read(struct stmpe *stmpe, u8 reg, u8 length, |
| 109 | u8 *values); |
| 110 | extern int stmpe_block_write(struct stmpe *stmpe, u8 reg, u8 length, |
| 111 | const u8 *values); |
| 112 | extern int stmpe_set_bits(struct stmpe *stmpe, u8 reg, u8 mask, u8 val); |
| 113 | extern int stmpe_set_altfunc(struct stmpe *stmpe, u32 pins, |
| 114 | enum stmpe_block block); |
| 115 | extern int stmpe_enable(struct stmpe *stmpe, unsigned int blocks); |
| 116 | extern int stmpe_disable(struct stmpe *stmpe, unsigned int blocks); |
| 117 | |
Wolfram Sang | b8e9cf0 | 2010-08-16 17:14:44 +0200 | [diff] [blame] | 118 | #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0) |
| 119 | |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 120 | /** |
| 121 | * struct stmpe_gpio_platform_data - STMPE GPIO platform data |
Wolfram Sang | b8e9cf0 | 2010-08-16 17:14:44 +0200 | [diff] [blame] | 122 | * @norequest_mask: bitmask specifying which GPIOs should _not_ be |
| 123 | * requestable due to different usage (e.g. touch, keypad) |
| 124 | * STMPE_GPIO_NOREQ_* macros can be used here. |
Om Prakash | 4dcaa6b | 2011-06-27 09:54:22 +0200 | [diff] [blame] | 125 | * @setup: board specific setup callback. |
| 126 | * @remove: board specific remove callback |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 127 | */ |
| 128 | struct stmpe_gpio_platform_data { |
Wolfram Sang | b8e9cf0 | 2010-08-16 17:14:44 +0200 | [diff] [blame] | 129 | unsigned norequest_mask; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 130 | void (*setup)(struct stmpe *stmpe, unsigned gpio_base); |
| 131 | void (*remove)(struct stmpe *stmpe, unsigned gpio_base); |
| 132 | }; |
| 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 | /** |
| 176 | * struct stmpe_platform_data - STMPE platform data |
| 177 | * @id: device id to distinguish between multiple STMPEs on the same board |
| 178 | * @blocks: bitmask of blocks to enable (use STMPE_BLOCK_*) |
| 179 | * @irq_trigger: IRQ trigger to use for the interrupt to the host |
Sundar R Iyer | 5981f4e | 2010-07-21 11:41:07 +0530 | [diff] [blame] | 180 | * @autosleep: bool to enable/disable stmpe autosleep |
| 181 | * @autosleep_timeout: inactivity timeout in milliseconds for autosleep |
Viresh Kumar | 73de16d | 2011-11-08 09:44:06 +0530 | [diff] [blame] | 182 | * @irq_over_gpio: true if gpio is used to get irq |
| 183 | * @irq_gpio: gpio number over which irq will be requested (significant only if |
| 184 | * irq_over_gpio is true) |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 185 | * @gpio: GPIO-specific platform data |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 186 | * @ts: touchscreen-specific platform data |
| 187 | */ |
| 188 | struct stmpe_platform_data { |
| 189 | int id; |
| 190 | unsigned int blocks; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 191 | unsigned int irq_trigger; |
Sundar R Iyer | 5981f4e | 2010-07-21 11:41:07 +0530 | [diff] [blame] | 192 | bool autosleep; |
Viresh Kumar | 73de16d | 2011-11-08 09:44:06 +0530 | [diff] [blame] | 193 | bool irq_over_gpio; |
| 194 | int irq_gpio; |
Sundar R Iyer | 5981f4e | 2010-07-21 11:41:07 +0530 | [diff] [blame] | 195 | int autosleep_timeout; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 196 | |
| 197 | struct stmpe_gpio_platform_data *gpio; |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 198 | struct stmpe_ts_platform_data *ts; |
| 199 | }; |
| 200 | |
Rabin Vincent | 27e3499 | 2010-07-02 16:52:08 +0530 | [diff] [blame] | 201 | #endif |