Hi,
[Plaform] Jetson AGX Orin Developer Kit 64G + single imx219 camera
[SDK and source code pkg] JetPack 6.1 Jetson Linux Version 36.4
- I am porting the nv_imx219 camera sensor driver. I don’t modify nv_imx219.c, just modify the dts files from hardware/nvidia/t23x/nv-public/overlay/. Because our imx219 sensor module is connected to CSI0 for CSI input, so we set
tegra_sinterface = "serial_a";
and changed theport-index in the device tree to 0
. Below are the dts file I configured for the imx219:
imx219_dts.zip (8.7 KB)
Additionally, I converted the imx219 dtbo to dts, as shown in imx219_dtb_to_dts.txt
.
imx219_dtb_to_dts.txt (11.2 KB)
-
The connection with CSI pin is:
-
. After selecting the overlay for imx219 using jetson-io.py, the device boots up and successfully recognizes /dev/video0, and I can also see successful I2C read and write operations to the register.
-
When I input the command below, Isee the error occurs, the output is recorded in
v4l2.txt
.
v4l2.txt (8.7 KB)
v4l2-ctl -d /dev/video0 --set-fmt-video=width=3280,height=2464,pixelformat=RG10 --stream-count=4 --verbose --stream-mmap
-
In
dmesg
, it prints “request timed out after 2500 ms,” as shown indmesg.txt
.
dmesg.txt (111.5 KB) -
I also followed the Steps_to_enable_more_debug_messages as detailed in Jetson/l4t/Camera BringUp - eLinux.org and obtained the
tracer.txt
log.
tracer.txt (10.1 KB)
Could you provide suggestions on how to resolve this issue? Thanks in advance.