* [PATCH v2 0/2] Add R8A7790 CAN DT support
@ 2015-01-05 21:31 Sergei Shtylyov
2015-01-05 21:33 ` [PATCH v2 1/2] ARM: shmobile: r8a7790: add CAN clocks Sergei Shtylyov
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2015-01-05 21:31 UTC (permalink / raw)
To: horms-/R6kz+dDXgpPR4JQBCEnsQ, linux-sh-u79uwXL29TY76Z2rM5mHXA,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A, pawel.moll-5wv7dgnIgG8,
mark.rutland-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, devicetree-u79uwXL29TY76Z2rM5mHXA
Cc: magnus.damm-Re5JQEeQqe8AvxtiuMwx3w, linux-lFZ/pmaqli7XmaaqVzeoHQ,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
Hello.
Here's the set of 2 patches against Simon Horman's 'renesas.git' repo,
'renesas-devel-20141231-v3.19-rc2' tag. Here we add the CAN device tree support
for the R8A7790 SoC (unfortunately, it's impossible to test CAN on the Lager
board). It depends on the clk driver RCAN clock patch reposted today in order
to work.
[1/2] ARM: shmobile: r8a7790: add CAN clocks
[2/2] ARM: shmobile: r8a7790: add CAN DT support
WBR, Sergei
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/2] ARM: shmobile: r8a7790: add CAN clocks
2015-01-05 21:31 [PATCH v2 0/2] Add R8A7790 CAN DT support Sergei Shtylyov
@ 2015-01-05 21:33 ` Sergei Shtylyov
2015-01-05 21:34 ` [PATCH v2 2/2] ARM: shmobile: r8a7790: add CAN DT support Sergei Shtylyov
2015-02-19 21:43 ` [PATCH v2 0/2] Add R8A7790 " Sergei Shtylyov
2 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2015-01-05 21:33 UTC (permalink / raw)
To: horms
Cc: linux-sh, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
galak, devicetree, magnus.damm, linux, linux-arm-kernel
The R-Car CAN controllers can derive the CAN bus clock not only from their
peripheral clock input (clkp1) but also from the other internal clock (clkp2)
and external clock fed on CAN_CLK pin. Describe those clocks in the device
tree, along with the USB_EXTAL clock from which clkp2 is derived.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Changes in version 2:
- fixed spelling in the comment to the CAN_CLK node;
- added Geert's ACK.
arch/arm/boot/dts/r8a7790.dtsi | 22 ++++++++++++++++++++--
include/dt-bindings/clock/r8a7790-clock.h | 1 +
2 files changed, 21 insertions(+), 2 deletions(-)
Index: renesas/arch/arm/boot/dts/r8a7790.dtsi
===================================================================
--- renesas.orig/arch/arm/boot/dts/r8a7790.dtsi
+++ renesas/arch/arm/boot/dts/r8a7790.dtsi
@@ -838,16 +838,34 @@
clock-output-names = "audio_clk_c";
};
+ /* External USB clock - can be overridden by the board */
+ usb_extal_clk: usb_extal_clk {
+ compatible = "fixed-clock";
+ #clock-cells = <0>;
+ clock-frequency = <48000000>;
+ clock-output-names = "usb_extal";
+ };
+
+ /* External CAN clock */
+ can_clk: can_clk {
+ compatible = "fixed-clock";
+ #clock-cells = <0>;
+ /* This value must be overridden by the board. */
+ clock-frequency = <0>;
+ clock-output-names = "can_clk";
+ status = "disabled";
+ };
+
/* Special CPG clocks */
cpg_clocks: cpg_clocks@e6150000 {
compatible = "renesas,r8a7790-cpg-clocks",
"renesas,rcar-gen2-cpg-clocks";
reg = <0 0xe6150000 0 0x1000>;
- clocks = <&extal_clk>;
+ clocks = <&extal_clk &usb_extal_clk>;
#clock-cells = <1>;
clock-output-names = "main", "pll0", "pll1", "pll3",
"lb", "qspi", "sdh", "sd0", "sd1",
- "z";
+ "z", "rcan";
};
/* Variable factor clocks */
Index: renesas/include/dt-bindings/clock/r8a7790-clock.h
===================================================================
--- renesas.orig/include/dt-bindings/clock/r8a7790-clock.h
+++ renesas/include/dt-bindings/clock/r8a7790-clock.h
@@ -21,6 +21,7 @@
#define R8A7790_CLK_SD0 7
#define R8A7790_CLK_SD1 8
#define R8A7790_CLK_Z 9
+#define R8A7790_CLK_RCAN 10
/* MSTP0 */
#define R8A7790_CLK_MSIOF0 0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] ARM: shmobile: r8a7790: add CAN DT support
2015-01-05 21:31 [PATCH v2 0/2] Add R8A7790 CAN DT support Sergei Shtylyov
2015-01-05 21:33 ` [PATCH v2 1/2] ARM: shmobile: r8a7790: add CAN clocks Sergei Shtylyov
@ 2015-01-05 21:34 ` Sergei Shtylyov
2015-02-19 21:43 ` [PATCH v2 0/2] Add R8A7790 " Sergei Shtylyov
2 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2015-01-05 21:34 UTC (permalink / raw)
To: horms
Cc: linux-sh, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
galak, devicetree, magnus.damm, linux, linux-arm-kernel
Define the generic R8A7790 parts of the CAN0/1 device nodes.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Changes in version 2:
- fixed whitespace errors/warnings given by checkpatch.pl;
- added Geert's ACK.
arch/arm/boot/dts/r8a7790.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
Index: renesas/arch/arm/boot/dts/r8a7790.dtsi
===================================================================
--- renesas.orig/arch/arm/boot/dts/r8a7790.dtsi
+++ renesas/arch/arm/boot/dts/r8a7790.dtsi
@@ -792,6 +792,26 @@
};
};
+ can0: can@e6e80000 {
+ compatible = "renesas,can-r8a7790";
+ reg = <0 0xe6e80000 0 0x1000>;
+ interrupts = <0 186 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&mstp9_clks R8A7790_CLK_RCAN0>,
+ <&cpg_clocks R8A7790_CLK_RCAN>, <&can_clk>;
+ clock-names = "clkp1", "clkp2", "can_clk";
+ status = "disabled";
+ };
+
+ can1: can@e6e88000 {
+ compatible = "renesas,can-r8a7790";
+ reg = <0 0xe6e88000 0 0x1000>;
+ interrupts = <0 187 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&mstp9_clks R8A7790_CLK_RCAN1>,
+ <&cpg_clocks R8A7790_CLK_RCAN>, <&can_clk>;
+ clock-names = "clkp1", "clkp2", "can_clk";
+ status = "disabled";
+ };
+
clocks {
#address-cells = <2>;
#size-cells = <2>;
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/2] Add R8A7790 CAN DT support
2015-01-05 21:31 [PATCH v2 0/2] Add R8A7790 CAN DT support Sergei Shtylyov
2015-01-05 21:33 ` [PATCH v2 1/2] ARM: shmobile: r8a7790: add CAN clocks Sergei Shtylyov
2015-01-05 21:34 ` [PATCH v2 2/2] ARM: shmobile: r8a7790: add CAN DT support Sergei Shtylyov
@ 2015-02-19 21:43 ` Sergei Shtylyov
2015-02-19 22:13 ` Simon Horman
2 siblings, 1 reply; 5+ messages in thread
From: Sergei Shtylyov @ 2015-02-19 21:43 UTC (permalink / raw)
To: horms, linux-sh, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, devicetree
Cc: magnus.damm, linux, linux-arm-kernel
On 01/06/2015 12:31 AM, Sergei Shtylyov wrote:
> Here's the set of 2 patches against Simon Horman's 'renesas.git' repo,
> 'renesas-devel-20141231-v3.19-rc2' tag. Here we add the CAN device tree support
> for the R8A7790 SoC (unfortunately, it's impossible to test CAN on the Lager
> board). It depends on the clk driver RCAN clock patch reposted today in order
> to work.
Simon, now that this patch has been merged, could you merge this patchset too?
> [1/2] ARM: shmobile: r8a7790: add CAN clocks
> [2/2] ARM: shmobile: r8a7790: add CAN DT support
WBR, Sergei
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/2] Add R8A7790 CAN DT support
2015-02-19 21:43 ` [PATCH v2 0/2] Add R8A7790 " Sergei Shtylyov
@ 2015-02-19 22:13 ` Simon Horman
0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2015-02-19 22:13 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: linux-sh, robh+dt, pawel.moll, mark.rutland, ijc+devicetree,
galak, devicetree, magnus.damm, linux, linux-arm-kernel
On Fri, Feb 20, 2015 at 12:43:33AM +0300, Sergei Shtylyov wrote:
> On 01/06/2015 12:31 AM, Sergei Shtylyov wrote:
>
> > Here's the set of 2 patches against Simon Horman's 'renesas.git' repo,
> >'renesas-devel-20141231-v3.19-rc2' tag. Here we add the CAN device tree support
> >for the R8A7790 SoC (unfortunately, it's impossible to test CAN on the Lager
> >board). It depends on the clk driver RCAN clock patch reposted today in order
> >to work.
>
> Simon, now that this patch has been merged, could you merge this patchset too?
Sure, I have queued them up as part of renesas-devel-20150219v2-v3.19.
> >[1/2] ARM: shmobile: r8a7790: add CAN clocks
> >[2/2] ARM: shmobile: r8a7790: add CAN DT support
>
> WBR, Sergei
>
> --
> 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
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-02-19 22:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-05 21:31 [PATCH v2 0/2] Add R8A7790 CAN DT support Sergei Shtylyov
2015-01-05 21:33 ` [PATCH v2 1/2] ARM: shmobile: r8a7790: add CAN clocks Sergei Shtylyov
2015-01-05 21:34 ` [PATCH v2 2/2] ARM: shmobile: r8a7790: add CAN DT support Sergei Shtylyov
2015-02-19 21:43 ` [PATCH v2 0/2] Add R8A7790 " Sergei Shtylyov
2015-02-19 22:13 ` Simon Horman
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).