* [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs
@ 2012-07-19 20:18 Benoît Thébaudeau
2012-07-27 12:56 ` Marek Vasut
2012-08-09 21:53 ` [U-Boot] [PATCH v3 6/8] " Benoît Thébaudeau
0 siblings, 2 replies; 4+ messages in thread
From: Benoît Thébaudeau @ 2012-07-19 20:18 UTC (permalink / raw)
To: u-boot
Adjust time-out value for the new EHCI mechanism.
Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Ilya Yanok <ilya.yanok@cogentembedded.com>
Cc: Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
---
.../common/usb_storage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git u-boot-usb-1b4bd0e.orig/common/usb_storage.c u-boot-usb-1b4bd0e/common/usb_storage.c
index 135c940..3cd2e22 100644
--- u-boot-usb-1b4bd0e.orig/common/usb_storage.c
+++ u-boot-usb-1b4bd0e/common/usb_storage.c
@@ -712,7 +712,7 @@ int usb_stor_BBB_transport(ccb *srb, struct us_data *us)
else
pipe = pipeout;
result = usb_bulk_msg(us->pusb_dev, pipe, srb->pdata, srb->datalen,
- &data_actlen, USB_CNTL_TIMEOUT * 5);
+ &data_actlen, USB_CNTL_TIMEOUT * 100);
/* special handling of STALL in DATA phase */
if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
USB_STOR_PRINTF("DATA:stall\n");
^ permalink raw reply related [flat|nested] 4+ messages in thread* [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs
2012-07-19 20:18 [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs Benoît Thébaudeau
@ 2012-07-27 12:56 ` Marek Vasut
2012-07-27 14:04 ` Benoît Thébaudeau
2012-08-09 21:53 ` [U-Boot] [PATCH v3 6/8] " Benoît Thébaudeau
1 sibling, 1 reply; 4+ messages in thread
From: Marek Vasut @ 2012-07-27 12:56 UTC (permalink / raw)
To: u-boot
Dear Beno?t Th?baudeau,
> Adjust time-out value for the new EHCI mechanism.
>
[...]
Ok, I really like this set. I believe it's only one or two reposts away from
upstream and I'd love to have it in next release (not this one, as we can't test
it in 3 days). I admit I'm not the easiest and fastest custodian, so pardon me
at that.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs
2012-07-27 12:56 ` Marek Vasut
@ 2012-07-27 14:04 ` Benoît Thébaudeau
0 siblings, 0 replies; 4+ messages in thread
From: Benoît Thébaudeau @ 2012-07-27 14:04 UTC (permalink / raw)
To: u-boot
Dear Marek,
On Fri, Jul 27, 2012 at 02:56:50 PM, Marek Vasut wrote:
> > Adjust time-out value for the new EHCI mechanism.
> >
> [...]
>
> Ok, I really like this set.
Nice to read.
> I believe it's only one or two reposts
> away from
> upstream and I'd love to have it in next release (not this one, as we
> can't test
> it in 3 days). I admit I'm not the easiest and fastest custodian, so
> pardon me
> at that.
I pardon you.
Regards,
Beno?t
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH v3 6/8] usb_storage: Adjust time-outs
2012-07-19 20:18 [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs Benoît Thébaudeau
2012-07-27 12:56 ` Marek Vasut
@ 2012-08-09 21:53 ` Benoît Thébaudeau
1 sibling, 0 replies; 4+ messages in thread
From: Benoît Thébaudeau @ 2012-08-09 21:53 UTC (permalink / raw)
To: u-boot
Adjust time-out value for the new EHCI mechanism.
Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Ilya Yanok <ilya.yanok@cogentembedded.com>
Cc: Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
---
Changes for v2: None.
Changes for v3: None.
.../common/usb_storage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git u-boot-usb-8d5fb14.orig/common/usb_storage.c u-boot-usb-8d5fb14/common/usb_storage.c
index 822bd64..f0798b2 100644
--- u-boot-usb-8d5fb14.orig/common/usb_storage.c
+++ u-boot-usb-8d5fb14/common/usb_storage.c
@@ -712,7 +712,7 @@ int usb_stor_BBB_transport(ccb *srb, struct us_data *us)
else
pipe = pipeout;
result = usb_bulk_msg(us->pusb_dev, pipe, srb->pdata, srb->datalen,
- &data_actlen, USB_CNTL_TIMEOUT * 5);
+ &data_actlen, USB_CNTL_TIMEOUT * 100);
/* special handling of STALL in DATA phase */
if ((result < 0) && (us->pusb_dev->status & USB_ST_STALLED)) {
USB_STOR_PRINTF("DATA:stall\n");
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-08-09 21:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-19 20:18 [U-Boot] [PATCH 5/5] usb_storage: Adjust time-outs Benoît Thébaudeau
2012-07-27 12:56 ` Marek Vasut
2012-07-27 14:04 ` Benoît Thébaudeau
2012-08-09 21:53 ` [U-Boot] [PATCH v3 6/8] " Benoît Thébaudeau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox