2 * Copyright (C) ST-Ericsson SA 2010
4 * License Terms: GNU General Public License, version 2
5 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
8 #ifndef __LINUX_MFD_STMPE_H
9 #define __LINUX_MFD_STMPE_H
11 #include <linux/mutex.h>
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,
37 * For registers whose locations differ on variants, the correct address is
38 * obtained by indexing stmpe->regs with one of the following.
55 STMPE_IDX_GPAFR_U_MSB,
56 STMPE_IDX_IEGPIOR_LSB,
57 STMPE_IDX_ISGPIOR_LSB,
58 STMPE_IDX_ISGPIOR_MSB,
63 struct stmpe_variant_info;
64 struct stmpe_client_info;
67 * struct stmpe - STMPE MFD structure
68 * @vcc: optional VCC regulator
69 * @vio: optional VIO regulator
70 * @lock: lock protecting I/O operations
71 * @irq_lock: IRQ bus lock
72 * @dev: device, mostly for dev_dbg()
73 * @irq_domain: IRQ domain
74 * @client: client - i2c or spi
75 * @ci: client specific information
76 * @partnum: part number
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_*.
80 * @irq: irq number for stmpe
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
87 struct regulator *vcc;
88 struct regulator *vio;
90 struct mutex irq_lock;
92 struct irq_domain *domain;
94 struct stmpe_client_info *ci;
95 enum stmpe_partnum partnum;
96 struct stmpe_variant_info *variant;
103 struct stmpe_platform_data *pdata;
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,
110 extern int stmpe_block_write(struct stmpe *stmpe, u8 reg, u8 length,
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);
118 #define STMPE_GPIO_NOREQ_811_TOUCH (0xf0)
121 * struct stmpe_ts_platform_data - stmpe811 touch screen controller platform
123 * @sample_time: ADC converstion time in number of clock.
124 * (0 -> 36 clocks, 1 -> 44 clocks, 2 -> 56 clocks, 3 -> 64 clocks,
125 * 4 -> 80 clocks, 5 -> 96 clocks, 6 -> 144 clocks),
127 * @mod_12b: ADC Bit mode (0 -> 10bit ADC, 1 -> 12bit ADC)
128 * @ref_sel: ADC reference source
129 * (0 -> internal reference, 1 -> external reference)
130 * @adc_freq: ADC Clock speed
131 * (0 -> 1.625 MHz, 1 -> 3.25 MHz, 2 || 3 -> 6.5 MHz)
132 * @ave_ctrl: Sample average control
133 * (0 -> 1 sample, 1 -> 2 samples, 2 -> 4 samples, 3 -> 8 samples)
134 * @touch_det_delay: Touch detect interrupt delay
135 * (0 -> 10 us, 1 -> 50 us, 2 -> 100 us, 3 -> 500 us,
136 * 4-> 1 ms, 5 -> 5 ms, 6 -> 10 ms, 7 -> 50 ms)
138 * @settling: Panel driver settling time
139 * (0 -> 10 us, 1 -> 100 us, 2 -> 500 us, 3 -> 1 ms,
140 * 4 -> 5 ms, 5 -> 10 ms, 6 for 50 ms, 7 -> 100 ms)
142 * @fraction_z: Length of the fractional part in z
143 * (fraction_z ([0..7]) = Count of the fractional part)
145 * @i_drive: current limit value of the touchscreen drivers
146 * (0 -> 20 mA typical 35 mA max, 1 -> 50 mA typical 80 mA max)
149 struct stmpe_ts_platform_data {
162 * struct stmpe_platform_data - STMPE platform data
163 * @id: device id to distinguish between multiple STMPEs on the same board
164 * @blocks: bitmask of blocks to enable (use STMPE_BLOCK_*)
165 * @irq_trigger: IRQ trigger to use for the interrupt to the host
166 * @autosleep: bool to enable/disable stmpe autosleep
167 * @autosleep_timeout: inactivity timeout in milliseconds for autosleep
168 * @irq_over_gpio: true if gpio is used to get irq
169 * @irq_gpio: gpio number over which irq will be requested (significant only if
170 * irq_over_gpio is true)
171 * @ts: touchscreen-specific platform data
173 struct stmpe_platform_data {
176 unsigned int irq_trigger;
180 int autosleep_timeout;
182 struct stmpe_ts_platform_data *ts;