Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-10-15 Thread Marek Vasut
On 10/15/20 11:45 AM, Peng Fan wrote: Hi, [...] >>>>>> Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function >>>>>> >>>>>> On 9/16/20 2:57 PM, peng@nxp.com wrote: >>>>>> [...] >>>>>>

RE: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-10-15 Thread Peng Fan
Marek, > Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function > > On 9/27/20 4:38 AM, Peng Fan wrote: > > Hi Marek, > > > >> Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function > >> > >> On 9/16/20 3:56

Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-27 Thread Marek Vasut
On 9/27/20 4:38 AM, Peng Fan wrote: > Hi Marek, > >> Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function >> >> On 9/16/20 3:56 PM, Peng Fan wrote: >>> Hi Marek, >> >> Hi, >> >>>> Subject: Re: [PATCH 13/13] usb: ehci-mx

RE: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-26 Thread Peng Fan
Hi Marek, > Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function > > On 9/16/20 3:56 PM, Peng Fan wrote: > > Hi Marek, > > Hi, > > >> Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function > >> > >> On 9/16/20 2:57

Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-16 Thread Marek Vasut
On 9/16/20 3:56 PM, Peng Fan wrote: > Hi Marek, Hi, >> Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function >> >> On 9/16/20 2:57 PM, peng@nxp.com wrote: >> [...] >>> +++ b/drivers/usb/host/ehci-mx6.c >>> @@ -735,13 +735,16 @@

RE: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-16 Thread Peng Fan
Hi Marek, > Subject: Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function > > On 9/16/20 2:57 PM, peng@nxp.com wrote: > [...] > > +++ b/drivers/usb/host/ehci-mx6.c > > @@ -735,13 +735,16 @@ static int ehci_usb_bind(struct udevice *dev) > > * the d

Re: [PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-16 Thread Marek Vasut
On 9/16/20 2:57 PM, peng@nxp.com wrote: [...] > +++ b/drivers/usb/host/ehci-mx6.c > @@ -735,13 +735,16 @@ static int ehci_usb_bind(struct udevice *dev) >* the driver is fully converted to DT probing. >*/ > u32 controller_spacing; > - if (IS_ENABLED(CONFIG_MX6)) > -

[PATCH 13/13] usb: ehci-mx6: Improve the bind function

2020-09-16 Thread peng . fan
From: Ye Li To avoid calling devfdt_get_addr_index in bind, which introduces much overhead, checks the req_seq and only call the devfdt_get_addr_index when the req_seq (usb alias) is not set in DTS Signed-off-by: Ye Li Reviewed-by: Peng Fan Signed-off-by: Peng Fan --- drivers/usb/host/ehci-m