From: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>
To: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Rob Herring <robh+dt@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
devicetree@vger.kernel.org, linux-clk@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH] dt-bindings: clock: renesas: div6: Convert to json-schema
Date: Tue, 12 May 2020 17:16:31 +0200 [thread overview]
Message-ID: <20200512151631.GA2542285@oden.dyn.berto.se> (raw)
In-Reply-To: <20200507075026.31941-1-geert+renesas@glider.be>
Hi Geert,
Thanks for your work.
On 2020-05-07 09:50:26 +0200, Geert Uytterhoeven wrote:
> Convert the Renesas CPG DIV6 Clock Device Tree binding documentation to
> json-schema.
>
> Drop R-Car Gen2 compatible values, which were obsoleted by the unified
> "Renesas Clock Pulse Generator / Module Standby and Software Reset" DT
> bindings.
> Update the example to match reality.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> ---
> To be queued in clk-renesas-for-v5.8.
>
> .../clock/renesas,cpg-div6-clock.yaml | 60 +++++++++++++++++++
> .../clock/renesas,cpg-div6-clocks.txt | 40 -------------
> 2 files changed, 60 insertions(+), 40 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/renesas,cpg-div6-clock.yaml
> delete mode 100644 Documentation/devicetree/bindings/clock/renesas,cpg-div6-clocks.txt
>
> diff --git a/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clock.yaml b/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clock.yaml
> new file mode 100644
> index 0000000000000000..c55a7c494e013da5
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clock.yaml
> @@ -0,0 +1,60 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/renesas,cpg-div6-clock.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Renesas CPG DIV6 Clock
> +
> +maintainers:
> + - Geert Uytterhoeven <geert+renesas@glider.be>
> +
> +description:
> + The CPG DIV6 clocks are variable factor clocks provided by the Clock Pulse
> + Generator (CPG). Their clock input is divided by a configurable factor from 1
> + to 64.
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - renesas,r8a73a4-div6-clock # R-Mobile APE6
> + - renesas,r8a7740-div6-clock # R-Mobile A1
> + - renesas,sh73a0-div6-clock # SH-Mobile AG5
> + - const: renesas,cpg-div6-clock
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + oneOf:
> + - maxItems: 1
> + - maxItems: 4
> + - maxItems: 8
> + description:
> + For clocks with multiple parents, invalid settings must be specified as
> + "<0>".
> +
> + '#clock-cells':
> + const: 0
> +
> + clock-output-names: true
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - '#clock-cells'
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/r8a73a4-clock.h>
> + sdhi2_clk: sdhi2_clk@e615007c {
> + compatible = "renesas,r8a73a4-div6-clock", "renesas,cpg-div6-clock";
> + reg = <0xe615007c 4>;
> + clocks = <&pll1_div2_clk>, <&cpg_clocks R8A73A4_CLK_PLL2S>, <0>,
> + <&extal2_clk>;
> + #clock-cells = <0>;
> + };
> diff --git a/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clocks.txt b/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clocks.txt
> deleted file mode 100644
> index ae36ab84291988b7..0000000000000000
> --- a/Documentation/devicetree/bindings/clock/renesas,cpg-div6-clocks.txt
> +++ /dev/null
> @@ -1,40 +0,0 @@
> -* Renesas CPG DIV6 Clock
> -
> -The CPG DIV6 clocks are variable factor clocks provided by the Clock Pulse
> -Generator (CPG). Their clock input is divided by a configurable factor from 1
> -to 64.
> -
> -Required Properties:
> -
> - - compatible: Must be one of the following
> - - "renesas,r8a73a4-div6-clock" for R8A73A4 (R-Mobile APE6) DIV6 clocks
> - - "renesas,r8a7740-div6-clock" for R8A7740 (R-Mobile A1) DIV6 clocks
> - - "renesas,r8a7790-div6-clock" for R8A7790 (R-Car H2) DIV6 clocks
> - - "renesas,r8a7791-div6-clock" for R8A7791 (R-Car M2-W) DIV6 clocks
> - - "renesas,r8a7793-div6-clock" for R8A7793 (R-Car M2-N) DIV6 clocks
> - - "renesas,r8a7794-div6-clock" for R8A7794 (R-Car E2) DIV6 clocks
> - - "renesas,sh73a0-div6-clock" for SH73A0 (SH-Mobile AG5) DIV6 clocks
> - and "renesas,cpg-div6-clock" as a fallback.
> - - reg: Base address and length of the memory resource used by the DIV6 clock
> - - clocks: Reference to the parent clock(s); either one, four, or eight
> - clocks must be specified. For clocks with multiple parents, invalid
> - settings must be specified as "<0>".
> - - #clock-cells: Must be 0
> -
> -
> -Optional Properties:
> -
> - - clock-output-names: The name of the clock as a free-form string
> -
> -
> -Example
> --------
> -
> - sdhi2_clk: sdhi2_clk@e615007c {
> - compatible = "renesas,r8a73a4-div6-clock", "renesas,cpg-div6-clock";
> - reg = <0 0xe615007c 0 4>;
> - clocks = <&pll1_div2_clk>, <&cpg_clocks R8A73A4_CLK_PLL2S>,
> - <0>, <&extal2_clk>;
> - #clock-cells = <0>;
> - clock-output-names = "sdhi2ck";
> - };
> --
> 2.17.1
>
--
Regards,
Niklas Söderlund
next prev parent reply other threads:[~2020-05-12 15:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-07 7:50 [PATCH] dt-bindings: clock: renesas: div6: Convert to json-schema Geert Uytterhoeven
2020-05-12 15:16 ` Niklas Söderlund [this message]
2020-05-12 23:27 ` Stephen Boyd
2020-05-15 2:43 ` Rob Herring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200512151631.GA2542285@oden.dyn.berto.se \
--to=niklas.soderlund@ragnatech.se \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=linux-clk@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox