On Sun, Apr 12, 2020 at 11:51:52AM +0000, Mikolaj Kucharski wrote:
> On Sun, Apr 12, 2020 at 10:05:28AM +0200, Patrick Wildt wrote:
> > I'm now trying to reproduce it, running this diff.  I'm sure the printfs
> > will slow the system down, but it's one way to see what's going on.
> > 
> > If you can reproduce it easily, would you mind trying again, with the
> > debug printfs?
> 
> So far I cannot reproduce kernel panic with below diff. At the end of
> this email dmesg output after machine boots up and works for few
> minutes. I will continue rebooting and hope panic will finally
> trigger. Giving how easy it was to trigger before, and as I rebooted few
> times Pinebook already I think with below changes it will not panic :/

Thats weird yhough, since it's the same diff as before, but with a
printf.  Maybe the printf changes the timing and thus the behaviour.  

> > Patrick
> > 
> > diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
> > index 41851defe4f..00a9af6903f 100644
> > --- a/sys/dev/usb/ehci.c
> > +++ b/sys/dev/usb/ehci.c
> > @@ -912,13 +912,18 @@ ehci_idone(struct usbd_xfer *xfer)
> >                     xfer->status = USBD_STALLED;
> >             else
> >                     xfer->status = USBD_IOERROR; /* more info XXX */
> > -   } else
> > +   } else {
> > +           if (xfer->actlen) {

Maybe, make that printf conditional on something weird, like the
following.  Since, if it runs off the DMA buffers map, maybe actlen
is broken.

if (xfer->length < xfer->actlen)
        printf("ehci_idon: ....

> > +                   printf("ehci_idone: len=%d, actlen=%d, cerr=%d, "
> > +                       "status=0x%x type=0x%x\n", xfer->length, actlen, 
> > cerr,
> > +                       status, 
> > UE_GET_XFERTYPE(xfer->pipe->endpoint->edesc->bmAttributes));
> > +                   usb_syncmem(&xfer->dmabuf, 0, xfer->actlen,
> > +                       usbd_xfer_isread(xfer) ?
> > +                       BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
> > +           }
> >             xfer->status = USBD_NORMAL_COMPLETION;
> > +   }
> >  
> > -   if (xfer->actlen)
> > -           usb_syncmem(&xfer->dmabuf, 0, xfer->actlen,
> > -               usbd_xfer_isread(xfer) ?
> > -               BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
> >     usb_transfer_complete(xfer);
> >     DPRINTFN(/*12*/2, ("ehci_idone: ex=%p done\n", ex));
> >  }
> 
> 
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d08 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=776, actlen=776, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1208, actlen=1208, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1480, actlen=1480, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=752, actlen=752, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=504, actlen=504, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=864, actlen=864, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=704, actlen=704, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=784, actlen=784, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=736, actlen=736, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=664, actlen=664, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=576, actlen=576, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=840, actlen=840, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=840, actlen=840, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1568, actlen=1568, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=248, actlen=248, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=440, actlen=440, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=624, actlen=624, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=368, actlen=368, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=728, actlen=728, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1216, actlen=1216, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=408, actlen=408, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=132, actlen=132, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1056, actlen=1056, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1192, actlen=1192, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=656, actlen=656, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=568, actlen=568, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=296, actlen=296, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1144, actlen=1144, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=768, cerr=3, status=0xbd008d00 type=0x2
> ehci_idone: len=928, actlen=928, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=664, actlen=664, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=440, actlen=440, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1112, actlen=1112, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=824, actlen=824, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=928, actlen=928, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=648, actlen=648, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=512, actlen=512, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=928, actlen=928, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=904, actlen=904, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=512, actlen=512, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=800, actlen=800, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=504, actlen=504, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=720, actlen=720, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1400, actlen=1400, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=960, actlen=960, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=1128, actlen=1128, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=1272, actlen=1272, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=1008, actlen=1008, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=504, actlen=504, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=648, actlen=648, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=512, actlen=512, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=784, actlen=784, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=440, actlen=440, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=368, actlen=368, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=512, actlen=512, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=512, actlen=512, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1072, actlen=1072, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=928, actlen=928, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=1520, actlen=1520, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=760, actlen=760, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=320, actlen=320, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=664, actlen=664, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=1280, actlen=1280, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=560, actlen=560, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=640, actlen=640, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=576, actlen=576, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d08 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1560, actlen=1560, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=944, actlen=944, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1104, actlen=1104, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=928, actlen=928, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=320, actlen=320, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1000, actlen=1000, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1440, actlen=1440, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=156, actlen=156, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=288, actlen=288, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1360, actlen=1360, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=152, actlen=152, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1280, actlen=1280, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=976, actlen=976, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1440, actlen=1440, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1552, actlen=1552, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1488, actlen=1488, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=856, actlen=856, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=712, actlen=712, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=984, actlen=984, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=156, actlen=156, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1280, actlen=1280, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=656, actlen=656, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=368, actlen=368, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1200, actlen=1200, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=1216, actlen=1216, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1144, actlen=1144, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=856, actlen=856, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1408, actlen=1408, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d08 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=784, actlen=784, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=156, actlen=156, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=568, actlen=568, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=504, actlen=504, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=376, actlen=376, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=440, actlen=440, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=728, actlen=728, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1344, actlen=1344, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=856, actlen=856, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=864, actlen=864, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d08 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=544, actlen=544, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=800, actlen=800, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=856, actlen=856, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=800, actlen=800, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=984, actlen=984, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1336, actlen=1336, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=160, actlen=160, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=792, actlen=792, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=728, actlen=728, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=880, actlen=880, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1192, actlen=1192, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=864, actlen=864, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=592, actlen=592, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=304, actlen=304, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=520, actlen=520, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=368, actlen=368, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=384, actlen=384, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=512, actlen=512, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=448, actlen=448, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=712, actlen=712, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=912, actlen=912, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1000, actlen=1000, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=584, actlen=584, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=296, actlen=296, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=656, actlen=656, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=312, actlen=312, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=376, actlen=376, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=156, actlen=156, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=920, actlen=920, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1136, actlen=1136, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1580, actlen=1580, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=528, actlen=528, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1008, actlen=1008, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=192, actlen=192, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=424, actlen=424, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=912, actlen=912, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=200, actlen=200, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=912, actlen=912, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=184, actlen=184, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=128, cerr=3, status=0xbf808d00 type=0x2
> ehci_idone: len=16384, actlen=128, cerr=3, status=0x3f808d00 type=0x2
> ehci_idone: len=16384, actlen=128, cerr=3, status=0xbf808d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=144, actlen=144, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d08 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0xbe008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=512, cerr=3, status=0x3e008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=132, actlen=132, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=168, actlen=168, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=1, actlen=1, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=2, actlen=2, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=156, actlen=156, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8d00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=4, actlen=4, cerr=3, status=0x8c00 type=0x0
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=156, actlen=156, cerr=3, status=0x80008c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0x3f008d00 type=0x2
> ehci_idone: len=176, actlen=176, cerr=3, status=0x8c00 type=0x2
> ehci_idone: len=16384, actlen=256, cerr=3, status=0xbf008d00 type=0x2
> 
> -- 
> Regards,
>  Mikolaj
> 

Reply via email to