2 * Touchscreen driver for the tps6507x chip.
8 * Using code from tsc2007, MtekVision Co., Ltd.
10 * For licencing details see kernel-base/COPYING
12 * TPS65070, TPS65073, TPS650731, and TPS650732 support
13 * 10 bit touch screen interface.
16 #include <linux/module.h>
17 #include <linux/workqueue.h>
18 #include <linux/slab.h>
19 #include <linux/input.h>
20 #include <linux/input-polldev.h>
21 #include <linux/platform_device.h>
22 #include <linux/mfd/tps6507x.h>
23 #include <linux/input/tps6507x-ts.h>
24 #include <linux/delay.h>
26 #define TSC_DEFAULT_POLL_PERIOD 30 /* ms */
27 #define TPS_DEFAULT_MIN_PRESSURE 0x30
28 #define MAX_10BIT ((1 << 10) - 1)
30 #define TPS6507X_ADCONFIG_CONVERT_TS (TPS6507X_ADCONFIG_AD_ENABLE | \
31 TPS6507X_ADCONFIG_START_CONVERSION | \
32 TPS6507X_ADCONFIG_INPUT_REAL_TSC)
33 #define TPS6507X_ADCONFIG_POWER_DOWN_TS (TPS6507X_ADCONFIG_INPUT_REAL_TSC)
43 struct input_polled_dev *poll_dev;
44 struct tps6507x_dev *mfd;
51 static int tps6507x_read_u8(struct tps6507x_ts *tsc, u8 reg, u8 *data)
55 err = tsc->mfd->read_dev(tsc->mfd, reg, 1, data);
63 static int tps6507x_write_u8(struct tps6507x_ts *tsc, u8 reg, u8 data)
65 return tsc->mfd->write_dev(tsc->mfd, reg, 1, &data);
68 static s32 tps6507x_adc_conversion(struct tps6507x_ts *tsc,
69 u8 tsc_mode, u16 *value)
75 /* Route input signal to A/D converter */
77 ret = tps6507x_write_u8(tsc, TPS6507X_REG_TSCMODE, tsc_mode);
79 dev_err(tsc->dev, "TSC mode read failed\n");
83 /* Start A/D conversion */
85 ret = tps6507x_write_u8(tsc, TPS6507X_REG_ADCONFIG,
86 TPS6507X_ADCONFIG_CONVERT_TS);
88 dev_err(tsc->dev, "ADC config write failed\n");
93 ret = tps6507x_read_u8(tsc, TPS6507X_REG_ADCONFIG,
96 dev_err(tsc->dev, "ADC config read failed\n");
99 } while (adc_status & TPS6507X_ADCONFIG_START_CONVERSION);
101 ret = tps6507x_read_u8(tsc, TPS6507X_REG_ADRESULT_2, &result);
103 dev_err(tsc->dev, "ADC result 2 read failed\n");
107 *value = (result & TPS6507X_REG_ADRESULT_2_MASK) << 8;
109 ret = tps6507x_read_u8(tsc, TPS6507X_REG_ADRESULT_1, &result);
111 dev_err(tsc->dev, "ADC result 1 read failed\n");
117 dev_dbg(tsc->dev, "TSC channel %d = 0x%X\n", tsc_mode, *value);
123 /* Need to call tps6507x_adc_standby() after using A/D converter for the
124 * touch screen interrupt to work properly.
127 static s32 tps6507x_adc_standby(struct tps6507x_ts *tsc)
133 ret = tps6507x_write_u8(tsc, TPS6507X_REG_ADCONFIG,
134 TPS6507X_ADCONFIG_INPUT_TSC);
138 ret = tps6507x_write_u8(tsc, TPS6507X_REG_TSCMODE,
139 TPS6507X_TSCMODE_STANDBY);
143 ret = tps6507x_read_u8(tsc, TPS6507X_REG_INT, &val);
147 while (val & TPS6507X_REG_TSC_INT) {
149 ret = tps6507x_read_u8(tsc, TPS6507X_REG_INT, &val);
158 static void tps6507x_ts_poll(struct input_polled_dev *poll_dev)
160 struct tps6507x_ts *tsc = poll_dev->private;
161 struct input_dev *input_dev = poll_dev->input;
165 ret = tps6507x_adc_conversion(tsc, TPS6507X_TSCMODE_PRESSURE,
170 pendown = tsc->tc.pressure > tsc->min_pressure;
172 if (unlikely(!pendown && tsc->pendown)) {
173 dev_dbg(tsc->dev, "UP\n");
174 input_report_key(input_dev, BTN_TOUCH, 0);
175 input_report_abs(input_dev, ABS_PRESSURE, 0);
176 input_sync(input_dev);
177 tsc->pendown = false;
183 dev_dbg(tsc->dev, "DOWN\n");
184 input_report_key(input_dev, BTN_TOUCH, 1);
186 dev_dbg(tsc->dev, "still down\n");
188 ret = tps6507x_adc_conversion(tsc, TPS6507X_TSCMODE_X_POSITION,
193 ret = tps6507x_adc_conversion(tsc, TPS6507X_TSCMODE_Y_POSITION,
198 input_report_abs(input_dev, ABS_X, tsc->tc.x);
199 input_report_abs(input_dev, ABS_Y, tsc->tc.y);
200 input_report_abs(input_dev, ABS_PRESSURE, tsc->tc.pressure);
201 input_sync(input_dev);
206 tps6507x_adc_standby(tsc);
209 static int tps6507x_ts_probe(struct platform_device *pdev)
211 struct tps6507x_dev *tps6507x_dev = dev_get_drvdata(pdev->dev.parent);
212 const struct tps6507x_board *tps_board;
213 const struct touchscreen_init_data *init_data;
214 struct tps6507x_ts *tsc;
215 struct input_polled_dev *poll_dev;
216 struct input_dev *input_dev;
220 * tps_board points to pmic related constants
221 * coming from the board-evm file.
223 tps_board = dev_get_platdata(tps6507x_dev->dev);
225 dev_err(tps6507x_dev->dev,
226 "Could not find tps6507x platform data\n");
231 * init_data points to array of regulator_init structures
232 * coming from the board-evm file.
234 init_data = tps_board->tps6507x_ts_init_data;
236 tsc = kzalloc(sizeof(struct tps6507x_ts), GFP_KERNEL);
238 dev_err(tps6507x_dev->dev, "failed to allocate driver data\n");
242 tsc->mfd = tps6507x_dev;
243 tsc->dev = tps6507x_dev->dev;
244 tsc->min_pressure = init_data ?
245 init_data->min_pressure : TPS_DEFAULT_MIN_PRESSURE;
247 snprintf(tsc->phys, sizeof(tsc->phys),
248 "%s/input0", dev_name(tsc->dev));
250 poll_dev = input_allocate_polled_device();
252 dev_err(tsc->dev, "Failed to allocate polled input device.\n");
257 tsc->poll_dev = poll_dev;
259 poll_dev->private = tsc;
260 poll_dev->poll = tps6507x_ts_poll;
261 poll_dev->poll_interval = init_data ?
262 init_data->poll_period : TSC_DEFAULT_POLL_PERIOD;
264 input_dev = poll_dev->input;
265 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
266 input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
268 input_set_abs_params(input_dev, ABS_X, 0, MAX_10BIT, 0, 0);
269 input_set_abs_params(input_dev, ABS_Y, 0, MAX_10BIT, 0, 0);
270 input_set_abs_params(input_dev, ABS_PRESSURE, 0, MAX_10BIT, 0, 0);
272 input_dev->name = "TPS6507x Touchscreen";
273 input_dev->phys = tsc->phys;
274 input_dev->dev.parent = tsc->dev;
275 input_dev->id.bustype = BUS_I2C;
277 input_dev->id.vendor = init_data->vendor;
278 input_dev->id.product = init_data->product;
279 input_dev->id.version = init_data->version;
282 error = tps6507x_adc_standby(tsc);
284 goto err_free_polled_dev;
286 error = input_register_polled_device(poll_dev);
288 goto err_free_polled_dev;
290 platform_set_drvdata(pdev, tsc);
295 input_free_polled_device(poll_dev);
301 static int tps6507x_ts_remove(struct platform_device *pdev)
303 struct tps6507x_ts *tsc = platform_get_drvdata(pdev);
304 struct input_polled_dev *poll_dev = tsc->poll_dev;
306 input_unregister_polled_device(poll_dev);
307 input_free_polled_device(poll_dev);
314 static struct platform_driver tps6507x_ts_driver = {
316 .name = "tps6507x-ts",
318 .probe = tps6507x_ts_probe,
319 .remove = tps6507x_ts_remove,
321 module_platform_driver(tps6507x_ts_driver);
324 MODULE_DESCRIPTION("TPS6507x - TouchScreen driver");
325 MODULE_LICENSE("GPL v2");
326 MODULE_ALIAS("platform:tps6507x-ts");