summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt
diff options
context:
space:
mode:
authorAlejandro Lozano <alejandro.lozano@nxp.com>2016-09-06 16:41:13 -0500
committerLeonard Crestez <leonard.crestez@nxp.com>2018-08-24 12:41:33 +0300
commit3ec578794188a36426b2b7980646b4a45dfc0a80 (patch)
tree81416d1131ef6f3f0b451a9761ef8ce4b0c5475c /Documentation/devicetree/bindings/input/touchscreen/vtl_ts.txt
parent980dcbcd3b2b4cb76c3296794c580bd574c6e495 (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/devicetree/bindings/input/touchscreen/vtl_ts.txt')
-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>;
+ };