omkarm
July 21, 2025, 5:11pm
1
Hi,
I’ve developed a custom camera driver for Jetson Nano and it works.
Where as I’m trying to develop a custom camera driver for Orin NX and somehow I’m unable to get frames in Orin NX.
The CSI camera which I’m developing driver for has following support,
CSI DPHY output
Supports two data lanes
Max output speed of 2.4Gbps
Supports 8bit YUV422
400x400 @30fps with MIPI clock at 300MHz with 400 active pixels in each active line
720x720 @33fps with MIPI clock at 384MHz with 720 active pixels in each active line
I keep getting this error when I start_streaming using the following command
v4l2-ctl --set-fmt-video=width=400,height=400,pixelformat=UYVY --set-ctrl bypass_mode=0 --stream-mmap --stream-count=1 -d /dev/video0
[ 106.465448] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 106.465473] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 106.466190] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
[ 109.025385] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 109.025413] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 109.026281] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
[ 111.553547] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 111.553563] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 111.554459] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
I have probed both csi lanes D0 & D1 with oscilloscope and I see the frames are coming from sensor whereas in Orin NX I’m unable to grab any frames.
I’m using JP6.2.1 and I’ve attached the driver code with devicetree overlay which i’m using for the reference
I’m unable to debug further on what could be the issue. Any help on this is very much appreciated.
nv_customcam.txt (19.8 KB)
tegra234-p3767-camera-p3768-customcam-C.txt (11.6 KB)
*** Please note that this reply is generated by LLM automatically ***
To address the issue of developing a custom camera driver for the Jetson Orin NX and resolving the errors encountered during streaming, let’s break down the key points and compare the relevant information.
Custom Camera Driver Development :
You have successfully developed a custom camera driver for the Jetson Nano, which implies that you have a good understanding of the basics of camera driver development for Jetson platforms.
However, when attempting to develop a similar driver for the Jetson Orin NX, you’re encountering issues, specifically with capturing frames.
CSI Camera Specifications :
The CSI camera you’re developing a driver for supports:
CSI DPHY output
Two data lanes
Maximum output speed of 24Gbps
8-bit YUV422 format
Resolutions and frame rates: 400x400 at 30fps with a MIPI clock at 300MHz, and 720x720 at 33fps with a MIPI clock at 384MHz
These specifications are crucial for ensuring that the camera is properly configured in the device tree and that the driver is correctly implemented to handle these specifications.
Error Messages :
The error messages you’re seeing (uncorrerr request timed out after 2500 ms, errrec attempting to reset the capture channel, errrec successfully reset the capture channel) suggest issues with the capture channel, possibly indicating problems with the camera’s configuration, the device tree settings, or the driver’s interaction with the camera hardware.
These messages imply that there are communication issues between the Jetson Orin NX and the CSI camera, leading to timeouts and attempted resets of the capture channel.
Comparison with Jetson Nano :
Since your driver works on the Jetson Nano, the issue might stem from differences in hardware capabilities, device tree configurations, or driver requirements between the Jetson Nano and the Jetson Orin NX.
The Jetson Orin NX, being a more powerful and possibly more complex platform, might require specific configurations or settings in the device tree or the driver that are not necessary or are different on the Jetson Nano.
Device Tree and Driver Code :
You’ve mentioned attaching the driver code and device tree overlay, which is crucial for debugging. However, without access to these files, it’s challenging to provide specific feedback.
Ensure that the device tree overlay correctly configures the CSI interface, MIPI settings, and camera sensor settings according to the camera’s specifications and the Jetson Orin NX’s requirements.
Debugging Steps :
Verify Device Tree Configuration : Double-check that the device tree overlay correctly configures the CSI port, MIPI clock, and other necessary settings for the camera.
Camera Sensor Settings : Ensure that the camera sensor settings in the driver match the camera’s specifications, including resolution, frame rate, and data format.
MIPI Clock Settings : Confirm that the MIPI clock settings in the device tree and the driver match the requirements for the resolutions and frame rates you’re attempting to use.
Kernel and Driver Versions : Ensure that you’re using compatible versions of the kernel and driver for the Jetson Orin NX, as differences in versions can lead to compatibility issues.
Conclusion :
The development of a custom camera driver for the Jetson Orin NX involves careful consideration of the camera’s specifications, the device tree configuration, and the driver implementation.
By comparing the working setup on the Jetson Nano and meticulously checking the configurations and code for the Jetson Orin NX, you should be able to identify and resolve the issues preventing frame capture.
Given the complexity and the specificity of the issue, further debugging would require access to the device tree overlay and driver code you’ve mentioned, as well as potentially more detailed information about the camera module and the exact Jetson Orin NX setup you’re using.
*** Please give the thumbs up if you get answers you like. Or provide feedback to help us improve the answer. ***
omkarm
July 21, 2025, 6:46pm
3
I’m clueless on how to proceed further, It would be great if i can get some specific steps on how to debug and find this issue and where should I focus more on resolving the issue.
It would help a lot if you can go through the attached devicetree and driver code which I shared in previous post and let me know if there is something wrong.
hello omkarm,
could you please check sensor format dumps.. $ v4l2-ctl -d /dev/video0 --list-formats-ext
you must have assign the sensor support formats to the v4l pipeline for fetching the stream.
please give it a try with below commands to boost all the clocks.
for instance,
sudo su
echo 1 > /sys/kernel/debug/bpmp/debug/clk/vi/mrq_rate_locked
echo 1 > /sys/kernel/debug/bpmp/debug/clk/nvcsi/mrq_rate_locked
echo 1 > /sys/kernel/debug/bpmp/debug/clk/emc/mrq_rate_locked
cat /sys/kernel/debug/bpmp/debug/clk/vi/max_rate |tee /sys/kernel/debug/bpmp/debug/clk/vi/rate
cat /sys/kernel/debug/bpmp/debug/clk/nvcsi/max_rate | tee /sys/kernel/debug/bpmp/debug/clk/nvcsi/rate
cat /sys/kernel/debug/bpmp/debug/clk/emc/max_rate | tee /sys/kernel/debug/bpmp/debug/clk/emc/rate
BTW,
you may refer to Camera Driver Porting since you’re migrating the drivers to Orin NX.
see-also Tutorials page for the training slides, [Develop a V4L2 Sensor Driver ].
omkarm
July 22, 2025, 1:00pm
6
Thank you @JerryChang for your response, I tried the following based on your suggestions,
Here is the response I’m getting from the following command
v4l2-ctl -d /dev/video0 --list-formats-ext
ioctl: VIDIOC_ENUM_FMT
Type: Video Capture
[0]: 'UYVY' (UYVY 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
Size: Discrete 720x720
Interval: Discrete 0.030s (33.000 fps)
[1]: 'NV16' (Y/CbCr 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
Size: Discrete 720x720
Interval: Discrete 0.030s (33.000 fps)
[2]: 'UYVY' (UYVY 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
Size: Discrete 720x720
Interval: Discrete 0.030s (33.000 fps)
I also boosted the clocks but still I’m unable to get camera frames and the following logs I’m getting on dmesg
[ 246.746027] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 246.746049] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 246.747580] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
[ 249.306017] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 249.306038] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 249.307743] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
[ 251.866200] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 251.866216] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 251.867516] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel
whereas I probed again on the MIPI lanes on oscilloscope and I’m able to see the data.
hello omkarm,
it’s the error that VI did not receive a frame completely.
you may refer to Topic 326038 . we may need more details for the root cause, please give it a try to apply camera firmware with debug flag enabled.
omkarm
July 23, 2025, 4:58am
8
Thank you @JerryChang for your prompt response, I will follow the instructions you have provided and get back.
Before reading this post I tried enabling the trace logs using the following commands
echo 1 > /sys/kernel/debug/tracing/tracing_on
echo 30720 > /sys/kernel/debug/tracing/buffer_size_kb
echo 1 > /sys/kernel/debug/tracing/events/tegra_rtcpu/enable
echo 1 > /sys/kernel/debug/tracing/events/freertos/enable
echo 2 > /sys/kernel/debug/camrtc/log-level
echo > /sys/kernel/debug/tracing/trace
and when tried capturing frames I got the the following logs,
# tracer: nop
#
# entries-in-buffer/entries-written: 422/422 #P:4
#
# _-------=> irqs-off
# / _------=> need-resched
# | / _-----=> need-resched-lazy
# || / _----=> hardirq/softirq
# ||| / _---=> preempt-depth
# |||| / _--=> preempt-lazy-depth
# ||||| / _-=> migrate-disable
# |||||| / delay
# TASK-PID CPU# ||||||| TIMESTAMP FUNCTION
# | | | ||||||| | |
kworker/0:3-148 [000] ....... 280.675790: rtcpu_string: tstamp:9446313017 id:0x04010000 str:"VM0 deactivating."
kworker/0:3-148 [000] ....... 313.059702: rtcpu_string: tstamp:10458928874 id:0x04010000 str:"VM0 activating."
kworker/0:3-148 [000] ....... 313.059707: rtcpu_nvcsi_intr: tstamp:10459429376 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119689: rtcpu_vinotify_event: tstamp:10459623707 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:334690870528 data:0x799e300010000000
kworker/0:3-148 [000] ....... 313.119691: rtcpu_vinotify_event: tstamp:10459623851 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:334690876960 data:0x0000000031000001
kworker/0:3-148 [000] ....... 313.119691: rtcpu_vinotify_event: tstamp:10459624005 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:334690879936 data:0x0000000007020001
kworker/0:3-148 [000] ....... 313.119692: rtcpu_vinotify_event: tstamp:10459624140 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:334690922208 data:0x799e2d0010000000
kworker/0:3-148 [000] ....... 313.119693: rtcpu_vinotify_event: tstamp:10459624302 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:334690928704 data:0x0000000031000002
kworker/0:3-148 [000] ....... 313.119694: rtcpu_nvcsi_intr: tstamp:10460135281 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119695: rtcpu_nvcsi_intr: tstamp:10460306277 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119695: rtcpu_nvcsi_intr: tstamp:10460468275 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119696: rtcpu_nvcsi_intr: tstamp:10460886766 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119697: rtcpu_nvcsi_intr: tstamp:10461012763 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.119697: rtcpu_nvcsi_intr: tstamp:10461183759 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.231903: rtcpu_nvcsi_intr: tstamp:10463478708 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.231905: rtcpu_nvcsi_intr: tstamp:10463832921 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.231906: rtcpu_nvcsi_intr: tstamp:10463866274 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287691: rtcpu_nvcsi_intr: tstamp:10465486238 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287692: rtcpu_nvcsi_intr: tstamp:10465566662 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287692: rtcpu_nvcsi_intr: tstamp:10465989651 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287693: rtcpu_nvcsi_intr: tstamp:10466093725 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287693: rtcpu_nvcsi_intr: tstamp:10466111723 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287694: rtcpu_nvcsi_intr: tstamp:10466160647 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287695: rtcpu_nvcsi_intr: tstamp:10466232645 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.287696: rtcpu_nvcsi_intr: tstamp:10466624136 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399900: rtcpu_nvcsi_intr: tstamp:10469040582 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399904: rtcpu_nvcsi_intr: tstamp:10469207078 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399905: rtcpu_nvcsi_intr: tstamp:10469490573 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399905: rtcpu_nvcsi_intr: tstamp:10469553571 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399906: rtcpu_nvcsi_intr: tstamp:10470069782 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.399907: rtcpu_nvcsi_intr: tstamp:10470125635 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455703: rtcpu_nvcsi_intr: tstamp:10470206057 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455707: rtcpu_nvcsi_intr: tstamp:10470494049 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455707: rtcpu_nvcsi_intr: tstamp:10470827042 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455708: rtcpu_nvcsi_intr: tstamp:10470858541 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455708: rtcpu_nvcsi_intr: tstamp:10471119537 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455709: rtcpu_nvcsi_intr: tstamp:10471214035 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455709: rtcpu_nvcsi_intr: tstamp:10471362528 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455710: rtcpu_nvcsi_intr: tstamp:10471367029 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455710: rtcpu_nvcsi_intr: tstamp:10471461527 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.455710: rtcpu_nvcsi_intr: tstamp:10471637602 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.511887: rtcpu_nvcsi_intr: tstamp:10472357584 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.511889: rtcpu_nvcsi_intr: tstamp:10472577501 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.511890: rtcpu_nvcsi_intr: tstamp:10473658056 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567908: rtcpu_nvcsi_intr: tstamp:10473742977 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567913: rtcpu_nvcsi_intr: tstamp:10474278463 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567914: rtcpu_nvcsi_intr: tstamp:10474291964 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567914: rtcpu_nvcsi_intr: tstamp:10474494459 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567915: rtcpu_nvcsi_intr: tstamp:10474714954 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.567915: rtcpu_nvcsi_intr: tstamp:10474720032 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623703: rtcpu_nvcsi_intr: tstamp:10475452938 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623707: rtcpu_nvcsi_intr: tstamp:10475574433 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623708: rtcpu_nvcsi_intr: tstamp:10476096422 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623708: rtcpu_nvcsi_intr: tstamp:10476366417 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623710: rtcpu_nvcsi_intr: tstamp:10476703909 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.623711: rtcpu_nvcsi_intr: tstamp:10477172475 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.679917: rtcpu_nvcsi_intr: tstamp:10477450895 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.735700: rtcpu_nvcsi_intr: tstamp:10480002912 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.735704: rtcpu_nvcsi_intr: tstamp:10480025412 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.735705: rtcpu_nvcsi_intr: tstamp:10480464547 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.791904: rtcpu_nvcsi_intr: tstamp:10481267386 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.791907: rtcpu_nvcsi_intr: tstamp:10482333283 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847914: rtcpu_nvcsi_intr: tstamp:10482558279 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847918: rtcpu_nvcsi_intr: tstamp:10483215263 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847919: rtcpu_nvcsi_intr: tstamp:10483242261 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847920: rtcpu_nvcsi_intr: tstamp:10483247339 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847920: rtcpu_nvcsi_intr: tstamp:10483669756 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847921: rtcpu_nvcsi_intr: tstamp:10483714752 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.847922: rtcpu_nvcsi_intr: tstamp:10484155740 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.903881: rtcpu_nvcsi_intr: tstamp:10485154718 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.959700: rtcpu_nvcsi_intr: tstamp:10486333694 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.959704: rtcpu_nvcsi_intr: tstamp:10486720687 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.959705: rtcpu_nvcsi_intr: tstamp:10486882681 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.959705: rtcpu_nvcsi_intr: tstamp:10487292169 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 313.959706: rtcpu_nvcsi_intr: tstamp:10487427169 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.015702: rtcpu_nvcsi_intr: tstamp:10488052654 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.015706: rtcpu_nvcsi_intr: tstamp:10489312628 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.071688: rtcpu_nvcsi_intr: tstamp:10489659118 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.071689: rtcpu_nvcsi_intr: tstamp:10489663620 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.071689: rtcpu_nvcsi_intr: tstamp:10489839114 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.071690: rtcpu_nvcsi_intr: tstamp:10489956111 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.071691: rtcpu_nvcsi_intr: tstamp:10490086609 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183894: rtcpu_nvcsi_intr: tstamp:10493079620 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183897: rtcpu_nvcsi_intr: tstamp:10493236540 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183898: rtcpu_nvcsi_intr: tstamp:10493425534 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183899: rtcpu_nvcsi_intr: tstamp:10493578532 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183900: rtcpu_nvcsi_intr: tstamp:10494344227 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.183900: rtcpu_nvcsi_intr: tstamp:10494586509 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.239891: rtcpu_nvcsi_intr: tstamp:10495130994 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.239894: rtcpu_nvcsi_intr: tstamp:10495639485 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.239895: rtcpu_nvcsi_intr: tstamp:10496080477 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.239895: rtcpu_nvcsi_intr: tstamp:10496264970 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295690: rtcpu_nvcsi_intr: tstamp:10496759961 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295691: rtcpu_nvcsi_intr: tstamp:10496872457 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295691: rtcpu_nvcsi_intr: tstamp:10497106452 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295692: rtcpu_nvcsi_intr: tstamp:10497538441 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295693: rtcpu_nvcsi_intr: tstamp:10498141754 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.295694: rtcpu_nvcsi_intr: tstamp:10498145927 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.407912: rtcpu_nvcsi_intr: tstamp:10500359879 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.407916: rtcpu_nvcsi_intr: tstamp:10500818869 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.463713: rtcpu_nvcsi_intr: tstamp:10502321836 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.519712: rtcpu_nvcsi_intr: tstamp:10503910299 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.519714: rtcpu_nvcsi_intr: tstamp:10504450862 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.519715: rtcpu_nvcsi_intr: tstamp:10505044272 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.631918: rtcpu_nvcsi_intr: tstamp:10507614293 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.631921: rtcpu_nvcsi_intr: tstamp:10507775710 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.631922: rtcpu_nvcsi_intr: tstamp:10508113201 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.631923: rtcpu_nvcsi_intr: tstamp:10508550272 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.687917: rtcpu_nvcsi_intr: tstamp:10508765688 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.687922: rtcpu_nvcsi_intr: tstamp:10509877164 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.743920: rtcpu_nvcsi_intr: tstamp:10510439652 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.743924: rtcpu_nvcsi_intr: tstamp:10510907641 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.743925: rtcpu_nvcsi_intr: tstamp:10511861619 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.743926: rtcpu_nvcsi_intr: tstamp:10511911119 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.799909: rtcpu_nvcsi_intr: tstamp:10512298686 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.799912: rtcpu_nvcsi_intr: tstamp:10512811098 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.799913: rtcpu_nvcsi_intr: tstamp:10513121590 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.799913: rtcpu_nvcsi_intr: tstamp:10513329162 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.855940: rtcpu_nvcsi_intr: tstamp:10515101548 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.855944: rtcpu_nvcsi_intr: tstamp:10515565036 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 314.967885: rtcpu_nvcsi_intr: tstamp:10517941561 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.023695: rtcpu_nvcsi_intr: tstamp:10520172933 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.079716: rtcpu_nvcsi_intr: tstamp:10521266986 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.079720: rtcpu_nvcsi_intr: tstamp:10522360460 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.135952: rtcpu_nvcsi_intr: tstamp:10523178864 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.191952: rtcpu_nvcsi_intr: tstamp:10524443336 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.303699: rtcpu_nvcsi_intr: tstamp:10528673240 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.303703: rtcpu_nvcsi_intr: tstamp:10529371304 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.359711: rtcpu_nvcsi_intr: tstamp:10529928712 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.359715: rtcpu_nvcsi_intr: tstamp:10530459703 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.359716: rtcpu_nvcsi_intr: tstamp:10531188685 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.415888: rtcpu_nvcsi_intr: tstamp:10531751172 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.415891: rtcpu_nvcsi_intr: tstamp:10532030744 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.415892: rtcpu_nvcsi_intr: tstamp:10532593231 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.415893: rtcpu_nvcsi_intr: tstamp:10532907645 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.471705: rtcpu_nvcsi_intr: tstamp:10533227138 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.471709: rtcpu_nvcsi_intr: tstamp:10533294639 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.471710: rtcpu_nvcsi_intr: tstamp:10533542134 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.471711: rtcpu_nvcsi_intr: tstamp:10534554610 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527699: rtcpu_nvcsi_intr: tstamp:10535067598 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527703: rtcpu_nvcsi_intr: tstamp:10535077173 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527704: rtcpu_nvcsi_intr: tstamp:10535094599 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527704: rtcpu_nvcsi_intr: tstamp:10535139595 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527705: rtcpu_nvcsi_intr: tstamp:10535194173 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527706: rtcpu_nvcsi_intr: tstamp:10535270670 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527707: rtcpu_nvcsi_intr: tstamp:10535679582 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527707: rtcpu_nvcsi_intr: tstamp:10535751583 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.527708: rtcpu_nvcsi_intr: tstamp:10535972654 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.583701: rtcpu_nvcsi_intr: tstamp:10536953056 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.583705: rtcpu_nvcsi_intr: tstamp:10537353546 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.583706: rtcpu_nvcsi_intr: tstamp:10537470547 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.583707: rtcpu_nvcsi_intr: tstamp:10537804114 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.583708: rtcpu_nvcsi_intr: tstamp:10537835613 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639702: rtcpu_vinotify_event: tstamp:10539377593 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:337259112160 data:0x799e300010000000
kworker/0:3-148 [000] ....... 315.639704: rtcpu_vinotify_event: tstamp:10539377750 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:337259154240 data:0x0000000031000001
kworker/0:3-148 [000] ....... 315.639705: rtcpu_vinotify_event: tstamp:10539377886 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:337259172384 data:0x799e2d0010000000
kworker/0:3-148 [000] ....... 315.639705: rtcpu_vinotify_event: tstamp:10539378050 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:337259192672 data:0x0000000007020001
kworker/0:3-148 [000] ....... 315.639706: rtcpu_vinotify_event: tstamp:10539378183 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:337259235040 data:0x0000000031000002
kworker/0:3-148 [000] ....... 315.639707: rtcpu_nvcsi_intr: tstamp:10539715993 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639708: rtcpu_nvcsi_intr: tstamp:10539765491 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639708: rtcpu_nvcsi_intr: tstamp:10539864489 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639708: rtcpu_nvcsi_intr: tstamp:10539958987 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639709: rtcpu_nvcsi_intr: tstamp:10540017488 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.639709: rtcpu_nvcsi_intr: tstamp:10540048985 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695684: rtcpu_nvcsi_intr: tstamp:10541052464 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695685: rtcpu_nvcsi_intr: tstamp:10541336535 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695685: rtcpu_nvcsi_intr: tstamp:10541353957 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695686: rtcpu_nvcsi_intr: tstamp:10541421457 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695686: rtcpu_nvcsi_intr: tstamp:10541520455 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695687: rtcpu_nvcsi_intr: tstamp:10541642528 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.695687: rtcpu_nvcsi_intr: tstamp:10541916444 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751898: rtcpu_nvcsi_intr: tstamp:10542276435 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751901: rtcpu_nvcsi_intr: tstamp:10542370933 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751902: rtcpu_nvcsi_intr: tstamp:10542469931 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751904: rtcpu_nvcsi_intr: tstamp:10542974498 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751904: rtcpu_nvcsi_intr: tstamp:10543149416 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.751904: rtcpu_nvcsi_intr: tstamp:10543459909 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807911: rtcpu_nvcsi_intr: tstamp:10544130968 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807917: rtcpu_nvcsi_intr: tstamp:10544229390 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807917: rtcpu_nvcsi_intr: tstamp:10544306466 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807918: rtcpu_nvcsi_intr: tstamp:10544314888 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807919: rtcpu_nvcsi_intr: tstamp:10544319385 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807919: rtcpu_nvcsi_intr: tstamp:10544571959 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807920: rtcpu_nvcsi_intr: tstamp:10544688380 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807921: rtcpu_nvcsi_intr: tstamp:10544913375 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807921: rtcpu_nvcsi_intr: tstamp:10545016874 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807922: rtcpu_nvcsi_intr: tstamp:10545210948 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.807923: rtcpu_nvcsi_intr: tstamp:10545359444 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863916: rtcpu_nvcsi_intr: tstamp:10545988851 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863920: rtcpu_nvcsi_intr: tstamp:10546520417 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863921: rtcpu_nvcsi_intr: tstamp:10546537838 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863922: rtcpu_nvcsi_intr: tstamp:10546704913 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863922: rtcpu_nvcsi_intr: tstamp:10546735836 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863923: rtcpu_nvcsi_intr: tstamp:10547005831 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863923: rtcpu_nvcsi_intr: tstamp:10547087405 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.863924: rtcpu_nvcsi_intr: tstamp:10547154905 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919699: rtcpu_nvcsi_intr: tstamp:10547221824 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919700: rtcpu_nvcsi_intr: tstamp:10547235901 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919701: rtcpu_nvcsi_intr: tstamp:10547518816 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919702: rtcpu_nvcsi_intr: tstamp:10547824811 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919703: rtcpu_nvcsi_intr: tstamp:10548072308 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919704: rtcpu_nvcsi_intr: tstamp:10548212378 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919705: rtcpu_nvcsi_intr: tstamp:10548576295 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.919706: rtcpu_nvcsi_intr: tstamp:10548859787 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975887: rtcpu_nvcsi_intr: tstamp:10549228781 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975890: rtcpu_nvcsi_intr: tstamp:10549264779 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975891: rtcpu_nvcsi_intr: tstamp:10549404276 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975892: rtcpu_nvcsi_intr: tstamp:10549431273 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975893: rtcpu_nvcsi_intr: tstamp:10549435774 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975893: rtcpu_nvcsi_intr: tstamp:10549800268 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975894: rtcpu_nvcsi_intr: tstamp:10549926264 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975895: rtcpu_nvcsi_intr: tstamp:10550309333 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975896: rtcpu_nvcsi_intr: tstamp:10550394253 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975896: rtcpu_nvcsi_intr: tstamp:10550443751 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975897: rtcpu_nvcsi_intr: tstamp:10550452750 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 315.975898: rtcpu_nvcsi_intr: tstamp:10550479752 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031889: rtcpu_nvcsi_intr: tstamp:10550776745 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031892: rtcpu_nvcsi_intr: tstamp:10550803743 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031893: rtcpu_nvcsi_intr: tstamp:10550988817 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031895: rtcpu_nvcsi_intr: tstamp:10551542300 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031895: rtcpu_nvcsi_intr: tstamp:10551618226 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031896: rtcpu_nvcsi_intr: tstamp:10551775722 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.031896: rtcpu_nvcsi_intr: tstamp:10551857296 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.087890: rtcpu_nvcsi_intr: tstamp:10552648703 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.143886: rtcpu_nvcsi_intr: tstamp:10554273165 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.143889: rtcpu_nvcsi_intr: tstamp:10554538660 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.143890: rtcpu_nvcsi_intr: tstamp:10555776133 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.199705: rtcpu_nvcsi_intr: tstamp:10556428619 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.199709: rtcpu_nvcsi_intr: tstamp:10557567091 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255889: rtcpu_nvcsi_intr: tstamp:10557706588 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255893: rtcpu_nvcsi_intr: tstamp:10558071081 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255894: rtcpu_nvcsi_intr: tstamp:10558246575 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255895: rtcpu_nvcsi_intr: tstamp:10558521072 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255895: rtcpu_nvcsi_intr: tstamp:10558661144 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.255896: rtcpu_nvcsi_intr: tstamp:10558714564 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311920: rtcpu_nvcsi_intr: tstamp:10559920538 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311924: rtcpu_nvcsi_intr: tstamp:10560361530 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311924: rtcpu_nvcsi_intr: tstamp:10560537027 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311925: rtcpu_nvcsi_intr: tstamp:10560667523 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311925: rtcpu_nvcsi_intr: tstamp:10560807016 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311926: rtcpu_nvcsi_intr: tstamp:10560825596 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311927: rtcpu_nvcsi_intr: tstamp:10560839096 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311927: rtcpu_nvcsi_intr: tstamp:10560870014 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311928: rtcpu_nvcsi_intr: tstamp:10561014591 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311928: rtcpu_nvcsi_intr: tstamp:10561050014 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311929: rtcpu_nvcsi_intr: tstamp:10561068013 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311929: rtcpu_nvcsi_intr: tstamp:10561144511 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311930: rtcpu_nvcsi_intr: tstamp:10561171510 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.311931: rtcpu_nvcsi_intr: tstamp:10561172086 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367716: rtcpu_nvcsi_intr: tstamp:10561226085 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367719: rtcpu_nvcsi_intr: tstamp:10561244087 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367719: rtcpu_nvcsi_intr: tstamp:10561374005 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367720: rtcpu_nvcsi_intr: tstamp:10561711498 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367720: rtcpu_nvcsi_intr: tstamp:10561922991 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367721: rtcpu_nvcsi_intr: tstamp:10562008492 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367721: rtcpu_nvcsi_intr: tstamp:10562372985 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367721: rtcpu_nvcsi_intr: tstamp:10562594057 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367722: rtcpu_nvcsi_intr: tstamp:10562813974 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367722: rtcpu_nvcsi_intr: tstamp:10562872474 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.367723: rtcpu_nvcsi_intr: tstamp:10562926469 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423720: rtcpu_nvcsi_intr: tstamp:10563034468 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423722: rtcpu_nvcsi_intr: tstamp:10563061469 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423723: rtcpu_nvcsi_intr: tstamp:10563070469 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423723: rtcpu_nvcsi_intr: tstamp:10563071045 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423723: rtcpu_nvcsi_intr: tstamp:10563331461 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423724: rtcpu_nvcsi_intr: tstamp:10563920949 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423724: rtcpu_nvcsi_intr: tstamp:10563943446 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.423725: rtcpu_nvcsi_intr: tstamp:10564353515 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479721: rtcpu_nvcsi_intr: tstamp:10565230420 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479724: rtcpu_nvcsi_intr: tstamp:10565248419 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479726: rtcpu_nvcsi_intr: tstamp:10565320993 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479727: rtcpu_nvcsi_intr: tstamp:10565338418 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479727: rtcpu_nvcsi_intr: tstamp:10565882904 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479727: rtcpu_nvcsi_intr: tstamp:10565986404 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479728: rtcpu_nvcsi_intr: tstamp:10566013402 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479729: rtcpu_nvcsi_intr: tstamp:10566215897 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479729: rtcpu_nvcsi_intr: tstamp:10566310972 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.479729: rtcpu_nvcsi_intr: tstamp:10566332895 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535691: rtcpu_nvcsi_intr: tstamp:10566599009 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535695: rtcpu_nvcsi_intr: tstamp:10566855460 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535696: rtcpu_nvcsi_intr: tstamp:10566868384 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535697: rtcpu_nvcsi_intr: tstamp:10566886959 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535698: rtcpu_nvcsi_intr: tstamp:10567079879 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535698: rtcpu_nvcsi_intr: tstamp:10567133874 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535699: rtcpu_nvcsi_intr: tstamp:10567206452 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535700: rtcpu_nvcsi_intr: tstamp:10567440446 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535700: rtcpu_nvcsi_intr: tstamp:10567520867 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535701: rtcpu_nvcsi_intr: tstamp:10567539444 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535702: rtcpu_nvcsi_intr: tstamp:10567880860 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.535703: rtcpu_nvcsi_intr: tstamp:10567966356 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591689: rtcpu_nvcsi_intr: tstamp:10568884337 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591691: rtcpu_nvcsi_intr: tstamp:10568938336 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591692: rtcpu_nvcsi_intr: tstamp:10569554822 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591692: rtcpu_nvcsi_intr: tstamp:10569653821 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591693: rtcpu_nvcsi_intr: tstamp:10569667894 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.591694: rtcpu_nvcsi_intr: tstamp:10569860814 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647900: rtcpu_nvcsi_intr: tstamp:10570063310 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647904: rtcpu_nvcsi_intr: tstamp:10570117309 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647905: rtcpu_nvcsi_intr: tstamp:10570270305 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647906: rtcpu_nvcsi_intr: tstamp:10570324306 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647907: rtcpu_nvcsi_intr: tstamp:10570481798 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647908: rtcpu_nvcsi_intr: tstamp:10570554376 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647908: rtcpu_nvcsi_intr: tstamp:10570706797 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647909: rtcpu_nvcsi_intr: tstamp:10570756915 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647909: rtcpu_nvcsi_intr: tstamp:10570954289 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647910: rtcpu_nvcsi_intr: tstamp:10571229362 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.647911: rtcpu_nvcsi_intr: tstamp:10571381780 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703716: rtcpu_nvcsi_intr: tstamp:10571980845 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703719: rtcpu_nvcsi_intr: tstamp:10572016845 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703719: rtcpu_nvcsi_intr: tstamp:10572394256 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703720: rtcpu_nvcsi_intr: tstamp:10572556256 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703721: rtcpu_nvcsi_intr: tstamp:10572727252 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703722: rtcpu_nvcsi_intr: tstamp:10572977969 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703722: rtcpu_nvcsi_intr: tstamp:10572992742 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703723: rtcpu_nvcsi_intr: tstamp:10573065320 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.703723: rtcpu_nvcsi_intr: tstamp:10573172741 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763697: rtcpu_nvcsi_intr: tstamp:10573501233 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763701: rtcpu_nvcsi_intr: tstamp:10573749304 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763702: rtcpu_nvcsi_intr: tstamp:10573848305 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763703: rtcpu_nvcsi_intr: tstamp:10574316291 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763703: rtcpu_nvcsi_intr: tstamp:10574360713 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763704: rtcpu_nvcsi_intr: tstamp:10574378712 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.763704: rtcpu_nvcsi_intr: tstamp:10574617208 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.819685: rtcpu_nvcsi_intr: tstamp:10575571189 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.819686: rtcpu_nvcsi_intr: tstamp:10576237173 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.819687: rtcpu_nvcsi_intr: tstamp:10576273747 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.819688: rtcpu_nvcsi_intr: tstamp:10576367668 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.819688: rtcpu_nvcsi_intr: tstamp:10576462165 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875899: rtcpu_nvcsi_intr: tstamp:10577146150 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875903: rtcpu_nvcsi_intr: tstamp:10577614140 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875904: rtcpu_nvcsi_intr: tstamp:10577947134 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875905: rtcpu_nvcsi_intr: tstamp:10578352125 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875905: rtcpu_nvcsi_intr: tstamp:10578564197 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875906: rtcpu_nvcsi_intr: tstamp:10578608619 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.875907: rtcpu_nvcsi_intr: tstamp:10578748117 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931687: rtcpu_nvcsi_intr: tstamp:10578991111 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931688: rtcpu_nvcsi_intr: tstamp:10579243681 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931689: rtcpu_nvcsi_intr: tstamp:10579351103 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931690: rtcpu_nvcsi_intr: tstamp:10579508598 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931690: rtcpu_nvcsi_intr: tstamp:10579598594 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931691: rtcpu_nvcsi_intr: tstamp:10579625595 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931691: rtcpu_nvcsi_intr: tstamp:10579666094 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931692: rtcpu_nvcsi_intr: tstamp:10579679594 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931693: rtcpu_nvcsi_intr: tstamp:10579715592 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931693: rtcpu_nvcsi_intr: tstamp:10579720093 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931694: rtcpu_nvcsi_intr: tstamp:10579814591 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931694: rtcpu_nvcsi_intr: tstamp:10579819092 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931695: rtcpu_nvcsi_intr: tstamp:10579976588 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931696: rtcpu_nvcsi_intr: tstamp:10580012585 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931696: rtcpu_nvcsi_intr: tstamp:10580026662 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931697: rtcpu_nvcsi_intr: tstamp:10580107086 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931697: rtcpu_nvcsi_intr: tstamp:10580336579 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931697: rtcpu_nvcsi_intr: tstamp:10580440076 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931698: rtcpu_nvcsi_intr: tstamp:10580449075 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.931698: rtcpu_nvcsi_intr: tstamp:10580462579 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987895: rtcpu_nvcsi_intr: tstamp:10580620652 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987898: rtcpu_nvcsi_intr: tstamp:10580647649 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987899: rtcpu_nvcsi_intr: tstamp:10580678572 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987900: rtcpu_nvcsi_intr: tstamp:10580683650 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987900: rtcpu_nvcsi_intr: tstamp:10580692071 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987901: rtcpu_nvcsi_intr: tstamp:10580728069 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987901: rtcpu_nvcsi_intr: tstamp:10580777571 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987903: rtcpu_nvcsi_intr: tstamp:10580795569 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987904: rtcpu_nvcsi_intr: tstamp:10580804569 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987905: rtcpu_nvcsi_intr: tstamp:10580831569 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987905: rtcpu_nvcsi_intr: tstamp:10580854066 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987906: rtcpu_nvcsi_intr: tstamp:10580980640 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987907: rtcpu_nvcsi_intr: tstamp:10581056562 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987908: rtcpu_nvcsi_intr: tstamp:10581601050 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987908: rtcpu_nvcsi_intr: tstamp:10581614551 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987909: rtcpu_nvcsi_intr: tstamp:10581637050 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987910: rtcpu_nvcsi_intr: tstamp:10581668550 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987910: rtcpu_nvcsi_intr: tstamp:10581705127 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 316.987911: rtcpu_nvcsi_intr: tstamp:10581884546 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043692: rtcpu_nvcsi_intr: tstamp:10582343536 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043693: rtcpu_nvcsi_intr: tstamp:10582685526 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043694: rtcpu_nvcsi_intr: tstamp:10582699026 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043695: rtcpu_nvcsi_intr: tstamp:10582762021 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043696: rtcpu_nvcsi_intr: tstamp:10582771023 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043697: rtcpu_nvcsi_intr: tstamp:10582789026 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043698: rtcpu_nvcsi_intr: tstamp:10583401588 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043698: rtcpu_nvcsi_intr: tstamp:10583527007 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043699: rtcpu_nvcsi_intr: tstamp:10583531508 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043700: rtcpu_nvcsi_intr: tstamp:10583599008 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043701: rtcpu_nvcsi_intr: tstamp:10583729507 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043702: rtcpu_nvcsi_intr: tstamp:10583810503 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.043703: rtcpu_nvcsi_intr: tstamp:10583829079 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099713: rtcpu_nvcsi_intr: tstamp:10584129993 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099717: rtcpu_nvcsi_intr: tstamp:10584161491 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099718: rtcpu_nvcsi_intr: tstamp:10584188493 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099719: rtcpu_nvcsi_intr: tstamp:10584255993 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099720: rtcpu_nvcsi_intr: tstamp:10584665481 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099720: rtcpu_nvcsi_intr: tstamp:10584669980 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099721: rtcpu_nvcsi_intr: tstamp:10584710483 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099721: rtcpu_nvcsi_intr: tstamp:10584778555 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099722: rtcpu_nvcsi_intr: tstamp:10584917475 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099723: rtcpu_nvcsi_intr: tstamp:10585223471 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.099724: rtcpu_nvcsi_intr: tstamp:10585538462 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.155903: rtcpu_nvcsi_intr: tstamp:10585835456 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.155906: rtcpu_nvcsi_intr: tstamp:10586213449 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.155908: rtcpu_nvcsi_intr: tstamp:10587324923 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211710: rtcpu_nvcsi_intr: tstamp:10588067405 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211714: rtcpu_nvcsi_intr: tstamp:10588265399 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211715: rtcpu_nvcsi_intr: tstamp:10588319402 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211715: rtcpu_nvcsi_intr: tstamp:10588324476 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211716: rtcpu_nvcsi_intr: tstamp:10588701890 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.211716: rtcpu_nvcsi_intr: tstamp:10588760390 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267905: rtcpu_nvcsi_intr: tstamp:10589664870 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267908: rtcpu_nvcsi_intr: tstamp:10589966941 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267909: rtcpu_nvcsi_intr: tstamp:10590015860 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267910: rtcpu_nvcsi_intr: tstamp:10590070438 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267911: rtcpu_nvcsi_intr: tstamp:10590087859 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267911: rtcpu_nvcsi_intr: tstamp:10590231858 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267912: rtcpu_nvcsi_intr: tstamp:10590267855 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.267913: rtcpu_nvcsi_intr: tstamp:10590969840 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.323910: rtcpu_nvcsi_intr: tstamp:10591356832 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.323914: rtcpu_nvcsi_intr: tstamp:10591442330 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.379691: rtcpu_nvcsi_intr: tstamp:10593165792 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.379695: rtcpu_nvcsi_intr: tstamp:10593975774 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.379697: rtcpu_nvcsi_intr: tstamp:10594286264 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.379697: rtcpu_nvcsi_intr: tstamp:10594340841 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
kworker/0:3-148 [000] ....... 317.379698: rtcpu_nvcsi_intr: tstamp:10594466264 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x0a000000
Can you please check if you can find any issue, also please guide or point me to a document from which I will be able to understand what these logs represent
hello omkarm,
according to that PHY interrupts.
it shows that DPHY deskew calibration not complete on data and also clock lane.
this happened when the calibration sequence length is not long enough.
omkarm
July 23, 2025, 7:22am
10
Could you please let me know how can I fix the deskew calibration? The camera has it’s own internal clock.
I saw the camera datasheet and there is no mention of deskew calibration too.
Just an FYI I’m not using any SerDes, camera is directly connected to Orin NX Board.
hello omkarm,
as you can see per developer guide, SerDes Pixel Clock seciton.
let me re-cap as below..
Skew calibration is required if sensor or deserializer is using DPHY, and the output data rate is > 1.5Gbps.
could you please check Sensor Pixel Clock section, there are several ways to obtain the correct sensor pixel clock rate, you may double check the clock rate settings.
omkarm
July 23, 2025, 1:46pm
12
Hi @JerryChang ,
As per the documentation Property-Value Pairs if we keep the cil_settletime set to “0” the calibration is automatic right?
Also as per the Sensor Pixel Clock section, I’ve calculated the pixel clock using the following formula
pixel_clk_hz = sensor data rate per lane (Mbps) * number of lanes / bits per pixel
pixel_clk_hz = 2400000000 * 2 / 16 = 300000000
mclk_multiplier = 300000000 / 24000000 =12.5
this is the value we are using in devicetree and still I’m unable to get the camera frames.
Do you think the mclk_khz should be set to 0, if the camera is using its own internal clock?
hello omkarm,
300Mhz pixel clock should be the resolution 400x400@30-fps.
since you’re also had 720x720@33-fps sensor mode, please try using the MIPI clock rate at 384MHz for testing.
omkarm
July 24, 2025, 4:59am
14
Hi @JerryChang
Deeply appreciate all your help on this.
Currently I’m trying to get camera stream for 400x400 and as per your advice I’ve updated the devicetree with
pix_clk to 300000000
mclk_multiplier to 12.5
And I can see the trace logs have changed from the past but still no luck on camera frames
# tracer: nop
#
# entries-in-buffer/entries-written: 35/35 #P:4
#
# _-------=> irqs-off
# / _------=> need-resched
# | / _-----=> need-resched-lazy
# || / _----=> hardirq/softirq
# ||| / _---=> preempt-depth
# |||| / _--=> preempt-lazy-depth
# ||||| / _-=> migrate-disable
# |||||| / delay
# TASK-PID CPU# ||||||| TIMESTAMP FUNCTION
# | | | ||||||| | |
kworker/2:3-792 [002] ....... 139.582543: rtcpu_vinotify_event: tstamp:5122528193 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:163903933568 data:0x799e300010000000
kworker/2:3-792 [002] ....... 139.582547: rtcpu_vinotify_event: tstamp:5122528330 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:163903975680 data:0x0000000031000001
kworker/2:3-792 [002] ....... 139.582547: rtcpu_vinotify_event: tstamp:5122528487 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:163903993824 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 139.582548: rtcpu_vinotify_event: tstamp:5122528622 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:163904014112 data:0x0000000007020001
kworker/2:3-792 [002] ....... 139.582549: rtcpu_vinotify_event: tstamp:5122528775 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:163904056512 data:0x0000000031000002
kworker/2:3-792 [002] ....... 142.102537: rtcpu_vinotify_event: tstamp:5200654348 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:166414415712 data:0x799e300010000000
kworker/2:3-792 [002] ....... 142.102542: rtcpu_vinotify_event: tstamp:5200654508 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:166414457760 data:0x0000000031000001
kworker/2:3-792 [002] ....... 142.102543: rtcpu_vinotify_event: tstamp:5200654645 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:166414475936 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 142.102543: rtcpu_vinotify_event: tstamp:5200654798 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:166414496256 data:0x0000000007020001
kworker/2:3-792 [002] ....... 142.102544: rtcpu_vinotify_event: tstamp:5200654942 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:166414538624 data:0x0000000031000002
kworker/2:3-792 [002] ....... 144.678543: rtcpu_vinotify_event: tstamp:5280950633 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:168974445600 data:0x799e300010000000
kworker/2:3-792 [002] ....... 144.678547: rtcpu_vinotify_event: tstamp:5280950781 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:168974487680 data:0x0000000031000001
kworker/2:3-792 [002] ....... 144.678548: rtcpu_vinotify_event: tstamp:5280950939 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:168974505792 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 144.678549: rtcpu_vinotify_event: tstamp:5280951078 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:168974526112 data:0x0000000007020001
kworker/2:3-792 [002] ....... 144.678550: rtcpu_vinotify_event: tstamp:5280951243 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:168974568480 data:0x0000000031000002
kworker/2:3-792 [002] ....... 147.210553: rtcpu_vinotify_event: tstamp:5360448552 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:171534259200 data:0x799e300010000000
kworker/2:3-792 [002] ....... 147.210556: rtcpu_vinotify_event: tstamp:5360974744 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:171534416480 data:0x0000000031000001
kworker/2:3-792 [002] ....... 147.210557: rtcpu_vinotify_event: tstamp:5360974882 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:171534434592 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 147.210557: rtcpu_vinotify_event: tstamp:5360975038 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:171534454912 data:0x0000000007020001
kworker/2:3-792 [002] ....... 147.210558: rtcpu_vinotify_event: tstamp:5360975183 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:171534497536 data:0x0000000031000002
kworker/2:3-792 [002] ....... 149.786752: rtcpu_vinotify_event: tstamp:5440728579 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:174094295776 data:0x799e300010000000
kworker/2:3-792 [002] ....... 149.786756: rtcpu_vinotify_event: tstamp:5440728718 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:174094337856 data:0x0000000031000001
kworker/2:3-792 [002] ....... 149.786757: rtcpu_vinotify_event: tstamp:5440728872 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:174094355968 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 149.786757: rtcpu_vinotify_event: tstamp:5440729007 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:174094376288 data:0x0000000007020001
kworker/2:3-792 [002] ....... 149.786758: rtcpu_vinotify_event: tstamp:5440729182 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:174094418656 data:0x0000000031000002
kworker/2:3-792 [002] ....... 152.306542: rtcpu_vinotify_event: tstamp:5520481323 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:176653164480 data:0x799e300010000000
kworker/2:3-792 [002] ....... 152.306545: rtcpu_vinotify_event: tstamp:5520481481 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:176653206560 data:0x0000000031000001
kworker/2:3-792 [002] ....... 152.306546: rtcpu_vinotify_event: tstamp:5520481619 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:176653224704 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 152.306547: rtcpu_vinotify_event: tstamp:5520481773 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:176653245024 data:0x0000000007020001
kworker/2:3-792 [002] ....... 152.306548: rtcpu_vinotify_event: tstamp:5520481918 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:176653287392 data:0x0000000031000002
kworker/2:3-792 [002] ....... 154.882494: rtcpu_vinotify_event: tstamp:5600424772 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:179213457024 data:0x799e300010000000
kworker/2:3-792 [002] ....... 154.882497: rtcpu_vinotify_event: tstamp:5600424911 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:179213499072 data:0x0000000031000001
kworker/2:3-792 [002] ....... 154.882498: rtcpu_vinotify_event: tstamp:5600939984 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:179213605472 data:0x799e2d0010000000
kworker/2:3-792 [002] ....... 154.882499: rtcpu_vinotify_event: tstamp:5600940120 cch:0 vi:1 tag:VIFALC_ACTIONLST channel:0x23 frame:0 vi_tstamp:179213625760 data:0x0000000007020001
kworker/2:3-792 [002] ....... 154.882499: rtcpu_vinotify_event: tstamp:5600940286 cch:0 vi:1 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:179213668128 data:0x0000000031000002
Could you please let me know what would be the issue? Also can you please point me to the document for understanding these logs.
This will give me some insights on how to understand these logs and act on it.
hello omkarm,
your VI tracing logs shows there’s no valid frame packets on the channel.
let me re-cap part of VI tracing log with a success image capture as an example.
for instance,
here must be one pair of CHANSEL_PXL_SOF/CHANSEL_PXL_EOF to indicate a frame has detected by VI engine.
afterwards, it’s ATOMP_FRAME_DONE to indicate it’s complete writing a frame to memory.
rtcpu_vinotify_event: tstamp:4058867917 cch:-1 vi:0 tag:CSIMUX_STREAM channel:0x00 frame:0 vi_tstamp:129874754944 data:0x0000000000000001
rtcpu_vinotify_event: tstamp:4059206674 cch:0 vi:0 tag:ATOMP_FS channel:0x00 frame:1 vi_tstamp:129891804896 data:0x0000000800000000
rtcpu_vinotify_event: tstamp:4059206818 cch:0 vi:0 tag:CHANSEL_PXL_SOF channel:0x23 frame:1 vi_tstamp:129891808928 data:0x0000000000000001
rtcpu_vinotify_event: tstamp:4059206976 cch:0 vi:0 tag:VIFALC_ACTIONLST channel:0x23 frame:1 vi_tstamp:129891815424 data:0x0000000008020001
rtcpu_vinotify_error: tstamp:4060164160 cch:0 vi:0 tag:CSIMUX_FRAME channel:0x00 frame:1 vi_tstamp:129925171392 data:0x00000000000000a0
rtcpu_vinotify_event: tstamp:4060166846 cch:0 vi:0 tag:CHANSEL_PXL_EOF channel:0x23 frame:1 vi_tstamp:129923836800 data:0x0000000004370002
rtcpu_vinotify_event: tstamp:4060167015 cch:0 vi:0 tag:ATOMP_FRAME_DONE channel:0x23 frame:1 vi_tstamp:129923837312 data:0x0000000000000000
may I also know how many sensor modes available in your sensor driver side?
it looks you’ve two mode definitions in the driver side.
v4l2 IOCTL it’s actually paring the camera_common_frmfmt struct to report all available sensor modes.
please see-also reference camera driver,
for instance, $public_sources/r36.4.4/Linux_for_Tegra/source/kernel_src/nvidia-oot/drivers/media/i2c/imx219_mode_tbls.h
static const struct camera_common_frmfmt imx219_frmfmt[] = {
{{3280, 2464}, imx219_21fps, 1, 0, IMX219_MODE_3280x2464_21FPS},
{{3280, 1848}, imx219_28fps, 1, 0, IMX219_MODE_3280x1848_28FPS},
{{1920, 1080}, imx219_30fps, 1, 0, IMX219_MODE_1920x1080_30FPS},
...
}
so..
you may try to dig into your sensor driver, and leaving only 400x400 mode definition to test your camera stream for debugging.
omkarm
July 24, 2025, 1:03pm
16
Hi @JerryChang ,
Basically I’m using an Hardware ISP connected to Jetson Orin NX via MIPI CSI.
This ISP board support’s 2 pluggable camera’s, one is 400x400 @30fps and another is 720x720@33fps.
This ISP board outputs 8bit YUV422 with a max speed at 2.4Gbps
I made changes in the devicetree and removed the 720x720 mode and also I set the pixel clock value to half the value of the previous pixel clock(300MHz/2) as the camera is sending frames on 2 lanes.
Now the values in devicetree are,
pix_clk to 150000000
mclk_multiplier to 6.25
Also I’ve modified the driver to focus on 400x400 camera.
static const struct camera_common_frmfmt customcam_frmfmt[] = {
{{400, 400}, customcam_30fps, 1, 0, customcam_MODE_400X400}
};
After running the following command I’m getting this response
v4l2-ctl -d /dev/video0 --list-formats-ext
ioctl: VIDIOC_ENUM_FMT
Type: Video Capture
[0]: 'UYVY' (UYVY 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
[1]: 'NV16' (Y/CbCr 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
[2]: 'UYVY' (UYVY 4:2:2)
Size: Discrete 400x400
Interval: Discrete 0.033s (30.000 fps)
After the change i got the following logs from trace logs,
# tracer: nop
#
# entries-in-buffer/entries-written: 122528/122528 #P:4
#
# _-------=> irqs-off
# / _------=> need-resched
# | / _-----=> need-resched-lazy
# || / _----=> hardirq/softirq
# ||| / _---=> preempt-depth
# |||| / _--=> preempt-lazy-depth
# ||||| / _-=> migrate-disable
# |||||| / delay
# TASK-PID CPU# ||||||| TIMESTAMP FUNCTION
# | | | ||||||| | |
kworker/3:1-60 [003] ....... 4285.081697: rtcpu_string: tstamp:134618878547 id:0x04010000 str:"VM0 deactivating."
kworker/3:1-60 [003] ....... 4287.489670: rtcpu_string: tstamp:134694520523 id:0x04010000 str:"VM0 activating."
kworker/3:1-60 [003] ....... 4287.489675: rtcpu_nvcsi_intr: tstamp:134694803214 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489676: rtcpu_nvcsi_intr: tstamp:134694803214 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489676: rtcpu_nvcsi_intr: tstamp:134694803784 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489677: rtcpu_nvcsi_intr: tstamp:134694803784 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489677: rtcpu_nvcsi_intr: tstamp:134694807713 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489678: rtcpu_nvcsi_intr: tstamp:134694807713 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489678: rtcpu_nvcsi_intr: tstamp:134694808289 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489679: rtcpu_nvcsi_intr: tstamp:134694808289 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489679: rtcpu_nvcsi_intr: tstamp:134694812213 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489680: rtcpu_nvcsi_intr: tstamp:134694812213 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489680: rtcpu_nvcsi_intr: tstamp:134694812783 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489681: rtcpu_nvcsi_intr: tstamp:134694812783 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489681: rtcpu_nvcsi_intr: tstamp:134694816711 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489682: rtcpu_nvcsi_intr: tstamp:134694816711 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489682: rtcpu_nvcsi_intr: tstamp:134694817291 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489683: rtcpu_nvcsi_intr: tstamp:134694817291 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489683: rtcpu_nvcsi_intr: tstamp:134694821213 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489683: rtcpu_nvcsi_intr: tstamp:134694821213 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489684: rtcpu_nvcsi_intr: tstamp:134694821790 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489684: rtcpu_nvcsi_intr: tstamp:134694821790 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489684: rtcpu_nvcsi_intr: tstamp:134694825711 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489685: rtcpu_nvcsi_intr: tstamp:134694825711 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489685: rtcpu_nvcsi_intr: tstamp:134694826288 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489685: rtcpu_nvcsi_intr: tstamp:134694826288 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489686: rtcpu_nvcsi_intr: tstamp:134694830212 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489686: rtcpu_nvcsi_intr: tstamp:134694830212 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489686: rtcpu_nvcsi_intr: tstamp:134694830784 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489686: rtcpu_nvcsi_intr: tstamp:134694830784 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489687: rtcpu_nvcsi_intr: tstamp:134694834710 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489687: rtcpu_nvcsi_intr: tstamp:134694834710 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489687: rtcpu_nvcsi_intr: tstamp:134694835287 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489688: rtcpu_nvcsi_intr: tstamp:134694835287 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489688: rtcpu_nvcsi_intr: tstamp:134694839211 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489688: rtcpu_nvcsi_intr: tstamp:134694839211 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489689: rtcpu_nvcsi_intr: tstamp:134694839788 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489689: rtcpu_nvcsi_intr: tstamp:134694839788 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489689: rtcpu_nvcsi_intr: tstamp:134694843709 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489690: rtcpu_nvcsi_intr: tstamp:134694843709 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/3:1-60 [003] ....... 4287.489690: rtcpu_nvcsi_intr: tstamp:134694844286 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
Please let me know if I’m going in a right direction on this.
Also what I don’t understand is, the devicetree values which I had used in Jetson Nano where we are getting camera stream are not working with Orin NX.
hello omkarm,
I think we’re getting closer. there’s PHY interrupts, GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
the error code 0x44 indicate there’re more than one bit error has detected on data-lane.
one question regrading to your pixel clock rate, why you further to divid it by 2?
according to previous comments..
this pixel clock rate calculation seems correct.
you may keep using 300Mhz for testing your camera stream.
omkarm
July 28, 2025, 6:04am
18
Hi @JerryChang ,
I appreciate all the help you are providing me to debug this issue.
I updated to 300MHz and I was not getting the PHY interrupts when I checked the trace logs.
I reached out to the camera vendor and they have provided the following info,
clock:
continuous clock mode
clock = 144MHz
single lane data rate = 288Mbps
data lane:
2 lane
400x400, YUV422, 16 bit per pixel
frame info
fps = 30.063Hz
v total = 33.2639 ms
v blank = 4.5754 ms
v active = 28.6885 ms
line info
waveform not even,2lines as one group
h total ave. = 72 us
h active ≈ 11.204 us
calculated pixels per line 11.204 us x 144MHz x 4 / 16 = 403 ≈ 400 pixel
Ths-prepare ≈ 130ns
Ths-prepare + Ths-zero ≈ 450ns
Based on this information, I made the following changes in devicetree,
mode0 {
mclk_khz = "24000";
num_lanes = "2";
tegra_sinterface = "serial_c";
lane_polarity = "0";
phy_mode = "DPHY";
discontinuous_clk = "no";
dpcm_enable = "false";
cil_settletime = "0";
active_w = "400";
active_h = "400";
mode_type = "yuv";
pixel_phase = "uyvy";
csi_pixel_bit_depth = "16";
readout_orientation = "0";
line_length = "403";
inherent_gain = "1";
mclk_multiplier = "6";
pix_clk_hz = "144000000";
gain_factor = "1";
framerate_factor = "1000000";
exposure_factor = "1000000";
min_gain_val = "1";
max_gain_val = "255";
step_gain_val = "1";
default_gain = "16";
min_hdr_ratio = "1";
max_hdr_ratio = "1";
min_framerate = "3000000";
max_framerate = "30000000";
step_framerate = "1";
default_framerate = "30000000";
min_exp_time = "11"; /* us */
max_exp_time = "72"; /* us */
step_exp_time = "1";
default_exp_time = "72"; /* us */
embedded_metadata_height = "0";
};
With this change I’m unable to get frames but I’m getting the Phy interrupts,
# tracer: nop
#
# entries-in-buffer/entries-written: 247089/247089 #P:4
#
# _-------=> irqs-off
# / _------=> need-resched
# | / _-----=> need-resched-lazy
# || / _----=> hardirq/softirq
# ||| / _---=> preempt-depth
# |||| / _--=> preempt-lazy-depth
# ||||| / _-=> migrate-disable
# |||||| / delay
# TASK-PID CPU# ||||||| TIMESTAMP FUNCTION
# | | | ||||||| | |
kworker/0:2-146 [000] ....... 54.822826: rtcpu_dbg_set_loglevel: tstamp:2470253054 old:0 new:2
kworker/0:2-146 [000] ....... 59.922845: rtcpu_nvcsi_intr: tstamp:2629989522 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922848: rtcpu_nvcsi_intr: tstamp:2629989522 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922849: rtcpu_nvcsi_intr: tstamp:2629990092 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922849: rtcpu_nvcsi_intr: tstamp:2629990092 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922850: rtcpu_nvcsi_intr: tstamp:2629994020 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922850: rtcpu_nvcsi_intr: tstamp:2629994020 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922851: rtcpu_nvcsi_intr: tstamp:2629994597 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922851: rtcpu_nvcsi_intr: tstamp:2629994597 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922852: rtcpu_nvcsi_intr: tstamp:2629998522 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922852: rtcpu_nvcsi_intr: tstamp:2629998522 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922853: rtcpu_nvcsi_intr: tstamp:2629999095 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922853: rtcpu_nvcsi_intr: tstamp:2629999095 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922854: rtcpu_nvcsi_intr: tstamp:2630003020 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922854: rtcpu_nvcsi_intr: tstamp:2630003020 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922855: rtcpu_nvcsi_intr: tstamp:2630003601 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922855: rtcpu_nvcsi_intr: tstamp:2630003601 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922856: rtcpu_nvcsi_intr: tstamp:2630007521 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922857: rtcpu_nvcsi_intr: tstamp:2630007521 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922857: rtcpu_nvcsi_intr: tstamp:2630008132 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922858: rtcpu_nvcsi_intr: tstamp:2630008132 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922858: rtcpu_nvcsi_intr: tstamp:2630012022 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922859: rtcpu_nvcsi_intr: tstamp:2630012022 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922859: rtcpu_nvcsi_intr: tstamp:2630012600 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922860: rtcpu_nvcsi_intr: tstamp:2630012600 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922860: rtcpu_nvcsi_intr: tstamp:2630016521 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922861: rtcpu_nvcsi_intr: tstamp:2630016521 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922862: rtcpu_nvcsi_intr: tstamp:2630017098 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922862: rtcpu_nvcsi_intr: tstamp:2630017098 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922863: rtcpu_nvcsi_intr: tstamp:2630021022 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922863: rtcpu_nvcsi_intr: tstamp:2630021022 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922864: rtcpu_nvcsi_intr: tstamp:2630021599 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922864: rtcpu_nvcsi_intr: tstamp:2630021599 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922865: rtcpu_nvcsi_intr: tstamp:2630025521 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922866: rtcpu_nvcsi_intr: tstamp:2630025521 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922866: rtcpu_nvcsi_intr: tstamp:2630026097 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922867: rtcpu_nvcsi_intr: tstamp:2630026097 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922867: rtcpu_nvcsi_intr: tstamp:2630030021 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922868: rtcpu_nvcsi_intr: tstamp:2630030021 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922868: rtcpu_nvcsi_intr: tstamp:2630030598 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x10000040
kworker/0:2-146 [000] ....... 59.922869: rtcpu_nvcsi_intr: tstamp:2630030598 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00001040
kworker/0:2-146 [000] ....... 59.922870: rtcpu_nvcsi_intr: tstamp:2630034522 class:GLOBAL type:PHY_INTR0 phy:1 cil:0 st:0 vc:0 status:0x00000044
kworker/0:2-146 [000] ....... 59.922870: rtcpu_nvcsi_intr: tstamp:2630034522 class:CORRECTABLE_ERR type:PHY_INTR phy:1 cil:0 st:0 vc:0 status:0x00000044
hello omkarm,
just double check..
it should be, YUV422 : odd row drop V, even rows drop U. 4Y, 2U, 2V in 4-pixels; YUV=8+4+4= 16-bits.
let’s have a quick try to continue captures even if the channel encounters errors.
for instance, could you please refer to Topic 287883 as see-also.
omkarm
July 28, 2025, 7:15am
20
Hi @JerryChang
I checked out Topic 287883 post and referred to nvidia-oot/drivers/media/platform/tegra/camera/vi/vi5_fops.c file and looks like the code is quite different than what is mentioned in the post.
Here is the implementation I found out
static void vi5_capture_dequeue(struct tegra_channel *chan,
struct tegra_channel_buffer *buf)
{
int err = 0;
bool frame_err = false;
int vi_port = 0;
int gang_prev_frame_id = 0;
unsigned long flags;
struct tegra_mc_vi *vi = chan->vi;
struct vb2_v4l2_buffer *vb = &buf->buf;
int timeout_ms = CAPTURE_TIMEOUT_MS;
struct timespec64 ts;
struct capture_descriptor *descr = NULL;
for (vi_port = 0; vi_port < chan->valid_ports; vi_port++) {
descr = &chan->request[vi_port][buf->capture_descr_index[vi_port]];
if (buf->vb2_state != VB2_BUF_STATE_ACTIVE)
goto rel_buf;
/* Dequeue a frame and check its capture status */
timeout_ms = chan->capture_timeout_ms;
err = vi_capture_status(chan->tegra_vi_channel[vi_port], timeout_ms);
if (err) {
if (err == -ETIMEDOUT) {
if (timeout_ms < 0) {
spin_lock_irqsave(&chan->capture_state_lock, flags);
chan->capture_state = CAPTURE_ERROR_TIMEOUT;
spin_unlock_irqrestore(&chan->capture_state_lock, flags);
buf->vb2_state = VB2_BUF_STATE_ERROR;
goto rel_buf;
} else {
dev_err(vi->dev,
"uncorr_err: request timed out after %d ms\n",
timeout_ms);
}
} else {
dev_err(vi->dev, "uncorr_err: request err %d\n", err);
}
goto uncorr_err;
} else if (descr->status.status != CAPTURE_STATUS_SUCCESS) {
if ((descr->status.flags
& CAPTURE_STATUS_FLAG_CHANNEL_IN_ERROR) != 0) {
chan->queue_error = true;
dev_err(vi->dev, "uncorr_err: flags %d, err_data %d\n",
descr->status.flags, descr->status.err_data);
} else {
dev_warn(vi->dev,
"corr_err: discarding frame %d, flags: %d, "
"err_data %d\n",
descr->status.frame_id, descr->status.flags,
descr->status.err_data);
frame_err = true;
}
} else if (!vi_port) {
gang_prev_frame_id = descr->status.frame_id;
} else if (descr->status.frame_id != gang_prev_frame_id) {
dev_err(vi->dev, "frame_id out of sync: ch2 %d vs ch1 %d\n",
gang_prev_frame_id, descr->status.frame_id);
goto uncorr_err;
}
spin_lock_irqsave(&chan->capture_state_lock, flags);
if (chan->capture_state != CAPTURE_ERROR) {
chan->capture_reqs_enqueued -= 1;
chan->capture_state = CAPTURE_GOOD;
}
spin_unlock_irqrestore(&chan->capture_state_lock, flags);
}
wake_up_interruptible(&chan->start_wait);
/* Read SOF from capture descriptor */
ts = ns_to_timespec64((s64)descr->status.sof_timestamp);
trace_tegra_channel_capture_frame("sof", &ts);
vb->vb2_buf.timestamp = descr->status.sof_timestamp;
if (frame_err)
buf->vb2_state = VB2_BUF_STATE_ERROR;
else
buf->vb2_state = VB2_BUF_STATE_DONE;
/* Read EOF from capture descriptor */
ts = ns_to_timespec64((s64)descr->status.eof_timestamp);
trace_tegra_channel_capture_frame("eof", &ts);
goto rel_buf;
uncorr_err:
spin_lock_irqsave(&chan->capture_state_lock, flags);
chan->capture_state = CAPTURE_ERROR;
spin_unlock_irqrestore(&chan->capture_state_lock, flags);
buf->vb2_state = VB2_BUF_STATE_ERROR;
rel_buf:
vi5_release_buffer(chan, buf);
}
hello omkarm,
please check whether it’s entering frame_err to report VB2_BUF_STATE_ERROR.