how to enable the usb 3.0 otg

Hi,

We designed a carrier board which has a usb 3.0 micro-b connector, we use b55 as a usb otg id pin and the vbus of it connect with power directly.

My question is that when I connect with a device by usb 2.0 micro-b, it works fine as a host or slave. But when I use usb 3.0 micro-b, it only can act as a host. Is that right ?

TKS,

Hi,
Do you have the USB lane mapping exactly same as Xavier devkit? On Xavier, we only support the config identical Xavier devkit. Please check oem design guide.
https://developer.nvidia.com/embedded/dlc/jetson-xavier-oem-product-designguide

Hi DaneLLL,

Our usb 3.0 micro-b connector used UPHY1 TX/RX (usb3.0) and usb0 (usb2.0), I’ve checked that when I plug usb 3.0 storage it can work as usb 3.0, but if I connect it with computer (device mode), it can only work as usb 2.0, I can’t figure out why. (lsusb shows NVidia Corp on usb 2.0 bus)

Thanks,

Hi evanic.chen,

Did you put correct usb3.0 UPHY to xudc device tree?

Hi WayneWWW,

I’ve check the pair of usb lane in tegra_xudc is correct. phys = < {…usb2-0}>, < {…usb3-2}>;

Thanks,

You may need to share the full device tree with us.

Hi WayneWWW,

In tegra194-p2888-0001-p2822-0000-common.dtsi,

tegra_xudc: xudc@3550000 {
/*
extcon-cables = <&typec_port0 0>;
extcon-cable-names = “vbus”;
#extcon-cells = <1>;
*/
#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
phys = <&{/xusb_padctl@3520000/pads/usb2/lanes/usb2-0}>,
<&{/xusb_padctl@3520000/pads/usb3/lanes/usb3-2}>;
phy-names = “usb2”, “usb3”;
nvidia,xusb-padctl = <&xusb_padctl>;
#endif
status = “okay”;
};

In our dts,

#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
&xusb_padctl {
status = “okay”;

pads {
    usb2 {
        lanes {
            usb2-0 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-1 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-2 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-3 {
                nvidia,function = "xusb";
                status = "okay";
            };
        };
    };
    usb3 {
        lanes {
            usb3-0 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb3-2 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb3-3 {
                nvidia,function = "xusb";
                status = "okay";
            };
        };
    };
};

ports {
    usb2-0 {
        mode = "otg";
        status = "okay";
    };
    usb2-1 {
        mode = "host";
        status = "okay";
    };
    usb2-2 {
        mode = "host";
        status = "okay";
    };
    usb2-3 {
        mode = "host";
        status = "okay";
    };
    usb3-0 {
        nvidia,usb2-companion = <1>;
        status = "okay";
    };
    usb3-2 {
        nvidia,usb2-companion = <0>;
        status = "okay";
    };
    usb3-3 {
        nvidia,usb2-companion = <2>;
        nvidia,usb3-gen1-only= <1>;
        status = "okay";
    };
};

};
#endif

vbus_id_extcon: extcon@1 {
compatible = “extcon-gpio-states”;
extcon-gpio,name = “VBUS_ID”;
extcon-gpio,wait-for-gpio-scan = <0>;

    //gpio state: 0=host, 1=slave. our vbus always on so we do only has 2 situations. Evan, 2019/04/25
    extcon-gpio,cable-states = <0x0 0x2
                                0x1 0x1>;
    gpios = <&tegra_main_gpio TEGRA194_MAIN_GPIO(Q, 0) 0>;

    //extcon.h, EXTCON_NONE=0, EXTCON_USB=1, EXTCON_USB_HOST=2, 2019/04/24, Evan
    extcon-gpio,out-cable-names = <EXTCON_USB EXTCON_USB_HOST EXTCON_NONE>;
    #extcon-cells = <1>;
};

&tegra_xudc {
extcon-cables = <&vbus_id_extcon 0>;
extcon-cable-names = “vbus”;
#extcon-cells = <1>;
};

thanks,

The device tree looks no problem, but it is just partial one. Could you share the full one?

Also, are you sure your host supports usb3.0 root hub? If I understand correctly, you could see similar log as below when you connect device to host, right?

[10743.864728] configfs-gadget gadget: high-speed config #1: c

Hi WayneWWW,

The following is our device tree.

/*
tegra194-p2888-0001-p2822-0001-maxn.dts
Author: Evan, 2019/02/22
*/

#include <dt-bindings/gpio/tegra-gpio.h>

#include “tegra194-p2888-0001-p2822-0000-maxn.dts”
#include “common/tegra19x-jetson_agx_devkit-pinmux.dtsi”
#include “common/tegra19x-jetson_agx_devkit-gpio-default.dtsi”
#include “common/tegra19x-jetson_agx_devkit-padvoltage-default.dtsi”

//#define DEBUG

#ifndef DEBUG
/
{
pcie@14160000 {
status = “okay”;

    vddio-pex-ctl-supply = <&p2888_spmic_sd3>;
    nvidia,disable-aspm-states = <0xf>;
    nvidia,enable-power-down;

    phys = <&p2u_8>, <&p2u_9>;
    phy-names = "pcie-p2u-0", "pcie-p2u-1";
};

//PCIe x16
pcie@141a0000 { 
    status = "okay"; 
};

led {  
    compatible = "gpio-leds";
    gpled1 { 
        label = "LED1"; /* USER_LED1 */
        gpios = <&pca9535_1 10 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };
    gpled2 { 
        label = "LED2"; /* USER_LED2 */
        gpios = <&pca9535_1 11 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };
    gpled3 { 
        label = "LED3"; /* USER_LED3 */
        gpios = <&pca9535_1 12 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };
    gpled4 { 
        label = "LED4"; /* USER_LED4 */
        gpios = <&pca9535_1 13 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };          

    gpled5 { 
        label = "LED5"; /* USER_LED6 */
        gpios = <&pca9535_1 14 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };  

    gpled6 { 
        label = "LED6"; /* USER_LED6 */
        gpios = <&pca9535_1 7 GPIO_ACTIVE_LOW>;
        default-state = "off";
    };       
};

/delete-node/ bluedroid_pm;
/delete-node/ bcmdhd_pcie_wlan;

ether_qos@2490000 {
	phy-handle = <&phy1>;
    mdio { 
        phy1: ethernet-phy@4 {
            reg = <4>;
            interrupt-parent = <&tegra_main_gpio>;
            interrupts = <TEGRA194_MAIN_GPIO(G, 4) IRQ_TYPE_LEVEL_LOW>;
        };
    };
};

vbus_id_extcon: extcon@1 { 
    compatible = "extcon-gpio-states";
    extcon-gpio,name = "VBUS_ID";
    extcon-gpio,wait-for-gpio-scan = <0>;

    //gpio state: 0=host, 1=slave. our vbus always on so we do only has 2 situations. Evan, 2019/04/25
    extcon-gpio,cable-states = <0x0 0x2
                                0x1 0x1>;
    gpios = <&tegra_main_gpio TEGRA194_MAIN_GPIO(Q, 0) 0>;

    //extcon.h, EXTCON_NONE=0, EXTCON_USB=1, EXTCON_USB_HOST=2, 2019/04/24, Evan
    extcon-gpio,out-cable-names = <EXTCON_USB EXTCON_USB_HOST EXTCON_NONE>;
    #extcon-cells = <1>;
};

};

&tegra_pwm1 {
status = “okay”;
};

#if TEGRA_XUSB_PADCONTROL_VERSION >= DT_VERSION_2
&xusb_padctl {
status = “okay”;

pads {
    usb2 {
        lanes {
            usb2-0 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-1 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-2 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb2-3 {
                nvidia,function = "xusb";
                status = "okay";
            };
        };
    };
    usb3 {
        lanes {
            usb3-0 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb3-2 {
                nvidia,function = "xusb";
                status = "okay";
            };
            usb3-3 {
                nvidia,function = "xusb";
                status = "okay";
            };
        };
    };
};

ports {
    usb2-0 {
        mode = "otg";
        status = "okay";
    };
    usb2-1 {
        mode = "host";
        status = "okay";
    };
    usb2-2 {
        mode = "host";
        status = "okay";
    };
    usb2-3 {
        mode = "host";
        status = "okay";
    };
    usb3-0 {
        nvidia,usb2-companion = <1>;
        status = "okay";
    };
    usb3-2 {
        nvidia,usb2-companion = <0>;
        status = "okay";
    };
    usb3-3 {
        nvidia,usb2-companion = <2>;
        nvidia,usb3-gen1-only= <1>;
        status = "okay";
    };
};

};
#endif

&tegra_xhci {
extcon-cables = <&vbus_id_extcon 1>;
extcon-cable-names = “id”;
#extcon-cells = <1>;
};

&tegra_xudc {
extcon-cables = <&vbus_id_extcon 0>;
extcon-cable-names = “vbus”;
#extcon-cells = <1>;
};

&ucsi_ccg {
status = “disabled”;
};

&spi0 {
status = “okay”;

#ifdef SPI0_DEV_TEST
spi0_test: spi0_test@0 {
compatible = “spidev”;
reg = <0x0>;
spi-max-frequency = <0x1312D00>;
nvidia,enable-hw-based-cs;
nvidia,cs-setup-clk-count = <0x1e>;
nvidia,cs-hold-clk-count = <0x1e>;
nvidia,rx-clk-tap-delay = <0x1f>;
nvidia,tx-clk-tap-delau = <0x0>;
};
#endif
};

&spi1 {
status = “okay”;

#ifdef SPI1_DEV_TEST
spi1_test: spi1_test@0 {
compatible = “spidev”;
reg = <0x0>;
spi-max-frequency = <0x1312D00>;
nvidia,enable-hw-based-cs;
nvidia,cs-setup-clk-count = <0x1e>;
nvidia,cs-hold-clk-count = <0x1e>;
nvidia,rx-clk-tap-delay = <0x1f>;
nvidia,tx-clk-tap-delau = <0x0>;
};
#endif
};

&spi2 {
status = “okay”;
slb9670: slb9670{
compatible = “tcg,tpm_tis-spi”;
reg = <0>;
#address-cells = <1>;
#size-cells = <0>;
spi-max-frequency = <5000>;
nvidia,enable-hw-based-cs;
nvidia,cs-setup-clk-count = <0x1e>;
nvidia,cs-hold-clk-count = <0x1e>;
nvidia,rx-clk-tap-delay = <0x1f>;
nvidia,tx-clk-tap-delau = <0x0>;
status = “okay”;
};

#ifdef SPI2_DEV_TEST
spi2_test: spi2_test@0 {
compatible = “spidev”;
reg = <0x0>;
spi-max-frequency = <0x1312D00>;
nvidia,enable-hw-based-cs;
nvidia,cs-setup-clk-count = <0x1e>;
nvidia,cs-hold-clk-count = <0x1e>;
nvidia,rx-clk-tap-delay = <0x1f>;
nvidia,tx-clk-tap-delau = <0x0>;
};
#endif
};

&gen8_i2c {
pca9535_1: gpio@20 {
compatible = “nxp,pca9535”;
reg = <0x20>;
gpio-controller;
interrupt-controller;
#gpio-cells = <2>;
pinctrl-names = “default”;
pinctrl-0 = <>;
#interrupt-cells = <2>;
interrupt-parent = <&tegra_main_gpio>;
interrupts = <TEGRA194_MAIN_GPIO(P, 5) GPIO_ACTIVE_HIGH>;
vcc-supply = <&battery_reg>;
status = “okay”;
};

pca9535_2: gpio@21 {
compatible = “nxp,pca9535”;
reg = <0x21>;
gpio-controller;
interrupt-controller;
#gpio-cells = <2>;
pinctrl-names = “default”;
pinctrl-0 = <>;
#interrupt-cells = <2>;
interrupt-parent = <&tegra_main_gpio>;
interrupts = <TEGRA194_MAIN_GPIO(P, 6) GPIO_ACTIVE_HIGH>;
vcc-supply = <&battery_reg>;
status = “okay”;
};
};
#else

/ {

};

#endif

Thanks,

Could you confirm if your host supports super speed?

Hi WayneWWW,

I am 100% sure the host supports usb 3.0 root hub. (ask me why)
because I use 2 same model of device to connect together. (usb 3.0 micro-b to usb 3.0 type A)

The following is the result of “lsusb -t”

/: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/4p, 10000M
|__ Port 4: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M
/: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=tegra-xusb/4p, 480M
|__ Port 3: Dev 2, If 0, Class=Hub, Driver=hub/5p, 480M
|__ Port 5: Dev 7, If 0, Class=Vendor Specific Class, Driver=, 480M
|__ Port 2: Dev 4, If 6, Class=CDC Data, Driver=cdc_ether, 480M
|__ Port 2: Dev 4, If 4, Class=Mass Storage, Driver=usb-storage, 480M
|__ Port 2: Dev 4, If 2, Class=Communications, Driver=cdc_acm, 480M
|__ Port 2: Dev 4, If 0, Class=Communications, Driver=rndis_host, 480M
|__ Port 2: Dev 4, If 5, Class=Communications, Driver=cdc_ether, 480M
|__ Port 2: Dev 4, If 3, Class=CDC Data, Driver=cdc_acm, 480M
|__ Port 2: Dev 4, If 1, Class=CDC Data, Driver=rndis_host, 480M
|__ Port 4: Dev 3, If 0, Class=Hub, Driver=hub/4p, 480M
|__ Port 1: Dev 5, If 0, Class=Vendor Specific Class, Driver=, 12M
|__ Port 4: Dev 6, If 0, Class=Vendor Specific Class, Driver=ftdi_sio, 480M
|__ Port 4: Dev 6, If 1, Class=Vendor Specific Class, Driver=ftdi_sio, 480M
|__ Port 4: Dev 6, If 2, Class=Vendor Specific Class, Driver=ftdi_sio, 480M
|__ Port 4: Dev 6, If 3, Class=Vendor Specific Class, Driver=ftdi_sio, 480M
/: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 5000M
/: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 480M
|__ Port 4: Dev 2, If 0, Class=Vendor Specific Class, Driver=, 480M

The following is the result of "lsusb"

Bus 004 Device 002: ID 0424:5734 Standard Microsystems Corp.
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 006: ID 0403:6011 Future Technology Devices International, Ltd FT4232H Quad HS USB-UART/FIFO IC
Bus 003 Device 005: ID 144a:0101
Bus 003 Device 003: ID 0424:2514 Standard Microsystems Corp. USB 2.0 Hub
Bus 003 Device 007: ID 0424:2740 Standard Microsystems Corp.
Bus 003 Device 004: ID 0955:7020 NVidia Corp.
Bus 003 Device 002: ID 0424:2734 Standard Microsystems Corp.
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 002: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

As you can see, NVidia Corp are always at usb bus 3 (usb 2.0 hub)

Thanks,

Thanks. We will investigate which part is missing.

Hi,

Please use below command and then dump the dmesg with us. Thanks.

echo 'file tegra_xudc.c +p' > /sys/kernel/debug/dynamic_debug/control
echo 'file xusb-tegra194.c +p' > /sys/kernel/debug/dynamic_debug/control
echo 8 > /proc/sys/kernel/printk

#Additionally, the host kernel log if possible

echo 'module usbcore +p' > /sys/kernel/debug/dynamic_debug/control
echo 'module xhci_hcd +p' > /sys/kernel/debug/dynamic_debug/control
echo 8 > /proc/sys/kernel/printk

Hi WayneWWW,

part of host log:

root@jetson-0424418053570:~# echo ‘module usbcore +p’ > /sys/kernel/debug/dynamic
c_debug/control

root@jetson-0424418053570:~# echo ‘module xhci_hcd +p’ > /sys/kernel/debug/dynami
ic_debug/control

root@jetson-0424418053570:~# [ 258.661296] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1172 bytes untransferred
[ 258.752585] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1662 bytes untransferred
[ 258.770060] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 258.825743] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 258.881133] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 258.936936] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 259.755162] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 259.756253] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 259.827849] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1662 bytes untransferred
[ 259.885720] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 259.919927] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 259.975471] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1172 bytes untransferred
[ 260.125665] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1172 bytes untransferred
[ 260.181476] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1662 bytes untransferred
[ 260.237303] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1444 bytes untransferred
[ 260.292779] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1662 bytes untransferred
[ 260.404394] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1460 bytes untransferred
[ 260.515678] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1249 bytes untransferred
[ 260.571527] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1172 bytes untransferred
[ 260.805343] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 260.860824] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 260.895573] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1472 bytes untransferred
[ 260.951108] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1962 bytes untransferred
[ 261.528939] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1950 bytes untransferred
[ 261.584445] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1249 bytes untransferred
[ 261.696046] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1739 bytes untransferred
[ 261.751744] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1249 bytes untransferred
[ 261.807509] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1739 bytes untransferred
[ 261.863313] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1267 bytes untransferred
[ 261.919065] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1739 bytes untransferred
[ 261.975060] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1460 bytes untransferred
[ 262.030279] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1757 bytes untransferred
[ 262.086104] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1950 bytes untransferred
[ 262.197325] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1267 bytes untransferred
[ 262.471999] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1757 bytes untransferred
echo 8 > /proc/sys/kernel/printk

root@jetson-0424418053570:~# [ 264.249512] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1267 bytes untransferred
[ 264.528698] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1757 bytes untransferred
[ 272.235330] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1934 bytes untransferred
[ 292.715356] tegra-xusb 3610000.xhci: ep 0x86 - asked for 1514 bytes, 1444 bytes untransferred
[ 292.716575] tegra-xusb 3610000.xhci: ep 0x81 - asked for 2048 bytes, 1934 bytes untransferred

part of device log

=======================================================================================================
root@jetson-0424218031076:~# ecjho ‘file tegra_xudc.c +p’ > /sys/kernel/debug/dyn
amic_debug/control

root@jetson-0424218031076:~# echo ‘file xusb-tegra194.c +p’ > /sys/kernel/debug/
dynamic_debug/control

root@jetson-0424218031076:~# echo 8 > /proc/sys/kernel/printk

root@jetson-0424218031076:~# [ 198.366342] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6530, lo = 0xffeddac0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 198.366579] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6caac0 → ffffff800a6caac0; trb ffffff800a6caac0
[ 198.366802] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 198.366910] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 198.367162] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce740, lo = 0xffd82000, hi = 0x0, status = 0xd, control = 0x420
[ 198.367352] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 198.367454] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6caad0, lo = 0xffd83000, hi = 0x0, status = 0x200, control = 0x425
[ 198.367634] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 198.367894] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6540, lo = 0xffedb740, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 198.368768] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce740 → ffffff800a6ce740; trb ffffff800a6ce740
[ 198.370284] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 198.376849] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 200.382366] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6550, lo = 0xffeddad0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 200.382635] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6caad0 → ffffff800a6caad0; trb ffffff800a6caad0
[ 200.382813] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 200.382918] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 200.383194] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce750, lo = 0xffd83000, hi = 0x0, status = 0xd, control = 0x420
[ 200.383395] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 200.383499] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6caae0, lo = 0xffd82000, hi = 0x0, status = 0x200, control = 0x425
[ 200.383677] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 200.383909] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6560, lo = 0xffedb750, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 200.384804] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce750 → ffffff800a6ce750; trb ffffff800a6ce750
[ 200.386311] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 200.392882] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 202.398341] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6570, lo = 0xffeddae0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 202.398643] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6caae0 → ffffff800a6caae0; trb ffffff800a6caae0
[ 202.398823] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 202.398945] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 202.399259] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce760, lo = 0xffd82000, hi = 0x0, status = 0xd, control = 0x420
[ 202.399449] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 202.399551] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6caaf0, lo = 0xffd83000, hi = 0x0, status = 0x200, control = 0x425
[ 202.399737] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 202.399874] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6580, lo = 0xffedb760, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 202.400779] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce760 → ffffff800a6ce760; trb ffffff800a6ce760
[ 202.402559] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 202.408602] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 204.414437] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6590, lo = 0xffeddaf0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 204.414689] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6caaf0 → ffffff800a6caaf0; trb ffffff800a6caaf0
[ 204.414870] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 204.415031] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 204.417877] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce770, lo = 0xffd60000, hi = 0x0, status = 0xd, control = 0x420
[ 204.418106] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 204.418214] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab00, lo = 0xffd5f000, hi = 0x0, status = 0x200, control = 0x425
[ 204.418405] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 204.418512] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65a0, lo = 0xffedb770, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 204.418728] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce770 → ffffff800a6ce770; trb ffffff800a6ce770
[ 204.418924] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 204.424952] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 206.430393] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65b0, lo = 0xffeddb00, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 206.430706] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab00 → ffffff800a6cab00; trb ffffff800a6cab00
[ 206.430900] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 206.431010] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 206.431370] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce780, lo = 0xffd5e000, hi = 0x0, status = 0xd, control = 0x420
[ 206.431637] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 206.431755] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab10, lo = 0xffd5d000, hi = 0x0, status = 0x200, control = 0x425
[ 206.431950] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 206.432063] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65c0, lo = 0xffedb780, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 206.432822] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce780 → ffffff800a6ce780; trb ffffff800a6ce780
[ 206.434611] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 206.440658] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 208.446389] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65d0, lo = 0xffeddb10, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 208.446742] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab10 → ffffff800a6cab10; trb ffffff800a6cab10
[ 208.446928] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 208.447040] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 208.447377] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce790, lo = 0xffd5c000, hi = 0x0, status = 0xd, control = 0x420
[ 208.447596] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 208.447742] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab20, lo = 0xffd5b000, hi = 0x0, status = 0x200, control = 0x425
[ 208.447940] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 208.448051] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65e0, lo = 0xffedb790, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 208.448801] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce790 → ffffff800a6ce790; trb ffffff800a6ce790
[ 208.450333] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 208.456634] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 210.462343] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c65f0, lo = 0xffeddb20, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 210.462597] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab20 → ffffff800a6cab20; trb ffffff800a6cab20
[ 210.462836] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 210.462987] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 210.463320] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce7a0, lo = 0xffd5a000, hi = 0x0, status = 0xd, control = 0x420
[ 210.463532] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 210.463684] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab30, lo = 0xffd59000, hi = 0x0, status = 0x200, control = 0x425
[ 210.463888] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 210.463999] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6600, lo = 0xffedb7a0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 210.464769] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce7a0 → ffffff800a6ce7a0; trb ffffff800a6ce7a0
[ 210.466561] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 210.472608] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 212.478402] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6610, lo = 0xffeddb30, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 212.478675] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab30 → ffffff800a6cab30; trb ffffff800a6cab30
[ 212.478916] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 212.479039] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 212.479448] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce7b0, lo = 0xffd58000, hi = 0x0, status = 0xd, control = 0x420
[ 212.479720] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 212.479838] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab40, lo = 0xffd57000, hi = 0x0, status = 0x200, control = 0x425
[ 212.480033] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 212.480230] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6620, lo = 0xffedb7b0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 212.480799] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce7b0 → ffffff800a6ce7b0; trb ffffff800a6ce7b0
[ 212.482369] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 212.488670] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 214.494454] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6630, lo = 0xffeddb40, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 214.494737] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab40 → ffffff800a6cab40; trb ffffff800a6cab40
[ 214.495014] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 214.495122] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 214.495480] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce7c0, lo = 0xffd56000, hi = 0x0, status = 0xd, control = 0x420
[ 214.495697] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 214.495806] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab50, lo = 0xffd55000, hi = 0x0, status = 0x200, control = 0x425
[ 214.496017] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 214.496163] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6640, lo = 0xffedb7c0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 214.496865] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce7c0 → ffffff800a6ce7c0; trb ffffff800a6ce7c0
[ 214.498662] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 214.504968] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 216.510292] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6650, lo = 0xffeddb50, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 216.510523] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab50 → ffffff800a6cab50; trb ffffff800a6cab50
[ 216.510718] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 216.510824] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 216.511093] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce7d0, lo = 0xffd54000, hi = 0x0, status = 0xd, control = 0x420
[ 216.511294] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 216.511399] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab60, lo = 0xffd53000, hi = 0x0, status = 0x200, control = 0x425
[ 216.511609] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 216.511824] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6660, lo = 0xffedb7d0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 216.512726] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce7d0 → ffffff800a6ce7d0; trb ffffff800a6ce7d0
[ 216.514493] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 216.520793] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 218.526330] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6670, lo = 0xffeddb60, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 218.526678] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab60 → ffffff800a6cab60; trb ffffff800a6cab60
[ 218.526917] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 218.527042] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 218.527378] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce7e0, lo = 0xffd52000, hi = 0x0, status = 0xd, control = 0x420
[ 218.527615] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 218.527725] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab70, lo = 0xffd51000, hi = 0x0, status = 0x200, control = 0x425
[ 218.527935] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 218.528054] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6680, lo = 0xffedb7e0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 218.528776] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce7e0 → ffffff800a6ce7e0; trb ffffff800a6ce7e0
[ 218.530549] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 218.536588] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 220.542322] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6690, lo = 0xffeddb70, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 220.542582] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab70 → ffffff800a6cab70; trb ffffff800a6cab70
[ 220.542798] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 220.542915] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 220.543265] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce400, lo = 0xffd50000, hi = 0x0, status = 0xd, control = 0x421
[ 220.543484] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 220.543592] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab80, lo = 0xffd4f000, hi = 0x0, status = 0x200, control = 0x425
[ 220.543783] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 220.543892] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66a0, lo = 0xffedb400, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 220.544756] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce400 → ffffff800a6ce400; trb ffffff800a6ce400
[ 220.546544] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 220.552859] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 222.558441] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66b0, lo = 0xffeddb80, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 222.558705] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab80 → ffffff800a6cab80; trb ffffff800a6cab80
[ 222.558888] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 222.559002] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 222.559259] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce410, lo = 0xffd84000, hi = 0x0, status = 0xd, control = 0x421
[ 222.559453] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 222.559589] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cab90, lo = 0xffd85000, hi = 0x0, status = 0x200, control = 0x425
[ 222.559769] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 222.559967] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66c0, lo = 0xffedb410, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 222.560884] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce410 → ffffff800a6ce410; trb ffffff800a6ce410
[ 222.562649] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 222.568958] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 224.574285] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66d0, lo = 0xffeddb90, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 224.574748] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cab90 → ffffff800a6cab90; trb ffffff800a6cab90
[ 224.574935] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 224.575112] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 224.575440] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce420, lo = 0xffd8c000, hi = 0x0, status = 0xd, control = 0x421
[ 224.575692] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 224.575804] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6caba0, lo = 0xffd87000, hi = 0x0, status = 0x200, control = 0x425
[ 224.576038] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 224.576161] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66e0, lo = 0xffedb420, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 224.576709] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce420 → ffffff800a6ce420; trb ffffff800a6ce420
[ 224.578104] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 224.584408] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 226.590307] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c66f0, lo = 0xffeddba0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 226.590578] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6caba0 → ffffff800a6caba0; trb ffffff800a6caba0
[ 226.590776] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 226.590885] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 226.591167] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce430, lo = 0xffd89000, hi = 0x0, status = 0xd, control = 0x421
[ 226.591377] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 226.591481] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cabb0, lo = 0xffd88000, hi = 0x0, status = 0x200, control = 0x425
[ 226.591662] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 226.591910] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6700, lo = 0xffedb430, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 226.592763] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce430 → ffffff800a6ce430; trb ffffff800a6ce430
[ 226.594534] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 226.600841] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 228.606419] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6710, lo = 0xffeddbb0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 228.606657] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cabb0 → ffffff800a6cabb0; trb ffffff800a6cabb0
[ 228.606837] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 228.606980] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 228.607228] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce440, lo = 0xffd8a000, hi = 0x0, status = 0xd, control = 0x421
[ 228.607423] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 228.607538] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cabc0, lo = 0xffd8b000, hi = 0x0, status = 0x200, control = 0x425
[ 228.607718] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 228.607995] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6720, lo = 0xffedb440, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 228.608868] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce440 → ffffff800a6ce440; trb ffffff800a6ce440
[ 228.610625] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 228.616669] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 230.622274] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6730, lo = 0xffeddbc0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 230.622576] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cabc0 → ffffff800a6cabc0; trb ffffff800a6cabc0
[ 230.622778] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 230.622893] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 230.623252] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce450, lo = 0xffe32000, hi = 0x0, status = 0xd, control = 0x421
[ 230.623466] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 230.623574] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cabd0, lo = 0xffd8d000, hi = 0x0, status = 0x200, control = 0x425
[ 230.623774] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 230.623884] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6740, lo = 0xffedb450, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 230.624735] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce450 → ffffff800a6ce450; trb ffffff800a6ce450
[ 230.626521] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 230.632585] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 232.638276] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6750, lo = 0xffeddbd0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 232.638535] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cabd0 → ffffff800a6cabd0; trb ffffff800a6cabd0
[ 232.638726] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 232.638876] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 232.639152] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce460, lo = 0xffd8e000, hi = 0x0, status = 0xd, control = 0x421
[ 232.639349] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 232.639469] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cabe0, lo = 0xffd8f000, hi = 0x0, status = 0x200, control = 0x425
[ 232.639650] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 232.639821] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6760, lo = 0xffedb460, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 232.640726] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce460 → ffffff800a6ce460; trb ffffff800a6ce460
[ 232.642493] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 232.648798] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 234.654395] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6770, lo = 0xffeddbe0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 234.654631] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cabe0 → ffffff800a6cabe0; trb ffffff800a6cabe0
[ 234.654830] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 234.654936] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 234.655186] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce470, lo = 0xffd90000, hi = 0x0, status = 0xd, control = 0x421
[ 234.655387] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 234.655491] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca800, lo = 0xffd91000, hi = 0x0, status = 0x200, control = 0x424
[ 234.655671] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 234.655942] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6780, lo = 0xffedb470, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 234.656846] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce470 → ffffff800a6ce470; trb ffffff800a6ce470
[ 234.658600] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 234.664911] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 236.670363] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6790, lo = 0xffedd800, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 236.670667] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca800 → ffffff800a6ca800; trb ffffff800a6ca800
[ 236.670860] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 236.670970] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 236.671271] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce480, lo = 0xffd92000, hi = 0x0, status = 0xd, control = 0x421
[ 236.671478] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 236.671634] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca810, lo = 0xffd93000, hi = 0x0, status = 0x200, control = 0x424
[ 236.671948] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 236.672064] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67a0, lo = 0xffedb480, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 236.672809] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce480 → ffffff800a6ce480; trb ffffff800a6ce480
[ 236.674492] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 236.680802] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 238.686268] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67b0, lo = 0xffedd810, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 238.686558] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca810 → ffffff800a6ca810; trb ffffff800a6ca810
[ 238.686738] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 238.686850] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 238.687131] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce490, lo = 0xffd95000, hi = 0x0, status = 0xd, control = 0x421
[ 238.687338] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 238.687476] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca820, lo = 0xffd94000, hi = 0x0, status = 0x200, control = 0x424
[ 238.687658] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 238.687811] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67c0, lo = 0xffedb490, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 238.688712] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce490 → ffffff800a6ce490; trb ffffff800a6ce490
[ 238.690484] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 238.696525] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 240.702301] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67d0, lo = 0xffedd820, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 240.702533] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca820 → ffffff800a6ca820; trb ffffff800a6ca820
[ 240.702715] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 240.702820] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 240.703057] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4a0, lo = 0xffd96000, hi = 0x0, status = 0xd, control = 0x421
[ 240.703256] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 240.703387] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca830, lo = 0xffd97000, hi = 0x0, status = 0x200, control = 0x424
[ 240.703566] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 240.703842] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67e0, lo = 0xffedb4a0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 240.704744] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4a0 → ffffff800a6ce4a0; trb ffffff800a6ce4a0
[ 240.706244] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 240.712546] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 242.718302] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c67f0, lo = 0xffedd830, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 242.718573] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca830 → ffffff800a6ca830; trb ffffff800a6ca830
[ 242.718818] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 242.718935] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 242.719286] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4b0, lo = 0xffd98000, hi = 0x0, status = 0xd, control = 0x421
[ 242.719495] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 242.719604] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca840, lo = 0xffd99000, hi = 0x0, status = 0x200, control = 0x424
[ 242.719837] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 242.719950] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6800, lo = 0xffedb4b0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 242.720741] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4b0 → ffffff800a6ce4b0; trb ffffff800a6ce4b0
[ 242.722527] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 242.728834] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 244.734211] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6810, lo = 0xffedd840, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 244.734457] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca840 → ffffff800a6ca840; trb ffffff800a6ca840
[ 244.734656] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 244.734763] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 244.735027] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4c0, lo = 0xffd9b000, hi = 0x0, status = 0xd, control = 0x421
[ 244.735224] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 244.735328] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca850, lo = 0xffd9a000, hi = 0x0, status = 0x200, control = 0x424
[ 244.735513] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 244.735764] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6820, lo = 0xffedb4c0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 244.736672] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4c0 → ffffff800a6ce4c0; trb ffffff800a6ce4c0
[ 244.738167] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 244.744736] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 246.750290] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6830, lo = 0xffedd850, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 246.750538] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca850 → ffffff800a6ca850; trb ffffff800a6ca850
[ 246.750760] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 246.750877] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 246.751211] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4d0, lo = 0xffd9c000, hi = 0x0, status = 0xd, control = 0x421
[ 246.751409] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 246.751516] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca860, lo = 0xffd9d000, hi = 0x0, status = 0x200, control = 0x424
[ 246.751709] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 246.751820] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6840, lo = 0xffedb4d0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 246.752739] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4d0 → ffffff800a6ce4d0; trb ffffff800a6ce4d0
[ 246.754513] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 246.760806] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 248.766210] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6850, lo = 0xffedd860, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 248.766472] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca860 → ffffff800a6ca860; trb ffffff800a6ca860
[ 248.766672] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 248.766843] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 248.767137] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4e0, lo = 0xffd9e000, hi = 0x0, status = 0xd, control = 0x421
[ 248.767349] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 248.767497] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca870, lo = 0xffeb9000, hi = 0x0, status = 0x200, control = 0x424
[ 248.767706] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 248.767817] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6860, lo = 0xffedb4e0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 248.768644] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4e0 → ffffff800a6ce4e0; trb ffffff800a6ce4e0
[ 248.770179] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 248.776744] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 250.782178] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6870, lo = 0xffedd870, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 250.782435] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca870 → ffffff800a6ca870; trb ffffff800a6ca870
[ 250.782616] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 250.782780] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 250.783053] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4f0, lo = 0xffd9f000, hi = 0x0, status = 0xd, control = 0x421
[ 250.783251] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 250.783360] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca880, lo = 0xffda0000, hi = 0x0, status = 0x200, control = 0x424
[ 250.783585] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 250.783692] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6880, lo = 0xffedb4f0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 250.784649] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4f0 → ffffff800a6ce4f0; trb ffffff800a6ce4f0
[ 250.786387] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 250.792699] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 252.798251] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6890, lo = 0xffedd880, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 252.798509] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca880 → ffffff800a6ca880; trb ffffff800a6ca880
[ 252.798695] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 252.798844] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 252.799175] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce500, lo = 0xffda1000, hi = 0x0, status = 0xd, control = 0x421
[ 252.799409] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 252.799515] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca890, lo = 0xffda2000, hi = 0x0, status = 0x200, control = 0x424
[ 252.799699] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 252.799809] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68a0, lo = 0xffedb500, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 252.800687] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce500 → ffffff800a6ce500; trb ffffff800a6ce500
[ 252.802467] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 252.808512] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 254.814082] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68b0, lo = 0xffedd890, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 254.814326] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca890 → ffffff800a6ca890; trb ffffff800a6ca890
[ 254.814505] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 254.814646] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 254.814877] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce510, lo = 0xffda3000, hi = 0x0, status = 0xd, control = 0x421
[ 254.815072] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 254.815185] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8a0, lo = 0xffda4000, hi = 0x0, status = 0x200, control = 0x424
[ 254.815400] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 254.815620] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68c0, lo = 0xffedb510, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 254.816520] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce510 → ffffff800a6ce510; trb ffffff800a6ce510
[ 254.818284] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 254.824592] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 256.830152] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68d0, lo = 0xffedd8a0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 256.830410] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8a0 → ffffff800a6ca8a0; trb ffffff800a6ca8a0
[ 256.830592] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 256.830750] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 256.831004] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce520, lo = 0xffda6000, hi = 0x0, status = 0xd, control = 0x421
[ 256.831206] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 256.831353] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8b0, lo = 0xffda5000, hi = 0x0, status = 0x200, control = 0x424
[ 256.831556] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 256.831691] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68e0, lo = 0xffedb520, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 256.832573] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce520 → ffffff800a6ce520; trb ffffff800a6ce520
[ 256.834366] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 256.840667] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 258.846227] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c68f0, lo = 0xffedd8b0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 258.846531] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8b0 → ffffff800a6ca8b0; trb ffffff800a6ca8b0
[ 258.846713] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 258.846824] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 258.847092] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce530, lo = 0xffda7000, hi = 0x0, status = 0xd, control = 0x421
[ 258.847318] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 258.847428] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8c0, lo = 0xffda8000, hi = 0x0, status = 0x200, control = 0x424
[ 258.847612] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 258.847753] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6900, lo = 0xffedb530, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 258.848669] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce530 → ffffff800a6ce530; trb ffffff800a6ce530
[ 258.850438] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 258.856740] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 260.862093] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6910, lo = 0xffedd8c0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 260.862343] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8c0 → ffffff800a6ca8c0; trb ffffff800a6ca8c0
[ 260.862524] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 260.862628] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 260.862877] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce540, lo = 0xffd4e000, hi = 0x0, status = 0xd, control = 0x421
[ 260.863093] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 260.863198] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8d0, lo = 0xffd4d000, hi = 0x0, status = 0x200, control = 0x424
[ 260.863410] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 260.863632] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6920, lo = 0xffedb540, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 260.864536] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce540 → ffffff800a6ce540; trb ffffff800a6ce540
[ 260.866303] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 260.872598] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 262.878020] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6930, lo = 0xffedd8d0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 262.878270] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8d0 → ffffff800a6ca8d0; trb ffffff800a6ca8d0
[ 262.878449] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 262.878557] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 262.878849] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce550, lo = 0xffd4c000, hi = 0x0, status = 0xd, control = 0x421
[ 262.879050] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 262.879154] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8e0, lo = 0xffd4b000, hi = 0x0, status = 0x200, control = 0x424
[ 262.879335] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 262.879553] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6940, lo = 0xffedb550, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 262.880451] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce550 → ffffff800a6ce550; trb ffffff800a6ce550
[ 262.882225] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 262.888266] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 264.894160] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6950, lo = 0xffedd8e0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 264.894422] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8e0 → ffffff800a6ca8e0; trb ffffff800a6ca8e0
[ 264.894607] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 264.894760] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0300 on ep 6 with status 0
[ 264.895036] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce560, lo = 0xffda9000, hi = 0x0, status = 0xd, control = 0x421
[ 264.895249] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 264.895356] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8f0, lo = 0xffdaa000, hi = 0x0, status = 0x200, control = 0x424
[ 264.895561] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 264.895698] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6960, lo = 0xffedb560, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 264.896599] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce560 → ffffff800a6ce560; trb ffffff800a6ce560
[ 264.898372] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 264.904679] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a0800 on ep 11 with status 0
[ 266.354768] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6970, lo = 0xffede650, hi = 0x0, status = 0xd00067e, control = 0x28001
[ 266.355037] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd650 → ffffff800a5fd650; trb ffffff800a5fd650
[ 266.355226] tegra-xudc-new 3550000.xudc: bytes transferred 386 / 2048
[ 266.355377] tegra-xudc-new 3550000.xudc: completing request ffffffc3d59e3600 on ep 2 with status 0
[ 266.355606] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd6f0, lo = 0xffecc002, hi = 0x0, status = 0x800, control = 0x425
[ 266.355808] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 266.356054] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6fc150, lo = 0xffda902e, hi = 0x0, status = 0x156, control = 0x420
[ 266.356241] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd00
[ 266.356384] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6980, lo = 0xffeda150, hi = 0x0, status = 0x1000000, control = 0xd8001
[ 266.357209] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6fc150 → ffffff800a6fc150; trb ffffff800a6fc150
[ 266.359245] tegra-xudc-new 3550000.xudc: bytes transferred 342 / 342
[ 266.365725] tegra-xudc-new 3550000.xudc: completing request ffffffc3d1fcd500 on ep 13 with status 0
[ 266.374784] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6990, lo = 0xffedc6c0, hi = 0x0, status = 0xd0004aa, control = 0x88001
[ 266.386557] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6cc6c0 → ffffff800a6cc6c0; trb ffffff800a6cc6c0
[ 266.397588] tegra-xudc-new 3550000.xudc: bytes transferred 342 / 1536
[ 266.404402] tegra-xudc-new 3550000.xudc: completing request ffffffc3c90a6c00 on ep 8 with status 0
[ 266.413422] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc760, lo = 0xffea2802, hi = 0x0, status = 0x600, control = 0x425
[ 266.425143] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 266.430786] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fda20, lo = 0xffda9056, hi = 0x0, status = 0x182, control = 0x420
[ 266.441864] tegra-xudc-new 3550000.xudc: ring doorbell: 0x300
[ 266.447651] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6fc160, lo = 0xffdb6a02, hi = 0x0, status = 0x2a, control = 0x420
[ 266.459460] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd00
[ 266.465134] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69a0, lo = 0xffedea20, hi = 0x0, status = 0x1000000, control = 0x38001
[ 266.476858] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fda20 → ffffff800a5fda20; trb ffffff800a5fda20
[ 266.487704] tegra-xudc-new 3550000.xudc: bytes transferred 386 / 386
[ 266.494527] tegra-xudc-new 3550000.xudc: completing request ffffffc3ce424000 on ep 3 with status 0
[ 266.503489] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fda30, lo = 0xffdab856, hi = 0x0, status = 0x56, control = 0x420
[ 266.515270] tegra-xudc-new 3550000.xudc: ring doorbell: 0x300
[ 266.520815] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69b0, lo = 0xffeda160, hi = 0x0, status = 0x1000000, control = 0xd8001
[ 266.532511] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6fc160 → ffffff800a6fc160; trb ffffff800a6fc160
[ 266.544052] tegra-xudc-new 3550000.xudc: bytes transferred 42 / 42
[ 266.550090] tegra-xudc-new 3550000.xudc: completing request ffffffc3d1fcd500 on ep 13 with status 0
[ 266.559263] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6fc170, lo = 0xffdace02, hi = 0x0, status = 0x2a, control = 0x420
[ 266.570396] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd00
[ 266.576204] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69c0, lo = 0xffedea30, hi = 0x0, status = 0x1000000, control = 0x38001
[ 266.588155] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fda30 → ffffff800a5fda30; trb ffffff800a5fda30
[ 266.599436] tegra-xudc-new 3550000.xudc: bytes transferred 86 / 86
[ 266.605476] tegra-xudc-new 3550000.xudc: completing request ffffffc3d5df4a00 on ep 3 with status 0
[ 266.614599] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fda40, lo = 0xffdb7056, hi = 0x0, status = 0x56, control = 0x420
[ 266.626215] tegra-xudc-new 3550000.xudc: ring doorbell: 0x300
[ 266.632018] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69d0, lo = 0xffeda170, hi = 0x0, status = 0x1000000, control = 0xd8001
[ 266.643735] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6fc170 → ffffff800a6fc170; trb ffffff800a6fc170
[ 266.655000] tegra-xudc-new 3550000.xudc: bytes transferred 42 / 42
[ 266.661045] tegra-xudc-new 3550000.xudc: completing request ffffffc3d1fcd100 on ep 13 with status 0
[ 266.670435] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69e0, lo = 0xffedea40, hi = 0x0, status = 0x1000000, control = 0x38001
[ 266.681952] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fda40 → ffffff800a5fda40; trb ffffff800a5fda40
[ 266.692891] tegra-xudc-new 3550000.xudc: bytes transferred 86 / 86
[ 266.699191] tegra-xudc-new 3550000.xudc: completing request ffffffc3ce424000 on ep 3 with status 0
[ 266.912035] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c69f0, lo = 0xffedd8f0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 266.912288] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8f0 → ffffff800a6ca8f0; trb ffffff800a6ca8f0
[ 266.912473] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 266.912584] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1a00 on ep 6 with status 0
[ 266.912890] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce570, lo = 0xffdaa000, hi = 0x0, status = 0xd, control = 0x421
[ 266.913095] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 266.913199] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca900, lo = 0xffdb7000, hi = 0x0, status = 0x200, control = 0x424
[ 266.913378] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 266.913591] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6a00, lo = 0xffedb570, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 266.914471] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce570 → ffffff800a6ce570; trb ffffff800a6ce570
[ 266.915991] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 266.922559] tegra-xudc-new 3550000.xudc: completing request ffffffc3c20a1f00 on ep 11 with status 0
[ 267.449779] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6fc180, lo = 0xffdb8402, hi = 0x0, status = 0x2a, control = 0x420
[ 267.450084] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd00
[ 267.450261] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6a10, lo = 0xffeda180, hi = 0x0, status = 0x1000000, control = 0xd8001
[ 267.450480] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6fc180 → ffffff800a6fc180; trb ffffff800a6fc180
[ 267.450661] tegra-xudc-new 3550000.xudc: bytes transferred 42 / 42
[ 267.450773] tegra-xudc-new 3550000.xudc: completing request ffffffc3d1fcd100 on ep 13 with status 0
[ 267.450964] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fda50, lo = 0xffdad456, hi = 0x0, status = 0x56, control = 0x420
[ 267.451160] tegra-xudc-new 3550000.xudc: ring doorbell: 0x300
[ 267.451389] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6a20, lo = 0xffedea50, hi = 0x0, status = 0x1000000, control = 0x38001
[ 267.452191] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fda50 → ffffff800a5fda50; trb ffffff800a5fda50
[ 267.453983] tegra-xudc-new 3550000.xudc: bytes transferred 86 / 86
[ 267.460283] tegra-xudc-new 3550000.xudc: completing request ffffffc3ce424000 on ep 3 with status 0
[ 267.522588] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fda60, lo = 0xffd4a856, hi = 0x0, status = 0x182, control = 0x420
[ 267.522812] tegra-xudc-new 3550000.xudc: ring doorbell: 0x300
[ 267.522999] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6a30, lo = 0xffedea60, hi = 0x0, status = 0x1000000, control = 0x38001
[ 267.523236] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fda60 → ffffff800a5fda60; trb ffffff800a5fda60
[ 267.523427] tegra-xudc-new 3550000.xudc: bytes transferred 386 / 386
[ 267.523583] tegra-xudc-new 3550000.xudc: completing request ffffffc3ce424000 on ep 3 with status 0
[ 267.524993] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c6a40, lo = 0xffede660, hi = 0x0, status = 0xd00067e, control = 0x28001
[ 267.536783] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd660 → ffffff800a5fd660; trb ffffff800a5fd660
[ 267.547790] tegra-xudc-new 3550000.xudc: bytes transferred 386 / 2048

thanks,

evanic.chen,

First part is wrong. Below two commands are for your host not tegra.

echo ‘module usbcore +p’ > /sys/kernel/debug/dynamic_debug/control
echo ‘module xhci_hcd +p’ > /sys/kernel/debug/dynamic_debug/control

Also, do you get the second log right after you connect usb cable to host? (device probing?)

Hi WayneWWW,

I do input the following command at my host device.

echo ‘module usbcore +p’ > /sys/kernel/debug/dynamic_debug/control
echo ‘module xhci_hcd +p’ > /sys/kernel/debug/dynamic_debug/control

At the begining of host log, you can see those command.

I use ===== to seperate two log.
host log

… host log here …

device log

… device log here …

Thanks,

Hi WayneWWW,

I’ve tried to trace tegra_xudc.c and print some message as below.

[ 12.050316] drivers/usb/gadget/udc/core.c, usb_gadget_probe_driver, probe start …
[ 12.050517] drivers/usb/gadget/udc/core.c, usb_gadget_probe_driver, compare 3550000.xudc with 3550000.xudc
[ 12.050724] drivers/usb/gadget/udc/core.c, usb_gadget_probe_driver, found, driver->function=l4t, driver->udc_name=3550000.xudc, dev_name(&udc->dev)=3550000.xudc
[ 12.050978] drivers/usb/gadget/udc/core.c, udc_bind_to_driver, driver->udc_name=3550000.xudc, dev_name(&udc->dev)=3550000.xudc
[ 12.052256] drivers/usb/gadget/udc/core.c, usb_gadget_udc_start, udc->driver->function=l4t, udc->driver->max_speed=5, udc->driver->udc_name=3550000.xudc
[ 12.052528] drivers/usb/gadget/udc/core.c, usb_gadget_udc_start, udc->gadget->name=tegra-xudc, udc->gadget->speed=0, udc->gadget->max_speed=5, udc->gadget->state=0
[ 12.052811] drivers/usb/gadget/udc/core.c, usb_gadget_udc_start, udc->vbus=1
[ 12.052943] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_gadget_start, gadget->name=tegra-xudc
[ 12.054147] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=0, xudc->gadget.max_speed=5, xudc->gadget.state=5
[ 12.063189] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep0
nvidia@jetson-0424218031076:~$ [ 17.506249] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep2in, usb_ep->address=82
[ 17.506525] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.506843] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep2in
[ 17.507063] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep1in, usb_ep->address=81
[ 17.507250] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.507532] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep1in
[ 17.507733] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep1out, usb_ep->address=1
[ 17.508198] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.509377] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep1out
[ 17.516808] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep4in, usb_ep->address=84
[ 17.526341] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.541476] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep4in
[ 17.550050] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep3in, usb_ep->address=83
[ 17.559951] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.575581] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep3in
[ 17.584000] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep2out, usb_ep->address=2
[ 17.593948] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.609327] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep2out
[ 17.618693] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep7in, usb_ep->address=87
[ 17.620264] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep5in, usb_ep->address=85
[ 17.620286] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.620296] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep5in
[ 17.620422] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep3out, usb_ep->address=3
[ 17.620429] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.620434] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep3out
[ 17.695842] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.711074] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep7in
[ 17.730475] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep6in, usb_ep->address=86
[ 17.730754] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.744901] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep6in
[ 17.753891] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep4out, usb_ep->address=4
[ 17.763356] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 17.779062] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep4out
[ 18.377482] tegra-xudc-new 3550000.xudc: setup request failed: -95

I still can't figure out why xudc->gadget.speed = 3 ? 

Thanks,

Hi,

Could you first share the log we want? I have some problems here debugging with your comment.

  1. In #14, is your host device also a tegra? I saw your so-called host log is also from a tegra device.

  2. In #14, the device log is not what we want, we just want the log that is right after you connect the usb cable/device. Could you share it? It looks like #17 are lots of logs that is dumped by yourself but not from dynamic_debug,right?

Hi WayneWWW,

Those 2 device are all tegra.

host log

[code]root@jetson-0424418053570:~# echo ‘module usbcore +p’ > /sys/kernel/debug/dynamic
c_debug/control

root@jetson-0424418053570:~# echo ‘module xhci_hcd +p’ > /sys/kernel/debug/dynami
ic_debug/control

root@jetson-0424418053570:~# echo 8 > /proc/sys/kernel/printk

root@jetson-0424418053570:~# [ 129.992633] hub 3-3:1.0: state 7 ports 5 chg 0000 evt 0002
[ 129.993054] usb 3-3-port1: status 0101, change 0001, 12 Mb/s
[ 130.136699] usb 3-3-port1: debounce total 100ms stable 100ms status 0x101
[ 130.136918] tegra-xusb 3610000.xhci: // Ding dong!
[ 130.137244] tegra-xusb 3610000.xhci: Slot 7 output ctx = 0xffe05000 (dma)
[ 130.137464] tegra-xusb 3610000.xhci: Slot 7 input ctx = 0xffe04000 (dma)
[ 130.137650] tegra-xusb 3610000.xhci: Set slot id 7 dcbaa entry ffffff8008007038 to 0xffe05000
[ 130.216528] usb 3-3.1: new high-speed USB device number 7 using tegra-xusb
[ 130.216750] tegra-xusb 3610000.xhci: Set root hub portnum to 7
[ 130.216857] tegra-xusb 3610000.xhci: Set fake root hub portnum to 3
[ 130.216971] tegra-xusb 3610000.xhci: udev->tt = (null)
[ 130.217092] tegra-xusb 3610000.xhci: udev->ttport = 0x0
[ 130.217183] tegra-xusb 3610000.xhci: Slot ID 7 Input Context:
[ 130.217291] tegra-xusb 3610000.xhci: @ffffff800d132000 (virt) @ffe04000 (dma) 0x000000 - drop flags
[ 130.217447] tegra-xusb 3610000.xhci: @ffffff800d132004 (virt) @ffe04004 (dma) 0x000003 - add flags
[ 130.217640] tegra-xusb 3610000.xhci: @ffffff800d132008 (virt) @ffe04008 (dma) 0x000000 - rsvd2[0]
[ 130.217833] tegra-xusb 3610000.xhci: @ffffff800d13200c (virt) @ffe0400c (dma) 0x000000 - rsvd2[1]
[ 130.218048] tegra-xusb 3610000.xhci: @ffffff800d132010 (virt) @ffe04010 (dma) 0x000000 - rsvd2[2]
[ 130.218746] tegra-xusb 3610000.xhci: @ffffff800d132014 (virt) @ffe04014 (dma) 0x000000 - rsvd2[3]
[ 130.219417] tegra-xusb 3610000.xhci: @ffffff800d132018 (virt) @ffe04018 (dma) 0x000000 - rsvd2[4]
[ 130.223777] tegra-xusb 3610000.xhci: @ffffff800d13201c (virt) @ffe0401c (dma) 0x000000 - rsvd2[5]
[ 130.232603] tegra-xusb 3610000.xhci: @ffffff800d132020 (virt) @ffe04020 (dma) 0x000000 - rsvd64[0]
[ 130.241777] tegra-xusb 3610000.xhci: @ffffff800d132028 (virt) @ffe04028 (dma) 0x000000 - rsvd64[1]
[ 130.250819] tegra-xusb 3610000.xhci: @ffffff800d132030 (virt) @ffe04030 (dma) 0x000000 - rsvd64[2]
[ 130.259645] tegra-xusb 3610000.xhci: @ffffff800d132038 (virt) @ffe04038 (dma) 0x000000 - rsvd64[3]
[ 130.269066] tegra-xusb 3610000.xhci: Slot Context:
[ 130.273848] tegra-xusb 3610000.xhci: @ffffff800d132040 (virt) @ffe04040 (dma) 0x8300001 - dev_info
[ 130.283013] tegra-xusb 3610000.xhci: @ffffff800d132044 (virt) @ffe04044 (dma) 0x070000 - dev_info2
[ 130.292195] tegra-xusb 3610000.xhci: @ffffff800d132048 (virt) @ffe04048 (dma) 0x000000 - tt_info
[ 130.301393] tegra-xusb 3610000.xhci: @ffffff800d13204c (virt) @ffe0404c (dma) 0x000000 - dev_state
[ 130.310429] tegra-xusb 3610000.xhci: @ffffff800d132050 (virt) @ffe04050 (dma) 0x000000 - rsvd[0]
[ 130.318897] tegra-xusb 3610000.xhci: @ffffff800d132054 (virt) @ffe04054 (dma) 0x000000 - rsvd[1]
[ 130.327899] tegra-xusb 3610000.xhci: @ffffff800d132058 (virt) @ffe04058 (dma) 0x000000 - rsvd[2]
[ 130.336735] tegra-xusb 3610000.xhci: @ffffff800d13205c (virt) @ffe0405c (dma) 0x000000 - rsvd[3]
[ 130.345458] tegra-xusb 3610000.xhci: @ffffff800d132060 (virt) @ffe04060 (dma) 0x000000 - rsvd64[0]
[ 130.354440] tegra-xusb 3610000.xhci: @ffffff800d132068 (virt) @ffe04068 (dma) 0x000000 - rsvd64[1]
[ 130.363427] tegra-xusb 3610000.xhci: @ffffff800d132070 (virt) @ffe04070 (dma) 0x000000 - rsvd64[2]
[ 130.372671] tegra-xusb 3610000.xhci: @ffffff800d132078 (virt) @ffe04078 (dma) 0x000000 - rsvd64[3]
[ 130.381591] tegra-xusb 3610000.xhci: IN Endpoint 00 Context (ep_index 00):
[ 130.388648] tegra-xusb 3610000.xhci: @ffffff800d132080 (virt) @ffe04080 (dma) 0x000000 - ep_info
[ 130.397181] tegra-xusb 3610000.xhci: @ffffff800d132084 (virt) @ffe04084 (dma) 0x400026 - ep_info2
[ 130.406262] tegra-xusb 3610000.xhci: @ffffff800d132088 (virt) @ffe04088 (dma) 0xffe06001 - deq
[ 130.414567] tegra-xusb 3610000.xhci: @ffffff800d132090 (virt) @ffe04090 (dma) 0x000000 - tx_info
[ 130.423597] tegra-xusb 3610000.xhci: @ffffff800d132094 (virt) @ffe04094 (dma) 0x000000 - rsvd[0]
[ 130.432339] tegra-xusb 3610000.xhci: @ffffff800d132098 (virt) @ffe04098 (dma) 0x000000 - rsvd[1]
[ 130.441059] tegra-xusb 3610000.xhci: @ffffff800d13209c (virt) @ffe0409c (dma) 0x000000 - rsvd[2]
[ 130.449834] tegra-xusb 3610000.xhci: @ffffff800d1320a0 (virt) @ffe040a0 (dma) 0x000000 - rsvd64[0]
[ 130.458836] tegra-xusb 3610000.xhci: @ffffff800d1320a8 (virt) @ffe040a8 (dma) 0x000000 - rsvd64[1]
[ 130.467958] tegra-xusb 3610000.xhci: @ffffff800d1320b0 (virt) @ffe040b0 (dma) 0x000000 - rsvd64[2]
[ 130.477260] tegra-xusb 3610000.xhci: @ffffff800d1320b8 (virt) @ffe040b8 (dma) 0x000000 - rsvd64[3]
[ 130.486299] tegra-xusb 3610000.xhci: OUT Endpoint 01 Context (ep_index 01):
[ 130.493052] tegra-xusb 3610000.xhci: @ffffff800d1320c0 (virt) @ffe040c0 (dma) 0x000000 - ep_info
[ 130.501886] tegra-xusb 3610000.xhci: @ffffff800d1320c4 (virt) @ffe040c4 (dma) 0x000000 - ep_info2
[ 130.510996] tegra-xusb 3610000.xhci: @ffffff800d1320c8 (virt) @ffe040c8 (dma) 0x000000 - deq
[ 130.519543] tegra-xusb 3610000.xhci: @ffffff800d1320d0 (virt) @ffe040d0 (dma) 0x000000 - tx_info
[ 130.528033] tegra-xusb 3610000.xhci: @ffffff800d1320d4 (virt) @ffe040d4 (dma) 0x000000 - rsvd[0]
[ 130.536884] tegra-xusb 3610000.xhci: @ffffff800d1320d8 (virt) @ffe040d8 (dma) 0x000000 - rsvd[1]
[ 130.545846] tegra-xusb 3610000.xhci: @ffffff800d1320dc (virt) @ffe040dc (dma) 0x000000 - rsvd[2]
[ 130.554591] tegra-xusb 3610000.xhci: @ffffff800d1320e0 (virt) @ffe040e0 (dma) 0x000000 - rsvd64[0]
[ 130.563648] tegra-xusb 3610000.xhci: @ffffff800d1320e8 (virt) @ffe040e8 (dma) 0x000000 - rsvd64[1]
[ 130.572774] tegra-xusb 3610000.xhci: @ffffff800d1320f0 (virt) @ffe040f0 (dma) 0x000000 - rsvd64[2]
[ 130.581935] tegra-xusb 3610000.xhci: @ffffff800d1320f8 (virt) @ffe040f8 (dma) 0x000000 - rsvd64[3]
[ 130.590987] tegra-xusb 3610000.xhci: IN Endpoint 01 Context (ep_index 02):
[ 130.597908] tegra-xusb 3610000.xhci: @ffffff800d132100 (virt) @ffe04100 (dma) 0x000000 - ep_info
[ 130.606623] tegra-xusb 3610000.xhci: @ffffff800d132104 (virt) @ffe04104 (dma) 0x000000 - ep_info2
[ 130.615438] tegra-xusb 3610000.xhci: @ffffff800d132108 (virt) @ffe04108 (dma) 0x000000 - deq
[ 130.624019] tegra-xusb 3610000.xhci: @ffffff800d132110 (virt) @ffe04110 (dma) 0x000000 - tx_info
[ 130.632972] tegra-xusb 3610000.xhci: @ffffff800d132114 (virt) @ffe04114 (dma) 0x000000 - rsvd[0]
[ 130.641853] tegra-xusb 3610000.xhci: @ffffff800d132118 (virt) @ffe04118 (dma) 0x000000 - rsvd[1]
[ 130.650468] tegra-xusb 3610000.xhci: @ffffff800d13211c (virt) @ffe0411c (dma) 0x000000 - rsvd[2]
[ 130.658958] tegra-xusb 3610000.xhci: @ffffff800d132120 (virt) @ffe04120 (dma) 0x000000 - rsvd64[0]
[ 130.668020] tegra-xusb 3610000.xhci: @ffffff800d132128 (virt) @ffe04128 (dma) 0x000000 - rsvd64[1]
[ 130.677034] tegra-xusb 3610000.xhci: @ffffff800d132130 (virt) @ffe04130 (dma) 0x000000 - rsvd64[2]
[ 130.686456] tegra-xusb 3610000.xhci: @ffffff800d132138 (virt) @ffe04138 (dma) 0x000000 - rsvd64[3]
[ 130.695471] tegra-xusb 3610000.xhci: // Ding dong!
[ 130.702216] tegra-xusb 3610000.xhci: Successful setup address command
[ 130.706747] tegra-xusb 3610000.xhci: Op regs DCBAA ptr = 0x000000ffedf000
[ 130.713819] tegra-xusb 3610000.xhci: Slot ID 7 dcbaa entry @ffffff8008007038 = 0x000000ffe05000
[ 130.722519] tegra-xusb 3610000.xhci: Output Context DMA address = 0xffe05000
[ 130.729482] tegra-xusb 3610000.xhci: Slot ID 7 Input Context:
[ 130.734892] tegra-xusb 3610000.xhci: @ffffff800d132000 (virt) @ffe04000 (dma) 0x000000 - drop flags
[ 130.743870] tegra-xusb 3610000.xhci: @ffffff800d132004 (virt) @ffe04004 (dma) 0x000003 - add flags
[ 130.753120] tegra-xusb 3610000.xhci: @ffffff800d132008 (virt) @ffe04008 (dma) 0x000000 - rsvd2[0]
[ 130.761910] tegra-xusb 3610000.xhci: @ffffff800d13200c (virt) @ffe0400c (dma) 0x000000 - rsvd2[1]
[ 130.770661] tegra-xusb 3610000.xhci: @ffffff800d132010 (virt) @ffe04010 (dma) 0x000000 - rsvd2[2]
[ 130.779256] tegra-xusb 3610000.xhci: @ffffff800d132014 (virt) @ffe04014 (dma) 0x000000 - rsvd2[3]
[ 130.788395] tegra-xusb 3610000.xhci: @ffffff800d132018 (virt) @ffe04018 (dma) 0x000000 - rsvd2[4]
[ 130.796908] tegra-xusb 3610000.xhci: @ffffff800d13201c (virt) @ffe0401c (dma) 0x000000 - rsvd2[5]
[ 130.806078] tegra-xusb 3610000.xhci: @ffffff800d132020 (virt) @ffe04020 (dma) 0x000000 - rsvd64[0]
[ 130.814920] tegra-xusb 3610000.xhci: @ffffff800d132028 (virt) @ffe04028 (dma) 0x000000 - rsvd64[1]
[ 130.824175] tegra-xusb 3610000.xhci: @ffffff800d132030 (virt) @ffe04030 (dma) 0x000000 - rsvd64[2]
[ 130.833183] tegra-xusb 3610000.xhci: @ffffff800d132038 (virt) @ffe04038 (dma) 0x000000 - rsvd64[3]
[ 130.842525] tegra-xusb 3610000.xhci: Slot Context:
[ 130.847550] tegra-xusb 3610000.xhci: @ffffff800d132040 (virt) @ffe04040 (dma) 0x8300001 - dev_info
[ 130.856742] tegra-xusb 3610000.xhci: @ffffff800d132044 (virt) @ffe04044 (dma) 0x070000 - dev_info2
[ 130.865663] tegra-xusb 3610000.xhci: @ffffff800d132048 (virt) @ffe04048 (dma) 0x000000 - tt_info
[ 130.874595] tegra-xusb 3610000.xhci: @ffffff800d13204c (virt) @ffe0404c (dma) 0x000000 - dev_state
[ 130.883854] tegra-xusb 3610000.xhci: @ffffff800d132050 (virt) @ffe04050 (dma) 0x000000 - rsvd[0]
[ 130.892340] tegra-xusb 3610000.xhci: @ffffff800d132054 (virt) @ffe04054 (dma) 0x000000 - rsvd[1]
[ 130.901107] tegra-xusb 3610000.xhci: @ffffff800d132058 (virt) @ffe04058 (dma) 0x000000 - rsvd[2]
[ 130.909841] tegra-xusb 3610000.xhci: @ffffff800d13205c (virt) @ffe0405c (dma) 0x000000 - rsvd[3]
[ 130.918618] tegra-xusb 3610000.xhci: @ffffff800d132060 (virt) @ffe04060 (dma) 0x000000 - rsvd64[0]
[ 130.927870] tegra-xusb 3610000.xhci: @ffffff800d132068 (virt) @ffe04068 (dma) 0x000000 - rsvd64[1]
[ 130.936630] tegra-xusb 3610000.xhci: @ffffff800d132070 (virt) @ffe04070 (dma) 0x000000 - rsvd64[2]
[ 130.945982] tegra-xusb 3610000.xhci: @ffffff800d132078 (virt) @ffe04078 (dma) 0x000000 - rsvd64[3]
[ 130.954730] tegra-xusb 3610000.xhci: IN Endpoint 00 Context (ep_index 00):
[ 130.962082] tegra-xusb 3610000.xhci: @ffffff800d132080 (virt) @ffe04080 (dma) 0x000000 - ep_info
[ 130.970579] tegra-xusb 3610000.xhci: @ffffff800d132084 (virt) @ffe04084 (dma) 0x400026 - ep_info2
[ 130.979450] tegra-xusb 3610000.xhci: @ffffff800d132088 (virt) @ffe04088 (dma) 0xffe06001 - deq
[ 130.988248] tegra-xusb 3610000.xhci: @ffffff800d132090 (virt) @ffe04090 (dma) 0x000000 - tx_info
[ 130.996998] tegra-xusb 3610000.xhci: @ffffff800d132094 (virt) @ffe04094 (dma) 0x000000 - rsvd[0]
[ 131.005748] tegra-xusb 3610000.xhci: @ffffff800d132098 (virt) @ffe04098 (dma) 0x000000 - rsvd[1]
[ 131.014501] tegra-xusb 3610000.xhci: @ffffff800d13209c (virt) @ffe0409c (dma) 0x000000 - rsvd[2]
[ 131.023257] tegra-xusb 3610000.xhci: @ffffff800d1320a0 (virt) @ffe040a0 (dma) 0x000000 - rsvd64[0]
[ 131.032375] tegra-xusb 3610000.xhci: @ffffff800d1320a8 (virt) @ffe040a8 (dma) 0x000000 - rsvd64[1]
[ 131.041275] tegra-xusb 3610000.xhci: @ffffff800d1320b0 (virt) @ffe040b0 (dma) 0x000000 - rsvd64[2]
[ 131.050610] tegra-xusb 3610000.xhci: @ffffff800d1320b8 (virt) @ffe040b8 (dma) 0x000000 - rsvd64[3]
[ 131.059476] tegra-xusb 3610000.xhci: OUT Endpoint 01 Context (ep_index 01):
[ 131.066735] tegra-xusb 3610000.xhci: @ffffff800d1320c0 (virt) @ffe040c0 (dma) 0x000000 - ep_info
[ 131.075585] tegra-xusb 3610000.xhci: @ffffff800d1320c4 (virt) @ffe040c4 (dma) 0x000000 - ep_info2
[ 131.084164] tegra-xusb 3610000.xhci: @ffffff800d1320c8 (virt) @ffe040c8 (dma) 0x000000 - deq
[ 131.093067] tegra-xusb 3610000.xhci: @ffffff800d1320d0 (virt) @ffe040d0 (dma) 0x000000 - tx_info
[ 131.101498] tegra-xusb 3610000.xhci: @ffffff800d1320d4 (virt) @ffe040d4 (dma) 0x000000 - rsvd[0]
[ 131.110280] tegra-xusb 3610000.xhci: @ffffff800d1320d8 (virt) @ffe040d8 (dma) 0x000000 - rsvd[1]
[ 131.118987] tegra-xusb 3610000.xhci: @ffffff800d1320dc (virt) @ffe040dc (dma) 0x000000 - rsvd[2]
[ 131.127750] tegra-xusb 3610000.xhci: @ffffff800d1320e0 (virt) @ffe040e0 (dma) 0x000000 - rsvd64[0]
[ 131.137099] tegra-xusb 3610000.xhci: @ffffff800d1320e8 (virt) @ffe040e8 (dma) 0x000000 - rsvd64[1]
[ 131.145957] tegra-xusb 3610000.xhci: @ffffff800d1320f0 (virt) @ffe040f0 (dma) 0x000000 - rsvd64[2]
[ 131.155377] tegra-xusb 3610000.xhci: @ffffff800d1320f8 (virt) @ffe040f8 (dma) 0x000000 - rsvd64[3]
[ 131.164106] tegra-xusb 3610000.xhci: IN Endpoint 01 Context (ep_index 02):
[ 131.171390] tegra-xusb 3610000.xhci: @ffffff800d132100 (virt) @ffe04100 (dma) 0x000000 - ep_info
[ 131.180216] tegra-xusb 3610000.xhci: @ffffff800d132104 (virt) @ffe04104 (dma) 0x000000 - ep_info2
[ 131.189062] tegra-xusb 3610000.xhci: @ffffff800d132108 (virt) @ffe04108 (dma) 0x000000 - deq
[ 131.197377] tegra-xusb 3610000.xhci: @ffffff800d132110 (virt) @ffe04110 (dma) 0x000000 - tx_info
[ 131.206118] tegra-xusb 3610000.xhci: @ffffff800d132114 (virt) @ffe04114 (dma) 0x000000 - rsvd[0]
[ 131.214866] tegra-xusb 3610000.xhci: @ffffff800d132118 (virt) @ffe04118 (dma) 0x000000 - rsvd[1]
[ 131.223660] tegra-xusb 3610000.xhci: @ffffff800d13211c (virt) @ffe0411c (dma) 0x000000 - rsvd[2]
[ 131.232403] tegra-xusb 3610000.xhci: @ffffff800d132120 (virt) @ffe04120 (dma) 0x000000 - rsvd64[0]
[ 131.241699] tegra-xusb 3610000.xhci: @ffffff800d132128 (virt) @ffe04128 (dma) 0x000000 - rsvd64[1]
[ 131.250513] tegra-xusb 3610000.xhci: @ffffff800d132130 (virt) @ffe04130 (dma) 0x000000 - rsvd64[2]
[ 131.259947] tegra-xusb 3610000.xhci: @ffffff800d132138 (virt) @ffe04138 (dma) 0x000000 - rsvd64[3]
[ 131.268670] tegra-xusb 3610000.xhci: Slot ID 7 Output Context:
[ 131.274855] tegra-xusb 3610000.xhci: Slot Context:
[ 131.279871] tegra-xusb 3610000.xhci: @ffffff800d0a7000 (virt) @ffe05000 (dma) 0x8300001 - dev_info
[ 131.289048] tegra-xusb 3610000.xhci: @ffffff800d0a7004 (virt) @ffe05004 (dma) 0x070000 - dev_info2
[ 131.297826] tegra-xusb 3610000.xhci: @ffffff800d0a7008 (virt) @ffe05008 (dma) 0x000000 - tt_info
[ 131.306656] tegra-xusb 3610000.xhci: @ffffff800d0a700c (virt) @ffe0500c (dma) 0x10000006 - dev_state
[ 131.315942] tegra-xusb 3610000.xhci: @ffffff800d0a7010 (virt) @ffe05010 (dma) 0x070103 - rsvd[0]
[ 131.324703] tegra-xusb 3610000.xhci: @ffffff800d0a7014 (virt) @ffe05014 (dma) 0x000000 - rsvd[1]
[ 131.333446] tegra-xusb 3610000.xhci: @ffffff800d0a7018 (virt) @ffe05018 (dma) 0x000000 - rsvd[2]
[ 131.342084] tegra-xusb 3610000.xhci: @ffffff800d0a701c (virt) @ffe0501c (dma) 0x000000 - rsvd[3]
[ 131.350510] tegra-xusb 3610000.xhci: @ffffff800d0a7020 (virt) @ffe05020 (dma) 0x000000 - rsvd64[0]
[ 131.359799] tegra-xusb 3610000.xhci: @ffffff800d0a7028 (virt) @ffe05028 (dma) 0x000000 - rsvd64[1]
[ 131.368525] tegra-xusb 3610000.xhci: @ffffff800d0a7030 (virt) @ffe05030 (dma) 0x000000 - rsvd64[2]
[ 131.377883] tegra-xusb 3610000.xhci: @ffffff800d0a7038 (virt) @ffe05038 (dma) 0x000000 - rsvd64[3]
[ 131.387135] tegra-xusb 3610000.xhci: IN Endpoint 00 Context (ep_index 00):
[ 131.393823] tegra-xusb 3610000.xhci: @ffffff800d0a7040 (virt) @ffe05040 (dma) 0x000001 - ep_info
[ 131.402731] tegra-xusb 3610000.xhci: @ffffff800d0a7044 (virt) @ffe05044 (dma) 0x400026 - ep_info2
[ 131.411486] tegra-xusb 3610000.xhci: @ffffff800d0a7048 (virt) @ffe05048 (dma) 0xffe06001 - deq
[ 131.420331] tegra-xusb 3610000.xhci: @ffffff800d0a7050 (virt) @ffe05050 (dma) 0x000000 - tx_info
[ 131.429089] tegra-xusb 3610000.xhci: @ffffff800d0a7054 (virt) @ffe05054 (dma) 0x000000 - rsvd[0]
[ 131.437561] tegra-xusb 3610000.xhci: @ffffff800d0a7058 (virt) @ffe05058 (dma) 0x12c0000 - rsvd[1]
[ 131.446334] tegra-xusb 3610000.xhci: @ffffff800d0a705c (virt) @ffe0505c (dma) 0x8000000 - rsvd[2]
[ 131.455060] tegra-xusb 3610000.xhci: @ffffff800d0a7060 (virt) @ffe05060 (dma) 0x00c080 - rsvd64[0]
[ 131.464325] tegra-xusb 3610000.xhci: @ffffff800d0a7068 (virt) @ffe05068 (dma) 0x700000600080000 - rsvd64[1]
[ 131.473961] tegra-xusb 3610000.xhci: @ffffff800d0a7070 (virt) @ffe05070 (dma) 0x8300001 - rsvd64[2]
[ 131.483479] tegra-xusb 3610000.xhci: @ffffff800d0a7078 (virt) @ffe05078 (dma) 0x000000 - rsvd64[3]
[ 131.492312] tegra-xusb 3610000.xhci: OUT Endpoint 01 Context (ep_index 01):
[ 131.499614] tegra-xusb 3610000.xhci: @ffffff800d0a7080 (virt) @ffe05080 (dma) 0x000000 - ep_info
[ 131.508424] tegra-xusb 3610000.xhci: @ffffff800d0a7084 (virt) @ffe05084 (dma) 0x000000 - ep_info2
[ 131.517385] tegra-xusb 3610000.xhci: @ffffff800d0a7088 (virt) @ffe05088 (dma) 0x000000 - deq
[ 131.525749] tegra-xusb 3610000.xhci: @ffffff800d0a7090 (virt) @ffe05090 (dma) 0x000000 - tx_info
[ 131.534566] tegra-xusb 3610000.xhci: @ffffff800d0a7094 (virt) @ffe05094 (dma) 0x000000 - rsvd[0]
[ 131.543293] tegra-xusb 3610000.xhci: @ffffff800d0a7098 (virt) @ffe05098 (dma) 0x000000 - rsvd[1]
[ 131.552098] tegra-xusb 3610000.xhci: @ffffff800d0a709c (virt) @ffe0509c (dma) 0x000000 - rsvd[2]
[ 131.560832] tegra-xusb 3610000.xhci: @ffffff800d0a70a0 (virt) @ffe050a0 (dma) 0x000000 - rsvd64[0]
[ 131.570216] tegra-xusb 3610000.xhci: @ffffff800d0a70a8 (virt) @ffe050a8 (dma) 0x000000 - rsvd64[1]
[ 131.579080] tegra-xusb 3610000.xhci: @ffffff800d0a70b0 (virt) @ffe050b0 (dma) 0x000000 - rsvd64[2]
[ 131.588610] tegra-xusb 3610000.xhci: @ffffff800d0a70b8 (virt) @ffe050b8 (dma) 0x000000 - rsvd64[3]
[ 131.597241] tegra-xusb 3610000.xhci: IN Endpoint 01 Context (ep_index 02):
[ 131.604560] tegra-xusb 3610000.xhci: @ffffff800d0a70c0 (virt) @ffe050c0 (dma) 0x000000 - ep_info
[ 131.613126] tegra-xusb 3610000.xhci: @ffffff800d0a70c4 (virt) @ffe050c4 (dma) 0x000000 - ep_info2
[ 131.622049] tegra-xusb 3610000.xhci: @ffffff800d0a70c8 (virt) @ffe050c8 (dma) 0x000000 - deq
[ 131.630787] tegra-xusb 3610000.xhci: @ffffff800d0a70d0 (virt) @ffe050d0 (dma) 0x000000 - tx_info
[ 131.639313] tegra-xusb 3610000.xhci: @ffffff800d0a70d4 (virt) @ffe050d4 (dma) 0x000000 - rsvd[0]
[ 131.648037] tegra-xusb 3610000.xhci: @ffffff800d0a70d8 (virt) @ffe050d8 (dma) 0x000000 - rsvd[1]
[ 131.656910] tegra-xusb 3610000.xhci: @ffffff800d0a70dc (virt) @ffe050dc (dma) 0x000000 - rsvd[2]
[ 131.665625] tegra-xusb 3610000.xhci: @ffffff800d0a70e0 (virt) @ffe050e0 (dma) 0x000000 - rsvd64[0]
[ 131.674878] tegra-xusb 3610000.xhci: @ffffff800d0a70e8 (virt) @ffe050e8 (dma) 0x000000 - rsvd64[1]
[ 131.683665] tegra-xusb 3610000.xhci: @ffffff800d0a70f0 (virt) @ffe050f0 (dma) 0x000000 - rsvd64[2]
[ 131.693110] tegra-xusb 3610000.xhci: @ffffff800d0a70f8 (virt) @ffe050f8 (dma) 0x000000 - rsvd64[3]
[ 131.702057] tegra-xusb 3610000.xhci: Internal device address = 6
[ 131.707778] tegra-xusb 3610000.xhci: Endpoint 0x0 ep reset callback called
[ 132.338565] usb 3-3.1: skipped 1 descriptor after configuration
[ 132.338829] usb 3-3.1: skipped 4 descriptors after interface
[ 132.338999] usb 3-3.1: skipped 1 descriptor after endpoint
[ 132.339097] usb 3-3.1: skipped 4 descriptors after interface
[ 132.339205] usb 3-3.1: skipped 1 descriptor after endpoint
[ 132.339300] usb 3-3.1: skipped 3 descriptors after interface
[ 132.405175] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 132.460552] usb 3-3.1: default language 0x0409
[ 132.527972] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 132.650310] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 132.773062] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 132.828498] usb 3-3.1: udev 7, busnum 3, minor = 262
[ 132.828625] usb 3-3.1: New USB device found, idVendor=0955, idProduct=7020
[ 132.828797] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 132.828926] usb 3-3.1: Product: Linux for Tegra
[ 132.829008] usb 3-3.1: Manufacturer: NVIDIA
[ 132.829125] usb 3-3.1: SerialNumber: 0424218031076
[ 132.830242] usb 3-3.1: usb_probe_device
[ 132.830336] usb 3-3.1: configuration #1 chosen from 1 choice
[ 132.830629] tegra-xusb 3610000.xhci: add ep 0x82, slot id 7, new drop flags = 0x0, new add flags = 0x20
[ 132.830887] tegra-xusb 3610000.xhci: add ep 0x81, slot id 7, new drop flags = 0x0, new add flags = 0x28
[ 132.831143] tegra-xusb 3610000.xhci: add ep 0x1, slot id 7, new drop flags = 0x0, new add flags = 0x2c
[ 132.831371] tegra-xusb 3610000.xhci: add ep 0x84, slot id 7, new drop flags = 0x0, new add flags = 0x22c
[ 132.831597] tegra-xusb 3610000.xhci: add ep 0x83, slot id 7, new drop flags = 0x0, new add flags = 0x2ac
[ 132.831804] tegra-xusb 3610000.xhci: add ep 0x2, slot id 7, new drop flags = 0x0, new add flags = 0x2bc
[ 132.837476] tegra-xusb 3610000.xhci: add ep 0x85, slot id 7, new drop flags = 0x0, new add flags = 0xabc
[ 132.845855] tegra-xusb 3610000.xhci: add ep 0x3, slot id 7, new drop flags = 0x0, new add flags = 0xafc
[ 132.855055] tegra-xusb 3610000.xhci: add ep 0x87, slot id 7, new drop flags = 0x0, new add flags = 0x8afc
[ 132.864920] tegra-xusb 3610000.xhci: xhci_check_bandwidth called for udev ffffffc3a4d87000
[ 132.873150] tegra-xusb 3610000.xhci: New Input Control Context:
[ 132.879249] tegra-xusb 3610000.xhci: @ffffff800d132000 (virt) @ffe04000 (dma) 0x000000 - drop flags
[ 132.888247] tegra-xusb 3610000.xhci: @ffffff800d132004 (virt) @ffe04004 (dma) 0x008afd - add flags
[ 132.897010] tegra-xusb 3610000.xhci: @ffffff800d132008 (virt) @ffe04008 (dma) 0x000000 - rsvd2[0]
[ 132.905892] tegra-xusb 3610000.xhci: @ffffff800d13200c (virt) @ffe0400c (dma) 0x000000 - rsvd2[1]
[ 132.914921] tegra-xusb 3610000.xhci: @ffffff800d132010 (virt) @ffe04010 (dma) 0x000000 - rsvd2[2]
[ 132.923561] tegra-xusb 3610000.xhci: @ffffff800d132014 (virt) @ffe04014 (dma) 0x000000 - rsvd2[3]
[ 132.932684] tegra-xusb 3610000.xhci: @ffffff800d132018 (virt) @ffe04018 (dma) 0x000000 - rsvd2[4]
[ 132.941497] tegra-xusb 3610000.xhci: @ffffff800d13201c (virt) @ffe0401c (dma) 0x000000 - rsvd2[5]
[ 132.950096] tegra-xusb 3610000.xhci: @ffffff800d132020 (virt) @ffe04020 (dma) 0x000000 - rsvd64[0]
[ 132.959514] tegra-xusb 3610000.xhci: @ffffff800d132028 (virt) @ffe04028 (dma) 0x000000 - rsvd64[1]
[ 132.968545] tegra-xusb 3610000.xhci: @ffffff800d132030 (virt) @ffe04030 (dma) 0x000000 - rsvd64[2]
[ 132.977663] tegra-xusb 3610000.xhci: @ffffff800d132038 (virt) @ffe04038 (dma) 0x000000 - rsvd64[3]
[ 132.986843] tegra-xusb 3610000.xhci: Slot Context:
[ 132.991811] tegra-xusb 3610000.xhci: @ffffff800d132040 (virt) @ffe04040 (dma) 0x78300001 - dev_info
[ 133.001118] tegra-xusb 3610000.xhci: @ffffff800d132044 (virt) @ffe04044 (dma) 0x070000 - dev_info2
[ 133.010277] tegra-xusb 3610000.xhci: @ffffff800d132048 (virt) @ffe04048 (dma) 0x000000 - tt_info
[ 133.018872] tegra-xusb 3610000.xhci: @ffffff800d13204c (virt) @ffe0404c (dma) 0x000000 - dev_state
[ 133.028222] tegra-xusb 3610000.xhci: @ffffff800d132050 (virt) @ffe04050 (dma) 0x000000 - rsvd[0]
[ 133.036947] tegra-xusb 3610000.xhci: @ffffff800d132054 (virt) @ffe04054 (dma) 0x000000 - rsvd[1]
[ 133.045427] tegra-xusb 3610000.xhci: @ffffff800d132058 (virt) @ffe04058 (dma) 0x000000 - rsvd[2]
[ 133.054477] tegra-xusb 3610000.xhci: @ffffff800d13205c (virt) @ffe0405c (dma) 0x000000 - rsvd[3]
[ 133.063020] tegra-xusb 3610000.xhci: @ffffff800d132060 (virt) @ffe04060 (dma) 0x000000 - rsvd64[0]
[ 133.071987] tegra-xusb 3610000.xhci: @ffffff800d132068 (virt) @ffe04068 (dma) 0x000000 - rsvd64[1]
[ 133.081321] tegra-xusb 3610000.xhci: @ffffff800d132070 (virt) @ffe04070 (dma) 0x000000 - rsvd64[2]
[ 133.090100] tegra-xusb 3610000.xhci: @ffffff800d132078 (virt) @ffe04078 (dma) 0x000000 - rsvd64[3]
[ 133.099103] tegra-xusb 3610000.xhci: IN Endpoint 00 Context (ep_index 00):
[ 133.106340] tegra-xusb 3610000.xhci: @ffffff800d132080 (virt) @ffe04080 (dma) 0x000000 - ep_info
[ 133.115471] tegra-xusb 3610000.xhci: @ffffff800d132084 (virt) @ffe04084 (dma) 0x400026 - ep_info2
[ 133.124135] tegra-xusb 3610000.xhci: @ffffff800d132088 (virt) @ffe04088 (dma) 0xffe06001 - deq
[ 133.132712] tegra-xusb 3610000.xhci: @ffffff800d132090 (virt) @ffe04090 (dma) 0x000000 - tx_info
[ 133.141202] tegra-xusb 3610000.xhci: @ffffff800d132094 (virt) @ffe04094 (dma) 0x000000 - rsvd[0]
[ 133.150099] tegra-xusb 3610000.xhci: @ffffff800d132098 (virt) @ffe04098 (dma) 0x000000 - rsvd[1]
[ 133.158837] tegra-xusb 3610000.xhci: @ffffff800d13209c (virt) @ffe0409c (dma) 0x000000 - rsvd[2]
[ 133.167604] tegra-xusb 3610000.xhci: @ffffff800d1320a0 (virt) @ffe040a0 (dma) 0x000000 - rsvd64[0]
[ 133.176647] tegra-xusb 3610000.xhci: @ffffff800d1320a8 (virt) @ffe040a8 (dma) 0x000000 - rsvd64[1]
[ 133.185730] tegra-xusb 3610000.xhci: @ffffff800d1320b0 (virt) @ffe040b0 (dma) 0x000000 - rsvd64[2]
[ 133.194913] tegra-xusb 3610000.xhci: @ffffff800d1320b8 (virt) @ffe040b8 (dma) 0x000000 - rsvd64[3]
[ 133.204093] tegra-xusb 3610000.xhci: OUT Endpoint 01 Context (ep_index 01):
[ 133.210864] tegra-xusb 3610000.xhci: @ffffff800d1320c0 (virt) @ffe040c0 (dma) 0x000000 - ep_info
[ 133.219953] tegra-xusb 3610000.xhci: @ffffff800d1320c4 (virt) @ffe040c4 (dma) 0x2000016 - ep_info2
[ 133.229032] tegra-xusb 3610000.xhci: @ffffff800d1320c8 (virt) @ffe040c8 (dma) 0xffe0c001 - deq
[ 133.237606] tegra-xusb 3610000.xhci: @ffffff800d1320d0 (virt) @ffe040d0 (dma) 0x000000 - tx_info
[ 133.246090] tegra-xusb 3610000.xhci: @ffffff800d1320d4 (virt) @ffe040d4 (dma) 0x000000 - rsvd[0]
[ 133.254836] tegra-xusb 3610000.xhci: @ffffff800d1320d8 (virt) @ffe040d8 (dma) 0x000000 - rsvd[1]
[ 133.263929] tegra-xusb 3610000.xhci: @ffffff800d1320dc (virt) @ffe040dc (dma) 0x000000 - rsvd[2]
[ 133.272408] tegra-xusb 3610000.xhci: @ffffff800d1320e0 (virt) @ffe040e0 (dma) 0x000000 - rsvd64[0]
[ 133.281470] tegra-xusb 3610000.xhci: @ffffff800d1320e8 (virt) @ffe040e8 (dma) 0x000000 - rsvd64[1]
[ 133.290552] tegra-xusb 3610000.xhci: @ffffff800d1320f0 (virt) @ffe040f0 (dma) 0x000000 - rsvd64[2]
[ 133.299549] tegra-xusb 3610000.xhci: @ffffff800d1320f8 (virt) @ffe040f8 (dma) 0x000000 - rsvd64[3]
[ 133.309024] tegra-xusb 3610000.xhci: IN Endpoint 01 Context (ep_index 02):
[ 133.316039] tegra-xusb 3610000.xhci: @ffffff800d132100 (virt) @ffe04100 (dma) 0x000000 - ep_info
[ 133.324864] tegra-xusb 3610000.xhci: @ffffff800d132104 (virt) @ffe04104 (dma) 0x2000036 - ep_info2
[ 133.333983] tegra-xusb 3610000.xhci: @ffffff800d132108 (virt) @ffe04108 (dma) 0xffe0a001 - deq
[ 133.342288] tegra-xusb 3610000.xhci: @ffffff800d132110 (virt) @ffe04110 (dma) 0x000000 - tx_info
[ 133.351020] tegra-xusb 3610000.xhci: @ffffff800d132114 (virt) @ffe04114 (dma) 0x000000 - rsvd[0]
[ 133.360046] tegra-xusb 3610000.xhci: @ffffff800d132118 (virt) @ffe04118 (dma) 0x000000 - rsvd[1]
[ 133.368549] tegra-xusb 3610000.xhci: @ffffff800d13211c (virt) @ffe0411c (dma) 0x000000 - rsvd[2]
[ 133.377353] tegra-xusb 3610000.xhci: @ffffff800d132120 (virt) @ffe04120 (dma) 0x000000 - rsvd64[0]
[ 133.386393] tegra-xusb 3610000.xhci: @ffffff800d132128 (virt) @ffe04128 (dma) 0x000000 - rsvd64[1]
[ 133.395446] tegra-xusb 3610000.xhci: @ffffff800d132130 (virt) @ffe04130 (dma) 0x000000 - rsvd64[2]
[ 133.404671] tegra-xusb 3610000.xhci: @ffffff800d132138 (virt) @ffe04138 (dma) 0x000000 - rsvd64[3]
[ 133.413620] tegra-xusb 3610000.xhci: OUT Endpoint 02 Context (ep_index 03):
[ 133.420664] tegra-xusb 3610000.xhci: @ffffff800d132140 (virt) @ffe04140 (dma) 0x000000 - ep_info
[ 133.429943] tegra-xusb 3610000.xhci: @ffffff800d132144 (virt) @ffe04144 (dma) 0x2000016 - ep_info2
[ 133.439008] tegra-xusb 3610000.xhci: @ffffff800d132148 (virt) @ffe04148 (dma) 0xffe22001 - deq
[ 133.447545] tegra-xusb 3610000.xhci: @ffffff800d132150 (virt) @ffe04150 (dma) 0x000000 - tx_info
[ 133.456157] tegra-xusb 3610000.xhci: @ffffff800d132154 (virt) @ffe04154 (dma) 0x000000 - rsvd[0]
[ 133.464922] tegra-xusb 3610000.xhci: @ffffff800d132158 (virt) @ffe04158 (dma) 0x000000 - rsvd[1]
[ 133.473380] tegra-xusb 3610000.xhci: @ffffff800d13215c (virt) @ffe0415c (dma) 0x000000 - rsvd[2]
[ 133.482399] tegra-xusb 3610000.xhci: @ffffff800d132160 (virt) @ffe04160 (dma) 0x000000 - rsvd64[0]
[ 133.491488] tegra-xusb 3610000.xhci: @ffffff800d132168 (virt) @ffe04168 (dma) 0x000000 - rsvd64[1]
[ 133.500594] tegra-xusb 3610000.xhci: @ffffff800d132170 (virt) @ffe04170 (dma) 0x000000 - rsvd64[2]
[ 133.509351] tegra-xusb 3610000.xhci: @ffffff800d132178 (virt) @ffe04178 (dma) 0x000000 - rsvd64[3]
[ 133.518756] tegra-xusb 3610000.xhci: IN Endpoint 02 Context (ep_index 04):
[ 133.525613] tegra-xusb 3610000.xhci: @ffffff800d132180 (virt) @ffe04180 (dma) 0x080000 - ep_info
[ 133.534397] tegra-xusb 3610000.xhci: @ffffff800d132184 (virt) @ffe04184 (dma) 0x08003e - ep_info2
[ 133.543455] tegra-xusb 3610000.xhci: @ffffff800d132188 (virt) @ffe04188 (dma) 0xffe09001 - deq
[ 133.551804] tegra-xusb 3610000.xhci: @ffffff800d132190 (virt) @ffe04190 (dma) 0x080008 - tx_info
[ 133.560540] tegra-xusb 3610000.xhci: @ffffff800d132194 (virt) @ffe04194 (dma) 0x000000 - rsvd[0]
[ 133.569560] tegra-xusb 3610000.xhci: @ffffff800d132198 (virt) @ffe04198 (dma) 0x000000 - rsvd[1]
[ 133.578295] tegra-xusb 3610000.xhci: @ffffff800d13219c (virt) @ffe0419c (dma) 0x000000 - rsvd[2]
[ 133.587062] tegra-xusb 3610000.xhci: @ffffff800d1321a0 (virt) @ffe041a0 (dma) 0x000000 - rsvd64[0]
[ 133.596050] tegra-xusb 3610000.xhci: @ffffff800d1321a8 (virt) @ffe041a8 (dma) 0x000000 - rsvd64[1]
[ 133.605200] tegra-xusb 3610000.xhci: @ffffff800d1321b0 (virt) @ffe041b0 (dma) 0x000000 - rsvd64[2]
[ 133.614098] tegra-xusb 3610000.xhci: @ffffff800d1321b8 (virt) @ffe041b8 (dma) 0x000000 - rsvd64[3]
[ 133.623502] tegra-xusb 3610000.xhci: OUT Endpoint 03 Context (ep_index 05):
[ 133.630534] tegra-xusb 3610000.xhci: @ffffff800d1321c0 (virt) @ffe041c0 (dma) 0x000000 - ep_info
[ 133.639357] tegra-xusb 3610000.xhci: @ffffff800d1321c4 (virt) @ffe041c4 (dma) 0x2000016 - ep_info2
[ 133.648239] tegra-xusb 3610000.xhci: @ffffff800d1321c8 (virt) @ffe041c8 (dma) 0xffe26001 - deq
[ 133.656883] tegra-xusb 3610000.xhci: @ffffff800d1321d0 (virt) @ffe041d0 (dma) 0x000000 - tx_info
[ 133.665839] tegra-xusb 3610000.xhci: @ffffff800d1321d4 (virt) @ffe041d4 (dma) 0x000000 - rsvd[0]
[ 133.674546] tegra-xusb 3610000.xhci: @ffffff800d1321d8 (virt) @ffe041d8 (dma) 0x000000 - rsvd[1]
[ 133.683290] tegra-xusb 3610000.xhci: @ffffff800d1321dc (virt) @ffe041dc (dma) 0x000000 - rsvd[2]
[ 133.691787] tegra-xusb 3610000.xhci: @ffffff800d1321e0 (virt) @ffe041e0 (dma) 0x000000 - rsvd64[0]
[ 133.700897] tegra-xusb 3610000.xhci: @ffffff800d1321e8 (virt) @ffe041e8 (dma) 0x000000 - rsvd64[1]
[ 133.710055] tegra-xusb 3610000.xhci: @ffffff800d1321f0 (virt) @ffe041f0 (dma) 0x000000 - rsvd64[2]
[ 133.719298] tegra-xusb 3610000.xhci: @ffffff800d1321f8 (virt) @ffe041f8 (dma) 0x000000 - rsvd64[3]
[ 133.728166] tegra-xusb 3610000.xhci: IN Endpoint 03 Context (ep_index 06):
[ 133.735202] tegra-xusb 3610000.xhci: @ffffff800d132200 (virt) @ffe04200 (dma) 0x000000 - ep_info
[ 133.744270] tegra-xusb 3610000.xhci: @ffffff800d132204 (virt) @ffe04204 (dma) 0x2000036 - ep_info2
[ 133.753129] tegra-xusb 3610000.xhci: @ffffff800d132208 (virt) @ffe04208 (dma) 0xffe20001 - deq
[ 133.761971] tegra-xusb 3610000.xhci: @ffffff800d132210 (virt) @ffe04210 (dma) 0x000000 - tx_info
[ 133.770432] tegra-xusb 3610000.xhci: @ffffff800d132214 (virt) @ffe04214 (dma) 0x000000 - rsvd[0]
[ 133.779444] tegra-xusb 3610000.xhci: @ffffff800d132218 (virt) @ffe04218 (dma) 0x000000 - rsvd[1]
[ 133.788248] tegra-xusb 3610000.xhci: @ffffff800d13221c (virt) @ffe0421c (dma) 0x000000 - rsvd[2]
[ 133.796968] tegra-xusb 3610000.xhci: @ffffff800d132220 (virt) @ffe04220 (dma) 0x000000 - rsvd64[0]
[ 133.805712] tegra-xusb 3610000.xhci: @ffffff800d132228 (virt) @ffe04228 (dma) 0x000000 - rsvd64[1]
[ 133.815079] tegra-xusb 3610000.xhci: @ffffff800d132230 (virt) @ffe04230 (dma) 0x000000 - rsvd64[2]
[ 133.823798] tegra-xusb 3610000.xhci: @ffffff800d132238 (virt) @ffe04238 (dma) 0x000000 - rsvd64[3]
[ 133.833257] tegra-xusb 3610000.xhci: OUT Endpoint 04 Context (ep_index 07):
[ 133.840286] tegra-xusb 3610000.xhci: @ffffff800d132240 (virt) @ffe04240 (dma) 0x000000 - ep_info
[ 133.848839] tegra-xusb 3610000.xhci: @ffffff800d132244 (virt) @ffe04244 (dma) 0x000000 - ep_info2
[ 133.857699] tegra-xusb 3610000.xhci: @ffffff800d132248 (virt) @ffe04248 (dma) 0x000000 - deq
[ 133.866500] tegra-xusb 3610000.xhci: @ffffff800d132250 (virt) @ffe04250 (dma) 0x000000 - tx_info
[ 133.875013] tegra-xusb 3610000.xhci: @ffffff800d132254 (virt) @ffe04254 (dma) 0x000000 - rsvd[0]
[ 133.884014] tegra-xusb 3610000.xhci: @ffffff800d132258 (virt) @ffe04258 (dma) 0x000000 - rsvd[1]
[ 133.892556] tegra-xusb 3610000.xhci: @ffffff800d13225c (virt) @ffe0425c (dma) 0x000000 - rsvd[2]
[ 133.901282] tegra-xusb 3610000.xhci: @ffffff800d132260 (virt) @ffe04260 (dma) 0x000000 - rsvd64[0]
[ 133.910618] tegra-xusb 3610000.xhci: @ffffff800d132268 (virt) @ffe04268 (dma) 0x000000 - rsvd64[1]
[ 133.919831] tegra-xusb 3610000.xhci: @ffffff800d132270 (virt) @ffe04270 (dma) 0x000000 - rsvd64[2]
[ 133.928875] tegra-xusb 3610000.xhci: @ffffff800d132278 (virt) @ffe04278 (dma) 0x000000 - rsvd64[3]
[ 133.937935] tegra-xusb 3610000.xhci: IN Endpoint 04 Context (ep_index 08):
[ 133.944912] tegra-xusb 3610000.xhci: @ffffff800d132280 (virt) @ffe04280 (dma) 0x080000 - ep_info
[ 133.953539] tegra-xusb 3610000.xhci: @ffffff800d132284 (virt) @ffe04284 (dma) 0x0a003e - ep_info2
[ 133.962554] tegra-xusb 3610000.xhci: @ffffff800d132288 (virt) @ffe04288 (dma) 0xffe0e001 - deq
[ 133.971147] tegra-xusb 3610000.xhci: @ffffff800d132290 (virt) @ffe04290 (dma) 0x0a000a - tx_info
[ 133.979953] tegra-xusb 3610000.xhci: @ffffff800d132294 (virt) @ffe04294 (dma) 0x000000 - rsvd[0]
[ 133.988388] tegra-xusb 3610000.xhci: @ffffff800d132298 (virt) @ffe04298 (dma) 0x000000 - rsvd[1]
[ 133.997142] tegra-xusb 3610000.xhci: @ffffff800d13229c (virt) @ffe0429c (dma) 0x000000 - rsvd[2]
[ 134.006123] tegra-xusb 3610000.xhci: @ffffff800d1322a0 (virt) @ffe042a0 (dma) 0x000000 - rsvd64[0]
[ 134.014903] tegra-xusb 3610000.xhci: @ffffff800d1322a8 (virt) @ffe042a8 (dma) 0x000000 - rsvd64[1]
[ 134.024053] tegra-xusb 3610000.xhci: @ffffff800d1322b0 (virt) @ffe042b0 (dma) 0x000000 - rsvd64[2]
[ 134.033571] tegra-xusb 3610000.xhci: @ffffff800d1322b8 (virt) @ffe042b8 (dma) 0x000000 - rsvd64[3]
[ 134.042689] tegra-xusb 3610000.xhci: OUT Endpoint 05 Context (ep_index 09):
[ 134.049439] tegra-xusb 3610000.xhci: @ffffff800d1322c0 (virt) @ffe042c0 (dma) 0x000000 - ep_info
[ 134.058216] tegra-xusb 3610000.xhci: @ffffff800d1322c4 (virt) @ffe042c4 (dma) 0x000000 - ep_info2
[ 134.067358] tegra-xusb 3610000.xhci: @ffffff800d1322c8 (virt) @ffe042c8 (dma) 0x000000 - deq
[ 134.075663] tegra-xusb 3610000.xhci: @ffffff800d1322d0 (virt) @ffe042d0 (dma) 0x000000 - tx_info
[ 134.084645] tegra-xusb 3610000.xhci: @ffffff800d1322d4 (virt) @ffe042d4 (dma) 0x000000 - rsvd[0]
[ 134.093380] tegra-xusb 3610000.xhci: @ffffff800d1322d8 (virt) @ffe042d8 (dma) 0x000000 - rsvd[1]
[ 134.102180] tegra-xusb 3610000.xhci: @ffffff800d1322dc (virt) @ffe042dc (dma) 0x000000 - rsvd[2]
[ 134.110868] tegra-xusb 3610000.xhci: @ffffff800d1322e0 (virt) @ffe042e0 (dma) 0x000000 - rsvd64[0]
[ 134.119714] tegra-xusb 3610000.xhci: @ffffff800d1322e8 (virt) @ffe042e8 (dma) 0x000000 - rsvd64[1]
[ 134.129064] tegra-xusb 3610000.xhci: @ffffff800d1322f0 (virt) @ffe042f0 (dma) 0x000000 - rsvd64[2]
[ 134.138013] tegra-xusb 3610000.xhci: @ffffff800d1322f8 (virt) @ffe042f8 (dma) 0x000000 - rsvd64[3]
[ 134.147280] tegra-xusb 3610000.xhci: IN Endpoint 05 Context (ep_index 10):
[ 134.154296] tegra-xusb 3610000.xhci: @ffffff800d132300 (virt) @ffe04300 (dma) 0x000000 - ep_info
[ 134.163109] tegra-xusb 3610000.xhci: @ffffff800d132304 (virt) @ffe04304 (dma) 0x2000036 - ep_info2
[ 134.172208] tegra-xusb 3610000.xhci: @ffffff800d132308 (virt) @ffe04308 (dma) 0xffe24001 - deq
[ 134.180640] tegra-xusb 3610000.xhci: @ffffff800d132310 (virt) @ffe04310 (dma) 0x000000 - tx_info
[ 134.189535] tegra-xusb 3610000.xhci: @ffffff800d132314 (virt) @ffe04314 (dma) 0x000000 - rsvd[0]
[ 134.198277] tegra-xusb 3610000.xhci: @ffffff800d132318 (virt) @ffe04318 (dma) 0x000000 - rsvd[1]
[ 134.206816] tegra-xusb 3610000.xhci: @ffffff800d13231c (virt) @ffe0431c (dma) 0x000000 - rsvd[2]
[ 134.215532] tegra-xusb 3610000.xhci: @ffffff800d132320 (virt) @ffe04320 (dma) 0x000000 - rsvd64[0]
[ 134.224742] tegra-xusb 3610000.xhci: @ffffff800d132328 (virt) @ffe04328 (dma) 0x000000 - rsvd64[1]
[ 134.233999] tegra-xusb 3610000.xhci: @ffffff800d132330 (virt) @ffe04330 (dma) 0x000000 - rsvd64[2]
[ 134.242990] tegra-xusb 3610000.xhci: @ffffff800d132338 (virt) @ffe04338 (dma) 0x000000 - rsvd64[3]
[ 134.252164] tegra-xusb 3610000.xhci: OUT Endpoint 06 Context (ep_index 11):
[ 134.259130] tegra-xusb 3610000.xhci: @ffffff800d132340 (virt) @ffe04340 (dma) 0x000000 - ep_info
[ 134.268013] tegra-xusb 3610000.xhci: @ffffff800d132344 (virt) @ffe04344 (dma) 0x000000 - ep_info2
[ 134.276595] tegra-xusb 3610000.xhci: @ffffff800d132348 (virt) @ffe04348 (dma) 0x000000 - deq
[ 134.285356] tegra-xusb 3610000.xhci: @ffffff800d132350 (virt) @ffe04350 (dma) 0x000000 - tx_info
[ 134.293836] tegra-xusb 3610000.xhci: @ffffff800d132354 (virt) @ffe04354 (dma) 0x000000 - rsvd[0]
[ 134.302805] tegra-xusb 3610000.xhci: @ffffff800d132358 (virt) @ffe04358 (dma) 0x000000 - rsvd[1]
[ 134.311927] tegra-xusb 3610000.xhci: @ffffff800d13235c (virt) @ffe0435c (dma) 0x000000 - rsvd[2]
[ 134.320202] tegra-xusb 3610000.xhci: @ffffff800d132360 (virt) @ffe04360 (dma) 0x000000 - rsvd64[0]
[ 134.329500] tegra-xusb 3610000.xhci: @ffffff800d132368 (virt) @ffe04368 (dma) 0x000000 - rsvd64[1]
[ 134.338597] tegra-xusb 3610000.xhci: @ffffff800d132370 (virt) @ffe04370 (dma) 0x000000 - rsvd64[2]
[ 134.347465] tegra-xusb 3610000.xhci: @ffffff800d132378 (virt) @ffe04378 (dma) 0x000000 - rsvd64[3]
[ 134.356781] tegra-xusb 3610000.xhci: IN Endpoint 06 Context (ep_index 12):
[ 134.363769] tegra-xusb 3610000.xhci: @ffffff800d132380 (virt) @ffe04380 (dma) 0x000000 - ep_info
[ 134.372375] tegra-xusb 3610000.xhci: @ffffff800d132384 (virt) @ffe04384 (dma) 0x000000 - ep_info2
[ 134.381490] tegra-xusb 3610000.xhci: @ffffff800d132388 (virt) @ffe04388 (dma) 0x000000 - deq
[ 134.389973] tegra-xusb 3610000.xhci: @ffffff800d132390 (virt) @ffe04390 (dma) 0x000000 - tx_info
[ 134.398760] tegra-xusb 3610000.xhci: @ffffff800d132394 (virt) @ffe04394 (dma) 0x000000 - rsvd[0]
[ 134.407484] tegra-xusb 3610000.xhci: @ffffff800d132398 (virt) @ffe04398 (dma) 0x000000 - rsvd[1]
[ 134.416241] tegra-xusb 3610000.xhci: @ffffff800d13239c (virt) @ffe0439c (dma) 0x000000 - rsvd[2]
[ 134.424980] tegra-xusb 3610000.xhci: @ffffff800d1323a0 (virt) @ffe043a0 (dma) 0x000000 - rsvd64[0]
[ 134.434003] tegra-xusb 3610000.xhci: @ffffff800d1323a8 (virt) @ffe043a8 (dma) 0x000000 - rsvd64[1]
[ 134.442918] tegra-xusb 3610000.xhci: @ffffff800d1323b0 (virt) @ffe043b0 (dma) 0x000000 - rsvd64[2]
[ 134.452298] tegra-xusb 3610000.xhci: @ffffff800d1323b8 (virt) @ffe043b8 (dma) 0x000000 - rsvd64[3]
[ 134.461089] tegra-xusb 3610000.xhci: OUT Endpoint 07 Context (ep_index 13):
[ 134.468325] tegra-xusb 3610000.xhci: @ffffff800d1323c0 (virt) @ffe043c0 (dma) 0x000000 - ep_info
[ 134.477131] tegra-xusb 3610000.xhci: @ffffff800d1323c4 (virt) @ffe043c4 (dma) 0x000000 - ep_info2
[ 134.485753] tegra-xusb 3610000.xhci: @ffffff800d1323c8 (virt) @ffe043c8 (dma) 0x000000 - deq
[ 134.494589] tegra-xusb 3610000.xhci: @ffffff800d1323d0 (virt) @ffe043d0 (dma) 0x000000 - tx_info
[ 134.503301] tegra-xusb 3610000.xhci: @ffffff800d1323d4 (virt) @ffe043d4 (dma) 0x000000 - rsvd[0]
[ 134.512039] tegra-xusb 3610000.xhci: @ffffff800d1323d8 (virt) @ffe043d8 (dma) 0x000000 - rsvd[1]
[ 134.520803] tegra-xusb 3610000.xhci: @ffffff800d1323dc (virt) @ffe043dc (dma) 0x000000 - rsvd[2]
[ 134.529275] tegra-xusb 3610000.xhci: @ffffff800d1323e0 (virt) @ffe043e0 (dma) 0x000000 - rsvd64[0]
[ 134.538651] tegra-xusb 3610000.xhci: @ffffff800d1323e8 (virt) @ffe043e8 (dma) 0x000000 - rsvd64[1]
[ 134.547735] tegra-xusb 3610000.xhci: @ffffff800d1323f0 (virt) @ffe043f0 (dma) 0x000000 - rsvd64[2]
[ 134.556925] tegra-xusb 3610000.xhci: @ffffff800d1323f8 (virt) @ffe043f8 (dma) 0x000000 - rsvd64[3]
[ 134.565673] tegra-xusb 3610000.xhci: IN Endpoint 07 Context (ep_index 14):
[ 134.573014] tegra-xusb 3610000.xhci: @ffffff800d132400 (virt) @ffe04400 (dma) 0x080000 - ep_info
[ 134.581769] tegra-xusb 3610000.xhci: @ffffff800d132404 (virt) @ffe04404 (dma) 0x10003e - ep_info2
[ 134.590608] tegra-xusb 3610000.xhci: @ffffff800d132408 (virt) @ffe04408 (dma) 0xffe28001 - deq
[ 134.599171] tegra-xusb 3610000.xhci: @ffffff800d132410 (virt) @ffe04410 (dma) 0x100010 - tx_info
[ 134.607675] tegra-xusb 3610000.xhci: @ffffff800d132414 (virt) @ffe04414 (dma) 0x000000 - rsvd[0]
[ 134.616686] tegra-xusb 3610000.xhci: @ffffff800d132418 (virt) @ffe04418 (dma) 0x000000 - rsvd[1]
[ 134.625711] tegra-xusb 3610000.xhci: @ffffff800d13241c (virt) @ffe0441c (dma) 0x000000 - rsvd[2]
[ 134.634100] tegra-xusb 3610000.xhci: @ffffff800d132420 (virt) @ffe04420 (dma) 0x000000 - rsvd64[0]
[ 134.643340] tegra-xusb 3610000.xhci: @ffffff800d132428 (virt) @ffe04428 (dma) 0x000000 - rsvd64[1]
[ 134.652059] tegra-xusb 3610000.xhci: @ffffff800d132430 (virt) @ffe04430 (dma) 0x000000 - rsvd64[2]
[ 134.661488] tegra-xusb 3610000.xhci: @ffffff800d132438 (virt) @ffe04438 (dma) 0x000000 - rsvd64[3]
[ 134.670439] tegra-xusb 3610000.xhci: // Ding dong!
[ 134.677037] tegra-xusb 3610000.xhci: Successful Endpoint Configure command
[ 134.682440] tegra-xusb 3610000.xhci: Output context after successful config ep cmd:
[ 134.690202] tegra-xusb 3610000.xhci: Slot Context:
[ 134.695097] tegra-xusb 3610000.xhci: @ffffff800d0a7000 (virt) @ffe05000 (dma) 0x78300001 - dev_info
[ 134.704567] tegra-xusb 3610000.xhci: @ffffff800d0a7004 (virt) @ffe05004 (dma) 0x070000 - dev_info2
[ 134.713211] tegra-xusb 3610000.xhci: @ffffff800d0a7008 (virt) @ffe05008 (dma) 0x000000 - tt_info
[ 134.721957] tegra-xusb 3610000.xhci: @ffffff800d0a700c (virt) @ffe0500c (dma) 0x18000006 - dev_state
[ 134.730956] tegra-xusb 3610000.xhci: @ffffff800d0a7010 (virt) @ffe05010 (dma) 0x1070a03 - rsvd[0]
[ 134.739967] tegra-xusb 3610000.xhci: @ffffff800d0a7014 (virt) @ffe05014 (dma) 0x000000 - rsvd[1]
[ 134.748574] tegra-xusb 3610000.xhci: @ffffff800d0a7018 (virt) @ffe05018 (dma) 0x000000 - rsvd[2]
[ 134.757063] tegra-xusb 3610000.xhci: @ffffff800d0a701c (virt) @ffe0501c (dma) 0x000000 - rsvd[3]
[ 134.765787] tegra-xusb 3610000.xhci: @ffffff800d0a7020 (virt) @ffe05020 (dma) 0x000000 - rsvd64[0]
[ 134.775166] tegra-xusb 3610000.xhci: @ffffff800d0a7028 (virt) @ffe05028 (dma) 0x000000 - rsvd64[1]
[ 134.784167] tegra-xusb 3610000.xhci: @ffffff800d0a7030 (virt) @ffe05030 (dma) 0x000000 - rsvd64[2]
[ 134.793066] tegra-xusb 3610000.xhci: @ffffff800d0a7038 (virt) @ffe05038 (dma) 0x000000 - rsvd64[3]
[ 134.802188] tegra-xusb 3610000.xhci: IN Endpoint 00 Context (ep_index 00):
[ 134.809566] tegra-xusb 3610000.xhci: @ffffff800d0a7040 (virt) @ffe05040 (dma) 0x000001 - ep_info
[ 134.818487] tegra-xusb 3610000.xhci: @ffffff800d0a7044 (virt) @ffe05044 (dma) 0x400026 - ep_info2
[ 134.827000] tegra-xusb 3610000.xhci: @ffffff800d0a7048 (virt) @ffe05048 (dma) 0xffe061e1 - deq
[ 134.835653] tegra-xusb 3610000.xhci: @ffffff800d0a7050 (virt) @ffe05050 (dma) 0x000000 - tx_info
[ 134.844569] tegra-xusb 3610000.xhci: @ffffff800d0a7054 (virt) @ffe05054 (dma) 0x8000000 - rsvd[0]
[ 134.853369] tegra-xusb 3610000.xhci: @ffffff800d0a7058 (virt) @ffe05058 (dma) 0x12c0000 - rsvd[1]
[ 134.862081] tegra-xusb 3610000.xhci: @ffffff800d0a705c (virt) @ffe0505c (dma) 0x8000000 - rsvd[2]
[ 134.870793] tegra-xusb 3610000.xhci: @ffffff800d0a7060 (virt) @ffe05060 (dma) 0x00c080 - rsvd64[0]
[ 134.879803] tegra-xusb 3610000.xhci: @ffffff800d0a7068 (virt) @ffe05068 (dma) 0x700000600080000 - rsvd64[1]
[ 134.889487] tegra-xusb 3610000.xhci: @ffffff800d0a7070 (virt) @ffe05070 (dma) 0x8300001 - rsvd64[2]
[ 134.898665] tegra-xusb 3610000.xhci: @ffffff800d0a7078 (virt) @ffe05078 (dma) 0x000000 - rsvd64[3]
[ 134.907809] tegra-xusb 3610000.xhci: OUT Endpoint 01 Context (ep_index 01):
[ 134.915103] tegra-xusb 3610000.xhci: @ffffff800d0a7080 (virt) @ffe05080 (dma) 0x000001 - ep_info
[ 134.923997] tegra-xusb 3610000.xhci: @ffffff800d0a7084 (virt) @ffe05084 (dma) 0x2000016 - ep_info2
[ 134.933171] tegra-xusb 3610000.xhci: @ffffff800d0a7088 (virt) @ffe05088 (dma) 0xffe0c001 - deq
[ 134.941565] tegra-xusb 3610000.xhci: @ffffff800d0a7090 (virt) @ffe05090 (dma) 0x000000 - tx_info
[ 134.950351] tegra-xusb 3610000.xhci: @ffffff800d0a7094 (virt) @ffe05094 (dma) 0x000000 - rsvd[0]
[ 134.959439] tegra-xusb 3610000.xhci: @ffffff800d0a7098 (virt) @ffe05098 (dma) 0x12c0000 - rsvd[1]
[ 134.968264] tegra-xusb 3610000.xhci: @ffffff800d0a709c (virt) @ffe0509c (dma) 0x8000000 - rsvd[2]
[ 134.976681] tegra-xusb 3610000.xhci: @ffffff800d0a70a0 (virt) @ffe050a0 (dma) 0x00c000 - rsvd64[0]
[ 134.986068] tegra-xusb 3610000.xhci: @ffffff800d0a70a8 (virt) @ffe050a8 (dma) 0x700000600080000 - rsvd64[1]
[ 134.995653] tegra-xusb 3610000.xhci: @ffffff800d0a70b0 (virt) @ffe050b0 (dma) 0x10300001 - rsvd64[2]
[ 135.005026] tegra-xusb 3610000.xhci: @ffffff800d0a70b8 (virt) @ffe050b8 (dma) 0x000000 - rsvd64[3]
[ 135.014105] tegra-xusb 3610000.xhci: IN Endpoint 01 Context (ep_index 02):
[ 135.021189] tegra-xusb 3610000.xhci: @ffffff800d0a70c0 (virt) @ffe050c0 (dma) 0x000001 - ep_info
[ 135.029957] tegra-xusb 3610000.xhci: @ffffff800d0a70c4 (virt) @ffe050c4 (dma) 0x2000036 - ep_info2
[ 135.039188] tegra-xusb 3610000.xhci: @ffffff800d0a70c8 (virt) @ffe050c8 (dma) 0xffe0a001 - deq
[ 135.047546] tegra-xusb 3610000.xhci: @ffffff800d0a70d0 (virt) @ffe050d0 (dma) 0x000000 - tx_info
[ 135.056616] tegra-xusb 3610000.xhci: @ffffff800d0a70d4 (virt) @ffe050d4 (dma) 0x000000 - rsvd[0]
[ 135.065051] tegra-xusb 3610000.xhci: @ffffff800d0a70d8 (virt) @ffe050d8 (dma) 0x12c0000 - rsvd[1]
[ 135.074044] tegra-xusb 3610000.xhci: @ffffff800d0a70dc (virt) @ffe050dc (dma) 0x8000000 - rsvd[2]
[ 135.082993] tegra-xusb 3610000.xhci: @ffffff800d0a70e0 (virt) @ffe050e0 (dma) 0x00c000 - rsvd64[0]
[ 135.091836] tegra-xusb 3610000.xhci: @ffffff800d0a70e8 (virt) @ffe050e8 (dma) 0x700000600080000 - rsvd64[1]
[ 135.101743] tegra-xusb 3610000.xhci: @ffffff800d0a70f0 (virt) @ffe050f0 (dma) 0x18300001 - rsvd64[2]
[ 135.110990] tegra-xusb 3610000.xhci: @ffffff800d0a70f8 (virt) @ffe050f8 (dma) 0x000000 - rsvd64[3]
[ 135.119849] tegra-xusb 3610000.xhci: OUT Endpoint 02 Context (ep_index 03):
[ 135.127137] tegra-xusb 3610000.xhci: @ffffff800d0a7100 (virt) @ffe05100 (dma) 0x000001 - ep_info
[ 135.135955] tegra-xusb 3610000.xhci: @ffffff800d0a7104 (virt) @ffe05104 (dma) 0x2000016 - ep_info2
[ 135.145170] tegra-xusb 3610000.xhci: @ffffff800d0a7108 (virt) @ffe05108 (dma) 0xffe22001 - deq
[ 135.153520] tegra-xusb 3610000.xhci: @ffffff800d0a7110 (virt) @ffe05110 (dma) 0x000000 - tx_info
[ 135.162293] tegra-xusb 3610000.xhci: @ffffff800d0a7114 (virt) @ffe05114 (dma) 0x000000 - rsvd[0]
[ 135.171330] tegra-xusb 3610000.xhci: @ffffff800d0a7118 (virt) @ffe05118 (dma) 0x12c0000 - rsvd[1]
[ 135.179943] tegra-xusb 3610000.xhci: @ffffff800d0a711c (virt) @ffe0511c (dma) 0x8000000 - rsvd[2]
[ 135.188801] tegra-xusb 3610000.xhci: @ffffff800d0a7120 (virt) @ffe05120 (dma) 0x00c000 - rsvd64[0]
[ 135.198080] tegra-xusb 3610000.xhci: @ffffff800d0a7128 (virt) @ffe05128 (dma) 0x700000600080000 - rsvd64[1]
[ 135.207737] tegra-xusb 3610000.xhci: @ffffff800d0a7130 (virt) @ffe05130 (dma) 0x20300001 - rsvd64[2]
[ 135.216945] tegra-xusb 3610000.xhci: @ffffff800d0a7138 (virt) @ffe05138 (dma) 0x000000 - rsvd64[3]
[ 135.225905] tegra-xusb 3610000.xhci: IN Endpoint 02 Context (ep_index 04):
[ 135.233363] tegra-xusb 3610000.xhci: @ffffff800d0a7140 (virt) @ffe05140 (dma) 0x080001 - ep_info
[ 135.241748] tegra-xusb 3610000.xhci: @ffffff800d0a7144 (virt) @ffe05144 (dma) 0x08003e - ep_info2
[ 135.250663] tegra-xusb 3610000.xhci: @ffffff800d0a7148 (virt) @ffe05148 (dma) 0xffe09001 - deq
[ 135.259583] tegra-xusb 3610000.xhci: @ffffff800d0a7150 (virt) @ffe05150 (dma) 0x080008 - tx_info
[ 135.268360] tegra-xusb 3610000.xhci: @ffffff800d0a7154 (virt) @ffe05154 (dma) 0x000000 - rsvd[0]
[ 135.276799] tegra-xusb 3610000.xhci: @ffffff800d0a7158 (virt) @ffe05158 (dma) 0x32c0000 - rsvd[1]
[ 135.285763] tegra-xusb 3610000.xhci: @ffffff800d0a715c (virt) @ffe0515c (dma) 0x8000000 - rsvd[2]
[ 135.294620] tegra-xusb 3610000.xhci: @ffffff800d0a7160 (virt) @ffe05160 (dma) 0x2000c000 - rsvd64[0]
[ 135.303816] tegra-xusb 3610000.xhci: @ffffff800d0a7168 (virt) @ffe05168 (dma) 0x700000600080000 - rsvd64[1]
[ 135.313641] tegra-xusb 3610000.xhci: @ffffff800d0a7170 (virt) @ffe05170 (dma) 0x28300001 - rsvd64[2]
[ 135.322877] tegra-xusb 3610000.xhci: @ffffff800d0a7178 (virt) @ffe05178 (dma) 0x000000 - rsvd64[3]
[ 135.331837] tegra-xusb 3610000.xhci: OUT Endpoint 03 Context (ep_index 05):
[ 135.339039] tegra-xusb 3610000.xhci: @ffffff800d0a7180 (virt) @ffe05180 (dma) 0x000001 - ep_info
[ 135.347845] tegra-xusb 3610000.xhci: @ffffff800d0a7184 (virt) @ffe05184 (dma) 0x2000016 - ep_info2
[ 135.356785] tegra-xusb 3610000.xhci: @ffffff800d0a7188 (virt) @ffe05188 (dma) 0xffe26001 - deq
[ 135.365820] tegra-xusb 3610000.xhci: @ffffff800d0a7190 (virt) @ffe05190 (dma) 0x000000 - tx_info
[ 135.374623] tegra-xusb 3610000.xhci: @ffffff800d0a7194 (virt) @ffe05194 (dma) 0x000000 - rsvd[0]
[ 135.383196] tegra-xusb 3610000.xhci: @ffffff800d0a7198 (virt) @ffe05198 (dma) 0x12c0000 - rsvd[1]
[ 135.392092] tegra-xusb 3610000.xhci: @ffffff800d0a719c (virt) @ffe0519c (dma) 0x8000000 - rsvd[2]
[ 135.400833] tegra-xusb 3610000.xhci: @ffffff800d0a71a0 (virt) @ffe051a0 (dma) 0x00c000 - rsvd64[0]
[ 135.410182] tegra-xusb 3610000.xhci: @ffffff800d0a71a8 (virt) @ffe051a8 (dma) 0x700000600080000 - rsvd64[1]
[ 135.419834] tegra-xusb 3610000.xhci: @ffffff800d0a71b0 (virt) @ffe051b0 (dma) 0x30300001 - rsvd64[2]
[ 135.429138] tegra-xusb 3610000.xhci: @ffffff800d0a71b8 (virt) @ffe051b8 (dma) 0x000000 - rsvd64[3]
[ 135.438033] tegra-xusb 3610000.xhci: IN Endpoint 03 Context (ep_index 06):
[ 135.445356] tegra-xusb 3610000.xhci: @ffffff800d0a71c0 (virt) @ffe051c0 (dma) 0x000001 - ep_info
[ 135.454178] tegra-xusb 3610000.xhci: @ffffff800d0a71c4 (virt) @ffe051c4 (dma) 0x2000036 - ep_info2
[ 135.463057] tegra-xusb 3610000.xhci: @ffffff800d0a71c8 (virt) @ffe051c8 (dma) 0xffe20001 - deq
[ 135.471981] tegra-xusb 3610000.xhci: @ffffff800d0a71d0 (virt) @ffe051d0 (dma) 0x000000 - tx_info
[ 135.480735] tegra-xusb 3610000.xhci: @ffffff800d0a71d4 (virt) @ffe051d4 (dma) 0x000000 - rsvd[0]
[ 135.489201] tegra-xusb 3610000.xhci: @ffffff800d0a71d8 (virt) @ffe051d8 (dma) 0x12c0000 - rsvd[1]
[ 135.498179] tegra-xusb 3610000.xhci: @ffffff800d0a71dc (virt) @ffe051dc (dma) 0x8000000 - rsvd[2]
[ 135.506848] tegra-xusb 3610000.xhci: @ffffff800d0a71e0 (virt) @ffe051e0 (dma) 0x00c000 - rsvd64[0]
[ 135.516475] tegra-xusb 3610000.xhci: @ffffff800d0a71e8 (virt) @ffe051e8 (dma) 0x700000600080000 - rsvd64[1]
[ 135.525828] tegra-xusb 3610000.xhci: @ffffff800d0a71f0 (virt) @ffe051f0 (dma) 0x38300001 - rsvd64[2]
[ 135.535090] tegra-xusb 3610000.xhci: @ffffff800d0a71f8 (virt) @ffe051f8 (dma) 0x000000 - rsvd64[3]
[ 135.544082] tegra-xusb 3610000.xhci: OUT Endpoint 04 Context (ep_index 07):
[ 135.551233] tegra-xusb 3610000.xhci: @ffffff800d0a7200 (virt) @ffe05200 (dma) 0x000000 - ep_info
[ 135.559802] tegra-xusb 3610000.xhci: @ffffff800d0a7204 (virt) @ffe05204 (dma) 0x000000 - ep_info2
[ 135.568697] tegra-xusb 3610000.xhci: @ffffff800d0a7208 (virt) @ffe05208 (dma) 0x000000 - deq
[ 135.577680] tegra-xusb 3610000.xhci: @ffffff800d0a7210 (virt) @ffe05210 (dma) 0x000000 - tx_info
[ 135.586125] tegra-xusb 3610000.xhci: @ffffff800d0a7214 (virt) @ffe05214 (dma) 0x000000 - rsvd[0]
[ 135.594961] tegra-xusb 3610000.xhci: @ffffff800d0a7218 (virt) @ffe05218 (dma) 0x000000 - rsvd[1]
[ 135.603785] tegra-xusb 3610000.xhci: @ffffff800d0a721c (virt) @ffe0521c (dma) 0x000000 - rsvd[2]
[ 135.612539] tegra-xusb 3610000.xhci: @ffffff800d0a7220 (virt) @ffe05220 (dma) 0x000000 - rsvd64[0]
[ 135.621887] tegra-xusb 3610000.xhci: @ffffff800d0a7228 (virt) @ffe05228 (dma) 0x000000 - rsvd64[1]
[ 135.631086] tegra-xusb 3610000.xhci: @ffffff800d0a7230 (virt) @ffe05230 (dma) 0x000000 - rsvd64[2]
[ 135.640184] tegra-xusb 3610000.xhci: @ffffff800d0a7238 (virt) @ffe05238 (dma) 0x000000 - rsvd64[3]
[ 135.649241] tegra-xusb 3610000.xhci: IN Endpoint 04 Context (ep_index 08):
[ 135.655920] tegra-xusb 3610000.xhci: @ffffff800d0a7240 (virt) @ffe05240 (dma) 0x080001 - ep_info
[ 135.664764] tegra-xusb 3610000.xhci: @ffffff800d0a7244 (virt) @ffe05244 (dma) 0x0a003e - ep_info2
[ 135.673613] tegra-xusb 3610000.xhci: @ffffff800d0a7248 (virt) @ffe05248 (dma) 0xffe0e001 - deq
[ 135.682182] tegra-xusb 3610000.xhci: @ffffff800d0a7250 (virt) @ffe05250 (dma) 0x0a000a - tx_info
[ 135.691186] tegra-xusb 3610000.xhci: @ffffff800d0a7254 (virt) @ffe05254 (dma) 0x000000 - rsvd[0]
[ 135.699676] tegra-xusb 3610000.xhci: @ffffff800d0a7258 (virt) @ffe05258 (dma) 0x32c0000 - rsvd[1]
[ 135.708428] tegra-xusb 3610000.xhci: @ffffff800d0a725c (virt) @ffe0525c (dma) 0x8000000 - rsvd[2]
[ 135.717501] tegra-xusb 3610000.xhci: @ffffff800d0a7260 (virt) @ffe05260 (dma) 0x2000c000 - rsvd64[0]
[ 135.726452] tegra-xusb 3610000.xhci: @ffffff800d0a7268 (virt) @ffe05268 (dma) 0x700000600080000 - rsvd64[1]
[ 135.736388] tegra-xusb 3610000.xhci: @ffffff800d0a7270 (virt) @ffe05270 (dma) 0x48300001 - rsvd64[2]
[ 135.745302] tegra-xusb 3610000.xhci: @ffffff800d0a7278 (virt) @ffe05278 (dma) 0x000000 - rsvd64[3]
[ 135.754725] tegra-xusb 3610000.xhci: OUT Endpoint 05 Context (ep_index 09):
[ 135.761509] tegra-xusb 3610000.xhci: @ffffff800d0a7280 (virt) @ffe05280 (dma) 0x000000 - ep_info
[ 135.770302] tegra-xusb 3610000.xhci: @ffffff800d0a7284 (virt) @ffe05284 (dma) 0x000000 - ep_info2
[ 135.779212] tegra-xusb 3610000.xhci: @ffffff800d0a7288 (virt) @ffe05288 (dma) 0x000000 - deq
[ 135.788152] tegra-xusb 3610000.xhci: @ffffff800d0a7290 (virt) @ffe05290 (dma) 0x000000 - tx_info
[ 135.796810] tegra-xusb 3610000.xhci: @ffffff800d0a7294 (virt) @ffe05294 (dma) 0x000000 - rsvd[0]
[ 135.805825] tegra-xusb 3610000.xhci: @ffffff800d0a7298 (virt) @ffe05298 (dma) 0x000000 - rsvd[1]
[ 135.814470] tegra-xusb 3610000.xhci: @ffffff800d0a729c (virt) @ffe0529c (dma) 0x000000 - rsvd[2]
[ 135.823243] tegra-xusb 3610000.xhci: @ffffff800d0a72a0 (virt) @ffe052a0 (dma) 0x000000 - rsvd64[0]
[ 135.832865] tegra-xusb 3610000.xhci: @ffffff800d0a72a8 (virt) @ffe052a8 (dma) 0x000000 - rsvd64[1]
[ 135.841601] tegra-xusb 3610000.xhci: @ffffff800d0a72b0 (virt) @ffe052b0 (dma) 0x000000 - rsvd64[2]
[ 135.851023] tegra-xusb 3610000.xhci: @ffffff800d0a72b8 (virt) @ffe052b8 (dma) 0x000000 - rsvd64[3]
[ 135.859644] tegra-xusb 3610000.xhci: IN Endpoint 05 Context (ep_index 10):
[ 135.866900] tegra-xusb 3610000.xhci: @ffffff800d0a72c0 (virt) @ffe052c0 (dma) 0x000001 - ep_info
[ 135.875738] tegra-xusb 3610000.xhci: @ffffff800d0a72c4 (virt) @ffe052c4 (dma) 0x2000036 - ep_info2
[ 135.884639] tegra-xusb 3610000.xhci: @ffffff800d0a72c8 (virt) @ffe052c8 (dma) 0xffe24001 - deq
[ 135.893512] tegra-xusb 3610000.xhci: @ffffff800d0a72d0 (virt) @ffe052d0 (dma) 0x000000 - tx_info
[ 135.902149] tegra-xusb 3610000.xhci: @ffffff800d0a72d4 (virt) @ffe052d4 (dma) 0x000000 - rsvd[0]
[ 135.910911] tegra-xusb 3610000.xhci: @ffffff800d0a72d8 (virt) @ffe052d8 (dma) 0x12c0000 - rsvd[1]
[ 135.919397] tegra-xusb 3610000.xhci: @ffffff800d0a72dc (virt) @ffe052dc (dma) 0x8000000 - rsvd[2]
[ 135.928169] tegra-xusb 3610000.xhci: @ffffff800d0a72e0 (virt) @ffe052e0 (dma) 0x00c000 - rsvd64[0]
[ 135.937157] tegra-xusb 3610000.xhci: @ffffff800d0a72e8 (virt) @ffe052e8 (dma) 0x700000600080000 - rsvd64[1]
[ 135.947060] tegra-xusb 3610000.xhci: @ffffff800d0a72f0 (virt) @ffe052f0 (dma) 0x58300001 - rsvd64[2]
[ 135.956314] tegra-xusb 3610000.xhci: @ffffff800d0a72f8 (virt) @ffe052f8 (dma) 0x000000 - rsvd64[3]
[ 135.965344] tegra-xusb 3610000.xhci: OUT Endpoint 06 Context (ep_index 11):
[ 135.972602] tegra-xusb 3610000.xhci: @ffffff800d0a7300 (virt) @ffe05300 (dma) 0x000000 - ep_info
[ 135.981186] tegra-xusb 3610000.xhci: @ffffff800d0a7304 (virt) @ffe05304 (dma) 0x000000 - ep_info2
[ 135.990018] tegra-xusb 3610000.xhci: @ffffff800d0a7308 (virt) @ffe05308 (dma) 0x000000 - deq
[ 135.998925] tegra-xusb 3610000.xhci: @ffffff800d0a7310 (virt) @ffe05310 (dma) 0x000000 - tx_info
[ 136.007732] tegra-xusb 3610000.xhci: @ffffff800d0a7314 (virt) @ffe05314 (dma) 0x000000 - rsvd[0]
[ 136.016430] tegra-xusb 3610000.xhci: @ffffff800d0a7318 (virt) @ffe05318 (dma) 0x000000 - rsvd[1]
[ 136.025429] tegra-xusb 3610000.xhci: @ffffff800d0a731c (virt) @ffe0531c (dma) 0x000000 - rsvd[2]
[ 136.034104] tegra-xusb 3610000.xhci: @ffffff800d0a7320 (virt) @ffe05320 (dma) 0x000000 - rsvd64[0]
[ 136.043004] tegra-xusb 3610000.xhci: @ffffff800d0a7328 (virt) @ffe05328 (dma) 0x000000 - rsvd64[1]
[ 136.052354] tegra-xusb 3610000.xhci: @ffffff800d0a7330 (virt) @ffe05330 (dma) 0x000000 - rsvd64[2]
[ 136.061350] tegra-xusb 3610000.xhci: @ffffff800d0a7338 (virt) @ffe05338 (dma) 0x000000 - rsvd64[3]
[ 136.070521] tegra-xusb 3610000.xhci: IN Endpoint 06 Context (ep_index 12):
[ 136.077523] tegra-xusb 3610000.xhci: @ffffff800d0a7340 (virt) @ffe05340 (dma) 0x000000 - ep_info
[ 136.086131] tegra-xusb 3610000.xhci: @ffffff800d0a7344 (virt) @ffe05344 (dma) 0x000000 - ep_info2
[ 136.094940] tegra-xusb 3610000.xhci: @ffffff800d0a7348 (virt) @ffe05348 (dma) 0x000000 - deq
[ 136.103797] tegra-xusb 3610000.xhci: @ffffff800d0a7350 (virt) @ffe05350 (dma) 0x000000 - tx_info
[ 136.112535] tegra-xusb 3610000.xhci: @ffffff800d0a7354 (virt) @ffe05354 (dma) 0x000000 - rsvd[0]
[ 136.121307] tegra-xusb 3610000.xhci: @ffffff800d0a7358 (virt) @ffe05358 (dma) 0x000000 - rsvd[1]
[ 136.130024] tegra-xusb 3610000.xhci: @ffffff800d0a735c (virt) @ffe0535c (dma) 0x000000 - rsvd[2]
[ 136.138774] tegra-xusb 3610000.xhci: @ffffff800d0a7360 (virt) @ffe05360 (dma) 0x000000 - rsvd64[0]
[ 136.147506] tegra-xusb 3610000.xhci: @ffffff800d0a7368 (virt) @ffe05368 (dma) 0x000000 - rsvd64[1]
[ 136.156978] tegra-xusb 3610000.xhci: @ffffff800d0a7370 (virt) @ffe05370 (dma) 0x000000 - rsvd64[2]
[ 136.166080] tegra-xusb 3610000.xhci: @ffffff800d0a7378 (virt) @ffe05378 (dma) 0x000000 - rsvd64[3]
[ 136.174810] tegra-xusb 3610000.xhci: OUT Endpoint 07 Context (ep_index 13):
[ 136.182060] tegra-xusb 3610000.xhci: @ffffff800d0a7380 (virt) @ffe05380 (dma) 0x000000 - ep_info
[ 136.190642] tegra-xusb 3610000.xhci: @ffffff800d0a7384 (virt) @ffe05384 (dma) 0x000000 - ep_info2
[ 136.199549] tegra-xusb 3610000.xhci: @ffffff800d0a7388 (virt) @ffe05388 (dma) 0x000000 - deq
[ 136.208317] tegra-xusb 3610000.xhci: @ffffff800d0a7390 (virt) @ffe05390 (dma) 0x000000 - tx_info
[ 136.216818] tegra-xusb 3610000.xhci: @ffffff800d0a7394 (virt) @ffe05394 (dma) 0x000000 - rsvd[0]
[ 136.225568] tegra-xusb 3610000.xhci: @ffffff800d0a7398 (virt) @ffe05398 (dma) 0x000000 - rsvd[1]
[ 136.234327] tegra-xusb 3610000.xhci: @ffffff800d0a739c (virt) @ffe0539c (dma) 0x000000 - rsvd[2]
[ 136.243059] tegra-xusb 3610000.xhci: @ffffff800d0a73a0 (virt) @ffe053a0 (dma) 0x000000 - rsvd64[0]
[ 136.252437] tegra-xusb 3610000.xhci: @ffffff800d0a73a8 (virt) @ffe053a8 (dma) 0x000000 - rsvd64[1]
[ 136.261575] tegra-xusb 3610000.xhci: @ffffff800d0a73b0 (virt) @ffe053b0 (dma) 0x000000 - rsvd64[2]
[ 136.270767] tegra-xusb 3610000.xhci: @ffffff800d0a73b8 (virt) @ffe053b8 (dma) 0x000000 - rsvd64[3]
[ 136.279472] tegra-xusb 3610000.xhci: IN Endpoint 07 Context (ep_index 14):
[ 136.286816] tegra-xusb 3610000.xhci: @ffffff800d0a73c0 (virt) @ffe053c0 (dma) 0x080001 - ep_info
[ 136.295705] tegra-xusb 3610000.xhci: @ffffff800d0a73c4 (virt) @ffe053c4 (dma) 0x10003e - ep_info2
[ 136.304442] tegra-xusb 3610000.xhci: @ffffff800d0a73c8 (virt) @ffe053c8 (dma) 0xffe28001 - deq
[ 136.312692] tegra-xusb 3610000.xhci: @ffffff800d0a73d0 (virt) @ffe053d0 (dma) 0x100010 - tx_info
[ 136.321448] tegra-xusb 3610000.xhci: @ffffff800d0a73d4 (virt) @ffe053d4 (dma) 0x000000 - rsvd[0]
[ 136.330202] tegra-xusb 3610000.xhci: @ffffff800d0a73d8 (virt) @ffe053d8 (dma) 0x32c0000 - rsvd[1]
[ 136.338954] tegra-xusb 3610000.xhci: @ffffff800d0a73dc (virt) @ffe053dc (dma) 0x8000000 - rsvd[2]
[ 136.347762] tegra-xusb 3610000.xhci: @ffffff800d0a73e0 (virt) @ffe053e0 (dma) 0x2000c000 - rsvd64[0]
[ 136.356981] tegra-xusb 3610000.xhci: @ffffff800d0a73e8 (virt) @ffe053e8 (dma) 0x700000600080000 - rsvd64[1]
[ 136.366948] tegra-xusb 3610000.xhci: @ffffff800d0a73f0 (virt) @ffe053f0 (dma) 0x78300001 - rsvd64[2]
[ 136.375794] tegra-xusb 3610000.xhci: @ffffff800d0a73f8 (virt) @ffe053f8 (dma) 0x000000 - rsvd64[3]
[ 136.385359] tegra-xusb 3610000.xhci: Endpoint 0x82 ep reset callback called
[ 136.392094] tegra-xusb 3610000.xhci: Endpoint 0x81 ep reset callback called
[ 136.399283] tegra-xusb 3610000.xhci: Endpoint 0x1 ep reset callback called
[ 136.406090] tegra-xusb 3610000.xhci: Endpoint 0x84 ep reset callback called
[ 136.413558] tegra-xusb 3610000.xhci: Endpoint 0x83 ep reset callback called
[ 136.420558] tegra-xusb 3610000.xhci: Endpoint 0x2 ep reset callback called
[ 136.427627] tegra-xusb 3610000.xhci: Endpoint 0x85 ep reset callback called
[ 136.434530] tegra-xusb 3610000.xhci: Endpoint 0x3 ep reset callback called
[ 136.441388] tegra-xusb 3610000.xhci: Endpoint 0x87 ep reset callback called
[ 137.620954] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 137.676606] usb 3-3.1: adding 3-3.1:1.0 (config #1, interface 0)
[ 137.743578] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 137.799529] usb 3-3.1: adding 3-3.1:1.1 (config #1, interface 1)
[ 137.866445] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 137.923187] usb 3-3.1: adding 3-3.1:1.2 (config #1, interface 2)
[ 137.988729] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 138.044828] usb 3-3.1: adding 3-3.1:1.3 (config #1, interface 3)
[ 138.111604] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 138.167414] usb 3-3.1: adding 3-3.1:1.4 (config #1, interface 4)
[ 138.234335] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 138.290219] uas 3-3.1:1.4: usb_probe_interface
[ 138.290356] uas 3-3.1:1.4: usb_probe_interface - got id
[ 138.290590] usb-storage 3-3.1:1.4: usb_probe_interface
[ 138.290694] usb-storage 3-3.1:1.4: usb_probe_interface - got id
[ 138.290802] usb-storage 3-3.1:1.4: USB Mass Storage device detected
[ 138.291513] scsi host0: usb-storage 3-3.1:1.4
[ 138.294358] usb 3-3.1: adding 3-3.1:1.5 (config #1, interface 5)
[ 138.357123] tegra-xusb 3610000.xhci: Waiting for status stage event
[ 138.412831] cdc_ether 3-3.1:1.5: usb_probe_interface
[ 138.412964] cdc_ether 3-3.1:1.5: usb_probe_interface - got id
[ 138.413195] tegra-xusb 3610000.xhci: add ep 0x86, slot id 7, new drop flags = 0x0, new add flags = 0x2000
[ 138.413408] tegra-xusb 3610000.xhci: add ep 0x4, slot id 7, new drop flags = 0x0, new add flags = 0x2100
[ 138.413611] tegra-xusb 3610000.xhci: xhci_check_bandwidth called for udev ffffffc3a4d87000
[ 138.413783] tegra-xusb 3610000.xhci: New Input Control Context:
[ 138.413897] tegra-xusb 3610000.xhci: @ffffff800d132000 (virt) @ffe04000 (dma) 0x000000 - drop flags
[ 138.414046] tegra-xusb 3610000.xhci: @ffffff800d132004 (virt) @ffe04004 (dma) 0x002101 - add flags
[ 138.414194] tegra-xusb 3610000.xhci: @ffffff800d132008 (virt) @ffe04008 (dma) 0x000000 - rsvd2[0]
[ 138.414341] tegra-xusb 3610000.xhci: @ffffff800d13200c (virt) @ffe0400c (dma) 0x000000 - rsvd2[1]
[ 138.414929] tegra-xusb 3610000.xhci: @ffffff800d132010 (virt) @ffe04010 (dma) 0x000000 - rsvd2[2]
[ 138.415606] tegra-xusb 3610000.xhci: @ffffff800d132014 (virt) @ffe04014 (dma) 0x000000 - rsvd2[3]
[ 138.419127] tegra-xusb 3610000.xhci: @ffffff800d132018 (virt) @ffe04018 (dma) 0x000000 - rsvd2[4]
[ 138.428324] tegra-xusb 3610000.xhci: @ffffff800d13201c (virt) @ffe0401c (dma) 0x000000 - rsvd2[5]
[ 138.436887] tegra-xusb 3610000.xhci: @ffffff800d132020 (virt) @ffe04020 (dma) 0x000000 - rsvd64[0]
[ 138.445763] tegra-xusb 3610000.xhci: @ffffff800d132028 (virt) @ffe04028 (dma) 0x000000 - rsvd64[1]
[ 138.454713] tegra-xusb 3610000.xhci: @ffffff800d132030 (virt) @ffe04030 (dma) 0x000000 - rsvd64[2]
[ 138.464167] tegra-xusb 3610000.xhci: @ffffff800d132038 (virt) @ffe04038 (dma) 0x000000 - rsvd64[3]
[ 138.473085] tegra-xusb 3610000.xhci: Slot Context:
[ 138.478324] tegra-xusb 3610000.xhci: @ffffff800d132040 (virt) @ffe04040 (dma) 0x78300001 - dev_info
[ 138.487250] tegra-xusb 3610000.xhci: @ffffff800d132044 (virt) @ffe04044 (dma) 0x070000 - dev_info2
[ 138.496875] tegra-xusb 3610000.xhci: @ffffff800d132048 (virt) @ffe04048 (dma) 0x000000 - tt_info
[ 138.505368] tegra-xusb 3610000.xhci: @ffffff800d13204c (virt) @ffe0404c (dma) 0x000000 - dev_state
[ 138.514377] tegra-xusb 3610000.xhci: @ffffff800d132050 (virt) @ffe04050 (dma) 0x000000 - rsvd[0]
[ 138.523380] tegra-xusb 3610000.xhci: @ffffff800d132054 (virt) @ffe04054 (dma) 0x000000 - rsvd[1]
[ 138.531883] tegra-xusb 3610000.xhci: @ffffff800d132058 (virt) @ffe04058 (dma) 0x000000 - rsvd[2]
[ 138.540623] tegra-xusb 3610000.xhci: @ffffff800d13205c (virt) @ffe0405c (dma) 0x000000 - rsvd[3]
[ 138.549728] tegra-xusb 3610000.xhci: @ffffff800d132060 (virt) @ffe04060 (dma) 0x000000 - rsvd64[0]
[ 138.558473] tegra-xusb 3610

Hi WayneWWW,

device log

[code]root@jetson-0424218031076:~# echo ‘file tegra_xudc.c +p’ > /sys/kernel/debug/dyn
amic_debug/control

root@jetson-0424218031076:~# echo ‘file xusb-tegra194.c +p’ > /sys/kernel/debug/d
dynamic_debug/control

root@jetson-0424218031076:~# echo 8 > /proc/sys/kernel/printk

root@jetson-0424218031076:~# [ 136.229058] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1000, lo = 0x1000000, hi = 0x0, status = 0x1000000, control = 0x8801
[ 136.229424] tegra-xudc-new 3550000.xudc: PRC, PR, PORTSC = 0x200d30
[ 136.229559] tegra-xudc-new 3550000.xudc: PORTSC = 0xa0
[ 136.243863] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1010, lo = 0x1000000, hi = 0x0, status = 0x1000000, control = 0x8801
[ 136.244134] tegra-xudc-new 3550000.xudc: PRC, Not PR, PORTSC = 0x220c03
[ 136.244341] tegra-xudc-new 3550000.xudc: CSC, PORTSC = 0x20c03
[ 136.244457] tegra-xudc-new 3550000.xudc: PORTSC = 0xc03
[ 136.244721] android_work: did not send uevent (0 0 (null))
[ 136.792131] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1020, lo = 0x60500, hi = 0x0, status = 0x1000000, control = 0xfc01
[ 136.792391] tegra-xudc-new 3550000.xudc: USB_REQ_SET_ADDRESS
[ 136.792492] tegra-xudc-new 3550000.xudc: set address: 6
[ 136.792592] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd000, lo = 0x0, hi = 0x0, status = 0x0, control = 0x11025
[ 136.792809] tegra-xudc-new 3550000.xudc: ring doorbell: 0x0
[ 136.792990] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1030, lo = 0xffede000, hi = 0x0, status = 0x1000000, control = 0x8001
[ 136.793206] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd000 → ffffff800a5fd000; trb ffffff800a5fd000
[ 136.793385] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 136.793485] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 137.823783] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1040, lo = 0x1000680, hi = 0x80000, status = 0x1000001, control = 0xfc01
[ 137.824125] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd010, lo = 0xffed3000, hi = 0x0, status = 0x8, control = 0x10c25
[ 137.824313] tegra-xudc-new 3550000.xudc: ring doorbell: 0x10000
[ 137.824514] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1050, lo = 0xffede010, hi = 0x0, status = 0x1000000, control = 0x8001
[ 137.824739] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd010 → ffffff800a5fd010; trb ffffff800a5fd010
[ 137.824919] tegra-xudc-new 3550000.xudc: bytes transferred 8 / 8
[ 137.825021] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 137.825199] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd020, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 137.825754] tegra-xudc-new 3550000.xudc: ring doorbell: 0x10000
[ 137.826264] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1060, lo = 0xffede020, hi = 0x0, status = 0x1000000, control = 0x8001
[ 137.828441] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd020 → ffffff800a5fd020; trb ffffff800a5fd020
[ 137.839742] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 137.845678] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 137.854520] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1070, lo = 0x1000680, hi = 0x120000, status = 0x1000002, control = 0xfc01
[ 137.866490] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd030, lo = 0xffed3000, hi = 0x0, status = 0x12, control = 0x10c25
[ 137.878319] tegra-xudc-new 3550000.xudc: ring doorbell: 0x20000
[ 137.884119] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1080, lo = 0xffede030, hi = 0x0, status = 0x1000000, control = 0x8001
[ 137.896018] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd030 → ffffff800a5fd030; trb ffffff800a5fd030
[ 137.906940] tegra-xudc-new 3550000.xudc: bytes transferred 18 / 18
[ 137.913237] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 137.922333] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd040, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 137.933529] tegra-xudc-new 3550000.xudc: ring doorbell: 0x20000
[ 137.939488] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1090, lo = 0xffede040, hi = 0x0, status = 0x1000000, control = 0x8001
[ 137.950870] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd040 → ffffff800a5fd040; trb ffffff800a5fd040
[ 137.962404] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 137.968095] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 137.977457] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10a0, lo = 0xf000680, hi = 0x50000, status = 0x1000003, control = 0xfc01
[ 137.989329] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd050, lo = 0xffed3000, hi = 0x0, status = 0x5, control = 0x10c25
[ 138.000380] tegra-xudc-new 3550000.xudc: ring doorbell: 0x30000
[ 138.006438] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10b0, lo = 0xffede050, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.018324] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd050 → ffffff800a5fd050; trb ffffff800a5fd050
[ 138.029522] tegra-xudc-new 3550000.xudc: bytes transferred 5 / 5
[ 138.035291] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.044370] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd060, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.055330] tegra-xudc-new 3550000.xudc: ring doorbell: 0x30000
[ 138.061639] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10c0, lo = 0xffede060, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.073280] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd060 → ffffff800a5fd060; trb ffffff800a5fd060
[ 138.084290] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.090497] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.099344] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10d0, lo = 0xf000680, hi = 0x160000, status = 0x1000004, control = 0xfc01
[ 138.111281] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd070, lo = 0xffed3000, hi = 0x0, status = 0x16, control = 0x10c25
[ 138.123141] tegra-xudc-new 3550000.xudc: ring doorbell: 0x40000
[ 138.129158] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10e0, lo = 0xffede070, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.140560] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd070 → ffffff800a5fd070; trb ffffff800a5fd070
[ 138.152017] tegra-xudc-new 3550000.xudc: bytes transferred 22 / 22
[ 138.158055] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.167383] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd080, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.178347] tegra-xudc-new 3550000.xudc: ring doorbell: 0x40000
[ 138.184232] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c10f0, lo = 0xffede080, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.195941] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd080 → ffffff800a5fd080; trb ffffff800a5fd080
[ 138.207221] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.212921] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.222022] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1100, lo = 0x2000680, hi = 0x90000, status = 0x1000005, control = 0xfc01
[ 138.233889] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd090, lo = 0xffed3000, hi = 0x0, status = 0x9, control = 0x10c25
[ 138.245204] tegra-xudc-new 3550000.xudc: ring doorbell: 0x50000
[ 138.251492] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1110, lo = 0xffede090, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.262903] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd090 → ffffff800a5fd090; trb ffffff800a5fd090
[ 138.274080] tegra-xudc-new 3550000.xudc: bytes transferred 9 / 9
[ 138.280424] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.289186] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0a0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.300152] tegra-xudc-new 3550000.xudc: ring doorbell: 0x50000
[ 138.306476] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1120, lo = 0xffede0a0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.317925] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0a0 → ffffff800a5fd0a0; trb ffffff800a5fd0a0
[ 138.329375] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.335067] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.344426] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1130, lo = 0x2000680, hi = 0xf30000, status = 0x1000006, control = 0xfc01
[ 138.356378] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0b0, lo = 0xffed3000, hi = 0x0, status = 0xf3, control = 0x10c25
[ 138.367704] tegra-xudc-new 3550000.xudc: ring doorbell: 0x60000
[ 138.374003] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1140, lo = 0xffede0b0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.385392] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0b0 → ffffff800a5fd0b0; trb ffffff800a5fd0b0
[ 138.396836] tegra-xudc-new 3550000.xudc: bytes transferred 243 / 243
[ 138.403398] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.412208] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0c0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.423180] tegra-xudc-new 3550000.xudc: ring doorbell: 0x60000
[ 138.429577] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1150, lo = 0xffede0c0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.440775] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0c0 → ffffff800a5fd0c0; trb ffffff800a5fd0c0
[ 138.452223] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.458003] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.467364] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1160, lo = 0x3000680, hi = 0xff0000, status = 0x1000007, control = 0xfc01
[ 138.479148] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0d0, lo = 0xffed3000, hi = 0x0, status = 0x4, control = 0x10c25
[ 138.490465] tegra-xudc-new 3550000.xudc: ring doorbell: 0x70000
[ 138.496241] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1170, lo = 0xffede0d0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.508147] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0d0 → ffffff800a5fd0d0; trb ffffff800a5fd0d0
[ 138.519078] tegra-xudc-new 3550000.xudc: bytes transferred 4 / 4
[ 138.525374] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.534185] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0e0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.545154] tegra-xudc-new 3550000.xudc: ring doorbell: 0x70000
[ 138.551547] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1180, lo = 0xffede0e0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.563014] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0e0 → ffffff800a5fd0e0; trb ffffff800a5fd0e0
[ 138.574459] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.580154] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.589514] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1190, lo = 0x3020680, hi = 0xff0409, status = 0x1000008, control = 0xfc01
[ 138.601471] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd0f0, lo = 0xffed3000, hi = 0x0, status = 0x20, control = 0x10c25
[ 138.612792] tegra-xudc-new 3550000.xudc: ring doorbell: 0x80000
[ 138.619140] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11a0, lo = 0xffede0f0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.630475] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd0f0 → ffffff800a5fd0f0; trb ffffff800a5fd0f0
[ 138.641923] tegra-xudc-new 3550000.xudc: bytes transferred 32 / 32
[ 138.647963] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.657296] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd100, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.668259] tegra-xudc-new 3550000.xudc: ring doorbell: 0x80000
[ 138.674391] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11b0, lo = 0xffede100, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.685858] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd100 → ffffff800a5fd100; trb ffffff800a5fd100
[ 138.696882] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.703094] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.711952] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11c0, lo = 0x3010680, hi = 0xff0409, status = 0x1000009, control = 0xfc01
[ 138.723825] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd110, lo = 0xffed3000, hi = 0x0, status = 0xe, control = 0x10c25
[ 138.735122] tegra-xudc-new 3550000.xudc: ring doorbell: 0x90000
[ 138.741475] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11d0, lo = 0xffede110, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.752811] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd110 → ffffff800a5fd110; trb ffffff800a5fd110
[ 138.764254] tegra-xudc-new 3550000.xudc: bytes transferred 14 / 14
[ 138.770550] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.779623] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd120, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.790588] tegra-xudc-new 3550000.xudc: ring doorbell: 0x90000
[ 138.796761] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11e0, lo = 0xffede120, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.808101] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd120 → ffffff800a5fd120; trb ffffff800a5fd120
[ 138.819639] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.825329] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.834693] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c11f0, lo = 0x3030680, hi = 0xff0409, status = 0x100000a, control = 0xfc01
[ 138.846577] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd130, lo = 0xffed3000, hi = 0x0, status = 0x1c, control = 0x10c25
[ 138.857882] tegra-xudc-new 3550000.xudc: ring doorbell: 0xa0000
[ 138.864213] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1200, lo = 0xffede130, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.875821] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd130 → ffffff800a5fd130; trb ffffff800a5fd130
[ 138.886757] tegra-xudc-new 3550000.xudc: bytes transferred 28 / 28
[ 138.893055] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 138.902406] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd140, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 138.913348] tegra-xudc-new 3550000.xudc: ring doorbell: 0xa0000
[ 138.919517] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1210, lo = 0xffede140, hi = 0x0, status = 0x1000000, control = 0x8001
[ 138.930958] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd140 → ffffff800a5fd140; trb ffffff800a5fd140
[ 138.941968] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 138.948175] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 138.958054] android_work: sent uevent USB_STATE=CONNECTED
[ 142.539919] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1220, lo = 0x10900, hi = 0x0, status = 0x100000b, control = 0xfc01
[ 142.540266] tegra-xudc-new 3550000.xudc: USB_REQ_SET_CONFIGURATION
[ 142.540437] configfs-gadget gadget: high-speed config #1: c
[ 142.540581] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep2in, usb_ep->address=82
[ 142.540776] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.541015] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep2in
[ 142.541173] tegra-xudc-new 3550000.xudc: ep 5 (type: 3, dir: in) enabled
[ 142.541336] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep1in, usb_ep->address=81
[ 142.541577] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.542730] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep1in
[ 142.545858] tegra-xudc-new 3550000.xudc: ep 3 (type: 2, dir: in) enabled
[ 142.552673] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep1out, usb_ep->address=1
[ 142.562915] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.577873] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep1out
[ 142.586718] tegra-xudc-new 3550000.xudc: ep 2 (type: 2, dir: out) enabled
[ 142.593450] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd400, lo = 0xffed3002, hi = 0x0, status = 0x800, control = 0x425
[ 142.605000] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.610814] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd410, lo = 0xffed2002, hi = 0x0, status = 0x800, control = 0x425
[ 142.622056] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.627874] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd420, lo = 0xffed1002, hi = 0x0, status = 0x800, control = 0x425
[ 142.639385] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.645090] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd430, lo = 0xffed0002, hi = 0x0, status = 0x800, control = 0x425
[ 142.656532] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.662346] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd440, lo = 0xffecf002, hi = 0x0, status = 0x800, control = 0x425
[ 142.673856] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.679385] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd450, lo = 0xffece002, hi = 0x0, status = 0x800, control = 0x425
[ 142.691187] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.696741] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd460, lo = 0xffecd002, hi = 0x0, status = 0x800, control = 0x425
[ 142.708521] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.714098] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd470, lo = 0xffecc002, hi = 0x0, status = 0x800, control = 0x425
[ 142.725840] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.731658] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd480, lo = 0xffecb002, hi = 0x0, status = 0x800, control = 0x425
[ 142.743159] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.748972] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd490, lo = 0xffeca002, hi = 0x0, status = 0x800, control = 0x425
[ 142.760228] tegra-xudc-new 3550000.xudc: ring doorbell: 0x200
[ 142.766014] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep4in, usb_ep->address=84
[ 142.776232] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.791721] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep4in
[ 142.800138] tegra-xudc-new 3550000.xudc: ep 9 (type: 3, dir: in) enabled
[ 142.806960] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep3in, usb_ep->address=83
[ 142.817183] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.832669] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep3in
[ 142.841344] tegra-xudc-new 3550000.xudc: ep 7 (type: 2, dir: in) enabled
[ 142.848156] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep2out, usb_ep->address=2
[ 142.857872] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 142.873355] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep2out
[ 142.881683] tegra-xudc-new 3550000.xudc: ep 4 (type: 2, dir: out) enabled
[ 142.888957] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca000, lo = 0xffec9c00, hi = 0x0, status = 0x200, control = 0x425
[ 142.900223] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.906031] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca010, lo = 0xffec8600, hi = 0x0, status = 0x200, control = 0x425
[ 142.917282] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.922834] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca020, lo = 0xffec7e00, hi = 0x0, status = 0x200, control = 0x425
[ 142.934606] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.940325] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca030, lo = 0xffec6a00, hi = 0x0, status = 0x200, control = 0x425
[ 142.951756] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.957562] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca040, lo = 0xffec5200, hi = 0x0, status = 0x200, control = 0x425
[ 142.969080] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.974638] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca050, lo = 0xffec4c00, hi = 0x0, status = 0x200, control = 0x425
[ 142.986156] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 142.991961] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca060, lo = 0xffec3400, hi = 0x0, status = 0x200, control = 0x425
[ 143.003474] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.009286] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca070, lo = 0xffec2800, hi = 0x0, status = 0x200, control = 0x425
[ 143.020798] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.026863] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca080, lo = 0xffec1800, hi = 0x0, status = 0x200, control = 0x425
[ 143.038380] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.044186] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca090, lo = 0xffec0400, hi = 0x0, status = 0x200, control = 0x425
[ 143.055705] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.061252] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0a0, lo = 0xffebfc00, hi = 0x0, status = 0x200, control = 0x425
[ 143.072772] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.078841] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0b0, lo = 0xffebee00, hi = 0x0, status = 0x200, control = 0x425
[ 143.090358] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.095913] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0c0, lo = 0xffebd000, hi = 0x0, status = 0x200, control = 0x425
[ 143.107424] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.113487] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0d0, lo = 0xffebc600, hi = 0x0, status = 0x200, control = 0x425
[ 143.125006] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.130555] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0e0, lo = 0xffebb200, hi = 0x0, status = 0x200, control = 0x425
[ 143.142073] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.148136] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca0f0, lo = 0xffeba200, hi = 0x0, status = 0x200, control = 0x425
[ 143.159397] tegra-xudc-new 3550000.xudc: ring doorbell: 0x400
[ 143.165229] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc800, lo = 0xffeb9f00, hi = 0x0, status = 0xa, control = 0x421
[ 143.176725] tegra-xudc-new 3550000.xudc: ring doorbell: 0x900
[ 143.182533] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep7in, usb_ep->address=87
[ 143.182558] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep5in, usb_ep->address=85
[ 143.182565] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 143.182568] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep5in
[ 143.182584] tegra-xudc-new 3550000.xudc: ep 11 (type: 2, dir: in) enabled
[ 143.182588] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep3out, usb_ep->address=3
[ 143.182590] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 143.182593] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep3out
[ 143.182607] tegra-xudc-new 3550000.xudc: ep 6 (type: 2, dir: out) enabled
[ 143.182876] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc000, lo = 0xffeb8e00, hi = 0x0, status = 0x1, control = 0x421
[ 143.182883] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.182936] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc010, lo = 0xffeb7400, hi = 0x0, status = 0x2, control = 0x421
[ 143.182940] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183336] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc020, lo = 0xffeb6c00, hi = 0x0, status = 0x1, control = 0x421
[ 143.183339] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183392] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc030, lo = 0xffeb5000, hi = 0x0, status = 0x1, control = 0x421
[ 143.183395] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183455] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc040, lo = 0xffeb4800, hi = 0x0, status = 0x1, control = 0x421
[ 143.183471] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183490] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc050, lo = 0xffeb3200, hi = 0x0, status = 0x1, control = 0x421
[ 143.183496] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183514] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc060, lo = 0xffeb2c00, hi = 0x0, status = 0x1, control = 0x421
[ 143.183522] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183536] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc070, lo = 0xffeb1800, hi = 0x0, status = 0x1, control = 0x421
[ 143.183539] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183553] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc080, lo = 0xffeb0600, hi = 0x0, status = 0x1, control = 0x421
[ 143.183556] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183571] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc090, lo = 0xffeafa00, hi = 0x0, status = 0x1, control = 0x421
[ 143.183574] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183644] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0a0, lo = 0xffeaec00, hi = 0x0, status = 0x1, control = 0x421
[ 143.183647] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183661] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0b0, lo = 0xffeade00, hi = 0x0, status = 0x1, control = 0x421
[ 143.183664] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183678] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0c0, lo = 0xffeac000, hi = 0x0, status = 0x1, control = 0x421
[ 143.183681] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183696] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0d0, lo = 0xffeab200, hi = 0x0, status = 0x1, control = 0x421
[ 143.183699] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183717] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0e0, lo = 0xffeaa400, hi = 0x0, status = 0x1, control = 0x421
[ 143.183720] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.183734] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc0f0, lo = 0xffea9600, hi = 0x0, status = 0x1, control = 0x421
[ 143.183737] tegra-xudc-new 3550000.xudc: ring doorbell: 0x700
[ 143.549122] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 143.564432] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep7in
[ 143.573115] tegra-xudc-new 3550000.xudc: ep 15 (type: 3, dir: in) enabled
[ 143.579790] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6fc800, lo = 0xffea8080, hi = 0x0, status = 0x8, control = 0x421
[ 143.591296] tegra-xudc-new 3550000.xudc: ring doorbell: 0xf00
[ 143.596901] tegra-xudc-new 3550000.xudc: tegra_xudc_set_selfpowered: 1
[ 143.603458] tegra-xudc-new 3550000.xudc: tegra_xudc_gadget_vbus_draw: 2 mA
[ 143.610380] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd150, lo = 0x0, hi = 0x0, status = 0x0, control = 0x11025
[ 143.621178] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb0000
[ 143.627358] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1230, lo = 0xffede150, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.638912] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd150 → ffffff800a5fd150; trb ffffff800a5fd150
[ 143.650275] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 143.656312] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 143.665102] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca800, lo = 0xffea7000, hi = 0x0, status = 0x200, control = 0x425
[ 143.676619] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 143.682220] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1240, lo = 0x3040680, hi = 0xff0409, status = 0x100000c, control = 0xfc01
[ 143.694442] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd160, lo = 0xffea6000, hi = 0x0, status = 0x24, control = 0x10c25
[ 143.705849] tegra-xudc-new 3550000.xudc: ring doorbell: 0xc0000
[ 143.712017] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1250, lo = 0xffede160, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.723609] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd160 → ffffff800a5fd160; trb ffffff800a5fd160
[ 143.734972] tegra-xudc-new 3550000.xudc: bytes transferred 36 / 36
[ 143.741274] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 143.750281] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd170, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 143.761487] tegra-xudc-new 3550000.xudc: ring doorbell: 0xc0000
[ 143.767369] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1260, lo = 0xffede170, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.779086] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd170 → ffffff800a5fd170; trb ffffff800a5fd170
[ 143.790103] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 143.796312] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 143.805154] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1270, lo = 0x3050680, hi = 0xff0409, status = 0x100000d, control = 0xfc01
[ 143.817287] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd180, lo = 0xffea6000, hi = 0x0, status = 0x3a, control = 0x10c25
[ 143.828861] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd0000
[ 143.834588] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1280, lo = 0xffede180, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.846284] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd180 → ffffff800a5fd180; trb ffffff800a5fd180
[ 143.857474] tegra-xudc-new 3550000.xudc: bytes transferred 58 / 58
[ 143.864032] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 143.872841] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd190, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 143.884073] tegra-xudc-new 3550000.xudc: ring doorbell: 0xd0000
[ 143.889932] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1290, lo = 0xffede190, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.901665] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd190 → ffffff800a5fd190; trb ffffff800a5fd190
[ 143.912685] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 143.918635] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 143.928003] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12a0, lo = 0x3060680, hi = 0xff0409, status = 0x100000e, control = 0xfc01
[ 143.939599] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1a0, lo = 0xffea6000, hi = 0x0, status = 0x28, control = 0x10c25
[ 143.951446] tegra-xudc-new 3550000.xudc: ring doorbell: 0xe0000
[ 143.957482] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12b0, lo = 0xffede1a0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 143.968867] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1a0 → ffffff800a5fd1a0; trb ffffff800a5fd1a0
[ 143.980321] tegra-xudc-new 3550000.xudc: bytes transferred 40 / 40
[ 143.986363] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 143.995430] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1b0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 144.006403] tegra-xudc-new 3550000.xudc: ring doorbell: 0xe0000
[ 144.012755] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12c0, lo = 0xffede1b0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.024253] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1b0 → ffffff800a5fd1b0; trb ffffff800a5fd1b0
[ 144.035274] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 144.041225] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 144.050327] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12d0, lo = 0x3090680, hi = 0xff0409, status = 0x100000f, control = 0xfc01
[ 144.062452] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1c0, lo = 0xffea6000, hi = 0x0, status = 0x42, control = 0x10c25
[ 144.074031] tegra-xudc-new 3550000.xudc: ring doorbell: 0xf0000
[ 144.079807] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12e0, lo = 0xffede1c0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.091459] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1c0 → ffffff800a5fd1c0; trb ffffff800a5fd1c0
[ 144.102911] tegra-xudc-new 3550000.xudc: bytes transferred 66 / 66
[ 144.109209] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 144.118284] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1d0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 144.129244] tegra-xudc-new 3550000.xudc: ring doorbell: 0xf0000
[ 144.135348] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c12f0, lo = 0xffede1d0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.146838] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1d0 → ffffff800a5fd1d0; trb ffffff800a5fd1d0
[ 144.157867] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 144.164071] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 144.172918] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1300, lo = 0x30a0680, hi = 0xff0409, status = 0x1000010, control = 0xfc01
[ 144.184780] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1e0, lo = 0xffea6000, hi = 0x0, status = 0x1a, control = 0x10c25
[ 144.196362] tegra-xudc-new 3550000.xudc: ring doorbell: 0x100000
[ 144.202662] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1310, lo = 0xffede1e0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.214309] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1e0 → ffffff800a5fd1e0; trb ffffff800a5fd1e0
[ 144.225501] tegra-xudc-new 3550000.xudc: bytes transferred 26 / 26
[ 144.231539] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 144.240875] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd1f0, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 144.251831] tegra-xudc-new 3550000.xudc: ring doorbell: 0x100000
[ 144.257930] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1320, lo = 0xffede1f0, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.269512] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd1f0 → ffffff800a5fd1f0; trb ffffff800a5fd1f0
[ 144.280538] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 144.286754] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 144.295592] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1330, lo = 0x30d0680, hi = 0xff0409, status = 0x1000011, control = 0xfc01
[ 144.307466] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd200, lo = 0xffea6000, hi = 0x0, status = 0x1a, control = 0x10c25
[ 144.319296] tegra-xudc-new 3550000.xudc: ring doorbell: 0x110000
[ 144.325399] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1340, lo = 0xffede200, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.336820] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd200 → ffffff800a5fd200; trb ffffff800a5fd200
[ 144.348005] tegra-xudc-new 3550000.xudc: bytes transferred 26 / 26
[ 144.354560] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 144.363648] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd210, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 144.374340] tegra-xudc-new 3550000.xudc: ring doorbell: 0x110000
[ 144.380722] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1350, lo = 0xffede210, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.392016] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd210 → ffffff800a5fd210; trb ffffff800a5fd210
[ 144.403297] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 144.409249] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 144.418354] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1360, lo = 0x30f0680, hi = 0xff0409, status = 0x1000012, control = 0xfc01
[ 144.430495] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd220, lo = 0xffea6000, hi = 0x0, status = 0x42, control = 0x10c25
[ 144.441799] tegra-xudc-new 3550000.xudc: ring doorbell: 0x120000
[ 144.448156] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1370, lo = 0xffede220, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.459566] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd220 → ffffff800a5fd220; trb ffffff800a5fd220
[ 144.471022] tegra-xudc-new 3550000.xudc: bytes transferred 66 / 66
[ 144.477320] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 144.486127] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd230, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 144.497099] tegra-xudc-new 3550000.xudc: ring doorbell: 0x120000
[ 144.503462] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1380, lo = 0xffede230, hi = 0x0, status = 0x1000000, control = 0x8001
[ 144.514781] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd230 → ffffff800a5fd230; trb ffffff800a5fd230
[ 144.526063] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 144.532270] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 144.542146] IPv6: ADDRCONF(NETDEV_CHANGE): rndis0: link becomes ready
[ 144.548702] l4tbr0: port 1(rndis0) entered blocking state
[ 144.553119] l4tbr0: port 1(rndis0) entered forwarding state
[ 144.565164] android_work: sent uevent USB_STATE=CONFIGURED
[ 146.251872] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1390, lo = 0xfea1, hi = 0x10004, status = 0x1000013, control = 0xfc01
[ 146.252172] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd240, lo = 0xffea6000, hi = 0x0, status = 0x1, control = 0x10c25
[ 146.252360] tegra-xudc-new 3550000.xudc: ring doorbell: 0x130000
[ 146.252513] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13a0, lo = 0xffede240, hi = 0x0, status = 0x1000000, control = 0x8001
[ 146.252708] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd240 → ffffff800a5fd240; trb ffffff800a5fd240
[ 146.252888] tegra-xudc-new 3550000.xudc: bytes transferred 1 / 1
[ 146.253006] tegra-xudc-new 3550000.xudc: completing request ffffffc3cf79bb00 on ep 0 with status 0
[ 146.253181] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd250, lo = 0x0, hi = 0x0, status = 0x0, control = 0x1025
[ 146.253866] tegra-xudc-new 3550000.xudc: ring doorbell: 0x130000
[ 146.254375] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13b0, lo = 0xffede250, hi = 0x0, status = 0x1000000, control = 0x8001
[ 146.256102] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a5fd250 → ffffff800a5fd250; trb ffffff800a5fd250
[ 146.267654] tegra-xudc-new 3550000.xudc: bytes transferred 0 / 0
[ 146.273595] tegra-xudc-new 3550000.xudc: completing request ffffffc3d7eb4d00 on ep 0 with status 0
[ 146.282442] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13c0, lo = 0xffedd800, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 146.294332] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca800 → ffffff800a6ca800; trb ffffff800a6ca800
[ 146.305188] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 146.311741] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 146.321077] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce400, lo = 0xffea5000, hi = 0x0, status = 0x24, control = 0x421
[ 146.332444] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.337873] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13d0, lo = 0xffedb400, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.349729] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce400 → ffffff800a6ce400; trb ffffff800a6ce400
[ 146.360751] tegra-xudc-new 3550000.xudc: bytes transferred 36 / 36
[ 146.367308] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 146.376220] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce410, lo = 0xffea4000, hi = 0x0, status = 0xd, control = 0x421
[ 146.387533] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.393646] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13e0, lo = 0xffedb410, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.405285] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce410 → ffffff800a6ce410; trb ffffff800a6ce410
[ 146.416568] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 146.422869] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 146.431796] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca810, lo = 0xffea3000, hi = 0x0, status = 0x200, control = 0x425
[ 146.443089] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 146.449243] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c13f0, lo = 0xffedd810, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 146.460761] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca810 → ffffff800a6ca810; trb ffffff800a6ca810
[ 146.472041] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 146.478344] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 146.487282] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce420, lo = 0xffea2000, hi = 0x0, status = 0xd, control = 0x421
[ 146.498590] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.504418] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1400, lo = 0xffedb420, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.516423] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce420 → ffffff800a6ce420; trb ffffff800a6ce420
[ 146.527699] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 146.533995] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 146.542971] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca820, lo = 0xffea1000, hi = 0x0, status = 0x200, control = 0x425
[ 146.554471] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 146.560374] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1410, lo = 0xffedd820, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 146.571630] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca820 → ffffff800a6ca820; trb ffffff800a6ca820
[ 146.582911] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 146.589474] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 146.598774] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce430, lo = 0xffea0000, hi = 0x0, status = 0x12, control = 0x421
[ 146.609979] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.615545] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1420, lo = 0xffedb430, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.627540] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce430 → ffffff800a6ce430; trb ffffff800a6ce430
[ 146.638820] tegra-xudc-new 3550000.xudc: bytes transferred 18 / 18
[ 146.645123] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 146.654253] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce440, lo = 0xffe9f000, hi = 0x0, status = 0xd, control = 0x421
[ 146.665597] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.671442] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1430, lo = 0xffedb440, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.683102] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce440 → ffffff800a6ce440; trb ffffff800a6ce440
[ 146.694131] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 146.700421] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 146.709546] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca830, lo = 0xffe9e000, hi = 0x0, status = 0x200, control = 0x425
[ 146.721159] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 146.726996] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1440, lo = 0xffedd830, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 146.738574] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca830 → ffffff800a6ca830; trb ffffff800a6ca830
[ 146.749596] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 146.755901] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 146.765108] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce450, lo = 0xffe9d000, hi = 0x0, status = 0xd, control = 0x421
[ 146.776384] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.782214] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1450, lo = 0xffedb450, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.794227] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce450 → ffffff800a6ce450; trb ffffff800a6ce450
[ 146.805249] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 146.811550] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 146.820945] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca840, lo = 0xffe9c000, hi = 0x0, status = 0x200, control = 0x425
[ 146.832028] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 146.837840] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1460, lo = 0xffedd840, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 146.849700] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca840 → ffffff800a6ca840; trb ffffff800a6ca840
[ 146.860722] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 146.867022] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 146.876446] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce460, lo = 0xffe9b000, hi = 0x0, status = 0x8, control = 0x421
[ 146.887767] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.893574] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1470, lo = 0xffedb460, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.905100] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce460 → ffffff800a6ce460; trb ffffff800a6ce460
[ 146.916373] tegra-xudc-new 3550000.xudc: bytes transferred 8 / 8
[ 146.922672] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 146.931568] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce470, lo = 0xffe9a000, hi = 0x0, status = 0xd, control = 0x421
[ 146.943064] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 146.948752] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1480, lo = 0xffedb470, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 146.960562] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce470 → ffffff800a6ce470; trb ffffff800a6ce470
[ 146.971587] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 146.977886] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 146.987273] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca850, lo = 0xffe99000, hi = 0x0, status = 0x200, control = 0x425
[ 146.998455] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.004321] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1490, lo = 0xffedd850, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.016138] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca850 → ffffff800a6ca850; trb ffffff800a6ca850
[ 147.027155] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.033450] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 147.042964] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce480, lo = 0xffe98000, hi = 0x0, status = 0x10, control = 0x421
[ 147.054190] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.059984] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14a0, lo = 0xffedb480, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.071776] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce480 → ffffff800a6ce480; trb ffffff800a6ce480
[ 147.082798] tegra-xudc-new 3550000.xudc: bytes transferred 16 / 16
[ 147.089097] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.098487] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce490, lo = 0xffe97000, hi = 0x0, status = 0xd, control = 0x421
[ 147.109834] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.115684] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14b0, lo = 0xffedb490, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.127076] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce490 → ffffff800a6ce490; trb ffffff800a6ce490
[ 147.138620] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.144917] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 147.153781] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca860, lo = 0xffe96000, hi = 0x0, status = 0x200, control = 0x425
[ 147.165138] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.170990] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14c0, lo = 0xffedd860, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.182554] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca860 → ffffff800a6ca860; trb ffffff800a6ca860
[ 147.194092] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.200392] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 147.209358] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4a0, lo = 0xffe95000, hi = 0x0, status = 0x10, control = 0x421
[ 147.220624] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.226461] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14d0, lo = 0xffedb4a0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.238209] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4a0 → ffffff800a6ce4a0; trb ffffff800a6ce4a0
[ 147.249745] tegra-xudc-new 3550000.xudc: bytes transferred 16 / 16
[ 147.256042] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.265176] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4b0, lo = 0xffe94000, hi = 0x0, status = 0xd, control = 0x421
[ 147.276530] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.282104] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14e0, lo = 0xffedb4b0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.294025] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4b0 → ffffff800a6ce4b0; trb ffffff800a6ce4b0
[ 147.305050] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.311358] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 147.320732] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca870, lo = 0xffe93000, hi = 0x0, status = 0x200, control = 0x425
[ 147.332083] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.337930] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c14f0, lo = 0xffedd870, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.349240] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca870 → ffffff800a6ca870; trb ffffff800a6ca870
[ 147.360524] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.366823] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 147.376289] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4c0, lo = 0xffe92000, hi = 0x0, status = 0xd, control = 0x421
[ 147.387566] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.393155] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1500, lo = 0xffedb4c0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.405153] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4c0 → ffffff800a6ce4c0; trb ffffff800a6ce4c0
[ 147.416176] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.422472] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.431866] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca880, lo = 0xffe91000, hi = 0x0, status = 0x200, control = 0x425
[ 147.443210] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.449063] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1510, lo = 0xffedd880, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.460630] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca880 → ffffff800a6ca880; trb ffffff800a6ca880
[ 147.471657] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.477951] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 147.487136] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4d0, lo = 0xffe90000, hi = 0x0, status = 0xd, control = 0x421
[ 147.498436] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.504486] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1520, lo = 0xffedb4d0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.516020] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4d0 → ffffff800a6ce4d0; trb ffffff800a6ce4d0
[ 147.527299] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.533614] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 147.543032] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca890, lo = 0xffe8f000, hi = 0x0, status = 0x200, control = 0x425
[ 147.554077] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.559927] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1530, lo = 0xffedd890, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.571748] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca890 → ffffff800a6ca890; trb ffffff800a6ca890
[ 147.582777] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.589077] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea000 on ep 6 with status 0
[ 147.598548] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4e0, lo = 0xffe8e000, hi = 0x0, status = 0xd, control = 0x421
[ 147.609825] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.615366] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1540, lo = 0xffedb4e0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.627409] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4e0 → ffffff800a6ce4e0; trb ffffff800a6ce4e0
[ 147.638430] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.644727] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.654144] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8a0, lo = 0xffe8d000, hi = 0x0, status = 0x200, control = 0x425
[ 147.665208] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.671089] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1550, lo = 0xffedd8a0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.682888] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8a0 → ffffff800a6ca8a0; trb ffffff800a6ca8a0
[ 147.693898] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.700201] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 147.709537] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce4f0, lo = 0xffe8c000, hi = 0x0, status = 0x8, control = 0x421
[ 147.720703] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.726576] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1560, lo = 0xffedb4f0, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.738541] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce4f0 → ffffff800a6ce4f0; trb ffffff800a6ce4f0
[ 147.749556] tegra-xudc-new 3550000.xudc: bytes transferred 8 / 8
[ 147.755850] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 147.765020] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce500, lo = 0xffe8b000, hi = 0x0, status = 0xd, control = 0x421
[ 147.776251] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.781987] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1570, lo = 0xffedb500, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.793742] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce500 → ffffff800a6ce500; trb ffffff800a6ce500
[ 147.805029] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.811321] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.820202] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8b0, lo = 0xffe8a000, hi = 0x0, status = 0x200, control = 0x425
[ 147.831886] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 147.837726] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1580, lo = 0xffedd8b0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 147.849069] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8b0 → ffffff800a6ca8b0; trb ffffff800a6ca8b0
[ 147.860333] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 147.866888] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 147.875990] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce510, lo = 0xffe89000, hi = 0x0, status = 0x10, control = 0x421
[ 147.887145] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.893203] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c1590, lo = 0xffedb510, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.904699] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce510 → ffffff800a6ce510; trb ffffff800a6ce510
[ 147.916233] tegra-xudc-new 3550000.xudc: bytes transferred 16 / 16
[ 147.922530] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with status 0
[ 147.931414] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce520, lo = 0xffe88000, hi = 0x0, status = 0xd, control = 0x421
[ 147.943008] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 147.948577] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c15a0, lo = 0xffedb520, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 147.960257] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce520 → ffffff800a6ce520; trb ffffff800a6ce520
[ 147.971535] tegra-xudc-new 3550000.xudc: bytes transferred 13 / 13
[ 147.977836] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6ea300 on ep 11 with status 0
[ 147.986982] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ca8c0, lo = 0xffe87000, hi = 0x0, status = 0x200, control = 0x425
[ 147.998574] tegra-xudc-new 3550000.xudc: ring doorbell: 0x600
[ 148.004178] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c15b0, lo = 0xffedd8c0, hi = 0x0, status = 0xd0001e1, control = 0x68001
[ 148.015992] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ca8c0 → ffffff800a6ca8c0; trb ffffff800a6ca8c0
[ 148.027018] tegra-xudc-new 3550000.xudc: bytes transferred 31 / 512
[ 148.033318] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb400 on ep 6 with status 0
[ 148.042817] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce530, lo = 0xffe86000, hi = 0x0, status = 0x10, control = 0x421
[ 148.054055] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 148.059576] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c15c0, lo = 0x10b01, hi = 0x6, status = 0x1000014, control = 0xfc01
[ 148.071394] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep6in, usb_ep->address=86
[ 148.071402] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6ce540, lo = 0xffe85000, hi = 0x0, status = 0xd, control = 0x421
[ 148.071411] tegra-xudc-new 3550000.xudc: ring doorbell: 0xb00
[ 148.098588] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 148.113894] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep6in
[ 148.122483] tegra-xudc-new 3550000.xudc: ep 13 (type: 2, dir: in) enabled
[ 148.129293] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_enable, usb_ep->name=ep4out, usb_ep->address=4
[ 148.139179] drivers/usb/gadget/udc/tegra_xudc.c, __tegra_xudc_ep_enable, xudc->gadget.name=tegra-xudc, xudc->gadget.speed=3, xudc->gadget.max_speed=5, xudc->gadget.state=7
[ 148.154666] drivers/usb/gadget/udc/tegra_xudc.c, tegra_xudc_ep_context_setup, ep->name=ep4out
[ 148.162904] tegra-xudc-new 3550000.xudc: ep 8 (type: 2, dir: out) enabled
[ 148.170149] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc400, lo = 0xffe87002, hi = 0x0, status = 0x600, control = 0x425
[ 148.181186] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.187231] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc410, lo = 0xffe88802, hi = 0x0, status = 0x600, control = 0x425
[ 148.198599] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.204379] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc420, lo = 0xffe89002, hi = 0x0, status = 0x600, control = 0x425
[ 148.215917] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.221640] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc430, lo = 0xffe8a002, hi = 0x0, status = 0x600, control = 0x425
[ 148.233066] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.238614] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc440, lo = 0xffe8b002, hi = 0x0, status = 0x600, control = 0x425
[ 148.250391] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.256200] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc450, lo = 0xffe8c802, hi = 0x0, status = 0x600, control = 0x425
[ 148.267716] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.273266] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc460, lo = 0xffe8d002, hi = 0x0, status = 0x600, control = 0x425
[ 148.285046] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.290850] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc470, lo = 0xffe8e802, hi = 0x0, status = 0x600, control = 0x425
[ 148.302367] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.308171] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc480, lo = 0xffe8f002, hi = 0x0, status = 0x600, control = 0x425
[ 148.319434] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.325241] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a6cc490, lo = 0xffe90802, hi = 0x0, status = 0x600, control = 0x425
[ 148.337015] tegra-xudc-new 3550000.xudc: ring doorbell: 0x800
[ 148.342801] tegra-xudc-new 3550000.xudc: TRANSFER: ffffff800a5fd260, lo = 0x0, hi = 0x0, status = 0x0, control = 0x11025
[ 148.353815] tegra-xudc-new 3550000.xudc: ring doorbell: 0x140000
[ 148.359860] tegra-xudc-new 3550000.xudc: EVENT: ffffff800b3c15d0, lo = 0xffedb530, hi = 0x0, status = 0x1000000, control = 0xb8001
[ 148.371672] tegra-xudc-new 3550000.xudc: trb_in_request: request ffffff800a6ce530 → ffffff800a6ce530; trb ffffff800a6ce530
[ 148.382955] tegra-xudc-new 3550000.xudc: bytes transferred 16 / 16
[ 148.389257] tegra-xudc-new 3550000.xudc: completing request ffffffc38e6eb500 on ep 11 with sta

[Com COM30] (2019-05-06_180411).log (728 KB)