summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAlejandro Lozano <alejandro.lozano@nxp.com>2016-09-06 16:41:13 -0500
committerJuan Gutierrez <juan.gutierrez@nxp.com>2016-11-01 11:07:57 -0500
commit9ff1920481cc655313313f780318aed136091576 (patch)
tree5f0bdd7b5082affa35d4d8614b661deb4fda8aa0 /Documentation
parent1f9c95f39ad84a417c9b9663c4857073006ded85 (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>;
+ };