fixup! dt-bindings: pwm: Add DT bindings ep93xx PWM
authorNikita Shubin <nikita.shubin@maquefel.me>
Tue, 2 May 2023 08:16:37 +0000 (11:16 +0300)
committerNikita Shubin <nikita.shubin@maquefel.me>
Tue, 2 May 2023 08:16:37 +0000 (11:16 +0300)
Documentation/devicetree/bindings/pwm/cirrus,ep9301-pwm.yaml [new file with mode: 0644]
Documentation/devicetree/bindings/pwm/cirrus,ep93xx-pwm.yaml [deleted file]

diff --git a/Documentation/devicetree/bindings/pwm/cirrus,ep9301-pwm.yaml b/Documentation/devicetree/bindings/pwm/cirrus,ep9301-pwm.yaml
new file mode 100644 (file)
index 0000000..788d1ba
--- /dev/null
@@ -0,0 +1,48 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/pwm/cirrus,ep9301-pwm.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Cirrus Logick ep93xx PWM controller
+
+maintainers:
+  - Alexander Sverdlin <alexander.sverdlin@gmail.com>
+  - Nikita Shubin <nikita.shubin@maquefel.me>
+
+properties:
+  compatible:
+    oneOf:
+      - const: cirrus,ep9301-pwm
+      - items:
+          - enum:
+            - cirrus,ep9302-pwm
+            - cirrus,ep9307-pwm
+            - cirrus,ep9312-pwm
+            - cirrus,ep9315-pwm
+          - const: cirrus,ep9301-pwm
+
+  reg:
+    maxItems: 1
+
+  clocks:
+    items:
+      - description: SoC PWM clock
+
+required:
+  - compatible
+  - reg
+  - clocks
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/clock/cirrus,ep93xx-clock.h>
+    pwm@80910000 {
+      compatible = "cirrus,ep9301-pwm";
+      reg = <0x80910000 0x10>;
+      clocks = <&syscon EP93XX_CLK_PWM>;
+    };
+
+...
diff --git a/Documentation/devicetree/bindings/pwm/cirrus,ep93xx-pwm.yaml b/Documentation/devicetree/bindings/pwm/cirrus,ep93xx-pwm.yaml
deleted file mode 100644 (file)
index 8f67eb1..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
-%YAML 1.2
----
-$id: http://devicetree.org/schemas/pwm/cirrus,ep93xx-pwm.yaml#
-$schema: http://devicetree.org/meta-schemas/core.yaml#
-
-title: Cirrus Logick ep93xx PWM controller
-
-maintainers:
-  - Thierry Reding <thierry.reding@gmail.com>
-
-properties:
-  compatible:
-    enum:
-      - cirrus,ep9301-pwm
-  reg:
-    maxItems: 1
-
-  clocks:
-    items:
-      - description: SoC PWM clock
-
-  clock-names:
-    items:
-      - const: pwm_clk
-
-required:
-  - compatible
-  - reg
-  - clocks
-  - clock-names
-
-additionalProperties: false
-
-examples:
-  - |
-    #include <dt-bindings/clock/cirrus,ep93xx-clock.h>
-    pwm0: pwm@80910000 {
-        compatible = "cirrus,ep9301-pwm";
-        reg = <0x80910000 0x10>;
-        clocks = <&syscon EP93XX_CLK_PWM>;
-        clock-names = "pwm_clk";
-    };
-
-...