]> Git Repo - linux.git/commitdiff
dt-bindings: pwm: marvell,berlin-pwm: Convert from txt to yaml
authorUwe Kleine-König <[email protected]>
Tue, 29 Oct 2024 16:08:36 +0000 (17:08 +0100)
committerUwe Kleine-König <[email protected]>
Wed, 18 Dec 2024 10:12:05 +0000 (11:12 +0100)
Formalize the binding for marvell,berlin-pwm devices and make them
automatically checkable. No change to the binding intended.

Signed-off-by: Uwe Kleine-König <[email protected]>
Reviewed-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Uwe Kleine-König <[email protected]>
Documentation/devicetree/bindings/pwm/marvell,berlin-pwm.yaml [new file with mode: 0644]
Documentation/devicetree/bindings/pwm/pwm-berlin.txt [deleted file]

diff --git a/Documentation/devicetree/bindings/pwm/marvell,berlin-pwm.yaml b/Documentation/devicetree/bindings/pwm/marvell,berlin-pwm.yaml
new file mode 100644 (file)
index 0000000..091fec0
--- /dev/null
@@ -0,0 +1,44 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/pwm/marvell,berlin-pwm.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Berlin PWM controller
+
+maintainers:
+  - Jisheng Zhang <[email protected]>
+  - Sebastian Hesselbarth <[email protected]>
+
+properties:
+  compatible:
+    const: marvell,berlin-pwm
+
+  reg:
+    maxItems: 1
+
+  "#pwm-cells":
+    const: 3
+
+  clocks:
+    maxItems: 1
+
+required:
+  - compatible
+  - reg
+  - clocks
+
+allOf:
+  - $ref: pwm.yaml#
+
+unevaluatedProperties: false
+
+examples:
+  - |
+    pwm@f7f20000 {
+        compatible = "marvell,berlin-pwm";
+        reg = <0xf7f20000 0x40>;
+        clocks = <&chip_clk 12>;
+        #pwm-cells = <3>;
+    };
+
diff --git a/Documentation/devicetree/bindings/pwm/pwm-berlin.txt b/Documentation/devicetree/bindings/pwm/pwm-berlin.txt
deleted file mode 100644 (file)
index f01e993..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Berlin PWM controller
-
-Required properties:
-- compatible: should be "marvell,berlin-pwm"
-- reg: physical base address and length of the controller's registers
-- clocks: phandle to the input clock
-- #pwm-cells: should be 3. See pwm.yaml in this directory for a description of
-  the cells format.
-
-Example:
-
-pwm: pwm@f7f20000 {
-       compatible = "marvell,berlin-pwm";
-       reg = <0xf7f20000 0x40>;
-       clocks = <&chip_clk CLKID_CFG>;
-       #pwm-cells = <3>;
-}
This page took 0.07679 seconds and 4 git commands to generate.