Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / Documentation / devicetree / bindings / input / touchscreen / sitronix-st1232.txt
1 * Sitronix st1232 touchscreen controller
2
3 Required properties:
4 - compatible: must be "sitronix,st1232"
5 - reg: I2C address of the chip
6 - interrupts: interrupt to which the chip is connected
7
8 Optional properties:
9 - gpios: a phandle to the reset GPIO
10
11 Example:
12
13         i2c@00000000 {
14                 /* ... */
15
16                 touchscreen@55 {
17                         compatible = "sitronix,st1232";
18                         reg = <0x55>;
19                         interrupts = <2 0>;
20                         gpios = <&gpio1 166 0>;
21                 };
22
23                 /* ... */
24         };