blob: 980898620e576ee210968f7bafc941c3ac8234b8 [file] [log] [blame]
Rabin Vincent27e34992010-07-02 16:52:08 +05301/*
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 Gortmaker313162d2012-01-30 11:46:54 -050011#include <linux/mutex.h>
12
13struct device;
Linus Walleij9c9e3212014-05-08 23:16:35 +020014struct regulator;
Rabin Vincent27e34992010-07-02 16:52:08 +053015
16enum 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
25enum stmpe_partnum {
Viresh Kumar1cda2392011-11-17 11:02:22 +053026 STMPE610,
Viresh Kumar7f7f4ea2011-11-17 11:02:23 +053027 STMPE801,
Rabin Vincent27e34992010-07-02 16:52:08 +053028 STMPE811,
29 STMPE1601,
Jean-Nicolas Graux230f13a2013-04-09 10:35:19 +020030 STMPE1801,
Rabin Vincent27e34992010-07-02 16:52:08 +053031 STMPE2401,
32 STMPE2403,
Chris Blaire31f9b82012-01-26 22:17:03 +010033 STMPE_NBR_PARTS
Rabin Vincent27e34992010-07-02 16:52:08 +053034};
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 */
40enum {
41 STMPE_IDX_CHIP_ID,
42 STMPE_IDX_ICR_LSB,
43 STMPE_IDX_IER_LSB,
Jean-Nicolas Graux230f13a2013-04-09 10:35:19 +020044 STMPE_IDX_ISR_LSB,
Rabin Vincent27e34992010-07-02 16:52:08 +053045 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,
53 STMPE_IDX_GPAFR_U_MSB,
54 STMPE_IDX_IEGPIOR_LSB,
Jean-Nicolas Graux230f13a2013-04-09 10:35:19 +020055 STMPE_IDX_ISGPIOR_LSB,
Rabin Vincent27e34992010-07-02 16:52:08 +053056 STMPE_IDX_ISGPIOR_MSB,
57 STMPE_IDX_MAX,
58};
59
60
61struct stmpe_variant_info;
Viresh Kumar1a6e4b72011-11-17 11:02:20 +053062struct stmpe_client_info;
Rabin Vincent27e34992010-07-02 16:52:08 +053063
64/**
65 * struct stmpe - STMPE MFD structure
Linus Walleij9c9e3212014-05-08 23:16:35 +020066 * @vcc: optional VCC regulator
67 * @vio: optional VIO regulator
Rabin Vincent27e34992010-07-02 16:52:08 +053068 * @lock: lock protecting I/O operations
69 * @irq_lock: IRQ bus lock
70 * @dev: device, mostly for dev_dbg()
Lee Jones76f93992012-11-05 16:10:31 +010071 * @irq_domain: IRQ domain
Viresh Kumar1a6e4b72011-11-17 11:02:20 +053072 * @client: client - i2c or spi
73 * @ci: client specific information
Om Prakash4dcaa6b2011-06-27 09:54:22 +020074 * @partnum: part number
Rabin Vincent27e34992010-07-02 16:52:08 +053075 * @variant: the detected STMPE model number
76 * @regs: list of addresses of registers which are at different addresses on
77 * different variants. Indexed by one of STMPE_IDX_*.
Viresh Kumar73de16d2011-11-08 09:44:06 +053078 * @irq: irq number for stmpe
Rabin Vincent27e34992010-07-02 16:52:08 +053079 * @irq_base: starting IRQ number for internal IRQs
80 * @num_gpios: number of gpios, differs for variants
81 * @ier: cache of IER registers for bus_lock
82 * @oldier: cache of IER registers for bus_lock
83 * @pdata: platform data
84 */
85struct stmpe {
Linus Walleij9c9e3212014-05-08 23:16:35 +020086 struct regulator *vcc;
87 struct regulator *vio;
Rabin Vincent27e34992010-07-02 16:52:08 +053088 struct mutex lock;
89 struct mutex irq_lock;
90 struct device *dev;
Lee Jones76f93992012-11-05 16:10:31 +010091 struct irq_domain *domain;
Viresh Kumar1a6e4b72011-11-17 11:02:20 +053092 void *client;
93 struct stmpe_client_info *ci;
Rabin Vincent27e34992010-07-02 16:52:08 +053094 enum stmpe_partnum partnum;
95 struct stmpe_variant_info *variant;
96 const u8 *regs;
97
Viresh Kumar73de16d2011-11-08 09:44:06 +053098 int irq;
Rabin Vincent27e34992010-07-02 16:52:08 +053099 int irq_base;
100 int num_gpios;
101 u8 ier[2];
102 u8 oldier[2];
103 struct stmpe_platform_data *pdata;
104};
105
106extern int stmpe_reg_write(struct stmpe *stmpe, u8 reg, u8 data);
107extern int stmpe_reg_read(struct stmpe *stmpe, u8 reg);
108extern int stmpe_block_read(struct stmpe *stmpe, u8 reg, u8 length,
109 u8 *values);
110extern int stmpe_block_write(struct stmpe *stmpe, u8 reg, u8 length,
111 const u8 *values);
112extern int stmpe_set_bits(struct stmpe *stmpe, u8 reg, u8 mask, u8 val);
113extern int stmpe_set_altfunc(struct stmpe *stmpe, u32 pins,
114 enum stmpe_block block);
115extern int stmpe_enable(struct stmpe *stmpe, unsigned int blocks);
116extern int stmpe_disable(struct stmpe *stmpe, unsigned int blocks);
117
118struct matrix_keymap_data;
119
120/**
121 * struct stmpe_keypad_platform_data - STMPE keypad platform data
122 * @keymap_data: key map table and size
123 * @debounce_ms: debounce interval, in ms. Maximum is
124 * %STMPE_KEYPAD_MAX_DEBOUNCE.
125 * @scan_count: number of key scanning cycles to confirm key data.
126 * Maximum is %STMPE_KEYPAD_MAX_SCAN_COUNT.
127 * @no_autorepeat: disable key autorepeat
128 */
129struct stmpe_keypad_platform_data {
Linus Walleij1379f492012-04-23 14:28:44 +0200130 const struct matrix_keymap_data *keymap_data;
Rabin Vincent27e34992010-07-02 16:52:08 +0530131 unsigned int debounce_ms;
132 unsigned int scan_count;
133 bool no_autorepeat;
134};
135
Wolfram Sangb8e9cf02010-08-16 17:14:44 +0200136#define STMPE_GPIO_NOREQ_811_TOUCH (0xf0)
137
Rabin Vincent27e34992010-07-02 16:52:08 +0530138/**
139 * struct stmpe_gpio_platform_data - STMPE GPIO platform data
140 * @gpio_base: first gpio number assigned. A maximum of
141 * %STMPE_NR_GPIOS GPIOs will be allocated.
Wolfram Sangb8e9cf02010-08-16 17:14:44 +0200142 * @norequest_mask: bitmask specifying which GPIOs should _not_ be
143 * requestable due to different usage (e.g. touch, keypad)
144 * STMPE_GPIO_NOREQ_* macros can be used here.
Om Prakash4dcaa6b2011-06-27 09:54:22 +0200145 * @setup: board specific setup callback.
146 * @remove: board specific remove callback
Rabin Vincent27e34992010-07-02 16:52:08 +0530147 */
148struct stmpe_gpio_platform_data {
149 int gpio_base;
Wolfram Sangb8e9cf02010-08-16 17:14:44 +0200150 unsigned norequest_mask;
Rabin Vincent27e34992010-07-02 16:52:08 +0530151 void (*setup)(struct stmpe *stmpe, unsigned gpio_base);
152 void (*remove)(struct stmpe *stmpe, unsigned gpio_base);
153};
154
155/**
156 * struct stmpe_ts_platform_data - stmpe811 touch screen controller platform
157 * data
158 * @sample_time: ADC converstion time in number of clock.
159 * (0 -> 36 clocks, 1 -> 44 clocks, 2 -> 56 clocks, 3 -> 64 clocks,
160 * 4 -> 80 clocks, 5 -> 96 clocks, 6 -> 144 clocks),
161 * recommended is 4.
162 * @mod_12b: ADC Bit mode (0 -> 10bit ADC, 1 -> 12bit ADC)
163 * @ref_sel: ADC reference source
164 * (0 -> internal reference, 1 -> external reference)
165 * @adc_freq: ADC Clock speed
166 * (0 -> 1.625 MHz, 1 -> 3.25 MHz, 2 || 3 -> 6.5 MHz)
167 * @ave_ctrl: Sample average control
168 * (0 -> 1 sample, 1 -> 2 samples, 2 -> 4 samples, 3 -> 8 samples)
169 * @touch_det_delay: Touch detect interrupt delay
170 * (0 -> 10 us, 1 -> 50 us, 2 -> 100 us, 3 -> 500 us,
171 * 4-> 1 ms, 5 -> 5 ms, 6 -> 10 ms, 7 -> 50 ms)
172 * recommended is 3
173 * @settling: Panel driver settling time
174 * (0 -> 10 us, 1 -> 100 us, 2 -> 500 us, 3 -> 1 ms,
175 * 4 -> 5 ms, 5 -> 10 ms, 6 for 50 ms, 7 -> 100 ms)
176 * recommended is 2
177 * @fraction_z: Length of the fractional part in z
178 * (fraction_z ([0..7]) = Count of the fractional part)
179 * recommended is 7
180 * @i_drive: current limit value of the touchscreen drivers
181 * (0 -> 20 mA typical 35 mA max, 1 -> 50 mA typical 80 mA max)
182 *
183 * */
184struct stmpe_ts_platform_data {
185 u8 sample_time;
186 u8 mod_12b;
187 u8 ref_sel;
188 u8 adc_freq;
189 u8 ave_ctrl;
190 u8 touch_det_delay;
191 u8 settling;
192 u8 fraction_z;
193 u8 i_drive;
194};
195
196/**
197 * struct stmpe_platform_data - STMPE platform data
198 * @id: device id to distinguish between multiple STMPEs on the same board
199 * @blocks: bitmask of blocks to enable (use STMPE_BLOCK_*)
200 * @irq_trigger: IRQ trigger to use for the interrupt to the host
Sundar R Iyer5981f4e2010-07-21 11:41:07 +0530201 * @autosleep: bool to enable/disable stmpe autosleep
202 * @autosleep_timeout: inactivity timeout in milliseconds for autosleep
Rabin Vincent27e34992010-07-02 16:52:08 +0530203 * @irq_base: base IRQ number. %STMPE_NR_IRQS irqs will be used, or
204 * %STMPE_NR_INTERNAL_IRQS if the GPIO driver is not used.
Viresh Kumar73de16d2011-11-08 09:44:06 +0530205 * @irq_over_gpio: true if gpio is used to get irq
206 * @irq_gpio: gpio number over which irq will be requested (significant only if
207 * irq_over_gpio is true)
Rabin Vincent27e34992010-07-02 16:52:08 +0530208 * @gpio: GPIO-specific platform data
209 * @keypad: keypad-specific platform data
210 * @ts: touchscreen-specific platform data
211 */
212struct stmpe_platform_data {
213 int id;
214 unsigned int blocks;
215 int irq_base;
216 unsigned int irq_trigger;
Sundar R Iyer5981f4e2010-07-21 11:41:07 +0530217 bool autosleep;
Viresh Kumar73de16d2011-11-08 09:44:06 +0530218 bool irq_over_gpio;
219 int irq_gpio;
Sundar R Iyer5981f4e2010-07-21 11:41:07 +0530220 int autosleep_timeout;
Rabin Vincent27e34992010-07-02 16:52:08 +0530221
222 struct stmpe_gpio_platform_data *gpio;
223 struct stmpe_keypad_platform_data *keypad;
224 struct stmpe_ts_platform_data *ts;
225};
226
227#define STMPE_NR_INTERNAL_IRQS 9
228#define STMPE_INT_GPIO(x) (STMPE_NR_INTERNAL_IRQS + (x))
229
230#define STMPE_NR_GPIOS 24
231#define STMPE_NR_IRQS STMPE_INT_GPIO(STMPE_NR_GPIOS)
232
233#endif