1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * zylonite-wm97xx.c -- Zylonite Continuous Touch screen driver
5 * Copyright 2004, 2007, 2008 Wolfson Microelectronics PLC.
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 * Parts Copyright : Ian Molton <spyro@f2s.com>
8 * Andrew Zabolotny <zap@homelink.ru>
11 * This is a wm97xx extended touch driver supporting interrupt driven
12 * and continuous operation on Marvell Zylonite development systems
13 * (which have a WM9713 on board).
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/kernel.h>
19 #include <linux/delay.h>
20 #include <linux/gpio.h>
21 #include <linux/irq.h>
22 #include <linux/interrupt.h>
24 #include <linux/wm97xx.h>
26 #include <mach/hardware.h>
28 #include <mach/regs-ac97.h>
31 u16 id
; /* codec id */
32 u8 code
; /* continuous code */
33 u8 reads
; /* number of coord reads per read cycle */
34 u32 speed
; /* number of coords per second */
37 #define WM_READS(sp) ((sp / HZ) + 1)
39 static const struct continuous cinfo
[] = {
40 { WM9713_ID2
, 0, WM_READS(94), 94 },
41 { WM9713_ID2
, 1, WM_READS(120), 120 },
42 { WM9713_ID2
, 2, WM_READS(154), 154 },
43 { WM9713_ID2
, 3, WM_READS(188), 188 },
46 /* continuous speed index */
50 * Pen sampling frequency (Hz) in continuous mode.
52 static int cont_rate
= 200;
53 module_param(cont_rate
, int, 0);
54 MODULE_PARM_DESC(cont_rate
, "Sampling rate in continuous mode (Hz)");
59 * Set to 1 to read back pen down pressure
62 module_param(pressure
, int, 0);
63 MODULE_PARM_DESC(pressure
, "Pressure readback (1 = pressure, 0 = no pressure)");
66 * AC97 touch data slot.
68 * Touch screen readback data ac97 slot
70 static int ac97_touch_slot
= 5;
71 module_param(ac97_touch_slot
, int, 0);
72 MODULE_PARM_DESC(ac97_touch_slot
, "Touch screen data slot AC97 number");
75 /* flush AC97 slot 5 FIFO machines */
76 static void wm97xx_acc_pen_up(struct wm97xx
*wm
)
82 for (i
= 0; i
< 16; i
++)
86 static int wm97xx_acc_pen_down(struct wm97xx
*wm
)
88 u16 x
, y
, p
= 0x100 | WM97XX_ADCSEL_PRES
;
90 static u16 last
, tries
;
92 /* When the AC97 queue has been drained we need to allow time
93 * to buffer up samples otherwise we end up spinning polling
94 * for samples. The controller can't have a suitably low
95 * threshold set to use the notifications it gives.
117 dev_dbg(wm
->dev
, "Raw coordinates: x=%x, y=%x, p=%x\n",
120 /* are samples valid */
121 if ((x
& WM97XX_ADCSEL_MASK
) != WM97XX_ADCSEL_X
||
122 (y
& WM97XX_ADCSEL_MASK
) != WM97XX_ADCSEL_Y
||
123 (p
& WM97XX_ADCSEL_MASK
) != WM97XX_ADCSEL_PRES
)
126 /* coordinate is good */
128 input_report_abs(wm
->input_dev
, ABS_X
, x
& 0xfff);
129 input_report_abs(wm
->input_dev
, ABS_Y
, y
& 0xfff);
130 input_report_abs(wm
->input_dev
, ABS_PRESSURE
, p
& 0xfff);
131 input_report_key(wm
->input_dev
, BTN_TOUCH
, (p
!= 0));
132 input_sync(wm
->input_dev
);
134 } while (reads
< cinfo
[sp_idx
].reads
);
136 return RC_PENDOWN
| RC_AGAIN
;
139 static int wm97xx_acc_startup(struct wm97xx
*wm
)
143 /* check we have a codec */
144 if (wm
->ac97
== NULL
)
147 /* Go you big red fire engine */
148 for (idx
= 0; idx
< ARRAY_SIZE(cinfo
); idx
++) {
149 if (wm
->id
!= cinfo
[idx
].id
)
152 if (cont_rate
<= cinfo
[idx
].speed
)
155 wm
->acc_rate
= cinfo
[sp_idx
].code
;
156 wm
->acc_slot
= ac97_touch_slot
;
158 "zylonite accelerated touchscreen driver, %d samples/sec\n",
159 cinfo
[sp_idx
].speed
);
164 static void wm97xx_irq_enable(struct wm97xx
*wm
, int enable
)
167 enable_irq(wm
->pen_irq
);
169 disable_irq_nosync(wm
->pen_irq
);
172 static struct wm97xx_mach_ops zylonite_mach_ops
= {
174 .acc_pen_up
= wm97xx_acc_pen_up
,
175 .acc_pen_down
= wm97xx_acc_pen_down
,
176 .acc_startup
= wm97xx_acc_startup
,
177 .irq_enable
= wm97xx_irq_enable
,
178 .irq_gpio
= WM97XX_GPIO_2
,
181 static int zylonite_wm97xx_probe(struct platform_device
*pdev
)
183 struct wm97xx
*wm
= platform_get_drvdata(pdev
);
187 gpio_touch_irq
= mfp_to_gpio(MFP_PIN_GPIO15
);
189 gpio_touch_irq
= mfp_to_gpio(MFP_PIN_GPIO26
);
191 wm
->pen_irq
= gpio_to_irq(gpio_touch_irq
);
192 irq_set_irq_type(wm
->pen_irq
, IRQ_TYPE_EDGE_BOTH
);
194 wm97xx_config_gpio(wm
, WM97XX_GPIO_13
, WM97XX_GPIO_IN
,
195 WM97XX_GPIO_POL_HIGH
,
198 wm97xx_config_gpio(wm
, WM97XX_GPIO_2
, WM97XX_GPIO_OUT
,
199 WM97XX_GPIO_POL_HIGH
,
200 WM97XX_GPIO_NOTSTICKY
,
203 return wm97xx_register_mach_ops(wm
, &zylonite_mach_ops
);
206 static int zylonite_wm97xx_remove(struct platform_device
*pdev
)
208 struct wm97xx
*wm
= platform_get_drvdata(pdev
);
210 wm97xx_unregister_mach_ops(wm
);
215 static struct platform_driver zylonite_wm97xx_driver
= {
216 .probe
= zylonite_wm97xx_probe
,
217 .remove
= zylonite_wm97xx_remove
,
219 .name
= "wm97xx-touch",
222 module_platform_driver(zylonite_wm97xx_driver
);
224 /* Module information */
225 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
226 MODULE_DESCRIPTION("wm97xx continuous touch driver for Zylonite");
227 MODULE_LICENSE("GPL");