Re: dwc2: Host channel not always released on dequeue

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

 



Hi Paul,

> I added the above code because there were cases where the QTD list was
> empty and the driver would crash. So I think we want to use your alternate
> patch instead of removing the above code entirely. But obviously I missed
> an important case here, so thanks for catching this.
Ok. seems sane. Possibly it makes sense to add specific handling for all
those cases on the longer term, but not crashing seems like a good
feature for now :-)

> I think you misread the code. The two nested ifs can indeed be true at
> the same time.
You are right, I had placed the parenthesis wrong. I see what happens
there now, yes.

> So I will leave out that part of your patch, unless you can point out
> a problem it actually caused?
There were actually two sides to this part of the patch. One was fixing
the bug I thought I saw, but the other was to remove the handling of
DWC2_HC_XFER_URB_DEQUEUE from dwc2_hc_chhltd_intr_dma, since that
function is never called with that halt_status anymore (and having dead
code makes it confusing). Armed with the correct knowledge about those
nested ifs, I've removed this handling in the below patch, which makes
the code even simpler.

> I have taken your patch and reworked it a bit. Would you mind testing my
> patch below and confirm that it also fixes the problem for you?
Your changes look sane, except for my question below.

I've got another patch in return, with the changes mentioned above
(still untested as well) applied on top of your patch. I've tested this
patch quickly (no more time this weekend) and it seems to work.

> Also, can you let me know what device it was that triggered this problem
> for you? I would like to buy one so I can test this case myself.
I've been testing with an Alcatel X060S 3g dongle, but I suspect that
the problem will occur with any 3G dongle that uses the "option" driver
(which I think is most of them). Just tested a Huawei E173, which
triggers the same problem. Looking at the code, I think that other usb
serial devices might also trigger the problem. I just quickly tested a
PL2303 device, but that seems to trigger different problems, lots of:

	[  205.600000] dwc2 101c0000.otg: Unknown hub control request: 2308h wIndex: 1h wValue: 9031h
	[  205.620000] usb usb1: clear tt 1 (9031) error -22

which are probably unrelated (they appear with and without the patch),
but hide the problem. I suspect these are triggered by the fact that the
PL2303 is an USB1.1 device and the builtin transaction translator is
somehow not working properly (I had the same -22 error with a Huawei
E220 which is also USB1.1). I tried with an external hub, but the
debugging log from the split transactions receiving NAK replies kills my
CPU, so I couldn't reproduce it like this.

If you have any USB 2.0 serial device, you can probably try for yourself
by simply doing cat /dev/ttyUSB0 and then ^C'ing. Do this a few times
until you run out of host channels (which is only 4 on my hardware, so
this problem quickly becomes apparent).

I've attached a debug log which should also help illustrate the problem.
The first part is without the patch, you can see that when pressing ^C,
the urbs are dequeued but the last one is not released.

This works three times, but when running cat for the fourth time, the
channels are all taken up (one is used for an interrupt endpoint), so
urbs are queued, but never assigned a hc. With the patch, I can run cat
as much as I like, without keeping any channels occupied.

> @@ -1708,8 +1708,9 @@ static bool dwc2_halt_status_ok(struct dwc2_hsotg *hsotg,
> -		dev_dbg(hsotg->dev, "qtd->complete_split %d\n",
> -			qtd->complete_split);
> +		if (qtd)
> +			dev_dbg(hsotg->dev, "qtd->complete_split %d\n",
> +				qtd->complete_split);
Why change this function? AFAICS it's never called with qtd = NULL with
the patch?

Gr.

Matthijs



commit d991b329c35125abdfc571c9451406ed8ce20e80
Author: Matthijs Kooijman <matthijs@xxxxxxxx>
Date:   Fri Mar 22 13:05:22 2013 +0100

    staging: dwc2: Always release host channel after dequeueing
    
    Previously, when an active urb was dequeued, its host channel would not
    always be released.  There is some special handling for this in
    dwc2_hc_chhltd_intr_dma, but when it was the last urb/qtd in its qh, a
    safeguard in dwc2_hc_n_intr would short-circuit and prevent the regular
    interrupt handlers from running, without releasing the channel.
    
    This is easily triggered when using a 3G modem using the option driver.
    Opening and closing any ttyUSBx device will eat up a host channel that
    is forever unusable from that point on.
    
    Signed-off-by: Matthijs Kooijman <matthijs@xxxxxxxx>

diff --git a/drivers/staging/dwc2/hcd_intr.c b/drivers/staging/dwc2/hcd_intr.c
index df30860..ba265e8 100644
--- a/drivers/staging/dwc2/hcd_intr.c
+++ b/drivers/staging/dwc2/hcd_intr.c
@@ -712,7 +712,7 @@ static void dwc2_release_channel(struct dwc2_hsotg *hsotg,
 		free_qtd = 1;
 		break;
 	case DWC2_HC_XFER_XACT_ERR:
-		if (qtd->error_count >= 3) {
+		if (qtd && qtd->error_count >= 3) {
 			dev_vdbg(hsotg->dev,
 				 "  Complete URB with transaction error\n");
 			free_qtd = 1;
@@ -733,7 +733,7 @@ static void dwc2_release_channel(struct dwc2_hsotg *hsotg,
 	case DWC2_HC_XFER_PERIODIC_INCOMPLETE:
 		dev_vdbg(hsotg->dev, "  Complete URB with I/O error\n");
 		free_qtd = 1;
-		if (qtd->urb) {
+		if (qtd && qtd->urb) {
 			qtd->urb->status = -EIO;
 			dwc2_host_complete(hsotg, qtd->urb->priv, qtd->urb,
 					   -EIO);
@@ -1721,8 +1721,9 @@ static bool dwc2_halt_status_ok(struct dwc2_hsotg *hsotg,
 		dev_dbg(hsotg->dev,
 			"hcint 0x%08x, hcintmsk 0x%08x, hcsplt 0x%08x,\n",
 			chan->hcint, hcintmsk, hcsplt);
-		dev_dbg(hsotg->dev, "qtd->complete_split %d\n",
-			qtd->complete_split);
+		if (qtd)
+			dev_dbg(hsotg->dev, "qtd->complete_split %d\n",
+				qtd->complete_split);
 		dev_warn(hsotg->dev,
 			 "%s: no halt status, channel %d, ignoring interrupt\n",
 			 __func__, chnum);
@@ -1775,21 +1776,14 @@ static void dwc2_hc_chhltd_intr_dma(struct dwc2_hsotg *hsotg,
 		}
 	}
 
-	if (chan->halt_status == DWC2_HC_XFER_URB_DEQUEUE ||
-	    (chan->halt_status == DWC2_HC_XFER_AHB_ERR &&
-	     hsotg->core_params->dma_desc_enable <= 0)) {
-		if (hsotg->core_params->dma_desc_enable > 0)
-			dwc2_hcd_complete_xfer_ddma(hsotg, chan, chnum,
-						    chan->halt_status);
-		else
-			/*
-			 * Just release the channel. A dequeue can happen on a
-			 * transfer timeout. In the case of an AHB Error, the
-			 * channel was forced to halt because there's no way to
-			 * gracefully recover.
-			 */
-			dwc2_release_channel(hsotg, chan, qtd,
-					     chan->halt_status);
+	if (chan->halt_status == DWC2_HC_XFER_AHB_ERR) {
+		/*
+		 * Just release the channel. In the case of an AHB
+		 * Error, the channel was forced to halt because there's
+		 * no way to gracefully recover.
+		 */
+		dwc2_release_channel(hsotg, chan, qtd,
+				     chan->halt_status);
 		return;
 	}
 
@@ -1955,6 +1949,23 @@ static void dwc2_hc_n_intr(struct dwc2_hsotg *hsotg, int chnum)
 	chan->hcint = hcint;
 	hcint &= hcintmsk;
 
+	/* If the channel was halted de to a dequeue, the qtd list might
+	 * be empty or at least the first entry will not be the active
+	 * qtd. In this case, take a shortcut and just release the
+	 * channel. */
+	if (chan->halt_status == DWC2_HC_XFER_URB_DEQUEUE) {
+		/* If the channel was halted, this should be the only
+		 * interrupt unmasked */
+		WARN_ON(hcint != HCINTMSK_CHHLTD);
+		if (hsotg->core_params->dma_desc_enable > 0)
+			dwc2_hcd_complete_xfer_ddma(hsotg, chan, chnum,
+						    chan->halt_status);
+		else
+			dwc2_release_channel(hsotg, chan, NULL,
+					     chan->halt_status);
+		return;
+	}
+
 	if (list_empty(&chan->qh->qtd_list)) {
 		dev_dbg(hsotg->dev, "## no QTD queued for channel %d ##\n",
 			chnum);
With Alcatel 3G dongle, without patch

[    2.380000] usb 1-1: new high-speed USB device number 2 using dwc2
[    2.620000] usb 1-1: New USB device found, idVendor=1bbb, idProduct=0000
[    2.630000] usb 1-1: New USB device strings: Mfr=2, Product=1, SerialNumber=3
[    2.650000] usb 1-1: Product: USBModem Configuration
[    2.660000] usb 1-1: Manufacturer: USBModem
[    2.670000] usb 1-1: SerialNumber: 1234567890ABCDEF
[    2.690000] option 1-1:1.0: GSM modem (1-port) converter detected
[    2.700000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
[    2.710000] option 1-1:1.1: GSM modem (1-port) converter detected
[    2.730000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
[    2.740000] scsi0 : usb-storage 1-1:1.2
[    2.760000] option 1-1:1.3: GSM modem (1-port) converter detected
[    2.770000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2
[    3.750000] scsi 0:0:0:0: Direct-Access     USBModem MMC Storage      2.31 PQ: 0 ANSI: 2
[    3.800000] sd 0:0:0:0: [sda] Attached SCSI removable disk


root@OpenWrt:/# echo 8 > /proc/sys/kernel/printk
root@OpenWrt:/# cat /dev/ttyUSB0
[   32.340000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   32.350000] dwc2 101c0000.otg: urb_enqueue, urb 83741380
[   32.360000] dwc2 101c0000.otg:   Device address: 3
[   32.370000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   32.380000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   32.390000] dwc2 101c0000.otg:   Speed: HIGH
[   32.400000] dwc2 101c0000.otg:   Max packet size: 512
[   32.410000] dwc2 101c0000.otg:   Data buffer length: 4096
[   32.420000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   32.440000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   32.450000] dwc2 101c0000.otg:   Interval: 0
[   32.460000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   32.480000] dwc2 101c0000.otg: dwc2_qh_init()
[   32.490000] dwc2 101c0000.otg: DWC OTG HCD QH Initialized
[   32.500000] dwc2 101c0000.otg: DWC OTG HCD QH - qh = 837d4100
[   32.510000] dwc2 101c0000.otg: DWC OTG HCD QH - Device Address = 3
[   32.520000] dwc2 101c0000.otg: DWC OTG HCD QH - Endpoint 1, IN
[   32.530000] dwc2 101c0000.otg: DWC OTG HCD QH - Speed = high
[   32.540000] dwc2 101c0000.otg: DWC OTG HCD QH - Type = bulk
[   32.560000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   32.560000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   32.560000] dwc2 101c0000.otg: dwc2_hc_init()
[   32.560000] dwc2 101c0000.otg: DMA enabled
[   32.560000] dwc2 101c0000.otg: desc DMA disabled
[   32.560000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   32.560000] dwc2 101c0000.otg: set HAINTMSK to 00000006
[   32.560000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   32.560000] dwc2 101c0000.otg: set HCCHAR(2) to 00c88a00
[   32.560000] dwc2 101c0000.otg: dwc2_hc_init: Channel 2
[   32.560000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   32.560000] dwc2 101c0000.otg: 	 Ep Num: 1
[   32.560000] dwc2 101c0000.otg: 	 Is In: 1
[   32.560000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   32.560000] dwc2 101c0000.otg: 	 Ep Type: 2
[   32.560000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   32.560000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   32.560000] dwc2 101c0000.otg: Queue non-periodic transactions
[   32.560000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   32.560000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   32.560000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   32.560000] dwc2 101c0000.otg: no split
[   32.560000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(2)
[   32.560000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 2
[   32.560000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   32.560000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   32.560000] dwc2 101c0000.otg: 	 Start PID: 0
[   32.560000] dwc2 101c0000.otg: Wrote 037e9000 to HCDMA(2)
[   32.560000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   32.560000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(2)
[   32.860000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   32.870000] dwc2 101c0000.otg: urb_enqueue, urb 83741400
[   32.880000] dwc2 101c0000.otg:   Device address: 3
[   32.890000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   32.900000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   32.910000] dwc2 101c0000.otg:   Speed: HIGH
[   32.920000] dwc2 101c0000.otg:   Max packet size: 512
[   32.930000] dwc2 101c0000.otg:   Data buffer length: 4096
[   32.940000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   32.950000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   32.970000] dwc2 101c0000.otg:   Interval: 0
[   32.980000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   32.990000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   33.000000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   33.010000] dwc2 101c0000.otg: urb_enqueue, urb 83741480
[   33.020000] dwc2 101c0000.otg:   Device address: 3
[   33.030000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   33.040000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   33.050000] dwc2 101c0000.otg:   Speed: HIGH
[   33.060000] dwc2 101c0000.otg:   Max packet size: 512
[   33.070000] dwc2 101c0000.otg:   Data buffer length: 4096
[   33.080000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   33.100000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   33.110000] dwc2 101c0000.otg:   Interval: 0
[   33.120000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   33.130000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   33.140000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   33.150000] dwc2 101c0000.otg: urb_enqueue, urb 83741200
[   33.170000] dwc2 101c0000.otg:   Device address: 3
[   33.180000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   33.180000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   33.200000] dwc2 101c0000.otg:   Speed: HIGH
[   33.200000] dwc2 101c0000.otg:   Max packet size: 512
[   33.220000] dwc2 101c0000.otg:   Data buffer length: 4096
[   33.230000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   33.240000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   33.260000] dwc2 101c0000.otg:   Interval: 0
[   33.260000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   33.280000] dwc2 101c0000.otg: dwc2_hcd_qh_add()




^C

[   35.600000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   35.610000] dwc2 101c0000.otg: urb_dequeue, urb 83741380
[   35.620000] dwc2 101c0000.otg:   Device address: 3
[   35.630000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   35.640000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   35.650000] dwc2 101c0000.otg:   Speed: HIGH
[   35.660000] dwc2 101c0000.otg:   Max packet size: 512
[   35.670000] dwc2 101c0000.otg:   Data buffer length: 4096
[   35.680000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   35.700000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   35.710000] dwc2 101c0000.otg:   Interval: 0
[   35.720000] dwc2 101c0000.otg:   Assigned to channel 8371ee00:
[   35.720000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   35.720000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e9000
[   35.720000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   35.720000] dwc2 101c0000.otg:     ep_type: 2
[   35.720000] dwc2 101c0000.otg:     max_packet: 512
[   35.720000] dwc2 101c0000.otg:     data_pid_start: 0
[   35.720000] dwc2 101c0000.otg:     xfer_started: 1
[   35.720000] dwc2 101c0000.otg:     halt_status: 0
[   35.720000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   35.720000] dwc2 101c0000.otg:     xfer_dma: 037e9000
[   35.720000] dwc2 101c0000.otg:     xfer_len: 4096
[   35.720000] dwc2 101c0000.otg:     qh: 837d4100
[   35.720000] dwc2 101c0000.otg:   NP inactive sched:
[   35.720000] dwc2 101c0000.otg:   NP active sched:
[   35.720000] dwc2 101c0000.otg:     837d4100
[   35.720000] dwc2 101c0000.otg:   Channels:
[   35.720000] dwc2 101c0000.otg:      0: 8371ed00
[   35.720000] dwc2 101c0000.otg:      1: 8371ed80
[   35.720000] dwc2 101c0000.otg:      2: 8371ee00
[   35.720000] dwc2 101c0000.otg:      3: 8371ee80
[   35.720000] dwc2 101c0000.otg: dwc2_hc_halt()
[   35.720000] dwc2 101c0000.otg: dequeue/error
[   35.720000] dwc2 101c0000.otg: desc DMA disabled
[   35.720000] dwc2 101c0000.otg: DMA enabled
[   35.720000] dwc2 101c0000.otg: Channel enabled
[   35.720000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 2
[   35.720000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   35.720000] dwc2 101c0000.otg: 	 halt_pending: 1
[   35.720000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   35.720000] dwc2 101c0000.otg: 	 halt_status: 13
[   35.720000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   35.720000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   35.720000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   35.720000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   35.720000] dwc2 101c0000.otg:   urb->status = -2
[   36.070000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   36.070000] dwc2 101c0000.otg: dwc2_hc_init()
[   36.070000] dwc2 101c0000.otg: DMA enabled
[   36.070000] dwc2 101c0000.otg: desc DMA disabled
[   36.070000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   36.070000] dwc2 101c0000.otg: set HAINTMSK to 0000000e
[   36.070000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   36.070000] dwc2 101c0000.otg: set HCCHAR(3) to 00c88a00
[   36.070000] dwc2 101c0000.otg: dwc2_hc_init: Channel 3
[   36.070000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   36.070000] dwc2 101c0000.otg: 	 Ep Num: 1
[   36.070000] dwc2 101c0000.otg: 	 Is In: 1
[   36.070000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   36.070000] dwc2 101c0000.otg: 	 Ep Type: 2
[   36.070000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   36.070000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   36.070000] dwc2 101c0000.otg: Queue non-periodic transactions
[   36.070000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   36.070000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   36.070000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   36.070000] dwc2 101c0000.otg: no split
[   36.070000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(3)
[   36.070000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 3
[   36.070000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   36.070000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   36.070000] dwc2 101c0000.otg: 	 Start PID: 0
[   36.070000] dwc2 101c0000.otg: Wrote 037e8000 to HCDMA(3)
[   36.070000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   36.070000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(3)
[   36.070000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 2
[   36.070000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   36.070000] dwc2 101c0000.otg: --Host Channel 2 Interrupt: Channel Halted--
[   36.070000] dwc2 101c0000.otg: --Host Channel 2 Interrupt: DMA Channel Halted--
[   36.070000] dwc2 101c0000.otg:   dwc2_release_channel: channel 2, halt_status 13
[   36.440000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   36.450000] dwc2 101c0000.otg: urb_dequeue, urb 83741400
[   36.460000] dwc2 101c0000.otg:   Device address: 3
[   36.470000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   36.480000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   36.490000] dwc2 101c0000.otg:   Speed: HIGH
[   36.500000] dwc2 101c0000.otg:   Max packet size: 512
[   36.510000] dwc2 101c0000.otg:   Data buffer length: 4096
[   36.520000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   36.540000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   36.550000] dwc2 101c0000.otg:   Interval: 0
[   36.560000] dwc2 101c0000.otg:   Assigned to channel 8371ee80:
[   36.560000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   36.560000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e8000
[   36.560000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   36.560000] dwc2 101c0000.otg:     ep_type: 2
[   36.560000] dwc2 101c0000.otg:     max_packet: 512
[   36.560000] dwc2 101c0000.otg:     data_pid_start: 0
[   36.560000] dwc2 101c0000.otg:     xfer_started: 1
[   36.560000] dwc2 101c0000.otg:     halt_status: 0
[   36.560000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   36.560000] dwc2 101c0000.otg:     xfer_dma: 037e8000
[   36.560000] dwc2 101c0000.otg:     xfer_len: 4096
[   36.560000] dwc2 101c0000.otg:     qh: 837d4100
[   36.560000] dwc2 101c0000.otg:   NP inactive sched:
[   36.560000] dwc2 101c0000.otg:   NP active sched:
[   36.560000] dwc2 101c0000.otg:     837d4100
[   36.560000] dwc2 101c0000.otg:   Channels:
[   36.560000] dwc2 101c0000.otg:      0: 8371ed00
[   36.560000] dwc2 101c0000.otg:      1: 8371ed80
[   36.560000] dwc2 101c0000.otg:      2: 8371ee00
[   36.560000] dwc2 101c0000.otg:      3: 8371ee80
[   36.560000] dwc2 101c0000.otg: dwc2_hc_halt()
[   36.560000] dwc2 101c0000.otg: dequeue/error
[   36.560000] dwc2 101c0000.otg: desc DMA disabled
[   36.560000] dwc2 101c0000.otg: DMA enabled
[   36.560000] dwc2 101c0000.otg: Channel enabled
[   36.560000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 3
[   36.560000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   36.560000] dwc2 101c0000.otg: 	 halt_pending: 1
[   36.560000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   36.560000] dwc2 101c0000.otg: 	 halt_status: 13
[   36.560000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   36.560000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   36.560000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   36.560000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   36.560000] dwc2 101c0000.otg:   urb->status = -2
[   36.910000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   36.910000] dwc2 101c0000.otg: dwc2_hc_init()
[   36.910000] dwc2 101c0000.otg: DMA enabled
[   36.910000] dwc2 101c0000.otg: desc DMA disabled
[   36.910000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   36.910000] dwc2 101c0000.otg: set HAINTMSK to 0000000b
[   36.910000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   36.910000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   36.910000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   36.910000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   36.910000] dwc2 101c0000.otg: 	 Ep Num: 1
[   36.910000] dwc2 101c0000.otg: 	 Is In: 1
[   36.910000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   36.910000] dwc2 101c0000.otg: 	 Ep Type: 2
[   36.910000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   36.910000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   36.910000] dwc2 101c0000.otg: Queue non-periodic transactions
[   36.910000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   36.910000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   36.910000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   36.910000] dwc2 101c0000.otg: no split
[   36.910000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   36.910000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   36.910000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   36.910000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   36.910000] dwc2 101c0000.otg: 	 Start PID: 0
[   36.910000] dwc2 101c0000.otg: Wrote 037cc000 to HCDMA(1)
[   36.910000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   36.910000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   36.910000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 3
[   36.910000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   36.910000] dwc2 101c0000.otg: --Host Channel 3 Interrupt: Channel Halted--
[   36.910000] dwc2 101c0000.otg: --Host Channel 3 Interrupt: DMA Channel Halted--
[   36.910000] dwc2 101c0000.otg:   dwc2_release_channel: channel 3, halt_status 13
[   37.280000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   37.290000] dwc2 101c0000.otg: urb_dequeue, urb 83741480
[   37.300000] dwc2 101c0000.otg:   Device address: 3
[   37.310000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   37.320000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   37.330000] dwc2 101c0000.otg:   Speed: HIGH
[   37.340000] dwc2 101c0000.otg:   Max packet size: 512
[   37.350000] dwc2 101c0000.otg:   Data buffer length: 4096
[   37.360000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   37.370000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   37.390000] dwc2 101c0000.otg:   Interval: 0
[   37.400000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   37.400000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   37.400000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037cc000
[   37.400000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   37.400000] dwc2 101c0000.otg:     ep_type: 2
[   37.400000] dwc2 101c0000.otg:     max_packet: 512
[   37.400000] dwc2 101c0000.otg:     data_pid_start: 0
[   37.400000] dwc2 101c0000.otg:     xfer_started: 1
[   37.400000] dwc2 101c0000.otg:     halt_status: 0
[   37.400000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   37.400000] dwc2 101c0000.otg:     xfer_dma: 037cc000
[   37.400000] dwc2 101c0000.otg:     xfer_len: 4096
[   37.400000] dwc2 101c0000.otg:     qh: 837d4100
[   37.400000] dwc2 101c0000.otg:   NP inactive sched:
[   37.400000] dwc2 101c0000.otg:   NP active sched:
[   37.400000] dwc2 101c0000.otg:     837d4100
[   37.400000] dwc2 101c0000.otg:   Channels:
[   37.400000] dwc2 101c0000.otg:      0: 8371ed00
[   37.400000] dwc2 101c0000.otg:      1: 8371ed80
[   37.400000] dwc2 101c0000.otg:      2: 8371ee00
[   37.400000] dwc2 101c0000.otg:      3: 8371ee80
[   37.400000] dwc2 101c0000.otg: dwc2_hc_halt()
[   37.400000] dwc2 101c0000.otg: dequeue/error
[   37.400000] dwc2 101c0000.otg: desc DMA disabled
[   37.400000] dwc2 101c0000.otg: DMA enabled
[   37.400000] dwc2 101c0000.otg: Channel enabled
[   37.400000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   37.400000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   37.400000] dwc2 101c0000.otg: 	 halt_pending: 1
[   37.400000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   37.400000] dwc2 101c0000.otg: 	 halt_status: 13
[   37.400000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   37.400000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   37.400000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   37.400000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   37.400000] dwc2 101c0000.otg:   urb->status = -2
[   37.750000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   37.750000] dwc2 101c0000.otg: dwc2_hc_init()
[   37.750000] dwc2 101c0000.otg: DMA enabled
[   37.750000] dwc2 101c0000.otg: desc DMA disabled
[   37.750000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   37.750000] dwc2 101c0000.otg: set HAINTMSK to 00000007
[   37.750000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   37.750000] dwc2 101c0000.otg: set HCCHAR(0) to 00c88a00
[   37.750000] dwc2 101c0000.otg: dwc2_hc_init: Channel 0
[   37.750000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   37.750000] dwc2 101c0000.otg: 	 Ep Num: 1
[   37.750000] dwc2 101c0000.otg: 	 Is In: 1
[   37.750000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   37.750000] dwc2 101c0000.otg: 	 Ep Type: 2
[   37.750000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   37.750000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   37.750000] dwc2 101c0000.otg: Queue non-periodic transactions
[   37.750000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   37.750000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   37.750000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   37.750000] dwc2 101c0000.otg: no split
[   37.750000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(0)
[   37.750000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 0
[   37.750000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   37.750000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   37.750000] dwc2 101c0000.otg: 	 Start PID: 0
[   37.750000] dwc2 101c0000.otg: Wrote 03005000 to HCDMA(0)
[   37.750000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   37.750000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(0)
[   37.750000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   37.750000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   37.750000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   37.750000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   37.750000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   38.120000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   38.130000] dwc2 101c0000.otg: urb_dequeue, urb 83741200
[   38.140000] dwc2 101c0000.otg:   Device address: 3
[   38.150000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   38.160000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   38.170000] dwc2 101c0000.otg:   Speed: HIGH
[   38.180000] dwc2 101c0000.otg:   Max packet size: 512
[   38.190000] dwc2 101c0000.otg:   Data buffer length: 4096
[   38.200000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   38.210000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   38.230000] dwc2 101c0000.otg:   Interval: 0
[   38.240000] dwc2 101c0000.otg:   Assigned to channel 8371ed00:
[   38.240000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   38.240000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03005000
[   38.240000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   38.240000] dwc2 101c0000.otg:     ep_type: 2
[   38.240000] dwc2 101c0000.otg:     max_packet: 512
[   38.240000] dwc2 101c0000.otg:     data_pid_start: 0
[   38.240000] dwc2 101c0000.otg:     xfer_started: 1
[   38.240000] dwc2 101c0000.otg:     halt_status: 0
[   38.240000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   38.240000] dwc2 101c0000.otg:     xfer_dma: 03005000
[   38.240000] dwc2 101c0000.otg:     xfer_len: 4096
[   38.240000] dwc2 101c0000.otg:     qh: 837d4100
[   38.240000] dwc2 101c0000.otg:   NP inactive sched:
[   38.240000] dwc2 101c0000.otg:   NP active sched:
[   38.240000] dwc2 101c0000.otg:     837d4100
[   38.240000] dwc2 101c0000.otg:   Channels:
[   38.240000] dwc2 101c0000.otg:      0: 8371ed00
[   38.240000] dwc2 101c0000.otg:      1: 8371ed80
[   38.240000] dwc2 101c0000.otg:      2: 8371ee00
[   38.240000] dwc2 101c0000.otg:      3: 8371ee80
[   38.240000] dwc2 101c0000.otg: dwc2_hc_halt()
[   38.240000] dwc2 101c0000.otg: dequeue/error
[   38.240000] dwc2 101c0000.otg: desc DMA disabled
[   38.240000] dwc2 101c0000.otg: DMA enabled
[   38.240000] dwc2 101c0000.otg: Channel enabled
[   38.240000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 0
[   38.240000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   38.240000] dwc2 101c0000.otg: 	 halt_pending: 1
[   38.240000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   38.240000] dwc2 101c0000.otg: 	 halt_status: 13
[   38.240000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   38.240000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   38.240000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   38.240000] dwc2 101c0000.otg:   urb->status = -2
[   38.580000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 0
[   38.580000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   38.580000] dwc2 101c0000.otg: ## no QTD queued for channel 0 ##
[   38.580000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# root@OpenWrt:/# cat /dev/ttyUSB0root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# root@OpenWrt:/# cat /dev/ttyUSB0
[   42.510000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   42.520000] dwc2 101c0000.otg: urb_enqueue, urb 83741380
[   42.530000] dwc2 101c0000.otg:   Device address: 3
[   42.540000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   42.550000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   42.560000] dwc2 101c0000.otg:   Speed: HIGH
[   42.570000] dwc2 101c0000.otg:   Max packet size: 512
[   42.580000] dwc2 101c0000.otg:   Data buffer length: 4096
[   42.590000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   42.610000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   42.620000] dwc2 101c0000.otg:   Interval: 0
[   42.630000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   42.650000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   42.660000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   42.660000] dwc2 101c0000.otg: dwc2_hc_init()
[   42.660000] dwc2 101c0000.otg: DMA enabled
[   42.660000] dwc2 101c0000.otg: desc DMA disabled
[   42.660000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   42.660000] dwc2 101c0000.otg: set HAINTMSK to 0000000b
[   42.660000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   42.660000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   42.660000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   42.660000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   42.660000] dwc2 101c0000.otg: 	 Ep Num: 1
[   42.660000] dwc2 101c0000.otg: 	 Is In: 1
[   42.660000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   42.660000] dwc2 101c0000.otg: 	 Ep Type: 2
[   42.660000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   42.660000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   42.660000] dwc2 101c0000.otg: Queue non-periodic transactions
[   42.660000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   42.660000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   42.660000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   42.660000] dwc2 101c0000.otg: no split
[   42.660000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   42.660000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   42.660000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   42.660000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   42.660000] dwc2 101c0000.otg: 	 Start PID: 0
[   42.660000] dwc2 101c0000.otg: Wrote 037e9000 to HCDMA(1)
[   42.660000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   42.660000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   42.950000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   42.960000] dwc2 101c0000.otg: urb_enqueue, urb 83741400
[   42.970000] dwc2 101c0000.otg:   Device address: 3
[   42.980000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   42.990000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   43.000000] dwc2 101c0000.otg:   Speed: HIGH
[   43.010000] dwc2 101c0000.otg:   Max packet size: 512
[   43.020000] dwc2 101c0000.otg:   Data buffer length: 4096
[   43.030000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   43.040000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   43.060000] dwc2 101c0000.otg:   Interval: 0
[   43.070000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   43.080000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   43.090000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   43.100000] dwc2 101c0000.otg: urb_enqueue, urb 83741480
[   43.110000] dwc2 101c0000.otg:   Device address: 3
[   43.120000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   43.130000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   43.140000] dwc2 101c0000.otg:   Speed: HIGH
[   43.150000] dwc2 101c0000.otg:   Max packet size: 512
[   43.160000] dwc2 101c0000.otg:   Data buffer length: 4096
[   43.170000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   43.190000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   43.200000] dwc2 101c0000.otg:   Interval: 0
[   43.210000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   43.230000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   43.240000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   43.250000] dwc2 101c0000.otg: urb_enqueue, urb 83741200
[   43.260000] dwc2 101c0000.otg:   Device address: 3
[   43.270000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   43.280000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   43.290000] dwc2 101c0000.otg:   Speed: HIGH
[   43.300000] dwc2 101c0000.otg:   Max packet size: 512
[   43.310000] dwc2 101c0000.otg:   Data buffer length: 4096
[   43.320000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   43.330000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   43.350000] dwc2 101c0000.otg:   Interval: 0
[   43.360000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   43.370000] dwc2 101c0000.otg: dwc2_hcd_qh_add()



^C

[   44.770000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   44.780000] dwc2 101c0000.otg: urb_dequeue, urb 83741380
[   44.790000] dwc2 101c0000.otg:   Device address: 3
[   44.800000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   44.810000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   44.820000] dwc2 101c0000.otg:   Speed: HIGH
[   44.830000] dwc2 101c0000.otg:   Max packet size: 512
[   44.840000] dwc2 101c0000.otg:   Data buffer length: 4096
[   44.850000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   44.860000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   44.880000] dwc2 101c0000.otg:   Interval: 0
[   44.890000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   44.890000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   44.890000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e9000
[   44.890000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   44.890000] dwc2 101c0000.otg:     ep_type: 2
[   44.890000] dwc2 101c0000.otg:     max_packet: 512
[   44.890000] dwc2 101c0000.otg:     data_pid_start: 0
[   44.890000] dwc2 101c0000.otg:     xfer_started: 1
[   44.890000] dwc2 101c0000.otg:     halt_status: 0
[   44.890000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   44.890000] dwc2 101c0000.otg:     xfer_dma: 037e9000
[   44.890000] dwc2 101c0000.otg:     xfer_len: 4096
[   44.890000] dwc2 101c0000.otg:     qh: 837d4100
[   44.890000] dwc2 101c0000.otg:   NP inactive sched:
[   44.890000] dwc2 101c0000.otg:   NP active sched:
[   44.890000] dwc2 101c0000.otg:     837d4100
[   44.890000] dwc2 101c0000.otg:   Channels:
[   44.890000] dwc2 101c0000.otg:      0: 8371ed00
[   44.890000] dwc2 101c0000.otg:      1: 8371ed80
[   44.890000] dwc2 101c0000.otg:      2: 8371ee00
[   44.890000] dwc2 101c0000.otg:      3: 8371ee80
[   44.890000] dwc2 101c0000.otg: dwc2_hc_halt()
[   44.890000] dwc2 101c0000.otg: dequeue/error
[   44.890000] dwc2 101c0000.otg: desc DMA disabled
[   44.890000] dwc2 101c0000.otg: DMA enabled
[   44.890000] dwc2 101c0000.otg: Channel enabled
[   44.890000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   44.890000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   44.890000] dwc2 101c0000.otg: 	 halt_pending: 1
[   44.890000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   44.890000] dwc2 101c0000.otg: 	 halt_status: 13
[   44.890000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   44.890000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   44.890000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   44.890000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   44.890000] dwc2 101c0000.otg:   urb->status = -2
[   45.240000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   45.240000] dwc2 101c0000.otg: dwc2_hc_init()
[   45.240000] dwc2 101c0000.otg: DMA enabled
[   45.240000] dwc2 101c0000.otg: desc DMA disabled
[   45.240000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   45.240000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   45.240000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   45.240000] dwc2 101c0000.otg: set HCCHAR(3) to 00c88a00
[   45.240000] dwc2 101c0000.otg: dwc2_hc_init: Channel 3
[   45.240000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   45.240000] dwc2 101c0000.otg: 	 Ep Num: 1
[   45.240000] dwc2 101c0000.otg: 	 Is In: 1
[   45.240000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   45.240000] dwc2 101c0000.otg: 	 Ep Type: 2
[   45.240000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   45.240000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   45.240000] dwc2 101c0000.otg: Queue non-periodic transactions
[   45.240000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   45.240000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   45.240000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   45.240000] dwc2 101c0000.otg: no split
[   45.240000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(3)
[   45.240000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 3
[   45.240000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   45.240000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   45.240000] dwc2 101c0000.otg: 	 Start PID: 0
[   45.240000] dwc2 101c0000.otg: Wrote 037e8000 to HCDMA(3)
[   45.240000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   45.240000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(3)
[   45.240000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   45.240000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   45.240000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   45.240000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   45.240000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   45.610000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   45.620000] dwc2 101c0000.otg: urb_dequeue, urb 83741400
[   45.630000] dwc2 101c0000.otg:   Device address: 3
[   45.640000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   45.650000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   45.660000] dwc2 101c0000.otg:   Speed: HIGH
[   45.670000] dwc2 101c0000.otg:   Max packet size: 512
[   45.680000] dwc2 101c0000.otg:   Data buffer length: 4096
[   45.690000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   45.700000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   45.720000] dwc2 101c0000.otg:   Interval: 0
[   45.730000] dwc2 101c0000.otg:   Assigned to channel 8371ee80:
[   45.730000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   45.730000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e8000
[   45.730000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   45.730000] dwc2 101c0000.otg:     ep_type: 2
[   45.730000] dwc2 101c0000.otg:     max_packet: 512
[   45.730000] dwc2 101c0000.otg:     data_pid_start: 0
[   45.730000] dwc2 101c0000.otg:     xfer_started: 1
[   45.730000] dwc2 101c0000.otg:     halt_status: 0
[   45.730000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   45.730000] dwc2 101c0000.otg:     xfer_dma: 037e8000
[   45.730000] dwc2 101c0000.otg:     xfer_len: 4096
[   45.730000] dwc2 101c0000.otg:     qh: 837d4100
[   45.730000] dwc2 101c0000.otg:   NP inactive sched:
[   45.730000] dwc2 101c0000.otg:   NP active sched:
[   45.730000] dwc2 101c0000.otg:     837d4100
[   45.730000] dwc2 101c0000.otg:   Channels:
[   45.730000] dwc2 101c0000.otg:      0: 8371ed00
[   45.730000] dwc2 101c0000.otg:      1: 8371ed80
[   45.730000] dwc2 101c0000.otg:      2: 8371ee00
[   45.730000] dwc2 101c0000.otg:      3: 8371ee80
[   45.730000] dwc2 101c0000.otg: dwc2_hc_halt()
[   45.730000] dwc2 101c0000.otg: dequeue/error
[   45.730000] dwc2 101c0000.otg: desc DMA disabled
[   45.730000] dwc2 101c0000.otg: DMA enabled
[   45.730000] dwc2 101c0000.otg: Channel enabled
[   45.730000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 3
[   45.730000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   45.730000] dwc2 101c0000.otg: 	 halt_pending: 1
[   45.730000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   45.730000] dwc2 101c0000.otg: 	 halt_status: 13
[   45.730000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   45.730000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   45.730000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   45.730000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   45.730000] dwc2 101c0000.otg:   urb->status = -2
[   46.080000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   46.080000] dwc2 101c0000.otg: dwc2_hc_init()
[   46.080000] dwc2 101c0000.otg: DMA enabled
[   46.080000] dwc2 101c0000.otg: desc DMA disabled
[   46.080000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   46.080000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   46.080000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   46.080000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   46.080000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   46.080000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   46.080000] dwc2 101c0000.otg: 	 Ep Num: 1
[   46.080000] dwc2 101c0000.otg: 	 Is In: 1
[   46.080000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   46.080000] dwc2 101c0000.otg: 	 Ep Type: 2
[   46.080000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   46.080000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   46.080000] dwc2 101c0000.otg: Queue non-periodic transactions
[   46.080000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   46.080000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   46.080000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   46.080000] dwc2 101c0000.otg: no split
[   46.080000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   46.080000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   46.080000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   46.080000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   46.080000] dwc2 101c0000.otg: 	 Start PID: 0
[   46.080000] dwc2 101c0000.otg: Wrote 037cc000 to HCDMA(1)
[   46.080000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   46.080000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   46.080000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 3
[   46.080000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   46.080000] dwc2 101c0000.otg: --Host Channel 3 Interrupt: Channel Halted--
[   46.080000] dwc2 101c0000.otg: --Host Channel 3 Interrupt: DMA Channel Halted--
[   46.080000] dwc2 101c0000.otg:   dwc2_release_channel: channel 3, halt_status 13
[   46.450000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   46.460000] dwc2 101c0000.otg: urb_dequeue, urb 83741480
[   46.470000] dwc2 101c0000.otg:   Device address: 3
[   46.480000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   46.490000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   46.500000] dwc2 101c0000.otg:   Speed: HIGH
[   46.510000] dwc2 101c0000.otg:   Max packet size: 512
[   46.520000] dwc2 101c0000.otg:   Data buffer length: 4096
[   46.530000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   46.540000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   46.560000] dwc2 101c0000.otg:   Interval: 0
[   46.570000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   46.570000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   46.570000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037cc000
[   46.570000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   46.570000] dwc2 101c0000.otg:     ep_type: 2
[   46.570000] dwc2 101c0000.otg:     max_packet: 512
[   46.570000] dwc2 101c0000.otg:     data_pid_start: 0
[   46.570000] dwc2 101c0000.otg:     xfer_started: 1
[   46.570000] dwc2 101c0000.otg:     halt_status: 0
[   46.570000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   46.570000] dwc2 101c0000.otg:     xfer_dma: 037cc000
[   46.570000] dwc2 101c0000.otg:     xfer_len: 4096
[   46.570000] dwc2 101c0000.otg:     qh: 837d4100
[   46.570000] dwc2 101c0000.otg:   NP inactive sched:
[   46.570000] dwc2 101c0000.otg:   NP active sched:
[   46.570000] dwc2 101c0000.otg:     837d4100
[   46.570000] dwc2 101c0000.otg:   Channels:
[   46.570000] dwc2 101c0000.otg:      0: 8371ed00
[   46.570000] dwc2 101c0000.otg:      1: 8371ed80
[   46.570000] dwc2 101c0000.otg:      2: 8371ee00
[   46.570000] dwc2 101c0000.otg:      3: 8371ee80
[   46.570000] dwc2 101c0000.otg: dwc2_hc_halt()
[   46.570000] dwc2 101c0000.otg: dequeue/error
[   46.570000] dwc2 101c0000.otg: desc DMA disabled
[   46.570000] dwc2 101c0000.otg: DMA enabled
[   46.570000] dwc2 101c0000.otg: Channel enabled
[   46.570000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   46.570000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   46.570000] dwc2 101c0000.otg: 	 halt_pending: 1
[   46.570000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   46.570000] dwc2 101c0000.otg: 	 halt_status: 13
[   46.570000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   46.570000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   46.570000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   46.570000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   46.570000] dwc2 101c0000.otg:   urb->status = -2
[   46.920000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   46.920000] dwc2 101c0000.otg: dwc2_hc_init()
[   46.920000] dwc2 101c0000.otg: DMA enabled
[   46.920000] dwc2 101c0000.otg: desc DMA disabled
[   46.920000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   46.920000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   46.920000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   46.920000] dwc2 101c0000.otg: set HCCHAR(3) to 00c88a00
[   46.920000] dwc2 101c0000.otg: dwc2_hc_init: Channel 3
[   46.920000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   46.920000] dwc2 101c0000.otg: 	 Ep Num: 1
[   46.920000] dwc2 101c0000.otg: 	 Is In: 1
[   46.920000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   46.920000] dwc2 101c0000.otg: 	 Ep Type: 2
[   46.920000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   46.920000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   46.920000] dwc2 101c0000.otg: Queue non-periodic transactions
[   46.920000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   46.920000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   46.920000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   46.920000] dwc2 101c0000.otg: no split
[   46.920000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(3)
[   46.920000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 3
[   46.920000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   46.920000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   46.920000] dwc2 101c0000.otg: 	 Start PID: 0
[   46.920000] dwc2 101c0000.otg: Wrote 03005000 to HCDMA(3)
[   46.920000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   46.920000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(3)
[   46.920000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   46.920000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   46.920000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   46.920000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   46.920000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   47.280000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   47.290000] dwc2 101c0000.otg: urb_dequeue, urb 83741200
[   47.310000] dwc2 101c0000.otg:   Device address: 3
[   47.320000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   47.320000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   47.340000] dwc2 101c0000.otg:   Speed: HIGH
[   47.340000] dwc2 101c0000.otg:   Max packet size: 512
[   47.360000] dwc2 101c0000.otg:   Data buffer length: 4096
[   47.370000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   47.380000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   47.400000] dwc2 101c0000.otg:   Interval: 0
[   47.400000] dwc2 101c0000.otg:   Assigned to channel 8371ee80:
[   47.400000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   47.400000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03005000
[   47.400000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   47.400000] dwc2 101c0000.otg:     ep_type: 2
[   47.400000] dwc2 101c0000.otg:     max_packet: 512
[   47.400000] dwc2 101c0000.otg:     data_pid_start: 0
[   47.400000] dwc2 101c0000.otg:     xfer_started: 1
[   47.400000] dwc2 101c0000.otg:     halt_status: 0
[   47.400000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   47.400000] dwc2 101c0000.otg:     xfer_dma: 03005000
[   47.400000] dwc2 101c0000.otg:     xfer_len: 4096
[   47.400000] dwc2 101c0000.otg:     qh: 837d4100
[   47.400000] dwc2 101c0000.otg:   NP inactive sched:
[   47.400000] dwc2 101c0000.otg:   NP active sched:
[   47.400000] dwc2 101c0000.otg:     837d4100
[   47.400000] dwc2 101c0000.otg:   Channels:
[   47.400000] dwc2 101c0000.otg:      0: 8371ed00
[   47.400000] dwc2 101c0000.otg:      1: 8371ed80
[   47.400000] dwc2 101c0000.otg:      2: 8371ee00
[   47.400000] dwc2 101c0000.otg:      3: 8371ee80
[   47.400000] dwc2 101c0000.otg: dwc2_hc_halt()
[   47.400000] dwc2 101c0000.otg: dequeue/error
[   47.400000] dwc2 101c0000.otg: desc DMA disabled
[   47.400000] dwc2 101c0000.otg: DMA enabled
[   47.400000] dwc2 101c0000.otg: Channel enabled
[   47.400000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 3
[   47.400000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   47.400000] dwc2 101c0000.otg: 	 halt_pending: 1
[   47.400000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   47.400000] dwc2 101c0000.otg: 	 halt_status: 13
[   47.400000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   47.400000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   47.400000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   47.400000] dwc2 101c0000.otg:   urb->status = -2
[   47.750000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 3
[   47.750000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   47.750000] dwc2 101c0000.otg: ## no QTD queued for channel 3 ##
[   47.750000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# root@OpenWrt:/# cat /dev/ttyUSB0root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# root@OpenWrt:/# cat /dev/ttyUSB0
[   51.210000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   51.220000] dwc2 101c0000.otg: urb_enqueue, urb 83741380
[   51.230000] dwc2 101c0000.otg:   Device address: 3
[   51.240000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   51.250000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   51.260000] dwc2 101c0000.otg:   Speed: HIGH
[   51.270000] dwc2 101c0000.otg:   Max packet size: 512
[   51.280000] dwc2 101c0000.otg:   Data buffer length: 4096
[   51.290000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   51.310000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   51.320000] dwc2 101c0000.otg:   Interval: 0
[   51.330000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   51.350000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   51.360000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   51.360000] dwc2 101c0000.otg: dwc2_hc_init()
[   51.360000] dwc2 101c0000.otg: DMA enabled
[   51.360000] dwc2 101c0000.otg: desc DMA disabled
[   51.360000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   51.360000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   51.360000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   51.360000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   51.360000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   51.360000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   51.360000] dwc2 101c0000.otg: 	 Ep Num: 1
[   51.360000] dwc2 101c0000.otg: 	 Is In: 1
[   51.360000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   51.360000] dwc2 101c0000.otg: 	 Ep Type: 2
[   51.360000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   51.360000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   51.360000] dwc2 101c0000.otg: Queue non-periodic transactions
[   51.360000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   51.360000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   51.360000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   51.360000] dwc2 101c0000.otg: no split
[   51.360000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   51.360000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   51.360000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   51.360000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   51.360000] dwc2 101c0000.otg: 	 Start PID: 0
[   51.360000] dwc2 101c0000.otg: Wrote 037e9000 to HCDMA(1)
[   51.360000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   51.360000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   51.650000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   51.660000] dwc2 101c0000.otg: urb_enqueue, urb 83741400
[   51.670000] dwc2 101c0000.otg:   Device address: 3
[   51.680000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   51.690000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   51.700000] dwc2 101c0000.otg:   Speed: HIGH
[   51.710000] dwc2 101c0000.otg:   Max packet size: 512
[   51.720000] dwc2 101c0000.otg:   Data buffer length: 4096
[   51.730000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   51.740000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   51.760000] dwc2 101c0000.otg:   Interval: 0
[   51.770000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   51.780000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   51.790000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   51.800000] dwc2 101c0000.otg: urb_enqueue, urb 83741480
[   51.810000] dwc2 101c0000.otg:   Device address: 3
[   51.820000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   51.830000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   51.840000] dwc2 101c0000.otg:   Speed: HIGH
[   51.850000] dwc2 101c0000.otg:   Max packet size: 512
[   51.860000] dwc2 101c0000.otg:   Data buffer length: 4096
[   51.870000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   51.890000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   51.900000] dwc2 101c0000.otg:   Interval: 0
[   51.910000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   51.930000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   51.940000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   51.950000] dwc2 101c0000.otg: urb_enqueue, urb 83741200
[   51.960000] dwc2 101c0000.otg:   Device address: 3
[   51.970000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   51.980000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   51.990000] dwc2 101c0000.otg:   Speed: HIGH
[   52.000000] dwc2 101c0000.otg:   Max packet size: 512
[   52.010000] dwc2 101c0000.otg:   Data buffer length: 4096
[   52.020000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   52.030000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   52.050000] dwc2 101c0000.otg:   Interval: 0
[   52.060000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   52.070000] dwc2 101c0000.otg: dwc2_hcd_qh_add()



^C

[   56.280000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   56.290000] dwc2 101c0000.otg: urb_dequeue, urb 83741380
[   56.300000] dwc2 101c0000.otg:   Device address: 3
[   56.310000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   56.320000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   56.330000] dwc2 101c0000.otg:   Speed: HIGH
[   56.340000] dwc2 101c0000.otg:   Max packet size: 512
[   56.350000] dwc2 101c0000.otg:   Data buffer length: 4096
[   56.360000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   56.380000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   56.390000] dwc2 101c0000.otg:   Interval: 0
[   56.400000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   56.400000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   56.400000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e9000
[   56.400000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   56.400000] dwc2 101c0000.otg:     ep_type: 2
[   56.400000] dwc2 101c0000.otg:     max_packet: 512
[   56.400000] dwc2 101c0000.otg:     data_pid_start: 0
[   56.400000] dwc2 101c0000.otg:     xfer_started: 1
[   56.400000] dwc2 101c0000.otg:     halt_status: 0
[   56.400000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   56.400000] dwc2 101c0000.otg:     xfer_dma: 037e9000
[   56.400000] dwc2 101c0000.otg:     xfer_len: 4096
[   56.400000] dwc2 101c0000.otg:     qh: 837d4100
[   56.400000] dwc2 101c0000.otg:   NP inactive sched:
[   56.400000] dwc2 101c0000.otg:   NP active sched:
[   56.400000] dwc2 101c0000.otg:     837d4100
[   56.400000] dwc2 101c0000.otg:   Channels:
[   56.400000] dwc2 101c0000.otg:      0: 8371ed00
[   56.400000] dwc2 101c0000.otg:      1: 8371ed80
[   56.400000] dwc2 101c0000.otg:      2: 8371ee00
[   56.400000] dwc2 101c0000.otg:      3: 8371ee80
[   56.400000] dwc2 101c0000.otg: dwc2_hc_halt()
[   56.400000] dwc2 101c0000.otg: dequeue/error
[   56.400000] dwc2 101c0000.otg: desc DMA disabled
[   56.400000] dwc2 101c0000.otg: DMA enabled
[   56.400000] dwc2 101c0000.otg: Channel enabled
[   56.400000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   56.400000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   56.400000] dwc2 101c0000.otg: 	 halt_pending: 1
[   56.400000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   56.400000] dwc2 101c0000.otg: 	 halt_status: 13
[   56.400000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   56.400000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   56.400000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   56.400000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   56.400000] dwc2 101c0000.otg:   urb->status = -2
[   56.750000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   56.750000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   56.750000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   56.750000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   56.750000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   56.750000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   56.750000] dwc2 101c0000.otg: dwc2_hc_init()
[   56.750000] dwc2 101c0000.otg: DMA enabled
[   56.750000] dwc2 101c0000.otg: desc DMA disabled
[   56.750000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   56.750000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   56.750000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   56.750000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   56.750000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   56.750000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   56.750000] dwc2 101c0000.otg: 	 Ep Num: 1
[   56.750000] dwc2 101c0000.otg: 	 Is In: 1
[   56.750000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   56.750000] dwc2 101c0000.otg: 	 Ep Type: 2
[   56.750000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   56.750000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   56.750000] dwc2 101c0000.otg: Queue non-periodic transactions
[   56.750000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   56.750000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   56.750000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   56.750000] dwc2 101c0000.otg: no split
[   56.750000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   56.750000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   56.750000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   56.750000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   56.750000] dwc2 101c0000.otg: 	 Start PID: 0
[   56.750000] dwc2 101c0000.otg: Wrote 037e8000 to HCDMA(1)
[   56.750000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   56.750000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   57.120000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   57.130000] dwc2 101c0000.otg: urb_dequeue, urb 83741400
[   57.140000] dwc2 101c0000.otg:   Device address: 3
[   57.150000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   57.160000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   57.170000] dwc2 101c0000.otg:   Speed: HIGH
[   57.180000] dwc2 101c0000.otg:   Max packet size: 512
[   57.190000] dwc2 101c0000.otg:   Data buffer length: 4096
[   57.200000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   57.220000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   57.230000] dwc2 101c0000.otg:   Interval: 0
[   57.240000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   57.240000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   57.240000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037e8000
[   57.240000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   57.240000] dwc2 101c0000.otg:     ep_type: 2
[   57.240000] dwc2 101c0000.otg:     max_packet: 512
[   57.240000] dwc2 101c0000.otg:     data_pid_start: 0
[   57.240000] dwc2 101c0000.otg:     xfer_started: 1
[   57.240000] dwc2 101c0000.otg:     halt_status: 0
[   57.240000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   57.240000] dwc2 101c0000.otg:     xfer_dma: 037e8000
[   57.240000] dwc2 101c0000.otg:     xfer_len: 4096
[   57.240000] dwc2 101c0000.otg:     qh: 837d4100
[   57.240000] dwc2 101c0000.otg:   NP inactive sched:
[   57.240000] dwc2 101c0000.otg:   NP active sched:
[   57.240000] dwc2 101c0000.otg:     837d4100
[   57.240000] dwc2 101c0000.otg:   Channels:
[   57.240000] dwc2 101c0000.otg:      0: 8371ed00
[   57.240000] dwc2 101c0000.otg:      1: 8371ed80
[   57.240000] dwc2 101c0000.otg:      2: 8371ee00
[   57.240000] dwc2 101c0000.otg:      3: 8371ee80
[   57.240000] dwc2 101c0000.otg: dwc2_hc_halt()
[   57.240000] dwc2 101c0000.otg: dequeue/error
[   57.240000] dwc2 101c0000.otg: desc DMA disabled
[   57.240000] dwc2 101c0000.otg: DMA enabled
[   57.240000] dwc2 101c0000.otg: Channel enabled
[   57.240000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   57.240000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   57.240000] dwc2 101c0000.otg: 	 halt_pending: 1
[   57.240000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   57.240000] dwc2 101c0000.otg: 	 halt_status: 13
[   57.240000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   57.240000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   57.240000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   57.240000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   57.240000] dwc2 101c0000.otg:   urb->status = -2
[   57.590000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   57.590000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   57.590000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   57.590000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   57.590000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   57.590000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   57.590000] dwc2 101c0000.otg: dwc2_hc_init()
[   57.590000] dwc2 101c0000.otg: DMA enabled
[   57.590000] dwc2 101c0000.otg: desc DMA disabled
[   57.590000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   57.590000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   57.590000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   57.590000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   57.590000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   57.590000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   57.590000] dwc2 101c0000.otg: 	 Ep Num: 1
[   57.590000] dwc2 101c0000.otg: 	 Is In: 1
[   57.590000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   57.590000] dwc2 101c0000.otg: 	 Ep Type: 2
[   57.590000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   57.590000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   57.590000] dwc2 101c0000.otg: Queue non-periodic transactions
[   57.590000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   57.590000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   57.590000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   57.590000] dwc2 101c0000.otg: no split
[   57.590000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   57.590000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   57.590000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   57.590000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   57.590000] dwc2 101c0000.otg: 	 Start PID: 0
[   57.590000] dwc2 101c0000.otg: Wrote 037cc000 to HCDMA(1)
[   57.590000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   57.590000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   57.960000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   57.970000] dwc2 101c0000.otg: urb_dequeue, urb 83741480
[   57.980000] dwc2 101c0000.otg:   Device address: 3
[   57.990000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   58.000000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   58.010000] dwc2 101c0000.otg:   Speed: HIGH
[   58.020000] dwc2 101c0000.otg:   Max packet size: 512
[   58.030000] dwc2 101c0000.otg:   Data buffer length: 4096
[   58.040000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   58.050000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   58.070000] dwc2 101c0000.otg:   Interval: 0
[   58.080000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   58.080000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   58.080000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x037cc000
[   58.080000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   58.080000] dwc2 101c0000.otg:     ep_type: 2
[   58.080000] dwc2 101c0000.otg:     max_packet: 512
[   58.080000] dwc2 101c0000.otg:     data_pid_start: 0
[   58.080000] dwc2 101c0000.otg:     xfer_started: 1
[   58.080000] dwc2 101c0000.otg:     halt_status: 0
[   58.080000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   58.080000] dwc2 101c0000.otg:     xfer_dma: 037cc000
[   58.080000] dwc2 101c0000.otg:     xfer_len: 4096
[   58.080000] dwc2 101c0000.otg:     qh: 837d4100
[   58.080000] dwc2 101c0000.otg:   NP inactive sched:
[   58.080000] dwc2 101c0000.otg:   NP active sched:
[   58.080000] dwc2 101c0000.otg:     837d4100
[   58.080000] dwc2 101c0000.otg:   Channels:
[   58.080000] dwc2 101c0000.otg:      0: 8371ed00
[   58.080000] dwc2 101c0000.otg:      1: 8371ed80
[   58.080000] dwc2 101c0000.otg:      2: 8371ee00
[   58.080000] dwc2 101c0000.otg:      3: 8371ee80
[   58.080000] dwc2 101c0000.otg: dwc2_hc_halt()
[   58.080000] dwc2 101c0000.otg: dequeue/error
[   58.080000] dwc2 101c0000.otg: desc DMA disabled
[   58.080000] dwc2 101c0000.otg: DMA enabled
[   58.080000] dwc2 101c0000.otg: Channel enabled
[   58.080000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   58.080000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   58.080000] dwc2 101c0000.otg: 	 halt_pending: 1
[   58.080000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   58.080000] dwc2 101c0000.otg: 	 halt_status: 13
[   58.080000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   58.080000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   58.080000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   58.080000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   58.080000] dwc2 101c0000.otg:   urb->status = -2
[   58.430000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   58.430000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   58.430000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: Channel Halted--
[   58.430000] dwc2 101c0000.otg: --Host Channel 1 Interrupt: DMA Channel Halted--
[   58.430000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   58.430000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83717210,837d4100)
[   58.430000] dwc2 101c0000.otg: dwc2_hc_init()
[   58.430000] dwc2 101c0000.otg: DMA enabled
[   58.430000] dwc2 101c0000.otg: desc DMA disabled
[   58.430000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   58.430000] dwc2 101c0000.otg: set HAINTMSK to 0000000f
[   58.430000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   58.430000] dwc2 101c0000.otg: set HCCHAR(1) to 00c88a00
[   58.430000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   58.430000] dwc2 101c0000.otg: 	 Dev Addr: 3
[   58.430000] dwc2 101c0000.otg: 	 Ep Num: 1
[   58.430000] dwc2 101c0000.otg: 	 Is In: 1
[   58.430000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   58.430000] dwc2 101c0000.otg: 	 Ep Type: 2
[   58.430000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   58.430000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   58.430000] dwc2 101c0000.otg: Queue non-periodic transactions
[   58.430000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   58.430000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   58.430000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   58.430000] dwc2 101c0000.otg: no split
[   58.430000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   58.430000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   58.430000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   58.430000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   58.430000] dwc2 101c0000.otg: 	 Start PID: 0
[   58.430000] dwc2 101c0000.otg: Wrote 03005000 to HCDMA(1)
[   58.430000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   58.430000] dwc2 101c0000.otg: Wrote 80d88a00 to HCCHAR(1)
[   58.800000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   58.810000] dwc2 101c0000.otg: urb_dequeue, urb 83741200
[   58.820000] dwc2 101c0000.otg:   Device address: 3
[   58.830000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   58.840000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   58.850000] dwc2 101c0000.otg:   Speed: HIGH
[   58.860000] dwc2 101c0000.otg:   Max packet size: 512
[   58.870000] dwc2 101c0000.otg:   Data buffer length: 4096
[   58.880000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   58.890000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   58.910000] dwc2 101c0000.otg:   Interval: 0
[   58.920000] dwc2 101c0000.otg:   Assigned to channel 8371ed80:
[   58.920000] dwc2 101c0000.otg:     hcchar 0x80d88a00, hcsplt 0x00000000
[   58.920000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03005000
[   58.920000] dwc2 101c0000.otg:     dev_addr: 3, ep_num: 1, ep_is_in: 1
[   58.920000] dwc2 101c0000.otg:     ep_type: 2
[   58.920000] dwc2 101c0000.otg:     max_packet: 512
[   58.920000] dwc2 101c0000.otg:     data_pid_start: 0
[   58.920000] dwc2 101c0000.otg:     xfer_started: 1
[   58.920000] dwc2 101c0000.otg:     halt_status: 0
[   58.920000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   58.920000] dwc2 101c0000.otg:     xfer_dma: 03005000
[   58.920000] dwc2 101c0000.otg:     xfer_len: 4096
[   58.920000] dwc2 101c0000.otg:     qh: 837d4100
[   58.920000] dwc2 101c0000.otg:   NP inactive sched:
[   58.920000] dwc2 101c0000.otg:   NP active sched:
[   58.920000] dwc2 101c0000.otg:     837d4100
[   58.920000] dwc2 101c0000.otg:   Channels:
[   58.920000] dwc2 101c0000.otg:      0: 8371ed00
[   58.920000] dwc2 101c0000.otg:      1: 8371ed80
[   58.920000] dwc2 101c0000.otg:      2: 8371ee00
[   58.920000] dwc2 101c0000.otg:      3: 8371ee80
[   58.920000] dwc2 101c0000.otg: dwc2_hc_halt()
[   58.920000] dwc2 101c0000.otg: dequeue/error
[   58.920000] dwc2 101c0000.otg: desc DMA disabled
[   58.920000] dwc2 101c0000.otg: DMA enabled
[   58.920000] dwc2 101c0000.otg: Channel enabled
[   58.920000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   58.920000] dwc2 101c0000.otg: 	 hcchar: 0xc0d88a00
[   58.920000] dwc2 101c0000.otg: 	 halt_pending: 1
[   58.920000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   58.920000] dwc2 101c0000.otg: 	 halt_status: 13
[   58.920000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   58.920000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   58.920000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   58.920000] dwc2 101c0000.otg:   urb->status = -2
[   59.260000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   59.260000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   59.260000] dwc2 101c0000.otg: ## no QTD queued for channel 1 ##
[   59.260000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# root@OpenWrt:/# cat /dev/ttyUSB0
[   60.920000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   60.930000] dwc2 101c0000.otg: urb_enqueue, urb 83741380
[   60.940000] dwc2 101c0000.otg:   Device address: 3
[   60.950000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   60.960000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   60.970000] dwc2 101c0000.otg:   Speed: HIGH
[   60.980000] dwc2 101c0000.otg:   Max packet size: 512
[   60.990000] dwc2 101c0000.otg:   Data buffer length: 4096
[   61.000000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   61.020000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   61.030000] dwc2 101c0000.otg:   Interval: 0
[   61.040000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   61.060000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   61.070000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   61.080000] dwc2 101c0000.otg: urb_enqueue, urb 83741400
[   61.090000] dwc2 101c0000.otg:   Device address: 3
[   61.100000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   61.110000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   61.120000] dwc2 101c0000.otg:   Speed: HIGH
[   61.130000] dwc2 101c0000.otg:   Max packet size: 512
[   61.140000] dwc2 101c0000.otg:   Data buffer length: 4096
[   61.150000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   61.160000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   61.180000] dwc2 101c0000.otg:   Interval: 0
[   61.190000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   61.200000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   61.210000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   61.220000] dwc2 101c0000.otg: urb_enqueue, urb 83741480
[   61.230000] dwc2 101c0000.otg:   Device address: 3
[   61.240000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   61.250000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   61.260000] dwc2 101c0000.otg:   Speed: HIGH
[   61.270000] dwc2 101c0000.otg:   Max packet size: 512
[   61.280000] dwc2 101c0000.otg:   Data buffer length: 4096
[   61.290000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   61.310000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   61.320000] dwc2 101c0000.otg:   Interval: 0
[   61.330000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   61.350000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   61.350000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   61.360000] dwc2 101c0000.otg: urb_enqueue, urb 83741200
[   61.380000] dwc2 101c0000.otg:   Device address: 3
[   61.390000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   61.390000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   61.410000] dwc2 101c0000.otg:   Speed: HIGH
[   61.410000] dwc2 101c0000.otg:   Max packet size: 512
[   61.430000] dwc2 101c0000.otg:   Data buffer length: 4096
[   61.440000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   61.450000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   61.470000] dwc2 101c0000.otg:   Interval: 0
[   61.470000] dwc2 101c0000.otg: addr=3, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   61.490000] dwc2 101c0000.otg: dwc2_hcd_qh_add()




^C

[   63.830000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   63.840000] dwc2 101c0000.otg: urb_dequeue, urb 83741380
[   63.850000] dwc2 101c0000.otg:   Device address: 3
[   63.860000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   63.870000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   63.880000] dwc2 101c0000.otg:   Speed: HIGH
[   63.890000] dwc2 101c0000.otg:   Max packet size: 512
[   63.900000] dwc2 101c0000.otg:   Data buffer length: 4096
[   63.910000] dwc2 101c0000.otg:   Transfer buffer: 837e9000, Transfer DMA: 037e9000
[   63.930000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   63.940000] dwc2 101c0000.otg:   Interval: 0
[   63.950000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   63.950000] dwc2 101c0000.otg:   urb->status = -2
[   63.970000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   63.980000] dwc2 101c0000.otg: urb_dequeue, urb 83741400
[   63.990000] dwc2 101c0000.otg:   Device address: 3
[   64.000000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   64.010000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   64.030000] dwc2 101c0000.otg:   Speed: HIGH
[   64.030000] dwc2 101c0000.otg:   Max packet size: 512
[   64.040000] dwc2 101c0000.otg:   Data buffer length: 4096
[   64.050000] dwc2 101c0000.otg:   Transfer buffer: 837e8000, Transfer DMA: 037e8000
[   64.070000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   64.080000] dwc2 101c0000.otg:   Interval: 0
[   64.090000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   64.090000] dwc2 101c0000.otg:   urb->status = -2
[   64.110000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   64.120000] dwc2 101c0000.otg: urb_dequeue, urb 83741480
[   64.140000] dwc2 101c0000.otg:   Device address: 3
[   64.150000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   64.150000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   64.170000] dwc2 101c0000.otg:   Speed: HIGH
[   64.180000] dwc2 101c0000.otg:   Max packet size: 512
[   64.190000] dwc2 101c0000.otg:   Data buffer length: 4096
[   64.200000] dwc2 101c0000.otg:   Transfer buffer: 837cc000, Transfer DMA: 037cc000
[   64.210000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   64.230000] dwc2 101c0000.otg:   Interval: 0
[   64.230000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   64.230000] dwc2 101c0000.otg:   urb->status = -2
[   64.260000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   64.270000] dwc2 101c0000.otg: urb_dequeue, urb 83741200
[   64.280000] dwc2 101c0000.otg:   Device address: 3
[   64.290000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   64.300000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   64.310000] dwc2 101c0000.otg:   Speed: HIGH
[   64.320000] dwc2 101c0000.otg:   Max packet size: 512
[   64.330000] dwc2 101c0000.otg:   Data buffer length: 4096
[   64.340000] dwc2 101c0000.otg:   Transfer buffer: 83005000, Transfer DMA: 03005000
[   64.350000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   64.370000] dwc2 101c0000.otg:   Interval: 0
[   64.380000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   64.380000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   64.380000] dwc2 101c0000.otg:   urb->status = -2

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 


With Alcatel 3G dongle, with patch:

[    2.370000] usb 1-1: new high-speed USB device number 2 using dwc2
[    2.610000] usb 1-1: New USB device found, idVendor=1bbb, idProduct=0000
[    2.620000] usb 1-1: New USB device strings: Mfr=2, Product=1, SerialNumber=3
[    2.640000] usb 1-1: Product: USBModem Configuration
[    2.650000] usb 1-1: Manufacturer: USBModem
[    2.660000] usb 1-1: SerialNumber: 1234567890ABCDEF
[    2.680000] option 1-1:1.0: GSM modem (1-port) converter detected
[    2.690000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0
[    2.700000] option 1-1:1.1: GSM modem (1-port) converter detected
[    2.720000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1
[    2.730000] scsi0 : usb-storage 1-1:1.2
[    2.750000] option 1-1:1.3: GSM modem (1-port) converter detected
[    2.760000] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2

[    3.740000] scsi 0:0:0:0: Direct-Access     USBModem MMC Storage      2.31 PQ: 0 ANSI: 2
[    3.790000] sd 0:0:0:0: [sda] Attached SCSI removable disk

root@OpenWrt:/# echo 8 > /proc/sys/kernel/printk

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# cat /dev/ttyUSB0
[   23.770000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   23.780000] dwc2 101c0000.otg: urb_enqueue, urb 8377b280
[   23.790000] dwc2 101c0000.otg:   Device address: 2
[   23.800000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   23.810000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   23.820000] dwc2 101c0000.otg:   Speed: HIGH
[   23.830000] dwc2 101c0000.otg:   Max packet size: 512
[   23.840000] dwc2 101c0000.otg:   Data buffer length: 4096
[   23.850000] dwc2 101c0000.otg:   Transfer buffer: 83765000, Transfer DMA: 03765000
[   23.870000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   23.880000] dwc2 101c0000.otg:   Interval: 0
[   23.890000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   23.910000] dwc2 101c0000.otg: dwc2_qh_init()
[   23.920000] dwc2 101c0000.otg: DWC OTG HCD QH Initialized
[   23.930000] dwc2 101c0000.otg: DWC OTG HCD QH - qh = 83709f00
[   23.940000] dwc2 101c0000.otg: DWC OTG HCD QH - Device Address = 2
[   23.950000] dwc2 101c0000.otg: DWC OTG HCD QH - Endpoint 1, IN
[   23.960000] dwc2 101c0000.otg: DWC OTG HCD QH - Speed = high
[   23.970000] dwc2 101c0000.otg: DWC OTG HCD QH - Type = bulk
[   23.990000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   23.990000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   23.990000] dwc2 101c0000.otg: dwc2_hc_init()
[   23.990000] dwc2 101c0000.otg: DMA enabled
[   23.990000] dwc2 101c0000.otg: desc DMA disabled
[   23.990000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   23.990000] dwc2 101c0000.otg: set HAINTMSK to 0000000c
[   23.990000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   23.990000] dwc2 101c0000.otg: set HCCHAR(3) to 00888a00
[   23.990000] dwc2 101c0000.otg: dwc2_hc_init: Channel 3
[   23.990000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   23.990000] dwc2 101c0000.otg: 	 Ep Num: 1
[   23.990000] dwc2 101c0000.otg: 	 Is In: 1
[   23.990000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   23.990000] dwc2 101c0000.otg: 	 Ep Type: 2
[   23.990000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   23.990000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   23.990000] dwc2 101c0000.otg: Queue non-periodic transactions
[   23.990000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   23.990000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   23.990000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   23.990000] dwc2 101c0000.otg: no split
[   23.990000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(3)
[   23.990000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 3
[   23.990000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   23.990000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   23.990000] dwc2 101c0000.otg: 	 Start PID: 0
[   23.990000] dwc2 101c0000.otg: Wrote 03765000 to HCDMA(3)
[   23.990000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   23.990000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(3)
[   24.290000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   24.300000] dwc2 101c0000.otg: urb_enqueue, urb 8377b300
[   24.310000] dwc2 101c0000.otg:   Device address: 2
[   24.320000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   24.330000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   24.340000] dwc2 101c0000.otg:   Speed: HIGH
[   24.350000] dwc2 101c0000.otg:   Max packet size: 512
[   24.360000] dwc2 101c0000.otg:   Data buffer length: 4096
[   24.370000] dwc2 101c0000.otg:   Transfer buffer: 83766000, Transfer DMA: 03766000
[   24.380000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   24.400000] dwc2 101c0000.otg:   Interval: 0
[   24.410000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   24.420000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   24.430000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   24.440000] dwc2 101c0000.otg: urb_enqueue, urb 8377b380
[   24.450000] dwc2 101c0000.otg:   Device address: 2
[   24.460000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   24.470000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   24.480000] dwc2 101c0000.otg:   Speed: HIGH
[   24.490000] dwc2 101c0000.otg:   Max packet size: 512
[   24.500000] dwc2 101c0000.otg:   Data buffer length: 4096
[   24.510000] dwc2 101c0000.otg:   Transfer buffer: 83767000, Transfer DMA: 03767000
[   24.530000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   24.540000] dwc2 101c0000.otg:   Interval: 0
[   24.550000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   24.570000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   24.570000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   24.580000] dwc2 101c0000.otg: urb_enqueue, urb 8377b400
[   24.600000] dwc2 101c0000.otg:   Device address: 2
[   24.610000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   24.610000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   24.630000] dwc2 101c0000.otg:   Speed: HIGH
[   24.630000] dwc2 101c0000.otg:   Max packet size: 512
[   24.650000] dwc2 101c0000.otg:   Data buffer length: 4096
[   24.660000] dwc2 101c0000.otg:   Transfer buffer: 8374e000, Transfer DMA: 0374e000
[   24.670000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   24.690000] dwc2 101c0000.otg:   Interval: 0
[   24.690000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   24.710000] dwc2 101c0000.otg: dwc2_hcd_qh_add()




^C

[   27.820000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   27.830000] dwc2 101c0000.otg: urb_dequeue, urb 8377b280
[   27.840000] dwc2 101c0000.otg:   Device address: 2
[   27.850000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   27.860000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   27.880000] dwc2 101c0000.otg:   Speed: HIGH
[   27.880000] dwc2 101c0000.otg:   Max packet size: 512
[   27.890000] dwc2 101c0000.otg:   Data buffer length: 4096
[   27.910000] dwc2 101c0000.otg:   Transfer buffer: 83765000, Transfer DMA: 03765000
[   27.920000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   27.930000] dwc2 101c0000.otg:   Interval: 0
[   27.940000] dwc2 101c0000.otg:   Assigned to channel 8371ae80:
[   27.940000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   27.940000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03765000
[   27.940000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   27.940000] dwc2 101c0000.otg:     ep_type: 2
[   27.940000] dwc2 101c0000.otg:     max_packet: 512
[   27.940000] dwc2 101c0000.otg:     data_pid_start: 0
[   27.940000] dwc2 101c0000.otg:     xfer_started: 1
[   27.940000] dwc2 101c0000.otg:     halt_status: 0
[   27.940000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   27.940000] dwc2 101c0000.otg:     xfer_dma: 03765000
[   27.940000] dwc2 101c0000.otg:     xfer_len: 4096
[   27.940000] dwc2 101c0000.otg:     qh: 83709f00
[   27.940000] dwc2 101c0000.otg:   NP inactive sched:
[   27.940000] dwc2 101c0000.otg:   NP active sched:
[   27.940000] dwc2 101c0000.otg:     83709f00
[   27.940000] dwc2 101c0000.otg:   Channels:
[   27.940000] dwc2 101c0000.otg:      0: 8371ad00
[   27.940000] dwc2 101c0000.otg:      1: 8371ad80
[   27.940000] dwc2 101c0000.otg:      2: 8371ae00
[   27.940000] dwc2 101c0000.otg:      3: 8371ae80
[   27.940000] dwc2 101c0000.otg: dwc2_hc_halt()
[   27.940000] dwc2 101c0000.otg: dequeue/error
[   27.940000] dwc2 101c0000.otg: desc DMA disabled
[   27.940000] dwc2 101c0000.otg: DMA enabled
[   27.940000] dwc2 101c0000.otg: Channel enabled
[   27.940000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 3
[   27.940000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   27.940000] dwc2 101c0000.otg: 	 halt_pending: 1
[   27.940000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   27.940000] dwc2 101c0000.otg: 	 halt_status: 13
[   27.940000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   27.940000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   27.940000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   27.940000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   27.940000] dwc2 101c0000.otg:   urb->status = -2
[   28.300000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   28.300000] dwc2 101c0000.otg: dwc2_hc_init()
[   28.300000] dwc2 101c0000.otg: DMA enabled
[   28.300000] dwc2 101c0000.otg: desc DMA disabled
[   28.300000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   28.300000] dwc2 101c0000.otg: set HAINTMSK to 0000000e
[   28.300000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   28.300000] dwc2 101c0000.otg: set HCCHAR(2) to 00888a00
[   28.300000] dwc2 101c0000.otg: dwc2_hc_init: Channel 2
[   28.300000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   28.300000] dwc2 101c0000.otg: 	 Ep Num: 1
[   28.300000] dwc2 101c0000.otg: 	 Is In: 1
[   28.300000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   28.300000] dwc2 101c0000.otg: 	 Ep Type: 2
[   28.300000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   28.300000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   28.300000] dwc2 101c0000.otg: Queue non-periodic transactions
[   28.300000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   28.300000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   28.300000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   28.300000] dwc2 101c0000.otg: no split
[   28.300000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(2)
[   28.300000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 2
[   28.300000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   28.300000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   28.300000] dwc2 101c0000.otg: 	 Start PID: 0
[   28.300000] dwc2 101c0000.otg: Wrote 03766000 to HCDMA(2)
[   28.300000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   28.300000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(2)
[   28.300000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 3
[   28.300000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   28.300000] dwc2 101c0000.otg:   dwc2_release_channel: channel 3, halt_status 13
[   28.630000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   28.640000] dwc2 101c0000.otg: urb_dequeue, urb 8377b300
[   28.650000] dwc2 101c0000.otg:   Device address: 2
[   28.660000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   28.670000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   28.690000] dwc2 101c0000.otg:   Speed: HIGH
[   28.690000] dwc2 101c0000.otg:   Max packet size: 512
[   28.700000] dwc2 101c0000.otg:   Data buffer length: 4096
[   28.720000] dwc2 101c0000.otg:   Transfer buffer: 83766000, Transfer DMA: 03766000
[   28.730000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   28.740000] dwc2 101c0000.otg:   Interval: 0
[   28.750000] dwc2 101c0000.otg:   Assigned to channel 8371ae00:
[   28.750000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   28.750000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03766000
[   28.750000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   28.750000] dwc2 101c0000.otg:     ep_type: 2
[   28.750000] dwc2 101c0000.otg:     max_packet: 512
[   28.750000] dwc2 101c0000.otg:     data_pid_start: 0
[   28.750000] dwc2 101c0000.otg:     xfer_started: 1
[   28.750000] dwc2 101c0000.otg:     halt_status: 0
[   28.750000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   28.750000] dwc2 101c0000.otg:     xfer_dma: 03766000
[   28.750000] dwc2 101c0000.otg:     xfer_len: 4096
[   28.750000] dwc2 101c0000.otg:     qh: 83709f00
[   28.750000] dwc2 101c0000.otg:   NP inactive sched:
[   28.750000] dwc2 101c0000.otg:   NP active sched:
[   28.750000] dwc2 101c0000.otg:     83709f00
[   28.750000] dwc2 101c0000.otg:   Channels:
[   28.750000] dwc2 101c0000.otg:      0: 8371ad00
[   28.750000] dwc2 101c0000.otg:      1: 8371ad80
[   28.750000] dwc2 101c0000.otg:      2: 8371ae00
[   28.750000] dwc2 101c0000.otg:      3: 8371ae80
[   28.750000] dwc2 101c0000.otg: dwc2_hc_halt()
[   28.750000] dwc2 101c0000.otg: dequeue/error
[   28.750000] dwc2 101c0000.otg: desc DMA disabled
[   28.750000] dwc2 101c0000.otg: DMA enabled
[   28.750000] dwc2 101c0000.otg: Channel enabled
[   28.750000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 2
[   28.750000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   28.750000] dwc2 101c0000.otg: 	 halt_pending: 1
[   28.750000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   28.750000] dwc2 101c0000.otg: 	 halt_status: 13
[   28.750000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   28.750000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   28.750000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   28.750000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   28.750000] dwc2 101c0000.otg:   urb->status = -2
[   29.110000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   29.110000] dwc2 101c0000.otg: dwc2_hc_init()
[   29.110000] dwc2 101c0000.otg: DMA enabled
[   29.110000] dwc2 101c0000.otg: desc DMA disabled
[   29.110000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   29.110000] dwc2 101c0000.otg: set HAINTMSK to 00000007
[   29.110000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   29.110000] dwc2 101c0000.otg: set HCCHAR(1) to 00888a00
[   29.110000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   29.110000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   29.110000] dwc2 101c0000.otg: 	 Ep Num: 1
[   29.110000] dwc2 101c0000.otg: 	 Is In: 1
[   29.110000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   29.110000] dwc2 101c0000.otg: 	 Ep Type: 2
[   29.110000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   29.110000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   29.110000] dwc2 101c0000.otg: Queue non-periodic transactions
[   29.110000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   29.110000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   29.110000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   29.110000] dwc2 101c0000.otg: no split
[   29.110000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   29.110000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   29.110000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   29.110000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   29.110000] dwc2 101c0000.otg: 	 Start PID: 0
[   29.110000] dwc2 101c0000.otg: Wrote 03767000 to HCDMA(1)
[   29.110000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   29.110000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(1)
[   29.110000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 2
[   29.110000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   29.110000] dwc2 101c0000.otg:   dwc2_release_channel: channel 2, halt_status 13
[   29.440000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   29.450000] dwc2 101c0000.otg: urb_dequeue, urb 8377b380
[   29.460000] dwc2 101c0000.otg:   Device address: 2
[   29.470000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   29.480000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   29.500000] dwc2 101c0000.otg:   Speed: HIGH
[   29.500000] dwc2 101c0000.otg:   Max packet size: 512
[   29.510000] dwc2 101c0000.otg:   Data buffer length: 4096
[   29.530000] dwc2 101c0000.otg:   Transfer buffer: 83767000, Transfer DMA: 03767000
[   29.540000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   29.560000] dwc2 101c0000.otg:   Interval: 0
[   29.560000] dwc2 101c0000.otg:   Assigned to channel 8371ad80:
[   29.560000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   29.560000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03767000
[   29.560000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   29.560000] dwc2 101c0000.otg:     ep_type: 2
[   29.560000] dwc2 101c0000.otg:     max_packet: 512
[   29.560000] dwc2 101c0000.otg:     data_pid_start: 0
[   29.560000] dwc2 101c0000.otg:     xfer_started: 1
[   29.560000] dwc2 101c0000.otg:     halt_status: 0
[   29.560000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   29.560000] dwc2 101c0000.otg:     xfer_dma: 03767000
[   29.560000] dwc2 101c0000.otg:     xfer_len: 4096
[   29.560000] dwc2 101c0000.otg:     qh: 83709f00
[   29.560000] dwc2 101c0000.otg:   NP inactive sched:
[   29.560000] dwc2 101c0000.otg:   NP active sched:
[   29.560000] dwc2 101c0000.otg:     83709f00
[   29.560000] dwc2 101c0000.otg:   Channels:
[   29.560000] dwc2 101c0000.otg:      0: 8371ad00
[   29.560000] dwc2 101c0000.otg:      1: 8371ad80
[   29.560000] dwc2 101c0000.otg:      2: 8371ae00
[   29.560000] dwc2 101c0000.otg:      3: 8371ae80
[   29.560000] dwc2 101c0000.otg: dwc2_hc_halt()
[   29.560000] dwc2 101c0000.otg: dequeue/error
[   29.560000] dwc2 101c0000.otg: desc DMA disabled
[   29.560000] dwc2 101c0000.otg: DMA enabled
[   29.560000] dwc2 101c0000.otg: Channel enabled
[   29.560000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   29.560000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   29.560000] dwc2 101c0000.otg: 	 halt_pending: 1
[   29.560000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   29.560000] dwc2 101c0000.otg: 	 halt_status: 13
[   29.560000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   29.560000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   29.560000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   29.560000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   29.560000] dwc2 101c0000.otg:   urb->status = -2
[   29.920000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   29.920000] dwc2 101c0000.otg: dwc2_hc_init()
[   29.920000] dwc2 101c0000.otg: DMA enabled
[   29.920000] dwc2 101c0000.otg: desc DMA disabled
[   29.920000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   29.920000] dwc2 101c0000.otg: set HAINTMSK to 0000000b
[   29.920000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   29.920000] dwc2 101c0000.otg: set HCCHAR(0) to 00888a00
[   29.920000] dwc2 101c0000.otg: dwc2_hc_init: Channel 0
[   29.920000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   29.920000] dwc2 101c0000.otg: 	 Ep Num: 1
[   29.920000] dwc2 101c0000.otg: 	 Is In: 1
[   29.920000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   29.920000] dwc2 101c0000.otg: 	 Ep Type: 2
[   29.920000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   29.920000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   29.920000] dwc2 101c0000.otg: Queue non-periodic transactions
[   29.920000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   29.920000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   29.920000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   29.920000] dwc2 101c0000.otg: no split
[   29.920000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(0)
[   29.920000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 0
[   29.920000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   29.920000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   29.920000] dwc2 101c0000.otg: 	 Start PID: 0
[   29.920000] dwc2 101c0000.otg: Wrote 0374e000 to HCDMA(0)
[   29.920000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   29.920000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(0)
[   29.920000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   29.920000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   29.920000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   30.250000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   30.260000] dwc2 101c0000.otg: urb_dequeue, urb 8377b400
[   30.280000] dwc2 101c0000.otg:   Device address: 2
[   30.280000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   30.290000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   30.310000] dwc2 101c0000.otg:   Speed: HIGH
[   30.310000] dwc2 101c0000.otg:   Max packet size: 512
[   30.320000] dwc2 101c0000.otg:   Data buffer length: 4096
[   30.340000] dwc2 101c0000.otg:   Transfer buffer: 8374e000, Transfer DMA: 0374e000
[   30.350000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   30.370000] dwc2 101c0000.otg:   Interval: 0
[   30.370000] dwc2 101c0000.otg:   Assigned to channel 8371ad00:
[   30.370000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   30.370000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x0374e000
[   30.370000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   30.370000] dwc2 101c0000.otg:     ep_type: 2
[   30.370000] dwc2 101c0000.otg:     max_packet: 512
[   30.370000] dwc2 101c0000.otg:     data_pid_start: 0
[   30.370000] dwc2 101c0000.otg:     xfer_started: 1
[   30.370000] dwc2 101c0000.otg:     halt_status: 0
[   30.370000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   30.370000] dwc2 101c0000.otg:     xfer_dma: 0374e000
[   30.370000] dwc2 101c0000.otg:     xfer_len: 4096
[   30.370000] dwc2 101c0000.otg:     qh: 83709f00
[   30.370000] dwc2 101c0000.otg:   NP inactive sched:
[   30.370000] dwc2 101c0000.otg:   NP active sched:
[   30.370000] dwc2 101c0000.otg:     83709f00
[   30.370000] dwc2 101c0000.otg:   Channels:
[   30.370000] dwc2 101c0000.otg:      0: 8371ad00
[   30.370000] dwc2 101c0000.otg:      1: 8371ad80
[   30.370000] dwc2 101c0000.otg:      2: 8371ae00
[   30.370000] dwc2 101c0000.otg:      3: 8371ae80
[   30.370000] dwc2 101c0000.otg: dwc2_hc_halt()
[   30.370000] dwc2 101c0000.otg: dequeue/error
[   30.370000] dwc2 101c0000.otg: desc DMA disabled
[   30.370000] dwc2 101c0000.otg: DMA enabled
[   30.370000] dwc2 101c0000.otg: Channel enabled
[   30.370000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 0
[   30.370000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   30.370000] dwc2 101c0000.otg: 	 halt_pending: 1
[   30.370000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   30.370000] dwc2 101c0000.otg: 	 halt_status: 13
[   30.370000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   30.370000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   30.370000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   30.370000] dwc2 101c0000.otg:   urb->status = -2
[   30.720000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 0
[   30.720000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   30.720000] dwc2 101c0000.otg:   dwc2_release_channel: channel 0, halt_status 13

root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/#    echo 7 > /proc/sys/kernel/printk
root@OpenWrt:/# 
root@OpenWrt:/# 
root@OpenWrt:/# cat /dev/ttyUSB0
^C
root@OpenWrt:/# cat /dev/ttyUSB0
^C
root@OpenWrt:/# cat /dev/ttyUSB0
^C
root@OpenWrt:/# cat /dev/ttyUSB0
^C
root@OpenWrt:/#    echo 8 > /proc/sys/kernel/printk
root@OpenWrt:/# cat /dev/ttyUSB0
[   57.380000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   57.390000] dwc2 101c0000.otg: urb_enqueue, urb 8377b280
[   57.400000] dwc2 101c0000.otg:   Device address: 2
[   57.410000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   57.420000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   57.430000] dwc2 101c0000.otg:   Speed: HIGH
[   57.440000] dwc2 101c0000.otg:   Max packet size: 512
[   57.450000] dwc2 101c0000.otg:   Data buffer length: 4096
[   57.460000] dwc2 101c0000.otg:   Transfer buffer: 83765000, Transfer DMA: 03765000
[   57.480000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   57.490000] dwc2 101c0000.otg:   Interval: 0
[   57.500000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   57.520000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   57.530000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   57.530000] dwc2 101c0000.otg: dwc2_hc_init()
[   57.530000] dwc2 101c0000.otg: DMA enabled
[   57.530000] dwc2 101c0000.otg: desc DMA disabled
[   57.530000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   57.530000] dwc2 101c0000.otg: set HAINTMSK to 0000000c
[   57.530000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   57.530000] dwc2 101c0000.otg: set HCCHAR(3) to 00888a00
[   57.530000] dwc2 101c0000.otg: dwc2_hc_init: Channel 3
[   57.530000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   57.530000] dwc2 101c0000.otg: 	 Ep Num: 1
[   57.530000] dwc2 101c0000.otg: 	 Is In: 1
[   57.530000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   57.530000] dwc2 101c0000.otg: 	 Ep Type: 2
[   57.530000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   57.530000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   57.530000] dwc2 101c0000.otg: Queue non-periodic transactions
[   57.530000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   57.530000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   57.530000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   57.530000] dwc2 101c0000.otg: no split
[   57.530000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(3)
[   57.530000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 3
[   57.530000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   57.530000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   57.530000] dwc2 101c0000.otg: 	 Start PID: 0
[   57.530000] dwc2 101c0000.otg: Wrote 03765000 to HCDMA(3)
[   57.530000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   57.530000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(3)
[   57.820000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   57.830000] dwc2 101c0000.otg: urb_enqueue, urb 8377b300
[   57.840000] dwc2 101c0000.otg:   Device address: 2
[   57.850000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   57.860000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   57.870000] dwc2 101c0000.otg:   Speed: HIGH
[   57.880000] dwc2 101c0000.otg:   Max packet size: 512
[   57.890000] dwc2 101c0000.otg:   Data buffer length: 4096
[   57.900000] dwc2 101c0000.otg:   Transfer buffer: 83766000, Transfer DMA: 03766000
[   57.910000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   57.930000] dwc2 101c0000.otg:   Interval: 0
[   57.940000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   57.950000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   57.960000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   57.970000] dwc2 101c0000.otg: urb_enqueue, urb 8377b380
[   57.980000] dwc2 101c0000.otg:   Device address: 2
[   57.990000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   58.000000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   58.010000] dwc2 101c0000.otg:   Speed: HIGH
[   58.020000] dwc2 101c0000.otg:   Max packet size: 512
[   58.030000] dwc2 101c0000.otg:   Data buffer length: 4096
[   58.040000] dwc2 101c0000.otg:   Transfer buffer: 83767000, Transfer DMA: 03767000
[   58.060000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   58.070000] dwc2 101c0000.otg:   Interval: 0
[   58.080000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   58.100000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   58.110000] dwc2 101c0000.otg: DWC OTG HCD URB Enqueue
[   58.120000] dwc2 101c0000.otg: urb_enqueue, urb 8377b400
[   58.130000] dwc2 101c0000.otg:   Device address: 2
[   58.140000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   58.150000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   58.160000] dwc2 101c0000.otg:   Speed: HIGH
[   58.170000] dwc2 101c0000.otg:   Max packet size: 512
[   58.180000] dwc2 101c0000.otg:   Data buffer length: 4096
[   58.190000] dwc2 101c0000.otg:   Transfer buffer: 8374e000, Transfer DMA: 0374e000
[   58.200000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   58.220000] dwc2 101c0000.otg:   Interval: 0
[   58.230000] dwc2 101c0000.otg: addr=2, ep_num=1, ep_dir=80, ep_type=2, mps=512
[   58.240000] dwc2 101c0000.otg: dwc2_hcd_qh_add()



^C


[   60.550000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   60.560000] dwc2 101c0000.otg: urb_dequeue, urb 8377b280
[   60.570000] dwc2 101c0000.otg:   Device address: 2
[   60.580000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   60.590000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   60.600000] dwc2 101c0000.otg:   Speed: HIGH
[   60.610000] dwc2 101c0000.otg:   Max packet size: 512
[   60.620000] dwc2 101c0000.otg:   Data buffer length: 4096
[   60.630000] dwc2 101c0000.otg:   Transfer buffer: 83765000, Transfer DMA: 03765000
[   60.650000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   60.660000] dwc2 101c0000.otg:   Interval: 0
[   60.670000] dwc2 101c0000.otg:   Assigned to channel 8371ae80:
[   60.670000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   60.670000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03765000
[   60.670000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   60.670000] dwc2 101c0000.otg:     ep_type: 2
[   60.670000] dwc2 101c0000.otg:     max_packet: 512
[   60.670000] dwc2 101c0000.otg:     data_pid_start: 0
[   60.670000] dwc2 101c0000.otg:     xfer_started: 1
[   60.670000] dwc2 101c0000.otg:     halt_status: 0
[   60.670000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   60.670000] dwc2 101c0000.otg:     xfer_dma: 03765000
[   60.670000] dwc2 101c0000.otg:     xfer_len: 4096
[   60.670000] dwc2 101c0000.otg:     qh: 83709f00
[   60.670000] dwc2 101c0000.otg:   NP inactive sched:
[   60.670000] dwc2 101c0000.otg:   NP active sched:
[   60.670000] dwc2 101c0000.otg:     83709f00
[   60.670000] dwc2 101c0000.otg:   Channels:
[   60.670000] dwc2 101c0000.otg:      0: 8371ad00
[   60.670000] dwc2 101c0000.otg:      1: 8371ad80
[   60.670000] dwc2 101c0000.otg:      2: 8371ae00
[   60.670000] dwc2 101c0000.otg:      3: 8371ae80
[   60.670000] dwc2 101c0000.otg: dwc2_hc_halt()
[   60.670000] dwc2 101c0000.otg: dequeue/error
[   60.670000] dwc2 101c0000.otg: desc DMA disabled
[   60.670000] dwc2 101c0000.otg: DMA enabled
[   60.670000] dwc2 101c0000.otg: Channel enabled
[   60.670000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 3
[   60.670000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   60.670000] dwc2 101c0000.otg: 	 halt_pending: 1
[   60.670000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   60.670000] dwc2 101c0000.otg: 	 halt_status: 13
[   60.670000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   60.670000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   60.670000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   60.670000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   60.670000] dwc2 101c0000.otg:   urb->status = -2
[   61.020000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   61.020000] dwc2 101c0000.otg: dwc2_hc_init()
[   61.020000] dwc2 101c0000.otg: DMA enabled
[   61.020000] dwc2 101c0000.otg: desc DMA disabled
[   61.020000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   61.020000] dwc2 101c0000.otg: set HAINTMSK to 0000000b
[   61.020000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   61.020000] dwc2 101c0000.otg: set HCCHAR(1) to 00888a00
[   61.020000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   61.020000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   61.020000] dwc2 101c0000.otg: 	 Ep Num: 1
[   61.020000] dwc2 101c0000.otg: 	 Is In: 1
[   61.020000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   61.020000] dwc2 101c0000.otg: 	 Ep Type: 2
[   61.020000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   61.020000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   61.020000] dwc2 101c0000.otg: Queue non-periodic transactions
[   61.020000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   61.020000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   61.020000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   61.020000] dwc2 101c0000.otg: no split
[   61.020000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   61.020000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   61.020000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   61.020000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   61.020000] dwc2 101c0000.otg: 	 Start PID: 0
[   61.020000] dwc2 101c0000.otg: Wrote 03766000 to HCDMA(1)
[   61.020000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   61.020000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(1)
[   61.020000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 3
[   61.020000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   61.020000] dwc2 101c0000.otg:   dwc2_release_channel: channel 3, halt_status 13
[   61.360000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   61.370000] dwc2 101c0000.otg: urb_dequeue, urb 8377b300
[   61.380000] dwc2 101c0000.otg:   Device address: 2
[   61.390000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   61.400000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   61.410000] dwc2 101c0000.otg:   Speed: HIGH
[   61.420000] dwc2 101c0000.otg:   Max packet size: 512
[   61.430000] dwc2 101c0000.otg:   Data buffer length: 4096
[   61.440000] dwc2 101c0000.otg:   Transfer buffer: 83766000, Transfer DMA: 03766000
[   61.460000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   61.470000] dwc2 101c0000.otg:   Interval: 0
[   61.480000] dwc2 101c0000.otg:   Assigned to channel 8371ad80:
[   61.480000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   61.480000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03766000
[   61.480000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   61.480000] dwc2 101c0000.otg:     ep_type: 2
[   61.480000] dwc2 101c0000.otg:     max_packet: 512
[   61.480000] dwc2 101c0000.otg:     data_pid_start: 0
[   61.480000] dwc2 101c0000.otg:     xfer_started: 1
[   61.480000] dwc2 101c0000.otg:     halt_status: 0
[   61.480000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   61.480000] dwc2 101c0000.otg:     xfer_dma: 03766000
[   61.480000] dwc2 101c0000.otg:     xfer_len: 4096
[   61.480000] dwc2 101c0000.otg:     qh: 83709f00
[   61.480000] dwc2 101c0000.otg:   NP inactive sched:
[   61.480000] dwc2 101c0000.otg:   NP active sched:
[   61.480000] dwc2 101c0000.otg:     83709f00
[   61.480000] dwc2 101c0000.otg:   Channels:
[   61.480000] dwc2 101c0000.otg:      0: 8371ad00
[   61.480000] dwc2 101c0000.otg:      1: 8371ad80
[   61.480000] dwc2 101c0000.otg:      2: 8371ae00
[   61.480000] dwc2 101c0000.otg:      3: 8371ae80
[   61.480000] dwc2 101c0000.otg: dwc2_hc_halt()
[   61.480000] dwc2 101c0000.otg: dequeue/error
[   61.480000] dwc2 101c0000.otg: desc DMA disabled
[   61.480000] dwc2 101c0000.otg: DMA enabled
[   61.480000] dwc2 101c0000.otg: Channel enabled
[   61.480000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   61.480000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   61.480000] dwc2 101c0000.otg: 	 halt_pending: 1
[   61.480000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   61.480000] dwc2 101c0000.otg: 	 halt_status: 13
[   61.480000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   61.480000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   61.480000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   61.480000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   61.480000] dwc2 101c0000.otg:   urb->status = -2
[   61.830000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   61.830000] dwc2 101c0000.otg: dwc2_hc_init()
[   61.830000] dwc2 101c0000.otg: DMA enabled
[   61.830000] dwc2 101c0000.otg: desc DMA disabled
[   61.830000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   61.830000] dwc2 101c0000.otg: set HAINTMSK to 00000007
[   61.830000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   61.830000] dwc2 101c0000.otg: set HCCHAR(0) to 00888a00
[   61.830000] dwc2 101c0000.otg: dwc2_hc_init: Channel 0
[   61.830000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   61.830000] dwc2 101c0000.otg: 	 Ep Num: 1
[   61.830000] dwc2 101c0000.otg: 	 Is In: 1
[   61.830000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   61.830000] dwc2 101c0000.otg: 	 Ep Type: 2
[   61.830000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   61.830000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   61.830000] dwc2 101c0000.otg: Queue non-periodic transactions
[   61.830000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   61.830000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   61.830000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   61.830000] dwc2 101c0000.otg: no split
[   61.830000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(0)
[   61.830000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 0
[   61.830000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   61.830000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   61.830000] dwc2 101c0000.otg: 	 Start PID: 0
[   61.830000] dwc2 101c0000.otg: Wrote 03767000 to HCDMA(0)
[   61.830000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   61.830000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(0)
[   61.830000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   61.830000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   61.830000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13
[   62.170000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   62.180000] dwc2 101c0000.otg: urb_dequeue, urb 8377b380
[   62.190000] dwc2 101c0000.otg:   Device address: 2
[   62.200000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   62.210000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   62.220000] dwc2 101c0000.otg:   Speed: HIGH
[   62.230000] dwc2 101c0000.otg:   Max packet size: 512
[   62.240000] dwc2 101c0000.otg:   Data buffer length: 4096
[   62.250000] dwc2 101c0000.otg:   Transfer buffer: 83767000, Transfer DMA: 03767000
[   62.270000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   62.280000] dwc2 101c0000.otg:   Interval: 0
[   62.290000] dwc2 101c0000.otg:   Assigned to channel 8371ad00:
[   62.290000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   62.290000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x03767000
[   62.290000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   62.290000] dwc2 101c0000.otg:     ep_type: 2
[   62.290000] dwc2 101c0000.otg:     max_packet: 512
[   62.290000] dwc2 101c0000.otg:     data_pid_start: 0
[   62.290000] dwc2 101c0000.otg:     xfer_started: 1
[   62.290000] dwc2 101c0000.otg:     halt_status: 0
[   62.290000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   62.290000] dwc2 101c0000.otg:     xfer_dma: 03767000
[   62.290000] dwc2 101c0000.otg:     xfer_len: 4096
[   62.290000] dwc2 101c0000.otg:     qh: 83709f00
[   62.290000] dwc2 101c0000.otg:   NP inactive sched:
[   62.290000] dwc2 101c0000.otg:   NP active sched:
[   62.290000] dwc2 101c0000.otg:     83709f00
[   62.290000] dwc2 101c0000.otg:   Channels:
[   62.290000] dwc2 101c0000.otg:      0: 8371ad00
[   62.290000] dwc2 101c0000.otg:      1: 8371ad80
[   62.290000] dwc2 101c0000.otg:      2: 8371ae00
[   62.290000] dwc2 101c0000.otg:      3: 8371ae80
[   62.290000] dwc2 101c0000.otg: dwc2_hc_halt()
[   62.290000] dwc2 101c0000.otg: dequeue/error
[   62.290000] dwc2 101c0000.otg: desc DMA disabled
[   62.290000] dwc2 101c0000.otg: DMA enabled
[   62.290000] dwc2 101c0000.otg: Channel enabled
[   62.290000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 0
[   62.290000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   62.290000] dwc2 101c0000.otg: 	 halt_pending: 1
[   62.290000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   62.290000] dwc2 101c0000.otg: 	 halt_status: 13
[   62.290000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   62.290000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   62.290000] dwc2 101c0000.otg: dwc2_hcd_qh_add()
[   62.290000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   62.290000] dwc2 101c0000.otg:   urb->status = -2
[   62.640000] dwc2 101c0000.otg: dwc2_assign_and_init_hc(83713210,83709f00)
[   62.640000] dwc2 101c0000.otg: dwc2_hc_init()
[   62.640000] dwc2 101c0000.otg: DMA enabled
[   62.640000] dwc2 101c0000.otg: desc DMA disabled
[   62.640000] dwc2 101c0000.otg: set HCINTMSK to 00000006
[   62.640000] dwc2 101c0000.otg: set HAINTMSK to 0000000b
[   62.640000] dwc2 101c0000.otg: set GINTMSK to f300080e
[   62.640000] dwc2 101c0000.otg: set HCCHAR(1) to 00888a00
[   62.640000] dwc2 101c0000.otg: dwc2_hc_init: Channel 1
[   62.640000] dwc2 101c0000.otg: 	 Dev Addr: 2
[   62.640000] dwc2 101c0000.otg: 	 Ep Num: 1
[   62.640000] dwc2 101c0000.otg: 	 Is In: 1
[   62.640000] dwc2 101c0000.otg: 	 Is Low Speed: 0
[   62.640000] dwc2 101c0000.otg: 	 Ep Type: 2
[   62.640000] dwc2 101c0000.otg: 	 Max Pkt: 512
[   62.640000] dwc2 101c0000.otg: 	 Multi Cnt: 0
[   62.640000] dwc2 101c0000.otg: Queue non-periodic transactions
[   62.640000] dwc2 101c0000.otg:   NP Tx Req Queue Space Avail (before queue): 8
[   62.640000] dwc2 101c0000.otg:   NP Tx FIFO Space Avail (before queue): 256
[   62.640000] dwc2 101c0000.otg: dwc2_hc_start_transfer()
[   62.640000] dwc2 101c0000.otg: no split
[   62.640000] dwc2 101c0000.otg: Wrote 00401000 to HCTSIZ(1)
[   62.640000] dwc2 101c0000.otg: dwc2_hc_start_transfer: Channel 1
[   62.640000] dwc2 101c0000.otg: 	 Xfer Size: 4096
[   62.640000] dwc2 101c0000.otg: 	 Num Pkts: 8
[   62.640000] dwc2 101c0000.otg: 	 Start PID: 0
[   62.640000] dwc2 101c0000.otg: Wrote 0374e000 to HCDMA(1)
[   62.640000] dwc2 101c0000.otg: 	 Multi Cnt: 1
[   62.640000] dwc2 101c0000.otg: Wrote 80988a00 to HCCHAR(1)
[   62.640000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 0
[   62.640000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   62.640000] dwc2 101c0000.otg:   dwc2_release_channel: channel 0, halt_status 13
[   62.980000] dwc2 101c0000.otg: DWC OTG HCD URB Dequeue
[   62.990000] dwc2 101c0000.otg: urb_dequeue, urb 8377b400
[   63.000000] dwc2 101c0000.otg:   Device address: 2
[   63.010000] dwc2 101c0000.otg:   Endpoint: 1, IN
[   63.020000] dwc2 101c0000.otg:   Endpoint type: BULK IN (IN)
[   63.030000] dwc2 101c0000.otg:   Speed: HIGH
[   63.040000] dwc2 101c0000.otg:   Max packet size: 512
[   63.050000] dwc2 101c0000.otg:   Data buffer length: 4096
[   63.060000] dwc2 101c0000.otg:   Transfer buffer: 8374e000, Transfer DMA: 0374e000
[   63.080000] dwc2 101c0000.otg:   Setup buffer:   (null), Setup DMA: 00000000
[   63.090000] dwc2 101c0000.otg:   Interval: 0
[   63.100000] dwc2 101c0000.otg:   Assigned to channel 8371ad80:
[   63.100000] dwc2 101c0000.otg:     hcchar 0x80988a00, hcsplt 0x00000000
[   63.100000] dwc2 101c0000.otg:     hctsiz 0x00401000, hc_dma 0x0374e000
[   63.100000] dwc2 101c0000.otg:     dev_addr: 2, ep_num: 1, ep_is_in: 1
[   63.100000] dwc2 101c0000.otg:     ep_type: 2
[   63.100000] dwc2 101c0000.otg:     max_packet: 512
[   63.100000] dwc2 101c0000.otg:     data_pid_start: 0
[   63.100000] dwc2 101c0000.otg:     xfer_started: 1
[   63.100000] dwc2 101c0000.otg:     halt_status: 0
[   63.100000] dwc2 101c0000.otg:     xfer_buf:   (null)
[   63.100000] dwc2 101c0000.otg:     xfer_dma: 0374e000
[   63.100000] dwc2 101c0000.otg:     xfer_len: 4096
[   63.100000] dwc2 101c0000.otg:     qh: 83709f00
[   63.100000] dwc2 101c0000.otg:   NP inactive sched:
[   63.100000] dwc2 101c0000.otg:   NP active sched:
[   63.100000] dwc2 101c0000.otg:     83709f00
[   63.100000] dwc2 101c0000.otg:   Channels:
[   63.100000] dwc2 101c0000.otg:      0: 8371ad00
[   63.100000] dwc2 101c0000.otg:      1: 8371ad80
[   63.100000] dwc2 101c0000.otg:      2: 8371ae00
[   63.100000] dwc2 101c0000.otg:      3: 8371ae80
[   63.100000] dwc2 101c0000.otg: dwc2_hc_halt()
[   63.100000] dwc2 101c0000.otg: dequeue/error
[   63.100000] dwc2 101c0000.otg: desc DMA disabled
[   63.100000] dwc2 101c0000.otg: DMA enabled
[   63.100000] dwc2 101c0000.otg: Channel enabled
[   63.100000] dwc2 101c0000.otg: dwc2_hc_halt: Channel 1
[   63.100000] dwc2 101c0000.otg: 	 hcchar: 0xc0988a00
[   63.100000] dwc2 101c0000.otg: 	 halt_pending: 1
[   63.100000] dwc2 101c0000.otg: 	 halt_on_queue: 0
[   63.100000] dwc2 101c0000.otg: 	 halt_status: 13
[   63.100000] dwc2 101c0000.otg: dwc2_hcd_qh_deactivate()
[   63.100000] dwc2 101c0000.otg: dwc2_hcd_qh_unlink()
[   63.100000] dwc2 101c0000.otg: Called usb_hcd_giveback_urb()
[   63.100000] dwc2 101c0000.otg:   urb->status = -2
[   63.450000] dwc2 101c0000.otg: --Host Channel Interrupt--, Channel 1
[   63.450000] dwc2 101c0000.otg:   hcint 0x00000012, hcintmsk 0x00000002, hcint&hcintmsk 0x00000002
[   63.450000] dwc2 101c0000.otg:   dwc2_release_channel: channel 1, halt_status 13

root@OpenWrt:/# 

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

  Powered by Linux