public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 4/5] usb_storage: Restore non-EHCI support
@ 2012-07-19 20:18 Benoît Thébaudeau
  2012-07-27 12:55 ` Marek Vasut
  2012-08-09 21:52 ` [U-Boot] [PATCH v3 4/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

The commit 5dd95cf made the MSC driver EHCI-specific. This patch restores a
basic support of non-EHCI HCDs, like before that commit.

The fallback transfer size is certainly not optimal, but at least it should work
like before.

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                           |    4 ++++
 1 file changed, 4 insertions(+)

diff --git u-boot-usb-1b4bd0e.orig/common/usb_storage.c u-boot-usb-1b4bd0e/common/usb_storage.c
index 46f6b75..135c940 100644
--- u-boot-usb-1b4bd0e.orig/common/usb_storage.c
+++ u-boot-usb-1b4bd0e/common/usb_storage.c
@@ -155,12 +155,16 @@ struct us_data {
 	trans_cmnd	transport;		/* transport routine */
 };
 
+#ifdef CONFIG_USB_EHCI
 /*
  * The U-Boot EHCI driver can handle any transfer length as long as there is
  * enough free heap space left, but the SCSI READ(10) and WRITE(10) commands are
  * limited to 65535 bytes.
  */
 #define USB_MAX_XFER_BLK 65535
+#else
+#define USB_MAX_XFER_BLK 20
+#endif
 
 static struct us_data usb_stor[USB_MAX_STOR_DEV];
 

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

* [U-Boot] [PATCH 4/5] usb_storage: Restore non-EHCI support
  2012-07-19 20:18 [U-Boot] [PATCH 4/5] usb_storage: Restore non-EHCI support Benoît Thébaudeau
@ 2012-07-27 12:55 ` Marek Vasut
  2012-07-27 14:02   ` Benoît Thébaudeau
  2012-08-09 21:52 ` [U-Boot] [PATCH v3 4/8] " Benoît Thébaudeau
  1 sibling, 1 reply; 4+ messages in thread
From: Marek Vasut @ 2012-07-27 12:55 UTC (permalink / raw)
  To: u-boot

Dear Beno?t Th?baudeau,

> The commit 5dd95cf made the MSC driver EHCI-specific. This patch restores a
> basic support of non-EHCI HCDs, like before that commit.
> 
> The fallback transfer size is certainly not optimal, but at least it should
> work like before.
[...]

Please merge this with 3/5 or swap them, so this doesn't break bisect please.

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 4/5] usb_storage: Restore non-EHCI support
  2012-07-27 12:55 ` Marek Vasut
@ 2012-07-27 14:02   ` Benoît Thébaudeau
  0 siblings, 0 replies; 4+ messages in thread
From: Benoît Thébaudeau @ 2012-07-27 14:02 UTC (permalink / raw)
  To: u-boot

Dear Marek,

On Fri, Jul 27, 2012 at 02:55:38 PM, Marek Vasut wrote:
> > The commit 5dd95cf made the MSC driver EHCI-specific. This patch
> > restores a
> > basic support of non-EHCI HCDs, like before that commit.
> > 
> > The fallback transfer size is certainly not optimal, but at least
> > it should
> > work like before.
> [...]
> 
> Please merge this with 3/5 or swap them, so this doesn't break bisect
> please.

OK, I'll swap them then.

Regards,
Beno?t

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

* [U-Boot] [PATCH v3 4/8] usb_storage: Restore non-EHCI support
  2012-07-19 20:18 [U-Boot] [PATCH 4/5] usb_storage: Restore non-EHCI support Benoît Thébaudeau
  2012-07-27 12:55 ` Marek Vasut
@ 2012-08-09 21:52 ` Benoît Thébaudeau
  1 sibling, 0 replies; 4+ messages in thread
From: Benoît Thébaudeau @ 2012-08-09 21:52 UTC (permalink / raw)
  To: u-boot

The commit 5dd95cf made the MSC driver EHCI-specific. This patch restores a
basic support of non-EHCI HCDs, like before that commit.

The fallback transfer size is certainly not optimal, but at least it should work
like before.

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:
 - Patch swapped with the currently following one.

 .../common/usb_storage.c                           |    4 ++++
 1 file changed, 4 insertions(+)

diff --git u-boot-usb-8d5fb14.orig/common/usb_storage.c u-boot-usb-8d5fb14/common/usb_storage.c
index bdc306f..0cd6399 100644
--- u-boot-usb-8d5fb14.orig/common/usb_storage.c
+++ u-boot-usb-8d5fb14/common/usb_storage.c
@@ -155,11 +155,15 @@ struct us_data {
 	trans_cmnd	transport;		/* transport routine */
 };
 
+#ifdef CONFIG_USB_EHCI
 /*
  * The U-Boot EHCI driver cannot handle more than 5 page aligned buffers
  * of 4096 bytes in a transfer without running itself out of qt_buffers
  */
 #define USB_MAX_XFER_BLK(start, blksz)	(((4096 * 5) - (start % 4096)) / blksz)
+#else
+#define USB_MAX_XFER_BLK(start, blksz)	20
+#endif
 
 static struct us_data usb_stor[USB_MAX_STOR_DEV];
 

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

end of thread, other threads:[~2012-08-09 21:52 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 4/5] usb_storage: Restore non-EHCI support Benoît Thébaudeau
2012-07-27 12:55 ` Marek Vasut
2012-07-27 14:02   ` Benoît Thébaudeau
2012-08-09 21:52 ` [U-Boot] [PATCH v3 4/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