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