Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / Documentation / devicetree / bindings / input / touchscreen / zforce_ts.txt
1 * Neonode infrared touchscreen controller
2
3 Required properties:
4 - compatible: must be "neonode,zforce"
5 - reg: I2C address of the chip
6 - interrupts: interrupt to which the chip is connected
7 - gpios: gpios the chip is connected to
8   first one is the interrupt gpio and second one the reset gpio
9 - x-size: horizontal resolution of touchscreen
10 - y-size: vertical resolution of touchscreen
11
12 Example:
13
14         i2c@00000000 {
15                 /* ... */
16
17                 zforce_ts@50 {
18                         compatible = "neonode,zforce";
19                         reg = <0x50>;
20                         interrupts = <2 0>;
21
22                         gpios = <&gpio5 6 0>, /* INT */
23                                 <&gpio5 9 0>; /* RST */
24
25                         x-size = <800>;
26                         y-size = <600>;
27                 };
28
29                 /* ... */
30         };