Merge tag 'for-linus-20171120' of git://git.infradead.org/linux-mtd
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / input / touchscreen / exc3000.txt
1 * EETI EXC3000 Multiple Touch Controller
2
3 Required properties:
4 - compatible: must be "eeti,exc3000"
5 - reg: i2c slave address
6 - interrupt-parent: the phandle for the interrupt controller
7 - interrupts: touch controller interrupt
8 - touchscreen-size-x: See touchscreen.txt
9 - touchscreen-size-y: See touchscreen.txt
10
11 Optional properties:
12 - touchscreen-inverted-x: See touchscreen.txt
13 - touchscreen-inverted-y: See touchscreen.txt
14 - touchscreen-swapped-x-y: See touchscreen.txt
15
16 Example:
17
18         touchscreen@2a {
19                 compatible = "eeti,exc3000";
20                 reg = <0x2a>;
21                 interrupt-parent = <&gpio1>;
22                 interrupts = <9 IRQ_TYPE_LEVEL_LOW>;
23                 touchscreen-size-x = <4096>;
24                 touchscreen-size-y = <4096>;
25                 touchscreen-inverted-x;
26                 touchscreen-swapped-x-y;
27         };