dt-bindings: input: samsung,s6sy761: convert to DT schema
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sat, 11 Nov 2023 14:32:21 +0000 (15:32 +0100)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 15 Nov 2023 16:30:38 +0000 (16:30 +0000)
Convert Samsung  S6SY761 touchscreen controller bindings to DT schema.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://lore.kernel.org/r/20231111143221.55452-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.txt [deleted file]
Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.yaml [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.txt b/Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.txt
deleted file mode 100644 (file)
index 6805d10..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-* Samsung S6SY761 touchscreen controller
-
-Required properties:
-- compatible           : must be "samsung,s6sy761"
-- reg                  : I2C slave address, (e.g. 0x48)
-- interrupts           : interrupt specification
-- avdd-supply          : analogic power supply
-- vdd-supply           : power supply
-
-Optional properties:
-- touchscreen-size-x   : see touchscreen.txt. This property is embedded in the
-                         device. If defined it forces a different x resolution.
-- touchscreen-size-y   : see touchscreen.txt. This property is embedded in the
-                         device. If defined it forces a different y resolution.
-
-Example:
-
-i2c@00000000 {
-
-       /* ... */
-
-       touchscreen@48 {
-               compatible = "samsung,s6sy761";
-               reg = <0x48>;
-               interrupt-parent = <&gpa1>;
-               interrupts = <1 IRQ_TYPE_NONE>;
-               avdd-supply = <&ldo30_reg>;
-               vdd-supply = <&ldo31_reg>;
-               touchscreen-size-x = <4096>;
-               touchscreen-size-y = <4096>;
-       };
-};
diff --git a/Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.yaml b/Documentation/devicetree/bindings/input/touchscreen/samsung,s6sy761.yaml
new file mode 100644 (file)
index 0000000..1ffd17a
--- /dev/null
@@ -0,0 +1,54 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/input/touchscreen/samsung,s6sy761.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Samsung S6SY761 touchscreen controller
+
+maintainers:
+  - Andi Shyti <andi.shyti@kernel.org>
+
+allOf:
+  - $ref: touchscreen.yaml#
+
+properties:
+  compatible:
+    const: samsung,s6sy761
+
+  reg:
+    maxItems: 1
+
+  interrupts:
+    maxItems: 1
+
+  avdd-supply: true
+  vdd-supply: true
+
+unevaluatedProperties: false
+
+required:
+  - compatible
+  - reg
+  - interrupts
+  - avdd-supply
+  - vdd-supply
+
+examples:
+  - |
+    #include <dt-bindings/interrupt-controller/irq.h>
+    i2c {
+        #address-cells = <1>;
+        #size-cells = <0>;
+
+        touchscreen@48 {
+            compatible = "samsung,s6sy761";
+            reg = <0x48>;
+            interrupt-parent = <&gpa1>;
+            interrupts = <1 IRQ_TYPE_LEVEL_HIGH>;
+            avdd-supply = <&ldo30_reg>;
+            vdd-supply = <&ldo31_reg>;
+            touchscreen-size-x = <4096>;
+            touchscreen-size-y = <4096>;
+        };
+    };