summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2013-05-28 12:01:07 +0200
committerJiri Kosina <jkosina@suse.cz>2013-05-28 12:01:07 +0200
commit6e9041c6ddd6cbdc61d87bcaca8ca7bb17c28377 (patch)
treec250644c5adce04947d664318996de16df3f02da /Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt
parentb96516220870d8571fc12da980668687c122976e (diff)
parente4aa937ec75df0eea0bee03bffa3303ad36c986b (diff)
Merge branch 'master' into for-next
Diffstat (limited to 'Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt')
-rw-r--r--Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt b/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt
new file mode 100644
index 000000000000..f40f21c642b9
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt
@@ -0,0 +1,30 @@
+* AUO in-cell touchscreen controller using Pixcir sensors
+
+Required properties:
+- compatible: must be "auo,auo_pixcir_ts"
+- reg: I2C address of the chip
+- interrupts: interrupt to which the chip is connected
+- gpios: gpios the chip is connected to
+ first one is the interrupt gpio and second one the reset gpio
+- x-size: horizontal resolution of touchscreen
+- y-size: vertical resolution of touchscreen
+
+Example:
+
+ i2c@00000000 {
+ /* ... */
+
+ auo_pixcir_ts@5c {
+ compatible = "auo,auo_pixcir_ts";
+ reg = <0x5c>;
+ interrupts = <2 0>;
+
+ gpios = <&gpf 2 0 2>, /* INT */
+ <&gpf 5 1 0>; /* RST */
+
+ x-size = <800>;
+ y-size = <600>;
+ };
+
+ /* ... */
+ };