NetBSD-Bugs archive

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

Re: port-evbarm/54696: Kernel panic in bus_dma.c on Raspberry Pi 3B/3B+



On 2019/11/23 14:30, Nick Hudson wrote:
> On 23/11/2019 14:10, sc.dying%gmail.com@localhost wrote:
>> On 2019/11/23 10:25, Nick Hudson wrote:
>>> On 14/11/2019 22:35, sc.dying%gmail.com@localhost wrote:
>>> [snip]
>>>
>>>>    But the transfer length of isoc xfer is sum of xfer->ux_frlengths[i]
>>>>    where i = 0.. xfer->ux_nframes - 1, not zero.
>>>>    dwc2 should do this usb_syncmem if xfertype == UE_{INTERRUPT,BULK},
>>>>    UE_CONTROL that has data phase (that is, len != 0), or if xfertype ==
>>>>    UE_ISOCHRONOUS, should do usb_syncmem for each chunk of ux_frlengths.
>>>>
>>>>    However, the uaudio works with dwc2 even if avobe usb_syncmem is ignored.
>>>>    I think dwc2 does usb_syncmem for isoc data buf somewhere else, but
>>>>    I'm not sure where it is.
>>>
>>> Please try this patch
>>
>> I did s/ux_ux_nframes/ux_nframes/.
> 
> Oops.Thanks for spotting this.

Oops, one more.
--- src/sys/external/bsd/dwc2/dwc2.c.orig	2019-03-19 12:46:48.589560051 +0000
+++ src/sys/external/bsd/dwc2/dwc2.c	2019-11-23 15:23:47.753691912 +0000
@@ -1081,7 +1088,7 @@ dwc2_device_start(struct usbd_xfer *xfer
 	    "nframes %d xfertype %d\n", xfer->ux_nframes, xfertype);
 
 	for (off = i = 0; i < xfer->ux_nframes; ++i) {
-		DPRINTFN(3, "xfer=%p frame=%d offset=%d length=%d\n", xfer, i,
+		DPRINTFN(3, "xfer=%p frame=%zd offset=%d length=%d\n", xfer, i,
 		    off, xfer->ux_frlengths[i]);
 
 		dwc2_hcd_urb_set_iso_desc_params(dwc2_urb, i, off,


> 
>> It works with one of my uaudio devices.
>>
>> # audiocfg list
>> 0: [*] audio0 @ uaudio0: USB audio
>>         playback: 2ch, 44100Hz
>>         record:   2ch, 44100Hz
>>         (-R) slinear_le 16/16, 2ch, { 44100 }
>>         (P-) slinear_le 16/16, 2ch, { 44100 }
>>
>> With another one
>>
>> 0: [*] audio0 @ uaudio0: USB audio
>>         playback: 2ch, 48000Hz
>>         record:   unavailable
>>         (P-) slinear_le 16/16, 2ch, { 48000, 44100 }
>>
>> the kernel prints number of messages, as David reported.
>>
>>> uaudio_chan_pintr: count(40) != size(1920)
>>
>> The length of each chunk in this transfer is
>> 48000(kHz) x 2(bytes/chan) x 2(chans) / 1000(frames/s) = 192.
>> dwc2_get_actual_xfer_length() should return 192, but 4.
>> nframes is 10, so ux_length is 40.
>>
>> If !DIAGNOSTIC, this messages are suppresssed and the kernel
>> plays music clearly.
> 
> Not sure I follow what's going on here... did you have a DWC2_DEBUG log
> for the device that triggers the uaudio_chan_pintr count != size warning?

The attached log starts after playing with audio/amp, dwc2debug=0xa.
This log is logged on RPI2. I have to look up how to enter ddb on RPI3B.

> 
> I'll commit the fixed up diff if you agree.

The diff itself looks good to me.

> 
> Thanks,
> Nick


dwc2_allocx: 
[  67.1112029] dwc2_device_ctrl_transfer: 
[  67.1237797] dwc2_device_ctrl_start: 
[  67.1237797] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d6e8
[  67.1331521] dwc2_device_start: xfer=0x90d7fce0 type=0x01 request=0x0b wValue=0x0001 wIndex=0x0001 len=0 addr=4 endpt=0 dir=out speed=2 mps=8
[  67.1457403] dwc2_device_start: req = 0x9a9dad00 dma = c091ad00 len 0 dir out
[  67.1457403] dwctwo0: urb=0x90fdce00, xfer=0x90d7fce0
[  67.1577269] dwctwo0: dwc2_hcd_qh_add()
[  67.1577269] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  67.1577269] dwctwo0:   Control setup transaction
[  67.1577269] dwctwo0: dwc2_hc_init()
[  67.1577269] dwctwo0: DMA enabled
[  67.1577269] dwctwo0: desc DMA disabled
[  67.1577269] dwctwo0: set HCINTMSK to 00000006
[  67.1577269] dwctwo0: set HAINTMSK to 00000002
[  67.1577269] dwctwo0: set GINTMSK to f300080e
[  67.1577269] dwctwo0: set HCCHAR(1) to 01000008
[  67.1577269] dwctwo0: dwc2_hc_init: Channel 1
[  67.1577269] dwctwo0: 	 Dev Addr: 4
[  67.1577269] dwctwo0: 	 Ep Num: 0
[  67.1577269] dwctwo0: 	 Is In: 0
[  67.1577269] dwctwo0: 	 Is Low Speed: 0
[  67.1577269] dwctwo0: 	 Ep Type: 0
[  67.1577269] dwctwo0: 	 Max Pkt: 8
[  67.1577269] dwctwo0: Programming HC 1 with split --> SSPLIT
[  67.1577269] dwctwo0: 	  comp split 0
[  67.1577269] dwctwo0: 	  xact pos 3
[  67.1577269] dwctwo0: 	  hub addr 2
[  67.1577269] dwctwo0: 	  hub port 2
[  67.1577269] dwctwo0: 	  is_in 0
[  67.1577269] dwctwo0: 	  Max Pkt 8
[  67.1577269] dwctwo0: 	  xferlen 8
[  67.1577269] dwctwo0: Queue non-periodic transactions
[  67.1577269] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  67.1577269] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  67.1577269] dwctwo0: dwc2_hc_start_transfer()
[  67.1577269] dwctwo0: split
[  67.1577269] dwctwo0: Wrote 60080008 to HCTSIZ(1)
[  67.1577269] dwctwo0: dwc2_hc_start_transfer: Channel 1
[  67.1577269] dwctwo0: 	 Xfer Size: 8
[  67.1577269] dwctwo0: 	 Num Pkts: 1
[  67.1577269] dwctwo0: 	 Start PID: 3
[  67.1577269] dwctwo0: Wrote c091ad00 to HCDMA(1)
[  67.1577269] dwctwo0: 	 Multi Cnt: 1
[  67.1577269] dwctwo0: Wrote 81100008 to HCCHAR(1)
[  67.3104486] dwctwo0: --Host Channel Interrupt--, Channel 1
[  67.3104486] dwctwo0:   hcint 0x00000022, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  67.3104486] dwctwo0: --Host Channel 1 Interrupt: Channel Halted--
[  67.3104486] dwctwo0: --Host Channel 1 Interrupt: DMA Channel Halted--
[  67.3104486] dwctwo0: --Host Channel 1 Interrupt: ACK Received--
[  67.3104486] dwctwo0: dwc2_halt_channel()
[  67.3104486] dwctwo0: DMA enabled
[  67.3104486] dwctwo0:   dwc2_release_channel: channel 1, halt_status 3
[  67.3104486] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  67.3104486] dwctwo0: dwc2_hcd_qh_deactivate()
[  67.3104486] dwctwo0: dwc2_hcd_qh_unlink()
[  67.3104486] dwctwo0: dwc2_hcd_qh_add()
[  67.3104486] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  67.3104486] dwctwo0:   Control setup transaction
[  67.3104486] dwctwo0: dwc2_hc_init()
[  67.3104486] dwctwo0: DMA enabled
[  67.3104486] dwctwo0: desc DMA disabled
[  67.3104486] dwctwo0: set HCINTMSK to 00000006
[  67.3104486] dwctwo0: set HAINTMSK to 0000000c
[  67.3104486] dwctwo0: set GINTMSK to f300080e
[  67.3104486] dwctwo0: set HCCHAR(3) to 01000008
[  67.3104486] dwctwo0: dwc2_hc_init: Channel 3
[  67.3104486] dwctwo0: 	 Dev Addr: 4
[  67.3104486] dwctwo0: 	 Ep Num: 0
[  67.3104486] dwctwo0: 	 Is In: 0
[  67.3104486] dwctwo0: 	 Is Low Speed: 0
[  67.3104486] dwctwo0: 	 Ep Type: 0
[  67.3104486] dwctwo0: 	 Max Pkt: 8
[  67.3104486] dwctwo0: Programming HC 3 with split --> CSPLIT
[  67.3104486] dwctwo0: 	  comp split 1
[  67.3104486] dwctwo0: 	  xact pos 3
[  67.3104486] dwctwo0: 	  hub addr 2
[  67.3104486] dwctwo0: 	  hub port 2
[  67.3104486] dwctwo0: 	  is_in 0
[  67.3104486] dwctwo0: 	  Max Pkt 8
[  67.3104486] dwctwo0: 	  xferlen 8
[  67.3104486] dwctwo0: Queue non-periodic transactions
[  67.3104486] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  67.3104486] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  67.3104486] dwctwo0: dwc2_hc_start_transfer()
[  67.3104486] dwctwo0: split
[  67.3104486] dwctwo0: Wrote 60080000 to HCTSIZ(3)
[  67.3104486] dwctwo0: dwc2_hc_start_transfer: Channel 3
[  67.3104486] dwctwo0: 	 Xfer Size: 0
[  67.3104486] dwctwo0: 	 Num Pkts: 1
[  67.3104486] dwctwo0: 	 Start PID: 3
[  67.3104486] dwctwo0: Wrote c091ad00 to HCDMA(3)
[  67.3104486] dwctwo0: 	 Multi Cnt: 1
[  67.3104486] dwctwo0: Wrote 81100008 to HCCHAR(3)
[  67.5230805] dwctwo0: --Host Channel Interrupt--, Channel 3
[  67.5230805] dwctwo0:   hcint 0x00000023, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  67.5230805] dwctwo0: --Host Channel 3 Interrupt: Channel Halted--
[  67.5230805] dwctwo0: --Host Channel 3 Interrupt: DMA Channel Halted--
[  67.5230805] dwctwo0: --Host Channel 3 Interrupt: Transfer Complete--
[  67.5230805] dwctwo0:   Control setup transaction done
[  67.5230805] dwctwo0: dwc2_complete_non_periodic_xfer()
[  67.5230805] dwctwo0:   dwc2_release_channel: channel 3, halt_status 1
[  67.5230805] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  67.5230805] dwctwo0: dwc2_hcd_qh_deactivate()
[  67.5230805] dwctwo0: dwc2_hcd_qh_unlink()
[  67.5230805] dwctwo0: dwc2_hcd_qh_add()
[  67.5230805] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  67.5230805] dwctwo0:   Control status transaction
[  67.5230805] dwctwo0: dwc2_hc_init()
[  67.5230805] dwctwo0: DMA enabled
[  67.5230805] dwctwo0: desc DMA disabled
[  67.5230805] dwctwo0: set HCINTMSK to 00000006
[  67.5230805] dwctwo0: set HAINTMSK to 00000010
[  67.5230805] dwctwo0: set GINTMSK to f300080e
[  67.5230805] dwctwo0: set HCCHAR(4) to 01008008
[  67.5230805] dwctwo0: dwc2_hc_init: Channel 4
[  67.5230805] dwctwo0: 	 Dev Addr: 4
[  67.5230805] dwctwo0: 	 Ep Num: 0
[  67.5230805] dwctwo0: 	 Is In: 1
[  67.5230805] dwctwo0: 	 Is Low Speed: 0
[  67.5230805] dwctwo0: 	 Ep Type: 0
[  67.5230805] dwctwo0: 	 Max Pkt: 8
[  67.5230805] dwctwo0: Programming HC 4 with split --> SSPLIT
[  67.5230805] dwctwo0: 	  comp split 0
[  67.5230805] dwctwo0: 	  xact pos 3
[  67.5230805] dwctwo0: 	  hub addr 2
[  67.5230805] dwctwo0: 	  hub port 2
[  67.5230805] dwctwo0: 	  is_in 1
[  67.5230805] dwctwo0: 	  Max Pkt 8
[  67.5230805] dwctwo0: 	  xferlen 0
[  67.5230805] dwctwo0: Queue non-periodic transactions
[  67.5230805] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  67.5230805] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  67.5230805] dwctwo0: dwc2_hc_start_transfer()
[  67.5230805] dwctwo0: split
[  67.5230805] dwctwo0: Wrote 40080008 to HCTSIZ(4)
[  67.5230805] dwctwo0: dwc2_hc_start_transfer: Channel 4
[  67.5230805] dwctwo0: 	 Xfer Size: 8
[  67.5230805] dwctwo0: 	 Num Pkts: 1
[  67.5230805] dwctwo0: 	 Start PID: 2
[  67.5230805] dwctwo0: Wrote c091afc0 to HCDMA(4)
[  67.5230805] dwctwo0: 	 Multi Cnt: 1
[  67.5230805] dwctwo0: Wrote 81108008 to HCCHAR(4)
[  67.7392703] dwctwo0: --Host Channel Interrupt--, Channel 4
[  67.7392703] dwctwo0:   hcint 0x00000022, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  67.7392703] dwctwo0: --Host Channel 4 Interrupt: Channel Halted--
[  67.7392703] dwctwo0: --Host Channel 4 Interrupt: DMA Channel Halted--
[  67.7392703] dwctwo0: --Host Channel 4 Interrupt: ACK Received--
[  67.7392703] dwctwo0: dwc2_halt_channel()
[  67.7392703] dwctwo0: DMA enabled
[  67.7392703] dwctwo0:   dwc2_release_channel: channel 4, halt_status 3
[  67.7392703] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  67.7392703] dwctwo0: dwc2_hcd_qh_deactivate()
[  67.7392703] dwctwo0: dwc2_hcd_qh_unlink()
[  67.7392703] dwctwo0: dwc2_hcd_qh_add()
[  67.7392703] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  67.7392703] dwctwo0:   Control status transaction
[  67.7392703] dwctwo0: dwc2_hc_init()
[  67.7392703] dwctwo0: DMA enabled
[  67.7392703] dwctwo0: desc DMA disabled
[  67.7392703] dwctwo0: set HCINTMSK to 00000006
[  67.7392703] dwctwo0: set HAINTMSK to 00000060
[  67.7392703] dwctwo0: set GINTMSK to f300080e
[  67.7392703] dwctwo0: set HCCHAR(6) to 01008008
[  67.7392703] dwctwo0: dwc2_hc_init: Channel 6
[  67.7392703] dwctwo0: 	 Dev Addr: 4
[  67.7392703] dwctwo0: 	 Ep Num: 0
[  67.7392703] dwctwo0: 	 Is In: 1
[  67.7392703] dwctwo0: 	 Is Low Speed: 0
[  67.7392703] dwctwo0: 	 Ep Type: 0
[  67.7392703] dwctwo0: 	 Max Pkt: 8
[  67.7392703] dwctwo0: Programming HC 6 with split --> CSPLIT
[  67.7392703] dwctwo0: 	  comp split 1
[  67.7392703] dwctwo0: 	  xact pos 3
[  67.7392703] dwctwo0: 	  hub addr 2
[  67.7392703] dwctwo0: 	  hub port 2
[  67.7392703] dwctwo0: 	  is_in 1
[  67.7392703] dwctwo0: 	  Max Pkt 8
[  67.7392703] dwctwo0: 	  xferlen 0
[  67.7392703] dwctwo0: Queue non-periodic transactions
[  67.7392703] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  67.7392703] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  67.7392703] dwctwo0: dwc2_hc_start_transfer()
[  67.7392703] dwctwo0: split
[  67.7392703] dwctwo0: Wrote 40080008 to HCTSIZ(6)
[  67.7392703] dwctwo0: dwc2_hc_start_transfer: Channel 6
[  67.7392703] dwctwo0: 	 Xfer Size: 8
[  67.7392703] dwctwo0: 	 Num Pkts: 1
[  67.7392703] dwctwo0: 	 Start PID: 2
[  67.7392703] dwctwo0: Wrote c091afc0 to HCDMA(6)
[  67.7392703] dwctwo0: 	 Multi Cnt: 1
[  67.7392703] dwctwo0: Wrote 81108008 to HCCHAR(6)
[  67.9519959] dwctwo0: --Host Channel Interrupt--, Channel 6
[  67.9519959] dwctwo0:   hcint 0x00000023, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  67.9519959] dwctwo0: --Host Channel 6 Interrupt: Channel Halted--
[  67.9519959] dwctwo0: --Host Channel 6 Interrupt: DMA Channel Halted--
[  67.9519959] dwctwo0: --Host Channel 6 Interrupt: Transfer Complete--
[  67.9519959] dwctwo0:   Control transfer complete
[  67.9519959] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  67.9941826] dwctwo0: dwc2_complete_non_periodic_xfer()
[  67.9941826] dwctwo0: dwc2_halt_channel()
[  67.9941826] dwctwo0: DMA enabled
[  67.9941826] dwctwo0:   dwc2_release_channel: channel 6, halt_status 2
[  67.9941826] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,1)
[  67.9941826] dwctwo0: dwc2_hcd_qh_deactivate()
[  67.9941826] dwctwo0: dwc2_hcd_qh_unlink()
[  68.0273507] dwc2_device_ctrl_done: xfer=0x90d7fce0
[  68.0273507] dwc2_freex: 
[  68.0273507] dwc2_allocx: 
[  68.0273507] dwc2_device_ctrl_transfer: 
[  68.0411100] dwc2_device_ctrl_start: 
[  68.0411100] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d6e8
[  68.0504862] dwc2_device_start: xfer=0x90d7fce0 type=0x22 request=0x01 wValue=0x0100 wIndex=0x0001 len=3 addr=4 endpt=0 dir=out speed=2 mps=8
[  68.0630757] dwc2_device_start: req = 0x9a9dad00 dma = c091ad00 len 3 dir out
[  68.0630757] dwctwo0: urb=0x90fdce00, xfer=0x90d7fce0
[  68.0750572] dwctwo0: dwc2_hcd_qh_add()
[  68.0750572] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  68.0750572] dwctwo0:   Control setup transaction
[  68.0750572] dwctwo0: dwc2_hc_init()
[  68.0750572] dwctwo0: DMA enabled
[  68.0750572] dwctwo0: desc DMA disabled
[  68.0750572] dwctwo0: set HCINTMSK to 00000006
[  68.0750572] dwctwo0: set HAINTMSK to 00000001
[  68.0750572] dwctwo0: set GINTMSK to f300080e
[  68.0750572] dwctwo0: set HCCHAR(0) to 01000008
[  68.0750572] dwctwo0: dwc2_hc_init: Channel 0
[  68.0750572] dwctwo0: 	 Dev Addr: 4
[  68.0750572] dwctwo0: 	 Ep Num: 0
[  68.0750572] dwctwo0: 	 Is In: 0
[  68.0750572] dwctwo0: 	 Is Low Speed: 0
[  68.0750572] dwctwo0: 	 Ep Type: 0
[  68.0750572] dwctwo0: 	 Max Pkt: 8
[  68.0750572] dwctwo0: Programming HC 0 with split --> SSPLIT
[  68.0750572] dwctwo0: 	  comp split 0
[  68.0750572] dwctwo0: 	  xact pos 3
[  68.0750572] dwctwo0: 	  hub addr 2
[  68.0750572] dwctwo0: 	  hub port 2
[  68.0750572] dwctwo0: 	  is_in 0
[  68.0750572] dwctwo0: 	  Max Pkt 8
[  68.0750572] dwctwo0: 	  xferlen 8
[  68.0750572] dwctwo0: Queue non-periodic transactions
[  68.0750572] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  68.0750572] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  68.0750572] dwctwo0: dwc2_hc_start_transfer()
[  68.0750572] dwctwo0: split
[  68.0750572] dwctwo0: Wrote 60080008 to HCTSIZ(0)
[  68.0750572] dwctwo0: dwc2_hc_start_transfer: Channel 0
[  68.0750572] dwctwo0: 	 Xfer Size: 8
[  68.0750572] dwctwo0: 	 Num Pkts: 1
[  68.0750572] dwctwo0: 	 Start PID: 3
[  68.0750572] dwctwo0: Wrote c091ad00 to HCDMA(0)
[  68.0750572] dwctwo0: 	 Multi Cnt: 1
[  68.0750572] dwctwo0: Wrote 81100008 to HCCHAR(0)
[  68.2277829] dwctwo0: --Host Channel Interrupt--, Channel 0
[  68.2277829] dwctwo0:   hcint 0x00000022, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  68.2277829] dwctwo0: --Host Channel 0 Interrupt: Channel Halted--
[  68.2277829] dwctwo0: --Host Channel 0 Interrupt: DMA Channel Halted--
[  68.2277829] dwctwo0: --Host Channel 0 Interrupt: ACK Received--
[  68.2277829] dwctwo0: dwc2_halt_channel()
[  68.2277829] dwctwo0: DMA enabled
[  68.2277829] dwctwo0:   dwc2_release_channel: channel 0, halt_status 3
[  68.2277829] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  68.2277829] dwctwo0: dwc2_hcd_qh_deactivate()
[  68.2277829] dwctwo0: dwc2_hcd_qh_unlink()
[  68.2277829] dwctwo0: dwc2_hcd_qh_add()
[  68.2277829] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  68.2277829] dwctwo0:   Control setup transaction
[  68.2277829] dwctwo0: dwc2_hc_init()
[  68.2277829] dwctwo0: DMA enabled
[  68.2277829] dwctwo0: desc DMA disabled
[  68.2277829] dwctwo0: set HCINTMSK to 00000006
[  68.2277829] dwctwo0: set HAINTMSK to 00000006
[  68.2277829] dwctwo0: set GINTMSK to f300080e
[  68.2277829] dwctwo0: set HCCHAR(2) to 01000008
[  68.2277829] dwctwo0: dwc2_hc_init: Channel 2
[  68.2277829] dwctwo0: 	 Dev Addr: 4
[  68.2277829] dwctwo0: 	 Ep Num: 0
[  68.2277829] dwctwo0: 	 Is In: 0
[  68.2277829] dwctwo0: 	 Is Low Speed: 0
[  68.2277829] dwctwo0: 	 Ep Type: 0
[  68.2277829] dwctwo0: 	 Max Pkt: 8
[  68.2277829] dwctwo0: Programming HC 2 with split --> CSPLIT
[  68.2277829] dwctwo0: 	  comp split 1
[  68.2277829] dwctwo0: 	  xact pos 3
[  68.2277829] dwctwo0: 	  hub addr 2
[  68.2277829] dwctwo0: 	  hub port 2
[  68.2277829] dwctwo0: 	  is_in 0
[  68.2277829] dwctwo0: 	  Max Pkt 8
[  68.2277829] dwctwo0: 	  xferlen 8
[  68.2277829] dwctwo0: Queue non-periodic transactions
[  68.2277829] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  68.2277829] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  68.2277829] dwctwo0: dwc2_hc_start_transfer()
[  68.2277829] dwctwo0: split
[  68.2277829] dwctwo0: Wrote 60080000 to HCTSIZ(2)
[  68.2277829] dwctwo0: dwc2_hc_start_transfer: Channel 2
[  68.2277829] dwctwo0: 	 Xfer Size: 0
[  68.2277829] dwctwo0: 	 Num Pkts: 1
[  68.2277829] dwctwo0: 	 Start PID: 3
[  68.2277829] dwctwo0: Wrote c091ad00 to HCDMA(2)
[  68.2277829] dwctwo0: 	 Multi Cnt: 1
[  68.2277829] dwctwo0: Wrote 81100008 to HCCHAR(2)
[  68.4404157] dwctwo0: --Host Channel Interrupt--, Channel 2
[  68.4404157] dwctwo0:   hcint 0x00000023, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  68.4404157] dwctwo0: --Host Channel 2 Interrupt: Channel Halted--
[  68.4404157] dwctwo0: --Host Channel 2 Interrupt: DMA Channel Halted--
[  68.4404157] dwctwo0: --Host Channel 2 Interrupt: Transfer Complete--
[  68.4404157] dwctwo0:   Control setup transaction done
[  68.4404157] dwctwo0: dwc2_complete_non_periodic_xfer()
[  68.4404157] dwctwo0:   dwc2_release_channel: channel 2, halt_status 1
[  68.4404157] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  68.4404157] dwctwo0: dwc2_hcd_qh_deactivate()
[  68.4404157] dwctwo0: dwc2_hcd_qh_unlink()
[  68.4404157] dwctwo0: dwc2_hcd_qh_add()
[  68.4404157] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  68.4404157] dwctwo0:   Control data transaction
[  68.4404157] dwctwo0: dwc2_hc_init()
[  68.4404157] dwctwo0: DMA enabled
[  68.4404157] dwctwo0: desc DMA disabled
[  68.4404157] dwctwo0: set HCINTMSK to 00000006
[  68.4404157] dwctwo0: set HAINTMSK to 00000008
[  68.4404157] dwctwo0: set GINTMSK to f300080e
[  68.4404157] dwctwo0: set HCCHAR(3) to 01000008
[  68.4404157] dwctwo0: dwc2_hc_init: Channel 3
[  68.4404157] dwctwo0: 	 Dev Addr: 4
[  68.4404157] dwctwo0: 	 Ep Num: 0
[  68.4404157] dwctwo0: 	 Is In: 0
[  68.4404157] dwctwo0: 	 Is Low Speed: 0
[  68.4404157] dwctwo0: 	 Ep Type: 0
[  68.4404157] dwctwo0: 	 Max Pkt: 8
[  68.4404157] dwctwo0: Programming HC 3 with split --> SSPLIT
[  68.4404157] dwctwo0: 	  comp split 0
[  68.4404157] dwctwo0: 	  xact pos 3
[  68.4404157] dwctwo0: 	  hub addr 2
[  68.4404157] dwctwo0: 	  hub port 2
[  68.4404157] dwctwo0: 	  is_in 0
[  68.4404157] dwctwo0: 	  Max Pkt 8
[  68.4404157] dwctwo0: 	  xferlen 3
[  68.4404157] dwctwo0: Queue non-periodic transactions
[  68.4404157] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  68.4404157] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  68.4404157] dwctwo0: dwc2_hc_start_transfer()
[  68.4404157] dwctwo0: split
[  68.4404157] dwctwo0: Wrote 40080003 to HCTSIZ(3)
[  68.4404157] dwctwo0: dwc2_hc_start_transfer: Channel 3
[  68.4404157] dwctwo0: 	 Xfer Size: 3
[  68.4404157] dwctwo0: 	 Num Pkts: 1
[  68.4404157] dwctwo0: 	 Start PID: 2
[  68.4404157] dwctwo0: Wrote c091acc0 to HCDMA(3)
[  68.4404157] dwctwo0: 	 Multi Cnt: 1
[  68.4404157] dwctwo0: Wrote 81100008 to HCCHAR(3)
[  68.6564313] dwctwo0: --Host Channel Interrupt--, Channel 3
[  68.6564313] dwctwo0:   hcint 0x00000022, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  68.6564313] dwctwo0: --Host Channel 3 Interrupt: Channel Halted--
[  68.6564313] dwctwo0: --Host Channel 3 Interrupt: DMA Channel Halted--
[  68.6564313] dwctwo0: --Host Channel 3 Interrupt: ACK Received--
[  68.6564313] dwctwo0: dwc2_halt_channel()
[  68.6564313] dwctwo0: DMA enabled
[  68.6564313] dwctwo0:   dwc2_release_channel: channel 3, halt_status 3
[  68.6564313] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  68.6564313] dwctwo0: dwc2_hcd_qh_deactivate()
[  68.6564313] dwctwo0: dwc2_hcd_qh_unlink()
[  68.6564313] dwctwo0: dwc2_hcd_qh_add()
[  68.6564313] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  68.6564313] dwctwo0:   Control data transaction
[  68.6564313] dwctwo0: dwc2_hc_init()
[  68.6564313] dwctwo0: DMA enabled
[  68.6564313] dwctwo0: desc DMA disabled
[  68.6564313] dwctwo0: set HCINTMSK to 00000006
[  68.6564313] dwctwo0: set HAINTMSK to 00000030
[  68.6564313] dwctwo0: set GINTMSK to f300080e
[  68.6564313] dwctwo0: set HCCHAR(5) to 01000008
[  68.6564313] dwctwo0: dwc2_hc_init: Channel 5
[  68.6564313] dwctwo0: 	 Dev Addr: 4
[  68.6564313] dwctwo0: 	 Ep Num: 0
[  68.6564313] dwctwo0: 	 Is In: 0
[  68.6564313] dwctwo0: 	 Is Low Speed: 0
[  68.6564313] dwctwo0: 	 Ep Type: 0
[  68.6564313] dwctwo0: 	 Max Pkt: 8
[  68.6564313] dwctwo0: Programming HC 5 with split --> CSPLIT
[  68.6564313] dwctwo0: 	  comp split 1
[  68.6564313] dwctwo0: 	  xact pos 3
[  68.6564313] dwctwo0: 	  hub addr 2
[  68.6564313] dwctwo0: 	  hub port 2
[  68.6564313] dwctwo0: 	  is_in 0
[  68.6564313] dwctwo0: 	  Max Pkt 8
[  68.6564313] dwctwo0: 	  xferlen 3
[  68.6564313] dwctwo0: Queue non-periodic transactions
[  68.6564313] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  68.6564313] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  68.6564313] dwctwo0: dwc2_hc_start_transfer()
[  68.6564313] dwctwo0: split
[  68.6564313] dwctwo0: Wrote 40080000 to HCTSIZ(5)
[  68.6564313] dwctwo0: dwc2_hc_start_transfer: Channel 5
[  68.6564313] dwctwo0: 	 Xfer Size: 0
[  68.6564313] dwctwo0: 	 Num Pkts: 1
[  68.6564313] dwctwo0: 	 Start PID: 2
[  68.6564313] dwctwo0: Wrote c091acc0 to HCDMA(5)
[  68.6564313] dwctwo0: 	 Multi Cnt: 1
[  68.6564313] dwctwo0: Wrote 81100008 to HCCHAR(5)
[  68.8689752] dwctwo0: --Host Channel Interrupt--, Channel 5
[  68.8689752] dwctwo0:   hcint 0x00000023, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  68.8689752] dwctwo0: --Host Channel 5 Interrupt: Channel Halted--
[  68.8689752] dwctwo0: --Host Channel 5 Interrupt: DMA Channel Halted--
[  68.8689752] dwctwo0: --Host Channel 5 Interrupt: Transfer Complete--
[  68.8689752] dwctwo0: urb->actual_length=0 xfer_length=3
[  68.8689752] dwctwo0: DWC_otg: dwc2_update_urb_state: OUT, channel 5
[  68.8689752] dwctwo0:   chan->xfer_len 0
[  68.8689752] dwctwo0:   hctsiz.xfersize 0
[  68.8689752] dwctwo0:   urb->transfer_buffer_length 3
[  68.8689752] dwctwo0:   urb->actual_length 3
[  68.8689752] dwctwo0:   short_read 0, xfer_done 1
[  68.8689752] dwctwo0:   Control data transfer done
[  68.8689752] dwctwo0: dwc2_complete_non_periodic_xfer()
[  68.8689752] dwctwo0:   dwc2_release_channel: channel 5, halt_status 1
[  68.8689752] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  68.8689752] dwctwo0: dwc2_hcd_qh_deactivate()
[  68.8689752] dwctwo0: dwc2_hcd_qh_unlink()
[  68.8689752] dwctwo0: dwc2_hcd_qh_add()
[  68.8689752] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  68.8689752] dwctwo0:   Control status transaction
[  68.8689752] dwctwo0: dwc2_hc_init()
[  68.8689752] dwctwo0: DMA enabled
[  68.8689752] dwctwo0: desc DMA disabled
[  68.8689752] dwctwo0: set HCINTMSK to 00000006
[  68.8689752] dwctwo0: set HAINTMSK to 000000c0
[  68.8689752] dwctwo0: set GINTMSK to f300080e
[  68.8689752] dwctwo0: set HCCHAR(7) to 01008008
[  68.8689752] dwctwo0: dwc2_hc_init: Channel 7
[  68.8689752] dwctwo0: 	 Dev Addr: 4
[  68.8689752] dwctwo0: 	 Ep Num: 0
[  68.8689752] dwctwo0: 	 Is In: 1
[  68.8689752] dwctwo0: 	 Is Low Speed: 0
[  68.8689752] dwctwo0: 	 Ep Type: 0
[  68.8689752] dwctwo0: 	 Max Pkt: 8
[  68.8689752] dwctwo0: Programming HC 7 with split --> SSPLIT
[  68.8689752] dwctwo0: 	  comp split 0
[  68.8689752] dwctwo0: 	  xact pos 3
[  68.8689752] dwctwo0: 	  hub addr 2
[  68.8689752] dwctwo0: 	  hub port 2
[  68.8689752] dwctwo0: 	  is_in 1
[  68.8689752] dwctwo0: 	  Max Pkt 8
[  68.8689752] dwctwo0: 	  xferlen 0
[  68.8689752] dwctwo0: Queue non-periodic transactions
[  68.8689752] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  68.8689752] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  68.8689752] dwctwo0: dwc2_hc_start_transfer()
[  68.8689752] dwctwo0: split
[  68.8689752] dwctwo0: Wrote 40080008 to HCTSIZ(7)
[  68.8689752] dwctwo0: dwc2_hc_start_transfer: Channel 7
[  68.8689752] dwctwo0: 	 Xfer Size: 8
[  68.8689752] dwctwo0: 	 Num Pkts: 1
[  68.8689752] dwctwo0: 	 Start PID: 2
[  68.8689752] dwctwo0: Wrote c091afc0 to HCDMA(7)
[  68.8689752] dwctwo0: 	 Multi Cnt: 1
[  68.8689752] dwctwo0: Wrote 81108008 to HCCHAR(7)
[  69.1177318] dwctwo0: --Host Channel Interrupt--, Channel 7
[  69.1177318] dwctwo0:   hcint 0x00000022, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  69.1177318] dwctwo0: --Host Channel 7 Interrupt: Channel Halted--
[  69.1177318] dwctwo0: --Host Channel 7 Interrupt: DMA Channel Halted--
[  69.1177318] dwctwo0: --Host Channel 7 Interrupt: ACK Received--
[  69.1177318] dwctwo0: dwc2_halt_channel()
[  69.1177318] dwctwo0: DMA enabled
[  69.1177318] dwctwo0:   dwc2_release_channel: channel 7, halt_status 3
[  69.1177318] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,0)
[  69.1177318] dwctwo0: dwc2_hcd_qh_deactivate()
[  69.1177318] dwctwo0: dwc2_hcd_qh_unlink()
[  69.1177318] dwctwo0: dwc2_hcd_qh_add()
[  69.1177318] dwctwo0: dwc2_assign_and_init_hc(0x90d76d48,0x90fcb9c0)
[  69.1177318] dwctwo0:   Control status transaction
[  69.1177318] dwctwo0: dwc2_hc_init()
[  69.1177318] dwctwo0: DMA enabled
[  69.1177318] dwctwo0: desc DMA disabled
[  69.1177318] dwctwo0: set HCINTMSK to 00000006
[  69.1177318] dwctwo0: set HAINTMSK to 00000001
[  69.1177318] dwctwo0: set GINTMSK to f300080e
[  69.1177318] dwctwo0: set HCCHAR(0) to 01008008
[  69.1177318] dwctwo0: dwc2_hc_init: Channel 0
[  69.1177318] dwctwo0: 	 Dev Addr: 4
[  69.1177318] dwctwo0: 	 Ep Num: 0
[  69.1177318] dwctwo0: 	 Is In: 1
[  69.1177318] dwctwo0: 	 Is Low Speed: 0
[  69.1177318] dwctwo0: 	 Ep Type: 0
[  69.1177318] dwctwo0: 	 Max Pkt: 8
[  69.1177318] dwctwo0: Programming HC 0 with split --> CSPLIT
[  69.1177318] dwctwo0: 	  comp split 1
[  69.1177318] dwctwo0: 	  xact pos 3
[  69.1177318] dwctwo0: 	  hub addr 2
[  69.1177318] dwctwo0: 	  hub port 2
[  69.1177318] dwctwo0: 	  is_in 1
[  69.1177318] dwctwo0: 	  Max Pkt 8
[  69.1177318] dwctwo0: 	  xferlen 0
[  69.1177318] dwctwo0: Queue non-periodic transactions
[  69.1177318] dwctwo0:   NP Tx Req Queue Space Avail (before queue): 8
[  69.1177318] dwctwo0:   NP Tx FIFO Space Avail (before queue): 256
[  69.1177318] dwctwo0: dwc2_hc_start_transfer()
[  69.1177318] dwctwo0: split
[  69.1177318] dwctwo0: Wrote 40080008 to HCTSIZ(0)
[  69.1177318] dwctwo0: dwc2_hc_start_transfer: Channel 0
[  69.1177318] dwctwo0: 	 Xfer Size: 8
[  69.1177318] dwctwo0: 	 Num Pkts: 1
[  69.1177318] dwctwo0: 	 Start PID: 2
[  69.1177318] dwctwo0: Wrote c091afc0 to HCDMA(0)
[  69.1177318] dwctwo0: 	 Multi Cnt: 1
[  69.1177318] dwctwo0: Wrote 81108008 to HCCHAR(0)
[  69.3304435] dwctwo0: --Host Channel Interrupt--, Channel 0
[  69.3304435] dwctwo0:   hcint 0x00000023, hcintmsk 0x00000006, hcint&hcintmsk 0x00000002
[  69.3304435] dwctwo0: --Host Channel 0 Interrupt: Channel Halted--
[  69.3304435] dwctwo0: --Host Channel 0 Interrupt: DMA Channel Halted--
[  69.3304435] dwctwo0: --Host Channel 0 Interrupt: Transfer Complete--
[  69.3304435] dwctwo0:   Control transfer complete
[  69.3304435] dwc2_host_complete: xfer=0x90d7fce0 actlen=3
[  69.3726383] dwctwo0: dwc2_complete_non_periodic_xfer()
[  69.3726383] dwctwo0: dwc2_halt_channel()
[  69.3726383] dwctwo0: DMA enabled
[  69.3726383] dwctwo0:   dwc2_release_channel: channel 0, halt_status 2
[  69.3726383] dwctwo0:   dwc2_deactivate_qh(0x90d76d48,0x90fcb9c0,1)
[  69.3726383] dwctwo0: dwc2_hcd_qh_deactivate()
[  69.3726383] dwctwo0: dwc2_hcd_qh_unlink()
[  69.4058067] dwc2_device_ctrl_done: xfer=0x90d7fce0
[  69.4058067] dwc2_freex: 
[  69.4058067] dwc2_open: pipe 0x90d3d340 addr 4 xfertype 1 dir out
[  69.4158084] dwc2_allocx: 
[  69.4158084] dwc2_allocx: 
[  69.4158084] dwc2_allocx: 
[  69.4258085] dwc2_allocx: 
[  69.4258085] dwc2_allocx: 
[  69.4258085] dwc2_allocx: 
[  69.4258085] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  69.4358109] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  69.4358109] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.4458107] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  69.4558140] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  69.4658140] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  69.4658140] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  69.4758171] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  69.4858171] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  69.4958198] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  69.4958198] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  69.5058201] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  69.5158228] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  69.5158228] dwctwo0: dwc2_qh_init()
[  69.5258229] dwctwo0: QH init: EP 1: TT found at hub addr 2, for port 2
[  69.5258229] dwctwo0: interval=8
[  69.5358260] dwctwo0: DWC OTG HCD QH Initialized
[  69.5358260] dwctwo0: DWC OTG HCD QH - qh = 0x90fcb920
[  69.5458259] dwctwo0: DWC OTG HCD QH - Device Address = 4
[  69.5458259] dwctwo0: DWC OTG HCD QH - Endpoint 1, OUT
[  69.5558287] dwctwo0: DWC OTG HCD QH - Speed = full
[  69.5558287] dwctwo0: DWC OTG HCD QH - Type = isochronous
[  69.5658291] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  69.5658291] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  69.5758325] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  69.5758325] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.5758325] dwctwo0: dwc2_hcd_qh_unlink()
[  69.5758325] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  69.5971860] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  69.6071892] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  69.6171890] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  69.6171890] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  69.6271920] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  69.6371918] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  69.6371918] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  69.6471948] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  69.6571950] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  69.6671982] dwc2_device_isoc_done: 
[  69.6671982] dwc2_device_isoc_transfer: xfer=0x90d7fb70
uaudio_chan_pintr: count(40) != size(1920)
[  69.6671982] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  69.6800989] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.6872021] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  69.6872021] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  69.7000699] dwctwo0: dwc2_hcd_qh_unlink()
[  69.7000699] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  69.7109241] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  69.7200728] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  69.7300759] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  69.7300759] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  69.7400763] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  69.7500787] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  69.7600788] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  69.7600788] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  69.7700815] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  69.7700815] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  69.7800825] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  69.7800825] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.7908003] dwctwo0: dwc2_hcd_qh_unlink()
[  69.7908003] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  69.8036515] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  69.8108029] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  69.8208057] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  69.8308056] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  69.8308056] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  69.8408087] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  69.8508084] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  69.8508084] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  69.8608113] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  69.8708115] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  69.8708115] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  69.8808153] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  69.8808153] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.8808153] dwctwo0: dwc2_hcd_qh_unlink()
[  69.8808153] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  69.9032388] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  69.9132416] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  69.9232415] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  69.9232415] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  69.9332444] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  69.9432441] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  69.9432441] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  69.9532471] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  69.9632471] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  69.9732502] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  69.9732502] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  69.9732502] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  69.9732502] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  69.9899738] dwctwo0: dwc2_hcd_qh_unlink()
[  69.9899738] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  70.0028251] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  70.0099766] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  70.0199798] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  70.0299793] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  70.0299793] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  70.0399822] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  70.0499820] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  70.0499820] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  70.0599854] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  70.0699853] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  70.0699853] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  70.0842653] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.0931228] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  70.0931228] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  70.1070127] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  70.1140442] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  70.1140442] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  70.1281104] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  70.1351417] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  70.1351417] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  70.1493815] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  70.1565001] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  70.1565001] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.1670981] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  70.1670981] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  70.1818535] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.1907088] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  70.1907088] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  70.2046008] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  70.2116336] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  70.2116336] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  70.2256996] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  70.2327316] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  70.2327316] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  70.2469706] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  70.2540901] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  70.2540901] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  70.2665089] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.2665089] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  70.2789215] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  70.2789215] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.2935952] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  70.3004540] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  70.3004540] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  70.3145193] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  70.3215520] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  70.3215520] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  70.3356175] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  70.3427371] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  70.3427371] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  70.3569763] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  70.3640954] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.3640954] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  70.3765126] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  70.3765126] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.3911846] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  70.3980437] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  70.3980437] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  70.4121091] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  70.4191413] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  70.4191413] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  70.4332076] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  70.4332076] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  70.4456229] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  70.4456229] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  70.4598620] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  70.4669816] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.4669816] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  70.4793975] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  70.4793975] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.4940707] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  70.5009298] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  70.5009298] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  70.5149952] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  70.5220277] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  70.5220277] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  70.5360932] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  70.5432128] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  70.5432128] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  70.5574519] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  70.5645714] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.5645714] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  70.5770356] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  70.5770356] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.5917075] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  70.5985669] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  70.5985669] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  70.6126315] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  70.6126315] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  70.6249605] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  70.6249605] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  70.6390260] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  70.6461450] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  70.6461450] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  70.6603847] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  70.6675038] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.6675038] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  70.6799203] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  70.6799203] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.6945931] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  70.7014524] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  70.7014524] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  70.7155175] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  70.7225500] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  70.7225500] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  70.7366155] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  70.7437349] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  70.7437349] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  70.7579740] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  70.7650937] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.7650937] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  70.7775100] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  70.7775100] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.7921825] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  70.7990417] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  70.7990417] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  70.8113704] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  70.8113704] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  70.8254361] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  70.8324686] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  70.8324686] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  70.8466208] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  70.8537407] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  70.8537407] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  70.8679796] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.8752731] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  70.8752731] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  70.8862130] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.8862130] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  70.9019279] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  70.9089603] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  70.9089603] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  70.9230257] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  70.9300582] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  70.9300582] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  70.9442106] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  70.9513300] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  70.9513300] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  70.9655695] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  70.9720519] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  70.9720519] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  70.9844656] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  70.9844656] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  70.9991383] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  71.0059972] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  71.0059972] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  71.0200625] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  71.0270952] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  71.0270952] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  71.0411606] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  71.0482801] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  71.0482801] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  71.0625194] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  71.0696388] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  71.0696388] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.0825327] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  71.0914757] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  71.0914757] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.1061483] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  71.1130074] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  71.1130074] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  71.1270727] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  71.1341053] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  71.1341053] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  71.1481709] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  71.1552899] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  71.1552899] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  71.1695294] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  71.1766486] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  71.1766486] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.1895454] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  71.1985168] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  71.1985168] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.2131895] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  71.2200483] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  71.2200483] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  71.2341141] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  71.2411460] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  71.2411460] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  71.2552119] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  71.2623313] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  71.2623313] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  71.2765704] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  71.2836897] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  71.2836897] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.2965613] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  71.3055041] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  71.3055041] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.3201771] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  71.3270363] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  71.3270363] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  71.3411013] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  71.3481340] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  71.3481340] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  71.3621997] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  71.3693188] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  71.3693188] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  71.3835583] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  71.3906774] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  71.3906774] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.4035751] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  71.4125182] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  71.4125182] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.4271911] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  71.4340499] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  71.4340499] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  71.4481153] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  71.4551481] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  71.4551481] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  71.4692136] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  71.4763328] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  71.4763328] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  71.4905721] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  71.4976912] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  71.4976912] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.5105907] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  71.5195332] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  71.5195332] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.5342059] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  71.5410648] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  71.5410648] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  71.5551304] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  71.5621630] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  71.5621630] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  71.5762287] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  71.5833477] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  71.5833477] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  71.5975873] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  71.6047063] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  71.6047063] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.6176033] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  71.6265462] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  71.6265462] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.6412192] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  71.6480782] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  71.6480782] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  71.6621437] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  71.6691763] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  71.6691763] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  71.6832417] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  71.6903611] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  71.6903611] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  71.7046004] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  71.7117196] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  71.7117196] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.7246177] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  71.7335611] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  71.7335611] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.7482336] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  71.7550927] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  71.7550927] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  71.7691582] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  71.7761911] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  71.7761911] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  71.7902562] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  71.7973754] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  71.7973754] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  71.8116149] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  71.8187342] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  71.8187342] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.8316317] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  71.8406004] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  71.8406004] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.8552733] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  71.8621325] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  71.8621325] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  71.8761973] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  71.8832302] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  71.8832302] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  71.8972957] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  71.9044153] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  71.9044153] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  71.9186540] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  71.9257736] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  71.9257736] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  71.9386461] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  71.9475889] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  71.9475889] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  71.9622620] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  71.9691211] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  71.9691211] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  71.9831865] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  71.9902192] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  71.9902192] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  72.0042847] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  72.0114037] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  72.0114037] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  72.0256433] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  72.0327624] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  72.0327624] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.0456619] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  72.0546047] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  72.0546047] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.0692775] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  72.0761365] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  72.0761365] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  72.0902020] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  72.0972346] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  72.0972346] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  72.1113001] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  72.1184196] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  72.1184196] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  72.1326588] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  72.1397778] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  72.1397778] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.1526755] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  72.1616188] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  72.1616188] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.1762915] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  72.1831502] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  72.1831502] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  72.1972158] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  72.2042483] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  72.2042483] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  72.2183139] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  72.2254341] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  72.2254341] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  72.2396725] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  72.2467917] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  72.2467917] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.2596896] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  72.2686328] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  72.2686328] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.2833058] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  72.2901649] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  72.2901649] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  72.3042303] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  72.3112636] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  72.3112636] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  72.3253283] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  72.3324478] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  72.3324478] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  72.3466870] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  72.3538061] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  72.3538061] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.3667032] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  72.3756465] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  72.3756465] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.3903189] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  72.3971782] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  72.3971782] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  72.4112434] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  72.4182759] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  72.4182759] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  72.4323416] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  72.4394608] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  72.4394608] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  72.4537001] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  72.4608193] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  72.4608193] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.4737172] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  72.4826781] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  72.4826781] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.4973504] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  72.5042094] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  72.5042094] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  72.5182746] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  72.5253074] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  72.5253074] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  72.5393728] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  72.5464924] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  72.5464924] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  72.5607313] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  72.5678510] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  72.5678510] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.5807336] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  72.5896760] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  72.5896760] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.6043492] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  72.6112078] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  72.6112078] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  72.6252735] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  72.6323060] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  72.6323060] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  72.6463715] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  72.6534909] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  72.6534909] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  72.6677302] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  72.6748495] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  72.6748495] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.6877458] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  72.6966889] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  72.6966889] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.7113616] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  72.7182209] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  72.7182209] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  72.7322862] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  72.7393188] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  72.7393188] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  72.7533845] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  72.7605035] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  72.7605035] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  72.7747432] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  72.7818622] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  72.7818622] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.7947598] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  72.8037027] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  72.8037027] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.8183757] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  72.8252346] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  72.8252346] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  72.8393001] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  72.8463328] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  72.8463328] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  72.8603983] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  72.8675176] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  72.8675176] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  72.8817571] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  72.8888760] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  72.8888760] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  72.9017748] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  72.9107176] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  72.9107176] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  72.9253909] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  72.9322498] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  72.9322498] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  72.9463150] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  72.9533478] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  72.9533478] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  72.9674132] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  72.9745328] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  72.9745328] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  72.9887717] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  72.9958911] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  72.9958911] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.0087890] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  73.0177323] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  73.0177323] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.0324051] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  73.0392641] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  73.0392641] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  73.0533295] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  73.0603623] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  73.0603623] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  73.0744276] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  73.0815469] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  73.0815469] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  73.0957863] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  73.1029056] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  73.1029056] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.1158042] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  73.1250203] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  73.1250203] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.1396926] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  73.1465511] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  73.1465511] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  73.1606164] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  73.1676489] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  73.1676489] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  73.1817144] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  73.1888347] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  73.1888347] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  73.2030731] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  73.2101927] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  73.2101927] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.2228281] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  73.2317696] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  73.2317696] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.2464421] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  73.2533012] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  73.2533012] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  73.2673665] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  73.2743990] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  73.2743990] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  73.2884646] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  73.2955847] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  73.2955847] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  73.3098231] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  73.3169426] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  73.3169426] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.3298320] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  73.3387749] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  73.3387749] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.3534479] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  73.3603069] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  73.3603069] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  73.3743721] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  73.3814047] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  73.3814047] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  73.3954703] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  73.4025896] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  73.4025896] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  73.4168289] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  73.4239484] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  73.4239484] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.4368464] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  73.4457891] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  73.4457891] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.4604622] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  73.4673214] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  73.4673214] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  73.4813866] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  73.4884192] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  73.4884192] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  73.5024849] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  73.5096041] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  73.5096041] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  73.5238435] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  73.5309625] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  73.5309625] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.5438602] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  73.5528033] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  73.5528033] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.5674761] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  73.5743353] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  73.5743353] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  73.5884005] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  73.5954332] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  73.5954332] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  73.6094987] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  73.6166182] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  73.6166182] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  73.6308571] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  73.6379766] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  73.6379766] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.6508764] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  73.6598196] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  73.6598196] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.6744922] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  73.6813513] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  73.6813513] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  73.6954165] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  73.7024491] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  73.7024491] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  73.7165148] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  73.7236339] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  73.7236339] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  73.7378735] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  73.7449925] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  73.7449925] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.7578883] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  73.7668622] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  73.7668622] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.7815342] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  73.7883938] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  73.7883938] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  73.8024586] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  73.8094911] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  73.8094911] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  73.8235570] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  73.8306763] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  73.8306763] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  73.8449153] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  73.8520347] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  73.8520347] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.8649100] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  73.8738518] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  73.8738518] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.8885259] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  73.8953840] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  73.8953840] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  73.9094492] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  73.9164818] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  73.9164818] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  73.9305472] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  73.9376669] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  73.9376669] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  73.9519060] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  73.9590254] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  73.9590254] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  73.9719173] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  73.9808608] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  73.9808608] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  73.9955331] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  74.0023923] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  74.0023923] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  74.0164577] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  74.0234903] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  74.0234903] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  74.0375563] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  74.0446753] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  74.0446753] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  74.0589145] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  74.0660337] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  74.0660337] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.0789306] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  74.0878737] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  74.0878737] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.1025466] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  74.1094055] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  74.1094055] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  74.1234711] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  74.1305038] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  74.1305038] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  74.1445691] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  74.1516884] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  74.1516884] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  74.1659281] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  74.1730469] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  74.1730469] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.1859480] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  74.1948907] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  74.1948907] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.2095635] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  74.2164228] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  74.2164228] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  74.2304888] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  74.2375210] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  74.2375210] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  74.2515862] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  74.2587057] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  74.2587057] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  74.2729449] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  74.2800644] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  74.2800644] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.2929624] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  74.3019054] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  74.3019054] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.3165782] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  74.3234372] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  74.3234372] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  74.3375025] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  74.3445350] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  74.3445350] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  74.3586007] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  74.3657198] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  74.3657198] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  74.3799595] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  74.3870786] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  74.3870786] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.3999744] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  74.4089501] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  74.4089501] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.4236220] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  74.4304810] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  74.4304810] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  74.4445465] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  74.4515789] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  74.4515789] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  74.4656445] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  74.4727638] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  74.4727638] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  74.4870031] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  74.4941224] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  74.4941224] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.5069888] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  74.5159318] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  74.5159318] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.5306047] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  74.5374639] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  74.5374639] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  74.5515290] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  74.5585618] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  74.5585618] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  74.5726276] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  74.5797465] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  74.5797465] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  74.5939861] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  74.6011049] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  74.6011049] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.6140028] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  74.6229459] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  74.6229459] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.6376185] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  74.6444778] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  74.6444778] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  74.6585429] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  74.6655760] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  74.6655760] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  74.6796413] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  74.6867604] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  74.6867604] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  74.7009999] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  74.7081191] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  74.7081191] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.7210182] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  74.7299613] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  74.7299613] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.7446341] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  74.7514932] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  74.7514932] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  74.7655587] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  74.7725912] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  74.7725912] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  74.7866567] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  74.7937762] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  74.7937762] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  74.8080152] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  74.8151347] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  74.8151347] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.8280310] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  74.8369740] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  74.8369740] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.8516469] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  74.8585063] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  74.8585063] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  74.8725714] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  74.8796039] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  74.8796039] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  74.8936697] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  74.9007887] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  74.9007887] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  74.9150282] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  74.9221475] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  74.9221475] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  74.9350460] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  74.9439891] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  74.9439891] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  74.9586621] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  74.9655211] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  74.9655211] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  74.9795865] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  74.9866190] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  74.9866190] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  75.0006847] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  75.0078036] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  75.0078036] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  75.0220433] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  75.0291624] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  75.0291624] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.0420588] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  75.0510137] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  75.0510137] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.0656866] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  75.0725451] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  75.0725451] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  75.0866106] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  75.0936431] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  75.0936431] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  75.1077085] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  75.1148281] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  75.1148281] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  75.1290672] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  75.1361870] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  75.1361870] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.1490737] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  75.1580166] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  75.1580166] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.1726898] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  75.1795487] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  75.1795487] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  75.1936139] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  75.2006466] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  75.2006466] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  75.2147124] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  75.2218314] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  75.2218314] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  75.2360715] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  75.2431901] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  75.2431901] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.2560905] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  75.2650335] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  75.2650335] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.2797062] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  75.2865653] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  75.2865653] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  75.3006307] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  75.3076634] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  75.3076634] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  75.3217286] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  75.3288482] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  75.3288482] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  75.3430876] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  75.3502071] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  75.3502071] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.3631038] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  75.3720467] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  75.3720467] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.3867198] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  75.3935787] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  75.3935787] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  75.4076442] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  75.4146766] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  75.4146766] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  75.4287422] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  75.4358615] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  75.4358615] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  75.4501007] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  75.4572198] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  75.4572198] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.4701171] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  75.4790597] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  75.4790597] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.4937331] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  75.5005920] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  75.5005920] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  75.5146574] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  75.5216898] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  75.5216898] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  75.5357554] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  75.5428748] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  75.5428748] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  75.5571140] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  75.5642337] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  75.5642337] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.5771314] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  75.5860744] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  75.5860744] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.6007474] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  75.6076064] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  75.6076064] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  75.6216716] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  75.6287044] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  75.6287044] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  75.6427699] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  75.6498892] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  75.6498892] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  75.6641288] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  75.6712476] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  75.6712476] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.6841452] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  75.6931032] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  75.6931032] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.7077750] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  75.7146340] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  75.7146340] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  75.7286993] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  75.7357317] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  75.7357317] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  75.7497973] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  75.7569167] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  75.7569167] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  75.7711558] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  75.7782754] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  75.7782754] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.7911619] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  75.8001044] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  75.8001044] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.8147775] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  75.8216363] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  75.8216363] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  75.8357020] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  75.8427342] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  75.8427342] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  75.8568000] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  75.8639194] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  75.8639194] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  75.8781585] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  75.8852780] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  75.8852780] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  75.8981741] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  75.9071173] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  75.9071173] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  75.9217901] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  75.9286491] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  75.9286491] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  75.9427146] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  75.9497473] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  75.9497473] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  75.9638127] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  75.9709319] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  75.9709319] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  75.9851716] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  75.9922906] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  75.9922906] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.0051880] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  76.0141310] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  76.0141310] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.0288039] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  76.0356631] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  76.0356631] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  76.0497285] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  76.0567609] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  76.0567609] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  76.0708267] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  76.0779457] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  76.0779457] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  76.0921854] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  76.0993042] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  76.0993042] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.1122015] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  76.1211444] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  76.1211444] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.1358175] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  76.1426765] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  76.1426765] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  76.1567418] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  76.1637743] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  76.1637743] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  76.1778397] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  76.1849590] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  76.1849590] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  76.1991983] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  76.2063176] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  76.2063176] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.2192162] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  76.2281592] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  76.2281592] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.2428326] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  76.2496913] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  76.2496913] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  76.2637567] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  76.2707892] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  76.2707892] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  76.2848550] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  76.2919738] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  76.2919738] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  76.3062135] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  76.3133329] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  76.3133329] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.3262325] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  76.3351856] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  76.3351856] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.3498582] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  76.3567172] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  76.3567172] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  76.3707826] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  76.3778152] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  76.3778152] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  76.3918806] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  76.3989999] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  76.3989999] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  76.4132390] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  76.4203588] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  76.4203588] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.4332470] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  76.4421899] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  76.4421899] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.4568626] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  76.4637217] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  76.4637217] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  76.4777872] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  76.4848198] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  76.4848198] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  76.4988854] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  76.5060046] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  76.5060046] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  76.5202439] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  76.5273632] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  76.5273632] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.5402595] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  76.5492025] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  76.5492025] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.5638756] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  76.5707348] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  76.5707348] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  76.5848001] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  76.5918325] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  76.5918325] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  76.6058981] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  76.6130177] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  76.6130177] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  76.6272566] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  76.6343761] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  76.6343761] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.6472741] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  76.6562171] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  76.6562171] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.6708900] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  76.6777491] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  76.6777491] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  76.6918141] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  76.6988469] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  76.6988469] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  76.7129125] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  76.7200318] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  76.7200318] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  76.7342710] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  76.7413902] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  76.7413902] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.7542881] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  76.7632309] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  76.7632309] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.7779039] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  76.7847629] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  76.7847629] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  76.7988281] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  76.8058607] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  76.8058607] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  76.8199264] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  76.8270457] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  76.8270457] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  76.8412850] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  76.8484041] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  76.8484041] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.8613034] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  76.8702465] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  76.8702465] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.8849196] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  76.8917783] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  76.8917783] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  76.9058438] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  76.9128763] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  76.9128763] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  76.9269417] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  76.9340611] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  76.9340611] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  76.9483003] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  76.9554200] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  76.9554200] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  76.9683167] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  76.9775334] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  76.9775334] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  76.9922057] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  76.9990646] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  76.9990646] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  77.0131301] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  77.0201626] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  77.0201626] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  77.0342284] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  77.0413475] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  77.0413475] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  77.0555869] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  77.0627064] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  77.0627064] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.0753356] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  77.0842781] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  77.0842781] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.0989509] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  77.1058102] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  77.1058102] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  77.1198753] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  77.1269078] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  77.1269078] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  77.1409733] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  77.1480926] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  77.1480926] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  77.1623321] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  77.1694513] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  77.1694513] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.1823458] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  77.1912887] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  77.1912887] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.2059615] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  77.2128207] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  77.2128207] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  77.2268861] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  77.2339184] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  77.2339184] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  77.2479839] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  77.2551034] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  77.2551034] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  77.2693425] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  77.2764619] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  77.2764619] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.2893592] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  77.2983024] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  77.2983024] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.3129755] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  77.3198344] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  77.3198344] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  77.3338999] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  77.3409326] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  77.3409326] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  77.3549979] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  77.3621171] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  77.3621171] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  77.3763569] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  77.3834759] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  77.3834759] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.3963767] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  77.4053197] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  77.4053197] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.4199928] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  77.4268515] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  77.4268515] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  77.4409169] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  77.4479495] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  77.4479495] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  77.4620149] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  77.4691346] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  77.4691346] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  77.4833737] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  77.4904929] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  77.4904929] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.5033894] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  77.5123328] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  77.5123328] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.5270054] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  77.5338642] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  77.5338642] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  77.5479297] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  77.5549623] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  77.5549623] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  77.5690279] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  77.5761472] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  77.5761472] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  77.5903864] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  77.5975055] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  77.5975055] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.6104020] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  77.6193617] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  77.6193617] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.6340325] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  77.6408914] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  77.6408914] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  77.6549574] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  77.6619891] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  77.6619891] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  77.6760550] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  77.6831741] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  77.6831741] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  77.6974134] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  77.7045327] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  77.7045327] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.7174256] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  77.7263658] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  77.7263658] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.7410386] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  77.7478978] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  77.7478978] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  77.7619630] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  77.7689954] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  77.7689954] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  77.7830612] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  77.7901807] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  77.7901807] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  77.8044197] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  77.8115393] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  77.8115393] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.8244310] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  77.8333741] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  77.8333741] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.8480468] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  77.8549063] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  77.8549063] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  77.8689716] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  77.8760039] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  77.8760039] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  77.8900700] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  77.8971888] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  77.8971888] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  77.9114280] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  77.9185476] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  77.9185476] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  77.9314466] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  77.9403896] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  77.9403896] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  77.9550625] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  77.9619215] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  77.9619215] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  77.9759873] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  77.9830196] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  77.9830196] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  77.9970849] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  78.0042044] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  78.0042044] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  78.0184436] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  78.0255627] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  78.0255627] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.0384588] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  78.0474017] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  78.0474017] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.0620749] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  78.0689339] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  78.0689339] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  78.0829991] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  78.0900316] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  78.0900316] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  78.1040973] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  78.1112165] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  78.1112165] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  78.1254559] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  78.1325753] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  78.1325753] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.1454731] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  78.1544163] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  78.1544163] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.1690890] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  78.1759484] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  78.1759484] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  78.1900136] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  78.1970462] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  78.1970462] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  78.2111115] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  78.2182309] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  78.2182309] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  78.2324707] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  78.2395895] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  78.2395895] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.2524877] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  78.2614564] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  78.2614564] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.2761279] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  78.2829871] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  78.2829871] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  78.2970530] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  78.3040848] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  78.3040848] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  78.3181506] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  78.3252700] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  78.3252700] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  78.3395090] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  78.3466285] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  78.3466285] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.3595020] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  78.3684448] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  78.3684448] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.3831182] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  78.3899772] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  78.3899772] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  78.4040424] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  78.4110751] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  78.4110751] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  78.4251407] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  78.4322599] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  78.4322599] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  78.4464992] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  78.4536184] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  78.4536184] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.4665187] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  78.4754620] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  78.4754620] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.4901346] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  78.4969935] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  78.4969935] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  78.5110589] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  78.5180916] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  78.5180916] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  78.5321570] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  78.5392763] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  78.5392763] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  78.5535158] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  78.5606350] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  78.5606350] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.5735324] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  78.5824752] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  78.5824752] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.5971479] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  78.6040070] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  78.6040070] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  78.6180724] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  78.6251051] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  78.6251051] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  78.6391704] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  78.6462896] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  78.6462896] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  78.6605291] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  78.6676483] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  78.6676483] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.6805451] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  78.6894884] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  78.6894884] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.7041611] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  78.7110204] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  78.7110204] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  78.7250859] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  78.7321182] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  78.7321182] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  78.7461838] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  78.7533032] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  78.7533032] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  78.7675425] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  78.7746616] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  78.7746616] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.7875592] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  78.7965022] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  78.7965022] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.8111751] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  78.8180343] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  78.8180343] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  78.8320994] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  78.8391321] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  78.8391321] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  78.8531977] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  78.8603168] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  78.8603168] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  78.8745562] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  78.8816754] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  78.8816754] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  78.8945737] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  78.9035289] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  78.9035289] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  78.9182015] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  78.9250604] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  78.9250604] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  78.9391260] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  78.9461585] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  78.9461585] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  78.9602238] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  78.9673435] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  78.9673435] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  78.9815826] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  78.9887020] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  78.9887020] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.0015891] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  79.0105321] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  79.0105321] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.0252053] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  79.0320641] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  79.0320641] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  79.0461295] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  79.0531621] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  79.0531621] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  79.0672276] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  79.0743469] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  79.0743469] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  79.0885862] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  79.0957053] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  79.0957053] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.1086018] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  79.1175452] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  79.1175452] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.1322178] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  79.1390771] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  79.1390771] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  79.1531423] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  79.1601749] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  79.1601749] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  79.1742404] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  79.1813598] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  79.1813598] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  79.1955990] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  79.2027183] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  79.2027183] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.2156157] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  79.2245595] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  79.2245595] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.2392319] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  79.2460906] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  79.2460906] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  79.2601560] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  79.2671887] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  79.2671887] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  79.2812543] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  79.2883736] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  79.2883736] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  79.3026130] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  79.3097322] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  79.3097322] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.3226307] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  79.3315736] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  79.3315736] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.3462467] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  79.3531058] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  79.3531058] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  79.3671710] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  79.3742038] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  79.3742038] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  79.3882691] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  79.3953886] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  79.3953886] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  79.4096277] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  79.4167470] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  79.4167470] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.4296449] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  79.4385876] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  79.4385876] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.4532608] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  79.4601195] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  79.4601195] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  79.4741850] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  79.4812178] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  79.4812178] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  79.4952832] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  79.5024022] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  79.5024022] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  79.5166419] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  79.5237612] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  79.5237612] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.5366608] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  79.5456190] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  79.5456190] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.5602922] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  79.5671509] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  79.5671509] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  79.5812163] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  79.5882488] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  79.5882488] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  79.6023144] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  79.6094339] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  79.6094339] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  79.6236728] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  79.6307922] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  79.6307922] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.6436748] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  79.6526176] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  79.6526176] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.6672906] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  79.6741495] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  79.6741495] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  79.6882150] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  79.6952475] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  79.6952475] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  79.7093132] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  79.7164323] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  79.7164323] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  79.7306716] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  79.7377908] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  79.7377908] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.7506878] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  79.7596308] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  79.7596308] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.7743039] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  79.7811630] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  79.7811630] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  79.7952283] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  79.8022604] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  79.8022604] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  79.8163265] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  79.8234457] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  79.8234457] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  79.8376848] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  79.8448043] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  79.8448043] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.8577016] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  79.8666448] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  79.8666448] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.8813177] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  79.8881771] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  79.8881771] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  79.9022421] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  79.9092747] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  79.9092747] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  79.9233403] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  79.9304596] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  79.9304596] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  79.9446987] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  79.9518178] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  79.9518178] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  79.9647163] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  79.9736590] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  79.9736590] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  79.9883320] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  79.9951912] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  79.9951912] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  80.0092564] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  80.0162892] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  80.0162892] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  80.0303547] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  80.0374738] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  80.0374738] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  80.0517134] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  80.0588324] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  80.0588324] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.0717305] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  80.0806737] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  80.0806737] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.0953466] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  80.1022054] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  80.1022054] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  80.1162710] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  80.1233036] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  80.1233036] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  80.1373692] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  80.1444884] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  80.1444884] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  80.1587277] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  80.1658470] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  80.1658470] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.1787445] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  80.1876950] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  80.1876950] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.2023675] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  80.2092265] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  80.2092265] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  80.2232929] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  80.2303244] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  80.2303244] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  80.2443900] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  80.2515096] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  80.2515096] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  80.2657485] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  80.2728682] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  80.2728682] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.2857592] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  80.2947021] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  80.2947021] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.3093748] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  80.3162341] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  80.3162341] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  80.3302991] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  80.3373319] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  80.3373319] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  80.3513974] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  80.3585165] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  80.3585165] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  80.3727561] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  80.3798753] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  80.3798753] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.3927728] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  80.4017158] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  80.4017158] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.4163890] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  80.4232481] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  80.4232481] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  80.4373132] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  80.4443457] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  80.4443457] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  80.4584112] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  80.4655307] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  80.4655307] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  80.4797700] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  80.4868891] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  80.4868891] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.4997877] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  80.5087304] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  80.5087304] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.5234046] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  80.5302628] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  80.5302628] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  80.5443281] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  80.5513606] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  80.5513606] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  80.5654264] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  80.5725453] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  80.5725453] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  80.5867850] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  80.5939042] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  80.5939042] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.6068033] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  80.6157462] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  80.6157462] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.6304191] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  80.6372784] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  80.6372784] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  80.6513439] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  80.6583762] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  80.6583762] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  80.6724416] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  80.6795611] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  80.6795611] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  80.6938002] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  80.7009195] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  80.7009195] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.7138173] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  80.7227603] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  80.7227603] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.7374330] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  80.7442920] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  80.7442920] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  80.7583575] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  80.7653900] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  80.7653900] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  80.7794556] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  80.7865748] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  80.7865748] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  80.8008140] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  80.8079336] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  80.8079336] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.8208302] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  80.8300436] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  80.8300436] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.8447150] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  80.8515739] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  80.8515739] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  80.8656394] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  80.8726717] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  80.8726717] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  80.8867377] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  80.8938571] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  80.8938571] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  80.9080961] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  80.9152156] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  80.9152156] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  80.9278449] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  80.9367876] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  80.9367876] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  80.9514608] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  80.9583199] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  80.9583199] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  80.9723851] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  80.9794187] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  80.9794187] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  80.9934834] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  81.0006027] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  81.0006027] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  81.0148423] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  81.0219610] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  81.0219610] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.0348578] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  81.0438008] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  81.0438008] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.0584738] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  81.0653327] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  81.0653327] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  81.0793981] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  81.0864307] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  81.0864307] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  81.1004961] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  81.1076154] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  81.1076154] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  81.1218546] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  81.1289740] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  81.1289740] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.1418730] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  81.1508161] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  81.1508161] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.1654891] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  81.1723480] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  81.1723480] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  81.1864138] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  81.1934463] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  81.1934463] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  81.2075115] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  81.2146310] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  81.2146310] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  81.2288707] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  81.2359897] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  81.2359897] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.2488875] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  81.2578305] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  81.2578305] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.2725035] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  81.2793627] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  81.2793627] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  81.2934279] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  81.3004606] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  81.3004606] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  81.3145263] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  81.3216454] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  81.3216454] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  81.3358848] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  81.3430039] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  81.3430039] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.3559015] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  81.3648444] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  81.3648444] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.3795174] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  81.3863764] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  81.3863764] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  81.4004420] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  81.4074745] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  81.4074745] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  81.4215401] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  81.4286591] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  81.4286591] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  81.4428985] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  81.4500181] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  81.4500181] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.4629159] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  81.4721241] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  81.4721241] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.4867963] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  81.4936552] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  81.4936552] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  81.5077204] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  81.5147532] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  81.5147532] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  81.5288186] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  81.5359381] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  81.5359381] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  81.5501772] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  81.5572965] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  81.5572965] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.5699378] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  81.5788793] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  81.5788793] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.5935522] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  81.6004112] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  81.6004112] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  81.6144765] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  81.6215094] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  81.6215094] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  81.6355748] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  81.6426941] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  81.6426941] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  81.6569335] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  81.6640528] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  81.6640528] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.6769481] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  81.6858911] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  81.6858911] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.7005638] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  81.7074233] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  81.7074233] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  81.7214885] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  81.7285210] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  81.7285210] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  81.7425863] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  81.7497060] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  81.7497060] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  81.7639451] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  81.7710644] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  81.7710644] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.7839600] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  81.7929029] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  81.7929029] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.8075757] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  81.8144347] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  81.8144347] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  81.8285001] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  81.8355328] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  81.8355328] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  81.8495982] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  81.8567174] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  81.8567174] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  81.8709566] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  81.8780760] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  81.8780760] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.8909732] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  81.8999159] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  81.8999159] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  81.9145891] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  81.9214479] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  81.9214479] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  81.9355136] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  81.9425459] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  81.9425459] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  81.9566116] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  81.9637310] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  81.9637310] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  81.9779709] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  81.9850894] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  81.9850894] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  81.9979874] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  82.0069306] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  82.0069306] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.0216037] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  82.0284625] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  82.0284625] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  82.0425278] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  82.0495606] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  82.0495606] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  82.0636260] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  82.0707452] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  82.0707452] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  82.0849846] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  82.0921036] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  82.0921036] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.1050008] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  82.1139674] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  82.1139674] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.1286399] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  82.1354986] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  82.1354986] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  82.1495640] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  82.1565964] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  82.1565964] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  82.1706620] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  82.1777817] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  82.1777817] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  82.1920206] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  82.1991398] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  82.1991398] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.2120175] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  82.2209603] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  82.2209603] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.2356337] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  82.2424924] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  82.2424924] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  82.2565578] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  82.2635904] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  82.2635904] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  82.2776559] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  82.2847750] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  82.2847750] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  82.2990146] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  82.3061338] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  82.3061338] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.3190304] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  82.3279739] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  82.3279739] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.3426467] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  82.3495057] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  82.3495057] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  82.3635711] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  82.3706037] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  82.3706037] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  82.3846692] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  82.3917885] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  82.3917885] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  82.4060277] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  82.4131471] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  82.4131471] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.4260441] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  82.4349871] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  82.4349871] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.4496599] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  82.4565191] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  82.4565191] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  82.4705844] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  82.4776171] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  82.4776171] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  82.4916826] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  82.4988019] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  82.4988019] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  82.5130413] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  82.5201604] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  82.5201604] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.5330586] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  82.5420013] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  82.5420013] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.5566745] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  82.5635336] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  82.5635336] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  82.5775988] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  82.5846315] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  82.5846315] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  82.5986968] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  82.6058161] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  82.6058161] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  82.6200556] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  82.6271748] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  82.6271748] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.6400728] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  82.6490158] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  82.6490158] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.6636889] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  82.6705478] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  82.6705478] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  82.6846133] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  82.6916459] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  82.6916459] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  82.7057114] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  82.7128306] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  82.7128306] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  82.7270699] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  82.7341894] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  82.7341894] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.7470886] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  82.7560414] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  82.7560414] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.7707141] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  82.7775731] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  82.7775731] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  82.7916385] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  82.7986711] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  82.7986711] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  82.8127363] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  82.8198560] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  82.8198560] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  82.8340951] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  82.8412147] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  82.8412147] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.8541035] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  82.8630466] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  82.8630466] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.8777192] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  82.8845786] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  82.8845786] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  82.8986440] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  82.9056763] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  82.9056763] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  82.9197417] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  82.9268611] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  82.9268611] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  82.9411004] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  82.9482198] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  82.9482198] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  82.9611156] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  82.9700586] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  82.9700586] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  82.9847316] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  82.9915907] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  82.9915907] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  83.0056562] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  83.0126884] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  83.0126884] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  83.0267544] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  83.0338732] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  83.0338732] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  83.0481128] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  83.0552321] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  83.0552321] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.0681289] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  83.0770718] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  83.0770718] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.0917448] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  83.0986041] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  83.0986041] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  83.1126694] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  83.1197021] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  83.1197021] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  83.1337675] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  83.1408867] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  83.1408867] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  83.1551261] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  83.1622452] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  83.1622452] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.1751440] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  83.1840869] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  83.1840869] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.1987599] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  83.2056191] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  83.2056191] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  83.2196844] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  83.2267178] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  83.2267178] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  83.2407823] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  83.2479015] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  83.2479015] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  83.2621411] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  83.2692602] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  83.2692602] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.2821592] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  83.2911021] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  83.2911021] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.3057750] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  83.3126338] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  83.3126338] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  83.3266995] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  83.3337319] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  83.3337319] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  83.3477974] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  83.3549166] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  83.3549166] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  83.3691560] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  83.3762751] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  83.3762751] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.3891720] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  83.3981285] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  83.3981285] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.4128010] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  83.4196603] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  83.4196603] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  83.4337257] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  83.4407580] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  83.4407580] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  83.4548238] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  83.4619432] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  83.4619432] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  83.4761826] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  83.4833018] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  83.4833018] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.4961872] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  83.5051302] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  83.5051302] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.5198029] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  83.5266622] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  83.5266622] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  83.5407274] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  83.5477601] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  83.5477601] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  83.5618256] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  83.5689448] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  83.5689448] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  83.5831842] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  83.5903035] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  83.5903035] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.6032010] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  83.6121442] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  83.6121442] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.6268169] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  83.6336763] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  83.6336763] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  83.6477415] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  83.6547740] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  83.6547740] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  83.6688396] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  83.6759589] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  83.6759589] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  83.6901982] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  83.6973174] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  83.6973174] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.7102152] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  83.7191584] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  83.7191584] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.7338315] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  83.7406903] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  83.7406903] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  83.7547560] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  83.7617884] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  83.7617884] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  83.7758540] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  83.7829734] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  83.7829734] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  83.7972126] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  83.8043317] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  83.8043317] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.8172316] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  83.8261747] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  83.8261747] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.8408474] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  83.8477066] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  83.8477066] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  83.8617718] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  83.8688044] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  83.8688044] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  83.8828698] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  83.8899892] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  83.8899892] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  83.9042287] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  83.9113479] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  83.9113479] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  83.9242456] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  83.9331886] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  83.9331886] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  83.9478614] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  83.9547205] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  83.9547205] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  83.9687857] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  83.9758186] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  83.9758186] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  83.9898839] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  83.9970032] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  83.9970032] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  84.0112425] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  84.0183616] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  84.0183616] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.0312577] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  84.0402103] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  84.0402103] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.0548829] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  84.0617417] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  84.0617417] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  84.0758073] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  84.0828395] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  84.0828395] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  84.0969053] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  84.1040249] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  84.1040249] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  84.1182639] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  84.1253833] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  84.1253833] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.1382727] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  84.1472155] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  84.1472155] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.1618887] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  84.1687475] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  84.1687475] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  84.1828130] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  84.1898456] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  84.1898456] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  84.2039111] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  84.2110305] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  84.2110305] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  84.2252701] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  84.2323890] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  84.2323890] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.2452870] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  84.2542300] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  84.2542300] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.2689030] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  84.2757619] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  84.2757619] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  84.2898273] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  84.2968601] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  84.2968601] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  84.3109256] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  84.3180448] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  84.3180448] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  84.3322839] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  84.3394034] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  84.3394034] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.3523020] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  84.3612449] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  84.3612449] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.3759179] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  84.3827769] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  84.3827769] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  84.3968425] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  84.4038751] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  84.4038751] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  84.4179404] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  84.4250596] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  84.4250596] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  84.4392992] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  84.4464181] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  84.4464181] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.4593153] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  84.4682583] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  84.4682583] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.4829313] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  84.4897904] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  84.4897904] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  84.5038557] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  84.5108882] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  84.5108882] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  84.5249539] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  84.5320730] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  84.5320730] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  84.5463127] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  84.5534317] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  84.5534317] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.5663300] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  84.5752728] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  84.5752728] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.5899456] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  84.5968047] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  84.5968047] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  84.6108701] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  84.6179028] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  84.6179028] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  84.6319682] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  84.6390875] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  84.6390875] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  84.6533269] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  84.6604461] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  84.6604461] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.6733444] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  84.6825602] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  84.6825602] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.6972326] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  84.7040915] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  84.7040915] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  84.7181569] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  84.7251895] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  84.7251895] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  84.7392551] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  84.7463744] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  84.7463744] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  84.7606135] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  84.7677330] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  84.7677330] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.7803586] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  84.7893016] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  84.7893016] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.8039746] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  84.8108336] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  84.8108336] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  84.8248990] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  84.8319317] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  84.8319317] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  84.8459972] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  84.8531163] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  84.8531163] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  84.8673559] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  84.8744749] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  84.8744749] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.8873746] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  84.8963173] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  84.8963173] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  84.9109899] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  84.9178493] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  84.9178493] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  84.9319145] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  84.9389472] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  84.9389472] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  84.9530126] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  84.9601319] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  84.9601319] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  84.9743713] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  84.9814907] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  84.9814907] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  84.9943882] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  85.0033312] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  85.0033312] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.0180041] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  85.0248630] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  85.0248630] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  85.0389282] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  85.0459611] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  85.0459611] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  85.0600265] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  85.0671456] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  85.0671456] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  85.0813851] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  85.0885043] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  85.0885043] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.1014001] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  85.1103432] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  85.1103432] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.1250161] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  85.1318752] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  85.1318752] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  85.1459408] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  85.1529731] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  85.1529731] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  85.1670387] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  85.1741581] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  85.1741581] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  85.1883973] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  85.1955164] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  85.1955164] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.2084150] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  85.2173582] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  85.2173582] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.2320315] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  85.2388901] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  85.2388901] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  85.2529554] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  85.2599883] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  85.2599883] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  85.2740537] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  85.2811729] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  85.2811729] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  85.2954141] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  85.3025316] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  85.3025316] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.3154297] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  85.3246369] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  85.3246369] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.3393091] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  85.3461683] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  85.3461683] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  85.3602336] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  85.3672661] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  85.3672661] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  85.3813320] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  85.3884511] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  85.3884511] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  85.4026903] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  85.4098096] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  85.4098096] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.4224515] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  85.4313941] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  85.4313941] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.4460671] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  85.4529260] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  85.4529260] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  85.4669914] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  85.4740241] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  85.4740241] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  85.4880895] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  85.4952089] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  85.4952089] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  85.5094481] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  85.5165676] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  85.5165676] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.5294578] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  85.5384010] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  85.5384010] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.5530739] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  85.5599332] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  85.5599332] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  85.5739985] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  85.5810309] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  85.5810309] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  85.5950965] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  85.6022157] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  85.6022157] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  85.6164549] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  85.6235742] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  85.6235742] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.6364722] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  85.6454154] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  85.6454154] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.6600882] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  85.6669475] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  85.6669475] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  85.6810127] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  85.6880452] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  85.6880452] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  85.7021108] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  85.7092300] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  85.7092300] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  85.7234696] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  85.7305887] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  85.7305887] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.7434868] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  85.7524296] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  85.7524296] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.7671025] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  85.7739617] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  85.7739617] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  85.7880270] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  85.7950596] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  85.7950596] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  85.8091252] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  85.8162445] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  85.8162445] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  85.8304840] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  85.8376029] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  85.8376029] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.8505005] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  85.8594438] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  85.8594438] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.8741167] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  85.8809757] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  85.8809757] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  85.8950410] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  85.9020734] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  85.9020734] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  85.9161392] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  85.9232583] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  85.9232583] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  85.9374978] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  85.9446170] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  85.9446170] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  85.9575171] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  85.9664774] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  85.9664774] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  85.9811504] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  85.9880091] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  85.9880091] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  86.0020744] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  86.0091071] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  86.0091071] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  86.0231725] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  86.0302920] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  86.0302920] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  86.0445311] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  86.0516504] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  86.0516504] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.0645344] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  86.0734759] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  86.0734759] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.0881482] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  86.0950073] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  86.0950073] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  86.1090725] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  86.1161053] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  86.1161053] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  86.1301709] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  86.1372901] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  86.1372901] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  86.1515292] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  86.1586487] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  86.1586487] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.1715443] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  86.1804877] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  86.1804877] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.1951613] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  86.2020195] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  86.2020195] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  86.2160848] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  86.2231173] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  86.2231173] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  86.2371834] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  86.2443022] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  86.2443022] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  86.2585414] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  86.2656609] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  86.2656609] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.2785578] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  86.2875009] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  86.2875009] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.3021742] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  86.3090332] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  86.3090332] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  86.3230981] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  86.3301307] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  86.3301307] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  86.3441964] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  86.3513154] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  86.3513154] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  86.3655549] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  86.3726739] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  86.3726739] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.3855722] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  86.3945151] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  86.3945151] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.4091882] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  86.4160474] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  86.4160474] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  86.4301124] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  86.4371453] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  86.4371453] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  86.4512107] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  86.4583299] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  86.4583299] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  86.4725694] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  86.4796886] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  86.4796886] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.4925871] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  86.5015302] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  86.5015302] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.5162028] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  86.5230623] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  86.5230623] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  86.5371276] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  86.5441602] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  86.5441602] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  86.5582258] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  86.5653448] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  86.5653448] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  86.5795844] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  86.5867034] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  86.5867034] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.5996001] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  86.6085590] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  86.6085590] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.6232315] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  86.6300907] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  86.6300907] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  86.6441560] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  86.6511886] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  86.6511886] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  86.6652543] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  86.6723735] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  86.6723735] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  86.6866129] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  86.6937324] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  86.6937324] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.7066149] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  86.7155581] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  86.7155581] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.7302307] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  86.7370897] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  86.7370897] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  86.7511551] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  86.7581879] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  86.7581879] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  86.7722535] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  86.7793728] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  86.7793728] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  86.7936122] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  86.8007312] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  86.8007312] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.8136296] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  86.8225724] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  86.8225724] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.8372454] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  86.8441042] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  86.8441042] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  86.8581696] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  86.8652022] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  86.8652022] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  86.8792678] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  86.8863874] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  86.8863874] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  86.9006265] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  86.9077456] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  86.9077456] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  86.9206430] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  86.9295861] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  86.9295861] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  86.9442591] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  86.9511182] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  86.9511182] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  86.9651835] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  86.9722163] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  86.9722163] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  86.9862819] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  86.9934010] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  86.9934010] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  87.0076404] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  87.0147596] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  87.0147596] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.0276590] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  87.0366017] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  87.0366017] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.0512747] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  87.0581336] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  87.0581336] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  87.0721990] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  87.0792317] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  87.0792317] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  87.0932972] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  87.1004165] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  87.1004165] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  87.1146559] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  87.1217752] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  87.1217752] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.1346727] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  87.1436162] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  87.1436162] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.1582884] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  87.1651476] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  87.1651476] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  87.1792131] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  87.1862457] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  87.1862457] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  87.2003112] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  87.2074302] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  87.2074302] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  87.2216696] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  87.2287891] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  87.2287891] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.2416863] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  87.2506522] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  87.2506522] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.2653250] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  87.2721839] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  87.2721839] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  87.2862492] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  87.2932815] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  87.2932815] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  87.3073475] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  87.3144666] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  87.3144666] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  87.3287059] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  87.3358253] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  87.3358253] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.3487009] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  87.3576437] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  87.3576437] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.3723169] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  87.3791760] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  87.3791760] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  87.3932410] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  87.4002740] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  87.4002740] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  87.4143392] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  87.4214589] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  87.4214589] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  87.4356982] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  87.4428172] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  87.4428172] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.4557149] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  87.4646578] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  87.4646578] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.4793305] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  87.4861899] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  87.4861899] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  87.5002551] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  87.5072877] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  87.5072877] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  87.5213533] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  87.5284726] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  87.5284726] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  87.5427118] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  87.5498312] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  87.5498312] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.5627297] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  87.5716726] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  87.5716726] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.5863458] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  87.5932049] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  87.5932049] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  87.6072703] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  87.6143034] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  87.6143034] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  87.6283682] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  87.6354874] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  87.6354874] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  87.6497267] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  87.6568459] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  87.6568459] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.6697430] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  87.6786861] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  87.6786861] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.6933588] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  87.7002180] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  87.7002180] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  87.7142835] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  87.7213160] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  87.7213160] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  87.7353815] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  87.7425008] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  87.7425008] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  87.7567402] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  87.7638594] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  87.7638594] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.7767575] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  87.7857009] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  87.7857009] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.8003734] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  87.8072326] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  87.8072326] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  87.8212977] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  87.8283302] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  87.8283302] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  87.8423958] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  87.8495154] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  87.8495154] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  87.8637546] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  87.8708738] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  87.8708738] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.8837720] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  87.8927235] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  87.8927235] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  87.9073961] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  87.9142554] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  87.9142554] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  87.9283206] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  87.9353531] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  87.9353531] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  87.9494184] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  87.9565378] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  87.9565378] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  87.9707770] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  87.9778966] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  87.9778966] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  87.9907861] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  87.9997294] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  87.9997294] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.0144025] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  88.0212613] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  88.0212613] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  88.0353268] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  88.0423593] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  88.0423593] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  88.0564250] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  88.0635441] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  88.0635441] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  88.0777834] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  88.0849029] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  88.0849029] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.0978008] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  88.1067437] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  88.1067437] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.1214166] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  88.1282756] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  88.1282756] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  88.1423410] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  88.1493739] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  88.1493739] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  88.1634392] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  88.1705584] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  88.1705584] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  88.1847981] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  88.1919172] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  88.1919172] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.2048158] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  88.2137587] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  88.2137587] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.2284316] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  88.2352903] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  88.2352903] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  88.2493556] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  88.2563882] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  88.2563882] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  88.2704537] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  88.2775727] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  88.2775727] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  88.2918123] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  88.2989316] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  88.2989316] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.3118289] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  88.3207717] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  88.3207717] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.3354451] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  88.3423039] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  88.3423039] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  88.3563697] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  88.3634019] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  88.3634019] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  88.3774676] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  88.3845871] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  88.3845871] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  88.3988261] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  88.4059458] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  88.4059458] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.4188430] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  88.4277860] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  88.4277860] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.4424588] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  88.4493182] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  88.4493182] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  88.4633831] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  88.4704158] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  88.4704158] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  88.4844815] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  88.4916007] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  88.4916007] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  88.5058401] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  88.5129590] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  88.5129590] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.5258574] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  88.5348122] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  88.5348122] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.5494848] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  88.5563439] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  88.5563439] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  88.5704091] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  88.5774416] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  88.5774416] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  88.5915072] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  88.5986266] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  88.5986266] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  88.6128659] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  88.6199854] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  88.6199854] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.6328729] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  88.6418158] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  88.6418158] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.6564890] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  88.6633479] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  88.6633479] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  88.6774133] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  88.6844459] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  88.6844459] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  88.6985113] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  88.7056306] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  88.7056306] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  88.7198701] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  88.7269892] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  88.7269892] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.7398860] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  88.7488293] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  88.7488293] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.7635021] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  88.7703613] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  88.7703613] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  88.7844265] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  88.7914589] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  88.7914589] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  88.8055247] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  88.8126439] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  88.8126439] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  88.8268835] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  88.8340025] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  88.8340025] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.8469002] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  88.8558428] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  88.8558428] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.8705160] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  88.8773751] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  88.8773751] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  88.8914405] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  88.8984731] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  88.8984731] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  88.9125386] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  88.9196579] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  88.9196579] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  88.9338974] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  88.9410165] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  88.9410165] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  88.9539145] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  88.9628574] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  88.9628574] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  88.9775303] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  88.9843897] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  88.9843897] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  88.9984546] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  89.0054875] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  89.0054875] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  89.0195532] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  89.0266723] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  89.0266723] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  89.0409117] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  89.0480309] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  89.0480309] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.0609276] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  89.0698706] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  89.0698706] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.0845439] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  89.0914028] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  89.0914028] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  89.1054682] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  89.1125009] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  89.1125009] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  89.1265664] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  89.1336857] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  89.1336857] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  89.1479249] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  89.1550442] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  89.1550442] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.1679447] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  89.1771546] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  89.1771546] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.1918269] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  89.1986858] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  89.1986858] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  89.2127511] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  89.2197836] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  89.2197836] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  89.2338496] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  89.2409686] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  89.2409686] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  89.2552080] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  89.2623274] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  89.2623274] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.2749641] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  89.2839058] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  89.2839058] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.2985794] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  89.3054375] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  89.3054375] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  89.3195030] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  89.3265357] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  89.3265357] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  89.3406011] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  89.3477206] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  89.3477206] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  89.3619597] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  89.3690790] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  89.3690790] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.3819715] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  89.3909148] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  89.3909148] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.4055875] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  89.4124467] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  89.4124467] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  89.4265122] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  89.4335444] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  89.4335444] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  89.4476104] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  89.4547295] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  89.4547295] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  89.4689688] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  89.4760883] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  89.4760883] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.4889870] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  89.4979301] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  89.4979301] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.5126031] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  89.5194622] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  89.5194622] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  89.5335274] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  89.5405600] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  89.5405600] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  89.5546257] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  89.5617450] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  89.5617450] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  89.5759846] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  89.5831032] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  89.5831032] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.5960001] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  89.6049429] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  89.6049429] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.6196158] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  89.6264750] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  89.6264750] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  89.6405403] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  89.6475728] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  89.6475728] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  89.6616383] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  89.6687580] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  89.6687580] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  89.6829971] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  89.6901163] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  89.6901163] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.7030153] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  89.7119583] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  89.7119583] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.7266315] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  89.7334903] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  89.7334903] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  89.7475559] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  89.7545886] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  89.7545886] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  89.7686538] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  89.7757732] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  89.7757732] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  89.7900125] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  89.7971317] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  89.7971317] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.8100289] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  89.8189866] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  89.8189866] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.8336590] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  89.8405174] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  89.8405174] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  89.8545826] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  89.8616152] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  89.8616152] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  89.8756808] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  89.8828003] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  89.8828003] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  89.8970397] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  89.9041590] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  89.9041590] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  89.9170495] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  89.9259920] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  89.9259920] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  89.9406649] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  89.9475243] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  89.9475243] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  89.9615895] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  89.9686217] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  89.9686217] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  89.9826872] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  89.9898067] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  89.9898067] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  90.0040464] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  90.0111652] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  90.0111652] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.0240595] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  90.0330022] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  90.0330022] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.0476751] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  90.0545344] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  90.0545344] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  90.0685996] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  90.0756322] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  90.0756322] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  90.0896978] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  90.0968171] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  90.0968171] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  90.1110562] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  90.1181755] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  90.1181755] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.1310715] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  90.1400146] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  90.1400146] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.1546875] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  90.1615463] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  90.1615463] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  90.1756117] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  90.1826445] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  90.1826445] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  90.1967101] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  90.2038293] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  90.2038293] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  90.2180688] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  90.2251885] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  90.2251885] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.2380887] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  90.2470318] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  90.2470318] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.2617046] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  90.2685638] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  90.2685638] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  90.2826288] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  90.2896617] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  90.2896617] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  90.3037270] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  90.3108468] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  90.3108468] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  90.3250856] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  90.3322051] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  90.3322051] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.3451018] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  90.3540448] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  90.3540448] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.3687172] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  90.3755764] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  90.3755764] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  90.3896417] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  90.3966742] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  90.3966742] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  90.4107400] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  90.4178590] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  90.4178590] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  90.4320985] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  90.4392177] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  90.4392177] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.4521141] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  90.4610851] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  90.4610851] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.4757577] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  90.4826163] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  90.4826163] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  90.4966818] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  90.5037142] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  90.5037142] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  90.5177799] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  90.5248996] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  90.5248996] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  90.5391386] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  90.5462578] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  90.5462578] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.5591292] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  90.5680722] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  90.5680722] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.5827452] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  90.5896042] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  90.5896042] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  90.6036697] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  90.6107020] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  90.6107020] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  90.6247677] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  90.6318869] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  90.6318869] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  90.6461265] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  90.6532453] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  90.6532453] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.6661431] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  90.6750862] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  90.6750862] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.6897588] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  90.6966180] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  90.6966180] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  90.7106833] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  90.7177160] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  90.7177160] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  90.7317815] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  90.7389006] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  90.7389006] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  90.7531401] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  90.7602592] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  90.7602592] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.7731579] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  90.7821010] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  90.7821010] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.7967739] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  90.8036327] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  90.8036327] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  90.8176985] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  90.8247311] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  90.8247311] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  90.8387965] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  90.8459156] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  90.8459156] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  90.8601553] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  90.8672745] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  90.8672745] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.8801713] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  90.8891147] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  90.8891147] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  90.9037873] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  90.9106464] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  90.9106464] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  90.9247120] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  90.9317442] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  90.9317442] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  90.9458098] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  90.9529294] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  90.9529294] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  90.9671684] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  90.9742881] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  90.9742881] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  90.9871859] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  90.9961288] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  90.9961288] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.0108018] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  91.0176608] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  91.0176608] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  91.0317261] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  91.0387587] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  91.0387587] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  91.0528243] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  91.0599435] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  91.0599435] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  91.0741829] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  91.0813021] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  91.0813021] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.0941988] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  91.1031621] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  91.1031621] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.1178349] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  91.1246939] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  91.1246939] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  91.1387590] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  91.1457915] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  91.1457915] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  91.1598570] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  91.1669766] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  91.1669766] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  91.1812156] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  91.1883351] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  91.1883351] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.2012140] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  91.2101570] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  91.2101570] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.2248305] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  91.2316894] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  91.2316894] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  91.2457545] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  91.2527870] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  91.2527870] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  91.2668525] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  91.2739717] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  91.2739717] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  91.2882112] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  91.2953306] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  91.2953306] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.3082298] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  91.3171727] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  91.3171727] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.3318454] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  91.3387045] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  91.3387045] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  91.3527699] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  91.3598026] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  91.3598026] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  91.3738679] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  91.3809873] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  91.3809873] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  91.3952267] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  91.4023458] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  91.4023458] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.4152442] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  91.4241871] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  91.4241871] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.4388601] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  91.4457190] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  91.4457190] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  91.4597845] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  91.4668171] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  91.4668171] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  91.4808826] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  91.4880017] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  91.4880017] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  91.5022412] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  91.5093604] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  91.5093604] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.5222571] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  91.5312004] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  91.5312004] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.5458734] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  91.5527322] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  91.5527322] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  91.5667977] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  91.5738300] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  91.5738300] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  91.5878958] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  91.5950151] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  91.5950151] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  91.6092544] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  91.6163737] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  91.6163737] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.6292713] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  91.6382145] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  91.6382145] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.6528872] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  91.6597463] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  91.6597463] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  91.6738113] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  91.6808441] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  91.6808441] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  91.6949097] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  91.7020289] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  91.7020289] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  91.7162683] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  91.7233873] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  91.7233873] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.7362851] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  91.7452474] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  91.7452474] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.7599200] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  91.7667792] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  91.7667792] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  91.7808445] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  91.7878769] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  91.7878769] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  91.8019425] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  91.8090621] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  91.8090621] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  91.8233010] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  91.8304204] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  91.8304204] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.8433006] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  91.8522434] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  91.8522434] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.8669165] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  91.8737754] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  91.8737754] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  91.8878409] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  91.8948737] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  91.8948737] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  91.9089395] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  91.9160597] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  91.9160597] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  91.9302978] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  91.9374170] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  91.9374170] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  91.9503143] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  91.9592575] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  91.9592575] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  91.9739302] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  91.9807897] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  91.9807897] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  91.9948549] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  92.0018874] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  92.0018874] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  92.0159531] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  92.0230723] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  92.0230723] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  92.0373116] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  92.0444310] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  92.0444310] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.0573279] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  92.0662707] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  92.0662707] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.0809440] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  92.0878028] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  92.0878028] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  92.1018682] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  92.1089008] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  92.1089008] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  92.1229663] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  92.1300855] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  92.1300855] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  92.1443252] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  92.1514440] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  92.1514440] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.1643422] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  92.1732852] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  92.1732852] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.1879581] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  92.1948174] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  92.1948174] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  92.2088825] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  92.2159153] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  92.2159153] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  92.2299812] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  92.2371001] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  92.2371001] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  92.2513394] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  92.2584586] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  92.2584586] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.2713560] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  92.2802989] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  92.2802989] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.2949721] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  92.3018315] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  92.3018315] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  92.3158966] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  92.3229291] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  92.3229291] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  92.3369948] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  92.3441136] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  92.3441136] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  92.3583534] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  92.3654724] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  92.3654724] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.3783723] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  92.3873342] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  92.3873342] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.4020061] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  92.4088648] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  92.4088648] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  92.4229304] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  92.4299631] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  92.4299631] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  92.4440283] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  92.4511479] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  92.4511479] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  92.4653873] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  92.4725064] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  92.4725064] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.4853888] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  92.4943298] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  92.4943298] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.5090025] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  92.5158617] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  92.5158617] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  92.5299270] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  92.5369596] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  92.5369596] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  92.5510251] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  92.5581441] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  92.5581441] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  92.5723836] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  92.5795029] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  92.5795029] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.5923997] dwc2_device_isoc_transfer: xfer=0x90d7fc28
[  92.6013428] dwc2_device_start: xfer=0x90d7fc28 pipe=0x90d3d340
[  92.6013428] dwc2_device_start: xfer=0x90d7fc28 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.6160162] dwc2_device_start: xfer=0x90d7fc28 frame=0 offset=0 length=192
[  92.6228749] dwc2_device_start: xfer=0x90d7fc28 frame=1 offset=192 length=192
[  92.6228749] dwc2_device_start: xfer=0x90d7fc28 frame=2 offset=384 length=192
[  92.6369403] dwc2_device_start: xfer=0x90d7fc28 frame=3 offset=576 length=192
[  92.6439728] dwc2_device_start: xfer=0x90d7fc28 frame=4 offset=768 length=192
[  92.6439728] dwc2_device_start: xfer=0x90d7fc28 frame=5 offset=960 length=192
[  92.6580384] dwc2_device_start: xfer=0x90d7fc28 frame=6 offset=1152 length=192
[  92.6651577] dwc2_device_start: xfer=0x90d7fc28 frame=7 offset=1344 length=192
[  92.6651577] dwc2_device_start: xfer=0x90d7fc28 frame=8 offset=1536 length=192
[  92.6793970] dwc2_device_start: xfer=0x90d7fc28 frame=9 offset=1728 length=192
[  92.6865161] dwc2_host_complete: xfer=0x90d7fb70 actlen=0
[  92.6865161] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.6994137] dwc2_device_isoc_transfer: xfer=0x90d7fb70
[  92.7083567] dwc2_device_start: xfer=0x90d7fb70 pipe=0x90d3d340
[  92.7083567] dwc2_device_start: xfer=0x90d7fb70 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.7230298] dwc2_device_start: xfer=0x90d7fb70 frame=0 offset=0 length=192
[  92.7298889] dwc2_device_start: xfer=0x90d7fb70 frame=1 offset=192 length=192
[  92.7298889] dwc2_device_start: xfer=0x90d7fb70 frame=2 offset=384 length=192
[  92.7439540] dwc2_device_start: xfer=0x90d7fb70 frame=3 offset=576 length=192
[  92.7509867] dwc2_device_start: xfer=0x90d7fb70 frame=4 offset=768 length=192
[  92.7509867] dwc2_device_start: xfer=0x90d7fb70 frame=5 offset=960 length=192
[  92.7650522] dwc2_device_start: xfer=0x90d7fb70 frame=6 offset=1152 length=192
[  92.7721715] dwc2_device_start: xfer=0x90d7fb70 frame=7 offset=1344 length=192
[  92.7721715] dwc2_device_start: xfer=0x90d7fb70 frame=8 offset=1536 length=192
[  92.7864110] dwc2_device_start: xfer=0x90d7fb70 frame=9 offset=1728 length=192
[  92.7935299] dwc2_host_complete: xfer=0x90d7fab8 actlen=0
[  92.7935299] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.8064283] dwc2_device_isoc_transfer: xfer=0x90d7fab8
[  92.8153711] dwc2_device_start: xfer=0x90d7fab8 pipe=0x90d3d340
[  92.8153711] dwc2_device_start: xfer=0x90d7fab8 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.8300439] dwc2_device_start: xfer=0x90d7fab8 frame=0 offset=0 length=192
[  92.8369031] dwc2_device_start: xfer=0x90d7fab8 frame=1 offset=192 length=192
[  92.8369031] dwc2_device_start: xfer=0x90d7fab8 frame=2 offset=384 length=192
[  92.8509686] dwc2_device_start: xfer=0x90d7fab8 frame=3 offset=576 length=192
[  92.8580011] dwc2_device_start: xfer=0x90d7fab8 frame=4 offset=768 length=192
[  92.8580011] dwc2_device_start: xfer=0x90d7fab8 frame=5 offset=960 length=192
[  92.8720668] dwc2_device_start: xfer=0x90d7fab8 frame=6 offset=1152 length=192
[  92.8791859] dwc2_device_start: xfer=0x90d7fab8 frame=7 offset=1344 length=192
[  92.8791859] dwc2_device_start: xfer=0x90d7fab8 frame=8 offset=1536 length=192
[  92.8934253] dwc2_device_start: xfer=0x90d7fab8 frame=9 offset=1728 length=192
[  92.9005447] dwc2_host_complete: xfer=0x90d7fa00 actlen=0
[  92.9005447] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  92.9134432] dwc2_device_isoc_transfer: xfer=0x90d7fa00
[  92.9223863] dwc2_device_start: xfer=0x90d7fa00 pipe=0x90d3d340
[  92.9223863] dwc2_device_start: xfer=0x90d7fa00 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  92.9370591] dwc2_device_start: xfer=0x90d7fa00 frame=0 offset=0 length=192
[  92.9439181] dwc2_device_start: xfer=0x90d7fa00 frame=1 offset=192 length=192
[  92.9439181] dwc2_device_start: xfer=0x90d7fa00 frame=2 offset=384 length=192
[  92.9579836] dwc2_device_start: xfer=0x90d7fa00 frame=3 offset=576 length=192
[  92.9650163] dwc2_device_start: xfer=0x90d7fa00 frame=4 offset=768 length=192
[  92.9650163] dwc2_device_start: xfer=0x90d7fa00 frame=5 offset=960 length=192
[  92.9790817] dwc2_device_start: xfer=0x90d7fa00 frame=6 offset=1152 length=192
[  92.9862007] dwc2_device_start: xfer=0x90d7fa00 frame=7 offset=1344 length=192
[  92.9862007] dwc2_device_start: xfer=0x90d7fa00 frame=8 offset=1536 length=192
[  93.0004402] dwc2_device_start: xfer=0x90d7fa00 frame=9 offset=1728 length=192
[  93.0075594] dwc2_host_complete: xfer=0x90d7f948 actlen=0
[  93.0075594] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  93.0204549] dwc2_device_isoc_transfer: xfer=0x90d7f948
[  93.0296758] dwc2_device_start: xfer=0x90d7f948 pipe=0x90d3d340
[  93.0296758] dwc2_device_start: xfer=0x90d7f948 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  93.0443481] dwc2_device_start: xfer=0x90d7f948 frame=0 offset=0 length=192
[  93.0512070] dwc2_device_start: xfer=0x90d7f948 frame=1 offset=192 length=192
[  93.0512070] dwc2_device_start: xfer=0x90d7f948 frame=2 offset=384 length=192
[  93.0652726] dwc2_device_start: xfer=0x90d7f948 frame=3 offset=576 length=192
[  93.0723053] dwc2_device_start: xfer=0x90d7f948 frame=4 offset=768 length=192
[  93.0723053] dwc2_device_start: xfer=0x90d7f948 frame=5 offset=960 length=192
[  93.0863707] dwc2_device_start: xfer=0x90d7f948 frame=6 offset=1152 length=192
[  93.0934897] dwc2_device_start: xfer=0x90d7f948 frame=7 offset=1344 length=192
[  93.0934897] dwc2_device_start: xfer=0x90d7f948 frame=8 offset=1536 length=192
[  93.1077293] dwc2_device_start: xfer=0x90d7f948 frame=9 offset=1728 length=192
[  93.1148489] dwc2_host_complete: xfer=0x90d7fce0 actlen=0
[  93.1148489] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)
[  93.1274810] dwc2_device_isoc_transfer: xfer=0x90d7fce0
[  93.1364236] dwc2_device_start: xfer=0x90d7fce0 pipe=0x90d3d340
[  93.1364236] dwc2_device_start: xfer=0x90d7fce0 nframes=10 flags=0 addr=4 endpt=1, mps=200 dir out
[  93.1510961] dwc2_device_start: xfer=0x90d7fce0 frame=0 offset=0 length=192
[  93.1579553] dwc2_device_start: xfer=0x90d7fce0 frame=1 offset=192 length=192
[  93.1579553] dwc2_device_start: xfer=0x90d7fce0 frame=2 offset=384 length=192
[  93.1720204] dwc2_device_start: xfer=0x90d7fce0 frame=3 offset=576 length=192
[  93.1790535] dwc2_device_start: xfer=0x90d7fce0 frame=4 offset=768 length=192
[  93.1790535] dwc2_device_start: xfer=0x90d7fce0 frame=5 offset=960 length=192
[  93.1931187] dwc2_device_start: xfer=0x90d7fce0 frame=6 offset=1152 length=192
[  93.2002379] dwc2_device_start: xfer=0x90d7fce0 frame=7 offset=1344 length=192
[  93.2002379] dwc2_device_start: xfer=0x90d7fce0 frame=8 offset=1536 length=192
[  93.2144772] dwc2_device_start: xfer=0x90d7fce0 frame=9 offset=1728 length=192
[  93.2215966] dwc2_host_complete: xfer=0x90d7fc28 actlen=0
[  93.2215966] dwc2_device_isoc_done: 
uaudio_chan_pintr: count(40) != size(1920)




Home | Main Index | Thread Index | Old Index