All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
@ 2019-04-17 23:45 Marcel Ziswiler
  2019-04-19  9:50 ` Marek Vasut
  2019-04-24  7:32 ` Sven Schwermer
  0 siblings, 2 replies; 7+ messages in thread
From: Marcel Ziswiler @ 2019-04-17 23:45 UTC (permalink / raw)
  To: u-boot

From: Peng Fan <peng.fan@nxp.com>

For Some USB mass storage devices, such as:
"
 - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
 - Class: (from Interface) Mass Storage
 - PacketSize: 64  Configurations: 1
 - Vendor: 0x0930  Product 0x6545 Version 1.16
"
When `usb read 0x80000000 0 0x2000`, we met
"EHCI timed out on TD - token=0x80008d80".

The devices does not support scsi VPD page, we are not able
to get the maximum transfer length for READ(10)/WRITE(10).

So we limit this to 256 blocks as READ(6).

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
(cherry picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)

Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>

---
This comes from NXP's downstream and has proven to tremendously improve
the situation with those odd USB mass storage aka memory sticks. This is
why I post it here asking whether or not this may be something
benefiting more people. Any feedback and suggestions are welcome.

Changes in v3:
- Drop the reference to the NXP internal MLK-xxx tracking number as
  suggested by Peng.

Changes in v2:
- Fixed spelling in comment as suggested by Igor.

 common/usb_storage.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/common/usb_storage.c b/common/usb_storage.c
index 8c889bb1a6..4e284645f5 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
 	 * there is enough free heap space left, but the SCSI READ(10) and
 	 * WRITE(10) commands are limited to 65535 blocks.
 	 */
-	blk = USHRT_MAX;
+	/*
+	 * Some USB mass storage devices have issues, limiting this to 256
+	 * fixes this.
+	 */
+	blk = 256;
 #else
 	blk = 20;
 #endif
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-17 23:45 [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256 Marcel Ziswiler
@ 2019-04-19  9:50 ` Marek Vasut
  2019-04-24  7:32 ` Sven Schwermer
  1 sibling, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2019-04-19  9:50 UTC (permalink / raw)
  To: u-boot

On 4/18/19 1:45 AM, Marcel Ziswiler wrote:
> From: Peng Fan <peng.fan@nxp.com>
> 
> For Some USB mass storage devices, such as:
> "
>  - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
>  - Class: (from Interface) Mass Storage
>  - PacketSize: 64  Configurations: 1
>  - Vendor: 0x0930  Product 0x6545 Version 1.16
> "
> When `usb read 0x80000000 0 0x2000`, we met
> "EHCI timed out on TD - token=0x80008d80".
> 
> The devices does not support scsi VPD page, we are not able
> to get the maximum transfer length for READ(10)/WRITE(10).
> 
> So we limit this to 256 blocks as READ(6).
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> (cherry picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
> 
> Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> 
> ---
> This comes from NXP's downstream and has proven to tremendously improve
> the situation with those odd USB mass storage aka memory sticks. This is
> why I post it here asking whether or not this may be something
> benefiting more people. Any feedback and suggestions are welcome.
> 
> Changes in v3:
> - Drop the reference to the NXP internal MLK-xxx tracking number as
>   suggested by Peng.
> 
> Changes in v2:
> - Fixed spelling in comment as suggested by Igor.
> 
>  common/usb_storage.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/common/usb_storage.c b/common/usb_storage.c
> index 8c889bb1a6..4e284645f5 100644
> --- a/common/usb_storage.c
> +++ b/common/usb_storage.c
> @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
>  	 * there is enough free heap space left, but the SCSI READ(10) and
>  	 * WRITE(10) commands are limited to 65535 blocks.
>  	 */
> -	blk = USHRT_MAX;
> +	/*
> +	 * Some USB mass storage devices have issues, limiting this to 256
> +	 * fixes this.
> +	 */
> +	blk = 256;

Seems like the previous comment, right above this new one, contradicts
this claim. Please update the original comment.

That said, there was an attempt to fix this properly by using adaptive
block length implementation, which would not impact devices that are not
broken. This hack above will degrade performance of such good devices.
Maybe you can resuscitate that adaptive approach instead ?

>  #else
>  	blk = 20;
>  #endif
> 


-- 
Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-17 23:45 [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256 Marcel Ziswiler
  2019-04-19  9:50 ` Marek Vasut
@ 2019-04-24  7:32 ` Sven Schwermer
  2019-04-24  8:57   ` Peng Fan
  1 sibling, 1 reply; 7+ messages in thread
From: Sven Schwermer @ 2019-04-24  7:32 UTC (permalink / raw)
  To: u-boot

Hi,

I am using an iMX7 with a DataTraveler 3.0 and I’m seeing the same timeout error. However, I have CONFIG_DM_USB=y configured so your patch doesn’t fix my issue. The USB class queries the EHCI driver for its maximum transfer size which is SIZE_MAX. I believe a solution that works with DM is necessary.

=> usb tree
USB device tree:
  1  Hub (480 Mb/s, 0mA)
  |  u-boot EHCI Host Controller
  |
  +-2  Mass Storage (480 Mb/s, 300mA)
       Kingston DataTraveler 3.0 50E54942694AE23017A55884

=> usb storage
  Device 0: Vendor: Kingston Rev: PMAP Prod: DataTraveler 3.0
            Type: Removable Hard Disk
            Capacity: 59184.0 MB = 57.7 GB (121208832 x 512)

Best regards,
Sven

> On 18 Apr 2019, at 01:45, Marcel Ziswiler <marcel@ziswiler.com> wrote:
> 
> From: Peng Fan <peng.fan@nxp.com>
> 
> For Some USB mass storage devices, such as:
> "
> - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
> - Class: (from Interface) Mass Storage
> - PacketSize: 64  Configurations: 1
> - Vendor: 0x0930  Product 0x6545 Version 1.16
> "
> When `usb read 0x80000000 0 0x2000`, we met
> "EHCI timed out on TD - token=0x80008d80".
> 
> The devices does not support scsi VPD page, we are not able
> to get the maximum transfer length for READ(10)/WRITE(10).
> 
> So we limit this to 256 blocks as READ(6).
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> (cherry picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
> 
> Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> 
> ---
> This comes from NXP's downstream and has proven to tremendously improve
> the situation with those odd USB mass storage aka memory sticks. This is
> why I post it here asking whether or not this may be something
> benefiting more people. Any feedback and suggestions are welcome.
> 
> Changes in v3:
> - Drop the reference to the NXP internal MLK-xxx tracking number as
>  suggested by Peng.
> 
> Changes in v2:
> - Fixed spelling in comment as suggested by Igor.
> 
> common/usb_storage.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/common/usb_storage.c b/common/usb_storage.c
> index 8c889bb1a6..4e284645f5 100644
> --- a/common/usb_storage.c
> +++ b/common/usb_storage.c
> @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
> 	 * there is enough free heap space left, but the SCSI READ(10) and
> 	 * WRITE(10) commands are limited to 65535 blocks.
> 	 */
> -	blk = USHRT_MAX;
> +	/*
> +	 * Some USB mass storage devices have issues, limiting this to 256
> +	 * fixes this.
> +	 */
> +	blk = 256;
> #else
> 	blk = 20;
> #endif
> -- 
> 2.20.1
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-24  7:32 ` Sven Schwermer
@ 2019-04-24  8:57   ` Peng Fan
  2019-04-24  8:59     ` Peng Fan
  0 siblings, 1 reply; 7+ messages in thread
From: Peng Fan @ 2019-04-24  8:57 UTC (permalink / raw)
  To: u-boot


> Subject: Re: [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
> 
> Hi,
> 
> I am using an iMX7 with a DataTraveler 3.0 and I’m seeing the same timeout
> error. However, I have CONFIG_DM_USB=y configured so your patch doesn’t
> fix my issue. The USB class queries the EHCI driver for its maximum transfer
> size which is SIZE_MAX. I believe a solution that works with DM is necessary.

Does the patch works for you with non DM usb?

Regards,
Peng

> 
> => usb tree
> USB device tree:
>   1  Hub (480 Mb/s, 0mA)
>   |  u-boot EHCI Host Controller
>   |
>   +-2  Mass Storage (480 Mb/s, 300mA)
>        Kingston DataTraveler 3.0 50E54942694AE23017A55884
> 
> => usb storage
>   Device 0: Vendor: Kingston Rev: PMAP Prod: DataTraveler 3.0
>             Type: Removable Hard Disk
>             Capacity: 59184.0 MB = 57.7 GB (121208832 x 512)
> 
> Best regards,
> Sven
> 
> > On 18 Apr 2019, at 01:45, Marcel Ziswiler <marcel@ziswiler.com> wrote:
> >
> > From: Peng Fan <peng.fan@nxp.com>
> >
> > For Some USB mass storage devices, such as:
> > "
> > - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
> > - Class: (from Interface) Mass Storage
> > - PacketSize: 64  Configurations: 1
> > - Vendor: 0x0930  Product 0x6545 Version 1.16 "
> > When `usb read 0x80000000 0 0x2000`, we met "EHCI timed out on TD -
> > token=0x80008d80".
> >
> > The devices does not support scsi VPD page, we are not able to get the
> > maximum transfer length for READ(10)/WRITE(10).
> >
> > So we limit this to 256 blocks as READ(6).
> >
> > Signed-off-by: Peng Fan <peng.fan@nxp.com>
> > Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> (cherry picked
> > from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
> >
> > Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> >
> > ---
> > This comes from NXP's downstream and has proven to tremendously
> > improve the situation with those odd USB mass storage aka memory
> > sticks. This is why I post it here asking whether or not this may be
> > something benefiting more people. Any feedback and suggestions are
> welcome.
> >
> > Changes in v3:
> > - Drop the reference to the NXP internal MLK-xxx tracking number as
> > suggested by Peng.
> >
> > Changes in v2:
> > - Fixed spelling in comment as suggested by Igor.
> >
> > common/usb_storage.c | 6 +++++-
> > 1 file changed, 5 insertions(+), 1 deletion(-)
> >
> > diff --git a/common/usb_storage.c b/common/usb_storage.c index
> > 8c889bb1a6..4e284645f5 100644
> > --- a/common/usb_storage.c
> > +++ b/common/usb_storage.c
> > @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct
> usb_device *udev,
> > 	 * there is enough free heap space left, but the SCSI READ(10) and
> > 	 * WRITE(10) commands are limited to 65535 blocks.
> > 	 */
> > -	blk = USHRT_MAX;
> > +	/*
> > +	 * Some USB mass storage devices have issues, limiting this to 256
> > +	 * fixes this.
> > +	 */
> > +	blk = 256;
> > #else
> > 	blk = 20;
> > #endif
> > --
> > 2.20.1
> >

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-24  8:57   ` Peng Fan
@ 2019-04-24  8:59     ` Peng Fan
  2019-04-24 11:09       ` Sven Schwermer
  0 siblings, 1 reply; 7+ messages in thread
From: Peng Fan @ 2019-04-24  8:59 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: U-Boot [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Peng Fan
> Sent: 2019年4月24日 16:57
> To: Sven Schwermer <sven@svenschwermer.de>; Marcel Ziswiler
> <marcel@ziswiler.com>
> Cc: Marek Vasut <marex@denx.de>; Marcel Ziswiler
> <marcel.ziswiler@toradex.com>; u-boot at lists.denx.de
> Subject: Re: [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
> 
> 
> > Subject: Re: [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
> >
> > Hi,
> >
> > I am using an iMX7 with a DataTraveler 3.0 and I’m seeing the same
> > timeout error. However, I have CONFIG_DM_USB=y configured so your
> > patch doesn’t fix my issue. The USB class queries the EHCI driver for
> > its maximum transfer size which is SIZE_MAX. I believe a solution that works
> with DM is necessary.
> 
> Does the patch works for you with non DM usb?

Just a quick hack with DM usb, please help verify whether it could fix your issue.

diff --git a/common/usb_storage.c b/common/usb_storage.c
index 8c889bb1a6..0eb63c21f4 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -965,7 +965,7 @@ static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
        }
 #endif

-       us->max_xfer_blk = blk;
+       us->max_xfer_blk = 256;
 }

 static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)

Regards,
Peng.

> 
> Regards,
> Peng
> 
> >
> > => usb tree
> > USB device tree:
> >   1  Hub (480 Mb/s, 0mA)
> >   |  u-boot EHCI Host Controller
> >   |
> >   +-2  Mass Storage (480 Mb/s, 300mA)
> >        Kingston DataTraveler 3.0 50E54942694AE23017A55884
> >
> > => usb storage
> >   Device 0: Vendor: Kingston Rev: PMAP Prod: DataTraveler 3.0
> >             Type: Removable Hard Disk
> >             Capacity: 59184.0 MB = 57.7 GB (121208832 x 512)
> >
> > Best regards,
> > Sven
> >
> > > On 18 Apr 2019, at 01:45, Marcel Ziswiler <marcel@ziswiler.com> wrote:
> > >
> > > From: Peng Fan <peng.fan@nxp.com>
> > >
> > > For Some USB mass storage devices, such as:
> > > "
> > > - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
> > > - Class: (from Interface) Mass Storage
> > > - PacketSize: 64  Configurations: 1
> > > - Vendor: 0x0930  Product 0x6545 Version 1.16 "
> > > When `usb read 0x80000000 0 0x2000`, we met "EHCI timed out on TD -
> > > token=0x80008d80".
> > >
> > > The devices does not support scsi VPD page, we are not able to get
> > > the maximum transfer length for READ(10)/WRITE(10).
> > >
> > > So we limit this to 256 blocks as READ(6).
> > >
> > > Signed-off-by: Peng Fan <peng.fan@nxp.com>
> > > Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> (cherry
> > > picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
> > >
> > > Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> > >
> > > ---
> > > This comes from NXP's downstream and has proven to tremendously
> > > improve the situation with those odd USB mass storage aka memory
> > > sticks. This is why I post it here asking whether or not this may be
> > > something benefiting more people. Any feedback and suggestions are
> > welcome.
> > >
> > > Changes in v3:
> > > - Drop the reference to the NXP internal MLK-xxx tracking number as
> > > suggested by Peng.
> > >
> > > Changes in v2:
> > > - Fixed spelling in comment as suggested by Igor.
> > >
> > > common/usb_storage.c | 6 +++++-
> > > 1 file changed, 5 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/common/usb_storage.c b/common/usb_storage.c index
> > > 8c889bb1a6..4e284645f5 100644
> > > --- a/common/usb_storage.c
> > > +++ b/common/usb_storage.c
> > > @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct
> > usb_device *udev,
> > > 	 * there is enough free heap space left, but the SCSI READ(10) and
> > > 	 * WRITE(10) commands are limited to 65535 blocks.
> > > 	 */
> > > -	blk = USHRT_MAX;
> > > +	/*
> > > +	 * Some USB mass storage devices have issues, limiting this to 256
> > > +	 * fixes this.
> > > +	 */
> > > +	blk = 256;
> > > #else
> > > 	blk = 20;
> > > #endif
> > > --
> > > 2.20.1
> > >
> 
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.d
> enx.de%2Flistinfo%2Fu-boot&amp;data=02%7C01%7CPeng.Fan%40nxp.com
> %7C92e70f2854ce4eda6cf908d6c892e747%7C686ea1d3bc2b4c6fa92cd99c5
> c301635%7C0%7C0%7C636916930623480866&amp;sdata=5DyOZrU55x3Y9
> 1wuaK%2BmKZsFu4PtUMwd81qNC91MshE%3D&amp;reserved=0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-24  8:59     ` Peng Fan
@ 2019-04-24 11:09       ` Sven Schwermer
  2019-04-24 12:07         ` Peng Fan
  0 siblings, 1 reply; 7+ messages in thread
From: Sven Schwermer @ 2019-04-24 11:09 UTC (permalink / raw)
  To: u-boot

Hi Peng,

Yes, this works.

Best regards,
Sven

> On 24 Apr 2019, at 10:59, Peng Fan <peng.fan@nxp.com> wrote:
> 
> 
> 
>> -----Original Message-----
>> From: U-Boot [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Peng Fan
>> Sent: 2019年4月24日 16:57
>> To: Sven Schwermer <sven@svenschwermer.de>; Marcel Ziswiler
>> <marcel@ziswiler.com>
>> Cc: Marek Vasut <marex@denx.de>; Marcel Ziswiler
>> <marcel.ziswiler@toradex.com>; u-boot at lists.denx.de
>> Subject: Re: [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
>> 
>> 
>>> Subject: Re: [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
>>> 
>>> Hi,
>>> 
>>> I am using an iMX7 with a DataTraveler 3.0 and I’m seeing the same
>>> timeout error. However, I have CONFIG_DM_USB=y configured so your
>>> patch doesn’t fix my issue. The USB class queries the EHCI driver for
>>> its maximum transfer size which is SIZE_MAX. I believe a solution that works
>> with DM is necessary.
>> 
>> Does the patch works for you with non DM usb?
> 
> Just a quick hack with DM usb, please help verify whether it could fix your issue.
> 
> diff --git a/common/usb_storage.c b/common/usb_storage.c
> index 8c889bb1a6..0eb63c21f4 100644
> --- a/common/usb_storage.c
> +++ b/common/usb_storage.c
> @@ -965,7 +965,7 @@ static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
>        }
> #endif
> 
> -       us->max_xfer_blk = blk;
> +       us->max_xfer_blk = 256;
> }
> 
> static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)
> 
> Regards,
> Peng.
> 
>> 
>> Regards,
>> Peng
>> 
>>> 
>>> => usb tree
>>> USB device tree:
>>>  1  Hub (480 Mb/s, 0mA)
>>>  |  u-boot EHCI Host Controller
>>>  |
>>>  +-2  Mass Storage (480 Mb/s, 300mA)
>>>       Kingston DataTraveler 3.0 50E54942694AE23017A55884
>>> 
>>> => usb storage
>>>  Device 0: Vendor: Kingston Rev: PMAP Prod: DataTraveler 3.0
>>>            Type: Removable Hard Disk
>>>            Capacity: 59184.0 MB = 57.7 GB (121208832 x 512)
>>> 
>>> Best regards,
>>> Sven
>>> 
>>>> On 18 Apr 2019, at 01:45, Marcel Ziswiler <marcel@ziswiler.com> wrote:
>>>> 
>>>> From: Peng Fan <peng.fan@nxp.com>
>>>> 
>>>> For Some USB mass storage devices, such as:
>>>> "
>>>> - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
>>>> - Class: (from Interface) Mass Storage
>>>> - PacketSize: 64  Configurations: 1
>>>> - Vendor: 0x0930  Product 0x6545 Version 1.16 "
>>>> When `usb read 0x80000000 0 0x2000`, we met "EHCI timed out on TD -
>>>> token=0x80008d80".
>>>> 
>>>> The devices does not support scsi VPD page, we are not able to get
>>>> the maximum transfer length for READ(10)/WRITE(10).
>>>> 
>>>> So we limit this to 256 blocks as READ(6).
>>>> 
>>>> Signed-off-by: Peng Fan <peng.fan@nxp.com>
>>>> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> (cherry
>>>> picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
>>>> 
>>>> Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
>>>> 
>>>> ---
>>>> This comes from NXP's downstream and has proven to tremendously
>>>> improve the situation with those odd USB mass storage aka memory
>>>> sticks. This is why I post it here asking whether or not this may be
>>>> something benefiting more people. Any feedback and suggestions are
>>> welcome.
>>>> 
>>>> Changes in v3:
>>>> - Drop the reference to the NXP internal MLK-xxx tracking number as
>>>> suggested by Peng.
>>>> 
>>>> Changes in v2:
>>>> - Fixed spelling in comment as suggested by Igor.
>>>> 
>>>> common/usb_storage.c | 6 +++++-
>>>> 1 file changed, 5 insertions(+), 1 deletion(-)
>>>> 
>>>> diff --git a/common/usb_storage.c b/common/usb_storage.c index
>>>> 8c889bb1a6..4e284645f5 100644
>>>> --- a/common/usb_storage.c
>>>> +++ b/common/usb_storage.c
>>>> @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct
>>> usb_device *udev,
>>>> 	 * there is enough free heap space left, but the SCSI READ(10) and
>>>> 	 * WRITE(10) commands are limited to 65535 blocks.
>>>> 	 */
>>>> -	blk = USHRT_MAX;
>>>> +	/*
>>>> +	 * Some USB mass storage devices have issues, limiting this to 256
>>>> +	 * fixes this.
>>>> +	 */
>>>> +	blk = 256;
>>>> #else
>>>> 	blk = 20;
>>>> #endif
>>>> --
>>>> 2.20.1
>>>> 
>> 
>> _______________________________________________
>> U-Boot mailing list
>> U-Boot at lists.denx.de
>> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.d
>> enx.de%2Flistinfo%2Fu-boot&amp;data=02%7C01%7CPeng.Fan%40nxp.com
>> %7C92e70f2854ce4eda6cf908d6c892e747%7C686ea1d3bc2b4c6fa92cd99c5
>> c301635%7C0%7C0%7C636916930623480866&amp;sdata=5DyOZrU55x3Y9
>> 1wuaK%2BmKZsFu4PtUMwd81qNC91MshE%3D&amp;reserved=0

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
  2019-04-24 11:09       ` Sven Schwermer
@ 2019-04-24 12:07         ` Peng Fan
  0 siblings, 0 replies; 7+ messages in thread
From: Peng Fan @ 2019-04-24 12:07 UTC (permalink / raw)
  To: u-boot



> Subject: Re: [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
> 
> Hi Peng,
> 
> Yes, this works.

Thanks for verification, so it is same issue.

Thanks,
Peng.

> 
> Best regards,
> Sven
> 
> > On 24 Apr 2019, at 10:59, Peng Fan <peng.fan@nxp.com> wrote:
> >
> >
> >
> >> -----Original Message-----
> >> From: U-Boot [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Peng
> >> Fan
> >> Sent: 2019年4月24日 16:57
> >> To: Sven Schwermer <sven@svenschwermer.de>; Marcel Ziswiler
> >> <marcel@ziswiler.com>
> >> Cc: Marek Vasut <marex@denx.de>; Marcel Ziswiler
> >> <marcel.ziswiler@toradex.com>; u-boot at lists.denx.de
> >> Subject: Re: [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to
> >> 256
> >>
> >>
> >>> Subject: Re: [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256
> >>>
> >>> Hi,
> >>>
> >>> I am using an iMX7 with a DataTraveler 3.0 and I’m seeing the same
> >>> timeout error. However, I have CONFIG_DM_USB=y configured so your
> >>> patch doesn’t fix my issue. The USB class queries the EHCI driver
> >>> for its maximum transfer size which is SIZE_MAX. I believe a
> >>> solution that works
> >> with DM is necessary.
> >>
> >> Does the patch works for you with non DM usb?
> >
> > Just a quick hack with DM usb, please help verify whether it could fix your
> issue.
> >
> > diff --git a/common/usb_storage.c b/common/usb_storage.c index
> > 8c889bb1a6..0eb63c21f4 100644
> > --- a/common/usb_storage.c
> > +++ b/common/usb_storage.c
> > @@ -965,7 +965,7 @@ static void usb_stor_set_max_xfer_blk(struct
> usb_device *udev,
> >        }
> > #endif
> >
> > -       us->max_xfer_blk = blk;
> > +       us->max_xfer_blk = 256;
> > }
> >
> > static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss)
> >
> > Regards,
> > Peng.
> >
> >>
> >> Regards,
> >> Peng
> >>
> >>>
> >>> => usb tree
> >>> USB device tree:
> >>>  1  Hub (480 Mb/s, 0mA)
> >>>  |  u-boot EHCI Host Controller
> >>>  |
> >>>  +-2  Mass Storage (480 Mb/s, 300mA)
> >>>       Kingston DataTraveler 3.0 50E54942694AE23017A55884
> >>>
> >>> => usb storage
> >>>  Device 0: Vendor: Kingston Rev: PMAP Prod: DataTraveler 3.0
> >>>            Type: Removable Hard Disk
> >>>            Capacity: 59184.0 MB = 57.7 GB (121208832 x 512)
> >>>
> >>> Best regards,
> >>> Sven
> >>>
> >>>> On 18 Apr 2019, at 01:45, Marcel Ziswiler <marcel@ziswiler.com>
> wrote:
> >>>>
> >>>> From: Peng Fan <peng.fan@nxp.com>
> >>>>
> >>>> For Some USB mass storage devices, such as:
> >>>> "
> >>>> - Kingston DataTraveler 2.0 001D7D06CF09B04199C7B3EA
> >>>> - Class: (from Interface) Mass Storage
> >>>> - PacketSize: 64  Configurations: 1
> >>>> - Vendor: 0x0930  Product 0x6545 Version 1.16 "
> >>>> When `usb read 0x80000000 0 0x2000`, we met "EHCI timed out on TD -
> >>>> token=0x80008d80".
> >>>>
> >>>> The devices does not support scsi VPD page, we are not able to get
> >>>> the maximum transfer length for READ(10)/WRITE(10).
> >>>>
> >>>> So we limit this to 256 blocks as READ(6).
> >>>>
> >>>> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> >>>> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> (cherry
> >>>> picked from commit df0052575b2bc9d66ae73584768e1a457ed5d914)
> >>>>
> >>>> Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> >>>>
> >>>> ---
> >>>> This comes from NXP's downstream and has proven to tremendously
> >>>> improve the situation with those odd USB mass storage aka memory
> >>>> sticks. This is why I post it here asking whether or not this may
> >>>> be something benefiting more people. Any feedback and suggestions
> >>>> are
> >>> welcome.
> >>>>
> >>>> Changes in v3:
> >>>> - Drop the reference to the NXP internal MLK-xxx tracking number as
> >>>> suggested by Peng.
> >>>>
> >>>> Changes in v2:
> >>>> - Fixed spelling in comment as suggested by Igor.
> >>>>
> >>>> common/usb_storage.c | 6 +++++-
> >>>> 1 file changed, 5 insertions(+), 1 deletion(-)
> >>>>
> >>>> diff --git a/common/usb_storage.c b/common/usb_storage.c index
> >>>> 8c889bb1a6..4e284645f5 100644
> >>>> --- a/common/usb_storage.c
> >>>> +++ b/common/usb_storage.c
> >>>> @@ -949,7 +949,11 @@ static void usb_stor_set_max_xfer_blk(struct
> >>> usb_device *udev,
> >>>> 	 * there is enough free heap space left, but the SCSI READ(10) and
> >>>> 	 * WRITE(10) commands are limited to 65535 blocks.
> >>>> 	 */
> >>>> -	blk = USHRT_MAX;
> >>>> +	/*
> >>>> +	 * Some USB mass storage devices have issues, limiting this to 256
> >>>> +	 * fixes this.
> >>>> +	 */
> >>>> +	blk = 256;
> >>>> #else
> >>>> 	blk = 20;
> >>>> #endif
> >>>> --
> >>>> 2.20.1
> >>>>
> >>
> >> _______________________________________________
> >> U-Boot mailing list
> >> U-Boot at lists.denx.de
> >> https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis
> >> ts.d
> enx.de%2Flistinfo%2Fu-boot&amp;data=02%7C01%7CPeng.Fan%40nxp.com
> >> %7C92e70f2854ce4eda6cf908d6c892e747%7C686ea1d3bc2b4c6fa92cd9
> 9c5
> >>
> c301635%7C0%7C0%7C636916930623480866&amp;sdata=5DyOZrU55x3Y9
> >> 1wuaK%2BmKZsFu4PtUMwd81qNC91MshE%3D&amp;reserved=0

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-04-24 12:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-17 23:45 [U-Boot] [RFC PATCH v3] usb: limit USB_MAX_XFER_BLK to 256 Marcel Ziswiler
2019-04-19  9:50 ` Marek Vasut
2019-04-24  7:32 ` Sven Schwermer
2019-04-24  8:57   ` Peng Fan
2019-04-24  8:59     ` Peng Fan
2019-04-24 11:09       ` Sven Schwermer
2019-04-24 12:07         ` Peng Fan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.