* [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema
@ 2025-05-21 0:46 Rob Herring (Arm)
2025-05-21 8:38 ` Stefan Wahren
2025-06-19 1:37 ` Stephen Boyd
0 siblings, 2 replies; 3+ messages in thread
From: Rob Herring (Arm) @ 2025-05-21 0:46 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Krzysztof Kozlowski,
Conor Dooley, Florian Fainelli,
Broadcom internal kernel review list, Ray Jui, Scott Branden,
Stefan Wahren
Cc: linux-clk, devicetree, linux-rpi-kernel, linux-arm-kernel,
linux-kernel
Convert the Broadcom BCM2835 CPRMAN clock binding to DT schema format.
It's a straight forward conversion.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
.../bindings/clock/brcm,bcm2835-cprman.txt | 60 -------------------
.../bindings/clock/brcm,bcm2835-cprman.yaml | 58 ++++++++++++++++++
2 files changed, 58 insertions(+), 60 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
create mode 100644 Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
diff --git a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
deleted file mode 100644
index 9e0b03a6519b..000000000000
--- a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-Broadcom BCM2835 CPRMAN clocks
-
-This binding uses the common clock binding:
- Documentation/devicetree/bindings/clock/clock-bindings.txt
-
-The CPRMAN clock controller generates clocks in the audio power domain
-of the BCM2835. There is a level of PLLs deriving from an external
-oscillator, a level of PLL dividers that produce channels off of the
-few PLLs, and a level of mostly-generic clock generators sourcing from
-the PLL channels. Most other hardware components source from the
-clock generators, but a few (like the ARM or HDMI) will source from
-the PLL dividers directly.
-
-Required properties:
-- compatible: should be one of the following,
- "brcm,bcm2711-cprman"
- "brcm,bcm2835-cprman"
-- #clock-cells: Should be <1>. The permitted clock-specifier values can be
- found in include/dt-bindings/clock/bcm2835.h
-- reg: Specifies base physical address and size of the registers
-- clocks: phandles to the parent clocks used as input to the module, in
- the following order:
-
- - External oscillator
- - DSI0 byte clock
- - DSI0 DDR2 clock
- - DSI0 DDR clock
- - DSI1 byte clock
- - DSI1 DDR2 clock
- - DSI1 DDR clock
-
- Only external oscillator is required. The DSI clocks may
- not be present, in which case their children will be
- unusable.
-
-Example:
-
- clk_osc: clock@3 {
- compatible = "fixed-clock";
- reg = <3>;
- #clock-cells = <0>;
- clock-output-names = "osc";
- clock-frequency = <19200000>;
- };
-
- clocks: cprman@7e101000 {
- compatible = "brcm,bcm2835-cprman";
- #clock-cells = <1>;
- reg = <0x7e101000 0x2000>;
- clocks = <&clk_osc>;
- };
-
- i2c0: i2c@7e205000 {
- compatible = "brcm,bcm2835-i2c";
- reg = <0x7e205000 0x1000>;
- interrupts = <2 21>;
- clocks = <&clocks BCM2835_CLOCK_VPU>;
- #address-cells = <1>;
- #size-cells = <0>;
- };
diff --git a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
new file mode 100644
index 000000000000..8586033794ba
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
@@ -0,0 +1,58 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/brcm,bcm2835-cprman.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Broadcom BCM2835 CPRMAN clocks
+
+maintainers:
+ - Stefan Wahren <wahrenst@gmx.net>
+
+description:
+ The CPRMAN clock controller generates clocks in the audio power domain of the
+ BCM2835. There is a level of PLLs deriving from an external oscillator, a
+ level of PLL dividers that produce channels off of the few PLLs, and a level
+ of mostly-generic clock generators sourcing from the PLL channels. Most other
+ hardware components source from the clock generators, but a few (like the ARM
+ or HDMI) will source from the PLL dividers directly.
+
+properties:
+ compatible:
+ enum:
+ - brcm,bcm2711-cprman
+ - brcm,bcm2835-cprman
+
+ reg:
+ maxItems: 1
+
+ '#clock-cells':
+ const: 1
+
+ clocks:
+ minItems: 1
+ items:
+ - description: External oscillator clock.
+ - description: DSI0 byte clock.
+ - description: DSI0 DDR2 clock.
+ - description: DSI0 DDR clock.
+ - description: DSI1 byte clock.
+ - description: DSI1 DDR2 clock.
+ - description: DSI1 DDR clock.
+
+additionalProperties: false
+
+required:
+ - compatible
+ - '#clock-cells'
+ - reg
+ - clocks
+
+examples:
+ - |
+ clock-controller@7e101000 {
+ compatible = "brcm,bcm2835-cprman";
+ reg = <0x7e101000 0x2000>;
+ #clock-cells = <1>;
+ clocks = <&clk_osc>;
+ };
--
2.47.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema
2025-05-21 0:46 [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema Rob Herring (Arm)
@ 2025-05-21 8:38 ` Stefan Wahren
2025-06-19 1:37 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Wahren @ 2025-05-21 8:38 UTC (permalink / raw)
To: Rob Herring (Arm), Michael Turquette, Stephen Boyd,
Krzysztof Kozlowski, Conor Dooley, Florian Fainelli,
Broadcom internal kernel review list, Ray Jui, Scott Branden
Cc: linux-clk, devicetree, linux-rpi-kernel, linux-arm-kernel,
linux-kernel
Hi Rob,
Am 21.05.25 um 02:46 schrieb Rob Herring (Arm):
> Convert the Broadcom BCM2835 CPRMAN clock binding to DT schema format.
> It's a straight forward conversion.
>
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
> .../bindings/clock/brcm,bcm2835-cprman.txt | 60 -------------------
> .../bindings/clock/brcm,bcm2835-cprman.yaml | 58 ++++++++++++++++++
> 2 files changed, 58 insertions(+), 60 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
> create mode 100644 Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
>
> diff --git a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
> deleted file mode 100644
> index 9e0b03a6519b..000000000000
> --- a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.txt
> +++ /dev/null
> @@ -1,60 +0,0 @@
> -Broadcom BCM2835 CPRMAN clocks
> -
> -This binding uses the common clock binding:
> - Documentation/devicetree/bindings/clock/clock-bindings.txt
> -
> -The CPRMAN clock controller generates clocks in the audio power domain
> -of the BCM2835. There is a level of PLLs deriving from an external
> -oscillator, a level of PLL dividers that produce channels off of the
> -few PLLs, and a level of mostly-generic clock generators sourcing from
> -the PLL channels. Most other hardware components source from the
> -clock generators, but a few (like the ARM or HDMI) will source from
> -the PLL dividers directly.
> -
> -Required properties:
> -- compatible: should be one of the following,
> - "brcm,bcm2711-cprman"
> - "brcm,bcm2835-cprman"
> -- #clock-cells: Should be <1>. The permitted clock-specifier values can be
> - found in include/dt-bindings/clock/bcm2835.h
> -- reg: Specifies base physical address and size of the registers
> -- clocks: phandles to the parent clocks used as input to the module, in
> - the following order:
> -
> - - External oscillator
> - - DSI0 byte clock
> - - DSI0 DDR2 clock
> - - DSI0 DDR clock
> - - DSI1 byte clock
> - - DSI1 DDR2 clock
> - - DSI1 DDR clock
> -
> - Only external oscillator is required. The DSI clocks may
> - not be present, in which case their children will be
> - unusable.
> -
> -Example:
> -
> - clk_osc: clock@3 {
> - compatible = "fixed-clock";
> - reg = <3>;
> - #clock-cells = <0>;
> - clock-output-names = "osc";
> - clock-frequency = <19200000>;
> - };
> -
> - clocks: cprman@7e101000 {
> - compatible = "brcm,bcm2835-cprman";
> - #clock-cells = <1>;
> - reg = <0x7e101000 0x2000>;
> - clocks = <&clk_osc>;
> - };
> -
> - i2c0: i2c@7e205000 {
> - compatible = "brcm,bcm2835-i2c";
> - reg = <0x7e205000 0x1000>;
> - interrupts = <2 21>;
> - clocks = <&clocks BCM2835_CLOCK_VPU>;
> - #address-cells = <1>;
> - #size-cells = <0>;
> - };
> diff --git a/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
> new file mode 100644
> index 000000000000..8586033794ba
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/brcm,bcm2835-cprman.yaml
> @@ -0,0 +1,58 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/brcm,bcm2835-cprman.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Broadcom BCM2835 CPRMAN clocks
> +
> +maintainers:
> + - Stefan Wahren <wahrenst@gmx.net>
Since I don't have access to the clock documentation, please add
- Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
except of this
Reviewed-by: Stefan Wahren <wahrenst@gmx.net>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema
2025-05-21 0:46 [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema Rob Herring (Arm)
2025-05-21 8:38 ` Stefan Wahren
@ 2025-06-19 1:37 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2025-06-19 1:37 UTC (permalink / raw)
To: Broadcom internal kernel review list, Conor Dooley,
Florian Fainelli, Krzysztof Kozlowski, Michael Turquette, Ray Jui,
Rob Herring, Scott Branden, Stefan Wahren
Cc: linux-clk, devicetree, linux-rpi-kernel, linux-arm-kernel,
linux-kernel
Quoting Rob Herring (Arm) (2025-05-20 17:46:24)
> Convert the Broadcom BCM2835 CPRMAN clock binding to DT schema format.
> It's a straight forward conversion.
>
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
Applied to clk-next
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-06-19 1:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-21 0:46 [PATCH] dt-bindings: clock: Convert brcm,bcm2835-cprman to DT schema Rob Herring (Arm)
2025-05-21 8:38 ` Stefan Wahren
2025-06-19 1:37 ` Stephen Boyd
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).