[Help] Jetson AGX Orin + LT6911UXE MIPI CSI capture timeout: VI channel not found

I’ve been stuck on a capture issue with Jetson AGX Orin (kernel 5.10.120, Ubuntu) and LT6911UXE HDMI-to-MIPI CSI-2 bridge for a long time. I hope someone can help me out.

Environment

  • Platform: NVIDIA Jetson AGX Orin
  • Kernel: 5.10.120
  • Chip: LT6911UXE (I2C addr 30-002b)
  • Devices: /dev/video0, /dev/media0

Media topology and formats look good

From media-ctl -p -d /dev/media0:

  • All links are ENABLED
  • Path: lt6911uxe 30-002bnvcsi@15a00000vi-output /dev/video0

From v4l2-ctl --list-formats-ext:

  • 1920x1080@60fps
  • Formats: UYVY, NV16

Everything seems enumerated correctly.

Error when starting capture

Command:

plaintext

v4l2-ctl -d /dev/video0 --set-fmt-video=width=1920,height=1080,pixelformat=UYVY --stream-mmap=3 --stream-count=1 --stream-to=out.raw

Kernel errors:

plaintext

[  196.651691] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[  196.660837] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[  196.671263] (NULL device *): vi_capture_control_message: NULL VI channel received
[  196.678988] t194-nvcsi 13e40000.host1x:nvcsi@15a00000: csi5_stream_close: Error in closing stream_id=0, csi_port=0
[  196.689638] (NULL device *): vi_capture_control_message: NULL VI channel received
[  196.697350] t194-nvcsi 13e40000.host1x:nvcsi@15a00000: csi5_stream_open: VI channel not found for s

It seems the problem is not the I2C communication or driver probe,


I can successfully read and write LT6911UXE registers via I2C (I2C address 0x2b).The chip probe is OK, and all register values are normal.But I still get the VI capture timeout and VI channel not found error when capturing.

Hello @ChenYann,

Can you share your Device Tree node configuration?

The VI channel not found error sounds like it could be associated to a bad device tree configuration.

best,
Andrew
Embedded Software Engineer at ProventusNova

Sure, these are my device tree related files. Thank you.
I have also added the following content to the i2c@3180000 node in the tegra234-p3737-camera-modules.dtsi file.

	tca9548_70: tca9548@70 {
		status = "disabled";
		i2c@0 {
			lt6911uxe:lt6911uxe@2b {
				status = "disabled";
			};
		};
	};

tegra234-camera-lt6911uxe.dts

/ {
	tegra-capture-vi {
		num-channels = <1>;
		ports {
			#address-cells = <1>;
			#size-cells = <0>;
			port@0 {
				reg = <0>;
				lt6911uxe_vi_in0: endpoint {
					port-index = <0>;
					bus-width = <2>;
					remote-endpoint = <&lt6911uxe_csi_out0>;
				};
			};
		};
	};

	host1x@13e00000 {
		nvcsi@15a00000 {
			num-channels = <1>;
			channel@0 {
				reg = <0>;
				ports {
					#address-cells = <1>;
					#size-cells = <0>;
					port@0 {
						reg = <0>;
						lt6911uxe_csi_in0: endpoint@0 {
							port-index = <0>;
							bus-width = <2>;
							remote-endpoint = <&lt6911uxe_out0>;
						};
					};
					port@1 {
						reg = <1>;
						lt6911uxe_csi_out0: endpoint@1 {
							remote-endpoint = <&lt6911uxe_vi_in0>;
						};
					};
				};
			};
		};
	};

	i2c@3180000 {
		tca9548@70 {
			i2c@0 {
				lt6911uxe@2b {
					compatible = "lontium,lt6911uxe";
					reg = <0x2b>;
					devnode = "video0";

					/* Physical dimensions of sensor */
                    physical_w = "3.674";
                    physical_h = "2.738";

					sensor_model ="lt6911uxe";

					// lt6911uxe_1920x1080_60Fps
					mode0 { 
						mclk_khz = "24000";
						num_lanes = "2"; 
						tegra_sinterface = "serial_a";
						phy_mode = "DPHY";
						discontinuous_clk = "no";
						dpcm_enable = "false"; 
						cil_settletime = "0";
						lane_polarity = "6";

						active_w = "1920"; 
						active_h = "1080"; 
						mode_type = "yuv"; 
						pixel_phase = "uyvy"; 
						// csi_pixel_bit_depth = "24";
						csi_pixel_bit_depth = "16"; 
						readout_orientation = "0";
					
						line_length = "2200"; 

						inherent_gain = "1"; 
						mclk_multiplier = "24"; 
						pix_clk_hz = "148500000"; 

						gain_factor = "16"; 
						framerate_factor = "1000000";
						exposure_factor = "1000000";
						min_gain_val = "16";
						max_gain_val = "170";  
						step_gain_val = "1"; 
						default_gain = "16";   
						min_hdr_ratio = "1";
						max_hdr_ratio = "1";
						min_framerate = "2000000";
						max_framerate = "60000000";  
						step_framerate = "1";
						default_framerate = "60000000";
						min_exp_time = "13"; 
						max_exp_time = "683709";  
						step_exp_time = "1";
						default_exp_time = "16667"; 
					};


					ports {
						#address-cells = <1>;
						#size-cells = <0>;

						port@0 {
							reg = <0>;
							lt6911uxe_out0: endpoint {
								port-index = <0>;
								bus-width = <2>;
								remote-endpoint = <&lt6911uxe_csi_in0>;
							};
						};
					};
				};
			};
		};
	};


	tegra-camera-platform {
		compatible = "nvidia, tegra-camera-platform";
		num_csi_lanes = <2>;
		max_lane_speed = <1500000>;
		min_bits_per_pixel = <16>; 
		vi_peak_byte_per_pixel = <2>; 
		vi_bw_margin_pct = <30>;
		isp_peak_byte_per_pixel = <4>;
		isp_bw_margin_pct = <30>;

		modules {
			module0 {
				badge = "lontronix_lt6911uxe";
				position = "rear";
				orientation = "0";
				drivernode0 {
					pcl_id = "v4l2_sensor";
					devname = "lt6911uxe 30-002b";
					proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@70/i2c@0/lt6911uxe@2b";
				};
			};
		};
	};
};

tegra234-p3737-0000-camera-lt6911uxe.dtsi


#include <t234-common-modules/tegra234-camera-lt6911uxe.dtsi>
#include "dt-bindings/clock/tegra234-clock.h"

/* camera control gpio definitions */
#define LT6911_RST_L	TEGRA234_MAIN_GPIO(Z, 3)
#define CAMERA_I2C_MUX_BUS(x) (0x1E + x)

/* TODO: Re-enable cam1 and cam2*/
/ {
	gpio@2200000 {
		camera-control-output-low {
			gpio-hog;
			output-low;
			gpios = <LT6911_RST_L 0>;
			label = "lt6911-rst";
		};
	};

	i2c@3180000 {
		tca9548_70: tca9548@70 {
			compatible = "nxp,pca9548";
			reg = <0x70>;
			#address-cells = <1>;
			#size-cells = <0>;
			vcc-supply = <&p3737_vdd_1v8_sys>;
			vcc-pullup-supply = <&battery_reg>;
			skip_mux_detect;
			force_bus_start = <CAMERA_I2C_MUX_BUS(0)>;
			i2c@0 {
				reg = <0>;
				i2c-mux,deselect-on-exit;
				#address-cells = <1>;
				#size-cells = <0>;
				lt6911uxe@2b {
					clocks = <&bpmp_clks TEGRA234_CLK_EXTPERIPH1>,
						 <&bpmp_clks TEGRA234_CLK_PLLP_OUT0>;
					clock-names = "extperiph1", "pllp_grtba";
					mclk = "extperiph1";
					clock-frequency = <24000000>;
					reset-gpios = <&tegra_main_gpio LT6911_RST_L GPIO_ACTIVE_LOW>;
					// vana-supply = <&p3737_avdd_cam_2v8>;
					// vif-supply = <&p3737_vdd_1v8_sys>;
					// vdig-supply = <&p3737_vdd_sys_en>;
				};
			};
		};
	};
};

tegra234-p3737-camera-lt6911uxe-overlay.dts

/dts-v1/;
/plugin/;

#include "dt-bindings/gpio/tegra234-gpio.h"
#include "dt-bindings/clock/tegra234-clock.h"

#define LT6911_RST_L	TEGRA234_MAIN_GPIO(Z, 3)

/ {
    overlay-name = "Jetson LONTRONIX LT6911UXE";
    jetson-header-name = "Jetson AGX CSI Connector";
    compatible = "nvidia,p3737-0000+p3701-0000", "nvidia,tegra234", "nvidia,tegra23x";

	/* lt6911uxe camera board */
	/* VI number of channels */
	fragment@0 {
		/// target = <&capture_vi_base>;
		target-path = "/tegra-capture-vi";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			num-channels=<1>;
		};
	};
    /* CSI number of channels */
	fragment@1 {
		/// target = <&csi_base>;
		target-path = "/host1x@13e00000/nvcsi@15a00000";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			num-channels=<1>;
		};
	};
    /* tegra-camera-platform settings */
	fragment@2 {
		/// target = <&tcp>;
		target-path = "/tegra-camera-platform";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
            num_csi_lanes = <2>;
            max_lane_speed = <1500000>;
            min_bits_per_pixel = <16>; 
            vi_peak_byte_per_pixel = <2>;
            vi_bw_margin_pct = <30>;
            isp_peak_byte_per_pixel = <4>;
            isp_bw_margin_pct = <30>;
		};
	};
    /* TCA9548 */
	fragment@3 {
		/// target = <&tca9548_70>;
		target-path = "/i2c@3180000/tca9548@70";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
    /* Camera 0: Module */
	fragment@4 {
		/// target = <&lt6911uxe@2b>;
		target-path = "/i2c@3180000/tca9548@70/i2c@0/lt6911uxe@2b";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
    fragment@5 {
		/// target = <&cam_module0>;
		target-path = "/tegra-camera-platform/modules/module0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
			badge = "lontronix_lt6911uxe";
			position = "rear";
			orientation = "0";
		};
	};
    fragment@6 {
		/// target = <&cam_module0_drivernode0>;
		target-path = "/tegra-camera-platform/modules/module0/drivernode0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
			pcl_id = "v4l2_sensor";
            devname = "lt6911uxe 30-002b";
            proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@70/i2c@0/lt6911uxe@2b";
		};
	};
    /* Camera 0: VI */
	fragment@7 {
		/// target = <&vi_port0>;
		target-path = "/tegra-capture-vi/ports/port@0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
	fragment@8 {
		/// target = <&lt6911uxe_vi_in0>;
		target-path = "/tegra-capture-vi/ports/port@0/endpoint";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
			port-index = <0>;
			bus-width = <2>;
			remote-endpoint = <&lt6911uxe_csi_out0>;
			/// remote-endpoint = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1";
		};
	};
	/* Camera 0: CSI */
	fragment@9 {
		/// target = <&csi_chan0>;
		target-path = "/host1x@13e00000/nvcsi@15a00000/channel@0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
	fragment@10 {
		/// target = <&csi_chan0_port0>;
		target-path = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
	fragment@11 {
		/// target = <&ly6911uce_csi_in0>;
		target-path = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@0/endpoint@0";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
			port-index = <0>;
			bus-width = <2>;
			remote-endpoint = <&lt6911uxe_out0>;
			/// remote-endpoint = "/i2c@3180000/tca9548@77/i2c@0/lt6911uxe@2b/ports/port@0/endpoint";
		};
	};
	fragment@14 {
		/// target = <&csi_chan0_port1>;
		target-path = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
		};
	};
	fragment@15 {
		/// target = <&lt6911uxe_csi_out0>;
		target-path = "/host1x@13e00000/nvcsi@15a00000/channel@0/ports/port@1/endpoint@1";
		board_config {
			sw-modules = "kernel";
		};
		__overlay__ {
			status = "okay";
			remote-endpoint = <&lt6911uxe_vi_in0>;
			/// remote-endpoint = "/tegra-capture-vi/ports/port@0/endpoint";
		};
	};
};

Get the trace log to analysis.

Thanks

I captured the log using sudo dmesg and saw the error:csi5_stream_close: Error in closing stream_id=0, csi_port=0

How can I capture trace logs? Are there any recommended commands?

Get the trace log by below command.

modprobe rtcpu_debug

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 3 > /sys/kernel/debug/camrtc/log-level
echo 1 > /sys/kernel/debug/tracing/events/camera_common/enable
echo > /sys/kernel/debug/tracing/trace

v4l2-ctl --stream-mmap -c bypass_mode=0

cat /sys/kernel/debug/tracing/trace

I have run the command mentioned above.

fk@tegra-ubuntu:~$ modprobe rtcpu_debug
modprobe: FATAL: Module rtcpu_debug not found in directory /lib/modules/5.10.120-tegra

Even when using the sudo dmesg command, an error still occurred.

[ 1721.573494] tegra-camrtc-capture-vi tegra-capture-vi: uncorr_err: request timed out after 2500 ms
[ 1721.582660] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: attempting to reset the capture channel
[ 1721.593403] (NULL device *): vi_capture_control_message: NULL VI channel received
[ 1721.601173] t194-nvcsi 13e40000.host1x:nvcsi@15a00000: csi5_stream_close: Error in closing stream_id=0, csi_port=0
[ 1721.611848] (NULL device *): vi_capture_control_message: NULL VI channel received
[ 1721.619563] t194-nvcsi 13e40000.host1x:nvcsi@15a00000: csi5_stream_open: VI channel not found for stream- 0 vc- 0
[ 1721.630323] tegra-camrtc-capture-vi tegra-capture-vi: err_rec: successfully reset the capture channel

By executing the command cat /sys/kernel/debug/tracing/trace > trace.log, the obtained content is as follows:

# tracer: nop
#
# entries-in-buffer/entries-written: 126/126   #P:12
#
#                                _-----=> irqs-off
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| /     delay
#           TASK-PID     CPU#  ||||   TIMESTAMP  FUNCTION
#              | |         |   ||||      |         |
    kworker/11:0-7774    [011] ....  1335.241786: rtcpu_string: tstamp:42426552121 id:0x04010000 str:"VM0 deactivating."
        v4l2-ctl-8648    [007] ....  1335.436301: tegra_channel_open: vi-output, lt6911uxe 30-002b
        v4l2-ctl-8648    [007] ....  1335.444137: tegra_channel_set_power: lt6911uxe 30-002b : 0x1
        v4l2-ctl-8648    [007] ....  1335.444148: camera_common_s_power: status : 0x1
        v4l2-ctl-8648    [007] ....  1335.457972: tegra_channel_set_power: 13e40000.host1x:nvcsi@15a00000- : 0x1
        v4l2-ctl-8648    [007] ....  1335.457975: csi_s_power: enable : 0x1
        v4l2-ctl-8648    [007] ....  1335.459258: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
        v4l2-ctl-8648    [007] ....  1335.482789: tegra_channel_set_stream: enable : 0x1
        v4l2-ctl-8648    [007] ....  1335.506389: tegra_channel_set_stream: 13e40000.host1x:nvcsi@15a00000- : 0x1
        v4l2-ctl-8648    [007] ....  1335.506391: csi_s_stream: enable : 0x1
        v4l2-ctl-8648    [007] ....  1335.506699: tegra_channel_set_stream: lt6911uxe 30-002b : 0x1
    kworker/11:0-7774    [011] ....  1335.521720: rtcpu_string: tstamp:42434669302 id:0x04010000 str:"VM0 activating."
    kworker/11:0-7774    [011] ....  1335.521723: rtcpu_vinotify_event: tstamp:42435292823 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1357919160128 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1335.521724: rtcpu_vinotify_event: tstamp:42435293025 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1357919166560 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1335.521724: rtcpu_vinotify_event: tstamp:42435293222 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1357919221952 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1335.521725: rtcpu_vinotify_event: tstamp:42435293392 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1357919228512 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1338.134216: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1338.153721: rtcpu_vinotify_event: tstamp:42518301040 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1360571188224 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1338.153722: rtcpu_vinotify_event: tstamp:42518301177 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1360571230912 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1338.153722: rtcpu_vinotify_event: tstamp:42518301332 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1360571248480 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1338.153723: rtcpu_vinotify_event: tstamp:42518301469 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1360571308864 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1340.950106: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1341.009839: rtcpu_vinotify_event: tstamp:42606193523 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1363387106272 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1341.009841: rtcpu_vinotify_event: tstamp:42606193662 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1363387148960 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1341.009842: rtcpu_vinotify_event: tstamp:42606193824 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1363387166496 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1341.009843: rtcpu_vinotify_event: tstamp:42606193956 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1363387226912 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1343.766024: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1343.809911: rtcpu_vinotify_event: tstamp:42693851031 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1366203023840 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1343.809913: rtcpu_vinotify_event: tstamp:42693851167 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1366203066496 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1343.809914: rtcpu_vinotify_event: tstamp:42693851321 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1366203084128 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1343.809914: rtcpu_vinotify_event: tstamp:42693851453 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1366203144544 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1346.582077: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1346.622024: rtcpu_vinotify_event: tstamp:42781867267 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1369019062432 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1346.622027: rtcpu_vinotify_event: tstamp:42781867404 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1369019105088 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1346.622028: rtcpu_vinotify_event: tstamp:42781867558 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1369019122688 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1346.622029: rtcpu_vinotify_event: tstamp:42781867691 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1369019183040 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1349.398197: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1349.422095: rtcpu_vinotify_event: tstamp:42870301744 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1371835175168 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1349.422098: rtcpu_vinotify_event: tstamp:42870301884 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1371835217824 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1349.422098: rtcpu_vinotify_event: tstamp:42870302040 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1371835235424 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1349.422099: rtcpu_vinotify_event: tstamp:42870302173 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1371835295776 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1352.214349: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1352.277975: rtcpu_vinotify_event: tstamp:42958193050 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1374651340864 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1352.277978: rtcpu_vinotify_event: tstamp:42958193188 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1374651383552 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1352.277979: rtcpu_vinotify_event: tstamp:42958193347 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1374651397120 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1352.277980: rtcpu_vinotify_event: tstamp:42958193480 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1374651461344 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1355.030098: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1355.082053: rtcpu_vinotify_event: tstamp:43045852881 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1377467083104 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1355.082056: rtcpu_vinotify_event: tstamp:43045853021 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1377467125792 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1355.082056: rtcpu_vinotify_event: tstamp:43045853178 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1377467143328 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1355.082057: rtcpu_vinotify_event: tstamp:43045853312 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1377467203680 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1357.846069: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1357.882118: rtcpu_vinotify_event: tstamp:43133868060 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1380283052352 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1357.882120: rtcpu_vinotify_event: tstamp:43133868201 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1380283095040 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1357.882121: rtcpu_vinotify_event: tstamp:43133868357 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1380283112640 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1357.882122: rtcpu_vinotify_event: tstamp:43133868489 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1380283173024 data:0x0000000031000002
 vi-output, lt69-8651    [000] .N..  1360.662396: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1360.690178: rtcpu_vinotify_event: tstamp:43222301345 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1383099376000 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1360.690180: rtcpu_vinotify_event: tstamp:43222301485 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1383099418688 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1360.690181: rtcpu_vinotify_event: tstamp:43222301643 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1383099436320 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1360.690181: rtcpu_vinotify_event: tstamp:43222301776 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1383099496704 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1363.479242: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1363.494274: rtcpu_vinotify_event: tstamp:43310192587 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1385916218528 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1363.494277: rtcpu_vinotify_event: tstamp:43310192726 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1385916261184 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1363.494278: rtcpu_vinotify_event: tstamp:43310192885 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1385916278816 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1363.494278: rtcpu_vinotify_event: tstamp:43310193017 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1385916339200 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1366.295187: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1366.302482: rtcpu_vinotify_event: tstamp:43397887090 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1388732177664 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1366.302484: rtcpu_vinotify_event: tstamp:43397887226 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1388732220352 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1366.302485: rtcpu_vinotify_event: tstamp:43397887382 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1388732237984 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1366.302486: rtcpu_vinotify_event: tstamp:43397887514 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1388732298336 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1369.110953: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1369.166510: rtcpu_vinotify_event: tstamp:43485921317 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1391548041440 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1369.166511: rtcpu_vinotify_event: tstamp:43485921455 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1391548084128 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1369.166511: rtcpu_vinotify_event: tstamp:43485921609 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1391548101664 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1369.166512: rtcpu_vinotify_event: tstamp:43485921741 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1391548162016 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1371.927097: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1371.982455: rtcpu_vinotify_event: tstamp:43574355796 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1394364189568 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1371.982456: rtcpu_vinotify_event: tstamp:43574355932 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1394364232224 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1371.982456: rtcpu_vinotify_event: tstamp:43574356088 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1394364249792 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1371.982457: rtcpu_vinotify_event: tstamp:43574356220 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1394364310144 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1374.743044: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1374.786530: rtcpu_vinotify_event: tstamp:43662247177 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1397180143680 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1374.786530: rtcpu_vinotify_event: tstamp:43662247313 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1397180186368 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1374.786530: rtcpu_vinotify_event: tstamp:43662247483 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1397180203904 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1374.786530: rtcpu_vinotify_event: tstamp:43662247614 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1397180264256 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1377.559113: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:0-7774    [011] ....  1377.594590: rtcpu_vinotify_event: tstamp:43749888941 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1399996236896 data:0x359d580010000000
    kworker/11:0-7774    [011] ....  1377.594591: rtcpu_vinotify_event: tstamp:43749889078 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1399996279584 data:0x0000000031000001
    kworker/11:0-7774    [011] ....  1377.594591: rtcpu_vinotify_event: tstamp:43749889231 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1399996297216 data:0x359d550010000000
    kworker/11:0-7774    [011] ....  1377.594591: rtcpu_vinotify_event: tstamp:43749889362 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1399996357568 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1380.375010: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1380.398658: rtcpu_vinotify_event: tstamp:43837921985 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1402811991520 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1380.398659: rtcpu_vinotify_event: tstamp:43837922121 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1402812034208 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1380.398659: rtcpu_vinotify_event: tstamp:43837922274 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1402812051840 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1380.398659: rtcpu_vinotify_event: tstamp:43837922405 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1402812112192 data:0x0000000031000002
 vi-output, lt69-8651    [011] ....  1383.191218: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1383.262750: rtcpu_vinotify_event: tstamp:43926356334 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1405628384928 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1383.262753: rtcpu_vinotify_event: tstamp:43926356473 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1405628427616 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1383.262754: rtcpu_vinotify_event: tstamp:43926356627 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1405628445216 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1383.262754: rtcpu_vinotify_event: tstamp:43926356758 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1405628508448 data:0x0000000031000002
 vi-output, lt69-8651    [000] ....  1386.007158: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1386.062815: rtcpu_vinotify_event: tstamp:44014247650 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1408444265536 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1386.062818: rtcpu_vinotify_event: tstamp:44014247806 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1408444308224 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1386.062819: rtcpu_vinotify_event: tstamp:44014247964 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1408444325920 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1386.062820: rtcpu_vinotify_event: tstamp:44014248095 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1408444386240 data:0x0000000031000002
 vi-output, lt69-8651    [001] ....  1388.823118: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1388.866872: rtcpu_vinotify_event: tstamp:44101884228 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1411260086176 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1388.866875: rtcpu_vinotify_event: tstamp:44101884367 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1411260128864 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1388.866876: rtcpu_vinotify_event: tstamp:44101884520 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1411260146528 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1388.866876: rtcpu_vinotify_event: tstamp:44101884651 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1411260206848 data:0x0000000031000002
 vi-output, lt69-8651    [001] ....  1391.638978: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1391.666936: rtcpu_vinotify_event: tstamp:44189921801 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1414075985600 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1391.666938: rtcpu_vinotify_event: tstamp:44189921937 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1414076028288 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1391.666939: rtcpu_vinotify_event: tstamp:44189922091 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1414076045920 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1391.666940: rtcpu_vinotify_event: tstamp:44189922222 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1414076106304 data:0x0000000031000002
 vi-output, lt69-8651    [001] ....  1394.454956: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1394.523003: rtcpu_vinotify_event: tstamp:44278356404 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1416891924224 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1394.523005: rtcpu_vinotify_event: tstamp:44278356543 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1416891966912 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1394.523006: rtcpu_vinotify_event: tstamp:44278356701 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1416891984480 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1394.523006: rtcpu_vinotify_event: tstamp:44278356832 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1416892044800 data:0x0000000031000002
 vi-output, lt69-8651    [001] ....  1397.271160: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
    kworker/11:8-203     [011] ....  1397.323069: rtcpu_vinotify_event: tstamp:44366247893 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1419708131200 data:0x359d580010000000
    kworker/11:8-203     [011] ....  1397.323071: rtcpu_vinotify_event: tstamp:44366248030 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1419708173920 data:0x0000000031000001
    kworker/11:8-203     [011] ....  1397.323072: rtcpu_vinotify_event: tstamp:44366248190 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1419708191392 data:0x359d550010000000
    kworker/11:8-203     [011] ....  1397.323073: rtcpu_vinotify_event: tstamp:44366248321 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:1419708251776 data:0x0000000031000002

Thank you for your reply.

The trace log shows doesn’t receive any data from the sensor.

You may need to probe the output signal.

Is this related to the channel configuration? For example, if CSI port channel 0 was mistakenly used as channel 1, or if there was an error in the VI port configuration.

I can’t tell, you need to confirm the port-index/bus-width with your HW connection.

Thanks

We are using 2 lanes, and we have tested the wiring; no connection issues were found.

CSI0_D0_P → MIPI_lane0_0+

CSI0_D0_N → MIPI_lane0_0-

CSI0_CLK_P → MIPI_CLK_0+

CSI0_CLK_N → MIPI_CLK_0-

CSI0_D1_P → MIPI_lane1_0+

CSI0_D1_N → MIPI_lane1_0-


Dump the device tree to confirm the port-index.

sudo dtc -I fs -O dts -o extracted_proc.dts /sys/firmware/devicetree/base

This is part of the device tree.

i2c@3180000

i2c@3180000 {
	iommus = <0x03 0x04>;
	#address-cells = <0x01>;
	dma-coherent;
	clock-names = "div-clk\0parent";
	assigned-clocks = <0x02 0x32>;
	assigned-clock-parents = <0x02 0x66>;
	resets = <0x02 0x1e>;
	interrupts = <0x00 0x1b 0x04>;
	clocks = <0x02 0x32 0x02 0x66>;
	nvidia,hw-instance-id = <0x02>;
	#size-cells = <0x00>;
	clock-frequency = <0x61a80>;
	dma-names = "rx\0tx";
	compatible = "nvidia,tegra234-i2c";
	scl-gpio = <0x04 0x72 0x00>;
	sda-gpio = <0x04 0x73 0x00>;
	status = "okay";
	reg = <0x00 0x3180000 0x00 0x100>;
	phandle = <0x306>;
	dmas = <0x05 0x17 0x05 0x17>;
	reset-names = "i2c";
	nvidia,epl-reporter-id = <0x8052>;

	prod-settings {
		#prod-cells = <0x04>;

		prod {
			prod = <0x00 0x9c 0xffff 0x308 0x00 0xd4 0xff 0x00 0x00 0xd8 0xff 0x00 0x00 0xdc 0xffff 0x01 0x00 0xe0 0xffff 0x02>;
		};

		prod_c_fm {
			prod = <0x00 0x6c 0xffff0000 0x3c0000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>;
		};

		prod_c_hs {
			prod = <0x00 0x6c 0xffffffff 0x160002 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202 0x00 0xa0 0xffffff 0x90909>;
		};

		prod_c_sm {
			prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>;

			board {
				prod = <0x00 0x6c 0xffff0000 0x4f0000 0x00 0x94 0xffff 0x708 0x00 0x98 0xffffffff 0x8080808>;
			};
		};

		prod_c_fmplus {
			prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>;

			board {
				prod = <0x00 0x6c 0xffff0000 0x160000 0x00 0x94 0xffff 0x202 0x00 0x98 0xffffffff 0x2020202>;
			};
		};
	};

	tca9548@70 {
		#address-cells = <0x01>;
		force_bus_start = <0x1e>;
		#size-cells = <0x00>;
		compatible = "nxp,pca9548";
		status = "okay";
		reg = <0x70>;
		phandle = <0x562>;
		vcc-supply = <0x08>;
		skip_mux_detect;

		i2c@0 {
			#address-cells = <0x01>;
			#size-cells = <0x00>;
			i2c-mux,deselect-on-exit;
			status = "okay";
			reg = <0x00>;
			phandle = <0x563>;

			lt6911uxe@2b {
				sensor_model = "lt6911uxe";
				clock-names = "extperiph1\0pllp_grtba";
				devnode = "video0";
				vana-supply = <0x0c>;
				clocks = <0x02 0x24 0x02 0x24>;
				reset-delay-ms = <0x0a>;
				mclk = "extperiph1";
				post-reset-delay-ms = <0x32>;
				vif-supply = <0x08>;
				reset-gpios = <0x04 0x9b 0x01>;
				compatible = "lontium,lt6911uxe";
				physical_h = "2.738";
				status = "okay";
				#sensor-cells = <0x01>;
				reg = <0x2b>;
				phandle = <0x564>;
				physical_w = "3.674";
				mclk-freq = <0x16e3600>;

				mode0 {
					discontinuous_clk = "no";
					readout_orientation = [30 00];
					exposure_factor = "1000000";
					mclk_khz = "24000";
					phy_mode = "DPHY";
					default_gain = "16";
					dpcm_enable = "false";
					max_gain_val = "170";
					framerate_factor = "1000000";
					min_hdr_ratio = [31 00];
					num_lanes = [32 00];
					max_framerate = "60000000";
					min_gain_val = "16";
					pixel_phase = "uyvy";
					mode_type = "yuv";
					pix_clk_hz = "148500000";
					step_gain_val = [31 00];
					cil_settletime = "25";
					default_exp_time = "16667";
					active_h = "1080";
					max_exp_time = "683709";
					lane_polarity = [36 00];
					active_w = "1920";
					min_exp_time = "13";
					max_hdr_ratio = [31 00];
					min_framerate = "2000000";
					mclk_multiplier = "24";
					step_exp_time = [31 00];
					default_framerate = "60000000";
					csi_pixel_bit_depth = "16";
					step_framerate = [31 00];
					inherent_gain = [31 00];
					line_length = "2200";
					tegra_sinterface = "serial_b";
					gain_factor = "16";
				};

				ports {
					#address-cells = <0x01>;
					#size-cells = <0x00>;

					port@0 {
						reg = <0x00>;

						endpoint {
							bus-width = <0x02>;
							remote-endpoint = <0x561>;
							port-index = <0x00>;
							phandle = <0x55f>;
						};
					};
				};
			};
		};
	};
};

tegra-camera-platform

tegra-camera-platform {
	tpg_max_iso = <0x3bc400>;
	vi_bw_margin_pct = <0x1e>;
	max_lane_speed = <0x16e360>;
	vi_peak_byte_per_pixel = <0x02>;
	num_csi_lanes = <0x02>;
	max_pixel_rate = <0xb71b0>;
	compatible = "nvidia, tegra-camera-platform";
	status = "okay";
	min_bits_per_pixel = <0x10>;
	isp_bw_margin_pct = <0x1e>;
	isp_peak_byte_per_pixel = <0x04>;
	phandle = <0x539>;

	modules {
		module0 {
			badge = "lontronix_lt6911uxe";
			position = "rear";
			status = "okay";
			orientation = [30 00];
			phandle = <0x53a>;

			drivernode0 {
				devname = "lt6911uxe 30-002b";
				proc-device-tree = "/proc/device-tree/i2c@3180000/tca9548@70/i2c@0/lt6911uxe@2b";
				pcl_id = "v4l2_sensor";
				status = "okay";
				phandle = <0x53b>;
			};

			drivernode1 {
				proc-device-tree = "/proc/device-tree/lens_imx274@A6V26/";
				pcl_id = "v4l2_lens";
				status = "disabled";
				phandle = <0x53c>;
			};
		};
	};
};

host1x@13e00000/nvcsi@15a00000

host1x@13e00000 {
	iommus = <0x20 0x27 0x20 0x3d 0x20 0x3e 0x20 0x3f 0x20 0x40 0x20 0x41 0x20 0x42 0x20 0x43 0x20 0x44>;
	wakeup_capable;
	#address-cells = <0x02>;
	dma-coherent;
	interconnect-names = "dma-mem";
	clock-names = "host1x\0actmon";
	interconnects = <0x45 0x16>;
	reg-names = "guest\0hypervisor\0actmon\0sem-syncpt-shim\0common";
	interrupts = <0x00 0x1c0 0x04 0x00 0x1c1 0x04 0x00 0x1c2 0x04 0x00 0x1c3 0x04 0x00 0x1c4 0x04 0x00 0x1c5 0x04 0x00 0x1c6 0x04 0x00 0x1c7 0x04 0x00 0x107 0x04>;
	clocks = <0x02 0x2e 0x02 0x01>;
	#size-cells = <0x02>;
	nvidia,vmid = <0x01>;
	compatible = "nvidia,tegra234-host1x\0simple-bus";
	ranges;
	status = "okay";
	reg = <0x00 0x13e40000 0x00 0x10000 0x00 0x13e10000 0x00 0x10000 0x00 0x13ef0000 0x00 0x40000 0x00 0x60000000 0x00 0x4000000 0x00 0x13e00000 0x00 0x10000>;
	phandle = <0x33>;
	nvidia,ignore-dt-update;

	nvcsi@15a00000 {
		#address-cells = <0x01>;
		num-tpg-channels = <0x24>;
		clock-names = "nvcsi";
		clocks = <0x02 0x51>;
		#size-cells = <0x00>;
		num-channels = <0x01>;
		compatible = "nvidia,tegra194-nvcsi";
		status = "okay";
		phandle = <0x4c4>;

		channel@0 {
			status = "okay";
			reg = <0x00>;
			phandle = <0x4c5>;

			ports {
				#address-cells = <0x01>;
				#size-cells = <0x00>;

				port@0 {
					status = "okay";
					reg = <0x00>;
					phandle = <0x4c6>;

					endpoint@0 {
						bus-width = <0x02>;
						remote-endpoint = <0x55f>;
						port-index = <0x00>;
						status = "okay";
						phandle = <0x561>;
					};
				};

				port@1 {
					status = "okay";
					reg = <0x01>;
					phandle = <0x4c7>;

					endpoint@1 {
						remote-endpoint = <0x560>;
						status = "okay";
						phandle = <0x55e>;
					};
				};
			};
		};
	};
};

tegra-capture-vi

tegra-capture-vi {
	nvidia,vi-max-channels = <0x48>;
	nvidia,vi-mapping-size = <0x06>;
	nvidia,vi-devices = <0x26b 0x26d>;
	nvidia,vi-mapping = <0x00 0x00 0x01 0x00 0x02 0x01 0x03 0x01 0x04 0x00 0x05 0x01>;
	num-channels = <0x01>;
	compatible = "nvidia,tegra-camrtc-capture-vi";
	status = "okay";
	nvidia,vi-mapping-names = "csi-stream-id\0vi-unit-id";
	phandle = <0x49b>;

	ports {
		#address-cells = <0x01>;
		#size-cells = <0x00>;

		port@0 {
			status = "okay";
			reg = <0x00>;
			phandle = <0x49c>;

			endpoint {
				bus-width = <0x02>;
				remote-endpoint = <0x55e>;
				vc-id = <0x00>;
				port-index = <0x00>;
				status = "okay";
				phandle = <0x560>;
			};
		};
	};
};

You should remove the “lane_polarity = 6;“ for AGX Orin.

This property only for Orin NX/Nano

Thanks

I made the following changes: deleted lane_polarity = [36 00];, changed tegra_sinterface = "serial_b"; to tegra_sinterface = "serial_a";, yet the result was the same as before.
/i2c@3180000/tc9548@70

tca9548@70 {
			#address-cells = <0x01>;
			force_bus_start = <0x1e>;
			#size-cells = <0x00>;
			compatible = "nxp,pca9548";
			status = "okay";
			reg = <0x70>;
			phandle = <0x562>;
			vcc-supply = <0x08>;
			skip_mux_detect;

			i2c@0 {
				#address-cells = <0x01>;
				#size-cells = <0x00>;
				i2c-mux,deselect-on-exit;
				status = "okay";
				reg = <0x00>;
				phandle = <0x563>;

				lt6911uxe@2b {
					sensor_model = "lt6911uxe";
					clock-names = "extperiph1\0pllp_grtba";
					devnode = "video0";
					vana-supply = <0x0c>;
					clocks = <0x02 0x24 0x02 0x24>;
					reset-delay-ms = <0x0a>;
					mclk = "extperiph1";
					post-reset-delay-ms = <0x32>;
					vif-supply = <0x08>;
					reset-gpios = <0x04 0x9b 0x01>;
					compatible = "lontium,lt6911uxe";
					physical_h = "2.738";
					status = "okay";
					#sensor-cells = <0x01>;
					reg = <0x2b>;
					phandle = <0x564>;
					physical_w = "3.674";
					mclk-freq = <0x16e3600>;

					mode0 {
						discontinuous_clk = "no";
						readout_orientation = [30 00];
						exposure_factor = "1000000";
						mclk_khz = "24000";
						phy_mode = "DPHY";
						default_gain = "16";
						dpcm_enable = "false";
						max_gain_val = "170";
						framerate_factor = "1000000";
						min_hdr_ratio = [31 00];
						num_lanes = [32 00];
						max_framerate = "60000000";
						min_gain_val = "16";
						pixel_phase = "uyvy";
						mode_type = "yuv";
						pix_clk_hz = "148500000";
						step_gain_val = [31 00];
						cil_settletime = "25";
						default_exp_time = "16667";
						active_h = "1080";
						max_exp_time = "683709";
						active_w = "1920";
						min_exp_time = "13";
						max_hdr_ratio = [31 00];
						min_framerate = "2000000";
						mclk_multiplier = "24";
						step_exp_time = [31 00];
						default_framerate = "60000000";
						csi_pixel_bit_depth = "16";
						step_framerate = [31 00];
						inherent_gain = [31 00];
						line_length = "2200";
						tegra_sinterface = "serial_a";
						gain_factor = "16";
					};

					ports {
						#address-cells = <0x01>;
						#size-cells = <0x00>;

						port@0 {
							reg = <0x00>;

							endpoint {
								bus-width = <0x02>;
								remote-endpoint = <0x561>;
								port-index = <0x00>;
								phandle = <0x55f>;
							};
						};
					};
				};
			};
		};

trace.log

# tracer: nop
#
# entries-in-buffer/entries-written: 81/81   #P:12
#
#                                _-----=> irqs-off
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| /     delay
#           TASK-PID     CPU#  ||||   TIMESTAMP  FUNCTION
#              | |         |   ||||      |         |
     kworker/8:3-143     [008] ....   656.729431: rtcpu_string: tstamp:21222254326 id:0x04010000 str:"VM0 deactivating."
        v4l2-ctl-6744    [009] ....   658.980227: tegra_channel_open: vi-output, lt6911uxe 30-002b
        v4l2-ctl-6744    [009] ....   658.987642: tegra_channel_set_power: lt6911uxe 30-002b : 0x1
        v4l2-ctl-6744    [009] ....   658.987697: camera_common_s_power: status : 0x1
        v4l2-ctl-6744    [001] ....   659.001724: tegra_channel_set_power: 13e40000.host1x:nvcsi@15a00000- : 0x1
        v4l2-ctl-6744    [001] ....   659.001730: csi_s_power: enable : 0x1
        v4l2-ctl-6744    [001] ....   659.002653: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
        v4l2-ctl-6744    [002] ....   659.023586: tegra_channel_set_stream: enable : 0x1
     kworker/8:3-143     [008] ....   659.025077: rtcpu_string: tstamp:21294995307 id:0x04010000 str:"VM0 activating."
     kworker/8:3-143     [008] ....   659.081059: rtcpu_vinotify_event: tstamp:21295522330 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:681446369056 data:0x359d580010000000
     kworker/8:3-143     [008] ....   659.081060: rtcpu_vinotify_event: tstamp:21295522552 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:681446375552 data:0x0000000031000001
     kworker/8:3-143     [008] ....   659.081060: rtcpu_vinotify_event: tstamp:21295522816 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:681446421664 data:0x359d550010000000
     kworker/8:3-143     [008] ....   659.081061: rtcpu_vinotify_event: tstamp:21295523030 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:681446428224 data:0x0000000031000002
        v4l2-ctl-6744    [002] ....   659.096223: tegra_channel_set_stream: 13e40000.host1x:nvcsi@15a00000- : 0x1
        v4l2-ctl-6744    [002] ....   659.096227: csi_s_stream: enable : 0x1
        v4l2-ctl-6744    [002] ....   659.096548: tegra_channel_set_stream: lt6911uxe 30-002b : 0x1
 vi-output, lt69-6747    [001] ....   661.777360: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   661.829057: rtcpu_vinotify_event: tstamp:21381782452 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:684200700320 data:0x359d580010000000
     kworker/8:3-143     [008] ....   661.829058: rtcpu_vinotify_event: tstamp:21381782592 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:684200743008 data:0x0000000031000001
     kworker/8:3-143     [008] ....   661.829059: rtcpu_vinotify_event: tstamp:21381782749 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:684200760672 data:0x359d550010000000
     kworker/8:3-143     [008] ....   661.829059: rtcpu_vinotify_event: tstamp:21381782880 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:684200821024 data:0x0000000031000002
 vi-output, lt69-6747    [001] ....   664.593352: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   664.633034: rtcpu_vinotify_event: tstamp:21469673877 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:687016691296 data:0x359d580010000000
     kworker/8:3-143     [008] ....   664.633036: rtcpu_vinotify_event: tstamp:21469674012 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:687016733952 data:0x0000000031000001
     kworker/8:3-143     [008] ....   664.633036: rtcpu_vinotify_event: tstamp:21469674168 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:687016751616 data:0x359d550010000000
     kworker/8:3-143     [008] ....   664.633036: rtcpu_vinotify_event: tstamp:21469674299 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:687016812000 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   667.409594: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   667.437016: rtcpu_vinotify_event: tstamp:21557287701 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:689832997248 data:0x359d580010000000
     kworker/8:3-143     [008] ....   667.437018: rtcpu_vinotify_event: tstamp:21557287837 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:689833039936 data:0x0000000031000001
     kworker/8:3-143     [008] ....   667.437018: rtcpu_vinotify_event: tstamp:21557287989 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:689833057568 data:0x359d550010000000
     kworker/8:3-143     [008] ....   667.437019: rtcpu_vinotify_event: tstamp:21557288119 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:689833117952 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   670.225324: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   670.237002: rtcpu_vinotify_event: tstamp:21645293928 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:692648680160 data:0x359d580010000000
     kworker/8:3-143     [008] ....   670.237003: rtcpu_vinotify_event: tstamp:21645294063 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:692648722848 data:0x0000000031000001
     kworker/8:3-143     [008] ....   670.237004: rtcpu_vinotify_event: tstamp:21645294214 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:692648740480 data:0x359d550010000000
     kworker/8:3-143     [008] ....   670.237004: rtcpu_vinotify_event: tstamp:21645294344 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:692648800832 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   673.041398: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   673.096983: rtcpu_vinotify_event: tstamp:21733728235 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:695464751712 data:0x359d580010000000
     kworker/8:3-143     [008] ....   673.096985: rtcpu_vinotify_event: tstamp:21733728370 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:695464794400 data:0x0000000031000001
     kworker/8:3-143     [008] ....   673.096985: rtcpu_vinotify_event: tstamp:21733728523 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:695464812000 data:0x359d550010000000
     kworker/8:3-143     [008] ....   673.096986: rtcpu_vinotify_event: tstamp:21733728654 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:695464872352 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   675.857389: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   675.896968: rtcpu_vinotify_event: tstamp:21821619636 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:698280741664 data:0x359d580010000000
     kworker/8:3-143     [008] ....   675.896970: rtcpu_vinotify_event: tstamp:21821619773 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:698280784352 data:0x0000000031000001
     kworker/8:3-143     [008] ....   675.896970: rtcpu_vinotify_event: tstamp:21821619937 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:698280802016 data:0x359d550010000000
     kworker/8:3-143     [008] ....   675.896971: rtcpu_vinotify_event: tstamp:21821620069 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:698280862400 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   678.673529: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   678.700951: rtcpu_vinotify_event: tstamp:21909289287 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:701097047968 data:0x359d580010000000
     kworker/8:3-143     [008] ....   678.700953: rtcpu_vinotify_event: tstamp:21909289422 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:701097090656 data:0x0000000031000001
     kworker/8:3-143     [008] ....   678.700953: rtcpu_vinotify_event: tstamp:21909289573 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:701097108288 data:0x359d550010000000
     kworker/8:3-143     [008] ....   678.700954: rtcpu_vinotify_event: tstamp:21909289706 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:701097168672 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   681.489577: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   681.500955: rtcpu_vinotify_event: tstamp:21997294441 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:703912910304 data:0x359d580010000000
     kworker/8:3-143     [008] ....   681.500956: rtcpu_vinotify_event: tstamp:21997294577 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:703912953024 data:0x0000000031000001
     kworker/8:3-143     [008] ....   681.500956: rtcpu_vinotify_event: tstamp:21997294733 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:703912970592 data:0x359d550010000000
     kworker/8:3-143     [008] ....   681.500957: rtcpu_vinotify_event: tstamp:21997294864 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:703913030912 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   684.306184: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   684.356924: rtcpu_vinotify_event: tstamp:22085728392 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:706729542688 data:0x359d580010000000
     kworker/8:3-143     [008] ....   684.356926: rtcpu_vinotify_event: tstamp:22085728528 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:706729585344 data:0x0000000031000001
     kworker/8:3-143     [008] ....   684.356926: rtcpu_vinotify_event: tstamp:22085728681 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:706729602976 data:0x359d550010000000
     kworker/8:3-143     [008] ....   684.356927: rtcpu_vinotify_event: tstamp:22085728812 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:706729663392 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   687.121749: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   687.156909: rtcpu_vinotify_event: tstamp:22173619558 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:709545095584 data:0x359d580010000000
     kworker/8:3-143     [008] ....   687.156912: rtcpu_vinotify_event: tstamp:22173619691 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:709545138240 data:0x0000000031000001
     kworker/8:3-143     [008] ....   687.156912: rtcpu_vinotify_event: tstamp:22173619847 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:709545155872 data:0x359d550010000000
     kworker/8:3-143     [008] ....   687.156912: rtcpu_vinotify_event: tstamp:22173619975 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:709545216256 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   689.938105: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   689.964894: rtcpu_vinotify_event: tstamp:22261302383 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:712361467200 data:0x359d580010000000
     kworker/8:3-143     [008] ....   689.964895: rtcpu_vinotify_event: tstamp:22261302518 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:712361509888 data:0x0000000031000001
     kworker/8:3-143     [008] ....   689.964896: rtcpu_vinotify_event: tstamp:22261302675 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:712361527552 data:0x359d550010000000
     kworker/8:3-143     [008] ....   689.964896: rtcpu_vinotify_event: tstamp:22261302803 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:712361587872 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   692.753414: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   692.780875: rtcpu_vinotify_event: tstamp:22349293980 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:715176788736 data:0x359d580010000000
     kworker/8:3-143     [008] ....   692.780877: rtcpu_vinotify_event: tstamp:22349294114 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:715176831424 data:0x0000000031000001
     kworker/8:3-143     [008] ....   692.780877: rtcpu_vinotify_event: tstamp:22349294266 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:715176848960 data:0x359d550010000000
     kworker/8:3-143     [008] ....   692.780877: rtcpu_vinotify_event: tstamp:22349294397 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:715176909312 data:0x0000000031000002
 vi-output, lt69-6747    [004] ....   695.569367: tegra_channel_capture_setup: vnc_id 0 W 1920 H 1080 fmt 13
     kworker/8:3-143     [008] ....   695.584880: rtcpu_vinotify_event: tstamp:22437728362 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:717992720192 data:0x359d580010000000
     kworker/8:3-143     [008] ....   695.584882: rtcpu_vinotify_event: tstamp:22437728497 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:717992762848 data:0x0000000031000001
     kworker/8:3-143     [008] ....   695.584882: rtcpu_vinotify_event: tstamp:22437728650 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:717992780480 data:0x359d550010000000
     kworker/8:3-143     [008] ....   695.584883: rtcpu_vinotify_event: tstamp:22437728780 cch:0 vi:0 tag:VIFALC_TDSTATE channel:0x23 frame:0 vi_tstamp:717992840864 data:0x0000000031000002

If your port-index/bus-width match to your HW design you real need to check the HW due NVCSI/VI don’t receive any data from the MIPI bus.

For the device tree of lt6911uxe, I referred to the tegra234-camera-p3785.dtsi file.

I replaced the imx219 device with the lt6911uxe at the corresponding position, re-edited the device tree, and kept the same CSI ports and VI ports configurations.

The nvgstcapture-1.0 command can capture images normally, so I believe there is no issue with the hardware link.

After switching back to the lt6911uxe device, the video0 device can still be detected, but the nvgstcapture-1.0 command does not work.

Are there any other available commands?

thanks

Do you mean nvgstcapture-1.0 can see the preview with lt6911uxe?

I don’t think nvgstcaptrue-1.0 able to support YUV format sensor.

1、The IMX219 camera module can display images normally using the nvgstcapture-1.0 tool.

2、The LT6911 video bridge chip fails to display any images when using nvgstcapture-1.0.

3、When executing the command v4l2-ctl -d /dev/video0 --set-fmt-video=width=1920,height=1080,pixelformat=UYVY --stream-mmap=3 --stream-count=1 --stream-to=out.raw for the LT6911, the following errors are shown in the output of sudo dmesg.

This error tell unable capture frame data from the sensor and timeout.

Also the trace log shows doesn’t receive any data.

Please probe LT6911 output signal to make sure the output follow the MIPI spec.

Thanks