devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema
@ 2022-10-11 16:29 Rob Herring
  2022-10-11 16:36 ` Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Rob Herring @ 2022-10-11 16:29 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd, Krzysztof Kozlowski,
	Philipp Zabel
  Cc: linux-clk, devicetree, linux-kernel

Convert the pwm-clock binding to DT schema format. A straight-forward
conversion.

Signed-off-by: Rob Herring <robh@kernel.org>
---
 .../devicetree/bindings/clock/pwm-clock.txt   | 26 -----------
 .../devicetree/bindings/clock/pwm-clock.yaml  | 45 +++++++++++++++++++
 2 files changed, 45 insertions(+), 26 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/clock/pwm-clock.txt
 create mode 100644 Documentation/devicetree/bindings/clock/pwm-clock.yaml

diff --git a/Documentation/devicetree/bindings/clock/pwm-clock.txt b/Documentation/devicetree/bindings/clock/pwm-clock.txt
deleted file mode 100644
index 83db876b3b90..000000000000
--- a/Documentation/devicetree/bindings/clock/pwm-clock.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-Binding for an external clock signal driven by a PWM pin.
-
-This binding uses the common clock binding[1] and the common PWM binding[2].
-
-[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
-[2] Documentation/devicetree/bindings/pwm/pwm.txt
-
-Required properties:
-- compatible : shall be "pwm-clock".
-- #clock-cells : from common clock binding; shall be set to 0.
-- pwms : from common PWM binding; this determines the clock frequency
-  via the period given in the PWM specifier.
-
-Optional properties:
-- clock-output-names : From common clock binding.
-- clock-frequency : Exact output frequency, in case the PWM period
-  is not exact but was rounded to nanoseconds.
-
-Example:
-	clock {
-		compatible = "pwm-clock";
-		#clock-cells = <0>;
-		clock-frequency = <25000000>;
-		clock-output-names = "mipi_mclk";
-		pwms = <&pwm2 0 40>; /* 1 / 40 ns = 25 MHz */
-	};
diff --git a/Documentation/devicetree/bindings/clock/pwm-clock.yaml b/Documentation/devicetree/bindings/clock/pwm-clock.yaml
new file mode 100644
index 000000000000..f88ecb2995e0
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/pwm-clock.yaml
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: GPL-2.0
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/pwm-clock.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: An external clock signal driven by a PWM pin.
+
+maintainers:
+  - Philipp Zabel <p.zabel@pengutronix.de>
+
+properties:
+  compatible:
+    const: pwm-clock
+
+  '#clock-cells':
+    const: 0
+
+  clock-frequency:
+    description: Exact output frequency, in case the PWM period is not exact
+      but was rounded to nanoseconds.
+
+  clock-output-names:
+    maxItems: 1
+
+  pwms:
+    maxItems: 1
+
+required:
+  - compatible
+  - '#clock-cells'
+  - pwms
+
+additionalProperties: false
+
+examples:
+  - |
+    clock {
+        compatible = "pwm-clock";
+        #clock-cells = <0>;
+        clock-frequency = <25000000>;
+        clock-output-names = "mipi_mclk";
+        pwms = <&pwm2 0 40>; /* 1 / 40 ns = 25 MHz */
+    };
+...
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema
  2022-10-11 16:29 [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema Rob Herring
@ 2022-10-11 16:36 ` Krzysztof Kozlowski
  2022-10-11 17:37 ` Stephen Boyd
  2022-10-14 21:43 ` Rob Herring
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-11 16:36 UTC (permalink / raw)
  To: Rob Herring, Michael Turquette, Stephen Boyd, Krzysztof Kozlowski,
	Philipp Zabel
  Cc: linux-clk, devicetree, linux-kernel

On 11/10/2022 12:29, Rob Herring wrote:
> Convert the pwm-clock binding to DT schema format. A straight-forward
> conversion.
> 
> Signed-off-by: Rob Herring <robh@kernel.org>


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema
  2022-10-11 16:29 [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema Rob Herring
  2022-10-11 16:36 ` Krzysztof Kozlowski
@ 2022-10-11 17:37 ` Stephen Boyd
  2022-10-14 21:43 ` Rob Herring
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2022-10-11 17:37 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Michael Turquette, Philipp Zabel,
	Rob Herring
  Cc: linux-clk, devicetree, linux-kernel

Quoting Rob Herring (2022-10-11 09:29:18)
> Convert the pwm-clock binding to DT schema format. A straight-forward
> conversion.
> 
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---

Reviewed-by: Stephen Boyd <sboyd@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema
  2022-10-11 16:29 [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema Rob Herring
  2022-10-11 16:36 ` Krzysztof Kozlowski
  2022-10-11 17:37 ` Stephen Boyd
@ 2022-10-14 21:43 ` Rob Herring
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2022-10-14 21:43 UTC (permalink / raw)
  To: Rob Herring
  Cc: linux-kernel, Philipp Zabel, devicetree, Stephen Boyd,
	Krzysztof Kozlowski, linux-clk, Michael Turquette

On Tue, 11 Oct 2022 11:29:18 -0500, Rob Herring wrote:
> Convert the pwm-clock binding to DT schema format. A straight-forward
> conversion.
> 
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
>  .../devicetree/bindings/clock/pwm-clock.txt   | 26 -----------
>  .../devicetree/bindings/clock/pwm-clock.yaml  | 45 +++++++++++++++++++
>  2 files changed, 45 insertions(+), 26 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/clock/pwm-clock.txt
>  create mode 100644 Documentation/devicetree/bindings/clock/pwm-clock.yaml
> 

Applied, thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-14 21:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-11 16:29 [PATCH] dt-bindings: clock: Convert pwm-clock to DT schema Rob Herring
2022-10-11 16:36 ` Krzysztof Kozlowski
2022-10-11 17:37 ` Stephen Boyd
2022-10-14 21:43 ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).