]> www.infradead.org Git - users/hch/misc.git/commitdiff
dt-bindings: touchscreen: convert eeti bindings to json schema
authorDario Binacchi <dario.binacchi@amarulasolutions.com>
Thu, 25 Sep 2025 15:31:33 +0000 (17:31 +0200)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 25 Sep 2025 18:36:22 +0000 (11:36 -0700)
Convert EETI touchscreen controller device tree binding to json-schema.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20250925153144.4082786-1-dario.binacchi@amarulasolutions.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Documentation/devicetree/bindings/input/touchscreen/eeti,exc3000.yaml
Documentation/devicetree/bindings/input/touchscreen/eeti.txt [deleted file]

index d19b07d4cfd4a54281126f99efa86c2ef5a32b2a..930c70104b3f6de2facbfa336da5b8fafbb0ef56 100644 (file)
@@ -16,12 +16,14 @@ properties:
       - const: eeti,exc80h60
       - const: eeti,exc80h84
       - const: eeti,egalax_ts # Do NOT use for new binding
+      - const: eeti,exc3000-i2c
+        deprecated: true
       - items:
           - enum:
               - eeti,exc81w32
           - const: eeti,exc80h84
   reg:
-    enum: [0x4, 0x2a]
+    enum: [0x4, 0xa, 0x2a]
   interrupts:
     maxItems: 1
   reset-gpios:
@@ -30,6 +32,12 @@ properties:
     maxItems: 1
   vdd-supply:
     description: Power supply regulator for the chip
+  attn-gpios:
+    deprecated: true
+    maxItems: 1
+    description: Phandle to a GPIO to check whether interrupt is still
+                 latched. This is necessary for platforms that lack
+                 support for level-triggered IRQs.
   touchscreen-size-x: true
   touchscreen-size-y: true
   touchscreen-inverted-x: true
@@ -51,7 +59,9 @@ allOf:
         compatible:
           not:
             contains:
-              const: eeti,egalax_ts
+              enum:
+                - eeti,egalax_ts
+                - eeti,exc3000-i2c
     then:
       properties:
         reg:
@@ -59,6 +69,8 @@ allOf:
 
         wakeup-gpios: false
 
+        attn-gpios: false
+
       required:
         - touchscreen-size-x
         - touchscreen-size-y
diff --git a/Documentation/devicetree/bindings/input/touchscreen/eeti.txt b/Documentation/devicetree/bindings/input/touchscreen/eeti.txt
deleted file mode 100644 (file)
index 32b3712..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-Bindings for EETI touchscreen controller
-
-Required properties:
-- compatible:  should be "eeti,exc3000-i2c"
-- reg:         I2C address of the chip. Should be set to <0xa>
-- interrupts:  interrupt to which the chip is connected
-
-Optional properties:
-- attn-gpios:  A handle to a GPIO to check whether interrupt is still
-               latched. This is necessary for platforms that lack
-               support for level-triggered IRQs.
-
-The following optional properties described in touchscreen.txt are
-also supported:
-
-- touchscreen-inverted-x
-- touchscreen-inverted-y
-- touchscreen-swapped-x-y
-
-Example:
-
-i2c-master {
-       touchscreen@a {
-               compatible = "eeti,exc3000-i2c";
-               reg = <0xa>;
-               interrupt-parent = <&gpio>;
-               interrupts = <123 IRQ_TYPE_EDGE_RISING>;
-               attn-gpios = <&gpio 123 GPIO_ACTIVE_HIGH>;
-       };
-};