public inbox for linux-usb@vger.kernel.org
 help / color / mirror / Atom feed
* [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
@ 2025-04-28 14:54 Jakob Trumpower
  2025-05-01  0:14 ` Thinh Nguyen
  0 siblings, 1 reply; 8+ messages in thread
From: Jakob Trumpower @ 2025-04-28 14:54 UTC (permalink / raw)
  To: balbi@kernel.org; +Cc: linux-usb@vger.kernel.org


[-- Attachment #1.1: Type: text/plain, Size: 4695 bytes --]

Hello Felipe (or whoever is the current dwc3 maintainer),

I hope you are doing well!

I have been dealing with a USB issue on a custom hardware embedded Linux system. We currently have 3 revisions of the system: a device mode, host mode, and now a dual role mode (to hopefully replace the former). The device mode has been working flawlessly. We have had issues for a few years with host mode where  devices (ethernet adapters) don't enumerate unless you cycle the plug and sometimes require a hard reboot to enumerate.


  *
Ultrascale+ ZynqMPSoC  using a custom Yocto based OS using Xilinx layers.
  *
Xilinx 6.6 kernel
     *
I know the documentation mentions using the latest mainline version but it would be quite the effort to get that running on our FPGA.
     *
I have tried porting USB  specific changes from mainline.
  *
We are using AMD's Kria K26 SOM, our motherboard routes out USB SS and we have circuitry for dual role devices, ESD protection, and the physical connector.
     *
The superspeed traces are well laid out and go straight into the SOM.
     *
The dual role hardware looks good, I have attached a PD analyzer, and the mux and role determination seem to be working for host/device.
     *
I do not think it is a hardware issue, as we have had the layout reviewed and the issue seems to vary by kernel version and log levels. As well as other reasons below.
  *
Issue effects all SuperSpeed devices that I have access to, however our only real application is USB 3.2 Gen 1x1 to ethernet adapters.
  *
USB 2.0 devices do not have the issue.
  *
Recently I have updated our kernel (5.10->6.6)
     *
This was with some OS changes as well but the results are much worse than before.
  *
The issue only happens if the physical connection is made before the xhci/dwc3 driver is probed. Any time after it works. Earlier always fails.


Things I have tried that seem to make it "better"

  *
lowering the kernel log from 8->7
     *
I am not sure why the default log level was 8 as it isn't even listed as a valid level in most kernel documentation. It also doesn't seem to print anything differently to our UART.
     *
Older kernel worked fine on 8.
  *
Adding a shutdown callback to dwc3. This just calls the remove function.
     *
This helps with cold reboots.

However, these hacks do not work on our dual-role-mode hardware. They still require a plug cycle every time. Sometimes it won't enumerate at all usually the dmesg failure is:
usb usb4-port1: Cannot enable. Maybe the USB cable is bad?


My current suspicion is some very tight timing issue at boot. That would explain why the log level makes a difference as the time spent writing to UART is significant. Which leads to the investigation inside of the USB controller/driver:

  *
Probed ULPI clock
  *
Changed to otg/host in device tree
  *
Many print statements in xhci.c, hub.c, core.c, etc....
  *
Adjusting probe order
  *
Adjusting delays in hub.c and core.c for initialization and port discovery.
  *
delaying probe so that the USB stack comes up later
  *
Adding more warm resets in the hub initialization when a port fails to init.
  *
Adding extra Chip Hardware Reset (HCRST) in xhci.c
  *
Moving the entire USB stack into a kernel module
  *
Basically every Synopsys DWC3 quirk

With all of these changes nothing seems to make a difference, I also got my hands on a Beagle 5000 superspeed analyzer (oof that was expensive). It has been useful to see independent of what Linux/drivers reports. When I see the issue after a reboot, the only thing coming out of the host side is phy errors (maybe noise?). No amount of the things I listed seem to get it out of this state. The odd thing is that a lot of the DWC/XHCI registers seem to indicate it's doing something, but nothing is actually happening electrically. The odd part is why cycling the connector works to get the controller to start responding, but not reset commands in registers.
My backup plan is a hardware change to give VBUS control to Linux so I can reset the connection after the driver is probe, but obviously kind of a hacky solution.

I attached the traces that is recommended in the documentation, but also traces that are recommended from Xilinx's USB troubleshooting page:
https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/2046656520/USB+Debug+Guide+for+Zynq+UltraScale+and+Versal+Devices


Anyways, I know that was a lot of information but would appreciate any help. I cannot get the time of day from Synopsis or Xilinx on this, and I like to think I have done my due diligence for about 1 month now on this issue.

Thanks

Jakob




[-- Attachment #1.2: Type: text/html, Size: 17474 bytes --]

[-- Attachment #2: jakob.tar.gz --]
[-- Type: application/gzip, Size: 1013760 bytes --]

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-04-28 14:54 [BUG REPORT] usb: dwc3: Failure to enumerate from boot Jakob Trumpower
@ 2025-05-01  0:14 ` Thinh Nguyen
       [not found]   ` <PH0PR06MB7077C939CDCF50DADE0A70F6E889A@PH0PR06MB7077.namprd06.prod.outlook.com>
  0 siblings, 1 reply; 8+ messages in thread
From: Thinh Nguyen @ 2025-05-01  0:14 UTC (permalink / raw)
  To: Jakob Trumpower; +Cc: balbi@kernel.org, linux-usb@vger.kernel.org

Hi,

On Mon, Apr 28, 2025, Jakob Trumpower wrote:
> Hello Felipe (or whoever is the current dwc3 maintainer),

I'm the current dwc3 maintainer.

> 
> I hope you are doing well!
> 
> I have been dealing with a USB issue on a custom hardware embedded Linux
> system. We currently have 3 revisions of the system: a device mode, host mode,
> and now a dual role mode (to hopefully replace the former). The device mode has
> been working flawlessly. We have had issues for a few years with host mode
> where  devices (ethernet adapters) don't enumerate unless you cycle the plug
> and sometimes require a hard reboot to enumerate.
> 
> 
>   • Ultrascale+ ZynqMPSoC  using a custom Yocto based OS using Xilinx layers.
>   • Xilinx 6.6 kernel
>       □ I know the documentation mentions using the latest mainline version but
>         it would be quite the effort to get that running on our FPGA.
>       □ I have tried porting USB  specific changes from mainline.
>   • We are using AMD's Kria K26 SOM, our motherboard routes out USB SS and we
>     have circuitry for dual role devices, ESD protection, and the physical
>     connector.
>       □ The superspeed traces are well laid out and go straight into the SOM.
>       □ The dual role hardware looks good, I have attached a PD analyzer, and
>         the mux and role determination seem to be working for host/device.
>       □ I do not think it is a hardware issue, as we have had the layout
>         reviewed and the issue seems to vary by kernel version and log levels.
>         As well as other reasons below.
>   • Issue effects all SuperSpeed devices that I have access to, however our
>     only real application is USB 3.2 Gen 1x1 to ethernet adapters.
>   • USB 2.0 devices do not have the issue.
>   • Recently I have updated our kernel (5.10->6.6)
>       □ This was with some OS changes as well but the results are much worse
>         than before.
>   • The issue only happens if the physical connection is made before the xhci/
>     dwc3 driver is probed. Any time after it works. Earlier always fails.
> 
> 
> 
> Things I have tried that seem to make it "better"
> 
>   • lowering the kernel log from 8->7
>       □ I am not sure why the default log level was 8 as it isn't even listed
>         as a valid level in most kernel documentation. It also doesn't seem to
>         print anything differently to our UART.
>       □ Older kernel worked fine on 8.
>   • Adding a shutdown callback to dwc3. This just calls the remove function.
>       □ This helps with cold reboots.
> 
> 
> However, these hacks do not work on our dual-role-mode hardware. They still
> require a plug cycle every time. Sometimes it won't enumerate at all usually
> the dmesg failure is: 
> usb usb4-port1: Cannot enable. Maybe the USB cable is bad?
> 
> 
> My current suspicion is some very tight timing issue at boot. That would
> explain why the log level makes a difference as the time spent writing to UART
> is significant. Which leads to the investigation inside of the USB controller/
> driver:
> 
>   • Probed ULPI clock
>   • Changed to otg/host in device tree
>   • Many print statements in xhci.c, hub.c, core.c, etc....
>   • Adjusting probe order
>   • Adjusting delays in hub.c and core.c for initialization and port discovery.
>   • delaying probe so that the USB stack comes up later
>   • Adding more warm resets in the hub initialization when a port fails to
>     init.
>   • Adding extra Chip Hardware Reset (HCRST) in xhci.c
>   • Moving the entire USB stack into a kernel module
>   • Basically every Synopsys DWC3 quirk
> 
> 
> With all of these changes nothing seems to make a difference, I also got my
> hands on a Beagle 5000 superspeed analyzer (oof that was expensive). It has
> been useful to see independent of what Linux/drivers reports. When I see the
> issue after a reboot, the only thing coming out of the host side is phy errors
> (maybe noise?). No amount of the things I listed seem to get it out of this
> state. The odd thing is that a lot of the DWC/XHCI registers seem to indicate
> it's doing something, but nothing is actually happening electrically. The oddj
> part is why cycling the connector works to get the controller to start
> responding, but not reset commands in registers.
> My backup plan is a hardware change to give VBUS control to Linux so I can
> reset the connection after the driver is probe, but obviously kind of a hacky
> solution.
> 
> I attached the traces that is recommended in the documentation, but also traces
> that are recommended from Xilinx's USB troubleshooting page:
> https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/2046656520/
> USB+Debug+Guide+for+Zynq+UltraScale+and+Versal+Devices
> 
> 
> Anyways, I know that was a lot of information but would appreciate any help. I
> cannot get the time of day from Synopsis or Xilinx on this, and I like to think
> I have done my due diligence for about 1 month now on this issue.
> 
> Thanks
> 
> Jakob
> 

So, this is the DWC_usb3 OTG controller v2.90a.
 * Is this a regression? (has this issue always been there)
 * Is the regdump captured after bootup with the cable preattached?
 * What quirk did you try? (did you try "snps,dis_u3_susphy_quirk" and
   "snps,dis_u2_susphy_quirk")
 * Did you try to configure the driver with USB_DWC3_HOST instead?

If the regdump is captured after the connection, I see that the current
PRTCAPDIR is still in OTG and did not get switched to host.

(Note: I'll try to see how much I can help here, but the controller here
is quite old and the kernel isn't mainline. This will be difficult to
provide accurate feedback on the downstream code.)

BR,
Thinh

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
       [not found]   ` <PH0PR06MB7077C939CDCF50DADE0A70F6E889A@PH0PR06MB7077.namprd06.prod.outlook.com>
@ 2025-05-08  0:32     ` Thinh Nguyen
  2025-05-09 15:50       ` Jakob Trumpower
  0 siblings, 1 reply; 8+ messages in thread
From: Thinh Nguyen @ 2025-05-08  0:32 UTC (permalink / raw)
  To: Jakob Trumpower; +Cc: Thinh Nguyen, balbi@kernel.org, linux-usb@vger.kernel.org

Hi,

On Tue, May 06, 2025, Jakob Trumpower wrote:
> Hi Thinh,
> 
> Thank you for looking at this, here are some answers to your questions.
> 
>  * Is this a regression? (has this issue always been there)
> The issue would happen occasionally (cold boot) on host hardware, however the
> issue is consistent with OTG hardware. They both manifest in the same way, as
> in require toggling VBUS for the device to enumerate. We were on a kernel from
> 5.10 before and the issue existed then as well as now 6.6. I also tried
> mainline USB stack mixed into the old kernel.

Ok, so this isn't a regression.

>   * Is the regdump captured after bootup with the cable preattached?
> Yes the regdump is with a cold boot with the cable preattached.
>   * What quirk did you try? (did you try "snps,dis_u3_susphy_quirk" and
>    "snps,dis_u2_susphy_quirk")
> Yes I tried those quirks, although I don't think they would help since
> according to the USB spec to get to U2, and U3 it has to get to U0. It never

Unfortunately the naming of these properties are not that great.
The "u2" and "u3" in the property names correspond to usb2 and usb3; not
the link state U2/U3.

These quirks prevent the phy from going into lower power when in lower
link state, not preventing link state change itself.

> even gets to training/polling step. 
> I also tried all of the dwc3 quirks in snps,dwc3.yaml one at a time as
> appropriate.
> 
>   * Did you try to configure the driver with USB_DWC3_HOST instead?
> 
> Yes the host mode version of the product has that configured, I also tried that
> same kernel on OTG hardware and the issue is the same.

Ok.

> If the regdump is captured after the connection, I see that the current
> PRTCAPDIR is still in OTG and did not get switched to host.
> 
> (Note: I'll try to see how much I can help here, but the controller here
> is quite old and the kernel isn't mainline. This will be difficult to
> provide accurate feedback on the downstream code.)
> 
> Understood, thanks regardless. My biggest question is around the current
> solution, can you make sense as to why toggling VBUS after the driver probe
> would have everything work as expected? I think that rules out a lot of other
> issues and is quite strange. 
> 

Looking at the trace, looks like port fails to enable after performing
port reset. Can we do some experiment?

diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index 62c74ba7bb53..e047a4e50b82 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -4883,12 +4883,17 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
 	if (oldspeed == USB_SPEED_LOW)
 		delay = HUB_LONG_RESET_TIME;
 
-	/* Reset the device; full speed may morph to high speed */
-	/* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
-	retval = hub_port_reset(hub, port1, udev, delay, false);
-	if (retval < 0)		/* error or disconnect */
-		goto fail;
-	/* success, speed is known */
+	if (!udev->config && oldspeed >= USB_SPEED_SUPER) {
+		usb_set_device_state(udev, USB_STATE_DEFAULT);
+	} else {
+		/* Reset the device; full speed may morph to high speed */
+		/* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
+		retval = hub_port_reset(hub, port1, udev, delay, false);
+		if (retval < 0)         /* error or disconnect */
+			goto fail;
+		/* success, speed is known */
+	}
 
 	retval = -ENODEV;
 
---

This avoids a port reset during init. This is a bit of shooting in the
dark here without probing into the internal signals.

And if that doesn't work, try to disable and reenable the port:

## Check whether the port power is set:
# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable

## turn-off and turn-on port power:
# echo 1 > /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable
# echo 0 > /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable

Perhaps that gives some more clues to look into this further. The path
above is just example base on the dmesg "usb usb4-port1: Cannot enable.
Maybe the USB cable is bad?". You need to change the path to the proper
usb3 port location should that be different.

BR,
Thinh

(Side note: please use text only format when sending email to the
usb kernel mailing list. Avoid top post if you can. Thanks.)

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-05-08  0:32     ` Thinh Nguyen
@ 2025-05-09 15:50       ` Jakob Trumpower
  2025-05-14  0:48         ` Thinh Nguyen
  0 siblings, 1 reply; 8+ messages in thread
From: Jakob Trumpower @ 2025-05-09 15:50 UTC (permalink / raw)
  To: Thinh Nguyen; +Cc: linux-usb@vger.kernel.org, balbi@kernel.org

Hi Thinh,

Sorry about the formatting, I switched outlook to use plain text.

I removed the reset at init like you mentioned with the patch. As well as put the quirks back in for u2,u3 disable. I also had tried manually toggling the /sys/bus entries in the past, and would usually see the hub messages come back but the downstream device would still not enumerate. I tried it again with no change. Note: usb3 is the 2.0 controller for the same port.

root@ms-radar-01:~# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable                                                                                                                                    
0                                                                                                                        
root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable                                                                                                                                          
root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable                                                                                                                                          
root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable                                                                                                                                          
root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable  

Here I am toggling authorized instead and I do see some messages, but still no device:
                                                                                                         
root@ms-radar-01:~#         sudo echo 0 > /sys/bus/usb/devices/usb4/authorized                                                                                                                                  
root@ms-radar-01:~#         sudo echo 1 > /sys/bus/usb/devices/usb4/authorized                                                                                                                                  
[ 2208.950615] hub 4-0:1.0: USB hub found                                                                                                                                                                       
[ 2208.954440] hub 4-0:1.0: 1 port detected                                                                                                                                                                     
[ 2208.960168] usb usb4: authorized to connect                                                                             


Then once again, I cycle the usb C connector and it comes up:
root@ms-radar-01:~# [  323.210398] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd                                                                                                                   
[  323.511597] usb 4-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00                                                                                                                    
[  323.519776] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3                                                                                                                                
[  323.526917] usb 4-1: Product: AX88179A                                                                                                                                                                       
[  323.530672] usb 4-1: Manufacturer: ASIX                                                                                                                                                                      
[  323.534506] usb 4-1: SerialNumber: 00000000000FF3                                                                                                                                                            
[  323.913798] cdc_ncm 4-1:2.0: MAC-Address: a0:ce:c8:ba:a9:44                                                                                                                                                  
[  323.919389] cdc_ncm 4-1:2.0: setting rx_max = 16384                                                                                                                                                          
[  323.937168] cdc_ncm 4-1:2.0: setting tx_max = 16384                                                                                                                                                          
[  323.951984] cdc_ncm 4-1:2.0 eth0: register 'cdc_ncm' at usb-xhci-hcd.2.auto-1, CDC NCM (NO ZLP), a0:ce:c8:ba:a9:44                                                                                           
[  324.103396] cdc_ncm 4-1:2.0 enu1c2: renamed from eth0 

Very strange the plug cycle seems to fix the controller reliably. Also to note that it happens to every 3.0 device I have tested. I have a change order for our next board revision to toggle the VBUS with a GPIO, but not an ideal solution.

I know USB and these controllers are extremely complex so I appreciate your time and expertise.

Let me know if you can think of any other registers/experiments we can try.


Thanks

Jakob


________________________________________
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Sent: Wednesday, May 7, 2025 7:32 PM
To: Jakob Trumpower <jakob.trumpower@matrixspace.com>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>; balbi@kernel.org <balbi@kernel.org>; linux-usb@vger.kernel.org <linux-usb@vger.kernel.org>
Subject: Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
 
[You don't often get email from thinh.nguyen@synopsys.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]

Hi,

On Tue, May 06, 2025, Jakob Trumpower wrote:
> Hi Thinh,
>
> Thank you for looking at this, here are some answers to your questions.
>
>  * Is this a regression? (has this issue always been there)
> The issue would happen occasionally (cold boot) on host hardware, however the
> issue is consistent with OTG hardware. They both manifest in the same way, as
> in require toggling VBUS for the device to enumerate. We were on a kernel from
> 5.10 before and the issue existed then as well as now 6.6. I also tried
> mainline USB stack mixed into the old kernel.

Ok, so this isn't a regression.

>   * Is the regdump captured after bootup with the cable preattached?
> Yes the regdump is with a cold boot with the cable preattached.
>   * What quirk did you try? (did you try "snps,dis_u3_susphy_quirk" and
>    "snps,dis_u2_susphy_quirk")
> Yes I tried those quirks, although I don't think they would help since
> according to the USB spec to get to U2, and U3 it has to get to U0. It never

Unfortunately the naming of these properties are not that great.
The "u2" and "u3" in the property names correspond to usb2 and usb3; not
the link state U2/U3.

These quirks prevent the phy from going into lower power when in lower
link state, not preventing link state change itself.

> even gets to training/polling step.
> I also tried all of the dwc3 quirks in snps,dwc3.yaml one at a time as
> appropriate.
>
>   * Did you try to configure the driver with USB_DWC3_HOST instead?
>
> Yes the host mode version of the product has that configured, I also tried that
> same kernel on OTG hardware and the issue is the same.

Ok.

> If the regdump is captured after the connection, I see that the current
> PRTCAPDIR is still in OTG and did not get switched to host.
>
> (Note: I'll try to see how much I can help here, but the controller here
> is quite old and the kernel isn't mainline. This will be difficult to
> provide accurate feedback on the downstream code.)
>
> Understood, thanks regardless. My biggest question is around the current
> solution, can you make sense as to why toggling VBUS after the driver probe
> would have everything work as expected? I think that rules out a lot of other
> issues and is quite strange.
>

Looking at the trace, looks like port fails to enable after performing
port reset. Can we do some experiment?

diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index 62c74ba7bb53..e047a4e50b82 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -4883,12 +4883,17 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
        if (oldspeed == USB_SPEED_LOW)
                delay = HUB_LONG_RESET_TIME;

-       /* Reset the device; full speed may morph to high speed */
-       /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
-       retval = hub_port_reset(hub, port1, udev, delay, false);
-       if (retval < 0)         /* error or disconnect */
-               goto fail;
-       /* success, speed is known */
+       if (!udev->config && oldspeed >= USB_SPEED_SUPER) {
+               usb_set_device_state(udev, USB_STATE_DEFAULT);
+       } else {
+               /* Reset the device; full speed may morph to high speed */
+               /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
+               retval = hub_port_reset(hub, port1, udev, delay, false);
+               if (retval < 0)         /* error or disconnect */
+                       goto fail;
+               /* success, speed is known */
+       }

        retval = -ENODEV;

---

This avoids a port reset during init. This is a bit of shooting in the
dark here without probing into the internal signals.

And if that doesn't work, try to disable and reenable the port:

## Check whether the port power is set:
# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable

## turn-off and turn-on port power:
# echo 1 > /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable
# echo 0 > /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable

Perhaps that gives some more clues to look into this further. The path
above is just example base on the dmesg "usb usb4-port1: Cannot enable.
Maybe the USB cable is bad?". You need to change the path to the proper
usb3 port location should that be different.

BR,
Thinh

(Side note: please use text only format when sending email to the
usb kernel mailing list. Avoid top post if you can. Thanks.)

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-05-09 15:50       ` Jakob Trumpower
@ 2025-05-14  0:48         ` Thinh Nguyen
  2025-06-06 21:23           ` Jakob Trumpower
  0 siblings, 1 reply; 8+ messages in thread
From: Thinh Nguyen @ 2025-05-14  0:48 UTC (permalink / raw)
  To: Jakob Trumpower; +Cc: Thinh Nguyen, linux-usb@vger.kernel.org, balbi@kernel.org

On Fri, May 09, 2025, Jakob Trumpower wrote:
> Hi Thinh,
> 
> Sorry about the formatting, I switched outlook to use plain text.
> 
> I removed the reset at init like you mentioned with the patch. As well as put the quirks back in for u2,u3 disable. I also had tried manually toggling the /sys/bus entries in the past, and would usually see the hub messages come back but the downstream device would still not enumerate. I tried it again with no change. Note: usb3 is the 2.0 controller for the same port.
> 
> root@ms-radar-01:~# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable                                                                                                                                    
> 0                                                                                                                        
> root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable                                                                                                                                          
> root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable                                                                                                                                          
> root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable                                                                                                                                          
> root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable  
> 
> Here I am toggling authorized instead and I do see some messages, but still no device:
>                                                                                                          
> root@ms-radar-01:~#         sudo echo 0 > /sys/bus/usb/devices/usb4/authorized                                                                                                                                  
> root@ms-radar-01:~#         sudo echo 1 > /sys/bus/usb/devices/usb4/authorized                                                                                                                                  
> [ 2208.950615] hub 4-0:1.0: USB hub found                                                                                                                                                                       
> [ 2208.954440] hub 4-0:1.0: 1 port detected                                                                                                                                                                     
> [ 2208.960168] usb usb4: authorized to connect                                                                             
> 
> 
> Then once again, I cycle the usb C connector and it comes up:
> root@ms-radar-01:~# [  323.210398] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd                                                                                                                   
> [  323.511597] usb 4-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00                                                                                                                    
> [  323.519776] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3                                                                                                                                
> [  323.526917] usb 4-1: Product: AX88179A                                                                                                                                                                       
> [  323.530672] usb 4-1: Manufacturer: ASIX                                                                                                                                                                      
> [  323.534506] usb 4-1: SerialNumber: 00000000000FF3                                                                                                                                                            
> [  323.913798] cdc_ncm 4-1:2.0: MAC-Address: a0:ce:c8:ba:a9:44                                                                                                                                                  
> [  323.919389] cdc_ncm 4-1:2.0: setting rx_max = 16384                                                                                                                                                          
> [  323.937168] cdc_ncm 4-1:2.0: setting tx_max = 16384                                                                                                                                                          
> [  323.951984] cdc_ncm 4-1:2.0 eth0: register 'cdc_ncm' at usb-xhci-hcd.2.auto-1, CDC NCM (NO ZLP), a0:ce:c8:ba:a9:44                                                                                           
> [  324.103396] cdc_ncm 4-1:2.0 enu1c2: renamed from eth0 
> 
> Very strange the plug cycle seems to fix the controller reliably. Also to note that it happens to every 3.0 device I have tested. I have a change order for our next board revision to toggle the VBUS with a GPIO, but not an ideal solution.
> 
> I know USB and these controllers are extremely complex so I appreciate your time and expertise.
> 
> Let me know if you can think of any other registers/experiments we can try.
> 

Thanks for the experiments. 

Ok, this is odd. It's not what I thought. If the usb3 port detection
fails a few times, then it should fallback to usb2 connection.

Let's check the portsc:
# cat /sys/kernel/debug/usb/xhci/<your_controller>/ports/**/*

Also, can you add this to the kernel cmdline to capture the xhci
tracepoints:

"xhci_hcd.dyndbg=+p trace_event=xhci-hcd trace_buf_size=30M"

# cat /sys/kernel/debug/tracing/trace > tracepoints.log

Thanks,
Thinh

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-05-14  0:48         ` Thinh Nguyen
@ 2025-06-06 21:23           ` Jakob Trumpower
  2025-06-10 21:36             ` Thinh Nguyen
  0 siblings, 1 reply; 8+ messages in thread
From: Jakob Trumpower @ 2025-06-06 21:23 UTC (permalink / raw)
  To: Thinh Nguyen; +Cc: linux-usb@vger.kernel.org, balbi@kernel.org

[-- Attachment #1: Type: text/plain, Size: 3874 bytes --]


________________________________________
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Sent: Tuesday, May 13, 2025 7:48 PM
To: Jakob Trumpower
Cc: Thinh Nguyen; linux-usb@vger.kernel.org; balbi@kernel.org
Subject: Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.

On Fri, May 09, 2025, Jakob Trumpower wrote:
> Hi Thinh,
>
> Sorry about the formatting, I switched outlook to use plain text.
>
> I removed the reset at init like you mentioned with the patch. As well as put the quirks back in for u2,u3 disable. I also had tried manually toggling the /sys/bus entries in the past, and would usually see the hub messages come back but the downstream device would still not enumerate. I tried it again with no change. Note: usb3 is the 2.0 controller for the same port.
>
> root@ms-radar-01:~# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable
> 0
> root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
> root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
>
> Here I am toggling authorized instead and I do see some messages, but still no device:
>
> root@ms-radar-01:~#         sudo echo 0 > /sys/bus/usb/devices/usb4/authorized
> root@ms-radar-01:~#         sudo echo 1 > /sys/bus/usb/devices/usb4/authorized
> [ 2208.950615] hub 4-0:1.0: USB hub found
> [ 2208.954440] hub 4-0:1.0: 1 port detected
> [ 2208.960168] usb usb4: authorized to connect
>
>
> Then once again, I cycle the usb C connector and it comes up:
> root@ms-radar-01:~# [  323.210398] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
> [  323.511597] usb 4-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00
> [  323.519776] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> [  323.526917] usb 4-1: Product: AX88179A
> [  323.530672] usb 4-1: Manufacturer: ASIX
> [  323.534506] usb 4-1: SerialNumber: 00000000000FF3
> [  323.913798] cdc_ncm 4-1:2.0: MAC-Address: a0:ce:c8:ba:a9:44
> [  323.919389] cdc_ncm 4-1:2.0: setting rx_max = 16384
> [  323.937168] cdc_ncm 4-1:2.0: setting tx_max = 16384
> [  323.951984] cdc_ncm 4-1:2.0 eth0: register 'cdc_ncm' at usb-xhci-hcd.2.auto-1, CDC NCM (NO ZLP), a0:ce:c8:ba:a9:44
> [  324.103396] cdc_ncm 4-1:2.0 enu1c2: renamed from eth0
>
> Very strange the plug cycle seems to fix the controller reliably. Also to note that it happens to every 3.0 device I have tested. I have a change order for our next board revision to toggle the VBUS with a GPIO, but not an ideal solution.
>
> I know USB and these controllers are extremely complex so I appreciate your time and expertise.
>
> Let me know if you can think of any other registers/experiments we can try.
>

>Thanks for the experiments.

> Ok, this is odd. It's not what I thought. If the usb3 port detection
> fails a few times, then it should fallback to usb2 connection.

>Let's check the portsc:
># cat /sys/kernel/debug/usb/xhci/<your_controller>/ports/**/*

root@ms-radar-01:~# cat /sys/kernel/debug/usb/xhci/xhci-hcd.2.auto/ports/**/*                                                                           
Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:                                                                                  
Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake:

>Also, can you add this to the kernel cmdline to capture the xhci
>tracepoints:

>"xhci_hcd.dyndbg=+p trace_event=xhci-hcd trace_buf_size=30M"

># cat /sys/kernel/debug/tracing/trace > tracepoints.log
I attached a successful trace (shortened) and a trace where the failure happens.

-Jakob 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: tracepoints.log --]
[-- Type: text/x-log; name="tracepoints.log", Size: 246679 bytes --]

# tracer: nop
#
# entries-in-buffer/entries-written: 1531/1531   #P:4
#
#                                _-----=> irqs-off/BH-disabled
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| / _-=> migrate-disable
#                              |||| /     delay
#           TASK-PID     CPU#  |||||  TIMESTAMP  FUNCTION
#              | |         |   |||||     |         |
   kworker/u11:0-34      [001] .N...     2.926397: xhci_dbg_init: // Halt the HC
   kworker/u11:0-34      [001] .N...     2.926416: xhci_dbg_init: // Reset the HC
   kworker/u11:0-34      [001] .N...     2.926452: xhci_dbg_init: Wait for controller to be ready for doorbell rings
   kworker/u11:0-34      [001] .N...     2.926475: xhci_dbg_init: xhci_init
   kworker/u11:0-34      [001] .N...     2.926482: xhci_dbg_init: xHCI doesn't need link TRB QUIRK
   kworker/u11:0-34      [001] .N...     2.926491: xhci_dbg_init: Supported page size register = 0x1
   kworker/u11:0-34      [001] .N...     2.926500: xhci_dbg_init: Supported page size of 8K
   kworker/u11:0-34      [001] .N...     2.926508: xhci_dbg_init: HCD page size set to 4K
   kworker/u11:0-34      [001] .N...     2.926517: xhci_dbg_init: // xHC can handle at most 64 device slots.
   kworker/u11:0-34      [001] .N...     2.926526: xhci_dbg_init: // Setting Max device slots reg = 0x40.
   kworker/u11:0-34      [001] .N...     2.926550: xhci_dbg_init: // Device context base array address = 0x0x000000080a0d0000 (DMA), (____ptrval____) (virt)
   kworker/u11:0-34      [001] .N...     2.926566: xhci_ring_alloc: CMD 000000006e30c1cc: enq 0x000000080a0d1000(0x000000080a0d1000) deq 0x000000080a0d1000(0x000000080a0d1000) segs 1 stream 0 bounce 0 cycle 1
   kworker/u11:0-34      [001] .N...     2.926576: xhci_dbg_init: Allocated command ring at (____ptrval____)
   kworker/u11:0-34      [001] .N...     2.926585: xhci_dbg_init: First segment DMA is 0x0x000000080a0d1000
   kworker/u11:0-34      [001] .N...     2.926594: xhci_dbg_init: // Setting command ring address to 0x000000080a0d1001
   kworker/u11:0-34      [001] .N...     2.926604: xhci_dbg_init: // Doorbell array is located at offset 0x4e0 from cap regs base addr
   kworker/u11:0-34      [001] .N...     2.926612: xhci_dbg_init: Allocating primary event ring
   kworker/u11:0-34      [001] .N...     2.926619: xhci_ring_alloc: EVENT 000000007df998db: enq 0x000000080a0d2000(0x000000080a0d2000) deq 0x000000080a0d2000(0x000000080a0d2000) segs 1 stream 0 bounce 0 cycle 1
   kworker/u11:0-34      [001] .N...     2.926634: xhci_dbg_init: // Write event ring dequeue pointer, preserving EHB bit
   kworker/u11:0-34      [001] .N...     2.926644: xhci_dbg_init: Allocating 1 scratchpad buffers
   kworker/u11:0-34      [001] .N...     2.926669: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 1, count = 1, revision = 0x2
   kworker/u11:0-34      [001] .N...     2.926678: xhci_dbg_init: xHCI 1.0: support USB2 hardware lpm
   kworker/u11:0-34      [001] .N...     2.926690: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 2, count = 1, revision = 0x3
   kworker/u11:0-34      [001] .N...     2.926700: xhci_dbg_init: Found 1 USB 2.0 ports and 1 USB 3.0 ports.
   kworker/u11:0-34      [001] .N...     2.926710: xhci_dbg_init: Finished xhci_init
   kworker/u11:0-34      [001] .N...     2.942060: xhci_dbg_init: xhci_run
   kworker/u11:0-34      [001] .N...     2.942070: xhci_dbg_init: ERST deq = 64'h80a0d2000
   kworker/u11:0-34      [001] .N...     2.942078: xhci_dbg_init: // Set the interrupt modulation register
   kworker/u11:0-34      [001] .N...     2.942086: xhci_dbg_init: Finished xhci_run for main hcd
   kworker/u11:0-34      [001] dN...     2.961864: xhci_dbg_init: Enable interrupts
   kworker/u11:0-34      [001] dN...     2.961872: xhci_dbg_init: Enable primary interrupter
   kworker/u11:0-34      [001] dN...     2.961881: xhci_dbg_init: // Turn on HC, cmd = 0x5.
     kworker/1:0-20      [001] d....     3.037390: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
     kworker/0:1-9       [000] .N...     3.116090: xhci_dbg_init: // Halt the HC
     kworker/0:1-9       [000] .N...     3.116110: xhci_dbg_init: // Reset the HC
     kworker/0:1-9       [000] .N...     3.116147: xhci_dbg_init: Wait for controller to be ready for doorbell rings
     kworker/0:1-9       [000] .N...     3.116171: xhci_dbg_init: xhci_init
     kworker/0:1-9       [000] .N...     3.116179: xhci_dbg_init: xHCI doesn't need link TRB QUIRK
     kworker/0:1-9       [000] .N...     3.116189: xhci_dbg_init: Supported page size register = 0x1
     kworker/0:1-9       [000] .N...     3.116197: xhci_dbg_init: Supported page size of 8K
     kworker/0:1-9       [000] .N...     3.116205: xhci_dbg_init: HCD page size set to 4K
     kworker/0:1-9       [000] .N...     3.116214: xhci_dbg_init: // xHC can handle at most 64 device slots.
     kworker/0:1-9       [000] .N...     3.116223: xhci_dbg_init: // Setting Max device slots reg = 0x40.
     kworker/0:1-9       [000] .N...     3.116250: xhci_dbg_init: // Device context base array address = 0x0x000000080b394000 (DMA), (____ptrval____) (virt)
     kworker/0:1-9       [000] .N...     3.116267: xhci_ring_alloc: CMD 00000000abe7e72d: enq 0x000000080b393000(0x000000080b393000) deq 0x000000080b393000(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .N...     3.116276: xhci_dbg_init: Allocated command ring at (____ptrval____)
     kworker/0:1-9       [000] .N...     3.116285: xhci_dbg_init: First segment DMA is 0x0x000000080b393000
     kworker/0:1-9       [000] .N...     3.116295: xhci_dbg_init: // Setting command ring address to 0x000000080b393001
     kworker/0:1-9       [000] .N...     3.116304: xhci_dbg_init: // Doorbell array is located at offset 0x4e0 from cap regs base addr
     kworker/0:1-9       [000] .N...     3.116312: xhci_dbg_init: Allocating primary event ring
     kworker/0:1-9       [000] .N...     3.116320: xhci_ring_alloc: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1000(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .N...     3.116336: xhci_dbg_init: // Write event ring dequeue pointer, preserving EHB bit
     kworker/0:1-9       [000] .N...     3.116345: xhci_dbg_init: Allocating 1 scratchpad buffers
     kworker/0:1-9       [000] .N...     3.116371: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 1, count = 1, revision = 0x2
     kworker/0:1-9       [000] .N...     3.116381: xhci_dbg_init: xHCI 1.0: support USB2 hardware lpm
     kworker/0:1-9       [000] .N...     3.116393: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 2, count = 1, revision = 0x3
     kworker/0:1-9       [000] .N...     3.116403: xhci_dbg_init: Found 1 USB 2.0 ports and 1 USB 3.0 ports.
     kworker/0:1-9       [000] .N...     3.116412: xhci_dbg_init: Finished xhci_init
     kworker/0:1-9       [000] .N...     3.136939: xhci_dbg_init: xhci_run
     kworker/0:1-9       [000] .N...     3.136948: xhci_dbg_init: ERST deq = 64'h80b2f1000
     kworker/0:1-9       [000] .N...     3.136956: xhci_dbg_init: // Set the interrupt modulation register
     kworker/0:1-9       [000] .N...     3.136965: xhci_dbg_init: Finished xhci_run for main hcd
     kworker/1:0-20      [001] d....     3.148862: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
     kworker/0:1-9       [000] dN...     3.174958: xhci_dbg_init: Enable interrupts
     kworker/0:1-9       [000] dN...     3.174966: xhci_dbg_init: Enable primary interrupter
     kworker/0:1-9       [000] dN...     3.174975: xhci_dbg_init: // Turn on HC, cmd = 0x5.
     kworker/0:1-9       [000] dNh..     3.230450: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
     kworker/0:1-9       [000] dNh..     3.230465: xhci_handle_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
     kworker/0:1-9       [000] dNh..     3.230468: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1010(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] dNh..     3.230478: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
     kworker/0:2-184     [000] d....     3.255782: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
     kworker/0:1-9       [000] d....     3.263954: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: CSC WRC PRC PLC Wake: 
     kworker/0:1-9       [000] d....     3.364886: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: CSC WRC PRC PLC Wake: 
          <idle>-0       [000] d.s..     3.376856: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....     3.472992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..     3.476856: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     3.533088: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     3.592880: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] dNs..     3.628836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     3.800864: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..     3.872834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..     3.935009: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..     3.935041: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..     3.935043: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1020(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.935055: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     4.012867: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
       fsck.ext4-452     [003] d.s..     4.120842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     4.220868: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..     4.368838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     4.428849: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..     4.616840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     4.636861: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     4.844885: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
       fsck.ext4-452     [003] d.s..     4.864842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     5.052857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
       fsck.ext4-452     [003] d.s..     5.112832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     5.260847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
       fsck.ext4-452     [003] d.s..     5.360832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     5.468871: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] dNs..     5.608840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     5.676872: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..     5.860834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     5.884876: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     6.092876: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..     6.110281: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     6.316868: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] dNs..     6.352841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     6.528854: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     6.528992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....     6.529042: xhci_queue_trb: CMD: Enable Slot Command: flags C
     kworker/0:1-9       [000] d....     6.529045: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393010(0x000000080b393000) deq 0x000000080b393000(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....     6.529054: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     6.529068: xhci_handle_event: EVENT: TRB 000000080b393000 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     6.529071: xhci_handle_command: CMD: Enable Slot Command: flags C
          <idle>-0       [000] dNh..     6.529078: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393010(0x000000080b393000) deq 0x000000080b393010(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     6.529079: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1030(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....     6.529148: xhci_ring_alloc: CTRL 000000002377373e: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....     6.529160: xhci_alloc_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 num 0 state 0 speed 0 port 0 level 0 slot 0
     kworker/0:1-9       [000] .....     6.529163: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....     6.529227: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....     6.596855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [003] dNs..     6.600836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     6.664859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..     6.708337: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..     6.708357: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
          <idle>-0       [000] d.h..     6.708360: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1040(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     6.708371: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
          <idle>-0       [000] d.s..     6.848834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....     6.872853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....     7.080857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....     7.081561: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..     7.096835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     7.288858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     7.500884: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..     7.543248: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..     7.543280: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..     7.543283: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1050(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     7.543296: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..     7.592855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     7.708871: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] dNs..     7.844842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     7.916940: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
   systemd-udevd-535     [002] d.s..     8.088844: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.124963: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.332856: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..     8.336837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.543294: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
   systemd-udevd-535     [002] d.s..     8.584860: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.748878: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
            grep-574     [002] d.s..     8.832865: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.957012: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....     8.957183: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] .....     8.957253: xhci_free_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....     8.957328: xhci_queue_trb: CMD: Disable Slot Command: slot 1 flags C
     kworker/0:1-9       [000] d....     8.957334: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393020(0x000000080b393000) deq 0x000000080b393010(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....     8.957344: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
   (udev-worker)-543     [000] d.h..     8.957359: xhci_handle_event: EVENT: TRB 000000080b393010 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
   (udev-worker)-543     [000] d.h..     8.957362: xhci_handle_command: CMD: Disable Slot Command: slot 1 flags C
   (udev-worker)-543     [000] d.h..     8.957366: xhci_handle_cmd_disable_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
   (udev-worker)-543     [000] d.h..     8.957372: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393020(0x000000080b393000) deq 0x000000080b393020(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
   (udev-worker)-543     [000] d.h..     8.957373: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1060(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....     8.957575: xhci_free_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 fake_port 0 real_port 0 current_mel 0
     kworker/0:1-9       [000] d....     8.957579: xhci_ring_free: CTRL 000000002377373e: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....     8.957607: xhci_queue_trb: CMD: Enable Slot Command: flags C
     kworker/0:1-9       [000] d....     8.957609: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393030(0x000000080b393000) deq 0x000000080b393020(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....     8.957616: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
   (udev-worker)-561     [000] d.h..     8.957626: xhci_handle_event: EVENT: TRB 000000080b393020 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
   (udev-worker)-561     [000] d.h..     8.957628: xhci_handle_command: CMD: Enable Slot Command: flags C
   (udev-worker)-561     [000] d.h..     8.957635: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393030(0x000000080b393000) deq 0x000000080b393030(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
   (udev-worker)-561     [000] d.h..     8.957636: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1070(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....     8.957809: xhci_ring_alloc: CTRL 000000009dc19497: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....     8.957821: xhci_alloc_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 num 0 state 0 speed 0 port 0 level 0 slot 0
     kworker/0:1-9       [000] .....     8.957823: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....     8.957884: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....     9.024890: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
   (udev-worker)-550     [002] d.s..     9.080866: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     9.096602: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
            grep-602     [000] d.h..     9.155928: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
            grep-602     [000] d.h..     9.155968: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
            grep-602     [000] d.h..     9.155971: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1080(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
            grep-602     [000] d.h..     9.155983: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....     9.300929: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: PRC Wake: 
          <idle>-0       [000] dNs..     9.328840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: PRC Wake: 
     kworker/0:1-9       [000] d....     9.508847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: PRC Wake: 
          <idle>-0       [000] dNs..     9.576837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC PLC Wake: 
     kworker/0:1-9       [000] d....     9.720857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC PLC Wake: 
     kworker/0:1-9       [000] d....     9.721017: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: Wake: 
         systemd-1       [000] d.s..     9.824840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....     9.928861: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    10.136860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
         systemd-1       [000] d.h..    10.182264: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
         systemd-1       [000] d.h..    10.182286: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
         systemd-1       [000] d.h..    10.182290: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1090(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
         systemd-1       [000] d.h..    10.182301: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    10.320842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    10.344857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    10.552862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    10.568835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    10.764868: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    10.816839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    10.972860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    11.068852: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    11.180864: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    11.312838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    11.388860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
 systemd-journal-501     [000] d.s..    11.560863: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    11.597584: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    11.597775: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] .....    11.597847: xhci_free_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....    11.597928: xhci_queue_trb: CMD: Disable Slot Command: slot 1 flags C
     kworker/0:1-9       [000] d....    11.597931: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393040(0x000000080b393000) deq 0x000000080b393030(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    11.597943: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
 systemd-journal-501     [000] d.h..    11.597957: xhci_handle_event: EVENT: TRB 000000080b393030 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
 systemd-journal-501     [000] d.h..    11.597961: xhci_handle_command: CMD: Disable Slot Command: slot 1 flags C
 systemd-journal-501     [000] d.h..    11.597965: xhci_handle_cmd_disable_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
 systemd-journal-501     [000] dNh..    11.597973: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393040(0x000000080b393000) deq 0x000000080b393040(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
 systemd-journal-501     [000] dNh..    11.597974: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10a0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    11.597984: xhci_free_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 fake_port 0 real_port 0 current_mel 0
     kworker/0:1-9       [000] d....    11.597986: xhci_ring_free: CTRL 000000009dc19497: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
 mtrx-init-resiz-672     [000] d.s..    11.808867: xhci_hub_status_data: port-0: Powered-off Not-connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    11.920863: xhci_queue_trb: CMD: Enable Slot Command: flags C
     kworker/0:1-9       [000] d....    11.920870: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393050(0x000000080b393000) deq 0x000000080b393040(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    11.920897: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
     kworker/0:1-9       [000] d.h..    11.920905: xhci_handle_event: EVENT: TRB 000000080b393040 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
     kworker/0:1-9       [000] d.h..    11.920908: xhci_handle_command: CMD: Enable Slot Command: flags C
     kworker/0:1-9       [000] d.h..    11.920915: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393050(0x000000080b393000) deq 0x000000080b393050(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d.h..    11.920916: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10b0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....    11.920956: xhci_ring_alloc: CTRL 00000000ddc3d279: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....    11.920969: xhci_alloc_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 num 0 state 0 speed 0 port 0 level 0 slot 0
     kworker/0:1-9       [000] .....    11.920972: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....    11.921062: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    11.988977: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    12.056909: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    12.160780: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    12.160817: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC Wake: 
          <idle>-0       [000] d.h..    12.160823: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10c0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    12.160836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....    12.264894: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC PLC Wake: 
     kworker/0:1-9       [000] d....    12.265063: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: Wake: 
          <idle>-0       [001] d.s..    12.304838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    12.472881: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    12.680872: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
      journalctl-705     [000] d.h..    12.727072: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
      journalctl-705     [000] d.h..    12.727109: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
      journalctl-705     [000] d.h..    12.727113: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10d0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
      journalctl-705     [000] d.h..    12.727125: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    12.804837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    12.892860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    13.052837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    13.100858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    13.296834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    13.308869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    13.516897: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    13.544862: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    13.724855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    13.792870: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    13.932858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    14.040835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    14.140908: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
             sed-821     [000] d.s..    14.288865: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    14.348919: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    14.536858: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    14.556880: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    14.764871: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    14.765036: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] .....    14.765103: xhci_free_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....    14.765179: xhci_queue_trb: CMD: Disable Slot Command: slot 1 flags C
     kworker/0:1-9       [000] d....    14.765182: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393060(0x000000080b393000) deq 0x000000080b393050(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    14.765192: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..    14.765206: xhci_handle_event: EVENT: TRB 000000080b393050 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..    14.765209: xhci_handle_command: CMD: Disable Slot Command: slot 1 flags C
          <idle>-0       [000] d.h..    14.765213: xhci_handle_cmd_disable_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
          <idle>-0       [000] dNh..    14.765221: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393060(0x000000080b393000) deq 0x000000080b393060(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..    14.765222: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10e0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    14.765231: xhci_free_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 fake_port 0 real_port 0 current_mel 0
     kworker/0:1-9       [000] d....    14.765234: xhci_ring_free: CTRL 00000000ddc3d279: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    14.765259: xhci_queue_trb: CMD: Enable Slot Command: flags C
     kworker/0:1-9       [000] d....    14.765261: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393070(0x000000080b393000) deq 0x000000080b393060(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    14.765268: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..    14.765275: xhci_handle_event: EVENT: TRB 000000080b393060 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..    14.765276: xhci_handle_command: CMD: Enable Slot Command: flags C
          <idle>-0       [000] dNh..    14.765281: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393070(0x000000080b393000) deq 0x000000080b393070(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..    14.765282: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f10f0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....    14.765315: xhci_ring_alloc: CTRL 0000000071e2b309: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] .....    14.765327: xhci_alloc_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 num 0 state 0 speed 0 port 0 level 0 slot 0
     kworker/0:1-9       [000] .....    14.765329: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....    14.765387: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    14.784841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    14.832871: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    14.900878: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
            grep-1012    [000] d.h..    14.964181: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
            grep-1012    [000] d.h..    14.964225: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
            grep-1012    [000] d.h..    14.964229: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1100(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
            grep-1012    [000] d.h..    14.964242: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: PRC Wake: 
            bash-1039    [000] d.s..    15.032859: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: PRC Wake: 
     kworker/0:1-9       [000] d....    15.108866: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: PRC Wake: 
          <idle>-0       [000] d.s..    15.280849: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: PRC Wake: 
     kworker/0:1-9       [000] d....    15.320877: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: PRC Wake: 
          <idle>-0       [000] dNs..    15.528858: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC PLC Wake: 
     kworker/0:1-9       [000] d....    15.528947: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PRC PLC Wake: 
     kworker/0:1-9       [000] d....    15.529100: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    15.736857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    15.776834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    15.944922: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    15.990522: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    15.990563: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    15.990567: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1110(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    15.990579: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
         python3-1094    [002] d.s..    16.024838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    16.152909: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    16.272837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    16.360862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    16.520852: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    16.568989: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
            bash-671     [002] d.s..    16.768855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    16.777070: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    16.984860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    17.016839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    17.192870: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    17.264855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    17.403820: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    17.404021: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] .....    17.404083: xhci_free_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
     kworker/0:1-9       [000] d....    17.404167: xhci_queue_trb: CMD: Disable Slot Command: slot 1 flags C
     kworker/0:1-9       [000] d....    17.404171: xhci_inc_enq: CMD 00000000abe7e72d: enq 0x000000080b393080(0x000000080b393000) deq 0x000000080b393070(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    17.404181: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..    17.404197: xhci_handle_event: EVENT: TRB 000000080b393070 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..    17.404200: xhci_handle_command: CMD: Disable Slot Command: slot 1 flags C
          <idle>-0       [000] d.h..    17.404204: xhci_handle_cmd_disable_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
          <idle>-0       [000] dNh..    17.404209: xhci_inc_deq: CMD 00000000abe7e72d: enq 0x000000080b393080(0x000000080b393000) deq 0x000000080b393080(0x000000080b393000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..    17.404210: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1120(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    17.404222: xhci_free_virt_device: vdev 00000000a8323884 ctx 80c135000 | 80c0fd000 fake_port 0 real_port 0 current_mel 0
     kworker/0:1-9       [000] d....    17.404225: xhci_ring_free: CTRL 0000000071e2b309: enq 0x000000080c131000(0x000000080c131000) deq 0x000000080c131000(0x000000080c131000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:1-9       [000] d....    17.411020: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [002] dNs..    17.512865: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    17.975579: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    17.975617: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    17.975622: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1130(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    17.975635: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    17.975710: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..    18.008852: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    18.032902: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    18.092930: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    18.300913: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    18.437105: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    18.437145: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    18.437148: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1140(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    18.437161: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    18.504840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    18.508861: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    18.716846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
         python3-1320    [003] d.s..    18.752877: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    18.925659: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
            sudo-1369    [003] d.s..    19.000848: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    19.132896: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [003] dNs..    19.252843: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    19.340877: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    19.496841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    19.552894: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    19.744857: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    19.760877: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    19.968982: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    19.992850: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    20.176894: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    20.240858: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    20.384885: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    20.492850: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    20.595248: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
         python3-1582    [003] d.s..    20.736850: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    20.800900: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    20.984855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    21.012198: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    21.012347: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    21.012396: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [003] d.s..    21.232843: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    21.583813: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    21.583853: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    21.583858: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1150(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    21.583871: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    21.583931: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    21.644875: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    21.704869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
         python3-1598    [003] d.s..    21.728841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    21.912859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    22.045337: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    22.045376: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    22.045380: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1160(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    22.045393: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    22.120893: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
            sudo-1617    [003] d.s..    22.224851: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    22.328869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    22.476836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    22.536858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] dNs..    22.720838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    22.744855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    22.952857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    22.972835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    23.160855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    23.216838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    23.368857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    23.464845: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    23.580859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    23.712836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    23.788870: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    23.960840: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    23.996850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    24.204892: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    24.208836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    24.416862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [003] d.s..    24.456835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    24.624847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    24.624958: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    24.625005: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [003] d.s..    24.704833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    25.196051: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    25.196068: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    25.196073: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1170(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    25.196084: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    25.196119: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..    25.200833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    25.252844: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    25.312843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    25.520859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    25.657577: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    25.657601: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    25.657606: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1180(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    25.657619: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    25.696831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    25.728846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    25.936843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    25.944833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    26.144842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    26.192831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    26.352858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    26.444839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    26.560853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    26.688833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    26.768844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    26.936831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    26.976843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    27.184834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    27.184857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    27.392845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    27.432831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    27.600857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    27.680835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    27.808847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    27.928832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    28.016844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    28.176831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    28.224843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    28.224945: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    28.224992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    28.424832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    28.799277: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    28.799311: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    28.799316: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1190(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    28.799329: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    28.799466: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    28.856870: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    28.916843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] dNs..    28.920848: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    29.124842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    29.260796: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    29.260812: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    29.260815: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11a0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    29.260825: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    29.332854: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    29.416833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    29.540860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    29.664838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    29.748849: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    29.912834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    29.956860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    30.160833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    30.164842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    30.372872: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    30.408834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    30.580860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    30.656835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    30.788844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    30.904833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    30.996867: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    31.152833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    31.204844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    31.400832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    31.412870: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    31.620883: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    31.648836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    31.828870: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    31.829061: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    31.829153: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    31.896838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    32.403503: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    32.403535: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    32.403541: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11b0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    32.403553: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    32.404856: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    32.464846: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    32.528875: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    32.640843: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    32.736870: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    32.866029: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    32.866068: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    32.866071: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11c0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    32.866084: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
         python3-1728    [002] dNs..    32.888867: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    32.944882: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
         python3-1728    [002] d.s..    33.136869: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    33.152859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    33.360850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
         python3-1728    [002] d.s..    33.384869: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    33.568874: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    33.632855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    33.776887: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] dNs..    33.880858: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    33.984859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    34.128835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    34.192845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    34.376851: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    34.400906: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    34.612858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] dNs..    34.624837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    34.820856: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    34.872834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    35.028914: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] dNs..    35.120861: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    35.236881: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [002] d.s..    35.368854: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    35.444862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    35.445006: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    35.445058: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [002] dNs..    35.616856: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    36.019754: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    36.019791: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    36.019796: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11d0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    36.019809: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    36.019890: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    36.076865: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    36.116848: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    36.136874: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    36.348894: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    36.481279: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    36.481319: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    36.481322: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11e0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    36.481336: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    36.556864: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
         python3-1770    [001] d.s..    36.608866: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    36.764857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    36.856838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    36.972900: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [001] dNs..    37.104861: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    37.184858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
         python3-1773    [001] d.s..    37.352841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    37.392857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    37.600837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    37.600850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    37.808907: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    37.848851: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    38.018635: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    38.096844: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    38.228859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    38.344845: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    38.436855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [001] d.s..    38.592834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    38.644889: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
         python3-1777    [001] d.s..    38.840855: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    38.852883: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    39.064857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    39.065000: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    39.065051: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [001] d.s..    39.092845: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    39.636008: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    39.636046: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    39.636051: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f11f0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    39.636064: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    39.636124: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    39.692874: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    39.752913: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [002] d.s..    39.832837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    39.960850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    40.097528: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    40.097544: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    40.097547: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1200(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    40.097557: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    40.168843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    40.328832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    40.376842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    40.576832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    40.584843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    40.792842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    40.824831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    41.000843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    41.072831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    41.208842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    41.320838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    41.416852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    41.568837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    41.624851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    41.816838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    41.832855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    42.040846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    42.064833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    42.248856: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    42.312834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    42.456843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    42.560831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    42.664844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    42.664946: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    42.664995: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    42.808832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    43.239227: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    43.239248: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    43.239253: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1210(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    43.239263: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    43.239356: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    43.296856: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    43.304836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    43.356848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    43.564843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    43.700749: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    43.700765: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    43.700768: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1220(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    43.700778: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    43.772843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    43.800831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    43.980843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    44.048831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    44.188843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    44.296831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    44.396842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    44.544832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    44.604962: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    44.796839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    44.812848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    45.020843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    45.040831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    45.228843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    45.288832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    45.436843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    45.536832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    45.644842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    45.784832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    45.852849: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    46.032834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    46.060919: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    46.268890: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    46.269048: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    46.269100: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] dNs..    46.280857: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    46.843456: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    46.843500: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    46.843506: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1230(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    46.843520: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    46.843730: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    46.900884: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    46.960878: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
         python3-1860    [003] d.s..    47.024848: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    47.172904: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
         python3-1862    [000] d.h..    47.304977: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
         python3-1862    [000] d.h..    47.305013: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
         python3-1862    [000] d.h..    47.305016: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1240(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
         python3-1862    [000] d.h..    47.305029: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    47.380900: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    47.520838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    47.588851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    47.768842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    47.796875: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    48.008876: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    48.016865: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    48.220869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    48.268844: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    48.428853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    48.512859: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    48.636873: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    48.760860: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    48.848874: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    49.012839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.060869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    49.256847: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.268852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.476864: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    49.504841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.684862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    49.752856: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.892866: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    49.893001: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    49.893049: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    50.000833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    50.467726: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    50.467767: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    50.467772: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1250(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    50.467785: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    50.467843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
             awk-1972    [002] d.s..    50.496856: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    50.524883: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    50.585484: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    50.796895: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
         python3-2011    [000] d.h..    50.929248: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
         python3-2011    [000] d.h..    50.929286: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
         python3-2011    [000] d.h..    50.929289: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1260(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
         python3-2011    [000] d.h..    50.929302: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    50.992864: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    51.004858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    51.212846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    51.240833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    51.420842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    51.488831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    51.628842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    51.736832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    51.836872: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    51.984832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    52.044843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    52.232837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    52.252853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    52.460846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    52.480832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    52.668842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    52.728832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    52.876844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    52.976831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    53.084866: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    53.224835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    53.292848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    53.472838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    53.500851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    53.500979: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    53.501026: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    53.720839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    54.075959: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    54.076000: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    54.076005: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1270(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    54.076018: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    54.077532: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    54.136966: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    54.196845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] dNs..    54.216835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    54.404844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    54.539482: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    54.539499: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    54.539501: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1280(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    54.539512: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    54.612846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    54.712832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    54.820846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    54.960832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    55.028855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    55.208832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    55.236843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    55.444843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    55.456832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    55.652844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    55.704831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    55.860848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    55.952832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    56.068845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    56.200832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    56.276843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    56.448835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    56.484844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    56.692843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    56.696838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    56.900863: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    56.944832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    57.108843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    57.108945: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    57.108993: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    57.192833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    57.683184: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    57.683202: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    57.683207: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1290(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    57.683217: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    57.684364: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..    57.688835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    57.740846: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    57.800844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    58.008843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    58.145709: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    58.145727: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    58.145729: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12a0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    58.145740: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    58.184831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    58.216844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    58.424844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    58.432834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    58.632843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    58.680831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    58.840845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    58.928832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    59.048860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    59.176836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    59.256846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    59.424838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    59.464854: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    59.672842: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    59.672889: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    59.880860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    59.920835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    60.088845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    60.168832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    60.296844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    60.416832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    60.504843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    60.664834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    60.712844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    60.712945: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    60.712995: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    60.912833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    61.287411: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    61.287428: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    61.287433: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12b0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    61.287443: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    61.288964: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    61.348845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] dNs..    61.408834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    61.408866: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    61.616843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    61.750938: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    61.750954: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    61.750956: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12c0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    61.750966: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    61.824849: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    61.904832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    62.032843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    62.152832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    62.240842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    62.400831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    62.448847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    62.648833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    62.656843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    62.864846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    62.896832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    63.072843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    63.144831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    63.280842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    63.392832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    63.488843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    63.640831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    63.696843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    63.888833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    63.904844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    64.112843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    64.136831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    64.320843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    64.320944: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    64.320992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    64.384832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    64.895646: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    64.895686: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    64.895691: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12d0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    64.895703: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    64.897626: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    64.956845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    65.016845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    65.128832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    65.224859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    65.359174: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    65.359198: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    65.359201: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12e0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    65.359213: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    65.376831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    65.432863: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    65.624835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    65.640846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    65.848866: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    65.872836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    66.056844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    66.120833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    66.264842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    66.368832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    66.472843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    66.616831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    66.680842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    66.864832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    66.888844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.096842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    67.112834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.304842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    67.360832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.512842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    67.608832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.720842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    67.856832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.928843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    67.928942: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    67.928990: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    68.104832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    68.503877: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    68.503895: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    68.503900: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f12f0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    68.503911: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    68.503987: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    68.560844: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    68.600832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    68.620843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    68.828847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    68.965399: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    68.965415: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    68.965417: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1300(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    68.965427: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    69.036845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    69.096832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    69.244842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    69.344832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    69.452842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    69.592831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    69.660842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    69.840832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    69.868843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    70.076843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    70.088830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    70.284842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    70.336833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    70.492843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    70.584832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    70.701365: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    70.832839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    70.908855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    71.080837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    71.116875: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    71.324857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    71.328845: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    71.532847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    71.532955: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    71.533003: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    71.576838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    72.108102: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    72.108130: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    72.108134: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1310(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    72.108146: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    72.108257: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    72.168861: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    72.228845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    72.320833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    72.440863: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    72.570630: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    72.570671: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    72.570674: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1320(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    72.570686: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    72.648852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    72.816833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    72.856844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    73.064836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    73.064859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    73.272843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    73.312832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    73.480843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    73.560834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    73.688843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    73.808832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    73.896843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    74.056831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    74.104841: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    74.304831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    74.312842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    74.520842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    74.552831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    74.728842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    74.800831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    74.936947: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    75.048836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    75.144848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    75.144956: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    75.145005: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    75.296834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    75.719343: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    75.719362: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    75.719367: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1330(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    75.719377: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    75.719419: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    75.776845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    75.792832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    75.836848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    76.044846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    76.180864: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    76.180879: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    76.180882: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1340(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    76.180892: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    76.252845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    76.288832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    76.460843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    76.536832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    76.668859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    76.784835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    76.876871: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    77.032838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    77.084852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    77.280846: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    77.292851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    77.500859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    77.528835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    77.708844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    77.776832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    77.916843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    78.024832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    78.124843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    78.272831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    78.332843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    78.520832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    78.540845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    78.748843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    78.748945: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    78.748992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    78.768831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    79.323566: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    79.323587: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    79.323591: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1350(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    79.323602: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    79.323641: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    79.380847: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    79.440846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    79.512832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    79.648847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    79.785089: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    79.785106: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    79.785109: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1360(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    79.785118: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    79.856850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    80.008833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    80.064845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    80.256832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    80.272844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    80.480844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    80.504832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    80.688845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    80.752832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    80.896845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    81.000831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    81.104844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    81.248831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    81.312844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    81.496832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    81.520845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    81.728844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    81.744830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    81.936844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    81.992833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    82.144846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    82.240832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    82.352844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    82.352946: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    82.352993: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    82.488836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    82.927792: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    82.927830: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    82.927835: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1370(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    82.927848: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    82.929700: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] dNs..    82.984837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    82.988880: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    83.048850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    83.256845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    83.391322: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    83.391361: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    83.391364: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1380(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    83.391377: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    83.464853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    83.480832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    83.672844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    83.728832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    83.880845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    83.976832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    84.088857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    84.224837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    84.296847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    84.472835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    84.504843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    84.712843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    84.720835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    84.920859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    84.968838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.128865: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    85.216841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.336860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    85.464836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.544845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    85.712833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.752843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    85.960841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.960888: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    85.961014: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    85.961062: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    86.208835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    86.536025: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    86.536045: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    86.536049: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1390(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    86.536060: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    86.537281: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    86.596844: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    86.656845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    86.704832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    86.864849: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    86.998548: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    86.998565: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    86.998566: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13a0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    86.998576: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    87.072862: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    87.200833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    87.280847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    87.448832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    87.488844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    87.696833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    87.696855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    87.904851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    87.944830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    88.112844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    88.192830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    88.324855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    88.440835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    88.532846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    88.688837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    88.740852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    88.936836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    88.948852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    89.156858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    89.184837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    89.364848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    89.432832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    89.572843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    89.572949: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    89.572998: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    89.680832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    90.147262: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    90.147280: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    90.147285: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13b0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    90.147295: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    90.148512: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..    90.176832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    90.204844: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    90.264843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    90.472842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    90.609786: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    90.609804: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    90.609806: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13c0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    90.609817: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    90.672831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    90.680843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    90.888847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    90.920862: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    91.096843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    91.168831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    91.304845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    91.416831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    91.512853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    91.664831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    91.720842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    91.912832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    91.928843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    92.136843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    92.160831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    92.344842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    92.408830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    92.552844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    92.656831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    92.760843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    92.904831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    92.968843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    93.152831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    93.176845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    93.176947: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    93.176995: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    93.400839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    93.751488: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    93.751507: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    93.751512: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13d0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    93.751523: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    93.753137: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    93.812846: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    93.872844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..    93.896832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    94.080844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    94.215017: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    94.215055: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    94.215059: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13e0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    94.215071: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    94.288855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    94.392833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    94.496857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    94.640836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    94.704846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    94.888837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    94.912850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    95.120860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    95.136835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    95.328848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    95.384831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    95.536842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    95.632832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    95.744843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    95.880832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    95.952844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    96.128839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    96.160844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    96.368843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    96.376834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    96.576843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    96.624831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    96.784842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    96.784943: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....    96.784991: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..    96.872832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..    97.359722: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    97.359740: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..    97.359745: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f13f0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    97.359756: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....    97.361300: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.s..    97.368835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    97.420846: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    97.480844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....    97.688845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..    97.823247: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..    97.823264: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..    97.823267: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1400(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..    97.823277: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    97.864832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    97.896845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    98.104845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    98.112833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    98.312843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    98.360832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    98.520843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    98.608833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    98.728843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    98.856832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    98.936844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    99.104832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    99.144844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..    99.352835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    99.352855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    99.560844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    99.600832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    99.768843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..    99.848832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....    99.976843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   100.096841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   100.184853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   100.344843: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   100.392855: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   100.392981: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   100.393029: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   100.592834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   100.967959: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   100.967999: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   100.968004: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1410(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   100.968016: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   100.969613: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   101.028846: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] dNs..   101.088836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   101.088869: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   101.296876: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   101.431485: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   101.431516: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   101.431519: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1420(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   101.431532: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   101.504850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   101.584833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   101.712843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   101.832833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   101.920843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   102.080832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   102.128843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   102.328832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   102.336842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   102.544844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   102.576832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   102.752843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   102.824832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   102.960844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   103.072832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   103.168843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   103.320835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   103.376845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   103.568832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   103.584843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   103.792845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   103.816832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   104.000843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   104.000945: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   104.000993: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   104.064832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   104.575185: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   104.575203: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   104.575208: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1430(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   104.575218: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   104.576360: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   104.632845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   104.692844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   104.808831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   104.900846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   105.037711: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   105.037726: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   105.037728: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1440(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   105.037739: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   105.056831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   105.108845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   105.304832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   105.316846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   105.524843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   105.552831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   105.732843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   105.800831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   105.940853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   106.048838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   106.148846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   106.296837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   106.356851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   106.544841: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   106.564852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   106.772846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   106.792833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   106.980856: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   107.040838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   107.188847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   107.288833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   107.396847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   107.536832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   107.604843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   107.604946: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   107.604994: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   107.784832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   108.179410: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   108.179427: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   108.179431: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1450(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   108.179442: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   108.180974: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   108.240845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   108.280832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   108.300840: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   108.508844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   108.642942: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   108.642977: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   108.642980: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1460(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   108.642992: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   108.716854: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   108.776832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   108.924844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   109.024833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   109.132860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   109.272832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   109.340847: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   109.520833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   109.548845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   109.756844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   109.768834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   109.964844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   110.016832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   110.172844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   110.264832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   110.380843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   110.512832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   110.588846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   110.760832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   110.796844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   111.004844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   111.008839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   111.212844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   111.212944: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   111.212992: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   111.256832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   111.787644: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   111.787662: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   111.787667: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1470(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   111.787677: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   111.789199: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   111.849462: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   111.908860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   112.000834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   112.116857: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   112.251172: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   112.251194: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   112.251197: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1480(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   112.251209: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   112.324846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   112.496837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   112.532851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   112.740859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   112.744845: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   112.948844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   112.992834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   113.156842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   113.240832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   113.364843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   113.488832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   113.572842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   113.736832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   113.780842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   113.984834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   113.988839: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   114.196843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   114.232831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   114.404842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   114.480832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   114.612842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   114.728832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   114.820842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   114.820939: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   114.820988: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   114.976832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   115.395876: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   115.395891: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   115.395896: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1490(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   115.395906: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   115.395940: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   115.452844: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   115.472831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   115.512843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   115.720843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   115.857397: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   115.857412: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   115.857415: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14a0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   115.857425: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   115.928843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   115.968832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   116.136843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   116.216834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   116.344842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   116.464832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   116.552842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   116.712831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   116.760841: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   116.960831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   116.968842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   117.176842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   117.208832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   117.384842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   117.456830: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   117.592842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   117.704839: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   117.800853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   117.952833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   118.008859: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   118.200835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   118.216845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   118.424858: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   118.424991: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   118.425039: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   118.448835: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   119.000104: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   119.000142: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   119.000146: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14b0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   119.000159: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   119.000221: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   119.056848: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   119.116842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   119.192833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   119.324844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   119.461622: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   119.461637: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   119.461640: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14c0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   119.461650: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   119.532844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   119.688832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   119.740843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   119.936832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   119.948842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   120.156843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   120.184831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   120.364844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   120.432832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   120.572843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   120.680832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   120.780842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   120.928832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   120.988843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   121.176831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   121.196842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   121.404843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   121.424832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   121.612843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   121.672831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   121.820844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   121.920831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   122.028842: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   122.028939: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   122.028985: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   122.168831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   122.603320: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   122.603337: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   122.603342: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14d0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   122.603352: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   122.603386: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   122.660845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   122.664837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   122.720844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   122.928844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   123.064844: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   123.064860: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   123.064863: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14e0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   123.064873: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   123.136846: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   123.160831: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   123.344843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   123.408832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   123.553153: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   123.656838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   123.760852: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   123.904838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   123.968853: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   124.152838: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   124.176851: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   124.384860: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   124.400834: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   124.592850: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   124.648832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   124.800844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   124.896833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   125.008844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   125.144832: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   125.216843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
          <idle>-0       [000] d.s..   125.392833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   125.424844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   125.632844: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   125.632946: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
     kworker/0:1-9       [000] d....   125.632995: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.s..   125.640836: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: Wake: 
          <idle>-0       [000] d.h..   126.207546: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   126.207564: xhci_handle_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
          <idle>-0       [000] d.h..   126.207568: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f14f0(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   126.207579: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   126.209105: xhci_get_port_status: port-0: Powered Connected Disabled Link:Inactive PortSpeed:4 Change: PLC Wake: 
     kworker/0:1-9       [000] d....   126.268845: xhci_get_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   126.328843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.s..   126.384833: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
     kworker/0:1-9       [000] d....   126.536848: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake: 
          <idle>-0       [000] d.h..   126.671073: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
          <idle>-0       [000] d.h..   126.671089: xhci_handle_port_status: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] d.h..   126.671092: xhci_inc_deq: EVENT 00000000c3fd2115: enq 0x000000080b2f1000(0x000000080b2f1000) deq 0x000000080b2f1500(0x000000080b2f1000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..   126.671102: xhci_hub_status_data: port-0: Powered Connected Disabled Link:RxDetect PortSpeed:4 Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   126.744845: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 Change: WRC PRC Wake: 
          <idle>-0       [000] dNs..   126.880837: xhci_hub_status_data: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 
     kworker/0:1-9       [000] d....   126.952843: xhci_get_port_status: port-0: Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: WRC PRC Wake: 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: tracepoints_success.log --]
[-- Type: text/x-log; name="tracepoints_success.log", Size: 352818 bytes --]

# tracer: nop
#
# entries-in-buffer/entries-written: 28930/28930   #P:4
#
#                                _-----=> irqs-off/BH-disabled
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| / _-=> migrate-disable
#                              |||| /     delay
#           TASK-PID     CPU#  |||||  TIMESTAMP  FUNCTION
#              | |         |   |||||     |         |
           <...>-34      [001] .....     2.929462: xhci_dbg_init: // Halt the HC
           <...>-34      [001] .....     2.929481: xhci_dbg_init: // Reset the HC
           <...>-34      [001] .....     2.929518: xhci_dbg_init: Wait for controller to be ready for doorbell rings
           <...>-34      [001] .....     2.929541: xhci_dbg_init: xhci_init
           <...>-34      [001] .....     2.929548: xhci_dbg_init: xHCI doesn't need link TRB QUIRK
           <...>-34      [001] .....     2.929558: xhci_dbg_init: Supported page size register = 0x1
           <...>-34      [001] .....     2.929566: xhci_dbg_init: Supported page size of 8K
           <...>-34      [001] .....     2.929574: xhci_dbg_init: HCD page size set to 4K
           <...>-34      [001] .....     2.929583: xhci_dbg_init: // xHC can handle at most 64 device slots.
           <...>-34      [001] .....     2.929592: xhci_dbg_init: // Setting Max device slots reg = 0x40.
           <...>-34      [001] .....     2.929616: xhci_dbg_init: // Device context base array address = 0x0x000000080c08c000 (DMA), (____ptrval____) (virt)
           <...>-34      [001] .....     2.929631: xhci_ring_alloc: CMD 000000002502bc1a: enq 0x000000080c08d000(0x000000080c08d000) deq 0x000000080c08d000(0x000000080c08d000) segs 1 stream 0 bounce 0 cycle 1
           <...>-34      [001] .....     2.929640: xhci_dbg_init: Allocated command ring at (____ptrval____)
           <...>-34      [001] .....     2.929649: xhci_dbg_init: First segment DMA is 0x0x000000080c08d000
           <...>-34      [001] .....     2.929659: xhci_dbg_init: // Setting command ring address to 0x000000080c08d001
           <...>-34      [001] .....     2.929668: xhci_dbg_init: // Doorbell array is located at offset 0x4e0 from cap regs base addr
           <...>-34      [001] .....     2.929676: xhci_dbg_init: Allocating primary event ring
           <...>-34      [001] .....     2.929693: xhci_ring_alloc: EVENT 00000000e787ac0b: enq 0x000000080c08e000(0x000000080c08e000) deq 0x000000080c08e000(0x000000080c08e000) segs 1 stream 0 bounce 0 cycle 1
           <...>-34      [001] .....     2.929708: xhci_dbg_init: // Write event ring dequeue pointer, preserving EHB bit
           <...>-34      [001] .....     2.929717: xhci_dbg_init: Allocating 1 scratchpad buffers
           <...>-34      [001] .....     2.929742: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 1, count = 1, revision = 0x2
           <...>-34      [001] .....     2.929751: xhci_dbg_init: xHCI 1.0: support USB2 hardware lpm
           <...>-34      [001] .....     2.929763: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 2, count = 1, revision = 0x3
           <...>-34      [001] .....     2.929773: xhci_dbg_init: Found 1 USB 2.0 ports and 1 USB 3.0 ports.
           <...>-34      [001] .....     2.929783: xhci_dbg_init: Finished xhci_init
           <...>-34      [001] .....     2.945137: xhci_dbg_init: xhci_run
           <...>-34      [001] .....     2.945146: xhci_dbg_init: ERST deq = 64'h80c08e000
           <...>-34      [001] .....     2.945154: xhci_dbg_init: // Set the interrupt modulation register
           <...>-34      [001] .....     2.945162: xhci_dbg_init: Finished xhci_run for main hcd
           <...>-34      [001] d....     2.964927: xhci_dbg_init: Enable interrupts
           <...>-34      [001] d....     2.964935: xhci_dbg_init: Enable primary interrupter
           <...>-34      [001] d....     2.964944: xhci_dbg_init: // Turn on HC, cmd = 0x5.
           <...>-63      [001] d....     3.040441: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
           <...>-66      [000] .N...     3.120438: xhci_dbg_init: // Halt the HC
           <...>-66      [000] .N...     3.120458: xhci_dbg_init: // Reset the HC
           <...>-66      [000] .N...     3.120495: xhci_dbg_init: Wait for controller to be ready for doorbell rings
           <...>-66      [000] .N...     3.120519: xhci_dbg_init: xhci_init
           <...>-66      [000] .N...     3.120527: xhci_dbg_init: xHCI doesn't need link TRB QUIRK
           <...>-66      [000] .N...     3.120536: xhci_dbg_init: Supported page size register = 0x1
           <...>-66      [000] .N...     3.120545: xhci_dbg_init: Supported page size of 8K
           <...>-66      [000] .N...     3.120553: xhci_dbg_init: HCD page size set to 4K
           <...>-66      [000] .N...     3.120562: xhci_dbg_init: // xHC can handle at most 64 device slots.
           <...>-66      [000] .N...     3.120571: xhci_dbg_init: // Setting Max device slots reg = 0x40.
           <...>-66      [000] .N...     3.120597: xhci_dbg_init: // Device context base array address = 0x0x000000080c0e7000 (DMA), (____ptrval____) (virt)
           <...>-66      [000] .N...     3.120614: xhci_ring_alloc: CMD 00000000c8a0c66a: enq 0x000000080c0e8000(0x000000080c0e8000) deq 0x000000080c0e8000(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .N...     3.120624: xhci_dbg_init: Allocated command ring at (____ptrval____)
           <...>-66      [000] .N...     3.120633: xhci_dbg_init: First segment DMA is 0x0x000000080c0e8000
           <...>-66      [000] .N...     3.120642: xhci_dbg_init: // Setting command ring address to 0x000000080c0e8001
           <...>-66      [000] .N...     3.120652: xhci_dbg_init: // Doorbell array is located at offset 0x4e0 from cap regs base addr
           <...>-66      [000] .N...     3.120659: xhci_dbg_init: Allocating primary event ring
           <...>-66      [000] .N...     3.120667: xhci_ring_alloc: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3000(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .N...     3.120682: xhci_dbg_init: // Write event ring dequeue pointer, preserving EHB bit
           <...>-66      [000] .N...     3.120691: xhci_dbg_init: Allocating 1 scratchpad buffers
           <...>-66      [000] .N...     3.120721: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 1, count = 1, revision = 0x2
           <...>-66      [000] .N...     3.120730: xhci_dbg_init: xHCI 1.0: support USB2 hardware lpm
           <...>-66      [000] .N...     3.120743: xhci_dbg_init: Ext Cap (____ptrval____), port offset = 2, count = 1, revision = 0x3
           <...>-66      [000] .N...     3.120753: xhci_dbg_init: Found 1 USB 2.0 ports and 1 USB 3.0 ports.
           <...>-66      [000] .N...     3.120762: xhci_dbg_init: Finished xhci_init
           <...>-66      [000] .N...     3.138516: xhci_dbg_init: xhci_run
           <...>-66      [000] .N...     3.148945: xhci_dbg_init: ERST deq = 64'h80c0f3000
           <...>-60      [001] d....     3.151910: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
           <...>-66      [000] .N...     3.153206: xhci_dbg_init: // Set the interrupt modulation register
           <...>-66      [000] .N...     3.153216: xhci_dbg_init: Finished xhci_run for main hcd
           <...>-66      [000] dN...     3.179273: xhci_dbg_init: Enable interrupts
           <...>-66      [000] dN...     3.179281: xhci_dbg_init: Enable primary interrupter
           <...>-66      [000] dN...     3.179290: xhci_dbg_init: // Turn on HC, cmd = 0x5.
           <...>-66      [000] dNh..     3.234769: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
           <...>-66      [000] dNh..     3.234783: xhci_handle_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
           <...>-66      [000] dNh..     3.234786: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3010(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] dNh..     3.234796: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
     kworker/0:0-7       [000] d....     3.260109: xhci_get_port_status: port-0: Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: 
           <...>-66      [000] d....     3.271849: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
           <...>-66      [000] d....     3.371949: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: CSC WRC PRC Wake: 
          <idle>-0       [000] d.s..     3.379906: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] d....     3.475987: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] d....     3.476075: xhci_queue_trb: CMD: Enable Slot Command: flags C
           <...>-66      [000] d....     3.476079: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8010(0x000000080c0e8000) deq 0x000000080c0e8000(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.476090: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.476102: xhci_handle_event: EVENT: TRB 000000080c0e8000 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.476105: xhci_handle_command: CMD: Enable Slot Command: flags C
          <idle>-0       [000] dNh..     3.476112: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8010(0x000000080c0e8000) deq 0x000000080c0e8010(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.476113: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3020(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.476190: xhci_ring_alloc: CTRL 00000000bbead51e: enq 0x000000080c3e9000(0x000000080c3e9000) deq 0x000000080c3e9000(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.476203: xhci_alloc_virt_device: vdev 00000000639ebdd4 ctx 80c3e5000 | 80a35a000 num 0 state 0 speed 0 port 0 level 0 slot 0
           <...>-66      [000] .....     3.476206: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] d....     3.476273: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] d.h..     3.476329: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
           <...>-66      [000] d.h..     3.476340: xhci_handle_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d.h..     3.476342: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3030(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d.h..     3.476352: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d....     3.544023: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d....     3.544183: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] .....     3.603908: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] .....     3.603963: xhci_setup_addressable_virt_device: vdev 00000000639ebdd4 ctx 80c3e5000 | 80a35a000 num 0 state 5 speed 5 port 1 level 1 slot 1
           <...>-66      [000] .....     3.603966: xhci_address_ctx: ctx_64=4, ctx_type=2, ctx_dma=@80c3e5000, ctx_va=@000000008c3ad113
           <...>-66      [000] .....     3.603973: xhci_address_ctrl_ctx: Add: slot ep0
           <...>-66      [000] d....     3.603975: xhci_setup_device: vdev 00000000639ebdd4 ctx 80c3e5000 | 80a35a000 num 0 state 5 speed 5 port 1 level 1 slot 1
           <...>-66      [000] d....     3.603982: xhci_queue_trb: CMD: Address Device Command: ctx 000000080c3e5000 slot 1 flags b:C
           <...>-66      [000] d....     3.603984: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8020(0x000000080c0e8000) deq 0x000000080c0e8010(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.603993: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.604063: xhci_handle_event: EVENT: TRB 000000080c0e8010 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.604066: xhci_handle_command: CMD: Address Device Command: ctx 000000080c3e5000 slot 1 flags b:C
          <idle>-0       [000] d.h..     3.604070: xhci_handle_cmd_addr_dev: RS 00000 super-speed Ctx Entries 1 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 1 State addressed
          <idle>-0       [000] dNh..     3.604075: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8020(0x000000080c0e8000) deq 0x000000080c0e8020(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.604076: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3040(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.604093: xhci_dbg_address: Successful setup address command
           <...>-66      [000] .....     3.604103: xhci_dbg_address: Op regs DCBAA ptr = 0x0000080c0e7000
           <...>-66      [000] .....     3.604115: xhci_dbg_address: Slot ID 1 dcbaa entry @(____ptrval____) = 0x0000080a35a000
           <...>-66      [000] .....     3.604128: xhci_dbg_address: Output Context DMA address = 0x80a35a000
           <...>-66      [000] .....     3.604130: xhci_address_ctx: ctx_64=4, ctx_type=2, ctx_dma=@80c3e5000, ctx_va=@000000008c3ad113
           <...>-66      [000] .....     3.604136: xhci_address_ctx: ctx_64=4, ctx_type=1, ctx_dma=@80a35a000, ctx_va=@000000000ede9e50
           <...>-66      [000] .....     3.604156: xhci_dbg_address: Internal device address = 1
          <idle>-0       [000] dNs..     3.627890: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] .....     3.627936: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147483776 slot 1 length 0/8 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.627941: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 8 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.627942: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9010(0x000000080c3e9000) deq 0x000000080c3e9000(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.627944: xhci_queue_trb: CTRL: Buffer 0000000033400000 length 8 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.627945: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9020(0x000000080c3e9000) deq 0x000000080c3e9000(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.627946: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.627948: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9030(0x000000080c3e9000) deq 0x000000080c3e9000(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.627950: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
           <...>-453     [000] dNh..     3.628057: xhci_handle_event: EVENT: TRB 000000080c3e9020 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
           <...>-453     [000] dNh..     3.628062: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-453     [000] dNh..     3.628065: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9030(0x000000080c3e9000) deq 0x000000080c3e9030(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-453     [000] dNh..     3.628068: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147483776 slot 1 length 8/8 sgs 0/0 stream 0 flags 00110200
           <...>-453     [000] dNh..     3.628070: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3050(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628105: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.628108: xhci_queue_trb: CTRL: bRequestType 00 bRequest 31 wValue 0028 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628109: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9040(0x000000080c3e9000) deq 0x000000080c3e9030(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628110: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628112: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9050(0x000000080c3e9000) deq 0x000000080c3e9030(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628113: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628209: xhci_handle_event: EVENT: TRB 000000080c3e9040 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628212: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628214: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9050(0x000000080c3e9000) deq 0x000000080c3e9050(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628216: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.628217: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3060(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628232: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/18 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628234: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628236: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9060(0x000000080c3e9000) deq 0x000000080c3e9050(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628237: xhci_queue_trb: CTRL: Buffer 0000000033400800 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628238: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9070(0x000000080c3e9000) deq 0x000000080c3e9050(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628239: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628241: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9080(0x000000080c3e9000) deq 0x000000080c3e9050(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628242: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628323: xhci_handle_event: EVENT: TRB 000000080c3e9070 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628325: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628328: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9080(0x000000080c3e9000) deq 0x000000080c3e9080(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628329: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 18/18 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628331: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3070(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628350: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/5 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628352: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0f00 wIndex 0000 wLength 5 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628353: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9090(0x000000080c3e9000) deq 0x000000080c3e9080(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628354: xhci_queue_trb: CTRL: Buffer 0000000033401000 length 5 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628356: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90a0(0x000000080c3e9000) deq 0x000000080c3e9080(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628357: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628358: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90b0(0x000000080c3e9000) deq 0x000000080c3e9080(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628359: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628436: xhci_handle_event: EVENT: TRB 000000080c3e90a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628438: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628440: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e90b0(0x000000080c3e9000) deq 0x000000080c3e90b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628441: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 5/5 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628442: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3080(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628457: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/22 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628459: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0f00 wIndex 0000 wLength 22 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628461: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90c0(0x000000080c3e9000) deq 0x000000080c3e90b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628462: xhci_queue_trb: CTRL: Buffer 0000000033401800 length 22 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628463: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90d0(0x000000080c3e9000) deq 0x000000080c3e90b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628464: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628467: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90e0(0x000000080c3e9000) deq 0x000000080c3e90b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628468: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628552: xhci_handle_event: EVENT: TRB 000000080c3e90d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628555: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628557: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e90e0(0x000000080c3e9000) deq 0x000000080c3e90e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628559: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 22/22 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628560: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3090(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628586: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/9 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628589: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628590: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e90f0(0x000000080c3e9000) deq 0x000000080c3e90e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628591: xhci_queue_trb: CTRL: Buffer 0000000033402000 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628593: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9100(0x000000080c3e9000) deq 0x000000080c3e90e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628594: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628595: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9110(0x000000080c3e9000) deq 0x000000080c3e90e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628596: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628665: xhci_handle_event: EVENT: TRB 000000080c3e9100 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628667: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628669: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9110(0x000000080c3e9000) deq 0x000000080c3e9110(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628670: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 9/9 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628671: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628685: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/57 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628687: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 57 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628688: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9120(0x000000080c3e9000) deq 0x000000080c3e9110(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628689: xhci_queue_trb: CTRL: Buffer 000000080c848e40 length 57 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628691: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9130(0x000000080c3e9000) deq 0x000000080c3e9110(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628692: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628693: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9140(0x000000080c3e9000) deq 0x000000080c3e9110(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628695: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628778: xhci_handle_event: EVENT: TRB 000000080c3e9130 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628780: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628782: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9140(0x000000080c3e9000) deq 0x000000080c3e9140(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628784: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 57/57 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628785: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628804: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/9 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628807: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0201 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628808: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9150(0x000000080c3e9000) deq 0x000000080c3e9140(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628809: xhci_queue_trb: CTRL: Buffer 0000000033402800 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628811: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9160(0x000000080c3e9000) deq 0x000000080c3e9140(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628812: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628813: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9170(0x000000080c3e9000) deq 0x000000080c3e9140(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628814: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.628890: xhci_handle_event: EVENT: TRB 000000080c3e9160 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.628892: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.628894: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9170(0x000000080c3e9000) deq 0x000000080c3e9170(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.628896: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 9/9 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.628897: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.628917: xhci_urb_enqueue: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 0/98 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.628919: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0201 wIndex 0000 wLength 98 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.628921: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9180(0x000000080c3e9000) deq 0x000000080c3e9170(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628921: xhci_queue_trb: CTRL: Buffer 000000080c863980 length 98 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.628923: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9190(0x000000080c3e9000) deq 0x000000080c3e9170(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628924: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.628926: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91a0(0x000000080c3e9000) deq 0x000000080c3e9170(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.628927: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.629004: xhci_handle_event: EVENT: TRB 000000080c3e9190 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629006: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.629009: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e91a0(0x000000080c3e9000) deq 0x000000080c3e91a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629010: xhci_urb_giveback: ep0out-control: urb 00000000bb735620 pipe 2147484288 slot 1 length 98/98 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.629011: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.629030: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.629032: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0300 wIndex 0000 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.629034: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91b0(0x000000080c3e9000) deq 0x000000080c3e91a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629035: xhci_queue_trb: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.629036: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91c0(0x000000080c3e9000) deq 0x000000080c3e91a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629037: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.629039: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91d0(0x000000080c3e9000) deq 0x000000080c3e91a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629040: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.629110: xhci_handle_event: EVENT: TRB 000000080c3e91b0 status 'Short Packet' len 251 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629112: xhci_handle_transfer: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
          <idle>-0       [000] d.h..     3.629123: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629125: xhci_handle_event: EVENT: TRB 000000080c3e91c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629127: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.629129: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e91d0(0x000000080c3e9000) deq 0x000000080c3e91d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629130: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/255 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.629131: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f30f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.629145: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.629148: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.629150: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91e0(0x000000080c3e9000) deq 0x000000080c3e91d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629151: xhci_queue_trb: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.629152: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e91f0(0x000000080c3e9000) deq 0x000000080c3e91d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629153: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.629155: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9200(0x000000080c3e9000) deq 0x000000080c3e91d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629156: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.629221: xhci_handle_event: EVENT: TRB 000000080c3e91e0 status 'Short Packet' len 235 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629224: xhci_handle_transfer: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
          <idle>-0       [000] d.h..     3.629233: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3100(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629234: xhci_handle_event: EVENT: TRB 000000080c3e91f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629236: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.629238: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9200(0x000000080c3e9000) deq 0x000000080c3e9200(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629239: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 20/255 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.629241: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3110(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.629256: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.629258: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0301 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.629259: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9210(0x000000080c3e9000) deq 0x000000080c3e9200(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629260: xhci_queue_trb: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.629262: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9220(0x000000080c3e9000) deq 0x000000080c3e9200(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629263: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.629264: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9230(0x000000080c3e9000) deq 0x000000080c3e9200(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629265: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.629333: xhci_handle_event: EVENT: TRB 000000080c3e9210 status 'Short Packet' len 239 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629335: xhci_handle_transfer: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
          <idle>-0       [000] d.h..     3.629344: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3120(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629346: xhci_handle_event: EVENT: TRB 000000080c3e9220 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.629348: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.629350: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9230(0x000000080c3e9000) deq 0x000000080c3e9230(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.629351: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 16/255 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.629352: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3130(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.629385: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.629388: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0306 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.629389: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9240(0x000000080c3e9000) deq 0x000000080c3e9230(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629390: xhci_queue_trb: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.629392: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9250(0x000000080c3e9000) deq 0x000000080c3e9230(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629393: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.629394: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9260(0x000000080c3e9000) deq 0x000000080c3e9230(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.629395: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
           <...>-453     [000] d.h..     3.629446: xhci_handle_event: EVENT: TRB 000000080c3e9240 status 'Short Packet' len 241 slot 1 ep 1 type 'Transfer Event' flags e:C
           <...>-453     [000] d.h..     3.629448: xhci_handle_transfer: CTRL: Buffer 000000080c3fd600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-453     [000] d.h..     3.629458: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3140(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-453     [000] d.h..     3.629459: xhci_handle_event: EVENT: TRB 000000080c3e9250 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
           <...>-453     [000] d.h..     3.629461: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-453     [000] d.h..     3.629463: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9260(0x000000080c3e9000) deq 0x000000080c3e9260(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-453     [000] d.h..     3.629464: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 14/255 sgs 0/0 stream 0 flags 00110200
           <...>-453     [000] d.h..     3.629465: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3150(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.669577: xhci_ring_alloc: INTR 00000000e45ec650: enq 0x000000080c1d3000(0x000000080c1d3000) deq 0x000000080c1d3000(0x000000080c1d3000) segs 2 stream 0 bounce 16 cycle 1
           <...>-66      [000] .....     3.669584: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 16000 us max ESIT payload 8 CErr 3 Type Int IN burst 0 maxp 16 deq 000000080c1d3001 avg trb len 8
           <...>-66      [000] d....     3.669617: xhci_configure_endpoint_ctrl_ctx: Add: slot 3in
           <...>-66      [000] d....     3.669619: xhci_configure_endpoint: RS 00000 super-speed Ctx Entries 7 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] d....     3.669627: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
           <...>-66      [000] d....     3.669629: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8030(0x000000080c0e8000) deq 0x000000080c0e8020(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.669638: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.675302: xhci_handle_event: EVENT: TRB 000000080c0e8020 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.675308: xhci_handle_command: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.675319: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8030(0x000000080c0e8000) deq 0x000000080c0e8030(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.675320: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3160(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.675354: xhci_dbg_context_change: Successful Endpoint Configure command
           <...>-66      [000] d....     3.675416: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 7 flags C
           <...>-66      [000] d....     3.675419: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8040(0x000000080c0e8000) deq 0x000000080c0e8030(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.675429: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.675439: xhci_handle_event: EVENT: TRB 000000080c1d3000 status 'Stopped - Length Invalid' len 0 slot 1 ep 7 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.675450: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3170(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.675451: xhci_handle_event: EVENT: TRB 000000080c0e8030 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.675453: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 7 flags C
          <idle>-0       [000] dNh..     3.675458: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8040(0x000000080c0e8000) deq 0x000000080c0e8040(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.675459: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3180(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.675468: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
           <...>-66      [000] d....     3.675470: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8050(0x000000080c0e8000) deq 0x000000080c0e8040(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.675477: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.691303: xhci_handle_event: EVENT: TRB 000000080c0e8040 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.691308: xhci_handle_command: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.691322: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8050(0x000000080c0e8000) deq 0x000000080c0e8050(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.691323: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3190(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.691375: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.691382: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0002 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.691385: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9270(0x000000080c3e9000) deq 0x000000080c3e9260(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691387: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.691388: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9280(0x000000080c3e9000) deq 0x000000080c3e9260(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691393: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.691511: xhci_handle_event: EVENT: TRB 000000080c3e9270 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.691516: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.691519: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9280(0x000000080c3e9000) deq 0x000000080c3e9280(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.691522: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.691525: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.691668: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.691671: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0305 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.691672: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9290(0x000000080c3e9000) deq 0x000000080c3e9280(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691673: xhci_queue_trb: CTRL: Buffer 000000080c3fd100 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.691675: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92a0(0x000000080c3e9000) deq 0x000000080c3e9280(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691676: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.691677: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92b0(0x000000080c3e9000) deq 0x000000080c3e9280(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691679: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.691711: xhci_handle_event: EVENT: TRB 000000080c3e9290 status 'Short Packet' len 201 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.691714: xhci_handle_transfer: CTRL: Buffer 000000080c3fd100 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
          <idle>-0       [000] d.h..     3.691738: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.691739: xhci_handle_event: EVENT: TRB 000000080c3e92a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.691742: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.691744: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e92b0(0x000000080c3e9000) deq 0x000000080c3e92b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.691746: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 54/255 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.691747: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.691907: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.691910: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e610 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.691912: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92c0(0x000000080c3e9000) deq 0x000000080c3e92b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691913: xhci_queue_trb: CTRL: Buffer 0000000033403000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.691915: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92d0(0x000000080c3e9000) deq 0x000000080c3e92b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691916: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.691917: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92e0(0x000000080c3e9000) deq 0x000000080c3e92b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.691919: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.691946: xhci_handle_event: EVENT: TRB 000000080c3e92d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.691949: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.691952: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e92e0(0x000000080c3e9000) deq 0x000000080c3e92e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.691953: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.691955: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.692134: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.692136: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e610 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.692138: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e92f0(0x000000080c3e9000) deq 0x000000080c3e92e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.692139: xhci_queue_trb: CTRL: Buffer 0000000033403800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.692141: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9300(0x000000080c3e9000) deq 0x000000080c3e92e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.692141: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.692143: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9310(0x000000080c3e9000) deq 0x000000080c3e92e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.692144: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.692178: xhci_handle_event: EVENT: TRB 000000080c3e9300 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.692180: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.692183: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9310(0x000000080c3e9000) deq 0x000000080c3e9310(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.692184: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.692186: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.692442: xhci_configure_endpoint_ctrl_ctx: Drop: 3in, Add: slot
           <...>-66      [000] d....     3.692444: xhci_configure_endpoint: RS 00000 super-speed Ctx Entries 1 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] d....     3.692449: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
           <...>-66      [000] d....     3.692451: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8060(0x000000080c0e8000) deq 0x000000080c0e8050(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.692459: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.707299: xhci_handle_event: EVENT: TRB 000000080c0e8050 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.707304: xhci_handle_command: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.707314: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8060(0x000000080c0e8000) deq 0x000000080c0e8060(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.707315: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f31f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.707348: xhci_dbg_context_change: Successful Endpoint Configure command
           <...>-66      [000] .....     3.707352: xhci_ring_free: INTR 00000000e45ec650: enq 0x000000080c1d3000(0x000000080c1d3000) deq 0x000000080c1d3000(0x000000080c1d3000) segs 2 stream 0 bounce 16 cycle 1
           <...>-66      [000] .....     3.707384: xhci_ring_alloc: BULK 00000000b2320ecd: enq 0x000000080c1d3000(0x000000080c1d3000) deq 0x000000080c1d3000(0x000000080c1d3000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.707386: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 3 maxp 1024 deq 000000080c1d3001 avg trb len 0
           <...>-66      [000] .....     3.707429: xhci_ring_alloc: BULK 0000000004bc3999: enq 0x000000080c9bb000(0x000000080c9bb000) deq 0x000000080c9bb000(0x000000080c9bb000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.707430: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 3 maxp 1024 deq 000000080c9bb001 avg trb len 0
           <...>-66      [000] .....     3.707455: xhci_ring_alloc: INTR 0000000098b25673: enq 0x000000080c9c1000(0x000000080c9c1000) deq 0x000000080c9c1000(0x000000080c9c1000) segs 2 stream 0 bounce 2 cycle 1
           <...>-66      [000] .....     3.707457: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 16000 us max ESIT payload 2 CErr 3 Type Int IN burst 0 maxp 2 deq 000000080c9c1001 avg trb len 2
           <...>-66      [000] d....     3.707479: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in
           <...>-66      [000] d....     3.707481: xhci_configure_endpoint: RS 00000 super-speed Ctx Entries 7 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] d....     3.707488: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
           <...>-66      [000] d....     3.707490: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8070(0x000000080c0e8000) deq 0x000000080c0e8060(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.707498: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723297: xhci_handle_event: EVENT: TRB 000000080c0e8060 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723301: xhci_handle_command: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.723308: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8070(0x000000080c0e8000) deq 0x000000080c0e8070(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723309: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3200(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.723333: xhci_dbg_context_change: Successful Endpoint Configure command
           <...>-66      [000] d....     3.723410: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
           <...>-66      [000] d....     3.723412: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8080(0x000000080c0e8000) deq 0x000000080c0e8070(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723421: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723430: xhci_handle_event: EVENT: TRB 000000080c1d3000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.723441: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3210(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.723445: xhci_handle_event: EVENT: TRB 000000080c0e8070 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723447: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
          <idle>-0       [000] dNh..     3.723452: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8080(0x000000080c0e8000) deq 0x000000080c0e8080(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723453: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3220(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723462: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
           <...>-66      [000] d....     3.723464: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8090(0x000000080c0e8000) deq 0x000000080c0e8080(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723471: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723482: xhci_handle_event: EVENT: TRB 000000080c0e8080 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723484: xhci_handle_command: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.723489: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8090(0x000000080c0e8000) deq 0x000000080c0e8090(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723490: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3230(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723502: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 4 flags C
           <...>-66      [000] d....     3.723504: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80a0(0x000000080c0e8000) deq 0x000000080c0e8090(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723512: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723524: xhci_handle_event: EVENT: TRB 000000080c9bb000 status 'Stopped - Length Invalid' len 0 slot 1 ep 4 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.723534: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3240(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.723535: xhci_handle_event: EVENT: TRB 000000080c0e8090 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723537: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 4 flags C
          <idle>-0       [000] dNh..     3.723541: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80a0(0x000000080c0e8000) deq 0x000000080c0e80a0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723542: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3250(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723552: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
           <...>-66      [000] d....     3.723554: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80b0(0x000000080c0e8000) deq 0x000000080c0e80a0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723561: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723572: xhci_handle_event: EVENT: TRB 000000080c0e80a0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723574: xhci_handle_command: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.723578: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80b0(0x000000080c0e8000) deq 0x000000080c0e80b0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723579: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3260(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723591: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 7 flags C
           <...>-66      [000] d....     3.723593: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80c0(0x000000080c0e8000) deq 0x000000080c0e80b0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723600: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.723614: xhci_handle_event: EVENT: TRB 000000080c9c1000 status 'Stopped - Length Invalid' len 0 slot 1 ep 7 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.723624: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3270(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.723625: xhci_handle_event: EVENT: TRB 000000080c0e80b0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.723627: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 7 flags C
          <idle>-0       [000] dNh..     3.723632: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80c0(0x000000080c0e8000) deq 0x000000080c0e80c0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.723632: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3280(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723643: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
           <...>-66      [000] d....     3.723644: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80d0(0x000000080c0e8000) deq 0x000000080c0e80c0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.723651: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.739297: xhci_handle_event: EVENT: TRB 000000080c0e80c0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.739299: xhci_handle_command: CMD: Configure Endpoint Command: ctx 0000000037400000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.739304: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80d0(0x000000080c0e8000) deq 0x000000080c0e80d0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.739305: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3290(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.739334: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.739343: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.739345: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9320(0x000000080c3e9000) deq 0x000000080c3e9310(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739346: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.739348: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9330(0x000000080c3e9000) deq 0x000000080c3e9310(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739350: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.739375: xhci_handle_event: EVENT: TRB 000000080c3e9320 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.739380: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.739383: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9330(0x000000080c3e9000) deq 0x000000080c3e9330(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.739386: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.739388: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.739579: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.739582: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e610 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.739584: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9340(0x000000080c3e9000) deq 0x000000080c3e9330(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739585: xhci_queue_trb: CTRL: Buffer 0000000033404000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.739586: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9350(0x000000080c3e9000) deq 0x000000080c3e9330(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739587: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.739589: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9360(0x000000080c3e9000) deq 0x000000080c3e9330(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739590: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.739619: xhci_handle_event: EVENT: TRB 000000080c3e9350 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.739622: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.739624: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9360(0x000000080c3e9000) deq 0x000000080c3e9360(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.739625: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.739627: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.739655: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] d.h..     3.739704: xhci_handle_event: EVENT: TRB 0000000002000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
           <...>-66      [000] d.h..     3.739715: xhci_handle_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d.h..     3.739717: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d.h..     3.739727: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d....     3.803901: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: PRC Wake: 
           <...>-66      [000] d....     3.804040: xhci_get_port_status: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] .....     3.863901: xhci_discover_or_reset_device: RS 00000 super-speed Ctx Entries 7 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 1 State configured
           <...>-66      [000] d....     3.863931: xhci_queue_trb: CMD: Reset Device Command: slot 1 flags C
           <...>-66      [000] d....     3.863933: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80e0(0x000000080c0e8000) deq 0x000000080c0e80d0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.863942: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.867300: xhci_handle_event: EVENT: TRB 000000080c0e80d0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.867303: xhci_handle_command: CMD: Reset Device Command: slot 1 flags C
          <idle>-0       [000] d.h..     3.867307: xhci_handle_cmd_reset_dev: RS 00000 super-speed Ctx Entries 1 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
          <idle>-0       [000] dNh..     3.867322: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80e0(0x000000080c0e8000) deq 0x000000080c0e80e0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.867323: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.867387: xhci_ring_free: BULK 00000000b2320ecd: enq 0x000000080c1d3000(0x000000080c1d3000) deq 0x000000080c1d3000(0x000000080c1d3000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.867414: xhci_ring_free: BULK 0000000004bc3999: enq 0x000000080c9bb000(0x000000080c9bb000) deq 0x000000080c9bb000(0x000000080c9bb000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.867440: xhci_ring_free: INTR 0000000098b25673: enq 0x000000080c9c1000(0x000000080c9c1000) deq 0x000000080c9c1000(0x000000080c9c1000) segs 2 stream 0 bounce 2 cycle 1
           <...>-66      [000] .....     3.867507: xhci_setup_device_slot: RS 00000 super-speed Ctx Entries 1 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
           <...>-66      [000] .....     3.867512: xhci_address_ctx: ctx_64=4, ctx_type=2, ctx_dma=@80c3e5000, ctx_va=@000000008c3ad113
           <...>-66      [000] .....     3.867518: xhci_address_ctrl_ctx: Add: slot ep0
           <...>-66      [000] d....     3.867520: xhci_setup_device: vdev 00000000639ebdd4 ctx 80c3e5000 | 80a35a000 num 0 state 5 speed 5 port 1 level 1 slot 1
           <...>-66      [000] d....     3.867523: xhci_queue_trb: CMD: Address Device Command: ctx 000000080c3e5000 slot 1 flags b:C
           <...>-66      [000] d....     3.867524: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e80f0(0x000000080c0e8000) deq 0x000000080c0e80e0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.867533: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.867638: xhci_handle_event: EVENT: TRB 000000080c0e80e0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.867640: xhci_handle_command: CMD: Address Device Command: ctx 000000080c3e5000 slot 1 flags b:C
          <idle>-0       [000] d.h..     3.867643: xhci_handle_cmd_addr_dev: RS 00000 super-speed Ctx Entries 1 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 2 State addressed
          <idle>-0       [000] dNh..     3.867647: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e80f0(0x000000080c0e8000) deq 0x000000080c0e80f0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.867648: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.867665: xhci_dbg_address: Successful setup address command
           <...>-66      [000] .....     3.867675: xhci_dbg_address: Op regs DCBAA ptr = 0x0000080c0e7000
           <...>-66      [000] .....     3.867688: xhci_dbg_address: Slot ID 1 dcbaa entry @(____ptrval____) = 0x0000080a35a000
           <...>-66      [000] .....     3.867698: xhci_dbg_address: Output Context DMA address = 0x80a35a000
           <...>-66      [000] .....     3.867700: xhci_address_ctx: ctx_64=4, ctx_type=2, ctx_dma=@80c3e5000, ctx_va=@000000008c3ad113
           <...>-66      [000] .....     3.867706: xhci_address_ctx: ctx_64=4, ctx_type=1, ctx_dma=@80a35a000, ctx_va=@000000000ede9e50
           <...>-66      [000] .....     3.867717: xhci_dbg_address: Internal device address = 2
          <idle>-0       [000] d.s..     3.875887: xhci_hub_status_data: port-0: Powered Connected Enabled Link:U0 PortSpeed:4 Change: Wake: 
           <...>-66      [000] .....     3.891907: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147483776 slot 1 length 0/8 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.891912: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 8 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.891913: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9370(0x000000080c3e9000) deq 0x000000080c3e9360(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.891915: xhci_queue_trb: CTRL: Buffer 0000000033404800 length 8 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.891916: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9380(0x000000080c3e9000) deq 0x000000080c3e9360(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.891917: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.891919: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9390(0x000000080c3e9000) deq 0x000000080c3e9360(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.891921: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892024: xhci_handle_event: EVENT: TRB 000000080c3e9380 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892028: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892031: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9390(0x000000080c3e9000) deq 0x000000080c3e9390(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892035: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147483776 slot 1 length 8/8 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892037: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f32f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892058: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.892060: xhci_queue_trb: CTRL: bRequestType 00 bRequest 31 wValue 0028 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892062: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93a0(0x000000080c3e9000) deq 0x000000080c3e9390(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892063: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892064: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93b0(0x000000080c3e9000) deq 0x000000080c3e9390(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892065: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892129: xhci_handle_event: EVENT: TRB 000000080c3e93a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892131: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892134: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e93b0(0x000000080c3e9000) deq 0x000000080c3e93b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892135: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.892137: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3300(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892155: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/18 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892157: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892159: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93c0(0x000000080c3e9000) deq 0x000000080c3e93b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892160: xhci_queue_trb: CTRL: Buffer 0000000033405000 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892162: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93d0(0x000000080c3e9000) deq 0x000000080c3e93b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892163: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892166: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93e0(0x000000080c3e9000) deq 0x000000080c3e93b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892167: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892243: xhci_handle_event: EVENT: TRB 000000080c3e93d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892245: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892248: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e93e0(0x000000080c3e9000) deq 0x000000080c3e93e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892249: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 18/18 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892251: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3310(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892273: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/5 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892275: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0f00 wIndex 0000 wLength 5 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892277: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e93f0(0x000000080c3e9000) deq 0x000000080c3e93e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892278: xhci_queue_trb: CTRL: Buffer 0000000033405800 length 5 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892280: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9400(0x000000080c3e9000) deq 0x000000080c3e93e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892280: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892282: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9410(0x000000080c3e9000) deq 0x000000080c3e93e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892283: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892355: xhci_handle_event: EVENT: TRB 000000080c3e9400 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892358: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892360: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9410(0x000000080c3e9000) deq 0x000000080c3e9410(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892361: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 5/5 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892363: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3320(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892381: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/22 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892383: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0f00 wIndex 0000 wLength 22 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892384: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9420(0x000000080c3e9000) deq 0x000000080c3e9410(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892385: xhci_queue_trb: CTRL: Buffer 0000000033406000 length 22 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892387: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9430(0x000000080c3e9000) deq 0x000000080c3e9410(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892388: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892389: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9440(0x000000080c3e9000) deq 0x000000080c3e9410(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892390: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892467: xhci_handle_event: EVENT: TRB 000000080c3e9430 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892470: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892472: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9440(0x000000080c3e9000) deq 0x000000080c3e9440(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892473: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 22/22 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892474: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3330(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892493: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/57 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892495: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 57 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892497: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9450(0x000000080c3e9000) deq 0x000000080c3e9440(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892498: xhci_queue_trb: CTRL: Buffer 000000080c829580 length 57 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892499: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9460(0x000000080c3e9000) deq 0x000000080c3e9440(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892500: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892502: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9470(0x000000080c3e9000) deq 0x000000080c3e9440(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892503: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892580: xhci_handle_event: EVENT: TRB 000000080c3e9460 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892582: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892584: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9470(0x000000080c3e9000) deq 0x000000080c3e9470(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892585: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 57/57 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892587: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3340(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892601: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/98 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892603: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0201 wIndex 0000 wLength 98 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892605: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9480(0x000000080c3e9000) deq 0x000000080c3e9470(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892606: xhci_queue_trb: CTRL: Buffer 000000080c829580 length 98 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892607: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9490(0x000000080c3e9000) deq 0x000000080c3e9470(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892608: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892610: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94a0(0x000000080c3e9000) deq 0x000000080c3e9470(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892611: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892693: xhci_handle_event: EVENT: TRB 000000080c3e9490 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892695: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892697: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e94a0(0x000000080c3e9000) deq 0x000000080c3e94a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892699: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 98/98 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892700: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3350(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892716: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 0/255 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.892718: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0306 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.892720: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94b0(0x000000080c3e9000) deq 0x000000080c3e94a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892721: xhci_queue_trb: CTRL: Buffer 000000080c3fd000 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.892722: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94c0(0x000000080c3e9000) deq 0x000000080c3e94a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892723: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.892724: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94d0(0x000000080c3e9000) deq 0x000000080c3e94a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892725: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.892799: xhci_handle_event: EVENT: TRB 000000080c3e94b0 status 'Short Packet' len 241 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892801: xhci_handle_transfer: CTRL: Buffer 000000080c3fd000 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
          <idle>-0       [000] d.h..     3.892813: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3360(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892814: xhci_handle_event: EVENT: TRB 000000080c3e94c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.892816: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.892818: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e94d0(0x000000080c3e9000) deq 0x000000080c3e94d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.892819: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484288 slot 1 length 14/255 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.892820: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3370(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.892871: xhci_ring_alloc: BULK 00000000fac9159f: enq 0x000000080c9c1000(0x000000080c9c1000) deq 0x000000080c9c1000(0x000000080c9c1000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.892875: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 3 maxp 1024 deq 000000080c9c1001 avg trb len 0
           <...>-66      [000] .....     3.892890: xhci_ring_alloc: BULK 0000000038436831: enq 0x000000080c9bb000(0x000000080c9bb000) deq 0x000000080c9bb000(0x000000080c9bb000) segs 2 stream 0 bounce 1024 cycle 1
           <...>-66      [000] .....     3.892892: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 3 maxp 1024 deq 000000080c9bb001 avg trb len 0
           <...>-66      [000] .....     3.892906: xhci_ring_alloc: INTR 00000000b15423a2: enq 0x000000080c1d3000(0x000000080c1d3000) deq 0x000000080c1d3000(0x000000080c1d3000) segs 2 stream 0 bounce 2 cycle 1
           <...>-66      [000] .....     3.892907: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 16000 us max ESIT payload 2 CErr 3 Type Int IN burst 0 maxp 2 deq 000000080c1d3001 avg trb len 2
           <...>-66      [000] d....     3.892931: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in
           <...>-66      [000] d....     3.892933: xhci_configure_endpoint: RS 00000 super-speed Ctx Entries 7 MEL 0 us Port# 2/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
           <...>-66      [000] d....     3.892936: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
           <...>-66      [000] d....     3.892938: xhci_inc_enq: CMD 00000000c8a0c66a: enq 0x000000080c0e8100(0x000000080c0e8000) deq 0x000000080c0e80f0(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.892945: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
          <idle>-0       [000] d.h..     3.899296: xhci_handle_event: EVENT: TRB 000000080c0e80f0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
          <idle>-0       [000] d.h..     3.899299: xhci_handle_command: CMD: Configure Endpoint Command: ctx 000000080c3e5000 slot 1 flags d:C
          <idle>-0       [000] dNh..     3.899305: xhci_inc_deq: CMD 00000000c8a0c66a: enq 0x000000080c0e8100(0x000000080c0e8000) deq 0x000000080c0e8100(0x000000080c0e8000) segs 1 stream 0 bounce 0 cycle 1
          <idle>-0       [000] dNh..     3.899305: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3380(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899325: xhci_dbg_context_change: Successful Endpoint Configure command
           <...>-66      [000] .....     3.899396: xhci_urb_enqueue: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.899398: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899399: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94e0(0x000000080c3e9000) deq 0x000000080c3e94d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899400: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899402: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e94f0(0x000000080c3e9000) deq 0x000000080c3e94d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899403: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899496: xhci_handle_event: EVENT: TRB 000000080c3e94e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899499: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899501: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e94f0(0x000000080c3e9000) deq 0x000000080c3e94f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899503: xhci_urb_giveback: ep0out-control: urb 0000000072d8f208 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.899504: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3390(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899605: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.899608: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899609: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9500(0x000000080c3e9000) deq 0x000000080c3e94f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899610: xhci_queue_trb: CTRL: Buffer 0000000033406800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.899612: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9510(0x000000080c3e9000) deq 0x000000080c3e94f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899613: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899614: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9520(0x000000080c3e9000) deq 0x000000080c3e94f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899615: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899644: xhci_handle_event: EVENT: TRB 000000080c3e9510 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899647: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899649: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9520(0x000000080c3e9000) deq 0x000000080c3e9520(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899650: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.899651: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899669: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.899672: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e820 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899673: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9530(0x000000080c3e9000) deq 0x000000080c3e9520(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899674: xhci_queue_trb: CTRL: Buffer 0000000033407000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.899676: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9540(0x000000080c3e9000) deq 0x000000080c3e9520(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899676: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899678: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9550(0x000000080c3e9000) deq 0x000000080c3e9520(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899679: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899708: xhci_handle_event: EVENT: TRB 000000080c3e9540 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899710: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899713: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9550(0x000000080c3e9000) deq 0x000000080c3e9550(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899714: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.899715: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899732: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.899734: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue c0b4 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899735: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9560(0x000000080c3e9000) deq 0x000000080c3e9550(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899736: xhci_queue_trb: CTRL: Buffer 0000000033407800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.899738: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9570(0x000000080c3e9000) deq 0x000000080c3e9550(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899738: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899740: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9580(0x000000080c3e9000) deq 0x000000080c3e9550(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899741: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899770: xhci_handle_event: EVENT: TRB 000000080c3e9570 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899772: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899774: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9580(0x000000080c3e9000) deq 0x000000080c3e9580(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899775: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.899777: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899792: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.899795: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d490 wIndex 00ff wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899796: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9590(0x000000080c3e9000) deq 0x000000080c3e9580(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899797: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.899799: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95a0(0x000000080c3e9000) deq 0x000000080c3e9580(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899799: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899801: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95b0(0x000000080c3e9000) deq 0x000000080c3e9580(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899802: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899828: xhci_handle_event: EVENT: TRB 000000080c3e95a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899831: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899833: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e95b0(0x000000080c3e9000) deq 0x000000080c3e95b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899834: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.899835: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899850: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.899852: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d494 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899853: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95c0(0x000000080c3e9000) deq 0x000000080c3e95b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899854: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.899856: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95d0(0x000000080c3e9000) deq 0x000000080c3e95b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899857: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899858: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95e0(0x000000080c3e9000) deq 0x000000080c3e95b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899859: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.899887: xhci_handle_event: EVENT: TRB 000000080c3e95d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.899890: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.899892: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e95e0(0x000000080c3e9000) deq 0x000000080c3e95e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.899893: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.899894: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.899909: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.899911: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e004 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.899913: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e95f0(0x000000080c3e9000) deq 0x000000080c3e95e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899914: xhci_queue_trb: CTRL: Buffer 0000000033408000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.899915: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9600(0x000000080c3e9000) deq 0x000000080c3e95e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899916: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.899918: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9610(0x000000080c3e9000) deq 0x000000080c3e95e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.899919: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900052: xhci_handle_event: EVENT: TRB 000000080c3e9600 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900054: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900056: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9610(0x000000080c3e9000) deq 0x000000080c3e9610(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900058: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900059: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f33f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900072: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.900074: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e86c wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900076: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9620(0x000000080c3e9000) deq 0x000000080c3e9610(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900077: xhci_queue_trb: CTRL: Buffer 000000000000a000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.900078: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9630(0x000000080c3e9000) deq 0x000000080c3e9610(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900079: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900081: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9640(0x000000080c3e9000) deq 0x000000080c3e9610(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900082: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900105: xhci_handle_event: EVENT: TRB 000000080c3e9630 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900108: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900110: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9640(0x000000080c3e9000) deq 0x000000080c3e9640(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900111: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.900112: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3400(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900125: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900127: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b420 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900129: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9650(0x000000080c3e9000) deq 0x000000080c3e9640(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900130: xhci_queue_trb: CTRL: Buffer 0000000033408800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.900131: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9660(0x000000080c3e9000) deq 0x000000080c3e9640(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900132: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900133: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9670(0x000000080c3e9000) deq 0x000000080c3e9640(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900135: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900267: xhci_handle_event: EVENT: TRB 000000080c3e9660 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900269: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900271: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9670(0x000000080c3e9000) deq 0x000000080c3e9670(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900273: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900274: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3410(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900288: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900290: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b400 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900292: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9680(0x000000080c3e9000) deq 0x000000080c3e9670(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900293: xhci_queue_trb: CTRL: Buffer 0000000033409000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.900294: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9690(0x000000080c3e9000) deq 0x000000080c3e9670(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900295: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900297: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96a0(0x000000080c3e9000) deq 0x000000080c3e9670(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900298: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900427: xhci_handle_event: EVENT: TRB 000000080c3e9690 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900430: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900432: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e96a0(0x000000080c3e9000) deq 0x000000080c3e96a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900433: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900434: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3420(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900448: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900450: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b420 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900452: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96b0(0x000000080c3e9000) deq 0x000000080c3e96a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900453: xhci_queue_trb: CTRL: Buffer 0000000033409800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.900454: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96c0(0x000000080c3e9000) deq 0x000000080c3e96a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900455: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900457: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96d0(0x000000080c3e9000) deq 0x000000080c3e96a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900458: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900586: xhci_handle_event: EVENT: TRB 000000080c3e96c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900588: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900590: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e96d0(0x000000080c3e9000) deq 0x000000080c3e96d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900592: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900594: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3430(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900608: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900610: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b460 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900612: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96e0(0x000000080c3e9000) deq 0x000000080c3e96d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900613: xhci_queue_trb: CTRL: Buffer 000000003340a000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.900614: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e96f0(0x000000080c3e9000) deq 0x000000080c3e96d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900615: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900616: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9700(0x000000080c3e9000) deq 0x000000080c3e96d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900617: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900745: xhci_handle_event: EVENT: TRB 000000080c3e96f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900747: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900749: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9700(0x000000080c3e9000) deq 0x000000080c3e9700(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900750: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900751: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3440(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900764: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.900766: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b460 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900768: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9710(0x000000080c3e9000) deq 0x000000080c3e9700(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900769: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.900770: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9720(0x000000080c3e9000) deq 0x000000080c3e9700(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900771: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900773: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9730(0x000000080c3e9000) deq 0x000000080c3e9700(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900774: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900813: xhci_handle_event: EVENT: TRB 000000080c3e9720 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900815: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900817: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9730(0x000000080c3e9000) deq 0x000000080c3e9730(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900818: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.900820: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3450(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900833: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900835: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b464 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900836: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9740(0x000000080c3e9000) deq 0x000000080c3e9730(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900837: xhci_queue_trb: CTRL: Buffer 000000003340a800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.900839: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9750(0x000000080c3e9000) deq 0x000000080c3e9730(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900840: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.900841: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9760(0x000000080c3e9000) deq 0x000000080c3e9730(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900842: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.900974: xhci_handle_event: EVENT: TRB 000000080c3e9750 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.900976: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.900978: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9760(0x000000080c3e9000) deq 0x000000080c3e9760(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.900979: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.900980: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3460(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.900995: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.900997: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue cfc0 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.900998: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9770(0x000000080c3e9000) deq 0x000000080c3e9760(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.900999: xhci_queue_trb: CTRL: Buffer 000000003340b000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.901001: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9780(0x000000080c3e9000) deq 0x000000080c3e9760(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901002: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901003: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9790(0x000000080c3e9000) deq 0x000000080c3e9760(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901004: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901131: xhci_handle_event: EVENT: TRB 000000080c3e9780 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901134: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901136: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9790(0x000000080c3e9000) deq 0x000000080c3e9790(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901137: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.901138: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3470(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901151: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.901153: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b464 wIndex 0011 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901154: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97a0(0x000000080c3e9000) deq 0x000000080c3e9790(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901155: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.901157: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97b0(0x000000080c3e9000) deq 0x000000080c3e9790(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901158: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901159: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97c0(0x000000080c3e9000) deq 0x000000080c3e9790(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901160: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901188: xhci_handle_event: EVENT: TRB 000000080c3e97b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901190: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901192: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e97c0(0x000000080c3e9000) deq 0x000000080c3e97c0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901193: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.901194: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3480(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901207: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.901209: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d38c wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901211: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97d0(0x000000080c3e9000) deq 0x000000080c3e97c0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901212: xhci_queue_trb: CTRL: Buffer 000000003340b800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.901214: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97e0(0x000000080c3e9000) deq 0x000000080c3e97c0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901214: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901216: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e97f0(0x000000080c3e9000) deq 0x000000080c3e97c0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901217: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901348: xhci_handle_event: EVENT: TRB 000000080c3e97e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901351: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901353: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e97f0(0x000000080c3e9000) deq 0x000000080c3e97f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901354: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.901356: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3490(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901368: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.901370: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d38c wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901372: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9800(0x000000080c3e9000) deq 0x000000080c3e97f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901373: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.901374: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9810(0x000000080c3e9000) deq 0x000000080c3e97f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901375: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901376: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9820(0x000000080c3e9000) deq 0x000000080c3e97f0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901377: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901401: xhci_handle_event: EVENT: TRB 000000080c3e9810 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901403: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901405: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9820(0x000000080c3e9000) deq 0x000000080c3e9820(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901407: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.901408: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901421: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.901423: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d388 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901424: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9830(0x000000080c3e9000) deq 0x000000080c3e9820(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901425: xhci_queue_trb: CTRL: Buffer 000000003340c000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.901427: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9840(0x000000080c3e9000) deq 0x000000080c3e9820(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901428: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901429: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9850(0x000000080c3e9000) deq 0x000000080c3e9820(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901430: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901563: xhci_handle_event: EVENT: TRB 000000080c3e9840 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901565: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901567: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9850(0x000000080c3e9000) deq 0x000000080c3e9850(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901568: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.901570: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901582: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.901584: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d388 wIndex 0144 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901585: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9860(0x000000080c3e9000) deq 0x000000080c3e9850(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901587: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.901588: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9870(0x000000080c3e9000) deq 0x000000080c3e9850(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901589: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901591: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9880(0x000000080c3e9000) deq 0x000000080c3e9850(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901592: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901616: xhci_handle_event: EVENT: TRB 000000080c3e9870 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901618: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901620: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9880(0x000000080c3e9000) deq 0x000000080c3e9880(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901621: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.901623: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901635: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.901637: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d398 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901638: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9890(0x000000080c3e9000) deq 0x000000080c3e9880(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901639: xhci_queue_trb: CTRL: Buffer 000000003340c800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.901641: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98a0(0x000000080c3e9000) deq 0x000000080c3e9880(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901642: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901643: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98b0(0x000000080c3e9000) deq 0x000000080c3e9880(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901645: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901777: xhci_handle_event: EVENT: TRB 000000080c3e98a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901779: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901781: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e98b0(0x000000080c3e9000) deq 0x000000080c3e98b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901783: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.901784: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901797: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.901798: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d398 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901800: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98c0(0x000000080c3e9000) deq 0x000000080c3e98b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901801: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.901802: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98d0(0x000000080c3e9000) deq 0x000000080c3e98b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901803: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901805: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98e0(0x000000080c3e9000) deq 0x000000080c3e98b0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901806: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901830: xhci_handle_event: EVENT: TRB 000000080c3e98d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901832: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901834: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e98e0(0x000000080c3e9000) deq 0x000000080c3e98e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901835: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.901837: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.901850: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.901852: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d398 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.901854: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e98f0(0x000000080c3e9000) deq 0x000000080c3e98e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901855: xhci_queue_trb: CTRL: Buffer 000000003340d000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.901856: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9900(0x000000080c3e9000) deq 0x000000080c3e98e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901857: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.901860: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9910(0x000000080c3e9000) deq 0x000000080c3e98e0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.901861: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.901990: xhci_handle_event: EVENT: TRB 000000080c3e9900 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.901993: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.901995: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9910(0x000000080c3e9000) deq 0x000000080c3e9910(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.901996: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.901997: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f34f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902011: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.902013: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e908 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902015: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9920(0x000000080c3e9000) deq 0x000000080c3e9910(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902016: xhci_queue_trb: CTRL: Buffer 000000003340d800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.902017: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9930(0x000000080c3e9000) deq 0x000000080c3e9910(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902018: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902020: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9940(0x000000080c3e9000) deq 0x000000080c3e9910(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902021: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902150: xhci_handle_event: EVENT: TRB 000000080c3e9930 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902152: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902154: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9940(0x000000080c3e9000) deq 0x000000080c3e9940(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902155: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.902156: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3500(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902169: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902171: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d398 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902172: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9950(0x000000080c3e9000) deq 0x000000080c3e9940(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902173: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.902175: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9960(0x000000080c3e9000) deq 0x000000080c3e9940(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902176: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902177: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9970(0x000000080c3e9000) deq 0x000000080c3e9940(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902178: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902202: xhci_handle_event: EVENT: TRB 000000080c3e9960 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902204: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902206: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9970(0x000000080c3e9000) deq 0x000000080c3e9970(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902207: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.902208: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3510(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902221: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.902223: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b464 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902225: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9980(0x000000080c3e9000) deq 0x000000080c3e9970(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902226: xhci_queue_trb: CTRL: Buffer 000000003340e000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.902227: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9990(0x000000080c3e9000) deq 0x000000080c3e9970(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902228: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902230: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99a0(0x000000080c3e9000) deq 0x000000080c3e9970(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902231: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902362: xhci_handle_event: EVENT: TRB 000000080c3e9990 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902364: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902366: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e99a0(0x000000080c3e9000) deq 0x000000080c3e99a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902367: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.902369: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3520(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902382: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902383: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b464 wIndex 0044 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902385: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99b0(0x000000080c3e9000) deq 0x000000080c3e99a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902386: xhci_queue_trb: CTRL: Buffer 0000000000010000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.902388: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99c0(0x000000080c3e9000) deq 0x000000080c3e99a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902389: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902390: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99d0(0x000000080c3e9000) deq 0x000000080c3e99a0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902391: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902422: xhci_handle_event: EVENT: TRB 000000080c3e99c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902424: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902426: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e99d0(0x000000080c3e9000) deq 0x000000080c3e99d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902427: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.902428: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3530(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902441: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.902443: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e43c wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902445: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99e0(0x000000080c3e9000) deq 0x000000080c3e99d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902446: xhci_queue_trb: CTRL: Buffer 000000003340e800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.902447: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e99f0(0x000000080c3e9000) deq 0x000000080c3e99d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902448: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902450: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a00(0x000000080c3e9000) deq 0x000000080c3e99d0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902451: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902575: xhci_handle_event: EVENT: TRB 000000080c3e99f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902577: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902579: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9a00(0x000000080c3e9000) deq 0x000000080c3e9a00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902580: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.902581: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3540(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902594: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902596: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e43c wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902597: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a10(0x000000080c3e9000) deq 0x000000080c3e9a00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902598: xhci_queue_trb: CTRL: Buffer 0000000000000002 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.902601: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a20(0x000000080c3e9000) deq 0x000000080c3e9a00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902601: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902603: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a30(0x000000080c3e9000) deq 0x000000080c3e9a00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902604: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902627: xhci_handle_event: EVENT: TRB 000000080c3e9a20 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902630: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902632: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9a30(0x000000080c3e9000) deq 0x000000080c3e9a30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902633: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.902634: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3550(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902647: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.902649: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue dd90 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902651: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a40(0x000000080c3e9000) deq 0x000000080c3e9a30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902652: xhci_queue_trb: CTRL: Buffer 000000003340f000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.902653: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a50(0x000000080c3e9000) deq 0x000000080c3e9a30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902654: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902656: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a60(0x000000080c3e9000) deq 0x000000080c3e9a30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902657: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902802: xhci_handle_event: EVENT: TRB 000000080c3e9a50 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902804: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902807: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9a60(0x000000080c3e9000) deq 0x000000080c3e9a60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902808: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.902809: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3560(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902822: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902824: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue dd90 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902825: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a70(0x000000080c3e9000) deq 0x000000080c3e9a60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902826: xhci_queue_trb: CTRL: Buffer 0000000000060000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.902828: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a80(0x000000080c3e9000) deq 0x000000080c3e9a60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902829: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902830: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9a90(0x000000080c3e9000) deq 0x000000080c3e9a60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902831: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902855: xhci_handle_event: EVENT: TRB 000000080c3e9a80 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902857: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902860: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9a90(0x000000080c3e9000) deq 0x000000080c3e9a90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902861: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.902862: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3570(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902873: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902875: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d418 wIndex 0044 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902877: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9aa0(0x000000080c3e9000) deq 0x000000080c3e9a90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902878: xhci_queue_trb: CTRL: Buffer 00000000003e0000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.902879: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ab0(0x000000080c3e9000) deq 0x000000080c3e9a90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902880: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902882: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ac0(0x000000080c3e9000) deq 0x000000080c3e9a90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902883: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902922: xhci_handle_event: EVENT: TRB 000000080c3e9ab0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902924: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902926: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9ac0(0x000000080c3e9000) deq 0x000000080c3e9ac0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902927: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.902928: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3580(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902941: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.902943: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d824 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902945: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ad0(0x000000080c3e9000) deq 0x000000080c3e9ac0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902946: xhci_queue_trb: CTRL: Buffer 000000003340f800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.902948: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ae0(0x000000080c3e9000) deq 0x000000080c3e9ac0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902948: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.902950: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9af0(0x000000080c3e9000) deq 0x000000080c3e9ac0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902951: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.902975: xhci_handle_event: EVENT: TRB 000000080c3e9ae0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.902977: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.902979: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9af0(0x000000080c3e9000) deq 0x000000080c3e9af0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.902980: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.902981: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3590(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.902994: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.902996: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d824 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.902997: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b00(0x000000080c3e9000) deq 0x000000080c3e9af0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.902998: xhci_queue_trb: CTRL: Buffer 000000000000a346 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903000: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b10(0x000000080c3e9000) deq 0x000000080c3e9af0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903001: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903002: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b20(0x000000080c3e9000) deq 0x000000080c3e9af0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903003: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903025: xhci_handle_event: EVENT: TRB 000000080c3e9b10 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903027: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903029: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9b20(0x000000080c3e9000) deq 0x000000080c3e9b20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903030: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903031: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903042: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903044: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue cbf8 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903047: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b30(0x000000080c3e9000) deq 0x000000080c3e9b20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903048: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903049: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b40(0x000000080c3e9000) deq 0x000000080c3e9b20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903050: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903052: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b50(0x000000080c3e9000) deq 0x000000080c3e9b20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903053: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903075: xhci_handle_event: EVENT: TRB 000000080c3e9b40 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903078: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903080: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9b50(0x000000080c3e9000) deq 0x000000080c3e9b50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903081: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903082: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903096: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903097: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d808 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903099: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b60(0x000000080c3e9000) deq 0x000000080c3e9b50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903100: xhci_queue_trb: CTRL: Buffer 0000000033410000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903101: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b70(0x000000080c3e9000) deq 0x000000080c3e9b50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903102: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903104: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b80(0x000000080c3e9000) deq 0x000000080c3e9b50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903105: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903128: xhci_handle_event: EVENT: TRB 000000080c3e9b70 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903131: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903133: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9b80(0x000000080c3e9000) deq 0x000000080c3e9b80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903135: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.903136: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903148: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903150: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d808 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903152: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9b90(0x000000080c3e9000) deq 0x000000080c3e9b80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903153: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903154: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ba0(0x000000080c3e9000) deq 0x000000080c3e9b80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903155: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903157: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9bb0(0x000000080c3e9000) deq 0x000000080c3e9b80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903158: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903187: xhci_handle_event: EVENT: TRB 000000080c3e9ba0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903189: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903191: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9bb0(0x000000080c3e9000) deq 0x000000080c3e9bb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903192: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903193: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903206: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903208: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d818 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903210: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9bc0(0x000000080c3e9000) deq 0x000000080c3e9bb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903211: xhci_queue_trb: CTRL: Buffer 0000000033410800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903212: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9bd0(0x000000080c3e9000) deq 0x000000080c3e9bb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903213: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903214: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9be0(0x000000080c3e9000) deq 0x000000080c3e9bb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903216: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903239: xhci_handle_event: EVENT: TRB 000000080c3e9bd0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903241: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903243: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9be0(0x000000080c3e9000) deq 0x000000080c3e9be0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903244: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.903245: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903258: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903260: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d818 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903262: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9bf0(0x000000080c3e9000) deq 0x000000080c3e9be0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903263: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903264: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c00(0x000000080c3e9000) deq 0x000000080c3e9be0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903265: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903267: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c10(0x000000080c3e9000) deq 0x000000080c3e9be0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903268: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903300: xhci_handle_event: EVENT: TRB 000000080c3e9c00 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903302: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903304: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9c10(0x000000080c3e9000) deq 0x000000080c3e9c10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903306: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903307: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f35f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903319: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903321: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e81c wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903322: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c20(0x000000080c3e9000) deq 0x000000080c3e9c10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903323: xhci_queue_trb: CTRL: Buffer 00000000000000c0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903325: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c30(0x000000080c3e9000) deq 0x000000080c3e9c10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903326: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903327: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c40(0x000000080c3e9000) deq 0x000000080c3e9c10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903328: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903351: xhci_handle_event: EVENT: TRB 000000080c3e9c30 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903353: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903356: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9c40(0x000000080c3e9000) deq 0x000000080c3e9c40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903357: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903358: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3600(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903372: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903374: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903375: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c50(0x000000080c3e9000) deq 0x000000080c3e9c40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903376: xhci_queue_trb: CTRL: Buffer 0000000033411000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903378: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c60(0x000000080c3e9000) deq 0x000000080c3e9c40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903379: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903380: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c70(0x000000080c3e9000) deq 0x000000080c3e9c40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903381: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903421: xhci_handle_event: EVENT: TRB 000000080c3e9c60 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903424: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903427: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9c70(0x000000080c3e9000) deq 0x000000080c3e9c70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903429: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.903432: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3610(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903448: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903450: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903452: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c80(0x000000080c3e9000) deq 0x000000080c3e9c70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903453: xhci_queue_trb: CTRL: Buffer 0000000000000020 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903454: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9c90(0x000000080c3e9000) deq 0x000000080c3e9c70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903455: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903457: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ca0(0x000000080c3e9000) deq 0x000000080c3e9c70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903458: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903481: xhci_handle_event: EVENT: TRB 000000080c3e9c90 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903483: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903485: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9ca0(0x000000080c3e9000) deq 0x000000080c3e9ca0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903486: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903488: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3620(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903501: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903504: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e820 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903505: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9cb0(0x000000080c3e9000) deq 0x000000080c3e9ca0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903506: xhci_queue_trb: CTRL: Buffer 0000000033411800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903508: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9cc0(0x000000080c3e9000) deq 0x000000080c3e9ca0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903509: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903511: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9cd0(0x000000080c3e9000) deq 0x000000080c3e9ca0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903512: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903553: xhci_handle_event: EVENT: TRB 000000080c3e9cc0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903555: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903558: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9cd0(0x000000080c3e9000) deq 0x000000080c3e9cd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903559: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.903560: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3630(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903574: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903576: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e820 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903578: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ce0(0x000000080c3e9000) deq 0x000000080c3e9cd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903579: xhci_queue_trb: CTRL: Buffer 0000000000020000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903581: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9cf0(0x000000080c3e9000) deq 0x000000080c3e9cd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903582: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903583: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d00(0x000000080c3e9000) deq 0x000000080c3e9cd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903584: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903607: xhci_handle_event: EVENT: TRB 000000080c3e9cf0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903609: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903612: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9d00(0x000000080c3e9000) deq 0x000000080c3e9d00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903613: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903614: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3640(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903626: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903628: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e81c wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903629: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d10(0x000000080c3e9000) deq 0x000000080c3e9d00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903632: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d20(0x000000080c3e9000) deq 0x000000080c3e9d00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903633: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903634: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d30(0x000000080c3e9000) deq 0x000000080c3e9d00(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903636: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903672: xhci_handle_event: EVENT: TRB 000000080c3e9d20 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903675: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903677: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9d30(0x000000080c3e9000) deq 0x000000080c3e9d30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903678: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903680: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3650(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903694: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903696: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue c0b4 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903698: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d40(0x000000080c3e9000) deq 0x000000080c3e9d30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903699: xhci_queue_trb: CTRL: Buffer 0000000033412000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903700: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d50(0x000000080c3e9000) deq 0x000000080c3e9d30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903701: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903702: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d60(0x000000080c3e9000) deq 0x000000080c3e9d30(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903704: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903728: xhci_handle_event: EVENT: TRB 000000080c3e9d50 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903730: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903732: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9d60(0x000000080c3e9000) deq 0x000000080c3e9d60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903735: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.903736: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3660(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903749: xhci_urb_enqueue: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903751: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue c0b4 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903752: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d70(0x000000080c3e9000) deq 0x000000080c3e9d60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903754: xhci_queue_trb: CTRL: Buffer 00000000001f0000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903755: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d80(0x000000080c3e9000) deq 0x000000080c3e9d60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903756: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903758: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9d90(0x000000080c3e9000) deq 0x000000080c3e9d60(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903759: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903797: xhci_handle_event: EVENT: TRB 000000080c3e9d80 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903799: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903801: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9d90(0x000000080c3e9000) deq 0x000000080c3e9d90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903802: xhci_urb_giveback: ep0out-control: urb 0000000020acddba pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903803: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3670(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903912: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.903915: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e81c wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903917: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9da0(0x000000080c3e9000) deq 0x000000080c3e9d90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903918: xhci_queue_trb: CTRL: Buffer 00000000000000c0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.903919: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9db0(0x000000080c3e9000) deq 0x000000080c3e9d90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903920: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903922: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9dc0(0x000000080c3e9000) deq 0x000000080c3e9d90(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903923: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.903946: xhci_handle_event: EVENT: TRB 000000080c3e9db0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.903948: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.903950: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9dc0(0x000000080c3e9000) deq 0x000000080c3e9dc0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.903952: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.903953: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3680(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.903970: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.903972: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.903973: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9dd0(0x000000080c3e9000) deq 0x000000080c3e9dc0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903974: xhci_queue_trb: CTRL: Buffer 0000000033412800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.903976: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9de0(0x000000080c3e9000) deq 0x000000080c3e9dc0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903977: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.903978: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9df0(0x000000080c3e9000) deq 0x000000080c3e9dc0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.903979: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904004: xhci_handle_event: EVENT: TRB 000000080c3e9de0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904006: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904008: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9df0(0x000000080c3e9000) deq 0x000000080c3e9df0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904010: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904011: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3690(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904027: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904029: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904030: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e00(0x000000080c3e9000) deq 0x000000080c3e9df0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904031: xhci_queue_trb: CTRL: Buffer 0000000000000020 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904033: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e10(0x000000080c3e9000) deq 0x000000080c3e9df0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904034: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904035: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e20(0x000000080c3e9000) deq 0x000000080c3e9df0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904036: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904062: xhci_handle_event: EVENT: TRB 000000080c3e9e10 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904064: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904067: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9e20(0x000000080c3e9000) deq 0x000000080c3e9e20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904068: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904069: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904082: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904084: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e81c wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904086: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e30(0x000000080c3e9000) deq 0x000000080c3e9e20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904087: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904088: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e40(0x000000080c3e9000) deq 0x000000080c3e9e20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904089: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904091: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e50(0x000000080c3e9000) deq 0x000000080c3e9e20(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904092: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904115: xhci_handle_event: EVENT: TRB 000000080c3e9e40 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904117: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904119: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9e50(0x000000080c3e9000) deq 0x000000080c3e9e50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904120: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904122: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904137: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904139: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e0c8 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904140: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e60(0x000000080c3e9000) deq 0x000000080c3e9e50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904141: xhci_queue_trb: CTRL: Buffer 0000000033413000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904143: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e70(0x000000080c3e9000) deq 0x000000080c3e9e50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904144: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904145: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e80(0x000000080c3e9000) deq 0x000000080c3e9e50(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904146: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904177: xhci_handle_event: EVENT: TRB 000000080c3e9e70 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904181: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904183: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9e80(0x000000080c3e9000) deq 0x000000080c3e9e80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904184: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904185: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904200: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904202: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e0c8 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904203: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9e90(0x000000080c3e9000) deq 0x000000080c3e9e80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904204: xhci_queue_trb: CTRL: Buffer 0000000000070000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904206: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ea0(0x000000080c3e9000) deq 0x000000080c3e9e80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904207: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904208: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9eb0(0x000000080c3e9000) deq 0x000000080c3e9e80(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904209: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904232: xhci_handle_event: EVENT: TRB 000000080c3e9ea0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904235: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904237: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9eb0(0x000000080c3e9000) deq 0x000000080c3e9eb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904238: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904239: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904253: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904254: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d490 wIndex 00ff wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904256: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ec0(0x000000080c3e9000) deq 0x000000080c3e9eb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904257: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904258: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ed0(0x000000080c3e9000) deq 0x000000080c3e9eb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904259: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904261: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ee0(0x000000080c3e9000) deq 0x000000080c3e9eb0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904262: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904297: xhci_handle_event: EVENT: TRB 000000080c3e9ed0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904299: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904301: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9ee0(0x000000080c3e9000) deq 0x000000080c3e9ee0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904302: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904304: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904317: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904318: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d494 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904320: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9ef0(0x000000080c3e9000) deq 0x000000080c3e9ee0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904321: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904323: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f00(0x000000080c3e9000) deq 0x000000080c3e9ee0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904323: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904325: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f10(0x000000080c3e9000) deq 0x000000080c3e9ee0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904326: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904348: xhci_handle_event: EVENT: TRB 000000080c3e9f00 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904350: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904352: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9f10(0x000000080c3e9000) deq 0x000000080c3e9f10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904353: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904355: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f36f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904370: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904372: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e908 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904373: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f20(0x000000080c3e9000) deq 0x000000080c3e9f10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904374: xhci_queue_trb: CTRL: Buffer 0000000033413800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904376: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f30(0x000000080c3e9000) deq 0x000000080c3e9f10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904377: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904378: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f40(0x000000080c3e9000) deq 0x000000080c3e9f10(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904379: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904422: xhci_handle_event: EVENT: TRB 000000080c3e9f30 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904424: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904427: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9f40(0x000000080c3e9000) deq 0x000000080c3e9f40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904428: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904429: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3700(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904444: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904446: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e908 wIndex 0144 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904447: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f50(0x000000080c3e9000) deq 0x000000080c3e9f40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904448: xhci_queue_trb: CTRL: Buffer 0000000000090000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904450: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f60(0x000000080c3e9000) deq 0x000000080c3e9f40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904451: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904452: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f70(0x000000080c3e9000) deq 0x000000080c3e9f40(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904453: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904476: xhci_handle_event: EVENT: TRB 000000080c3e9f60 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904479: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904481: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9f70(0x000000080c3e9000) deq 0x000000080c3e9f70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904482: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904483: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3710(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904498: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904500: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e004 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904502: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f80(0x000000080c3e9000) deq 0x000000080c3e9f70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904503: xhci_queue_trb: CTRL: Buffer 0000000033414000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904504: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9f90(0x000000080c3e9000) deq 0x000000080c3e9f70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904505: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904508: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9fa0(0x000000080c3e9000) deq 0x000000080c3e9f70(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904509: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904550: xhci_handle_event: EVENT: TRB 000000080c3e9f90 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904553: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904555: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9fa0(0x000000080c3e9000) deq 0x000000080c3e9fa0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904556: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904557: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3720(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904572: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904574: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e004 wIndex 0188 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904576: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9fb0(0x000000080c3e9000) deq 0x000000080c3e9fa0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904577: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904579: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9fc0(0x000000080c3e9000) deq 0x000000080c3e9fa0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904580: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904581: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9fd0(0x000000080c3e9000) deq 0x000000080c3e9fa0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904582: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904605: xhci_handle_event: EVENT: TRB 000000080c3e9fc0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904607: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904610: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3e9fd0(0x000000080c3e9000) deq 0x000000080c3e9fd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904611: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904612: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3730(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904627: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904629: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d404 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904631: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3e9fe0(0x000000080c3e9000) deq 0x000000080c3e9fd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904632: xhci_queue_trb: CTRL: Buffer 0000000033414800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904634: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee000(0x000000080c3ee000) deq 0x000000080c3e9fd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904635: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904636: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee010(0x000000080c3ee000) deq 0x000000080c3e9fd0(0x000000080c3e9000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904637: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904678: xhci_handle_event: EVENT: TRB 000000080c3ee000 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904680: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904682: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee010(0x000000080c3ee000) deq 0x000000080c3ee010(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904684: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904685: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3740(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904700: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904702: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue d404 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904703: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee020(0x000000080c3ee000) deq 0x000000080c3ee010(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904704: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904706: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee030(0x000000080c3ee000) deq 0x000000080c3ee010(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904707: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904708: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee040(0x000000080c3ee000) deq 0x000000080c3ee010(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904709: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904732: xhci_handle_event: EVENT: TRB 000000080c3ee030 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904734: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904736: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee040(0x000000080c3ee000) deq 0x000000080c3ee040(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904737: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904738: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3750(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904754: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904756: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e800 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904757: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee050(0x000000080c3ee000) deq 0x000000080c3ee040(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904758: xhci_queue_trb: CTRL: Buffer 0000000033415000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904760: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee060(0x000000080c3ee000) deq 0x000000080c3ee040(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904761: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904762: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee070(0x000000080c3ee000) deq 0x000000080c3ee040(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904763: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904803: xhci_handle_event: EVENT: TRB 000000080c3ee060 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904805: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904807: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee070(0x000000080c3ee000) deq 0x000000080c3ee070(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904808: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.904809: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3760(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904824: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
           <...>-66      [000] d....     3.904826: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e800 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904828: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee080(0x000000080c3ee000) deq 0x000000080c3ee070(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904829: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
           <...>-66      [000] d....     3.904830: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee090(0x000000080c3ee000) deq 0x000000080c3ee070(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904831: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904833: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0a0(0x000000080c3ee000) deq 0x000000080c3ee070(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904834: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.904857: xhci_handle_event: EVENT: TRB 000000080c3ee090 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.904859: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.904861: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee0a0(0x000000080c3ee000) deq 0x000000080c3ee0a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.904862: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.904864: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3770(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.904882: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.904884: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d818 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.904885: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0b0(0x000000080c3ee000) deq 0x000000080c3ee0a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904886: xhci_queue_trb: CTRL: Buffer 0000000033415800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.904889: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0c0(0x000000080c3ee000) deq 0x000000080c3ee0a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904890: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.904891: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0d0(0x000000080c3ee000) deq 0x000000080c3ee0a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.904892: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
     kworker/0:0-7       [000] d.h..     3.904927: xhci_handle_event: EVENT: TRB 000000080c3ee0c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
     kworker/0:0-7       [000] d.h..     3.904929: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d.h..     3.904932: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee0d0(0x000000080c3ee000) deq 0x000000080c3ee0d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d.h..     3.904933: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d.h..     3.904935: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3780(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.905079: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.905082: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d81c wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.905083: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0e0(0x000000080c3ee000) deq 0x000000080c3ee0d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905084: xhci_queue_trb: CTRL: Buffer 0000000033416000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.905086: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee0f0(0x000000080c3ee000) deq 0x000000080c3ee0d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905087: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.905088: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee100(0x000000080c3ee000) deq 0x000000080c3ee0d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905089: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.905117: xhci_handle_event: EVENT: TRB 000000080c3ee0f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.905119: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.905121: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee100(0x000000080c3ee000) deq 0x000000080c3ee100(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.905123: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.905124: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3790(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
           <...>-66      [000] .....     3.905140: xhci_urb_enqueue: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 0/8 sgs 0/0 stream 0 flags 00110200
           <...>-66      [000] d....     3.905143: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue d000 wIndex 0100 wLength 8 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
           <...>-66      [000] d....     3.905144: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee110(0x000000080c3ee000) deq 0x000000080c3ee100(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905145: xhci_queue_trb: CTRL: Buffer 0000000033416800 length 8 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
           <...>-66      [000] d....     3.905146: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee120(0x000000080c3ee000) deq 0x000000080c3ee100(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905147: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
           <...>-66      [000] d....     3.905149: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee130(0x000000080c3ee000) deq 0x000000080c3ee100(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
           <...>-66      [000] d....     3.905150: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.905190: xhci_handle_event: EVENT: TRB 000000080c3ee120 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.905192: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.905194: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee130(0x000000080c3ee000) deq 0x000000080c3ee130(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.905196: xhci_urb_giveback: ep0out-control: urb 00000000e039a488 pipe 2147484288 slot 1 length 8/8 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.905197: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.925162: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.925165: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b430 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.925166: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee140(0x000000080c3ee000) deq 0x000000080c3ee130(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925167: xhci_queue_trb: CTRL: Buffer 0000000033417000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.925169: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee150(0x000000080c3ee000) deq 0x000000080c3ee130(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925170: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.925171: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee160(0x000000080c3ee000) deq 0x000000080c3ee130(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925172: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.925198: xhci_handle_event: EVENT: TRB 000000080c3ee150 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.925201: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.925203: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee160(0x000000080c3ee000) deq 0x000000080c3ee160(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.925205: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.925206: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.925221: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.925223: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b430 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.925224: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee170(0x000000080c3ee000) deq 0x000000080c3ee160(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925225: xhci_queue_trb: CTRL: Buffer 000000000000b18b length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.925227: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee180(0x000000080c3ee000) deq 0x000000080c3ee160(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925228: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.925229: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee190(0x000000080c3ee000) deq 0x000000080c3ee160(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.925230: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.925253: xhci_handle_event: EVENT: TRB 000000080c3ee180 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.925256: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.925258: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee190(0x000000080c3ee000) deq 0x000000080c3ee190(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.925259: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.925260: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927282: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.927284: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e000 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927285: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1a0(0x000000080c3ee000) deq 0x000000080c3ee190(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927286: xhci_queue_trb: CTRL: Buffer 0000000033417800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.927288: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1b0(0x000000080c3ee000) deq 0x000000080c3ee190(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927289: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927290: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1c0(0x000000080c3ee000) deq 0x000000080c3ee190(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927291: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927316: xhci_handle_event: EVENT: TRB 000000080c3ee1b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927318: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927321: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee1c0(0x000000080c3ee000) deq 0x000000080c3ee1c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927322: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.927324: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927340: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.927342: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue e040 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927344: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1d0(0x000000080c3ee000) deq 0x000000080c3ee1c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927345: xhci_queue_trb: CTRL: Buffer 0000000033418000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.927347: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1e0(0x000000080c3ee000) deq 0x000000080c3ee1c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927347: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927349: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee1f0(0x000000080c3ee000) deq 0x000000080c3ee1c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927350: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927374: xhci_handle_event: EVENT: TRB 000000080c3ee1e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927377: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927379: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee1f0(0x000000080c3ee000) deq 0x000000080c3ee1f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927380: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.927381: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927396: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.927398: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b430 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927399: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee200(0x000000080c3ee000) deq 0x000000080c3ee1f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927400: xhci_queue_trb: CTRL: Buffer 0000000033418800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.927402: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee210(0x000000080c3ee000) deq 0x000000080c3ee1f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927403: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927404: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee220(0x000000080c3ee000) deq 0x000000080c3ee1f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927405: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927437: xhci_handle_event: EVENT: TRB 000000080c3ee210 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927440: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927442: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee220(0x000000080c3ee000) deq 0x000000080c3ee220(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927443: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.927444: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f37f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927457: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.927459: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e040 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927461: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee230(0x000000080c3ee000) deq 0x000000080c3ee220(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927462: xhci_queue_trb: CTRL: Buffer 0000000000007f00 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.927464: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee240(0x000000080c3ee000) deq 0x000000080c3ee220(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927464: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927466: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee250(0x000000080c3ee000) deq 0x000000080c3ee220(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927467: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927489: xhci_handle_event: EVENT: TRB 000000080c3ee240 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927491: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927493: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee250(0x000000080c3ee000) deq 0x000000080c3ee250(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927495: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.927496: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3800(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927507: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.927509: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b430 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927510: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee260(0x000000080c3ee000) deq 0x000000080c3ee250(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927511: xhci_queue_trb: CTRL: Buffer 0000000008420000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.927513: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee270(0x000000080c3ee000) deq 0x000000080c3ee250(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927514: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927515: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee280(0x000000080c3ee000) deq 0x000000080c3ee250(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927516: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927547: xhci_handle_event: EVENT: TRB 000000080c3ee270 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927549: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927551: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee280(0x000000080c3ee000) deq 0x000000080c3ee280(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927552: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.927553: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3810(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927564: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.927566: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b5d0 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927568: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee290(0x000000080c3ee000) deq 0x000000080c3ee280(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927569: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.927570: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2a0(0x000000080c3ee000) deq 0x000000080c3ee280(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927571: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927573: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2b0(0x000000080c3ee000) deq 0x000000080c3ee280(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927574: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927596: xhci_handle_event: EVENT: TRB 000000080c3ee2a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927598: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927601: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee2b0(0x000000080c3ee000) deq 0x000000080c3ee2b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927602: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.927603: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3820(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927615: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.927617: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc38 wIndex 0011 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927618: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2c0(0x000000080c3ee000) deq 0x000000080c3ee2b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927619: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.927621: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2d0(0x000000080c3ee000) deq 0x000000080c3ee2b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927622: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927623: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2e0(0x000000080c3ee000) deq 0x000000080c3ee2b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927624: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927647: xhci_handle_event: EVENT: TRB 000000080c3ee2d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927649: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927651: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee2e0(0x000000080c3ee000) deq 0x000000080c3ee2e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927652: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.927653: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3830(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.927667: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/16 sgs 0/0 stream 0 flags 00110000
     kworker/0:0-7       [000] d....     3.927669: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc28 wIndex 00ff wLength 16 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.927670: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee2f0(0x000000080c3ee000) deq 0x000000080c3ee2e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927671: xhci_queue_trb: CTRL: Buffer 000000080a0fd100 length 16 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.927673: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee300(0x000000080c3ee000) deq 0x000000080c3ee2e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927674: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.927675: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee310(0x000000080c3ee000) deq 0x000000080c3ee2e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.927676: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.927702: xhci_handle_event: EVENT: TRB 000000080c3ee300 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.927704: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.927706: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee310(0x000000080c3ee000) deq 0x000000080c3ee310(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.927707: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 16/16 sgs 0/0 stream 0 flags 00110000
          <idle>-0       [000] d.h..     3.927708: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3840(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.931895: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.931897: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc24 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.931899: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee320(0x000000080c3ee000) deq 0x000000080c3ee310(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931900: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.931901: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee330(0x000000080c3ee000) deq 0x000000080c3ee310(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931902: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.931904: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee340(0x000000080c3ee000) deq 0x000000080c3ee310(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931905: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.931938: xhci_handle_event: EVENT: TRB 000000080c3ee330 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.931940: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.931942: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee340(0x000000080c3ee000) deq 0x000000080c3ee340(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.931944: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.931945: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3850(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.931958: xhci_urb_enqueue: ep0out-control: urb 00000000f6dc5d5d pipe 2147484160 slot 1 length 0/140 sgs 0/0 stream 0 flags 00110000
     kworker/0:0-7       [000] d....     3.931961: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue f800 wIndex 00ff wLength 140 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.931962: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee350(0x000000080c3ee000) deq 0x000000080c3ee340(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931963: xhci_queue_trb: CTRL: Buffer 000000080a0b6f00 length 140 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.931964: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee360(0x000000080c3ee000) deq 0x000000080c3ee340(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931966: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.931967: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee370(0x000000080c3ee000) deq 0x000000080c3ee340(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.931968: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932047: xhci_handle_event: EVENT: TRB 000000080c3ee360 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932049: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932051: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee370(0x000000080c3ee000) deq 0x000000080c3ee370(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932052: xhci_urb_giveback: ep0out-control: urb 00000000f6dc5d5d pipe 2147484160 slot 1 length 140/140 sgs 0/0 stream 0 flags 00110000
          <idle>-0       [000] d.h..     3.932054: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3860(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.932065: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.932067: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc24 wIndex 00cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.932069: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee380(0x000000080c3ee000) deq 0x000000080c3ee370(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932070: xhci_queue_trb: CTRL: Buffer 00000000a0000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.932071: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee390(0x000000080c3ee000) deq 0x000000080c3ee370(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932072: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.932074: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3a0(0x000000080c3ee000) deq 0x000000080c3ee370(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932075: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932097: xhci_handle_event: EVENT: TRB 000000080c3ee390 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932099: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932101: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee3a0(0x000000080c3ee000) deq 0x000000080c3ee3a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932103: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.932104: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3870(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.932116: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/12 sgs 0/0 stream 0 flags 00110000
     kworker/0:0-7       [000] d....     3.932118: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc28 wIndex 00ff wLength 12 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.932119: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3b0(0x000000080c3ee000) deq 0x000000080c3ee3a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932120: xhci_queue_trb: CTRL: Buffer 000000080a0fd100 length 12 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.932122: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3c0(0x000000080c3ee000) deq 0x000000080c3ee3a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932123: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.932124: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3d0(0x000000080c3ee000) deq 0x000000080c3ee3a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932125: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932150: xhci_handle_event: EVENT: TRB 000000080c3ee3c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932152: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932154: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee3d0(0x000000080c3ee000) deq 0x000000080c3ee3d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932155: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 12/12 sgs 0/0 stream 0 flags 00110000
          <idle>-0       [000] d.h..     3.932156: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3880(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.932168: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.932170: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc38 wIndex 0033 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.932171: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3e0(0x000000080c3ee000) deq 0x000000080c3ee3d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932173: xhci_queue_trb: CTRL: Buffer 000000000000003e length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.932174: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee3f0(0x000000080c3ee000) deq 0x000000080c3ee3d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932175: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.932176: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee400(0x000000080c3ee000) deq 0x000000080c3ee3d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932177: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932200: xhci_handle_event: EVENT: TRB 000000080c3ee3f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932202: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932204: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee400(0x000000080c3ee000) deq 0x000000080c3ee400(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932206: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.932207: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3890(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.932219: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.932221: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc38 wIndex 0111 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.932222: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee410(0x000000080c3ee000) deq 0x000000080c3ee400(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932223: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.932225: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee420(0x000000080c3ee000) deq 0x000000080c3ee400(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932226: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.932227: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee430(0x000000080c3ee000) deq 0x000000080c3ee400(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932228: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932251: xhci_handle_event: EVENT: TRB 000000080c3ee420 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932253: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932255: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee430(0x000000080c3ee000) deq 0x000000080c3ee430(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932256: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.932258: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.932269: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/16 sgs 0/0 stream 0 flags 00110000
     kworker/0:0-7       [000] d....     3.932271: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc28 wIndex 01ff wLength 16 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.932273: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee440(0x000000080c3ee000) deq 0x000000080c3ee430(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932274: xhci_queue_trb: CTRL: Buffer 000000080a0fd100 length 16 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.932276: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee450(0x000000080c3ee000) deq 0x000000080c3ee430(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932276: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.932278: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee460(0x000000080c3ee000) deq 0x000000080c3ee430(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.932279: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.932318: xhci_handle_event: EVENT: TRB 000000080c3ee450 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.932320: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.932322: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee460(0x000000080c3ee000) deq 0x000000080c3ee460(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.932323: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 16/16 sgs 0/0 stream 0 flags 00110000
          <idle>-0       [000] d.h..     3.932324: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.935899: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.935902: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc24 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.935903: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee470(0x000000080c3ee000) deq 0x000000080c3ee460(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935904: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.935906: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee480(0x000000080c3ee000) deq 0x000000080c3ee460(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935907: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.935909: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee490(0x000000080c3ee000) deq 0x000000080c3ee460(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935910: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.935938: xhci_handle_event: EVENT: TRB 000000080c3ee480 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.935940: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.935942: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee490(0x000000080c3ee000) deq 0x000000080c3ee490(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.935944: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.935945: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.935957: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/212 sgs 0/0 stream 0 flags 00110000
     kworker/0:0-7       [000] d....     3.935960: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue f800 wIndex 01ff wLength 212 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.935961: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4a0(0x000000080c3ee000) deq 0x000000080c3ee490(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935962: xhci_queue_trb: CTRL: Buffer 000000080c3fd100 length 212 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.935964: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4b0(0x000000080c3ee000) deq 0x000000080c3ee490(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935965: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.935966: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4c0(0x000000080c3ee000) deq 0x000000080c3ee490(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.935967: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936079: xhci_handle_event: EVENT: TRB 000000080c3ee4b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936081: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936083: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee4c0(0x000000080c3ee000) deq 0x000000080c3ee4c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936084: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 212/212 sgs 0/0 stream 0 flags 00110000
          <idle>-0       [000] d.h..     3.936085: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.936097: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.936099: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc24 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.936100: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4d0(0x000000080c3ee000) deq 0x000000080c3ee4c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936101: xhci_queue_trb: CTRL: Buffer 0000000080000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.936103: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4e0(0x000000080c3ee000) deq 0x000000080c3ee4c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936104: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.936105: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee4f0(0x000000080c3ee000) deq 0x000000080c3ee4c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936106: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936127: xhci_handle_event: EVENT: TRB 000000080c3ee4e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936129: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936131: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee4f0(0x000000080c3ee000) deq 0x000000080c3ee4f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936132: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.936134: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.936145: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.936147: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue fc38 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.936148: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee500(0x000000080c3ee000) deq 0x000000080c3ee4f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936149: xhci_queue_trb: CTRL: Buffer 0000000000000007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.936151: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee510(0x000000080c3ee000) deq 0x000000080c3ee4f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936152: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.936153: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee520(0x000000080c3ee000) deq 0x000000080c3ee4f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936154: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936185: xhci_handle_event: EVENT: TRB 000000080c3ee510 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936188: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936190: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee520(0x000000080c3ee000) deq 0x000000080c3ee520(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936192: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.936193: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f38f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.936205: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.936206: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e86c wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.936208: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee530(0x000000080c3ee000) deq 0x000000080c3ee520(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936209: xhci_queue_trb: CTRL: Buffer 000000000000b000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.936211: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee540(0x000000080c3ee000) deq 0x000000080c3ee520(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936212: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.936213: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee550(0x000000080c3ee000) deq 0x000000080c3ee520(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936214: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936237: xhci_handle_event: EVENT: TRB 000000080c3ee540 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936239: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936241: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee550(0x000000080c3ee000) deq 0x000000080c3ee550(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936242: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.936243: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3900(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.936257: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.936259: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.936260: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee560(0x000000080c3ee000) deq 0x000000080c3ee550(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936261: xhci_queue_trb: CTRL: Buffer 0000000033419000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.936262: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee570(0x000000080c3ee000) deq 0x000000080c3ee550(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936263: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.936265: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee580(0x000000080c3ee000) deq 0x000000080c3ee550(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936266: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936302: xhci_handle_event: EVENT: TRB 000000080c3ee570 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936304: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936306: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee580(0x000000080c3ee000) deq 0x000000080c3ee580(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936308: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.936309: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3910(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.936322: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.936323: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b820 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.936325: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee590(0x000000080c3ee000) deq 0x000000080c3ee580(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936326: xhci_queue_trb: CTRL: Buffer 0000000000000210 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.936327: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5a0(0x000000080c3ee000) deq 0x000000080c3ee580(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936328: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.936330: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5b0(0x000000080c3ee000) deq 0x000000080c3ee580(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.936331: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.936353: xhci_handle_event: EVENT: TRB 000000080c3ee5a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.936355: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.936357: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee5b0(0x000000080c3ee000) deq 0x000000080c3ee5b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.936359: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.936360: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3920(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938380: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.938382: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b800 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938383: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5c0(0x000000080c3ee000) deq 0x000000080c3ee5b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938384: xhci_queue_trb: CTRL: Buffer 0000000033419800 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.938386: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5d0(0x000000080c3ee000) deq 0x000000080c3ee5b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938387: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938388: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5e0(0x000000080c3ee000) deq 0x000000080c3ee5b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938389: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938427: xhci_handle_event: EVENT: TRB 000000080c3ee5d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938429: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938431: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee5e0(0x000000080c3ee000) deq 0x000000080c3ee5e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938433: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.938434: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3930(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938449: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
     kworker/0:0-7       [000] d....     3.938451: xhci_queue_trb: CTRL: bRequestType c0 bRequest 05 wValue b800 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938452: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee5f0(0x000000080c3ee000) deq 0x000000080c3ee5e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938453: xhci_queue_trb: CTRL: Buffer 000000003341a000 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
     kworker/0:0-7       [000] d....     3.938455: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee600(0x000000080c3ee000) deq 0x000000080c3ee5e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938456: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938457: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee610(0x000000080c3ee000) deq 0x000000080c3ee5e0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938458: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938483: xhci_handle_event: EVENT: TRB 000000080c3ee600 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938485: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938487: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee610(0x000000080c3ee000) deq 0x000000080c3ee610(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938488: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
          <idle>-0       [000] d.h..     3.938489: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3940(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938503: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938505: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e86c wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938507: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee620(0x000000080c3ee000) deq 0x000000080c3ee610(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938508: xhci_queue_trb: CTRL: Buffer 000000000000a000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938509: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee630(0x000000080c3ee000) deq 0x000000080c3ee610(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938510: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938512: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee640(0x000000080c3ee000) deq 0x000000080c3ee610(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938513: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938547: xhci_handle_event: EVENT: TRB 000000080c3ee630 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938549: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938551: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee640(0x000000080c3ee000) deq 0x000000080c3ee640(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938552: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938553: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3950(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938565: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938567: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b434 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938568: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee650(0x000000080c3ee000) deq 0x000000080c3ee640(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938569: xhci_queue_trb: CTRL: Buffer 0000000081460000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938570: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee660(0x000000080c3ee000) deq 0x000000080c3ee640(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938571: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938573: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee670(0x000000080c3ee000) deq 0x000000080c3ee640(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938574: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938597: xhci_handle_event: EVENT: TRB 000000080c3ee660 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938599: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938601: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee670(0x000000080c3ee000) deq 0x000000080c3ee670(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938602: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938603: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3960(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938614: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938616: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938618: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee680(0x000000080c3ee000) deq 0x000000080c3ee670(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938619: xhci_queue_trb: CTRL: Buffer 0000000000007003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938620: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee690(0x000000080c3ee000) deq 0x000000080c3ee670(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938621: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938623: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6a0(0x000000080c3ee000) deq 0x000000080c3ee670(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938624: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938645: xhci_handle_event: EVENT: TRB 000000080c3ee690 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938647: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938649: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee6a0(0x000000080c3ee000) deq 0x000000080c3ee6a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938650: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938651: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3970(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938663: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938664: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b434 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938666: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6b0(0x000000080c3ee000) deq 0x000000080c3ee6a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938667: xhci_queue_trb: CTRL: Buffer 00000000b82e0000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938668: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6c0(0x000000080c3ee000) deq 0x000000080c3ee6a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938669: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938671: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6d0(0x000000080c3ee000) deq 0x000000080c3ee6a0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938672: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938693: xhci_handle_event: EVENT: TRB 000000080c3ee6c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938695: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938697: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee6d0(0x000000080c3ee000) deq 0x000000080c3ee6d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938698: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938699: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3980(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938710: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938712: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938713: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6e0(0x000000080c3ee000) deq 0x000000080c3ee6d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938714: xhci_queue_trb: CTRL: Buffer 0000000000000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938716: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee6f0(0x000000080c3ee000) deq 0x000000080c3ee6d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938717: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938718: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee700(0x000000080c3ee000) deq 0x000000080c3ee6d0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938719: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938741: xhci_handle_event: EVENT: TRB 000000080c3ee6f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938743: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938745: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee700(0x000000080c3ee000) deq 0x000000080c3ee700(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938746: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938747: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3990(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938758: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938760: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue e86c wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938761: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee710(0x000000080c3ee000) deq 0x000000080c3ee700(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938762: xhci_queue_trb: CTRL: Buffer 000000000000a000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938764: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee720(0x000000080c3ee000) deq 0x000000080c3ee700(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938765: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938766: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee730(0x000000080c3ee000) deq 0x000000080c3ee700(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938767: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938797: xhci_handle_event: EVENT: TRB 000000080c3ee720 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938799: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938801: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee730(0x000000080c3ee000) deq 0x000000080c3ee730(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938802: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938803: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39a0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938814: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938816: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b434 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938818: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee740(0x000000080c3ee000) deq 0x000000080c3ee730(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938819: xhci_queue_trb: CTRL: Buffer 00000000b8200000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938821: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee750(0x000000080c3ee000) deq 0x000000080c3ee730(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938822: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938824: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee760(0x000000080c3ee000) deq 0x000000080c3ee730(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938825: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938847: xhci_handle_event: EVENT: TRB 000000080c3ee750 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938850: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938852: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee760(0x000000080c3ee000) deq 0x000000080c3ee760(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938853: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938854: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39b0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938865: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938867: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938868: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee770(0x000000080c3ee000) deq 0x000000080c3ee760(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938869: xhci_queue_trb: CTRL: Buffer 0000000000000290 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938871: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee780(0x000000080c3ee000) deq 0x000000080c3ee760(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938872: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938873: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee790(0x000000080c3ee000) deq 0x000000080c3ee760(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938874: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938895: xhci_handle_event: EVENT: TRB 000000080c3ee780 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938897: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938899: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee790(0x000000080c3ee000) deq 0x000000080c3ee790(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938900: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938902: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39c0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938913: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938915: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b434 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938916: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7a0(0x000000080c3ee000) deq 0x000000080c3ee790(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938917: xhci_queue_trb: CTRL: Buffer 00000000a0120000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938919: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7b0(0x000000080c3ee000) deq 0x000000080c3ee790(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938920: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938921: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7c0(0x000000080c3ee000) deq 0x000000080c3ee790(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938922: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938943: xhci_handle_event: EVENT: TRB 000000080c3ee7b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938945: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938948: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee7c0(0x000000080c3ee000) deq 0x000000080c3ee7c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938949: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938950: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39d0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.938961: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.938963: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.938964: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7d0(0x000000080c3ee000) deq 0x000000080c3ee7c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938965: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.938967: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7e0(0x000000080c3ee000) deq 0x000000080c3ee7c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938968: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.938969: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee7f0(0x000000080c3ee000) deq 0x000000080c3ee7c0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.938970: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.938992: xhci_handle_event: EVENT: TRB 000000080c3ee7e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.938994: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.938996: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee7f0(0x000000080c3ee000) deq 0x000000080c3ee7f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.938997: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.938998: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39e0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.939009: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.939011: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b434 wIndex 01cc wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.939013: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee800(0x000000080c3ee000) deq 0x000000080c3ee7f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939014: xhci_queue_trb: CTRL: Buffer 00000000a0140000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.939015: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee810(0x000000080c3ee000) deq 0x000000080c3ee7f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939016: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.939017: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee820(0x000000080c3ee000) deq 0x000000080c3ee7f0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939019: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.939050: xhci_handle_event: EVENT: TRB 000000080c3ee810 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.939052: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.939054: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee820(0x000000080c3ee000) deq 0x000000080c3ee820(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.939055: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.939057: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f39f0(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.939068: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.939069: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.939071: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee830(0x000000080c3ee000) deq 0x000000080c3ee820(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939072: xhci_queue_trb: CTRL: Buffer 0000000000002c04 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.939073: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee840(0x000000080c3ee000) deq 0x000000080c3ee820(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939074: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.939076: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee850(0x000000080c3ee000) deq 0x000000080c3ee820(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939077: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.939100: xhci_handle_event: EVENT: TRB 000000080c3ee840 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.939102: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.939104: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee850(0x000000080c3ee000) deq 0x000000080c3ee850(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.939105: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.939107: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3a00(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.939118: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.939119: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.939122: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee860(0x000000080c3ee000) deq 0x000000080c3ee850(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939123: xhci_queue_trb: CTRL: Buffer 0000000000002c07 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.939124: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee870(0x000000080c3ee000) deq 0x000000080c3ee850(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939125: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.939127: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee880(0x000000080c3ee000) deq 0x000000080c3ee850(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939128: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.939150: xhci_handle_event: EVENT: TRB 000000080c3ee870 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.939153: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.939155: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee880(0x000000080c3ee000) deq 0x000000080c3ee880(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.939156: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.939157: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3a10(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.939169: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.939170: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     kworker/0:0-7       [000] d....     3.939172: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee890(0x000000080c3ee000) deq 0x000000080c3ee880(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939173: xhci_queue_trb: CTRL: Buffer 0000000000002c07 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
     kworker/0:0-7       [000] d....     3.939175: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee8a0(0x000000080c3ee000) deq 0x000000080c3ee880(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939176: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
     kworker/0:0-7       [000] d....     3.939177: xhci_inc_enq: CTRL 00000000bbead51e: enq 0x000000080c3ee8b0(0x000000080c3ee000) deq 0x000000080c3ee880(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] d....     3.939178: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
          <idle>-0       [000] d.h..     3.939201: xhci_handle_event: EVENT: TRB 000000080c3ee8a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
          <idle>-0       [000] d.h..     3.939204: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
          <idle>-0       [000] d.h..     3.939205: xhci_inc_deq: CTRL 00000000bbead51e: enq 0x000000080c3ee8b0(0x000000080c3ee000) deq 0x000000080c3ee8b0(0x000000080c3ee000) segs 2 stream 0 bounce 0 cycle 1
          <idle>-0       [000] d.h..     3.939207: xhci_urb_giveback: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 4/4 sgs 0/0 stream 0 flags 00000000
          <idle>-0       [000] d.h..     3.939208: xhci_inc_deq: EVENT 00000000ff6f0d3b: enq 0x000000080c0f3000(0x000000080c0f3000) deq 0x000000080c0f3a20(0x000000080c0f3000) segs 1 stream 0 bounce 0 cycle 1
     kworker/0:0-7       [000] .....     3.939219: xhci_urb_enqueue: ep0out-control: urb 000000002a7aa516 pipe 2147484160 slot 1 length 0/4 sgs 0/0 stream 0 flags 00000000
     kworker/0:0-7       [000] d....     3.939221: xhci_queue_trb: CTRL: bRequestType 40 bRequest 05 wValue b438 wIndex 0133 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
     

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-06-06 21:23           ` Jakob Trumpower
@ 2025-06-10 21:36             ` Thinh Nguyen
  2025-06-17  1:24               ` Thinh Nguyen
  0 siblings, 1 reply; 8+ messages in thread
From: Thinh Nguyen @ 2025-06-10 21:36 UTC (permalink / raw)
  To: Jakob Trumpower; +Cc: Thinh Nguyen, linux-usb@vger.kernel.org, balbi@kernel.org

On Fri, Jun 06, 2025, Jakob Trumpower wrote:
> 
> ________________________________________
> From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> Sent: Tuesday, May 13, 2025 7:48 PM
> To: Jakob Trumpower
> Cc: Thinh Nguyen; linux-usb@vger.kernel.org; balbi@kernel.org
> Subject: Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
> 
> On Fri, May 09, 2025, Jakob Trumpower wrote:
> > Hi Thinh,
> >
> > Sorry about the formatting, I switched outlook to use plain text.
> >
> > I removed the reset at init like you mentioned with the patch. As well as put the quirks back in for u2,u3 disable. I also had tried manually toggling the /sys/bus entries in the past, and would usually see the hub messages come back but the downstream device would still not enumerate. I tried it again with no change. Note: usb3 is the 2.0 controller for the same port.
> >
> > root@ms-radar-01:~# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable
> > 0
> > root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> > root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> > root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
> > root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
> >
> > Here I am toggling authorized instead and I do see some messages, but still no device:
> >
> > root@ms-radar-01:~#         sudo echo 0 > /sys/bus/usb/devices/usb4/authorized
> > root@ms-radar-01:~#         sudo echo 1 > /sys/bus/usb/devices/usb4/authorized
> > [ 2208.950615] hub 4-0:1.0: USB hub found
> > [ 2208.954440] hub 4-0:1.0: 1 port detected
> > [ 2208.960168] usb usb4: authorized to connect
> >
> >
> > Then once again, I cycle the usb C connector and it comes up:
> > root@ms-radar-01:~# [  323.210398] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
> > [  323.511597] usb 4-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00
> > [  323.519776] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> > [  323.526917] usb 4-1: Product: AX88179A
> > [  323.530672] usb 4-1: Manufacturer: ASIX
> > [  323.534506] usb 4-1: SerialNumber: 00000000000FF3
> > [  323.913798] cdc_ncm 4-1:2.0: MAC-Address: a0:ce:c8:ba:a9:44
> > [  323.919389] cdc_ncm 4-1:2.0: setting rx_max = 16384
> > [  323.937168] cdc_ncm 4-1:2.0: setting tx_max = 16384
> > [  323.951984] cdc_ncm 4-1:2.0 eth0: register 'cdc_ncm' at usb-xhci-hcd.2.auto-1, CDC NCM (NO ZLP), a0:ce:c8:ba:a9:44
> > [  324.103396] cdc_ncm 4-1:2.0 enu1c2: renamed from eth0
> >
> > Very strange the plug cycle seems to fix the controller reliably. Also to note that it happens to every 3.0 device I have tested. I have a change order for our next board revision to toggle the VBUS with a GPIO, but not an ideal solution.
> >
> > I know USB and these controllers are extremely complex so I appreciate your time and expertise.
> >
> > Let me know if you can think of any other registers/experiments we can try.
> >
> 
> >Thanks for the experiments.
> 
> > Ok, this is odd. It's not what I thought. If the usb3 port detection
> > fails a few times, then it should fallback to usb2 connection.
> 
> >Let's check the portsc:
> ># cat /sys/kernel/debug/usb/xhci/<your_controller>/ports/**/*
> 
> root@ms-radar-01:~# cat /sys/kernel/debug/usb/xhci/xhci-hcd.2.auto/ports/**/*                                                                           
> Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:                                                                                  
> Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake:
> 
> >Also, can you add this to the kernel cmdline to capture the xhci
> >tracepoints:
> 
> >"xhci_hcd.dyndbg=+p trace_event=xhci-hcd trace_buf_size=30M"
> 
> ># cat /sys/kernel/debug/tracing/trace > tracepoints.log
> I attached a successful trace (shortened) and a trace where the failure happens.
> 
> -Jakob 


Thanks very much for the captures. Apologies for the delay, but I'll get
back on this by the end of this week.

Thanks,
Thinh

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

* Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
  2025-06-10 21:36             ` Thinh Nguyen
@ 2025-06-17  1:24               ` Thinh Nguyen
  0 siblings, 0 replies; 8+ messages in thread
From: Thinh Nguyen @ 2025-06-17  1:24 UTC (permalink / raw)
  To: Jakob Trumpower; +Cc: linux-usb@vger.kernel.org, balbi@kernel.org

On Tue, Jun 10, 2025, Thinh Nguyen wrote:
> On Fri, Jun 06, 2025, Jakob Trumpower wrote:
> > 
> > ________________________________________
> > From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> > Sent: Tuesday, May 13, 2025 7:48 PM
> > To: Jakob Trumpower
> > Cc: Thinh Nguyen; linux-usb@vger.kernel.org; balbi@kernel.org
> > Subject: Re: [BUG REPORT] usb: dwc3: Failure to enumerate from boot.
> > 
> > On Fri, May 09, 2025, Jakob Trumpower wrote:
> > > Hi Thinh,
> > >
> > > Sorry about the formatting, I switched outlook to use plain text.
> > >
> > > I removed the reset at init like you mentioned with the patch. As well as put the quirks back in for u2,u3 disable. I also had tried manually toggling the /sys/bus entries in the past, and would usually see the hub messages come back but the downstream device would still not enumerate. I tried it again with no change. Note: usb3 is the 2.0 controller for the same port.
> > >
> > > root@ms-radar-01:~# cat /sys/bus/usb/devices/usb4/4-0:1.0/usb4-port1/disable
> > > 0
> > > root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> > > root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb4/4-0\:1.0/usb4-port1/disable
> > > root@ms-radar-01:~# echo 1 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
> > > root@ms-radar-01:~# echo 0 >  /sys/bus/usb/devices/usb3/3-0\:1.0/usb3-port1/disable
> > >
> > > Here I am toggling authorized instead and I do see some messages, but still no device:
> > >
> > > root@ms-radar-01:~#         sudo echo 0 > /sys/bus/usb/devices/usb4/authorized
> > > root@ms-radar-01:~#         sudo echo 1 > /sys/bus/usb/devices/usb4/authorized
> > > [ 2208.950615] hub 4-0:1.0: USB hub found
> > > [ 2208.954440] hub 4-0:1.0: 1 port detected
> > > [ 2208.960168] usb usb4: authorized to connect
> > >
> > >
> > > Then once again, I cycle the usb C connector and it comes up:
> > > root@ms-radar-01:~# [  323.210398] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
> > > [  323.511597] usb 4-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00
> > > [  323.519776] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> > > [  323.526917] usb 4-1: Product: AX88179A
> > > [  323.530672] usb 4-1: Manufacturer: ASIX
> > > [  323.534506] usb 4-1: SerialNumber: 00000000000FF3
> > > [  323.913798] cdc_ncm 4-1:2.0: MAC-Address: a0:ce:c8:ba:a9:44
> > > [  323.919389] cdc_ncm 4-1:2.0: setting rx_max = 16384
> > > [  323.937168] cdc_ncm 4-1:2.0: setting tx_max = 16384
> > > [  323.951984] cdc_ncm 4-1:2.0 eth0: register 'cdc_ncm' at usb-xhci-hcd.2.auto-1, CDC NCM (NO ZLP), a0:ce:c8:ba:a9:44
> > > [  324.103396] cdc_ncm 4-1:2.0 enu1c2: renamed from eth0
> > >
> > > Very strange the plug cycle seems to fix the controller reliably. Also to note that it happens to every 3.0 device I have tested. I have a change order for our next board revision to toggle the VBUS with a GPIO, but not an ideal solution.
> > >
> > > I know USB and these controllers are extremely complex so I appreciate your time and expertise.
> > >
> > > Let me know if you can think of any other registers/experiments we can try.
> > >
> > 
> > >Thanks for the experiments.
> > 
> > > Ok, this is odd. It's not what I thought. If the usb3 port detection
> > > fails a few times, then it should fallback to usb2 connection.
> > 
> > >Let's check the portsc:
> > ># cat /sys/kernel/debug/usb/xhci/<your_controller>/ports/**/*
> > 
> > root@ms-radar-01:~# cat /sys/kernel/debug/usb/xhci/xhci-hcd.2.auto/ports/**/*                                                                           
> > Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:                                                                                  
> > Powered Connected Disabled Link:Polling PortSpeed:4 In-Reset Change: Wake:
> > 
> > >Also, can you add this to the kernel cmdline to capture the xhci
> > >tracepoints:
> > 
> > >"xhci_hcd.dyndbg=+p trace_event=xhci-hcd trace_buf_size=30M"
> > 
> > ># cat /sys/kernel/debug/tracing/trace > tracepoints.log
> > I attached a successful trace (shortened) and a trace where the failure happens.
> > 
> > -Jakob 
> 
> 
> Thanks very much for the captures. Apologies for the delay, but I'll get
> back on this by the end of this week.
> 

Looks like the link is unstable. It keeps fluctuating and remains in
polling state. Perhaps a warm reset during port init can recover from
this. The port is disabled from failed link training. Perhaps this
happens when the phy first power-on and needed some time to be stable?

(Note: not tested)

diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index fcedc17ecd2a..54fb4c95afe9 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -4907,7 +4907,7 @@ hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
 
        /* Reset the device; full speed may morph to high speed */
        /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
-       retval = hub_port_reset(hub, port1, udev, delay, false);
+       retval = hub_port_reset(hub, port1, udev, delay, true);
        if (retval < 0)         /* error or disconnect */
                goto fail;
        /* success, speed is known */

BR,
Thinh

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

end of thread, other threads:[~2025-06-17  2:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-28 14:54 [BUG REPORT] usb: dwc3: Failure to enumerate from boot Jakob Trumpower
2025-05-01  0:14 ` Thinh Nguyen
     [not found]   ` <PH0PR06MB7077C939CDCF50DADE0A70F6E889A@PH0PR06MB7077.namprd06.prod.outlook.com>
2025-05-08  0:32     ` Thinh Nguyen
2025-05-09 15:50       ` Jakob Trumpower
2025-05-14  0:48         ` Thinh Nguyen
2025-06-06 21:23           ` Jakob Trumpower
2025-06-10 21:36             ` Thinh Nguyen
2025-06-17  1:24               ` Thinh Nguyen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox