aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/input/touchscreen
diff options
context:
space:
mode:
authorHaibo Chen <haibo.chen@freescale.com>2015-09-05 14:31:21 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-09-05 14:49:33 -0400
commit9a436d524d3533cd15ed5a189d2237ff1e4e5343 (patch)
tree0f363fef34b13d0e8dc91dfec7f91714c8728e6d /Documentation/devicetree/bindings/input/touchscreen
parent48ead50c1dd8e5cdb7ead067558a834c1e895e6e (diff)
Input: touchscreen - add imx6ul_tsc driver support
Freescale i.MX6UL contains a internal touchscreen controller, this patch add a driver to support this controller. Signed-off-by: Haibo Chen <haibo.chen@freescale.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'Documentation/devicetree/bindings/input/touchscreen')
-rw-r--r--Documentation/devicetree/bindings/input/touchscreen/imx6ul_tsc.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/touchscreen/imx6ul_tsc.txt b/Documentation/devicetree/bindings/input/touchscreen/imx6ul_tsc.txt
new file mode 100644
index 000000000000..853dff96dd9f
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/touchscreen/imx6ul_tsc.txt
@@ -0,0 +1,36 @@
1* Freescale i.MX6UL Touch Controller
2
3Required properties:
4- compatible: must be "fsl,imx6ul-tsc".
5- reg: this touch controller address and the ADC2 address.
6- interrupts: the interrupt of this touch controller and ADC2.
7- clocks: the root clock of touch controller and ADC2.
8- clock-names; must be "tsc" and "adc".
9- xnur-gpio: the X- gpio this controller connect to.
10 This xnur-gpio returns to low once the finger leave the touch screen (The
11 last touch event the touch controller capture).
12
13Optional properties:
14- measure-delay-time: the value of measure delay time.
15 Before X-axis or Y-axis measurement, the screen need some time before
16 even potential distribution ready.
17 This value depends on the touch screen.
18- pre-charge-time: the touch screen need some time to precharge.
19 This value depends on the touch screen.
20
21Example:
22 tsc: tsc@02040000 {
23 compatible = "fsl,imx6ul-tsc";
24 reg = <0x02040000 0x4000>, <0x0219c000 0x4000>;
25 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>,
26 <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
27 clocks = <&clks IMX6UL_CLK_IPG>,
28 <&clks IMX6UL_CLK_ADC2>;
29 clock-names = "tsc", "adc";
30 pinctrl-names = "default";
31 pinctrl-0 = <&pinctrl_tsc>;
32 xnur-gpio = <&gpio1 3 GPIO_ACTIVE_LOW>;
33 measure-delay-time = <0xfff>;
34 pre-charge-time = <0xffff>;
35 status = "okay";
36 };