summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAlejandro Lozano <alejandro.lozano@nxp.com>2016-09-06 16:41:13 -0500
committerAnson Huang <Anson.Huang@nxp.com>2017-06-08 19:26:05 +0800
commitb331294828a4b24b19e6379060afc8ee48cc4b77 (patch)
tree21fa6a4f7c802e4df2821f25febd07ce773314d7 /Documentation
parentd42d9f3d4d78ea720cc09d92b2f33b7653464b92 (diff)
MLK-13244 input: touchscreen: add support for vtl touchscreen
Add the support for a CT36X based touchscreens using the CT36X controller and i2c touchscreen interface. Signed-off-by: Alejandro Lozano <alejandro.lozano@nxp.com> Signed-off-by: Juan Gutierrez <juan.gutierrez@nxp.com> Signed-off-by: Alejandro Sierra <alejandro.sierra@nxp.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt b/Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt
new file mode 100644
index 000000000000..a41a0b993006
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt
@@ -0,0 +1,18 @@
+* VTL Touchscreen Controller
+
+Required properties:
+- compatible: must be "vtl,ct365"
+- reg: i2c slave address
+- interrupt-parent: the phandle for the interrupt controller
+- interrupts: touch controller interrupt
+- gpios: the gpio pin to be used for reset
+
+Example:
+
+ touchscreen@01 {
+ compatible = "vtl,ct365";
+ reg = <0x01>;
+ interrupt-parent = <&gpio6>;
+ interrupts = <14 0>;
+ gpios = <&gpio4 10 0>;
+ };