2 * Touchscreen driver for the tps6507x chip.
4 * Copyright (c) 2009 RidgeRun (todd.fischer@ridgerun.com)
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/platform_device.h>
21 #include <linux/mfd/tps6507x.h>
22 #include <linux/input/tps6507x-ts.h>
23 #include <linux/delay.h>
25 #define TSC_DEFAULT_POLL_PERIOD 30 /* ms */
26 #define TPS_DEFAULT_MIN_PRESSURE 0x30
27 #define MAX_10BIT ((1 << 10) - 1)
29 #define TPS6507X_ADCONFIG_CONVERT_TS (TPS6507X_ADCONFIG_AD_ENABLE | \
30 TPS6507X_ADCONFIG_START_CONVERSION | \
31 TPS6507X_ADCONFIG_INPUT_REAL_TSC)
32 #define TPS6507X_ADCONFIG_POWER_DOWN_TS (TPS6507X_ADCONFIG_INPUT_REAL_TSC)
42 struct input_dev
*input
;
43 struct tps6507x_dev
*mfd
;
50 static int tps6507x_read_u8(struct tps6507x_ts
*tsc
, u8 reg
, u8
*data
)
52 return tsc
->mfd
->read_dev(tsc
->mfd
, reg
, 1, data
);
55 static int tps6507x_write_u8(struct tps6507x_ts
*tsc
, u8 reg
, u8 data
)
57 return tsc
->mfd
->write_dev(tsc
->mfd
, reg
, 1, &data
);
60 static s32
tps6507x_adc_conversion(struct tps6507x_ts
*tsc
,
61 u8 tsc_mode
, u16
*value
)
67 /* Route input signal to A/D converter */
69 ret
= tps6507x_write_u8(tsc
, TPS6507X_REG_TSCMODE
, tsc_mode
);
71 dev_err(tsc
->dev
, "TSC mode read failed\n");
75 /* Start A/D conversion */
77 ret
= tps6507x_write_u8(tsc
, TPS6507X_REG_ADCONFIG
,
78 TPS6507X_ADCONFIG_CONVERT_TS
);
80 dev_err(tsc
->dev
, "ADC config write failed\n");
85 ret
= tps6507x_read_u8(tsc
, TPS6507X_REG_ADCONFIG
,
88 dev_err(tsc
->dev
, "ADC config read failed\n");
91 } while (adc_status
& TPS6507X_ADCONFIG_START_CONVERSION
);
93 ret
= tps6507x_read_u8(tsc
, TPS6507X_REG_ADRESULT_2
, &result
);
95 dev_err(tsc
->dev
, "ADC result 2 read failed\n");
99 *value
= (result
& TPS6507X_REG_ADRESULT_2_MASK
) << 8;
101 ret
= tps6507x_read_u8(tsc
, TPS6507X_REG_ADRESULT_1
, &result
);
103 dev_err(tsc
->dev
, "ADC result 1 read failed\n");
109 dev_dbg(tsc
->dev
, "TSC channel %d = 0x%X\n", tsc_mode
, *value
);
115 /* Need to call tps6507x_adc_standby() after using A/D converter for the
116 * touch screen interrupt to work properly.
119 static s32
tps6507x_adc_standby(struct tps6507x_ts
*tsc
)
124 ret
= tps6507x_write_u8(tsc
, TPS6507X_REG_ADCONFIG
,
125 TPS6507X_ADCONFIG_INPUT_TSC
);
129 ret
= tps6507x_write_u8(tsc
, TPS6507X_REG_TSCMODE
,
130 TPS6507X_TSCMODE_STANDBY
);
134 ret
= tps6507x_read_u8(tsc
, TPS6507X_REG_INT
, &val
);
138 while (val
& TPS6507X_REG_TSC_INT
) {
140 ret
= tps6507x_read_u8(tsc
, TPS6507X_REG_INT
, &val
);
148 static void tps6507x_ts_poll(struct input_dev
*input_dev
)
150 struct tps6507x_ts
*tsc
= input_get_drvdata(input_dev
);
154 ret
= tps6507x_adc_conversion(tsc
, TPS6507X_TSCMODE_PRESSURE
,
159 pendown
= tsc
->tc
.pressure
> tsc
->min_pressure
;
161 if (unlikely(!pendown
&& tsc
->pendown
)) {
162 dev_dbg(tsc
->dev
, "UP\n");
163 input_report_key(input_dev
, BTN_TOUCH
, 0);
164 input_report_abs(input_dev
, ABS_PRESSURE
, 0);
165 input_sync(input_dev
);
166 tsc
->pendown
= false;
172 dev_dbg(tsc
->dev
, "DOWN\n");
173 input_report_key(input_dev
, BTN_TOUCH
, 1);
175 dev_dbg(tsc
->dev
, "still down\n");
177 ret
= tps6507x_adc_conversion(tsc
, TPS6507X_TSCMODE_X_POSITION
,
182 ret
= tps6507x_adc_conversion(tsc
, TPS6507X_TSCMODE_Y_POSITION
,
187 input_report_abs(input_dev
, ABS_X
, tsc
->tc
.x
);
188 input_report_abs(input_dev
, ABS_Y
, tsc
->tc
.y
);
189 input_report_abs(input_dev
, ABS_PRESSURE
, tsc
->tc
.pressure
);
190 input_sync(input_dev
);
195 tps6507x_adc_standby(tsc
);
198 static int tps6507x_ts_probe(struct platform_device
*pdev
)
200 struct tps6507x_dev
*tps6507x_dev
= dev_get_drvdata(pdev
->dev
.parent
);
201 const struct tps6507x_board
*tps_board
;
202 const struct touchscreen_init_data
*init_data
;
203 struct tps6507x_ts
*tsc
;
204 struct input_dev
*input_dev
;
208 * tps_board points to pmic related constants
209 * coming from the board-evm file.
211 tps_board
= dev_get_platdata(tps6507x_dev
->dev
);
213 dev_err(tps6507x_dev
->dev
,
214 "Could not find tps6507x platform data\n");
219 * init_data points to array of regulator_init structures
220 * coming from the board-evm file.
222 init_data
= tps_board
->tps6507x_ts_init_data
;
224 tsc
= devm_kzalloc(&pdev
->dev
, sizeof(struct tps6507x_ts
), GFP_KERNEL
);
226 dev_err(tps6507x_dev
->dev
, "failed to allocate driver data\n");
230 tsc
->mfd
= tps6507x_dev
;
231 tsc
->dev
= tps6507x_dev
->dev
;
232 tsc
->min_pressure
= init_data
?
233 init_data
->min_pressure
: TPS_DEFAULT_MIN_PRESSURE
;
235 snprintf(tsc
->phys
, sizeof(tsc
->phys
),
236 "%s/input0", dev_name(tsc
->dev
));
238 input_dev
= devm_input_allocate_device(&pdev
->dev
);
240 dev_err(tsc
->dev
, "Failed to allocate polled input device.\n");
244 tsc
->input
= input_dev
;
245 input_set_drvdata(input_dev
, tsc
);
247 input_set_capability(input_dev
, EV_KEY
, BTN_TOUCH
);
248 input_set_abs_params(input_dev
, ABS_X
, 0, MAX_10BIT
, 0, 0);
249 input_set_abs_params(input_dev
, ABS_Y
, 0, MAX_10BIT
, 0, 0);
250 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, MAX_10BIT
, 0, 0);
252 input_dev
->name
= "TPS6507x Touchscreen";
253 input_dev
->phys
= tsc
->phys
;
254 input_dev
->dev
.parent
= tsc
->dev
;
255 input_dev
->id
.bustype
= BUS_I2C
;
257 input_dev
->id
.vendor
= init_data
->vendor
;
258 input_dev
->id
.product
= init_data
->product
;
259 input_dev
->id
.version
= init_data
->version
;
262 error
= tps6507x_adc_standby(tsc
);
266 error
= input_setup_polling(input_dev
, tps6507x_ts_poll
);
270 input_set_poll_interval(input_dev
,
271 init_data
? init_data
->poll_period
:
272 TSC_DEFAULT_POLL_PERIOD
);
274 error
= input_register_device(input_dev
);
281 static struct platform_driver tps6507x_ts_driver
= {
283 .name
= "tps6507x-ts",
285 .probe
= tps6507x_ts_probe
,
287 module_platform_driver(tps6507x_ts_driver
);
289 MODULE_AUTHOR("Todd Fischer <todd.fischer@ridgerun.com>");
290 MODULE_DESCRIPTION("TPS6507x - TouchScreen driver");
291 MODULE_LICENSE("GPL v2");
292 MODULE_ALIAS("platform:tps6507x-ts");