[PATCH 6/7] ARM: dts: iwg23s-sbc: Enable USB USB2.0 Host

2018-10-25 Thread Biju Das
Enable USB2.0 host on USB port1 of the iwg23s sbc. Signed-off-by: Biju Das --- This patch is tested against renesas-devel. --- arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts

[PATCH 7/7] ARM: shmobile: Enable USB [EO]HCI HCD PLATFORM support in shmobile_defconfig

2018-10-25 Thread Biju Das
The USB [EO]HCI controller on RZ/G1C SoC doesn't have PCI bridge like other R-Car Gen2 devices. So enable generic USB [EO]HCI HCD PLATFORM support in shmobile_defconfig. Signed-off-by: Biju Das --- arch/arm/configs/shmobile_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH 0/7] Add RZ/G1C USB2.0 Host support

2018-10-25 Thread Biju Das
This patch series aims to add USB2.0 Host support for RZ/G1C SoC. RZ/G1C SoC is similar to R-Car Gen2 SoC, but there are some differences - It has a shared pll reset register for hsusb0/hsusb1 and this register reside in hsusb0 block. - Each USB host needs to deassert the pll reset of hsusb

[PATCH 5/7] ARM: dts: r8a77470: Add USB2.0 Host (EHCI/OHCI) device nodes

2018-10-25 Thread Biju Das
Define the r8a77470 generic part of the USB2.0 Host Controller device nodes (ehci[01]/ohci[01]). Signed-off-by: Biju Das --- This patch is tested against renesas devel. --- arch/arm/boot/dts/r8a77470.dtsi | 50 + 1 file changed, 50 insertions(+) diff

[PATCH 4/7] ARM: dts: iwg23s-sbc: Enable USB Phy[01]

2018-10-25 Thread Biju Das
Enable USB phy[01] on iWave iwg23s sbc based on RZ/G1C SoC. Signed-off-by: Biju Das --- This patch is tested against renesas devel. --- arch/arm/boot/dts/r8a77470-iwg23s-sbc.dts | 24 1 file changed, 24 insertions(+) diff --git

[PATCH 2/2] ARM: dts: r8a77470: Add USB-DMAC device nodes

2018-10-25 Thread Biju Das
This patch adds USB DMAC nodes. Signed-off-by: Biju Das --- This patch depend upon the below patch. https://patchwork.kernel.org/patch/10655861/ --- arch/arm/boot/dts/r8a77470.dtsi | 56 + 1 file changed, 56 insertions(+) diff --git

[PATCH 1/2] dt-bindings: dmaengine: usb-dmac: Add binding for r8a77470

2018-10-25 Thread Biju Das
This patch adds usb high-speed dmac binding for r8a77470 (RZ/G1C) SoC. Signed-off-by: Biju Das --- This patch tested against linux-next. --- Documentation/devicetree/bindings/dma/renesas,usb-dmac.txt | 1 + 1 file changed, 1 insertion(+) diff --git

RE: [PATCH 1/2] dt-bindings: dmaengine: usb-dmac: Add binding for r8a77470

2018-10-25 Thread Biju Das
Hi Vinod, Thanks for the feedback. > Subject: Re: [PATCH 1/2] dt-bindings: dmaengine: usb-dmac: Add binding for > r8a77470 > > On 25-10-18, 15:53, Biju Das wrote: > > This patch adds usb high-speed dmac binding for r8a77470 (RZ/G1C) SoC. > > Where is the patch 2/2 ...? I missed adding you in

RE: [PATCH 2/2] ARM: dts: r8a77470: Add USB-DMAC device nodes

2018-10-25 Thread Biju Das
+ vinod koul > -Original Message- > From: Biju Das > Sent: 25 October 2018 15:54 > To: Rob Herring ; Mark Rutland > > Cc: Biju Das ; Simon Horman > ; Magnus Damm ; > linux-renesas-soc@vger.kernel.org; devicet...@vger.kernel.org; Geert > Uytterhoeven ; Chris Paterson > ; Fabrizio Castro

Re: [PATCH 1/2] dt-bindings: dmaengine: usb-dmac: Add binding for r8a77470

2018-10-25 Thread Vinod
On 25-10-18, 15:53, Biju Das wrote: > This patch adds usb high-speed dmac binding for r8a77470 (RZ/G1C) SoC. Where is the patch 2/2 ...? > Signed-off-by: Biju Das > --- > This patch tested against linux-next. > --- > Documentation/devicetree/bindings/dma/renesas,usb-dmac.txt | 1 + > 1 file

[PATCH 1/7] dt-bindings: phy: rcar-gen2: Add r8a77470 support

2018-10-25 Thread Biju Das
Add USB PHY support for r8a77470 SoC. Renesas RZ/G1C (R8A77470) USB PHY is similar to the R-Car Gen2 family, but has the below features compared to other RZ/G1 and R-Car Gen2/3 SoCs It has a shared pll reset for usbphy0/usbphy1 and this register reside in usbphy0 block Each USB2.0 host needs to

[PATCH 3/7] ARM: dts: r8a77470: Add USB PHY DT support

2018-10-25 Thread Biju Das
Define the r8a77470 generic part of the USB PHY device node. Signed-off-by: Biju Das --- This patch is tested against renesas-devel --- arch/arm/boot/dts/r8a77470.dtsi | 38 ++ 1 file changed, 38 insertions(+) diff --git a/arch/arm/boot/dts/r8a77470.dtsi

[PATCH 2/7] phy: renesas: phy-rcar-gen2: Add support for r8a77470

2018-10-25 Thread Biju Das
This patch adds support for RZ/G1C (r8a77470) SoC. RZ/G1C SoC has a PLL register shared between hsusb0 and hsusb1. Compared to other RZ/G1 and R-Car Gen2/3, USB Host needs to deassert the pll reset. Signed-off-by: Biju Das --- This patch is tested against phy-next ---