Re: [RFC] USB 3.0 Hub Changes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi John,

I've been testing your patch with a VIA USB 3.0 hub prototype.

I've tested with a mouse, USB 3.0 hard drive, and high speed webcam.
All devices seem to work fine under the hub with your patch.  The only
slightly concerning thing is that I see a bunch of stalls when I try to
run `lsusb -v` for the USB 3.0 hub portion.  The lsusb output says:

can't get hub descriptor: Broken pipe
Device Status:     0x0001
  Self Powered

The USB 3.0 hub descriptor is a different descriptor code (and format)
than USB 1.1 or 2.0 hubs.  It looks like your patch changed the kernel
code in get_hub_descriptor() to ask for the right descriptor, but I'm
not sure if userspace is issuing a control transfer through usbfs and
bypassing the kernel.

Full USBmon, lsusb and dmesg output attached.  I'm running lsusb
(usbutils) version 0.82.

The first failed transfer is
ffff88012c161cc0 3629591912 S Ci:9:002:0 s a0 06 2900 0000 000d 13 <
ffff88012c161cc0 3629595966 C Ci:9:002:0 -32 0

bmRequestType = a0, bRequest = 06, wValue = 2900, wIndex = 0000, wLength
= 000d

That looks like a USB 2.0 GetHubDescriptor request to me.

Alan, Daniel, or Greg, do you know if lsusb is calling through libusb to
get the hub descriptor, or is it just getting cached descriptors from
the kernel?


John, I'm concerned that you're blindly assigning the USB 3.0 hub
descriptor to a usb_hub_descriptor.  The current structure is:

struct usb_hub_descriptor {
        __u8  bDescLength;
        __u8  bDescriptorType;
        __u8  bNbrPorts;
        __le16 wHubCharacteristics;
        __u8  bPwrOn2PwrGood;
        __u8  bHubContrCurrent;
                /* add 1 bit for hub status change; round to bytes */
        __u8  DeviceRemovable[(USB_MAXCHILDREN + 1 + 7) / 8];
        __u8  PortPwrCtrlMask[(USB_MAXCHILDREN + 1 + 7) / 8];
} __attribute__ ((packed));

The USB 3.0 hub descriptor should look something like this:

struct usb_hub_usb3_descriptor {
        __u8  bDescLength;
        __u8  bDescriptorType;
        __u8  bNbrPorts;
        __le16 wHubCharacteristics;
        __u8  bPwrOn2PwrGood;
        __u8  bHubContrCurrent;
                /* add 1 bit for hub status change; round to bytes */
        __u8  bHubHdrDecLat;
        __u16  wHubDelay;
        __u8  DeviceRemovable[2];
} __attribute__ ((packed));

The descriptor is longer, and the fields after bHubContrCurrent don't
align properly.  So I don't think your current approach of just
assigning the new hub descriptor to a pointer of the old hub descriptor
type is going to work very well.

One solution might be to change usb_hub->descriptor into a void pointer
and make sure all code that touches it casts it to either a
usb_hub_descriptor or a usb_hub_usb3_descriptor.

Alan, can you think of a better solution?

John, a couple more comments below.

Sarah Sharp

On Thu, Jul 15, 2010 at 03:14:14PM -0700, John Youn wrote:
> Made some changes to work with superspeed hubs:
> - Added new constants in header
> - Changes for new superspeed hub descriptor
> - Set the hub depth after enumeration
> - Modify the port status bits from the hub
> 
> Signed-off-by: John Youn <johnyoun@xxxxxxxxxxxx>
> ---
> Hi Sarah,
> This is our latest patch for 3.0 Hubs. Now applies to 2.6.35.
> 
>  drivers/usb/core/hub.c   |   62 +++++++++++++++++++++++++++++++++++++++++++--
>  include/linux/usb/ch11.h |   30 ++++++++++++++++++++++
>  2 files changed, 89 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
> index 7331649..53a475b 100644
> --- a/drivers/usb/core/hub.c
> +++ b/drivers/usb/core/hub.c
> @@ -82,6 +82,10 @@ struct usb_hub {
>  	void			**port_owners;
>  };
>  
> +static inline int hub_is_superspeed(struct usb_device *hdev)
> +{
> +	return (hdev->descriptor.bDeviceProtocol == 3);
> +}
>  
>  /* Protect struct usb_device->state and ->children members
>   * Note: Both are also protected by ->dev.sem, except that ->state can
> @@ -176,10 +180,17 @@ static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
>  {
>  	int i, ret;
>  
> +	unsigned dtype = USB_DT_HUB;
> +
> +	if (hub_is_superspeed(hdev)) {
> +		dtype = USB_DT_SS_HUB;
> +		size = 12;
> +	}
> +
>  	for (i = 0; i < 3; i++) {
>  		ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
>  			USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
> -			USB_DT_HUB << 8, 0, data, size,
> +			dtype << 8, 0, data, size,
>  			USB_CTRL_GET_TIMEOUT);
>  		if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
>  			return ret;
> @@ -365,6 +376,17 @@ static int hub_port_status(struct usb_hub *hub, int port1,
>  	} else {
>  		*status = le16_to_cpu(hub->status->port.wPortStatus);
>  		*change = le16_to_cpu(hub->status->port.wPortChange);
> +
> +		if ((hub->hdev->parent != NULL) && hub_is_superspeed(hub->hdev)) {
> +			/* Translate the USB 3 port status */
> +			u16 tmp = *status & USB3_PORT_STAT_MASK;
> +			if (*status & USB3_PORT_STAT_POWER)
> +				tmp |= USB_PORT_STAT_POWER;
> +			if ((*status & USB3_PORT_STAT_SPEED) == USB3_PORT_STAT_SPEED_SUPER)
> +				tmp |= USB_PORT_STAT_SUPER_SPEED;
> +			*status = tmp;
> +		}
> +
>  		ret = 0;
>  	}
>  	mutex_unlock(&hub->status_mutex);
> @@ -607,7 +629,7 @@ static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
>  	if (hdev->children[port1-1] && set_state)
>  		usb_set_device_state(hdev->children[port1-1],
>  				USB_STATE_NOTATTACHED);
> -	if (!hub->error)
> +	if (!hub->error && !hub_is_superspeed(hub->hdev))
>  		ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
>  	if (ret)
>  		dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
> @@ -771,6 +793,11 @@ static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
>  			clear_port_feature(hub->hdev, port1,
>  					USB_PORT_FEAT_C_ENABLE);
>  		}
> +		if (portchange & USB_PORT_STAT_C_LINK_STATE) {
> +			need_debounce_delay = true;
> +			clear_port_feature(hub->hdev, port1,
> +					USB_PORT_FEAT_C_PORT_LINK_STATE);
> +		}
>  
>  		/* We can forget about a "removed" device when there's a
>  		 * physical disconnect or the connect status changes.
> @@ -940,6 +967,18 @@ static int hub_configure(struct usb_hub *hub,
>  		goto fail;
>  	}
>  
> +	if (hub_is_superspeed(hdev) && (hdev->parent != NULL)) {
> +		ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
> +				HUB_SET_DEPTH, USB_RT_HUB,
> +				hdev->level - 1, 0, NULL, 0,
> +				USB_CTRL_SET_TIMEOUT);
> +
> +		if (ret < 0) {
> +			message = "can't set hub depth";
> +			goto fail;
> +		}
> +	}
> +
>  	/* Request the entire hub descriptor.
>  	 * hub->descriptor can handle USB_MAXCHILDREN ports,
>  	 * but the hub can/will return fewer bytes here.
> @@ -967,7 +1006,8 @@ static int hub_configure(struct usb_hub *hub,
>  
>  	wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
>  
> -	if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
> +	/* FIXME for USB 3.0, skip for now */
> +	if ((wHubCharacteristics & HUB_CHAR_COMPOUND) && !(hub_is_superspeed(hdev))) {
>  		int	i;
>  		char	portstr [USB_MAXCHILDREN + 1];
>  
> @@ -1988,6 +2028,8 @@ static int hub_port_wait_reset(struct usb_hub *hub, int port1,
>  				udev->speed = USB_SPEED_HIGH;
>  			else if (portstatus & USB_PORT_STAT_LOW_SPEED)
>  				udev->speed = USB_SPEED_LOW;
> +			else if (portstatus & USB_PORT_STAT_SUPER_SPEED)
> +				udev->speed = USB_SPEED_SUPER;
>  			else
>  				udev->speed = USB_SPEED_FULL;
>  			return 0;
> @@ -3382,6 +3424,20 @@ static void hub_events(void)
>  				clear_port_feature(hdev, i,
>  					USB_PORT_FEAT_C_RESET);
>  			}
> +			if (portchange & USB_PORT_STAT_C_LINK_STATE) {
> +				dev_dbg (hub_dev,
> +					"link state change on port %d\n",
> +					i);

Do you really want to print a debug message every time the device
changes link state?  That's going to be a lot of debugging messages, if
the device is dropping in and out of U1 or U2 every hundred
microseconds.

> +				clear_port_feature(hub->hdev, i,
> +						USB_PORT_FEAT_C_PORT_LINK_STATE);
> +			}
> +			if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
> +				dev_dbg (hub_dev,
> +					"config error on port %d\n",
> +					i);
> +				clear_port_feature(hub->hdev, i,
> +						USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
> +			}

This statement, on the other hand, should probably be a warning.
USB_PORT_STAT_C_CONFIG_ERROR means the hub failed to configure its link
partner, which could indicate a broken device.  You might want to change
the print statement to something more informative.

>  
>  			if (connect_change)
>  				hub_port_connect_change(hub, i,
> diff --git a/include/linux/usb/ch11.h b/include/linux/usb/ch11.h
> index 119194c..cfd450d 100644
> --- a/include/linux/usb/ch11.h
> +++ b/include/linux/usb/ch11.h
> @@ -26,6 +26,7 @@
>  #define HUB_RESET_TT		9
>  #define HUB_GET_TT_STATE	10
>  #define HUB_STOP_TT		11
> +#define HUB_SET_DEPTH		12
>  
>  /*
>   * Hub Class feature numbers
> @@ -54,6 +55,12 @@
>  #define USB_PORT_FEAT_TEST              21
>  #define USB_PORT_FEAT_INDICATOR         22
>  #define USB_PORT_FEAT_C_PORT_L1         23
> +#define USB_PORT_FEAT_C_PORT_LINK_STATE	25
> +#define USB_PORT_FEAT_C_PORT_CONFIG_ERROR 26
> +#define USB_PORT_FEAT_PORT_REMOTE_WAKE_MASK 27
> +#define USB_PORT_FEAT_BH_PORT_RESET     28
> +#define USB_PORT_FEAT_C_BH_PORT_RESET   29
> +#define USB_PORT_FEAT_FORCE_LINKPM_ACCEPT 30
>  
>  /*
>   * Hub Status and Hub Change results
> @@ -84,6 +91,21 @@ struct usb_port_status {
>  #define USB_PORT_STAT_SUPER_SPEED	0x8000	/* Linux-internal */
>  
>  /*
> + * USB 3.0 wPortStatus bit fields
> + * See USB 3.0 spec Table 10-10
> + */
> +/* Bits that are the same from USB 2.0 */
> +#define USB3_PORT_STAT_MASK (USB_PORT_STAT_CONNECTION |	    \
> +				USB_PORT_STAT_ENABLE |	    \
> +				USB_PORT_STAT_OVERCURRENT | \
> +				USB_PORT_STAT_RESET)
> +/* 3.0 specific bits */
> +#define USB3_PORT_STAT_LINK_STATE	0x01e0
> +#define USB3_PORT_STAT_POWER		0x0200
> +#define USB3_PORT_STAT_SPEED		0x1c00
> +#define USB3_PORT_STAT_SPEED_SUPER	0x0
> +
> +/*
>   * wPortChange bit field
>   * See USB 2.0 spec Table 11-22
>   * Bits 0 to 4 shown, bits 5 to 15 are reserved
> @@ -94,6 +116,13 @@ struct usb_port_status {
>  #define USB_PORT_STAT_C_OVERCURRENT	0x0008
>  #define USB_PORT_STAT_C_RESET		0x0010
>  #define USB_PORT_STAT_C_L1		0x0020
> +/*
> + * USB 3.0 wPortChange bit fields
> + * See USB 3.0 spec Table 10-11
> + */
> +#define USB_PORT_STAT_C_BH_RESET	0x0020
> +#define USB_PORT_STAT_C_LINK_STATE	0x0040
> +#define USB_PORT_STAT_C_CONFIG_ERROR	0x0080
>  
>  /*
>   * wHubCharacteristics (masks)
> @@ -128,6 +157,7 @@ struct usb_hub_status {
>   */
>  
>  #define USB_DT_HUB			(USB_TYPE_CLASS | 0x09)
> +#define USB_DT_SS_HUB			(USB_TYPE_CLASS | 0x0a)
>  #define USB_DT_HUB_NONVAR_SIZE		7
>  
>  struct usb_hub_descriptor {
> -- 
> 1.6.5.2
> 
Aug 17 13:15:54 xanatos kernel: [ 5694.433638] xhci_hcd 0000:05:00.0: @9927d760 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433641] xhci_hcd 0000:05:00.0: @9927d770 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433643] xhci_hcd 0000:05:00.0: @9927d780 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433645] xhci_hcd 0000:05:00.0: @9927d790 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433648] xhci_hcd 0000:05:00.0: @9927d7a0 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433650] xhci_hcd 0000:05:00.0: @9927d7b0 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433652] xhci_hcd 0000:05:00.0: @9927d7c0 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433655] xhci_hcd 0000:05:00.0: @9927d7d0 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433657] xhci_hcd 0000:05:00.0: @9927d7e0 00000000 00000000 00000000 00000000
Aug 17 13:15:54 xanatos kernel: [ 5694.433659] xhci_hcd 0000:05:00.0: @9927d7f0 9927d400 00000000 00000000 00001802
Aug 17 13:16:31 xanatos kernel: [ 5731.808861] iwlagn 0000:03:00.0: ACTIVATE a non DRIVER active station id 0 addr 00:12:d9:3c:70:11
Aug 17 13:16:31 xanatos kernel: [ 5731.824649] wlan0: deauthenticating from 00:12:d9:3c:70:11 by local choice (reason=3)
Aug 17 13:16:31 xanatos kernel: [ 5731.826826] wlan0: deauthenticating from 00:12:d9:3c:70:11 by local choice (reason=3)
Aug 17 13:16:31 xanatos kernel: [ 5731.826872] wlan0: authenticate with 00:24:14:86:49:e1 (try 1)
Aug 17 13:16:31 xanatos kernel: [ 5731.841725] wlan0: authenticated
Aug 17 13:16:31 xanatos kernel: [ 5731.844987] wlan0: associate with 00:24:14:86:49:e1 (try 1)
Aug 17 13:16:31 xanatos kernel: [ 5731.848026] wlan0: RX AssocResp from 00:24:14:86:49:e1 (capab=0x431 status=0 aid=1)
Aug 17 13:16:31 xanatos kernel: [ 5731.848030] wlan0: associated
Aug 17 13:16:45 xanatos kernel: [ 5745.805782] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.805786] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.805798] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e960 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.805800] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e970 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.805803] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e980 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.805809] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.818320] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.818324] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.818327] xhci_hcd 0000:05:00.0: @3781e660 37b7e960 00000000 0d0000fb 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.818331] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.818334] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818337] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.818339] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818342] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.818347] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799712
Aug 17 13:16:45 xanatos kernel: [ 5745.818350] xhci_hcd 0000:05:00.0: WARN: short transfer on control ep
Aug 17 13:16:45 xanatos kernel: [ 5745.818353] xhci_hcd 0000:05:00.0: Waiting for status stage event
Aug 17 13:16:45 xanatos kernel: [ 5745.818355] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e670 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818358] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818360] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818369] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e678, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.818408] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.818411] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.818414] xhci_hcd 0000:05:00.0: @3781e670 37b7e970 00000000 01000000 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.818417] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.818419] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818422] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.818424] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818426] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.818429] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799728
Aug 17 13:16:45 xanatos kernel: [ 5745.818431] xhci_hcd 0000:05:00.0: Successful control transfer!
Aug 17 13:16:45 xanatos kernel: [ 5745.818434] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e960 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818436] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e970 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818439] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e980 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818441] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e680 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818445] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c381600, len = 4, status = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.818462] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818464] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.818473] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e688, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.818583] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.818587] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.818590] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e990 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818592] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9a0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818594] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9b0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.818601] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.833617] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.833621] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.833625] xhci_hcd 0000:05:00.0: @3781e680 37b7e990 00000000 0d0000e1 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.833628] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.833631] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833634] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.833637] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833639] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.833643] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799760
Aug 17 13:16:45 xanatos kernel: [ 5745.833645] xhci_hcd 0000:05:00.0: WARN: short transfer on control ep
Aug 17 13:16:45 xanatos kernel: [ 5745.833648] xhci_hcd 0000:05:00.0: Waiting for status stage event
Aug 17 13:16:45 xanatos kernel: [ 5745.833650] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e690 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833653] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833656] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833664] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e698, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.833698] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.833701] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.833705] xhci_hcd 0000:05:00.0: @3781e690 37b7e9a0 00000000 01000000 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.833708] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.833711] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833714] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.833717] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833720] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.833723] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799776
Aug 17 13:16:45 xanatos kernel: [ 5745.833725] xhci_hcd 0000:05:00.0: Successful control transfer!
Aug 17 13:16:45 xanatos kernel: [ 5745.833728] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e990 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833731] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9a0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833733] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9b0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833736] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6a0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833740] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c381600, len = 30, status = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.833747] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833750] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.833759] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e6a8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.833797] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.833800] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.833802] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9c0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833804] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9d0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833806] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9e0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.833818] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.848871] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.848874] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.848877] xhci_hcd 0000:05:00.0: @3781e6a0 37b7e9c0 00000000 0d0000fb 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.848881] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.848884] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848886] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.848889] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848892] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.848895] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799808
Aug 17 13:16:45 xanatos kernel: [ 5745.848897] xhci_hcd 0000:05:00.0: WARN: short transfer on control ep
Aug 17 13:16:45 xanatos kernel: [ 5745.848900] xhci_hcd 0000:05:00.0: Waiting for status stage event
Aug 17 13:16:45 xanatos kernel: [ 5745.848903] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6b0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848905] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848908] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848910] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.848913] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848916] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.848918] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799824
Aug 17 13:16:45 xanatos kernel: [ 5745.848921] xhci_hcd 0000:05:00.0: Successful control transfer!
Aug 17 13:16:45 xanatos kernel: [ 5745.848924] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9c0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848927] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9d0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848929] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9e0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848932] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6c0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848935] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c381600, len = 4, status = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.848943] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848946] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.848956] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e6c8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.848980] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.848983] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.848986] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7e9f0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848989] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea00 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848992] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea10 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.848999] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.863997] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.864000] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.864003] xhci_hcd 0000:05:00.0: @3781e6c0 37b7e9f0 00000000 0d0000d9 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.864006] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.864009] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864012] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.864014] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864017] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.864020] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799856
Aug 17 13:16:45 xanatos kernel: [ 5745.864023] xhci_hcd 0000:05:00.0: WARN: short transfer on control ep
Aug 17 13:16:45 xanatos kernel: [ 5745.864025] xhci_hcd 0000:05:00.0: Waiting for status stage event
Aug 17 13:16:45 xanatos kernel: [ 5745.864028] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6d0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.864030] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864033] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864036] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.864038] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864041] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.864044] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799872
Aug 17 13:16:45 xanatos kernel: [ 5745.864046] xhci_hcd 0000:05:00.0: Successful control transfer!
Aug 17 13:16:45 xanatos kernel: [ 5745.864049] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7e9f0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.864052] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7ea00 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.864054] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7ea10 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.864057] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6e0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.864060] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c381600, len = 38, status = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.864068] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864071] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.864081] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e6e8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.865777] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.865780] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.865783] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea20 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.865785] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea30 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.865788] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea40 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.865794] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869742] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.869745] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.869748] xhci_hcd 0000:05:00.0: @3781e6e0 37b7ea20 00000000 0600000d 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.869752] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869755] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869757] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.869760] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869763] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.869765] xhci_hcd 0000:05:00.0: WARN: Stalled endpoint
Aug 17 13:16:45 xanatos kernel: [ 5745.869768] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799904
Aug 17 13:16:45 xanatos kernel: [ 5745.869771] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.869774] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e0b0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869777] xhci_hcd 0000:05:00.0: Cleaning up stalled endpoint ring
Aug 17 13:16:45 xanatos kernel: [ 5745.869780] xhci_hcd 0000:05:00.0: Finding segment containing stopped TRB.
Aug 17 13:16:45 xanatos kernel: [ 5745.869782] xhci_hcd 0000:05:00.0: Finding endpoint context
Aug 17 13:16:45 xanatos kernel: [ 5745.869785] xhci_hcd 0000:05:00.0: Finding segment containing last TRB in TD.
Aug 17 13:16:45 xanatos kernel: [ 5745.869788] xhci_hcd 0000:05:00.0: New dequeue segment = ffff8800a0ed62e0 (virtual)
Aug 17 13:16:45 xanatos kernel: [ 5745.869790] xhci_hcd 0000:05:00.0: New dequeue pointer = 0x37b7ea40 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869793] xhci_hcd 0000:05:00.0: Setting dequeue pointer in internal ring state.
Aug 17 13:16:45 xanatos kernel: [ 5745.869795] xhci_hcd 0000:05:00.0: Queueing new dequeue state
Aug 17 13:16:45 xanatos kernel: [ 5745.869799] xhci_hcd 0000:05:00.0: Set TR Deq Ptr cmd, new deq seg = ffff8800a0ed62e0 (0x37b7e800 dma), new deq ptr = ffff880037b7ea40 (0x37b7ea40 dma), new cycle = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.869803] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.869806] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e0c0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869808] xhci_hcd 0000:05:00.0: // Ding dong!
Aug 17 13:16:45 xanatos kernel: [ 5745.869813] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920800, 32'h0, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869820] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e6f0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869824] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c161cc0, len = 0, status = -32
Aug 17 13:16:45 xanatos kernel: [ 5745.869831] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869834] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869843] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e6f8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869888] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.869891] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.869895] xhci_hcd 0000:05:00.0: @3781e6f0 3781e0a0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.869898] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869901] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869904] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.869906] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.869910] xhci_hcd 0000:05:00.0: Ignoring reset ep completion code of 1
Aug 17 13:16:45 xanatos kernel: [ 5745.869918] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e0b0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869920] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.869923] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e700 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869925] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869933] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e708, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869974] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.869976] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.869979] xhci_hcd 0000:05:00.0: @3781e700 3781e0b0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.869981] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.869984] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.869986] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.869988] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.869991] xhci_hcd 0000:05:00.0: Successful Set TR Deq Ptr cmd, deq = @37b7ea40
Aug 17 13:16:45 xanatos kernel: [ 5745.869993] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e0c0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.869996] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.869998] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e710 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.870000] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.870009] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e718, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.870013] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.870015] xhci_hcd 0000:05:00.0: Endpoint state = 0x3
Aug 17 13:16:45 xanatos kernel: [ 5745.870018] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea50 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.870020] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea60 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.870023] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea70 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.870028] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875155] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.875157] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.875160] xhci_hcd 0000:05:00.0: @3781e710 37b7ea50 00000000 0600000a 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.875163] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875166] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875168] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.875170] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875173] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.875175] xhci_hcd 0000:05:00.0: WARN: Stalled endpoint
Aug 17 13:16:45 xanatos kernel: [ 5745.875177] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934799952
Aug 17 13:16:45 xanatos kernel: [ 5745.875180] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.875182] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e0d0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875184] xhci_hcd 0000:05:00.0: Cleaning up stalled endpoint ring
Aug 17 13:16:45 xanatos kernel: [ 5745.875186] xhci_hcd 0000:05:00.0: Finding segment containing stopped TRB.
Aug 17 13:16:45 xanatos kernel: [ 5745.875189] xhci_hcd 0000:05:00.0: Finding endpoint context
Aug 17 13:16:45 xanatos kernel: [ 5745.875191] xhci_hcd 0000:05:00.0: Finding segment containing last TRB in TD.
Aug 17 13:16:45 xanatos kernel: [ 5745.875193] xhci_hcd 0000:05:00.0: New dequeue segment = ffff8800a0ed62e0 (virtual)
Aug 17 13:16:45 xanatos kernel: [ 5745.875195] xhci_hcd 0000:05:00.0: New dequeue pointer = 0x37b7ea70 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875198] xhci_hcd 0000:05:00.0: Setting dequeue pointer in internal ring state.
Aug 17 13:16:45 xanatos kernel: [ 5745.875200] xhci_hcd 0000:05:00.0: Queueing new dequeue state
Aug 17 13:16:45 xanatos kernel: [ 5745.875203] xhci_hcd 0000:05:00.0: Set TR Deq Ptr cmd, new deq seg = ffff8800a0ed62e0 (0x37b7e800 dma), new deq ptr = ffff880037b7ea70 (0x37b7ea70 dma), new cycle = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.875206] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.875209] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e0e0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875211] xhci_hcd 0000:05:00.0: // Ding dong!
Aug 17 13:16:45 xanatos kernel: [ 5745.875217] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920800, 32'h0, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875224] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e720 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875227] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c161cc0, len = 0, status = -32
Aug 17 13:16:45 xanatos kernel: [ 5745.875233] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875236] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875244] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e728, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875248] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.875251] xhci_hcd 0000:05:00.0: Endpoint state = 0x2
Aug 17 13:16:45 xanatos kernel: [ 5745.875253] xhci_hcd 0000:05:00.0: WARN halted endpoint, queueing URB anyway.
Aug 17 13:16:45 xanatos kernel: [ 5745.875256] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea80 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875259] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ea90 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875261] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7eaa0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875292] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.875294] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.875298] xhci_hcd 0000:05:00.0: @3781e720 3781e0c0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.875301] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875305] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875308] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.875310] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.875314] xhci_hcd 0000:05:00.0: Ignoring reset ep completion code of 1
Aug 17 13:16:45 xanatos kernel: [ 5745.875317] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e0d0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875320] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.875323] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e730 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875326] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875336] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e738, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875349] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.875351] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.875354] xhci_hcd 0000:05:00.0: @3781e730 3781e0d0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.875356] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875359] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875361] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.875363] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.875366] xhci_hcd 0000:05:00.0: Successful Set TR Deq Ptr cmd, deq = @37b7ea70
Aug 17 13:16:45 xanatos kernel: [ 5745.875372] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.875374] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e0e0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875377] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.875379] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e740 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.875382] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.875391] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e748, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880785] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.880788] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.880791] xhci_hcd 0000:05:00.0: @3781e740 37b7ea80 00000000 06000004 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.880794] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880797] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880799] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.880801] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880804] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.880806] xhci_hcd 0000:05:00.0: WARN: Stalled endpoint
Aug 17 13:16:45 xanatos kernel: [ 5745.880809] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934800000
Aug 17 13:16:45 xanatos kernel: [ 5745.880811] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.880814] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e0f0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880816] xhci_hcd 0000:05:00.0: Cleaning up stalled endpoint ring
Aug 17 13:16:45 xanatos kernel: [ 5745.880818] xhci_hcd 0000:05:00.0: Finding segment containing stopped TRB.
Aug 17 13:16:45 xanatos kernel: [ 5745.880820] xhci_hcd 0000:05:00.0: Finding endpoint context
Aug 17 13:16:45 xanatos kernel: [ 5745.880822] xhci_hcd 0000:05:00.0: Finding segment containing last TRB in TD.
Aug 17 13:16:45 xanatos kernel: [ 5745.880825] xhci_hcd 0000:05:00.0: New dequeue segment = ffff8800a0ed62e0 (virtual)
Aug 17 13:16:45 xanatos kernel: [ 5745.880827] xhci_hcd 0000:05:00.0: New dequeue pointer = 0x37b7eaa0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880829] xhci_hcd 0000:05:00.0: Setting dequeue pointer in internal ring state.
Aug 17 13:16:45 xanatos kernel: [ 5745.880832] xhci_hcd 0000:05:00.0: Queueing new dequeue state
Aug 17 13:16:45 xanatos kernel: [ 5745.880835] xhci_hcd 0000:05:00.0: Set TR Deq Ptr cmd, new deq seg = ffff8800a0ed62e0 (0x37b7e800 dma), new deq ptr = ffff880037b7eaa0 (0x37b7eaa0 dma), new cycle = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.880838] xhci_hcd 0000:05:00.0: Endpoint state = 0x1
Aug 17 13:16:45 xanatos kernel: [ 5745.880841] xhci_hcd 0000:05:00.0: Command ring enq = 0x3781e100 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880843] xhci_hcd 0000:05:00.0: // Ding dong!
Aug 17 13:16:45 xanatos kernel: [ 5745.880849] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920800, 32'h0, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880855] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e750 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880858] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c161cc0, len = 0, status = -32
Aug 17 13:16:45 xanatos kernel: [ 5745.880866] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880868] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880877] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e758, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880922] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.880924] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.880927] xhci_hcd 0000:05:00.0: @3781e750 3781e0e0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.880930] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880933] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880935] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.880937] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.880940] xhci_hcd 0000:05:00.0: Ignoring reset ep completion code of 1
Aug 17 13:16:45 xanatos kernel: [ 5745.880942] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e0f0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880945] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.880947] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e760 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.880949] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880958] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e768, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880980] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.880983] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.880985] xhci_hcd 0000:05:00.0: @3781e760 3781e0f0 00000000 01000000 01008400
Aug 17 13:16:45 xanatos kernel: [ 5745.880988] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.880991] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.880993] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.880995] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.880998] xhci_hcd 0000:05:00.0: Successful Set TR Deq Ptr cmd, deq = @37b7eaa0
Aug 17 13:16:45 xanatos kernel: [ 5745.881000] xhci_hcd 0000:05:00.0: Command ring deq = 0x3781e100 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.881003] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_cmd_completion
Aug 17 13:16:45 xanatos kernel: [ 5745.881005] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e770 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.881007] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.881016] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e778, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.883432] xhci_hcd 0000:05:00.0: Queueing ctrl tx for slot id 1, ep 0
Aug 17 13:16:45 xanatos kernel: [ 5745.883435] xhci_hcd 0000:05:00.0: Endpoint state = 0x3
Aug 17 13:16:45 xanatos kernel: [ 5745.883438] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7eab0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.883440] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7eac0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.883443] xhci_hcd 0000:05:00.0: Ring enq = 0x37b7ead0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.883449] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920804, 32'h1, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.886658] xhci_hcd 0000:05:00.0: op reg status = 00000008
Aug 17 13:16:45 xanatos kernel: [ 5745.886661] xhci_hcd 0000:05:00.0: Event ring dequeue ptr:
Aug 17 13:16:45 xanatos kernel: [ 5745.886664] xhci_hcd 0000:05:00.0: @3781e770 37b7eac0 00000000 01000000 01018000
Aug 17 13:16:45 xanatos kernel: [ 5745.886667] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 32'hffffc90018920024, 32'h8, 4'hf);
Aug 17 13:16:45 xanatos kernel: [ 5745.886670] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.886672] xhci_hcd 0000:05:00.0: xhci_handle_event - OS owns TRB
Aug 17 13:16:45 xanatos kernel: [ 5745.886674] xhci_hcd 0000:05:00.0: xhci_handle_event - calling handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.886676] xhci_hcd 0000:05:00.0: handle_tx_event - ep index = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.886680] xhci_hcd 0000:05:00.0: DMA address or buffer contents= 934800064
Aug 17 13:16:45 xanatos kernel: [ 5745.886682] xhci_hcd 0000:05:00.0: Successful control transfer!
Aug 17 13:16:45 xanatos kernel: [ 5745.886684] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7eab0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.886686] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7eac0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.886689] xhci_hcd 0000:05:00.0: Ring deq = 0x37b7ead0 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.886691] xhci_hcd 0000:05:00.0: Event ring deq = 0x3781e780 (DMA)
Aug 17 13:16:45 xanatos kernel: [ 5745.886694] xhci_hcd 0000:05:00.0: Giveback URB ffff88012c161cc0, len = 2, status = 0
Aug 17 13:16:45 xanatos kernel: [ 5745.886701] xhci_hcd 0000:05:00.0: xhci_handle_event - returned from handle_tx_event
Aug 17 13:16:45 xanatos kernel: [ 5745.886703] xhci_hcd 0000:05:00.0: In xhci_handle_event
Aug 17 13:16:45 xanatos kernel: [ 5745.886712] xhci_hcd 0000:05:00.0: `MEM_WRITE_DWORD(3'b000, 64'hffffc90018920638, 64'h3781e788, 4'hf);
Aug 17 13:16:54 xanatos kernel: [ 5754.592117] xhci_hcd 0000:05:00.0: Poll event ring: 4296330944
Aug 17 13:16:54 xanatos kernel: [ 5754.592126] xhci_hcd 0000:05:00.0: op reg status = 0x0
Aug 17 13:16:54 xanatos kernel: [ 5754.592132] xhci_hcd 0000:05:00.0: ir_set 0 pending = 0x2
Aug 17 13:16:54 xanatos kernel: [ 5754.592134] xhci_hcd 0000:05:00.0: No-op commands handled = 0
Aug 17 13:16:54 xanatos kernel: [ 5754.592137] xhci_hcd 0000:05:00.0: HC error bitmask = 0x4
Aug 17 13:16:54 xanatos kernel: [ 5754.592139] xhci_hcd 0000:05:00.0: Event ring:
Aug 17 13:16:54 xanatos kernel: [ 5754.592143] xhci_hcd 0000:05:00.0: @3781e400 37832510 00000000 01000000 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592147] xhci_hcd 0000:05:00.0: @3781e410 37832530 00000000 0d0000ef 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592150] xhci_hcd 0000:05:00.0: @3781e420 37832540 00000000 01000000 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592153] xhci_hcd 0000:05:00.0: @3781e430 37832560 00000000 0d0000dd 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592156] xhci_hcd 0000:05:00.0: @3781e440 37832570 00000000 01000000 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592160] xhci_hcd 0000:05:00.0: @3781e450 3781e050 00000000 01000000 03008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592163] xhci_hcd 0000:05:00.0: @3781e460 37832590 00000000 01000000 03018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592166] xhci_hcd 0000:05:00.0: @3781e470 37b7e940 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592169] xhci_hcd 0000:05:00.0: @3781e480 37b7e720 00000000 0d0000fb 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592173] xhci_hcd 0000:05:00.0: @3781e490 37b7e730 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592176] xhci_hcd 0000:05:00.0: @3781e4a0 37b7e750 00000000 0d0000e9 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592179] xhci_hcd 0000:05:00.0: @3781e4b0 37b7e760 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592182] xhci_hcd 0000:05:00.0: @3781e4c0 37b7e780 00000000 0d000004 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592186] xhci_hcd 0000:05:00.0: @3781e4d0 37b7e790 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592189] xhci_hcd 0000:05:00.0: @3781e4e0 37b7e7c0 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592192] xhci_hcd 0000:05:00.0: @3781e4f0 37b7e400 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592195] xhci_hcd 0000:05:00.0: @3781e500 37b7e430 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592199] xhci_hcd 0000:05:00.0: @3781e510 37b7e460 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592202] xhci_hcd 0000:05:00.0: @3781e520 37b7e490 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592205] xhci_hcd 0000:05:00.0: @3781e530 37b7e4b0 00000000 06000004 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592208] xhci_hcd 0000:05:00.0: @3781e540 3781e060 00000000 01000000 02008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592212] xhci_hcd 0000:05:00.0: @3781e550 3781e070 00000000 01000000 02008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592215] xhci_hcd 0000:05:00.0: @3781e560 37b7e4f0 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592218] xhci_hcd 0000:05:00.0: @3781e570 37b7e510 00000000 0d0000fb 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592221] xhci_hcd 0000:05:00.0: @3781e580 37b7e520 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592225] xhci_hcd 0000:05:00.0: @3781e590 37b7e540 00000000 0d0000e9 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592228] xhci_hcd 0000:05:00.0: @3781e5a0 37b7e550 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592231] xhci_hcd 0000:05:00.0: @3781e5b0 37b7e570 00000000 0d000004 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592234] xhci_hcd 0000:05:00.0: @3781e5c0 37b7e580 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592238] xhci_hcd 0000:05:00.0: @3781e5d0 37b7e5b0 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592241] xhci_hcd 0000:05:00.0: @3781e5e0 37b7e5e0 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592244] xhci_hcd 0000:05:00.0: @3781e5f0 37b7e610 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592247] xhci_hcd 0000:05:00.0: @3781e600 37b7e640 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592251] xhci_hcd 0000:05:00.0: @3781e610 37b7e670 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592254] xhci_hcd 0000:05:00.0: @3781e620 37b7e690 00000000 06000004 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592263] xhci_hcd 0000:05:00.0: @3781e630 3781e080 00000000 01000000 02008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592265] xhci_hcd 0000:05:00.0: @3781e640 3781e090 00000000 01000000 02008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592268] xhci_hcd 0000:05:00.0: @3781e650 37b7e6d0 00000000 01000000 02018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592270] xhci_hcd 0000:05:00.0: @3781e660 37b7e960 00000000 0d0000fb 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592272] xhci_hcd 0000:05:00.0: @3781e670 37b7e970 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592275] xhci_hcd 0000:05:00.0: @3781e680 37b7e990 00000000 0d0000e1 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592277] xhci_hcd 0000:05:00.0: @3781e690 37b7e9a0 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592280] xhci_hcd 0000:05:00.0: @3781e6a0 37b7e9c0 00000000 0d0000fb 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592282] xhci_hcd 0000:05:00.0: @3781e6b0 37b7e9d0 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592285] xhci_hcd 0000:05:00.0: @3781e6c0 37b7e9f0 00000000 0d0000d9 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592287] xhci_hcd 0000:05:00.0: @3781e6d0 37b7ea00 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592290] xhci_hcd 0000:05:00.0: @3781e6e0 37b7ea20 00000000 0600000d 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592292] xhci_hcd 0000:05:00.0: @3781e6f0 3781e0a0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592294] xhci_hcd 0000:05:00.0: @3781e700 3781e0b0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592297] xhci_hcd 0000:05:00.0: @3781e710 37b7ea50 00000000 0600000a 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592299] xhci_hcd 0000:05:00.0: @3781e720 3781e0c0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592302] xhci_hcd 0000:05:00.0: @3781e730 3781e0d0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592304] xhci_hcd 0000:05:00.0: @3781e740 37b7ea80 00000000 06000004 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592307] xhci_hcd 0000:05:00.0: @3781e750 3781e0e0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592309] xhci_hcd 0000:05:00.0: @3781e760 3781e0f0 00000000 01000000 01008400
Aug 17 13:16:54 xanatos kernel: [ 5754.592312] xhci_hcd 0000:05:00.0: @3781e770 37b7eac0 00000000 01000000 01018000
Aug 17 13:16:54 xanatos kernel: [ 5754.592314] xhci_hcd 0000:05:00.0: @3781e780 3781e040 00000000 01000000 03008401
Aug 17 13:16:54 xanatos kernel: [ 5754.592316] xhci_hcd 0000:05:00.0: @3781e790 37832420 00000000 01000000 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592319] xhci_hcd 0000:05:00.0: @3781e7a0 37832450 00000000 01000000 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592321] xhci_hcd 0000:05:00.0: @3781e7b0 37832480 00000000 01000000 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592324] xhci_hcd 0000:05:00.0: @3781e7c0 378324b0 00000000 01000000 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592326] xhci_hcd 0000:05:00.0: @3781e7d0 378324d0 00000000 0d0000fb 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592329] xhci_hcd 0000:05:00.0: @3781e7e0 378324e0 00000000 01000000 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592331] xhci_hcd 0000:05:00.0: @3781e7f0 37832500 00000000 0d0000f1 03018001
Aug 17 13:16:54 xanatos kernel: [ 5754.592334] xhci_hcd 0000:05:00.0: Ring deq = ffff88003781e780 (virt), 0x3781e780 (dma)
Aug 17 13:16:54 xanatos kernel: [ 5754.592336] xhci_hcd 0000:05:00.0: Ring deq updated 1624184 times
Aug 17 13:16:54 xanatos kernel: [ 5754.592339] xhci_hcd 0000:05:00.0: Ring enq = ffff88003781e400 (virt), 0x3781e400 (dma)
Aug 17 13:16:54 xanatos kernel: [ 5754.592341] xhci_hcd 0000:05:00.0: Ring enq updated 0 times
Aug 17 13:16:54 xanatos kernel: [ 5754.592349] xhci_hcd 0000:05:00.0: ERST deq = 64'h3781e780
Aug 17 13:16:54 xanatos kernel: [ 5754.592351] xhci_hcd 0000:05:00.0: Command ring:
Aug 17 13:16:54 xanatos kernel: [ 5754.592353] xhci_hcd 0000:05:00.0: @3781e000 378d5000 00000000 00000000 02003001
Aug 17 13:16:54 xanatos kernel: [ 5754.592356] xhci_hcd 0000:05:00.0: @3781e010 378a0000 00000000 00000000 02003001
Aug 17 13:16:54 xanatos kernel: [ 5754.592358] xhci_hcd 0000:05:00.0: @3781e020 00000000 00000000 00000000 00002401
Aug 17 13:16:54 xanatos kernel: [ 5754.592361] xhci_hcd 0000:05:00.0: @3781e030 00000000 00000000 00000000 03004401
Aug 17 13:16:54 xanatos kernel: [ 5754.592363] xhci_hcd 0000:05:00.0: @3781e040 37956000 00000000 00000000 03002c01
Aug 17 13:16:54 xanatos kernel: [ 5754.592366] xhci_hcd 0000:05:00.0: @3781e050 37956000 00000000 00000000 03003001
Aug 17 13:16:54 xanatos kernel: [ 5754.592368] xhci_hcd 0000:05:00.0: @3781e060 00000000 00000000 00000000 02013801
Aug 17 13:16:54 xanatos kernel: [ 5754.592370] xhci_hcd 0000:05:00.0: @3781e070 37b7e4d0 00000000 00000000 02014001
Aug 17 13:16:54 xanatos kernel: [ 5754.592373] xhci_hcd 0000:05:00.0: @3781e080 00000000 00000000 00000000 02013801
Aug 17 13:16:54 xanatos kernel: [ 5754.592375] xhci_hcd 0000:05:00.0: @3781e090 37b7e6b0 00000000 00000000 02014001
Aug 17 13:16:54 xanatos kernel: [ 5754.592378] xhci_hcd 0000:05:00.0: @3781e0a0 00000000 00000000 00000000 01013801
Aug 17 13:16:54 xanatos kernel: [ 5754.592380] xhci_hcd 0000:05:00.0: @3781e0b0 37b7ea40 00000000 00000000 01014001
Aug 17 13:16:54 xanatos kernel: [ 5754.592383] xhci_hcd 0000:05:00.0: @3781e0c0 00000000 00000000 00000000 01013801
Aug 17 13:16:54 xanatos kernel: [ 5754.592385] xhci_hcd 0000:05:00.0: @3781e0d0 37b7ea70 00000000 00000000 01014001
Aug 17 13:16:54 xanatos kernel: [ 5754.592388] xhci_hcd 0000:05:00.0: @3781e0e0 00000000 00000000 00000000 01013801
Aug 17 13:16:54 xanatos kernel: [ 5754.592390] xhci_hcd 0000:05:00.0: @3781e0f0 37b7eaa0 00000000 00000000 01014001
Aug 17 13:16:54 xanatos kernel: [ 5754.592393] xhci_hcd 0000:05:00.0: @3781e100 37b7e660 00000000 00000000 05014000
Aug 17 13:16:54 xanatos kernel: [ 5754.592395] xhci_hcd 0000:05:00.0: @3781e110 00000000 00000000 00000000 05013800
Aug 17 13:16:54 xanatos kernel: [ 5754.592397] xhci_hcd 0000:05:00.0: @3781e120 37b7e690 00000000 00000000 05014000
Aug 17 13:16:54 xanatos kernel: [ 5754.592400] xhci_hcd 0000:05:00.0: @3781e130 00000000 00000000 00000000 05013800
Aug 17 13:16:54 xanatos kernel: [ 5754.592402] xhci_hcd 0000:05:00.0: @3781e140 37b7e6c0 00000000 00000000 05014000
Aug 17 13:16:54 xanatos kernel: [ 5754.592405] xhci_hcd 0000:05:00.0: @3781e150 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592407] xhci_hcd 0000:05:00.0: @3781e160 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592410] xhci_hcd 0000:05:00.0: @3781e170 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592412] xhci_hcd 0000:05:00.0: @3781e180 00000000 00000000 00000000 050d3c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592415] xhci_hcd 0000:05:00.0: @3781e190 00000000 00000000 00000000 050d3c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592417] xhci_hcd 0000:05:00.0: @3781e1a0 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592420] xhci_hcd 0000:05:00.0: @3781e1b0 00000000 00000000 00000000 050f3c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592422] xhci_hcd 0000:05:00.0: @3781e1c0 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592424] xhci_hcd 0000:05:00.0: @3781e1d0 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592427] xhci_hcd 0000:05:00.0: @3781e1e0 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592429] xhci_hcd 0000:05:00.0: @3781e1f0 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592432] xhci_hcd 0000:05:00.0: @3781e200 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592434] xhci_hcd 0000:05:00.0: @3781e210 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592436] xhci_hcd 0000:05:00.0: @3781e220 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592439] xhci_hcd 0000:05:00.0: @3781e230 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592441] xhci_hcd 0000:05:00.0: @3781e240 00000000 00000000 00000000 050f3c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592444] xhci_hcd 0000:05:00.0: @3781e250 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592446] xhci_hcd 0000:05:00.0: @3781e260 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592449] xhci_hcd 0000:05:00.0: @3781e270 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592451] xhci_hcd 0000:05:00.0: @3781e280 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592453] xhci_hcd 0000:05:00.0: @3781e290 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592456] xhci_hcd 0000:05:00.0: @3781e2a0 00000000 00000000 00000000 05033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592458] xhci_hcd 0000:05:00.0: @3781e2b0 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592461] xhci_hcd 0000:05:00.0: @3781e2c0 37950000 00000000 00000000 05003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592463] xhci_hcd 0000:05:00.0: @3781e2d0 00000000 00000000 00000000 050f3c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592465] xhci_hcd 0000:05:00.0: @3781e2e0 00000000 00000000 00000000 05002800
Aug 17 13:16:54 xanatos kernel: [ 5754.592468] xhci_hcd 0000:05:00.0: @3781e2f0 00000000 00000000 00000000 03033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592470] xhci_hcd 0000:05:00.0: @3781e300 00000000 00000000 00000000 03002800
Aug 17 13:16:54 xanatos kernel: [ 5754.592473] xhci_hcd 0000:05:00.0: @3781e310 00000000 00000000 00000000 04002800
Aug 17 13:16:54 xanatos kernel: [ 5754.592475] xhci_hcd 0000:05:00.0: @3781e320 00000000 00000000 00000000 02033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592477] xhci_hcd 0000:05:00.0: @3781e330 00000000 00000000 00000000 02002800
Aug 17 13:16:54 xanatos kernel: [ 5754.592480] xhci_hcd 0000:05:00.0: @3781e340 00000000 00000000 00000000 01033800
Aug 17 13:16:54 xanatos kernel: [ 5754.592482] xhci_hcd 0000:05:00.0: @3781e350 a0c74131 00000000 00000000 01034000
Aug 17 13:16:54 xanatos kernel: [ 5754.592485] xhci_hcd 0000:05:00.0: @3781e360 00000000 00000000 00000000 01033c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592487] xhci_hcd 0000:05:00.0: @3781e370 00000000 00000000 00000000 01002800
Aug 17 13:16:54 xanatos kernel: [ 5754.592489] xhci_hcd 0000:05:00.0: @3781e380 00000000 00000000 00000000 00002400
Aug 17 13:16:54 xanatos kernel: [ 5754.592492] xhci_hcd 0000:05:00.0: @3781e390 37950000 00000000 00000000 01002c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592494] xhci_hcd 0000:05:00.0: @3781e3a0 37950000 00000000 00000000 01003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592497] xhci_hcd 0000:05:00.0: @3781e3b0 37a26000 00000000 00000000 01003000
Aug 17 13:16:54 xanatos kernel: [ 5754.592499] xhci_hcd 0000:05:00.0: @3781e3c0 00000000 00000000 00000000 00002400
Aug 17 13:16:54 xanatos kernel: [ 5754.592502] xhci_hcd 0000:05:00.0: @3781e3d0 00000000 00000000 00000000 02004400
Aug 17 13:16:54 xanatos kernel: [ 5754.592504] xhci_hcd 0000:05:00.0: @3781e3e0 378d5000 00000000 00000000 02002c00
Aug 17 13:16:54 xanatos kernel: [ 5754.592507] xhci_hcd 0000:05:00.0: @3781e3f0 3781e000 00000000 00000000 00001802
Aug 17 13:16:54 xanatos kernel: [ 5754.592509] xhci_hcd 0000:05:00.0: Ring deq = ffff88003781e100 (virt), 0x3781e100 (dma)
Aug 17 13:16:54 xanatos kernel: [ 5754.592511] xhci_hcd 0000:05:00.0: Ring deq updated 268 times
Aug 17 13:16:54 xanatos kernel: [ 5754.592514] xhci_hcd 0000:05:00.0: Ring enq = ffff88003781e100 (virt), 0x3781e100 (dma)
Aug 17 13:16:54 xanatos kernel: [ 5754.592516] xhci_hcd 0000:05:00.0: Ring enq updated 268 times
Aug 17 13:16:54 xanatos kernel: [ 5754.592524] xhci_hcd 0000:05:00.0: // xHC command ring deq ptr low bits + flags = @00000008
Aug 17 13:16:54 xanatos kernel: [ 5754.592526] xhci_hcd 0000:05:00.0: // xHC command ring deq ptr high bits = @00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592529] xhci_hcd 0000:05:00.0: Dev 1 endpoint ring 0:
Aug 17 13:16:54 xanatos kernel: [ 5754.592532] xhci_hcd 0000:05:00.0: @37b7e800 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592534] xhci_hcd 0000:05:00.0: @37b7e810 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592537] xhci_hcd 0000:05:00.0: @37b7e820 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592539] xhci_hcd 0000:05:00.0: @37b7e830 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592541] xhci_hcd 0000:05:00.0: @37b7e840 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592544] xhci_hcd 0000:05:00.0: @37b7e850 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592546] xhci_hcd 0000:05:00.0: @37b7e860 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592549] xhci_hcd 0000:05:00.0: @37b7e870 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592551] xhci_hcd 0000:05:00.0: @37b7e880 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592554] xhci_hcd 0000:05:00.0: @37b7e890 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592556] xhci_hcd 0000:05:00.0: @37b7e8a0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592559] xhci_hcd 0000:05:00.0: @37b7e8b0 00040323 00000001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592561] xhci_hcd 0000:05:00.0: @37b7e8c0 00000000 00000000 00000000 00011020
Aug 17 13:16:54 xanatos kernel: [ 5754.592563] xhci_hcd 0000:05:00.0: @37b7e8d0 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592566] xhci_hcd 0000:05:00.0: @37b7e8e0 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592568] xhci_hcd 0000:05:00.0: @37b7e8f0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592571] xhci_hcd 0000:05:00.0: @37b7e900 00140123 00000001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592573] xhci_hcd 0000:05:00.0: @37b7e910 00000000 00000000 00000000 00011020
Aug 17 13:16:54 xanatos kernel: [ 5754.592576] xhci_hcd 0000:05:00.0: @37b7e920 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592578] xhci_hcd 0000:05:00.0: @37b7e930 37150d48 00000001 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592580] xhci_hcd 0000:05:00.0: @37b7e940 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592583] xhci_hcd 0000:05:00.0: @37b7e950 03000680 00ff0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592585] xhci_hcd 0000:05:00.0: @37b7e960 9938b000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592588] xhci_hcd 0000:05:00.0: @37b7e970 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592590] xhci_hcd 0000:05:00.0: @37b7e980 03010680 00ff0409 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592593] xhci_hcd 0000:05:00.0: @37b7e990 9938b000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592595] xhci_hcd 0000:05:00.0: @37b7e9a0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592598] xhci_hcd 0000:05:00.0: @37b7e9b0 03000680 00ff0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592600] xhci_hcd 0000:05:00.0: @37b7e9c0 9938b000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592603] xhci_hcd 0000:05:00.0: @37b7e9d0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592605] xhci_hcd 0000:05:00.0: @37b7e9e0 03020680 00ff0409 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592608] xhci_hcd 0000:05:00.0: @37b7e9f0 9938b000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592610] xhci_hcd 0000:05:00.0: @37b7ea00 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592612] xhci_hcd 0000:05:00.0: @37b7ea10 290006a0 000d0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592615] xhci_hcd 0000:05:00.0: @37b7ea20 3788e000 00000000 0000000d 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592618] xhci_hcd 0000:05:00.0: @37b7ea30 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592620] xhci_hcd 0000:05:00.0: @37b7ea40 06000680 000a0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592622] xhci_hcd 0000:05:00.0: @37b7ea50 3788e000 00000000 0000000a 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592625] xhci_hcd 0000:05:00.0: @37b7ea60 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592627] xhci_hcd 0000:05:00.0: @37b7ea70 0a000680 00040000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592630] xhci_hcd 0000:05:00.0: @37b7ea80 3788e000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592632] xhci_hcd 0000:05:00.0: @37b7ea90 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592635] xhci_hcd 0000:05:00.0: @37b7eaa0 00000080 00020000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592637] xhci_hcd 0000:05:00.0: @37b7eab0 3788e000 00000000 00000002 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592640] xhci_hcd 0000:05:00.0: @37b7eac0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592642] xhci_hcd 0000:05:00.0: @37b7ead0 000000a3 00040002 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592645] xhci_hcd 0000:05:00.0: @37b7eae0 37150d48 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592647] xhci_hcd 0000:05:00.0: @37b7eaf0 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592650] xhci_hcd 0000:05:00.0: @37b7eb00 000000a3 00040003 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592652] xhci_hcd 0000:05:00.0: @37b7eb10 37150d48 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592655] xhci_hcd 0000:05:00.0: @37b7eb20 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592657] xhci_hcd 0000:05:00.0: @37b7eb30 000000a3 00040004 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592659] xhci_hcd 0000:05:00.0: @37b7eb40 37150d48 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592662] xhci_hcd 0000:05:00.0: @37b7eb50 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592664] xhci_hcd 0000:05:00.0: @37b7eb60 000000a3 00040001 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592667] xhci_hcd 0000:05:00.0: @37b7eb70 37150d48 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592669] xhci_hcd 0000:05:00.0: @37b7eb80 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592672] xhci_hcd 0000:05:00.0: @37b7eb90 00100123 00000001 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592674] xhci_hcd 0000:05:00.0: @37b7eba0 00000000 00000000 00000000 00011021
Aug 17 13:16:54 xanatos kernel: [ 5754.592676] xhci_hcd 0000:05:00.0: @37b7ebb0 000000a3 00040001 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592679] xhci_hcd 0000:05:00.0: @37b7ebc0 37150d48 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592681] xhci_hcd 0000:05:00.0: @37b7ebd0 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592684] xhci_hcd 0000:05:00.0: @37b7ebe0 000000a3 00040001 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592686] xhci_hcd 0000:05:00.0: @37b7ebf0 37b7e800 00000000 00000000 00001803
Aug 17 13:16:54 xanatos kernel: [ 5754.592689] xhci_hcd 0000:05:00.0: Dev 1 endpoint ring 2:
Aug 17 13:16:54 xanatos kernel: [ 5754.592691] xhci_hcd 0000:05:00.0: @37b7e000 37150cf0 00000001 00000002 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.592694] xhci_hcd 0000:05:00.0: @37b7e010 37150cf0 00000001 00000002 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.592696] xhci_hcd 0000:05:00.0: @37b7e020 37150cf0 00000001 00000002 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.592698] xhci_hcd 0000:05:00.0: @37b7e030 37150cf0 00000001 00000002 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.592701] xhci_hcd 0000:05:00.0: @37b7e040 37150cf0 00000001 00000002 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.592703] xhci_hcd 0000:05:00.0: @37b7e050 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592706] xhci_hcd 0000:05:00.0: @37b7e060 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592708] xhci_hcd 0000:05:00.0: @37b7e070 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592710] xhci_hcd 0000:05:00.0: @37b7e080 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592713] xhci_hcd 0000:05:00.0: @37b7e090 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592715] xhci_hcd 0000:05:00.0: @37b7e0a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592717] xhci_hcd 0000:05:00.0: @37b7e0b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592720] xhci_hcd 0000:05:00.0: @37b7e0c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592722] xhci_hcd 0000:05:00.0: @37b7e0d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592724] xhci_hcd 0000:05:00.0: @37b7e0e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592727] xhci_hcd 0000:05:00.0: @37b7e0f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592729] xhci_hcd 0000:05:00.0: @37b7e100 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592731] xhci_hcd 0000:05:00.0: @37b7e110 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592734] xhci_hcd 0000:05:00.0: @37b7e120 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592736] xhci_hcd 0000:05:00.0: @37b7e130 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592738] xhci_hcd 0000:05:00.0: @37b7e140 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592741] xhci_hcd 0000:05:00.0: @37b7e150 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592743] xhci_hcd 0000:05:00.0: @37b7e160 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592745] xhci_hcd 0000:05:00.0: @37b7e170 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592748] xhci_hcd 0000:05:00.0: @37b7e180 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592750] xhci_hcd 0000:05:00.0: @37b7e190 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592752] xhci_hcd 0000:05:00.0: @37b7e1a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592755] xhci_hcd 0000:05:00.0: @37b7e1b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592757] xhci_hcd 0000:05:00.0: @37b7e1c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592760] xhci_hcd 0000:05:00.0: @37b7e1d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592762] xhci_hcd 0000:05:00.0: @37b7e1e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592764] xhci_hcd 0000:05:00.0: @37b7e1f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592767] xhci_hcd 0000:05:00.0: @37b7e200 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592769] xhci_hcd 0000:05:00.0: @37b7e210 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592771] xhci_hcd 0000:05:00.0: @37b7e220 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592774] xhci_hcd 0000:05:00.0: @37b7e230 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592776] xhci_hcd 0000:05:00.0: @37b7e240 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592778] xhci_hcd 0000:05:00.0: @37b7e250 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592780] xhci_hcd 0000:05:00.0: @37b7e260 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592783] xhci_hcd 0000:05:00.0: @37b7e270 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592785] xhci_hcd 0000:05:00.0: @37b7e280 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592787] xhci_hcd 0000:05:00.0: @37b7e290 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592790] xhci_hcd 0000:05:00.0: @37b7e2a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592792] xhci_hcd 0000:05:00.0: @37b7e2b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592794] xhci_hcd 0000:05:00.0: @37b7e2c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592797] xhci_hcd 0000:05:00.0: @37b7e2d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592799] xhci_hcd 0000:05:00.0: @37b7e2e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592801] xhci_hcd 0000:05:00.0: @37b7e2f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592804] xhci_hcd 0000:05:00.0: @37b7e300 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592806] xhci_hcd 0000:05:00.0: @37b7e310 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592808] xhci_hcd 0000:05:00.0: @37b7e320 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592811] xhci_hcd 0000:05:00.0: @37b7e330 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592813] xhci_hcd 0000:05:00.0: @37b7e340 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592815] xhci_hcd 0000:05:00.0: @37b7e350 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592818] xhci_hcd 0000:05:00.0: @37b7e360 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592820] xhci_hcd 0000:05:00.0: @37b7e370 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592822] xhci_hcd 0000:05:00.0: @37b7e380 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592825] xhci_hcd 0000:05:00.0: @37b7e390 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592827] xhci_hcd 0000:05:00.0: @37b7e3a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592829] xhci_hcd 0000:05:00.0: @37b7e3b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592832] xhci_hcd 0000:05:00.0: @37b7e3c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592834] xhci_hcd 0000:05:00.0: @37b7e3d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592836] xhci_hcd 0000:05:00.0: @37b7e3e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.592839] xhci_hcd 0000:05:00.0: @37b7e3f0 37b7e000 00000000 00000000 00001802
Aug 17 13:16:54 xanatos kernel: [ 5754.592842] xhci_hcd 0000:05:00.0: Dev 2 endpoint ring 0:
Aug 17 13:16:54 xanatos kernel: [ 5754.592845] xhci_hcd 0000:05:00.0: @37b7e400 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592847] xhci_hcd 0000:05:00.0: @37b7e410 000000a3 00040003 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592850] xhci_hcd 0000:05:00.0: @37b7e420 37a22000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592852] xhci_hcd 0000:05:00.0: @37b7e430 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592854] xhci_hcd 0000:05:00.0: @37b7e440 000000a3 00040004 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592857] xhci_hcd 0000:05:00.0: @37b7e450 37a22000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592859] xhci_hcd 0000:05:00.0: @37b7e460 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592862] xhci_hcd 0000:05:00.0: @37b7e470 06000680 000a0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592864] xhci_hcd 0000:05:00.0: @37b7e480 37a22000 00000000 0000000a 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592867] xhci_hcd 0000:05:00.0: @37b7e490 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592869] xhci_hcd 0000:05:00.0: @37b7e4a0 0a000680 00040000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592872] xhci_hcd 0000:05:00.0: @37b7e4b0 37a22000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592874] xhci_hcd 0000:05:00.0: @37b7e4c0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592877] xhci_hcd 0000:05:00.0: @37b7e4d0 00000080 00020000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592879] xhci_hcd 0000:05:00.0: @37b7e4e0 37a22000 00000000 00000002 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592881] xhci_hcd 0000:05:00.0: @37b7e4f0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592884] xhci_hcd 0000:05:00.0: @37b7e500 03000680 00ff0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592886] xhci_hcd 0000:05:00.0: @37b7e510 37b6c000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592889] xhci_hcd 0000:05:00.0: @37b7e520 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592891] xhci_hcd 0000:05:00.0: @37b7e530 03010680 00ff0409 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592894] xhci_hcd 0000:05:00.0: @37b7e540 37b6c000 00000000 000000ff 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592896] xhci_hcd 0000:05:00.0: @37b7e550 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592899] xhci_hcd 0000:05:00.0: @37b7e560 290006a0 000d0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592901] xhci_hcd 0000:05:00.0: @37b7e570 a0ec7000 00000000 0000000d 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592904] xhci_hcd 0000:05:00.0: @37b7e580 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592906] xhci_hcd 0000:05:00.0: @37b7e590 000000a3 00040001 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592908] xhci_hcd 0000:05:00.0: @37b7e5a0 a0ec7000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592911] xhci_hcd 0000:05:00.0: @37b7e5b0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592913] xhci_hcd 0000:05:00.0: @37b7e5c0 000000a3 00040002 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592916] xhci_hcd 0000:05:00.0: @37b7e5d0 a0ec7000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592918] xhci_hcd 0000:05:00.0: @37b7e5e0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592921] xhci_hcd 0000:05:00.0: @37b7e5f0 000000a3 00040003 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592923] xhci_hcd 0000:05:00.0: @37b7e600 a0ec7000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592925] xhci_hcd 0000:05:00.0: @37b7e610 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592928] xhci_hcd 0000:05:00.0: @37b7e620 000000a3 00040004 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592930] xhci_hcd 0000:05:00.0: @37b7e630 a0ec7000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592933] xhci_hcd 0000:05:00.0: @37b7e640 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592935] xhci_hcd 0000:05:00.0: @37b7e650 06000680 000a0000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592938] xhci_hcd 0000:05:00.0: @37b7e660 a0ec7000 00000000 0000000a 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592940] xhci_hcd 0000:05:00.0: @37b7e670 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592943] xhci_hcd 0000:05:00.0: @37b7e680 0a000680 00040000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592945] xhci_hcd 0000:05:00.0: @37b7e690 a0ec7000 00000000 00000004 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592948] xhci_hcd 0000:05:00.0: @37b7e6a0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592950] xhci_hcd 0000:05:00.0: @37b7e6b0 00000080 00020000 00000008 00000840
Aug 17 13:16:54 xanatos kernel: [ 5754.592952] xhci_hcd 0000:05:00.0: @37b7e6c0 a0ec7000 00000000 00000002 00010c04
Aug 17 13:16:54 xanatos kernel: [ 5754.592955] xhci_hcd 0000:05:00.0: @37b7e6d0 00000000 00000000 00000000 00001020
Aug 17 13:16:54 xanatos kernel: [ 5754.592957] xhci_hcd 0000:05:00.0: @37b7e6e0 000000a3 00040004 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592960] xhci_hcd 0000:05:00.0: @37b7e6f0 37150ef0 00000001 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592962] xhci_hcd 0000:05:00.0: @37b7e700 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592965] xhci_hcd 0000:05:00.0: @37b7e710 03000680 00ff0000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592967] xhci_hcd 0000:05:00.0: @37b7e720 37a22000 00000000 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592970] xhci_hcd 0000:05:00.0: @37b7e730 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592972] xhci_hcd 0000:05:00.0: @37b7e740 03010680 00ff0409 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592975] xhci_hcd 0000:05:00.0: @37b7e750 37a22000 00000000 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592977] xhci_hcd 0000:05:00.0: @37b7e760 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592980] xhci_hcd 0000:05:00.0: @37b7e770 290006a0 000d0000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592982] xhci_hcd 0000:05:00.0: @37b7e780 37a22000 00000000 0000000d 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592985] xhci_hcd 0000:05:00.0: @37b7e790 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592987] xhci_hcd 0000:05:00.0: @37b7e7a0 000000a3 00040001 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592990] xhci_hcd 0000:05:00.0: @37b7e7b0 37a22000 00000000 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592992] xhci_hcd 0000:05:00.0: @37b7e7c0 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.592994] xhci_hcd 0000:05:00.0: @37b7e7d0 000000a3 00040002 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.592997] xhci_hcd 0000:05:00.0: @37b7e7e0 37a22000 00000000 00000004 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.592999] xhci_hcd 0000:05:00.0: @37b7e7f0 37b7e400 00000000 00000000 00001803
Aug 17 13:16:54 xanatos kernel: [ 5754.593002] xhci_hcd 0000:05:00.0: Dev 2 endpoint ring 2:
Aug 17 13:16:54 xanatos kernel: [ 5754.593004] xhci_hcd 0000:05:00.0: @37832000 37150d90 00000001 00000001 00000425
Aug 17 13:16:54 xanatos kernel: [ 5754.593006] xhci_hcd 0000:05:00.0: @37832010 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593009] xhci_hcd 0000:05:00.0: @37832020 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593011] xhci_hcd 0000:05:00.0: @37832030 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593013] xhci_hcd 0000:05:00.0: @37832040 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593016] xhci_hcd 0000:05:00.0: @37832050 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593018] xhci_hcd 0000:05:00.0: @37832060 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593020] xhci_hcd 0000:05:00.0: @37832070 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593023] xhci_hcd 0000:05:00.0: @37832080 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593025] xhci_hcd 0000:05:00.0: @37832090 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593027] xhci_hcd 0000:05:00.0: @378320a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593030] xhci_hcd 0000:05:00.0: @378320b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593032] xhci_hcd 0000:05:00.0: @378320c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593034] xhci_hcd 0000:05:00.0: @378320d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593037] xhci_hcd 0000:05:00.0: @378320e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593039] xhci_hcd 0000:05:00.0: @378320f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593041] xhci_hcd 0000:05:00.0: @37832100 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593044] xhci_hcd 0000:05:00.0: @37832110 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593046] xhci_hcd 0000:05:00.0: @37832120 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593048] xhci_hcd 0000:05:00.0: @37832130 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593051] xhci_hcd 0000:05:00.0: @37832140 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593053] xhci_hcd 0000:05:00.0: @37832150 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593055] xhci_hcd 0000:05:00.0: @37832160 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593058] xhci_hcd 0000:05:00.0: @37832170 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593060] xhci_hcd 0000:05:00.0: @37832180 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593062] xhci_hcd 0000:05:00.0: @37832190 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593065] xhci_hcd 0000:05:00.0: @378321a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593067] xhci_hcd 0000:05:00.0: @378321b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593069] xhci_hcd 0000:05:00.0: @378321c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593072] xhci_hcd 0000:05:00.0: @378321d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593074] xhci_hcd 0000:05:00.0: @378321e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593076] xhci_hcd 0000:05:00.0: @378321f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593079] xhci_hcd 0000:05:00.0: @37832200 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593081] xhci_hcd 0000:05:00.0: @37832210 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593083] xhci_hcd 0000:05:00.0: @37832220 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593086] xhci_hcd 0000:05:00.0: @37832230 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593088] xhci_hcd 0000:05:00.0: @37832240 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593090] xhci_hcd 0000:05:00.0: @37832250 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593093] xhci_hcd 0000:05:00.0: @37832260 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593095] xhci_hcd 0000:05:00.0: @37832270 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593097] xhci_hcd 0000:05:00.0: @37832280 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593100] xhci_hcd 0000:05:00.0: @37832290 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593102] xhci_hcd 0000:05:00.0: @378322a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593104] xhci_hcd 0000:05:00.0: @378322b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593107] xhci_hcd 0000:05:00.0: @378322c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593109] xhci_hcd 0000:05:00.0: @378322d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593111] xhci_hcd 0000:05:00.0: @378322e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593114] xhci_hcd 0000:05:00.0: @378322f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593116] xhci_hcd 0000:05:00.0: @37832300 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593118] xhci_hcd 0000:05:00.0: @37832310 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593121] xhci_hcd 0000:05:00.0: @37832320 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593123] xhci_hcd 0000:05:00.0: @37832330 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593125] xhci_hcd 0000:05:00.0: @37832340 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593128] xhci_hcd 0000:05:00.0: @37832350 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593130] xhci_hcd 0000:05:00.0: @37832360 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593132] xhci_hcd 0000:05:00.0: @37832370 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593135] xhci_hcd 0000:05:00.0: @37832380 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593137] xhci_hcd 0000:05:00.0: @37832390 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593139] xhci_hcd 0000:05:00.0: @378323a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593142] xhci_hcd 0000:05:00.0: @378323b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593144] xhci_hcd 0000:05:00.0: @378323c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593146] xhci_hcd 0000:05:00.0: @378323d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593149] xhci_hcd 0000:05:00.0: @378323e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593151] xhci_hcd 0000:05:00.0: @378323f0 37832000 00000000 00000000 00001802
Aug 17 13:16:54 xanatos kernel: [ 5754.593154] xhci_hcd 0000:05:00.0: Dev 3 endpoint ring 0:
Aug 17 13:16:54 xanatos kernel: [ 5754.593157] xhci_hcd 0000:05:00.0: @37832400 01000680 00080000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593159] xhci_hcd 0000:05:00.0: @37832410 0480bba0 00000001 00000008 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593162] xhci_hcd 0000:05:00.0: @37832420 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593164] xhci_hcd 0000:05:00.0: @37832430 01000680 00120000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593167] xhci_hcd 0000:05:00.0: @37832440 37984d40 00000000 00000012 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593169] xhci_hcd 0000:05:00.0: @37832450 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593172] xhci_hcd 0000:05:00.0: @37832460 02000680 00090000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593174] xhci_hcd 0000:05:00.0: @37832470 2a850b50 00000001 00000009 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593176] xhci_hcd 0000:05:00.0: @37832480 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593179] xhci_hcd 0000:05:00.0: @37832490 02000680 002c0000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593181] xhci_hcd 0000:05:00.0: @378324a0 379e9040 00000000 0000002c 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593184] xhci_hcd 0000:05:00.0: @378324b0 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593186] xhci_hcd 0000:05:00.0: @378324c0 03000680 00ff0000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593189] xhci_hcd 0000:05:00.0: @378324d0 2ad72b00 00000001 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593191] xhci_hcd 0000:05:00.0: @378324e0 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593194] xhci_hcd 0000:05:00.0: @378324f0 03030680 00ff0409 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593196] xhci_hcd 0000:05:00.0: @37832500 2ad72b00 00000001 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593199] xhci_hcd 0000:05:00.0: @37832510 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593201] xhci_hcd 0000:05:00.0: @37832520 03020680 00ff0409 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593204] xhci_hcd 0000:05:00.0: @37832530 2ad72b00 00000001 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593206] xhci_hcd 0000:05:00.0: @37832540 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593209] xhci_hcd 0000:05:00.0: @37832550 03010680 00ff0409 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593211] xhci_hcd 0000:05:00.0: @37832560 37af0300 00000000 000000ff 00010c05
Aug 17 13:16:54 xanatos kernel: [ 5754.593214] xhci_hcd 0000:05:00.0: @37832570 00000000 00000000 00000000 00001021
Aug 17 13:16:54 xanatos kernel: [ 5754.593216] xhci_hcd 0000:05:00.0: @37832580 00010900 00000000 00000008 00000841
Aug 17 13:16:54 xanatos kernel: [ 5754.593218] xhci_hcd 0000:05:00.0: @37832590 00000000 00000000 00000000 00011021
Aug 17 13:16:54 xanatos kernel: [ 5754.593221] xhci_hcd 0000:05:00.0: @378325a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593223] xhci_hcd 0000:05:00.0: @378325b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593226] xhci_hcd 0000:05:00.0: @378325c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593228] xhci_hcd 0000:05:00.0: @378325d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593230] xhci_hcd 0000:05:00.0: @378325e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593233] xhci_hcd 0000:05:00.0: @378325f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593235] xhci_hcd 0000:05:00.0: @37832600 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593237] xhci_hcd 0000:05:00.0: @37832610 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593239] xhci_hcd 0000:05:00.0: @37832620 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593242] xhci_hcd 0000:05:00.0: @37832630 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593244] xhci_hcd 0000:05:00.0: @37832640 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593246] xhci_hcd 0000:05:00.0: @37832650 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593249] xhci_hcd 0000:05:00.0: @37832660 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593251] xhci_hcd 0000:05:00.0: @37832670 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593253] xhci_hcd 0000:05:00.0: @37832680 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593256] xhci_hcd 0000:05:00.0: @37832690 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593258] xhci_hcd 0000:05:00.0: @378326a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593260] xhci_hcd 0000:05:00.0: @378326b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593263] xhci_hcd 0000:05:00.0: @378326c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593265] xhci_hcd 0000:05:00.0: @378326d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593267] xhci_hcd 0000:05:00.0: @378326e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593270] xhci_hcd 0000:05:00.0: @378326f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593272] xhci_hcd 0000:05:00.0: @37832700 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593274] xhci_hcd 0000:05:00.0: @37832710 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593277] xhci_hcd 0000:05:00.0: @37832720 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593279] xhci_hcd 0000:05:00.0: @37832730 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593281] xhci_hcd 0000:05:00.0: @37832740 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593284] xhci_hcd 0000:05:00.0: @37832750 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593286] xhci_hcd 0000:05:00.0: @37832760 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593288] xhci_hcd 0000:05:00.0: @37832770 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593291] xhci_hcd 0000:05:00.0: @37832780 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593293] xhci_hcd 0000:05:00.0: @37832790 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593295] xhci_hcd 0000:05:00.0: @378327a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593298] xhci_hcd 0000:05:00.0: @378327b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593300] xhci_hcd 0000:05:00.0: @378327c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593303] xhci_hcd 0000:05:00.0: @378327d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593305] xhci_hcd 0000:05:00.0: @378327e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593307] xhci_hcd 0000:05:00.0: @378327f0 37832400 00000000 00000000 00001802
Aug 17 13:16:54 xanatos kernel: [ 5754.593310] xhci_hcd 0000:05:00.0: Dev 3 endpoint ring 2:
Aug 17 13:16:54 xanatos kernel: [ 5754.593312] xhci_hcd 0000:05:00.0: @37832800 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593315] xhci_hcd 0000:05:00.0: @37832810 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593317] xhci_hcd 0000:05:00.0: @37832820 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593319] xhci_hcd 0000:05:00.0: @37832830 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593322] xhci_hcd 0000:05:00.0: @37832840 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593324] xhci_hcd 0000:05:00.0: @37832850 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593326] xhci_hcd 0000:05:00.0: @37832860 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593329] xhci_hcd 0000:05:00.0: @37832870 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593331] xhci_hcd 0000:05:00.0: @37832880 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593334] xhci_hcd 0000:05:00.0: @37832890 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593336] xhci_hcd 0000:05:00.0: @378328a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593338] xhci_hcd 0000:05:00.0: @378328b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593341] xhci_hcd 0000:05:00.0: @378328c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593343] xhci_hcd 0000:05:00.0: @378328d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593345] xhci_hcd 0000:05:00.0: @378328e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593348] xhci_hcd 0000:05:00.0: @378328f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593350] xhci_hcd 0000:05:00.0: @37832900 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593352] xhci_hcd 0000:05:00.0: @37832910 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593355] xhci_hcd 0000:05:00.0: @37832920 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593357] xhci_hcd 0000:05:00.0: @37832930 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593359] xhci_hcd 0000:05:00.0: @37832940 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593362] xhci_hcd 0000:05:00.0: @37832950 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593364] xhci_hcd 0000:05:00.0: @37832960 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593366] xhci_hcd 0000:05:00.0: @37832970 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593369] xhci_hcd 0000:05:00.0: @37832980 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593371] xhci_hcd 0000:05:00.0: @37832990 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593373] xhci_hcd 0000:05:00.0: @378329a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593376] xhci_hcd 0000:05:00.0: @378329b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593378] xhci_hcd 0000:05:00.0: @378329c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593380] xhci_hcd 0000:05:00.0: @378329d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593383] xhci_hcd 0000:05:00.0: @378329e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593385] xhci_hcd 0000:05:00.0: @378329f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593387] xhci_hcd 0000:05:00.0: @37832a00 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593390] xhci_hcd 0000:05:00.0: @37832a10 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593392] xhci_hcd 0000:05:00.0: @37832a20 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593394] xhci_hcd 0000:05:00.0: @37832a30 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593397] xhci_hcd 0000:05:00.0: @37832a40 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593399] xhci_hcd 0000:05:00.0: @37832a50 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593401] xhci_hcd 0000:05:00.0: @37832a60 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593404] xhci_hcd 0000:05:00.0: @37832a70 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593406] xhci_hcd 0000:05:00.0: @37832a80 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593409] xhci_hcd 0000:05:00.0: @37832a90 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593411] xhci_hcd 0000:05:00.0: @37832aa0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593413] xhci_hcd 0000:05:00.0: @37832ab0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593416] xhci_hcd 0000:05:00.0: @37832ac0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593418] xhci_hcd 0000:05:00.0: @37832ad0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593421] xhci_hcd 0000:05:00.0: @37832ae0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593423] xhci_hcd 0000:05:00.0: @37832af0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593425] xhci_hcd 0000:05:00.0: @37832b00 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593428] xhci_hcd 0000:05:00.0: @37832b10 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593430] xhci_hcd 0000:05:00.0: @37832b20 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593432] xhci_hcd 0000:05:00.0: @37832b30 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593435] xhci_hcd 0000:05:00.0: @37832b40 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593437] xhci_hcd 0000:05:00.0: @37832b50 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593439] xhci_hcd 0000:05:00.0: @37832b60 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593442] xhci_hcd 0000:05:00.0: @37832b70 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593444] xhci_hcd 0000:05:00.0: @37832b80 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593446] xhci_hcd 0000:05:00.0: @37832b90 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593449] xhci_hcd 0000:05:00.0: @37832ba0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593451] xhci_hcd 0000:05:00.0: @37832bb0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593453] xhci_hcd 0000:05:00.0: @37832bc0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593456] xhci_hcd 0000:05:00.0: @37832bd0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593458] xhci_hcd 0000:05:00.0: @37832be0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593461] xhci_hcd 0000:05:00.0: @37832bf0 37832800 00000000 00000000 00001802
Aug 17 13:16:54 xanatos kernel: [ 5754.593463] xhci_hcd 0000:05:00.0: Dev 3 endpoint ring 3:
Aug 17 13:16:54 xanatos kernel: [ 5754.593465] xhci_hcd 0000:05:00.0: @9927d400 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593468] xhci_hcd 0000:05:00.0: @9927d410 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593470] xhci_hcd 0000:05:00.0: @9927d420 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593472] xhci_hcd 0000:05:00.0: @9927d430 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593475] xhci_hcd 0000:05:00.0: @9927d440 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593477] xhci_hcd 0000:05:00.0: @9927d450 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593479] xhci_hcd 0000:05:00.0: @9927d460 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593482] xhci_hcd 0000:05:00.0: @9927d470 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593484] xhci_hcd 0000:05:00.0: @9927d480 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593486] xhci_hcd 0000:05:00.0: @9927d490 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593489] xhci_hcd 0000:05:00.0: @9927d4a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593491] xhci_hcd 0000:05:00.0: @9927d4b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593493] xhci_hcd 0000:05:00.0: @9927d4c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593496] xhci_hcd 0000:05:00.0: @9927d4d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593498] xhci_hcd 0000:05:00.0: @9927d4e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593500] xhci_hcd 0000:05:00.0: @9927d4f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593503] xhci_hcd 0000:05:00.0: @9927d500 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593505] xhci_hcd 0000:05:00.0: @9927d510 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593507] xhci_hcd 0000:05:00.0: @9927d520 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593510] xhci_hcd 0000:05:00.0: @9927d530 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593512] xhci_hcd 0000:05:00.0: @9927d540 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593514] xhci_hcd 0000:05:00.0: @9927d550 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593517] xhci_hcd 0000:05:00.0: @9927d560 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593519] xhci_hcd 0000:05:00.0: @9927d570 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593522] xhci_hcd 0000:05:00.0: @9927d580 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593524] xhci_hcd 0000:05:00.0: @9927d590 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593526] xhci_hcd 0000:05:00.0: @9927d5a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593529] xhci_hcd 0000:05:00.0: @9927d5b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593531] xhci_hcd 0000:05:00.0: @9927d5c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593533] xhci_hcd 0000:05:00.0: @9927d5d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593536] xhci_hcd 0000:05:00.0: @9927d5e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593538] xhci_hcd 0000:05:00.0: @9927d5f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593540] xhci_hcd 0000:05:00.0: @9927d600 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593543] xhci_hcd 0000:05:00.0: @9927d610 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593545] xhci_hcd 0000:05:00.0: @9927d620 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593548] xhci_hcd 0000:05:00.0: @9927d630 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593550] xhci_hcd 0000:05:00.0: @9927d640 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593552] xhci_hcd 0000:05:00.0: @9927d650 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593555] xhci_hcd 0000:05:00.0: @9927d660 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593557] xhci_hcd 0000:05:00.0: @9927d670 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593559] xhci_hcd 0000:05:00.0: @9927d680 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593562] xhci_hcd 0000:05:00.0: @9927d690 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593564] xhci_hcd 0000:05:00.0: @9927d6a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593566] xhci_hcd 0000:05:00.0: @9927d6b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593569] xhci_hcd 0000:05:00.0: @9927d6c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593571] xhci_hcd 0000:05:00.0: @9927d6d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593573] xhci_hcd 0000:05:00.0: @9927d6e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593576] xhci_hcd 0000:05:00.0: @9927d6f0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593578] xhci_hcd 0000:05:00.0: @9927d700 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593580] xhci_hcd 0000:05:00.0: @9927d710 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593583] xhci_hcd 0000:05:00.0: @9927d720 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593585] xhci_hcd 0000:05:00.0: @9927d730 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593587] xhci_hcd 0000:05:00.0: @9927d740 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593590] xhci_hcd 0000:05:00.0: @9927d750 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593592] xhci_hcd 0000:05:00.0: @9927d760 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593594] xhci_hcd 0000:05:00.0: @9927d770 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593597] xhci_hcd 0000:05:00.0: @9927d780 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593599] xhci_hcd 0000:05:00.0: @9927d790 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593601] xhci_hcd 0000:05:00.0: @9927d7a0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593604] xhci_hcd 0000:05:00.0: @9927d7b0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593606] xhci_hcd 0000:05:00.0: @9927d7c0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593609] xhci_hcd 0000:05:00.0: @9927d7d0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593611] xhci_hcd 0000:05:00.0: @9927d7e0 00000000 00000000 00000000 00000000
Aug 17 13:16:54 xanatos kernel: [ 5754.593613] xhci_hcd 0000:05:00.0: @9927d7f0 9927d400 00000000 00000000 00001802
ffff88012c381600 3629531912 S Ci:9:002:0 s 80 06 0300 0000 00ff 255 <
ffff88012c381600 3629544594 C Ci:9:002:0 0 4 = 04030904
ffff88012c381600 3629544693 S Ci:9:002:0 s 80 06 0301 0409 00ff 255 <
ffff88012c381600 3629559883 C Ci:9:002:0 0 30 = 1e035600 49004100 20004c00 61006200 73002c00 20004900 6e006300 2e00
ffff88012c381600 3629559933 S Ci:9:002:0 s 80 06 0300 0000 00ff 255 <
ffff88012c381600 3629575078 C Ci:9:002:0 0 4 = 04030904
ffff88012c381600 3629575114 S Ci:9:002:0 s 80 06 0302 0409 00ff 255 <
ffff88012c381600 3629590203 C Ci:9:002:0 0 38 = 26033400 2d005000 6f007200 74002000 55005300 42002000 33002e00 30002000
ffff88012c161cc0 3629591912 S Ci:9:002:0 s a0 06 2900 0000 000d 13 <
ffff88012c161cc0 3629595966 C Ci:9:002:0 -32 0
ffff88012c161cc0 3629596107 S Ci:9:002:0 s 80 06 0600 0000 000a 10 <
ffff88012c161cc0 3629601374 C Ci:9:002:0 -32 0
ffff88012c161cc0 3629601387 S Ci:9:002:0 s 80 06 0a00 0000 0004 4 <
ffff88012c161cc0 3629607001 C Ci:9:002:0 -32 0
ffff88012c161cc0 3629609571 S Ci:9:002:0 s 80 00 0000 0000 0002 2 <
ffff88012c161cc0 3629612840 C Ci:9:002:0 0 2 = 0100
Bus 009 Device 003: ID 2109:0810  
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3 
  bMaxPacketSize0         9
  idVendor           0x2109 
  idProduct          0x0810 
  bcdDevice           73.73
  iManufacturer           1 VIA Labs, Inc.
  iProduct                2 4-Port USB 3.0 Hub
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xc0
      Self Powered
    MaxPower                2mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes           19
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Feedback
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval              16
        ** UNRECOGNIZED:  06 30 00 00 02 00
Device Status:     0x0001
  Self Powered

[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux