mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
dm: usb: storage: Fix broken read/write when both EHCD and xHCD are enabled
When EHCD and xHCD are enabled at the same time, USB storage device driver will fail to read/write from/to the storage device attached to the xHCI interface, due to its transfer blocks exceeds the xHCD driver limitation. With driver model, we have an API to get the controller's maximum transfer size and we can use that to determine the storage driver's capability of read/write. Note: the non-DM version driver is still broken with xHCD and the intent here is not to fix the non-DM one, since the xHCD itself is already broken in places like 3.0 hub support, etc. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
6158d0b424
commit
ea7fad9101
1 changed files with 17 additions and 2 deletions
|
@ -939,10 +939,14 @@ do_retry:
|
|||
return USB_STOR_TRANSPORT_FAILED;
|
||||
}
|
||||
|
||||
static void usb_stor_set_max_xfer_blk(struct us_data *us)
|
||||
static void usb_stor_set_max_xfer_blk(struct usb_device *udev,
|
||||
struct us_data *us)
|
||||
{
|
||||
unsigned short blk;
|
||||
size_t __maybe_unused size;
|
||||
int __maybe_unused ret;
|
||||
|
||||
#ifndef CONFIG_DM_USB
|
||||
#ifdef CONFIG_USB_EHCI_HCD
|
||||
/*
|
||||
* The U-Boot EHCI driver can handle any transfer length as long as
|
||||
|
@ -953,6 +957,17 @@ static void usb_stor_set_max_xfer_blk(struct us_data *us)
|
|||
#else
|
||||
blk = 20;
|
||||
#endif
|
||||
#else
|
||||
ret = usb_get_max_xfer_size(udev, (size_t *)&size);
|
||||
if (ret < 0) {
|
||||
/* unimplemented, let's use default 20 */
|
||||
blk = 20;
|
||||
} else {
|
||||
if (size > USHRT_MAX * 512)
|
||||
blk = USHRT_MAX;
|
||||
blk = size / 512;
|
||||
}
|
||||
#endif
|
||||
|
||||
us->max_xfer_blk = blk;
|
||||
}
|
||||
|
@ -1393,7 +1408,7 @@ int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,
|
|||
}
|
||||
|
||||
/* Set the maximum transfer size per host controller setting */
|
||||
usb_stor_set_max_xfer_blk(ss);
|
||||
usb_stor_set_max_xfer_blk(dev, ss);
|
||||
|
||||
dev->privptr = (void *)ss;
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue