Re: [U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2020-02-28 Thread Marek Vasut
On 2/26/20 10:16 AM, Lukasz Majewski wrote: [...] > diff --git a/drivers/usb/host/ehci-mx5.c > b/drivers/usb/host/ehci-mx5.c index 0b32728c57..4db513f4e5 100644 > --- a/drivers/usb/host/ehci-mx5.c > +++ b/drivers/usb/host/ehci-mx5.c > @@ -301,6 +301,22 @@ static int ehci_usb_ofd

Re: [U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2020-02-26 Thread Lukasz Majewski
Dear Marek, > On 2/24/20 4:28 PM, Lukasz Majewski wrote: > > Hi Marek, > > Hi, > > >> On Thu, 20 Jun 2019 22:53:58 +0200 > >> Marek Vasut wrote: > >> > >>> It is likely that the DM conversion of EHCI iMX5 driver was a > >>> derivative of EHCI VF, however the conversion is incomplete and is

Re: [U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2020-02-25 Thread Marek Vasut
On 2/24/20 4:28 PM, Lukasz Majewski wrote: > Hi Marek, Hi, >> On Thu, 20 Jun 2019 22:53:58 +0200 >> Marek Vasut wrote: >> >>> It is likely that the DM conversion of EHCI iMX5 driver was a >>> derivative of EHCI VF, however the conversion is incomplete and is >>> missing the bind workaround, whic

Re: [U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2020-02-24 Thread Lukasz Majewski
Hi Marek, > On Thu, 20 Jun 2019 22:53:58 +0200 > Marek Vasut wrote: > > > It is likely that the DM conversion of EHCI iMX5 driver was a > > derivative of EHCI VF, however the conversion is incomplete and is > > missing the bind workaround, which updates dev->seq number. Without > > this, all con

Re: [U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2019-06-24 Thread Lukasz Majewski
On Thu, 20 Jun 2019 22:53:58 +0200 Marek Vasut wrote: > It is likely that the DM conversion of EHCI iMX5 driver was a > derivative of EHCI VF, however the conversion is incomplete and is > missing the bind workaround, which updates dev->seq number. Without > this, all controllers have dev->seq nu

[U-Boot] [PATCH] usb: ehci-mx5: Fix bus enumeration for DM case

2019-06-20 Thread Marek Vasut
It is likely that the DM conversion of EHCI iMX5 driver was a derivative of EHCI VF, however the conversion is incomplete and is missing the bind workaround, which updates dev->seq number. Without this, all controllers have dev->seq number 0 . Add this bind workaround into EHCI iMX5 driver as well.