* [PATCH/RFC v3 1/5] arm64: dts: r8a7795: add clock for EthernetAVB
@ 2015-09-18 6:05 Simon Horman
2015-09-18 13:00 ` Sergei Shtylyov
0 siblings, 1 reply; 2+ messages in thread
From: Simon Horman @ 2015-09-18 6:05 UTC (permalink / raw)
To: linux-sh
From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
These clocks will be used by EthernetAVB
Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
[horms: use s3d2_clk; other minor updates]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v0 [Kazuya Mizuguchi]
v1 [Simon Horman]
* updated p_clk to s3d4_clk
* moved to clock node
* updated patch subject
* use R8A7795 as prefix for clock defines
v2 [Simon Horman]
* As suggested by Geert Uytterhoeven
- Use s3d2_clk use it instead: it is now already present in the base
of this series
- Use R8A7795_CLK_ETHERAVB instead of R8A7795_CLK_AVB
* As suggested by Kuninori Morimoto and Sergei Shtylyov
- Use "clock-indices" instead of "renesas,clock-indices"
v3 [Simon Horman]
* As suggested by Geert Uytterhoeven
- Name clock "etheravb"
* Add Ack
TODO:
* Drop clock-output-names from mstp8_clks ?
---
arch/arm64/boot/dts/renesas/r8a7795.dtsi | 12 ++++++++++++
include/dt-bindings/clock/r8a7795-clock.h | 1 +
2 files changed, 13 insertions(+)
diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi b/arch/arm64/boot/dts/renesas/r8a7795.dtsi
index d7e70f57d165..60d64c51b510 100644
--- a/arch/arm64/boot/dts/renesas/r8a7795.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a7795.dtsi
@@ -274,6 +274,17 @@
#clock-cells = <1>;
clock-indices = <R8A7795_CLK_SCIF2>;
};
+
+ mstp8_clks: mstp8_clks@e6150990 {
+ compatible = "renesas,r8a7795-mstp-clocks",
+ "renesas,cpg-mstp-clocks";
+ reg = <0 0xe6150990 0 4>, <0 0xe61509a0 0 4>;
+ clocks = <&s3d2_clk>;
+ #clock-cells = <1>;
+ clock-indices = <R8A7795_CLK_ETHERAVB>;
+ clock-output-names = "etheravb";
+ };
+
};
};
@@ -364,4 +375,5 @@
status = "disabled";
};
};
+
};
diff --git a/include/dt-bindings/clock/r8a7795-clock.h b/include/dt-bindings/clock/r8a7795-clock.h
index d661602cb164..fd2514b5d7cc 100644
--- a/include/dt-bindings/clock/r8a7795-clock.h
+++ b/include/dt-bindings/clock/r8a7795-clock.h
@@ -36,6 +36,7 @@
/* MSTP7 */
/* MSTP8 */
+#define R8A7795_CLK_ETHERAVB 12
/* MSTP9 */
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH/RFC v3 1/5] arm64: dts: r8a7795: add clock for EthernetAVB
2015-09-18 6:05 [PATCH/RFC v3 1/5] arm64: dts: r8a7795: add clock for EthernetAVB Simon Horman
@ 2015-09-18 13:00 ` Sergei Shtylyov
0 siblings, 0 replies; 2+ messages in thread
From: Sergei Shtylyov @ 2015-09-18 13:00 UTC (permalink / raw)
To: linux-sh
On 9/18/2015 9:05 AM, Simon Horman wrote:
> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>
> These clocks will be used by EthernetAVB
>
> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> [horms: use s3d2_clk; other minor updates]
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
[...]
> diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi b/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> index d7e70f57d165..60d64c51b510 100644
> --- a/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r8a7795.dtsi
> @@ -274,6 +274,17 @@
> #clock-cells = <1>;
> clock-indices = <R8A7795_CLK_SCIF2>;
> };
> +
> + mstp8_clks: mstp8_clks@e6150990 {
> + compatible = "renesas,r8a7795-mstp-clocks",
> + "renesas,cpg-mstp-clocks";
> + reg = <0 0xe6150990 0 4>, <0 0xe61509a0 0 4>;
> + clocks = <&s3d2_clk>;
> + #clock-cells = <1>;
> + clock-indices = <R8A7795_CLK_ETHERAVB>;
> + clock-output-names = "etheravb";
> + };
> +
This empty line is hardly needed.
> };
> };
>
> @@ -364,4 +375,5 @@
> status = "disabled";
> };
> };
> +
And this too.
> };
MBR, Sergei
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-18 13:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-18 6:05 [PATCH/RFC v3 1/5] arm64: dts: r8a7795: add clock for EthernetAVB Simon Horman
2015-09-18 13:00 ` Sergei Shtylyov
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).