* [PATCH v2] arm64: dts: ls1088a: Add USB support @ 2017-09-13 9:10 yinbo.zhu at nxp.com 2017-09-22 6:54 ` Shawn Guo 0 siblings, 1 reply; 9+ messages in thread From: yinbo.zhu at nxp.com @ 2017-09-13 9:10 UTC (permalink / raw) To: linux-arm-kernel From: "yinbo.zhu" <yinbo.zhu@nxp.com> Fix the issue that usb is not detected on ls1088ardb Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> Signed-off-by: Ran Wang <ran.wang_1@nxp.com> --- arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts index 213abb72de93..6c3c3bc4b681 100644 --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts @@ -118,6 +118,14 @@ status = "okay"; }; +&usb0 { + status = "okay"; +}; + +&usb1 { + status = "okay"; +}; + &esdhc { status = "okay"; }; diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi index c144d06a6e33..c23fede8cf5d 100644 --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi @@ -359,6 +359,26 @@ status = "disabled"; }; + usb0: usb3 at 3100000 { + compatible = "snps,dwc3"; + reg = <0x0 0x3100000 0x0 0x10000>; + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; + dr_mode = "host"; + snps,quirk-frame-length-adjustment = <0x20>; + snps,dis_rxdet_inp3_quirk; + status = "disabled"; + }; + + usb1: usb3 at 3110000 { + compatible = "snps,dwc3"; + reg = <0x0 0x3110000 0x0 0x10000>; + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; + dr_mode = "host"; + snps,quirk-frame-length-adjustment = <0x20>; + snps,dis_rxdet_inp3_quirk; + status = "disabled"; + }; + sata: sata at 3200000 { compatible = "fsl,ls1088a-ahci"; reg = <0x0 0x3200000 0x0 0x10000>, -- 2.14.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-09-13 9:10 [PATCH v2] arm64: dts: ls1088a: Add USB support yinbo.zhu at nxp.com @ 2017-09-22 6:54 ` Shawn Guo 2017-10-24 9:14 ` Yinbo Zhu 0 siblings, 1 reply; 9+ messages in thread From: Shawn Guo @ 2017-09-22 6:54 UTC (permalink / raw) To: linux-arm-kernel On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > Fix the issue that usb is not detected on ls1088ardb It's not really about fixing issue but adding support. > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > --- You should better have a version history here to tell what's changed between version. > arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ > arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ > 2 files changed, 28 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > index 213abb72de93..6c3c3bc4b681 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > @@ -118,6 +118,14 @@ > status = "okay"; > }; > > +&usb0 { > + status = "okay"; > +}; > + > +&usb1 { > + status = "okay"; > +}; > + > &esdhc { Please sort these labeled nodes alphabetically. Shawn > status = "okay"; > }; > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > index c144d06a6e33..c23fede8cf5d 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > @@ -359,6 +359,26 @@ > status = "disabled"; > }; > > + usb0: usb3 at 3100000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3100000 0x0 0x10000>; > + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > + usb1: usb3 at 3110000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3110000 0x0 0x10000>; > + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > sata: sata at 3200000 { > compatible = "fsl,ls1088a-ahci"; > reg = <0x0 0x3200000 0x0 0x10000>, > -- > 2.14.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-09-22 6:54 ` Shawn Guo @ 2017-10-24 9:14 ` Yinbo Zhu 2017-11-14 8:00 ` Yinbo Zhu 0 siblings, 1 reply; 9+ messages in thread From: Yinbo Zhu @ 2017-10-24 9:14 UTC (permalink / raw) To: linux-arm-kernel -----Original Message----- From: Shawn Guo [mailto:shawnguo at kernel.org] Sent: Friday, September 22, 2017 2:55 PM To: Yinbo Zhu <yinbo.zhu@nxp.com> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v2] arm64: dts: ls1088a: Add USB support On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > Fix the issue that usb is not detected on ls1088ardb It's not really about fixing issue but adding support. The patch had been tested on upstream 4.14 code, it can fix the issue. > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > --- You should better have a version history here to tell what's changed between version. I will add a version history on next v3 patch > arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ > arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ > 2 files changed, 28 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > index 213abb72de93..6c3c3bc4b681 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > @@ -118,6 +118,14 @@ > status = "okay"; > }; > > +&usb0 { > + status = "okay"; > +}; > + > +&usb1 { > + status = "okay"; > +}; > + > &esdhc { Please sort these labeled nodes alphabetically. Shawn > status = "okay"; > }; > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > index c144d06a6e33..c23fede8cf5d 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > @@ -359,6 +359,26 @@ > status = "disabled"; > }; > > + usb0: usb3 at 3100000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3100000 0x0 0x10000>; > + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > + usb1: usb3 at 3110000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3110000 0x0 0x10000>; > + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > sata: sata at 3200000 { > compatible = "fsl,ls1088a-ahci"; > reg = <0x0 0x3200000 0x0 0x10000>, > -- > 2.14.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-10-24 9:14 ` Yinbo Zhu @ 2017-11-14 8:00 ` Yinbo Zhu 2017-11-16 6:58 ` Shawn Guo 2017-11-22 1:32 ` Yinbo Zhu 0 siblings, 2 replies; 9+ messages in thread From: Yinbo Zhu @ 2017-11-14 8:00 UTC (permalink / raw) To: linux-arm-kernel -----Original Message----- From: Yinbo Zhu Sent: Tuesday, October 24, 2017 5:15 PM To: Shawn Guo <shawnguo@kernel.org> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support -----Original Message----- From: Shawn Guo [mailto:shawnguo at kernel.org] Sent: Friday, September 22, 2017 2:55 PM To: Yinbo Zhu <yinbo.zhu@nxp.com> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v2] arm64: dts: ls1088a: Add USB support On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > Fix the issue that usb is not detected on ls1088ardb >It's not really about fixing issue but adding support. The patch had been tested on upstream 4.14 code, it can fix the issue. > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > --- >You should better have a version history here to tell what's changed between version. >I will add a version history on next v3 patch Hi, I had modified the code as v4 version, https://patchwork.kernel.org/patch/10027393/ please check. Thanks, BRs > arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ > arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ > 2 files changed, 28 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > index 213abb72de93..6c3c3bc4b681 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > @@ -118,6 +118,14 @@ > status = "okay"; > }; > > +&usb0 { > + status = "okay"; > +}; > + > +&usb1 { > + status = "okay"; > +}; > + > &esdhc { >Please sort these labeled nodes alphabetically. >Shawn > status = "okay"; > }; > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > index c144d06a6e33..c23fede8cf5d 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > @@ -359,6 +359,26 @@ > status = "disabled"; > }; > > + usb0: usb3 at 3100000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3100000 0x0 0x10000>; > + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > + usb1: usb3 at 3110000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3110000 0x0 0x10000>; > + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > sata: sata at 3200000 { > compatible = "fsl,ls1088a-ahci"; > reg = <0x0 0x3200000 0x0 0x10000>, > -- > 2.14.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-11-14 8:00 ` Yinbo Zhu @ 2017-11-16 6:58 ` Shawn Guo 2017-11-22 1:32 ` Yinbo Zhu 1 sibling, 0 replies; 9+ messages in thread From: Shawn Guo @ 2017-11-16 6:58 UTC (permalink / raw) To: linux-arm-kernel On Tue, Nov 14, 2017 at 08:00:00AM +0000, Yinbo Zhu wrote: > On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > > > Fix the issue that usb is not detected on ls1088ardb > > >It's not really about fixing issue but adding support. > > The patch had been tested on upstream 4.14 code, it can fix the issue. > > > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > > --- > > >You should better have a version history here to tell what's changed between version. > > >I will add a version history on next v3 patch > Hi, > > I had modified the code as v4 version, > https://patchwork.kernel.org/patch/10027393/ > please check. You should copy me on that patch, if you expect me to pick it up. Shawn ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-11-14 8:00 ` Yinbo Zhu 2017-11-16 6:58 ` Shawn Guo @ 2017-11-22 1:32 ` Yinbo Zhu 2017-12-07 7:33 ` Yinbo Zhu 1 sibling, 1 reply; 9+ messages in thread From: Yinbo Zhu @ 2017-11-22 1:32 UTC (permalink / raw) To: linux-arm-kernel Hi -----Original Message----- From: Yinbo Zhu Sent: Tuesday, November 14, 2017 4:00 PM To: 'Shawn Guo' <shawnguo@kernel.org> Cc: 'Rob Herring' <robh+dt@kernel.org>; 'Mark Rutland' <mark.rutland@arm.com>; 'Catalin Marinas )' <catalin.marinas@arm.com>; 'Will Deacon )' <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; 'Raghav Dogra' <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; 'open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS' <devicetree@vger.kernel.org>; 'linux-arm-kernel at lists.infradead.org' <linux-arm-kernel@lists.infradead.org>; 'open list' <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support -----Original Message----- From: Yinbo Zhu Sent: Tuesday, October 24, 2017 5:15 PM To: Shawn Guo <shawnguo@kernel.org> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support -----Original Message----- From: Shawn Guo [mailto:shawnguo at kernel.org] Sent: Friday, September 22, 2017 2:55 PM To: Yinbo Zhu <yinbo.zhu@nxp.com> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v2] arm64: dts: ls1088a: Add USB support On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > Fix the issue that usb is not detected on ls1088ardb >It's not really about fixing issue but adding support. The patch had been tested on upstream 4.14 code, it can fix the issue. > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > --- >You should better have a version history here to tell what's changed between version. >I will add a version history on next v3 patch Hi, I had modified the code as v4 version, https://patchwork.kernel.org/patch/10027393/ please check. Thanks, BRs > arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ > arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ > 2 files changed, 28 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > index 213abb72de93..6c3c3bc4b681 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > @@ -118,6 +118,14 @@ > status = "okay"; > }; > > +&usb0 { > + status = "okay"; > +}; > + > +&usb1 { > + status = "okay"; > +}; > + > &esdhc { >Please sort these labeled nodes alphabetically. >Shawn > status = "okay"; > }; > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > index c144d06a6e33..c23fede8cf5d 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > @@ -359,6 +359,26 @@ > status = "disabled"; > }; > > + usb0: usb3 at 3100000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3100000 0x0 0x10000>; > + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > + usb1: usb3 at 3110000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3110000 0x0 0x10000>; > + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > sata: sata at 3200000 { > compatible = "fsl,ls1088a-ahci"; > reg = <0x0 0x3200000 0x0 0x10000>, > -- > 2.14.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-11-22 1:32 ` Yinbo Zhu @ 2017-12-07 7:33 ` Yinbo Zhu 2017-12-20 2:52 ` Shawn Guo 0 siblings, 1 reply; 9+ messages in thread From: Yinbo Zhu @ 2017-12-07 7:33 UTC (permalink / raw) To: linux-arm-kernel Hi shawn guo, If my patch has no other issue, Can you help me push it to upstream. Thanks. BRs. -----Original Message----- From: Yinbo Zhu Sent: Wednesday, November 22, 2017 9:32 AM To: 'Shawn Guo' <shawnguo@kernel.org> Cc: 'Rob Herring' <robh+dt@kernel.org>; 'Mark Rutland' <mark.rutland@arm.com>; 'Catalin Marinas )' <catalin.marinas@arm.com>; 'Will Deacon )' <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; 'Raghav Dogra' <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; 'open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS' <devicetree@vger.kernel.org>; 'linux-arm-kernel at lists.infradead.org' <linux-arm-kernel@lists.infradead.org>; 'open list' <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support Hi -----Original Message----- From: Yinbo Zhu Sent: Tuesday, November 14, 2017 4:00 PM To: 'Shawn Guo' <shawnguo@kernel.org> Cc: 'Rob Herring' <robh+dt@kernel.org>; 'Mark Rutland' <mark.rutland@arm.com>; 'Catalin Marinas )' <catalin.marinas@arm.com>; 'Will Deacon )' <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; 'Raghav Dogra' <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; 'open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS' <devicetree@vger.kernel.org>; 'linux-arm-kernel at lists.infradead.org' <linux-arm-kernel@lists.infradead.org>; 'open list' <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support -----Original Message----- From: Yinbo Zhu Sent: Tuesday, October 24, 2017 5:15 PM To: Shawn Guo <shawnguo@kernel.org> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: RE: [PATCH v2] arm64: dts: ls1088a: Add USB support -----Original Message----- From: Shawn Guo [mailto:shawnguo at kernel.org] Sent: Friday, September 22, 2017 2:55 PM To: Yinbo Zhu <yinbo.zhu@nxp.com> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v2] arm64: dts: ls1088a: Add USB support On Wed, Sep 13, 2017 at 05:10:09PM +0800, yinbo.zhu at nxp.com wrote: > From: "yinbo.zhu" <yinbo.zhu@nxp.com> > > Fix the issue that usb is not detected on ls1088ardb >It's not really about fixing issue but adding support. The patch had been tested on upstream 4.14 code, it can fix the issue. > > Signed-off-by: yinbo.zhu <yinbo.zhu@nxp.com> > Signed-off-by: Ran Wang <ran.wang_1@nxp.com> > --- >You should better have a version history here to tell what's changed between version. >I will add a version history on next v3 patch Hi, I had modified the code as v4 version, https://patchwork.kernel.org/patch/10027393/ please check. Thanks, BRs > arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts | 8 ++++++++ > arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 20 ++++++++++++++++++++ > 2 files changed, 28 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > index 213abb72de93..6c3c3bc4b681 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dts > @@ -118,6 +118,14 @@ > status = "okay"; > }; > > +&usb0 { > + status = "okay"; > +}; > + > +&usb1 { > + status = "okay"; > +}; > + > &esdhc { >Please sort these labeled nodes alphabetically. >Shawn > status = "okay"; > }; > diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > index c144d06a6e33..c23fede8cf5d 100644 > --- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > +++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi > @@ -359,6 +359,26 @@ > status = "disabled"; > }; > > + usb0: usb3 at 3100000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3100000 0x0 0x10000>; > + interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > + usb1: usb3 at 3110000 { > + compatible = "snps,dwc3"; > + reg = <0x0 0x3110000 0x0 0x10000>; > + interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; > + dr_mode = "host"; > + snps,quirk-frame-length-adjustment = <0x20>; > + snps,dis_rxdet_inp3_quirk; > + status = "disabled"; > + }; > + > sata: sata at 3200000 { > compatible = "fsl,ls1088a-ahci"; > reg = <0x0 0x3200000 0x0 0x10000>, > -- > 2.14.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-12-07 7:33 ` Yinbo Zhu @ 2017-12-20 2:52 ` Shawn Guo 2017-12-20 4:42 ` Yinbo Zhu 0 siblings, 1 reply; 9+ messages in thread From: Shawn Guo @ 2017-12-20 2:52 UTC (permalink / raw) To: linux-arm-kernel On Thu, Dec 07, 2017 at 07:33:28AM +0000, Yinbo Zhu wrote: > Hi shawn guo, > > If my patch has no other issue, > Can you help me push it to upstream. Are you talking about v4 patch? First of all, I cannot find v4 in my mailbox. That said, it seems you did not send the patch to me. Secondly, by checking the patch on patchwork, the usb nodes in fsl-ls1088a-rdb.dts do not sorted alphabetically in label name. Shawn ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] arm64: dts: ls1088a: Add USB support 2017-12-20 2:52 ` Shawn Guo @ 2017-12-20 4:42 ` Yinbo Zhu 0 siblings, 0 replies; 9+ messages in thread From: Yinbo Zhu @ 2017-12-20 4:42 UTC (permalink / raw) To: linux-arm-kernel -----Original Message----- From: Shawn Guo [mailto:shawnguo at kernel.org] Sent: Wednesday, December 20, 2017 10:53 AM To: Yinbo Zhu <yinbo.zhu@nxp.com> Cc: Rob Herring <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Catalin Marinas ) <catalin.marinas@arm.com>; Will Deacon ) <will.deacon@arm.com>; Harninder Rai <harninder.rai@nxp.com>; Raghav Dogra <raghav.dogra@nxp.com>; Ashish Kumar <ashish.kumar@nxp.com>; Andy Tang <andy.tang@nxp.com>; open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS <devicetree@vger.kernel.org>; linux-arm-kernel at lists.infradead.org; open list <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v2] arm64: dts: ls1088a: Add USB support On Thu, Dec 07, 2017 at 07:33:28AM +0000, Yinbo Zhu wrote: > Hi shawn guo, > > If my patch has no other issue, > Can you help me push it to upstream. >Are you talking about v4 patch? First of all, I cannot find v4 in my mailbox. That said, it seems you did not send >the patch to me. >Secondly, by checking the patch on patchwork, the usb nodes in fsl-ls1088a-rdb.dts do not sorted alphabetically >in label name. >Shawn Hi shawn, I will change the code as follows, right? &esdhc { status = "okay"; }; ... +&usb0 { + status = "okay"; +}; + +&usb1 { + status = "okay"; +}; + https://patchwork.kernel.org/patch/10059097/ Thanks Yinbo. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-12-20 4:42 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-09-13 9:10 [PATCH v2] arm64: dts: ls1088a: Add USB support yinbo.zhu at nxp.com 2017-09-22 6:54 ` Shawn Guo 2017-10-24 9:14 ` Yinbo Zhu 2017-11-14 8:00 ` Yinbo Zhu 2017-11-16 6:58 ` Shawn Guo 2017-11-22 1:32 ` Yinbo Zhu 2017-12-07 7:33 ` Yinbo Zhu 2017-12-20 2:52 ` Shawn Guo 2017-12-20 4:42 ` Yinbo Zhu
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).