]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
usb: fix first descriptor fetch error handling
authorStephen Warren <swarren@wwwdotorg.org>
Thu, 9 Apr 2015 03:27:49 +0000 (21:27 -0600)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 19:47:07 +0000 (21:47 +0200)
commita28aa19d87e77577e0911226e1e2c7223f46cbe0
tree3af3fca0f2030ef9bfe70a025648722f6102efff
parente55b123d63a19910b65ff10a4e3535d79d813413
usb: fix first descriptor fetch error handling

When fetching the first descriptor from a new device, only validate that
we received at least 8 bytes, not that we received the entire descriptor.
The reasoning is:
- The code only uses fields in the first 8 bytes, so that's all we need
  to have fetched at this stage.
- The smallest maxpacket size is 8 bytes. Before we know the actual
  maxpacket the device uses, the USB controller may only accept a single
  packet (see the DWC2 note in the comment added in the commit).
  Consequently we are only guaranteed to receive 1 packet (at least 8
  bytes) even in a non-error case.

Fixes: 1a7758044b04 ("usb: Early failure when the first descriptor read
fails or is invalid")
Cc: Paul Kocialkowski <contact@paulk.fr>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
common/usb.c