* [PATCH 0/3] arm: shimobile: add HS-USB device node on r8a7791
@ 2014-10-02 8:05 Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 1/3] arm: shimobile: r8a7791: add HS-USB device node Yoshihiro Shimoda
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2014-10-02 8:05 UTC (permalink / raw)
To: horms-/R6kz+dDXgpPR4JQBCEnsQ, magnus.damm-Re5JQEeQqe8AvxtiuMwx3w,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A, pawel.moll-5wv7dgnIgG8,
mark.rutland-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg,
galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-lFZ/pmaqli7XmaaqVzeoHQ
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-sh-u79uwXL29TY76Z2rM5mHXA,
Yoshihiro Shimoda
This series is based on Simon's renesas.git branch and
renesas-devel-20141002-v3.17-rc7 tag. If we use the generic phy
driver for R-Car Gen2 (drivers/phy/phy-rcar-gen2.c), we can use
the HS-USB on koelsch and henninger.
Yoshihiro Shimoda (3):
arm: shimobile: r8a7791: add HS-USB device node
arm: shmobile: koelsch: enable HS-USB
arm: shmobile: henninger: enable HS-USB
arch/arm/boot/dts/r8a7791-henninger.dts | 5 +++++
arch/arm/boot/dts/r8a7791-koelsch.dts | 5 +++++
arch/arm/boot/dts/r8a7791.dtsi | 10 ++++++++++
3 files changed, 20 insertions(+)
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" 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] 7+ messages in thread* [PATCH 1/3] arm: shimobile: r8a7791: add HS-USB device node
2014-10-02 8:05 [PATCH 0/3] arm: shimobile: add HS-USB device node on r8a7791 Yoshihiro Shimoda
@ 2014-10-02 8:05 ` Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 3/3] arm: shmobile: henninger: " Yoshihiro Shimoda
2 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2014-10-02 8:05 UTC (permalink / raw)
To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, linux
Cc: devicetree, linux-usb, linux-sh, Yoshihiro Shimoda
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
arch/arm/boot/dts/r8a7791.dtsi | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi
index d343099..393adcb 100644
--- a/arch/arm/boot/dts/r8a7791.dtsi
+++ b/arch/arm/boot/dts/r8a7791.dtsi
@@ -1300,4 +1300,14 @@
ssi9: ssi@9 { interrupts = <0 379 IRQ_TYPE_LEVEL_HIGH>; };
};
};
+
+ hsusb: usb@e6590000 {
+ compatible = "renesas,usbhs-r8a7791";
+ reg = <0 0xe6590000 0 0x100>;
+ interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&mstp7_clks R8A7791_CLK_HSUSB>;
+ renesas,buswait_bwait = <4>;
+ phys = <&usb0 1>;
+ phy-names = "usb";
+ };
};
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB
2014-10-02 8:05 [PATCH 0/3] arm: shimobile: add HS-USB device node on r8a7791 Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 1/3] arm: shimobile: r8a7791: add HS-USB device node Yoshihiro Shimoda
@ 2014-10-02 8:05 ` Yoshihiro Shimoda
2014-10-02 10:02 ` Sergei Shtylyov
2014-10-02 8:05 ` [PATCH 3/3] arm: shmobile: henninger: " Yoshihiro Shimoda
2 siblings, 1 reply; 7+ messages in thread
From: Yoshihiro Shimoda @ 2014-10-02 8:05 UTC (permalink / raw)
To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, linux
Cc: devicetree, linux-usb, linux-sh, Yoshihiro Shimoda
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
arch/arm/boot/dts/r8a7791-koelsch.dts | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
index 3f55c16..b3dac1a 100644
--- a/arch/arm/boot/dts/r8a7791-koelsch.dts
+++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
@@ -495,3 +495,8 @@
};
};
};
+
+&hsusb {
+ status = "okay";
+ renesas,enable-gpio = <&gpio5 18 GPIO_ACTIVE_LOW>;
+};
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB
2014-10-02 8:05 ` [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB Yoshihiro Shimoda
@ 2014-10-02 10:02 ` Sergei Shtylyov
[not found] ` <542D22D0.4000209-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
0 siblings, 1 reply; 7+ messages in thread
From: Sergei Shtylyov @ 2014-10-02 10:02 UTC (permalink / raw)
To: Yoshihiro Shimoda, horms, magnus.damm, robh+dt, pawel.moll,
mark.rutland, ijc+devicetree, galak, linux
Cc: devicetree, linux-usb, linux-sh
On 10/2/2014 12:05 PM, Yoshihiro Shimoda wrote:
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
> arch/arm/boot/dts/r8a7791-koelsch.dts | 5 +++++
> 1 file changed, 5 insertions(+)
> diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
> index 3f55c16..b3dac1a 100644
> --- a/arch/arm/boot/dts/r8a7791-koelsch.dts
> +++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
> @@ -495,3 +495,8 @@
> };
> };
> };
> +
> +&hsusb {
> + status = "okay";
> + renesas,enable-gpio = <&gpio5 18 GPIO_ACTIVE_LOW>;
I think it's GP5_31 on Koelsch instead, i.e. the ID output from MAX3355.
WBR, Sergei
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 3/3] arm: shmobile: henninger: enable HS-USB
2014-10-02 8:05 [PATCH 0/3] arm: shimobile: add HS-USB device node on r8a7791 Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 1/3] arm: shimobile: r8a7791: add HS-USB device node Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB Yoshihiro Shimoda
@ 2014-10-02 8:05 ` Yoshihiro Shimoda
2 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2014-10-02 8:05 UTC (permalink / raw)
To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, linux
Cc: devicetree, linux-usb, linux-sh, Yoshihiro Shimoda
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
arch/arm/boot/dts/r8a7791-henninger.dts | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/r8a7791-henninger.dts b/arch/arm/boot/dts/r8a7791-henninger.dts
index fee8bef..d0800d2 100644
--- a/arch/arm/boot/dts/r8a7791-henninger.dts
+++ b/arch/arm/boot/dts/r8a7791-henninger.dts
@@ -299,3 +299,8 @@
};
};
};
+
+&hsusb {
+ status = "okay";
+ renesas,enable-gpio = <&gpio5 18 GPIO_ACTIVE_LOW>;
+};
--
1.7.9.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-10-03 18:55 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-02 8:05 [PATCH 0/3] arm: shimobile: add HS-USB device node on r8a7791 Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 1/3] arm: shimobile: r8a7791: add HS-USB device node Yoshihiro Shimoda
2014-10-02 8:05 ` [PATCH 2/3] arm: shmobile: koelsch: enable HS-USB Yoshihiro Shimoda
2014-10-02 10:02 ` Sergei Shtylyov
[not found] ` <542D22D0.4000209-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2014-10-02 11:48 ` Yoshihiro Shimoda
[not found] ` <542D3BA1.2010902-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2014-10-03 18:55 ` Sergei Shtylyov
2014-10-02 8:05 ` [PATCH 3/3] arm: shmobile: henninger: " Yoshihiro Shimoda
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).