Skip to content

Commit 64956ee

Browse files
samhsuismpopcornmix
authored andcommitted
Input: ili210x - add DT binding document
commit 41a852e upstream Add DT binding document for the Ilitek ILI210x and ILI251x touchscreen controllers. Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Rob Herring <[email protected]> Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent b07e5e6 commit 64956ee

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Ilitek ILI210x/ILI251x touchscreen controller
2+
3+
Required properties:
4+
- compatible:
5+
ilitek,ili210x for ILI210x
6+
ilitek,ili251x for ILI251x
7+
8+
- reg: The I2C address of the device
9+
10+
- interrupts: The sink for the touchscreen's IRQ output
11+
See ../interrupt-controller/interrupts.txt
12+
13+
Optional properties for main touchpad device:
14+
15+
- reset-gpios: GPIO specifier for the touchscreen's reset pin (active low)
16+
17+
Example:
18+
19+
touchscreen@41 {
20+
compatible = "ilitek,ili251x";
21+
reg = <0x41>;
22+
interrupt-parent = <&gpio4>;
23+
interrupts = <7 IRQ_TYPE_EDGE_FALLING>;
24+
reset-gpios = <&gpio5 21 GPIO_ACTIVE_LOW>;
25+
};
26+

0 commit comments

Comments
 (0)