new file mode 100644
@@ -0,0 +1,19 @@
+* Ilitek ili2139 touchscreen controller
+
+Required properties:
+- compatible : "ilitek,ili2139"
+- reg : I2C slave address of the chip (0x41)
+- interrupt-parent : a phandle pointing to the interrupt controller
+ serving the interrupt for this chip
+- interrupts : interrupt specification for the ili2139 interrupt
+
+Example:
+
+i2c@00000000 {
+ ili2139: touchscreen@41 {
+ compatible = "ilitek,ili2139"
+ reg = <0x41>;
+ interrupt-parent = <&pio>;
+ interrupts = <0 3 IRQ_TYPE_LEVEL_HIGH>;
+ };
+};
Ilitek ili2139 is a touchscreen IC used in several tablet products, for example, Colorfly E708 Q1. Signed-off-by: Icenowy Zheng <icenowy@aosc.xyz> --- .../bindings/input/touchscreen/ilitek_ili2139.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/touchscreen/ilitek_ili2139.txt