diff mbox

[v8,02/07] arm64: renesas: r8a7795 dtsi: Add all common divider clocks

Message ID 20150831062930.24004.93722.sendpatchset@little-apple (mailing list archive)
State RFC
Delegated to: Simon Horman
Headers show

Commit Message

Magnus Damm Aug. 31, 2015, 6:29 a.m. UTC
From: Geert Uytterhoeven <geert+renesas@glider.be>

Add all clocks generated from PLL1 by the CPG common divider block.
This includes s3d4, which was modelled as a direct child from pll1
before.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
---

 Based on:
  [PATCH 3/3] arm64: renesas: r8a7795 dtsi: Add all common divider clocks

 Changes: (Magnus Damm <damm+renesas@opensource.se>)
 - Folded in s3d4_clk
 - Reordered to apply without SCIF bits

 arch/arm64/boot/dts/renesas/r8a7795.dtsi |  160 ++++++++++++++++++++++++++++++
 1 file changed, 160 insertions(+)

--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Geert Uytterhoeven Aug. 31, 2015, 9:08 a.m. UTC | #1
Hi Magnus,

On Mon, Aug 31, 2015 at 8:29 AM, Magnus Damm <magnus.damm@gmail.com> wrote:
> From: Geert Uytterhoeven <geert+renesas@glider.be>
>
> Add all clocks generated from PLL1 by the CPG common divider block.
> This includes s3d4, which was modelled as a direct child from pll1
> before.

The last sentence is no longer needed due to the folding in mentioned below.

> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> ---
>
>  Based on:
>   [PATCH 3/3] arm64: renesas: r8a7795 dtsi: Add all common divider clocks
>
>  Changes: (Magnus Damm <damm+renesas@opensource.se>)
>  - Folded in s3d4_clk
>  - Reordered to apply without SCIF bits

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Laurent Pinchart Aug. 31, 2015, 10:20 a.m. UTC | #2
Hello Geert and Magnus,

Thank you for the patch.

On Monday 31 August 2015 15:29:30 Magnus Damm wrote:
> From: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> Add all clocks generated from PLL1 by the CPG common divider block.
> This includes s3d4, which was modelled as a direct child from pll1
> before.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> ---
> 
>  Based on:
>   [PATCH 3/3] arm64: renesas: r8a7795 dtsi: Add all common divider clocks
> 
>  Changes: (Magnus Damm <damm+renesas@opensource.se>)
>  - Folded in s3d4_clk
>  - Reordered to apply without SCIF bits
> 
>  arch/arm64/boot/dts/renesas/r8a7795.dtsi |  160 +++++++++++++++++++++++++++
>  1 file changed, 160 insertions(+)
> 
> --- 0012/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> +++ work/arch/arm64/boot/dts/renesas/r8a7795.dtsi	2015-08-29
> 17:10:36.532366518 +0900 @@ -70,6 +70,166 @@
>  			#clock-cells = <1>;
>  			ranges;
> 
> +			zt_clk: zt {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;

The PLL1 clock is defined by the CPG driver with a 1/2 output divisor, 
similarly that what we have done on Gen2. However, on Gen3 the RPC clocks are 
derived directly from the PLL1 output. I'm thus wondering whether we shouldn't 
define PLL1 without the output divisor and create a PLL1 * 1/2 fixed-factor 
clock as a parent to all the other fixed-factor clocks (other than the RPC 
clocks).

I've reviewed the divisors and multipliers below and they all look correct to 
me.

> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			ztr_clk: ztr {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <6>;
> +				clock-mult = <1>;
> +			};
> +
> +			ztrd2_clk: ztrd2 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <12>;
> +				clock-mult = <1>;
> +			};
> +
> +			zx_clk: zx {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <2>;
> +				clock-mult = <1>;
> +			};
> +
> +			s0_clk: s0 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <2>;
> +				clock-mult = <1>;
> +			};
> +
> +			s0d1_clk: s0d1 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s0_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <1>;
> +				clock-mult = <1>;
> +			};
> +
> +			s0d4_clk: s0d4 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s0_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			s1_clk: s1 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <3>;
> +				clock-mult = <1>;
> +			};
> +
> +			s1d1_clk: s1d1 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s1_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <1>;
> +				clock-mult = <1>;
> +			};
> +
> +			s1d2_clk: s1d2 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s1_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <2>;
> +				clock-mult = <1>;
> +			};
> +
> +			s1d4_clk: s1d4 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s1_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			s2_clk: s2 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			s2d1_clk: s2d1 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s2_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <1>;
> +				clock-mult = <1>;
> +			};
> +
> +			s2d2_clk: s2d2 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s2_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <2>;
> +				clock-mult = <1>;
> +			};
> +
> +			s2d4_clk: s2d4 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s2_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			s3_clk: s3 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <6>;
> +				clock-mult = <1>;
> +			};
> +
> +			s3d1_clk: s3d1 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s3_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <1>;
> +				clock-mult = <1>;
> +			};
> +
> +			s3d2_clk: s3d2 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s3_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <2>;
> +				clock-mult = <1>;
> +			};
> +
> +			s3d4_clk: s3d4 {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&s3_clk>;
> +				#clock-cells = <0>;
> +				clock-div = <4>;
> +				clock-mult = <1>;
> +			};
> +
> +			cl_clk: cl {
> +				compatible = "fixed-factor-clock";
> +				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
> +				#clock-cells = <0>;
> +				clock-div = <48>;
> +				clock-mult = <1>;
> +			};
> +
>  			cpg_clocks: cpg_clocks@e6150000 {
>  				compatible = "renesas,r8a7795-cpg-clocks",
>  					     "renesas,rcar-gen3-cpg-clocks";
diff mbox

Patch

--- 0012/arch/arm64/boot/dts/renesas/r8a7795.dtsi
+++ work/arch/arm64/boot/dts/renesas/r8a7795.dtsi	2015-08-29 17:10:36.532366518 +0900
@@ -70,6 +70,166 @@ 
 			#clock-cells = <1>;
 			ranges;
 
+			zt_clk: zt {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			ztr_clk: ztr {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <6>;
+				clock-mult = <1>;
+			};
+
+			ztrd2_clk: ztrd2 {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <12>;
+				clock-mult = <1>;
+			};
+
+			zx_clk: zx {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <2>;
+				clock-mult = <1>;
+			};
+
+			s0_clk: s0 {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <2>;
+				clock-mult = <1>;
+			};
+
+			s0d1_clk: s0d1 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s0_clk>;
+				#clock-cells = <0>;
+				clock-div = <1>;
+				clock-mult = <1>;
+			};
+
+			s0d4_clk: s0d4 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s0_clk>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			s1_clk: s1 {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <3>;
+				clock-mult = <1>;
+			};
+
+			s1d1_clk: s1d1 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s1_clk>;
+				#clock-cells = <0>;
+				clock-div = <1>;
+				clock-mult = <1>;
+			};
+
+			s1d2_clk: s1d2 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s1_clk>;
+				#clock-cells = <0>;
+				clock-div = <2>;
+				clock-mult = <1>;
+			};
+
+			s1d4_clk: s1d4 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s1_clk>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			s2_clk: s2 {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			s2d1_clk: s2d1 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s2_clk>;
+				#clock-cells = <0>;
+				clock-div = <1>;
+				clock-mult = <1>;
+			};
+
+			s2d2_clk: s2d2 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s2_clk>;
+				#clock-cells = <0>;
+				clock-div = <2>;
+				clock-mult = <1>;
+			};
+
+			s2d4_clk: s2d4 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s2_clk>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			s3_clk: s3 {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <6>;
+				clock-mult = <1>;
+			};
+
+			s3d1_clk: s3d1 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s3_clk>;
+				#clock-cells = <0>;
+				clock-div = <1>;
+				clock-mult = <1>;
+			};
+
+			s3d2_clk: s3d2 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s3_clk>;
+				#clock-cells = <0>;
+				clock-div = <2>;
+				clock-mult = <1>;
+			};
+
+			s3d4_clk: s3d4 {
+				compatible = "fixed-factor-clock";
+				clocks = <&s3_clk>;
+				#clock-cells = <0>;
+				clock-div = <4>;
+				clock-mult = <1>;
+			};
+
+			cl_clk: cl {
+				compatible = "fixed-factor-clock";
+				clocks = <&cpg_clocks R8A7795_CLK_PLL1>;
+				#clock-cells = <0>;
+				clock-div = <48>;
+				clock-mult = <1>;
+			};
+
 			cpg_clocks: cpg_clocks@e6150000 {
 				compatible = "renesas,r8a7795-cpg-clocks",
 					     "renesas,rcar-gen3-cpg-clocks";