2 * Copyright (C) 2015 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/input.h>
16 #include <linux/delay.h>
17 #include <linux/interrupt.h>
18 #include <linux/keyboard.h>
19 #include <linux/platform_device.h>
20 #include <linux/slab.h>
24 #include <linux/clk.h>
25 #include <linux/serio.h>
26 #include <linux/mfd/syscon.h>
27 #include <linux/regmap.h>
29 #define IPROC_TS_NAME "iproc-ts"
31 #define PEN_DOWN_STATUS 1
32 #define PEN_UP_STATUS 0
39 /* Value given by controller for invalid coordinate. */
40 #define INVALID_COORD 0xFFFFFFFF
42 /* Register offsets */
45 #define INTERRUPT_THRES 0x08
46 #define INTERRUPT_MASK 0x0c
48 #define INTERRUPT_STATUS 0x10
49 #define CONTROLLER_STATUS 0x14
50 #define FIFO_DATA 0x18
51 #define FIFO_DATA_X_Y_MASK 0xFFFF
52 #define ANALOG_CONTROL 0x1c
55 #define DEBOUNCE_CNTR_STAT 0x24
56 #define SCAN_CNTR_STAT 0x28
57 #define REM_CNTR_STAT 0x2c
59 #define SETTLING_TIMER_STAT 0x30
60 #define SPARE_REG 0x34
61 #define SOFT_BYPASS_CONTROL 0x38
62 #define SOFT_BYPASS_DATA 0x3c
65 /* Bit values for INTERRUPT_MASK and INTERRUPT_STATUS regs */
66 #define TS_PEN_INTR_MASK BIT(0)
67 #define TS_FIFO_INTR_MASK BIT(2)
69 /* Bit values for CONTROLLER_STATUS reg1 */
70 #define TS_PEN_DOWN BIT(0)
72 /* Shift values for control reg1 */
73 #define SCANNING_PERIOD_SHIFT 24
74 #define DEBOUNCE_TIMEOUT_SHIFT 16
75 #define SETTLING_TIMEOUT_SHIFT 8
76 #define TOUCH_TIMEOUT_SHIFT 0
78 /* Shift values for coordinates from fifo */
79 #define X_COORD_SHIFT 0
80 #define Y_COORD_SHIFT 16
82 /* Bit values for REGCTL2 */
83 #define TS_CONTROLLER_EN_BIT BIT(16)
84 #define TS_CONTROLLER_AVGDATA_SHIFT 8
85 #define TS_CONTROLLER_AVGDATA_MASK (0x7 << TS_CONTROLLER_AVGDATA_SHIFT)
86 #define TS_CONTROLLER_PWR_LDO BIT(5)
87 #define TS_CONTROLLER_PWR_ADC BIT(4)
88 #define TS_CONTROLLER_PWR_BGP BIT(3)
89 #define TS_CONTROLLER_PWR_TS BIT(2)
90 #define TS_WIRE_MODE_BIT BIT(1)
92 #define dbg_reg(dev, priv, reg) \
95 regmap_read(priv->regmap, reg, &val); \
96 dev_dbg(dev, "%20s= 0x%08x\n", #reg, val); \
100 /* Each step is 1024 us. Valid 1-256 */
103 /* Each step is 512 us. Valid 0-255 */
104 u32 debounce_timeout
;
107 * The settling duration (in ms) is the amount of time the tsc
108 * waits to allow the voltage to settle after turning on the
109 * drivers in detection mode. Valid values: 0-11
123 u32 settling_timeout
;
125 /* touch timeout in sample counts */
129 * Number of data samples which are averaged before a final data point
130 * is placed into the FIFO
137 /* Optional standard touchscreen properties. */
146 struct iproc_ts_priv
{
147 struct platform_device
*pdev
;
148 struct input_dev
*idev
;
150 struct regmap
*regmap
;
154 struct tsc_param cfg_params
;
158 * Set default values the same as hardware reset values
159 * except for fifo_threshold with is set to 1.
161 static const struct tsc_param iproc_default_config
= {
162 .scanning_period
= 0x5, /* 1 to 256 */
163 .debounce_timeout
= 0x28, /* 0 to 255 */
164 .settling_timeout
= 0x7, /* 0 to 11 */
165 .touch_timeout
= 0xa, /* 0 to 255 */
166 .average_data
= 5, /* entry 5 = 32 pts */
167 .fifo_threshold
= 1, /* 0 to 31 */
172 static void ts_reg_dump(struct iproc_ts_priv
*priv
)
174 struct device
*dev
= &priv
->pdev
->dev
;
176 dbg_reg(dev
, priv
, REGCTL1
);
177 dbg_reg(dev
, priv
, REGCTL2
);
178 dbg_reg(dev
, priv
, INTERRUPT_THRES
);
179 dbg_reg(dev
, priv
, INTERRUPT_MASK
);
180 dbg_reg(dev
, priv
, INTERRUPT_STATUS
);
181 dbg_reg(dev
, priv
, CONTROLLER_STATUS
);
182 dbg_reg(dev
, priv
, FIFO_DATA
);
183 dbg_reg(dev
, priv
, ANALOG_CONTROL
);
184 dbg_reg(dev
, priv
, AUX_DATA
);
185 dbg_reg(dev
, priv
, DEBOUNCE_CNTR_STAT
);
186 dbg_reg(dev
, priv
, SCAN_CNTR_STAT
);
187 dbg_reg(dev
, priv
, REM_CNTR_STAT
);
188 dbg_reg(dev
, priv
, SETTLING_TIMER_STAT
);
189 dbg_reg(dev
, priv
, SPARE_REG
);
190 dbg_reg(dev
, priv
, SOFT_BYPASS_CONTROL
);
191 dbg_reg(dev
, priv
, SOFT_BYPASS_DATA
);
194 static irqreturn_t
iproc_touchscreen_interrupt(int irq
, void *data
)
196 struct platform_device
*pdev
= data
;
197 struct iproc_ts_priv
*priv
= platform_get_drvdata(pdev
);
203 bool needs_sync
= false;
205 regmap_read(priv
->regmap
, INTERRUPT_STATUS
, &intr_status
);
206 intr_status
&= TS_PEN_INTR_MASK
| TS_FIFO_INTR_MASK
;
207 if (intr_status
== 0)
210 /* Clear all interrupt status bits, write-1-clear */
211 regmap_write(priv
->regmap
, INTERRUPT_STATUS
, intr_status
);
213 if (intr_status
& TS_PEN_INTR_MASK
) {
214 regmap_read(priv
->regmap
, CONTROLLER_STATUS
, &priv
->pen_status
);
215 if (priv
->pen_status
& TS_PEN_DOWN
)
216 priv
->pen_status
= PEN_DOWN_STATUS
;
218 priv
->pen_status
= PEN_UP_STATUS
;
220 input_report_key(priv
->idev
, BTN_TOUCH
, priv
->pen_status
);
223 dev_dbg(&priv
->pdev
->dev
,
224 "pen up-down (%d)\n", priv
->pen_status
);
227 /* coordinates in FIFO exceed the theshold */
228 if (intr_status
& TS_FIFO_INTR_MASK
) {
229 for (i
= 0; i
< priv
->cfg_params
.fifo_threshold
; i
++) {
230 regmap_read(priv
->regmap
, FIFO_DATA
, &raw_coordinate
);
231 if (raw_coordinate
== INVALID_COORD
)
235 * The x and y coordinate are 16 bits each
236 * with the x in the lower 16 bits and y in the
239 x
= (raw_coordinate
>> X_COORD_SHIFT
) &
241 y
= (raw_coordinate
>> Y_COORD_SHIFT
) &
244 /* We only want to retain the 12 msb of the 16 */
245 x
= (x
>> 4) & 0x0FFF;
246 y
= (y
>> 4) & 0x0FFF;
248 /* Adjust x y according to LCD tsc mount angle. */
249 if (priv
->cfg_params
.invert_x
)
250 x
= priv
->cfg_params
.max_x
- x
;
252 if (priv
->cfg_params
.invert_y
)
253 y
= priv
->cfg_params
.max_y
- y
;
255 input_report_abs(priv
->idev
, ABS_X
, x
);
256 input_report_abs(priv
->idev
, ABS_Y
, y
);
259 dev_dbg(&priv
->pdev
->dev
, "xy (0x%x 0x%x)\n", x
, y
);
264 input_sync(priv
->idev
);
269 static int iproc_ts_start(struct input_dev
*idev
)
274 struct iproc_ts_priv
*priv
= input_get_drvdata(idev
);
277 error
= clk_prepare_enable(priv
->tsc_clk
);
279 dev_err(&priv
->pdev
->dev
, "%s clk_prepare_enable failed %d\n",
285 * Interrupt is generated when:
286 * FIFO reaches the int_th value, and pen event(up/down)
288 val
= TS_PEN_INTR_MASK
| TS_FIFO_INTR_MASK
;
289 regmap_update_bits(priv
->regmap
, INTERRUPT_MASK
, val
, val
);
291 val
= priv
->cfg_params
.fifo_threshold
;
292 regmap_write(priv
->regmap
, INTERRUPT_THRES
, val
);
294 /* Initialize control reg1 */
296 val
|= priv
->cfg_params
.scanning_period
<< SCANNING_PERIOD_SHIFT
;
297 val
|= priv
->cfg_params
.debounce_timeout
<< DEBOUNCE_TIMEOUT_SHIFT
;
298 val
|= priv
->cfg_params
.settling_timeout
<< SETTLING_TIMEOUT_SHIFT
;
299 val
|= priv
->cfg_params
.touch_timeout
<< TOUCH_TIMEOUT_SHIFT
;
300 regmap_write(priv
->regmap
, REGCTL1
, val
);
302 /* Try to clear all interrupt status */
303 val
= TS_FIFO_INTR_MASK
| TS_PEN_INTR_MASK
;
304 regmap_update_bits(priv
->regmap
, INTERRUPT_STATUS
, val
, val
);
306 /* Initialize control reg2 */
307 val
= TS_CONTROLLER_EN_BIT
| TS_WIRE_MODE_BIT
;
308 val
|= priv
->cfg_params
.average_data
<< TS_CONTROLLER_AVGDATA_SHIFT
;
310 mask
= (TS_CONTROLLER_AVGDATA_MASK
);
311 mask
|= (TS_CONTROLLER_PWR_LDO
| /* PWR up LDO */
312 TS_CONTROLLER_PWR_ADC
| /* PWR up ADC */
313 TS_CONTROLLER_PWR_BGP
| /* PWR up BGP */
314 TS_CONTROLLER_PWR_TS
); /* PWR up TS */
316 regmap_update_bits(priv
->regmap
, REGCTL2
, mask
, val
);
323 static void iproc_ts_stop(struct input_dev
*dev
)
326 struct iproc_ts_priv
*priv
= input_get_drvdata(dev
);
329 * Disable FIFO int_th and pen event(up/down)Interrupts only
330 * as the interrupt mask register is shared between ADC, TS and
333 val
= TS_PEN_INTR_MASK
| TS_FIFO_INTR_MASK
;
334 regmap_update_bits(priv
->regmap
, INTERRUPT_MASK
, val
, 0);
336 /* Only power down touch screen controller */
337 val
= TS_CONTROLLER_PWR_TS
;
338 regmap_update_bits(priv
->regmap
, REGCTL2
, val
, val
);
340 clk_disable(priv
->tsc_clk
);
343 static int iproc_get_tsc_config(struct device
*dev
, struct iproc_ts_priv
*priv
)
345 struct device_node
*np
= dev
->of_node
;
348 priv
->cfg_params
= iproc_default_config
;
353 if (of_property_read_u32(np
, "scanning_period", &val
) >= 0) {
354 if (val
< 1 || val
> 256) {
355 dev_err(dev
, "scanning_period (%u) must be [1-256]\n",
359 priv
->cfg_params
.scanning_period
= val
;
362 if (of_property_read_u32(np
, "debounce_timeout", &val
) >= 0) {
364 dev_err(dev
, "debounce_timeout (%u) must be [0-255]\n",
368 priv
->cfg_params
.debounce_timeout
= val
;
371 if (of_property_read_u32(np
, "settling_timeout", &val
) >= 0) {
373 dev_err(dev
, "settling_timeout (%u) must be [0-11]\n",
377 priv
->cfg_params
.settling_timeout
= val
;
380 if (of_property_read_u32(np
, "touch_timeout", &val
) >= 0) {
382 dev_err(dev
, "touch_timeout (%u) must be [0-255]\n",
386 priv
->cfg_params
.touch_timeout
= val
;
389 if (of_property_read_u32(np
, "average_data", &val
) >= 0) {
391 dev_err(dev
, "average_data (%u) must be [0-8]\n", val
);
394 priv
->cfg_params
.average_data
= val
;
397 if (of_property_read_u32(np
, "fifo_threshold", &val
) >= 0) {
399 dev_err(dev
, "fifo_threshold (%u)) must be [0-31]\n",
403 priv
->cfg_params
.fifo_threshold
= val
;
406 /* Parse optional properties. */
407 of_property_read_u32(np
, "touchscreen-size-x", &priv
->cfg_params
.max_x
);
408 of_property_read_u32(np
, "touchscreen-size-y", &priv
->cfg_params
.max_y
);
410 of_property_read_u32(np
, "touchscreen-fuzz-x",
411 &priv
->cfg_params
.fuzz_x
);
412 of_property_read_u32(np
, "touchscreen-fuzz-y",
413 &priv
->cfg_params
.fuzz_y
);
415 priv
->cfg_params
.invert_x
=
416 of_property_read_bool(np
, "touchscreen-inverted-x");
417 priv
->cfg_params
.invert_y
=
418 of_property_read_bool(np
, "touchscreen-inverted-y");
423 static int iproc_ts_probe(struct platform_device
*pdev
)
425 struct iproc_ts_priv
*priv
;
426 struct input_dev
*idev
;
430 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
434 /* touchscreen controller memory mapped regs via syscon*/
435 priv
->regmap
= syscon_regmap_lookup_by_phandle(pdev
->dev
.of_node
,
437 if (IS_ERR(priv
->regmap
)) {
438 error
= PTR_ERR(priv
->regmap
);
439 dev_err(&pdev
->dev
, "unable to map I/O memory:%d\n", error
);
443 priv
->tsc_clk
= devm_clk_get(&pdev
->dev
, "tsc_clk");
444 if (IS_ERR(priv
->tsc_clk
)) {
445 error
= PTR_ERR(priv
->tsc_clk
);
447 "failed getting clock tsc_clk: %d\n", error
);
452 error
= iproc_get_tsc_config(&pdev
->dev
, priv
);
454 dev_err(&pdev
->dev
, "get_tsc_config failed: %d\n", error
);
458 idev
= devm_input_allocate_device(&pdev
->dev
);
460 dev_err(&pdev
->dev
, "failed to allocate input device\n");
465 priv
->pen_status
= PEN_UP_STATUS
;
467 /* Set input device info */
468 idev
->name
= IPROC_TS_NAME
;
469 idev
->dev
.parent
= &pdev
->dev
;
471 idev
->id
.bustype
= BUS_HOST
;
472 idev
->id
.vendor
= SERIO_UNKNOWN
;
473 idev
->id
.product
= 0;
474 idev
->id
.version
= 0;
476 idev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
477 __set_bit(BTN_TOUCH
, idev
->keybit
);
479 input_set_abs_params(idev
, ABS_X
, X_MIN
, priv
->cfg_params
.max_x
,
480 priv
->cfg_params
.fuzz_x
, 0);
481 input_set_abs_params(idev
, ABS_Y
, Y_MIN
, priv
->cfg_params
.max_y
,
482 priv
->cfg_params
.fuzz_y
, 0);
484 idev
->open
= iproc_ts_start
;
485 idev
->close
= iproc_ts_stop
;
487 input_set_drvdata(idev
, priv
);
488 platform_set_drvdata(pdev
, priv
);
491 irq
= platform_get_irq(pdev
, 0);
493 dev_err(&pdev
->dev
, "platform_get_irq failed: %d\n", irq
);
497 error
= devm_request_irq(&pdev
->dev
, irq
,
498 iproc_touchscreen_interrupt
,
499 IRQF_SHARED
, IPROC_TS_NAME
, pdev
);
503 error
= input_register_device(priv
->idev
);
506 "failed to register input device: %d\n", error
);
513 static const struct of_device_id iproc_ts_of_match
[] = {
514 {.compatible
= "brcm,iproc-touchscreen", },
517 MODULE_DEVICE_TABLE(of
, iproc_ts_of_match
);
519 static struct platform_driver iproc_ts_driver
= {
520 .probe
= iproc_ts_probe
,
522 .name
= IPROC_TS_NAME
,
523 .of_match_table
= of_match_ptr(iproc_ts_of_match
),
527 module_platform_driver(iproc_ts_driver
);
529 MODULE_DESCRIPTION("IPROC Touchscreen driver");
530 MODULE_AUTHOR("Broadcom");
531 MODULE_LICENSE("GPL v2");