* [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host @ 2016-01-22 10:03 Yoshihiro Shimoda 2016-01-22 10:03 ` [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes Yoshihiro Shimoda ` (2 more replies) 0 siblings, 3 replies; 9+ messages in thread From: Yoshihiro Shimoda @ 2016-01-22 10:03 UTC (permalink / raw) To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak Cc: devicetree, linux-renesas-soc, Yoshihiro Shimoda This patch set is based on the latest renesas.git / renesas-devel-20160121-v4.4 tag. (commit id = 3740ade0617955c76e1767b6d49347d5446eed74) This patch needs r8a7795-cpg-mssr.c update for usb3.0 clocks. Yoshihiro Shimoda (2): arm64: dts: r8a7795: Add USB3.0 host device nodes arm64: dts: salvator-x: enable usb3.0 host channel 0 arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts | 4 ++++ arch/arm64/boot/dts/renesas/r8a7795.dtsi | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) -- 1.9.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes 2016-01-22 10:03 [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Yoshihiro Shimoda @ 2016-01-22 10:03 ` Yoshihiro Shimoda [not found] ` <1453457003-7720-2-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> 2016-01-22 10:03 ` [PATCH 2/2] arm64: dts: salvator-x: enable usb3.0 host channel 0 Yoshihiro Shimoda 2016-01-25 0:08 ` [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Simon Horman 2 siblings, 1 reply; 9+ messages in thread From: Yoshihiro Shimoda @ 2016-01-22 10:03 UTC (permalink / raw) To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak Cc: devicetree, linux-renesas-soc, Yoshihiro Shimoda Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> --- arch/arm64/boot/dts/renesas/r8a7795.dtsi | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a7795.dtsi b/arch/arm64/boot/dts/renesas/r8a7795.dtsi index 221a8f5..119549e 100644 --- a/arch/arm64/boot/dts/renesas/r8a7795.dtsi +++ b/arch/arm64/boot/dts/renesas/r8a7795.dtsi @@ -862,5 +862,23 @@ clocks = <&cpg CPG_MOD 815>; status = "disabled"; }; + + xhci0: usb@ee000000 { + compatible = "renesas,xhci-r8a7795"; + reg = <0 0xee000000 0 0xc00>; + interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 328>; + power-domains = <&cpg>; + status = "disabled"; + }; + + xhci1: usb@ee0400000 { + compatible = "renesas,xhci-r8a7795"; + reg = <0 0xee040000 0 0xc00>; + interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cpg CPG_MOD 327>; + power-domains = <&cpg>; + status = "disabled"; + }; }; }; -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1453457003-7720-2-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes [not found] ` <1453457003-7720-2-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> @ 2016-01-22 11:08 ` Geert Uytterhoeven 0 siblings, 0 replies; 9+ messages in thread From: Geert Uytterhoeven @ 2016-01-22 11:08 UTC (permalink / raw) To: Yoshihiro Shimoda Cc: Simon Horman, Magnus Damm, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA On Fri, Jan 22, 2016 at 11:03 AM, Yoshihiro Shimoda <yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> wrote: > Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> Acked-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.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 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] 9+ messages in thread
* [PATCH 2/2] arm64: dts: salvator-x: enable usb3.0 host channel 0 2016-01-22 10:03 [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Yoshihiro Shimoda 2016-01-22 10:03 ` [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes Yoshihiro Shimoda @ 2016-01-22 10:03 ` Yoshihiro Shimoda [not found] ` <1453457003-7720-3-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> 2016-01-25 0:08 ` [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Simon Horman 2 siblings, 1 reply; 9+ messages in thread From: Yoshihiro Shimoda @ 2016-01-22 10:03 UTC (permalink / raw) To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak Cc: devicetree, linux-renesas-soc, Yoshihiro Shimoda Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> --- arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts b/arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts index 265d12f..9af1e3f 100644 --- a/arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts +++ b/arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts @@ -249,3 +249,7 @@ interrupts = <11 IRQ_TYPE_LEVEL_LOW>; }; }; + +&xhci0 { + status = "okay"; +}; -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1453457003-7720-3-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH 2/2] arm64: dts: salvator-x: enable usb3.0 host channel 0 [not found] ` <1453457003-7720-3-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> @ 2016-01-22 11:09 ` Geert Uytterhoeven 0 siblings, 0 replies; 9+ messages in thread From: Geert Uytterhoeven @ 2016-01-22 11:09 UTC (permalink / raw) To: Yoshihiro Shimoda Cc: Simon Horman, Magnus Damm, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA On Fri, Jan 22, 2016 at 11:03 AM, Yoshihiro Shimoda <yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> wrote: > Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> Acked-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.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 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] 9+ messages in thread
* Re: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host 2016-01-22 10:03 [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Yoshihiro Shimoda 2016-01-22 10:03 ` [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes Yoshihiro Shimoda 2016-01-22 10:03 ` [PATCH 2/2] arm64: dts: salvator-x: enable usb3.0 host channel 0 Yoshihiro Shimoda @ 2016-01-25 0:08 ` Simon Horman [not found] ` <20160125000845.GC774-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> 2 siblings, 1 reply; 9+ messages in thread From: Simon Horman @ 2016-01-25 0:08 UTC (permalink / raw) To: Yoshihiro Shimoda Cc: magnus.damm, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak, devicetree, linux-renesas-soc On Fri, Jan 22, 2016 at 07:03:21PM +0900, Yoshihiro Shimoda wrote: > This patch set is based on the latest renesas.git / renesas-devel-20160121-v4.4 > tag. (commit id = 3740ade0617955c76e1767b6d49347d5446eed74) > > This patch needs r8a7795-cpg-mssr.c update for usb3.0 clocks. Thanks. Please let me know if I should wait for that change before queuing up these patches. ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20160125000845.GC774-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>]
* Re: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host [not found] ` <20160125000845.GC774-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> @ 2016-01-25 8:25 ` Geert Uytterhoeven 2016-01-25 8:41 ` Yoshihiro Shimoda 0 siblings, 1 reply; 9+ messages in thread From: Geert Uytterhoeven @ 2016-01-25 8:25 UTC (permalink / raw) To: Simon Horman Cc: Yoshihiro Shimoda, Magnus Damm, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA Hi Simon, On Mon, Jan 25, 2016 at 1:08 AM, Simon Horman <horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> wrote: > On Fri, Jan 22, 2016 at 07:03:21PM +0900, Yoshihiro Shimoda wrote: >> This patch set is based on the latest renesas.git / renesas-devel-20160121-v4.4 >> tag. (commit id = 3740ade0617955c76e1767b6d49347d5446eed74) >> >> This patch needs r8a7795-cpg-mssr.c update for usb3.0 clocks. > > Thanks. Please let me know if I should wait for that change before > queuing up these patches. I think you can queue it up fine. It should start working in next renesas-drivers release. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.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 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] 9+ messages in thread
* RE: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host 2016-01-25 8:25 ` Geert Uytterhoeven @ 2016-01-25 8:41 ` Yoshihiro Shimoda 2016-01-26 0:42 ` Simon Horman 0 siblings, 1 reply; 9+ messages in thread From: Yoshihiro Shimoda @ 2016-01-25 8:41 UTC (permalink / raw) To: Geert Uytterhoeven, Simon Horman Cc: Magnus Damm, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org Hi Geert-san, Simon-san, > -----Original Message----- > From: geert.uytterhoeven@gmail.com [mailto:geert.uytterhoeven@gmail.com] On Behalf Of Geert Uytterhoeven > Sent: Monday, January 25, 2016 5:25 PM > To: Simon Horman <horms@verge.net.au> > Cc: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>; Magnus Damm <magnus.damm@gmail.com>; Rob Herring > <robh+dt@kernel.org>; Pawel Moll <pawel.moll@arm.com>; Mark Rutland <mark.rutland@arm.com>; Ian Campbell > <ijc+devicetree@hellion.org.uk>; Kumar Gala <galak@codeaurora.org>; devicetree@vger.kernel.org; > linux-renesas-soc@vger.kernel.org > Subject: Re: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host > > Hi Simon, > > On Mon, Jan 25, 2016 at 1:08 AM, Simon Horman <horms@verge.net.au> wrote: > > On Fri, Jan 22, 2016 at 07:03:21PM +0900, Yoshihiro Shimoda wrote: > >> This patch set is based on the latest renesas.git / renesas-devel-20160121-v4.4 > >> tag. (commit id = 3740ade0617955c76e1767b6d49347d5446eed74) > >> > >> This patch needs r8a7795-cpg-mssr.c update for usb3.0 clocks. > > > > Thanks. Please let me know if I should wait for that change before > > queuing up these patches. > > I think you can queue it up fine. It should start working in next > renesas-drivers > release. Thank you for your comment! I think so. Best regards, Yoshihiro Shimoda > 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 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host 2016-01-25 8:41 ` Yoshihiro Shimoda @ 2016-01-26 0:42 ` Simon Horman 0 siblings, 0 replies; 9+ messages in thread From: Simon Horman @ 2016-01-26 0:42 UTC (permalink / raw) To: Yoshihiro Shimoda Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org On Mon, Jan 25, 2016 at 08:41:54AM +0000, Yoshihiro Shimoda wrote: > Hi Geert-san, Simon-san, > > > -----Original Message----- > > From: geert.uytterhoeven@gmail.com [mailto:geert.uytterhoeven@gmail.com] On Behalf Of Geert Uytterhoeven > > Sent: Monday, January 25, 2016 5:25 PM > > To: Simon Horman <horms@verge.net.au> > > Cc: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>; Magnus Damm <magnus.damm@gmail.com>; Rob Herring > > <robh+dt@kernel.org>; Pawel Moll <pawel.moll@arm.com>; Mark Rutland <mark.rutland@arm.com>; Ian Campbell > > <ijc+devicetree@hellion.org.uk>; Kumar Gala <galak@codeaurora.org>; devicetree@vger.kernel.org; > > linux-renesas-soc@vger.kernel.org > > Subject: Re: [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host > > > > Hi Simon, > > > > On Mon, Jan 25, 2016 at 1:08 AM, Simon Horman <horms@verge.net.au> wrote: > > > On Fri, Jan 22, 2016 at 07:03:21PM +0900, Yoshihiro Shimoda wrote: > > >> This patch set is based on the latest renesas.git / renesas-devel-20160121-v4.4 > > >> tag. (commit id = 3740ade0617955c76e1767b6d49347d5446eed74) > > >> > > >> This patch needs r8a7795-cpg-mssr.c update for usb3.0 clocks. > > > > > > Thanks. Please let me know if I should wait for that change before > > > queuing up these patches. > > > > I think you can queue it up fine. It should start working in next > > renesas-drivers > > release. > > Thank you for your comment! > I think so. Thanks, I have queued these up. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-01-26 0:42 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-01-22 10:03 [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Yoshihiro Shimoda 2016-01-22 10:03 ` [PATCH 1/2] arm64: dts: r8a7795: Add USB3.0 host device nodes Yoshihiro Shimoda [not found] ` <1453457003-7720-2-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> 2016-01-22 11:08 ` Geert Uytterhoeven 2016-01-22 10:03 ` [PATCH 2/2] arm64: dts: salvator-x: enable usb3.0 host channel 0 Yoshihiro Shimoda [not found] ` <1453457003-7720-3-git-send-email-yoshihiro.shimoda.uh-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org> 2016-01-22 11:09 ` Geert Uytterhoeven 2016-01-25 0:08 ` [PATCH 0/2] arm64: dts: r8a7795: Add USB3.0 host Simon Horman [not found] ` <20160125000845.GC774-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> 2016-01-25 8:25 ` Geert Uytterhoeven 2016-01-25 8:41 ` Yoshihiro Shimoda 2016-01-26 0:42 ` 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).