* [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
@ 2024-09-11 15:09 Neil Armstrong
2024-09-15 19:25 ` Martin Blumenstingl
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Neil Armstrong @ 2024-09-11 15:09 UTC (permalink / raw)
To: Jerome Brunet, Michael Turquette, Stephen Boyd, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Martin Blumenstingl
Cc: linux-amlogic, linux-clk, devicetree, linux-arm-kernel,
linux-kernel, Neil Armstrong
Convert the Amlogic Meson8, Meson8b and Meson8m2 Clock and
Reset Controller to dt-schema.
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
.../bindings/clock/amlogic,meson8-clkc.yaml | 45 +++++++++++++++++++
.../bindings/clock/amlogic,meson8b-clkc.txt | 51 ----------------------
2 files changed, 45 insertions(+), 51 deletions(-)
diff --git a/Documentation/devicetree/bindings/clock/amlogic,meson8-clkc.yaml b/Documentation/devicetree/bindings/clock/amlogic,meson8-clkc.yaml
new file mode 100644
index 000000000000..ab73d4654171
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/amlogic,meson8-clkc.yaml
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/amlogic,meson8-clkc.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Amlogic Meson8, Meson8b and Meson8m2 Clock and Reset Controller
+
+maintainers:
+ - Neil Armstrong <neil.armstrong@linaro.org>
+
+properties:
+ compatible:
+ oneOf:
+ - enum:
+ - amlogic,meson8-clkc
+ - amlogic,meson8b-clkc
+ - items:
+ - const: amlogic,meson8m2-clkc
+ - const: amlogic,meson8-clkc
+
+ clocks:
+ minItems: 2
+ maxItems: 3
+
+ clock-names:
+ minItems: 2
+ items:
+ - const: xtal
+ - const: ddr_pll
+ - const: clk_32k
+
+ '#clock-cells':
+ const: 1
+
+ '#reset-cells':
+ const: 1
+
+required:
+ - compatible
+ - clocks
+ - clock-names
+ - '#reset-cells'
+
+additionalProperties: false
diff --git a/Documentation/devicetree/bindings/clock/amlogic,meson8b-clkc.txt b/Documentation/devicetree/bindings/clock/amlogic,meson8b-clkc.txt
deleted file mode 100644
index cc51e4746b3b..000000000000
--- a/Documentation/devicetree/bindings/clock/amlogic,meson8b-clkc.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-* Amlogic Meson8, Meson8b and Meson8m2 Clock and Reset Unit
-
-The Amlogic Meson8 / Meson8b / Meson8m2 clock controller generates and
-supplies clock to various controllers within the SoC.
-
-Required Properties:
-
-- compatible: must be one of:
- - "amlogic,meson8-clkc" for Meson8 (S802) SoCs
- - "amlogic,meson8b-clkc" for Meson8 (S805) SoCs
- - "amlogic,meson8m2-clkc" for Meson8m2 (S812) SoCs
-- #clock-cells: should be 1.
-- #reset-cells: should be 1.
-- clocks: list of clock phandles, one for each entry in clock-names
-- clock-names: should contain the following:
- * "xtal": the 24MHz system oscillator
- * "ddr_pll": the DDR PLL clock
- * "clk_32k": (if present) the 32kHz clock signal from GPIOAO_6 (CLK_32K_IN)
-
-Parent node should have the following properties :
-- compatible: "amlogic,meson-hhi-sysctrl", "simple-mfd", "syscon"
-- reg: base address and size of the HHI system control register space.
-
-Each clock is assigned an identifier and client nodes can use this identifier
-to specify the clock which they consume. All available clocks are defined as
-preprocessor macros in the dt-bindings/clock/meson8b-clkc.h header and can be
-used in device tree sources.
-
-Similarly a preprocessor macro for each reset line is defined in
-dt-bindings/reset/amlogic,meson8b-clkc-reset.h (which can be used from the
-device tree sources).
-
-
-Example: Clock controller node:
-
- clkc: clock-controller {
- compatible = "amlogic,meson8b-clkc";
- #clock-cells = <1>;
- #reset-cells = <1>;
- };
-
-
-Example: UART controller node that consumes the clock generated by the clock
- controller:
-
- uart_AO: serial@c81004c0 {
- compatible = "amlogic,meson-uart";
- reg = <0xc81004c0 0x14>;
- interrupts = <0 90 1>;
- clocks = <&clkc CLKID_CLK81>;
- };
---
base-commit: 47ac09b91befbb6a235ab620c32af719f8208399
change-id: 20240911-topic-amlogic-arm32-upstream-bindings-fixes-convert-meson8-clkc-7dec15a0a5f0
Best regards,
--
Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
2024-09-11 15:09 [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema Neil Armstrong
@ 2024-09-15 19:25 ` Martin Blumenstingl
2024-09-16 7:20 ` Neil Armstrong
2024-09-16 17:23 ` Rob Herring (Arm)
2024-09-30 9:31 ` Jerome Brunet
2 siblings, 1 reply; 5+ messages in thread
From: Martin Blumenstingl @ 2024-09-15 19:25 UTC (permalink / raw)
To: Neil Armstrong
Cc: Jerome Brunet, Michael Turquette, Stephen Boyd, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Kevin Hilman, linux-amlogic,
linux-clk, devicetree, linux-arm-kernel, linux-kernel
Hi Neil,
On Wed, Sep 11, 2024 at 5:09 PM Neil Armstrong
<neil.armstrong@linaro.org> wrote:
>
> Convert the Amlogic Meson8, Meson8b and Meson8m2 Clock and
> Reset Controller to dt-schema.
>
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Thank you for working on this! First of all this patch is:
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Do you want me to send a patch to document the
"amlogic,meson-hhi-sysctrl" compatible string next?
We either have to update
Documentation/devicetree/bindings/soc/amlogic/amlogic,meson-gx-hhi-sysctrl.yaml
or create a similar binding file for the older SoCs.
Also I think when documenting that compatible string we'll have to add
per-SoC compatibles as I think this generic one is not enough.
Best regards,
Martin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
2024-09-15 19:25 ` Martin Blumenstingl
@ 2024-09-16 7:20 ` Neil Armstrong
0 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2024-09-16 7:20 UTC (permalink / raw)
To: Martin Blumenstingl
Cc: Jerome Brunet, Michael Turquette, Stephen Boyd, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Kevin Hilman, linux-amlogic,
linux-clk, devicetree, linux-arm-kernel, linux-kernel
Hi,
On 15/09/2024 21:25, Martin Blumenstingl wrote:
> Hi Neil,
>
> On Wed, Sep 11, 2024 at 5:09 PM Neil Armstrong
> <neil.armstrong@linaro.org> wrote:
>>
>> Convert the Amlogic Meson8, Meson8b and Meson8m2 Clock and
>> Reset Controller to dt-schema.
>>
>> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
> Thank you for working on this! First of all this patch is:
> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
>
> Do you want me to send a patch to document the
> "amlogic,meson-hhi-sysctrl" compatible string next?
> We either have to update
> Documentation/devicetree/bindings/soc/amlogic/amlogic,meson-gx-hhi-sysctrl.yaml
> or create a similar binding file for the older SoCs.
> Also I think when documenting that compatible string we'll have to add
> per-SoC compatibles as I think this generic one is not enough.
I have it ready already, waiting for this one to go upstream first!
https://git.codelinaro.org/neil.armstrong/linux/-/commit/1be8f8c67e5b83fa4069ccbcfa80d0614f668a65
Neil
>
> Best regards,
> Martin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
2024-09-11 15:09 [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema Neil Armstrong
2024-09-15 19:25 ` Martin Blumenstingl
@ 2024-09-16 17:23 ` Rob Herring (Arm)
2024-09-30 9:31 ` Jerome Brunet
2 siblings, 0 replies; 5+ messages in thread
From: Rob Herring (Arm) @ 2024-09-16 17:23 UTC (permalink / raw)
To: Neil Armstrong
Cc: Jerome Brunet, Stephen Boyd, linux-arm-kernel, linux-clk,
Kevin Hilman, Krzysztof Kozlowski, Conor Dooley, linux-amlogic,
devicetree, linux-kernel, Martin Blumenstingl, Michael Turquette
On Wed, 11 Sep 2024 17:09:06 +0200, Neil Armstrong wrote:
> Convert the Amlogic Meson8, Meson8b and Meson8m2 Clock and
> Reset Controller to dt-schema.
>
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
> ---
> .../bindings/clock/amlogic,meson8-clkc.yaml | 45 +++++++++++++++++++
> .../bindings/clock/amlogic,meson8b-clkc.txt | 51 ----------------------
> 2 files changed, 45 insertions(+), 51 deletions(-)
>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
2024-09-11 15:09 [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema Neil Armstrong
2024-09-15 19:25 ` Martin Blumenstingl
2024-09-16 17:23 ` Rob Herring (Arm)
@ 2024-09-30 9:31 ` Jerome Brunet
2 siblings, 0 replies; 5+ messages in thread
From: Jerome Brunet @ 2024-09-30 9:31 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kevin Hilman, Martin Blumenstingl, Neil Armstrong
Cc: linux-amlogic, linux-clk, devicetree, linux-arm-kernel,
linux-kernel
Applied to clk-meson (clk-meson-next), thanks!
[1/1] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema
https://github.com/BayLibre/clk-meson/commit/6bac1ffa9ca4
Best regards,
--
Jerome
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-30 9:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-11 15:09 [PATCH] dt-bindings: clock: convert amlogic,meson8b-clkc.txt to dtschema Neil Armstrong
2024-09-15 19:25 ` Martin Blumenstingl
2024-09-16 7:20 ` Neil Armstrong
2024-09-16 17:23 ` Rob Herring (Arm)
2024-09-30 9:31 ` Jerome Brunet
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).