Orin NX 16GB CSI Camera not working (IMX219)

Hi! Just got my brand-new Orin NX with the CSI camera, which doesn’t seem to work. I tried different configs, but can’t get it working. I see there’s something about gpio-394 (camera-control-output-low): hogged as output/low any ideas what that means or how to fix this? Thanks!

jetson@yahboom:~$ cat /etc/nv_tegra_release
# R36 (release), REVISION: 4.3, GCID: 38968081, BOARD: generic, EABI: aarch64, DATE: Wed Jan  8 01:49:37 UTC 2025
# KERNEL_VARIANT: oot
TARGET_USERSPACE_LIB_DIR=nvidia
TARGET_USERSPACE_LIB_DIR_PATH=usr/lib/aarch64-linux-gnu/nvidia
jetson@yahboom:~$ v4l2-ctl --list-devices
NVIDIA Tegra Video Input Device (platform:tegra-camrtc-ca):
	/dev/media0

**Cannot open device /dev/video0, exiting.**
jetson@yahboom:~$ sudo dmesg | grep -i csi
[sudo] password for jetson: 
[    0.084602] SCSI subsystem initialized
[    0.136204] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    8.422298] platform 13e00000.host1x:nvcsi@15a00000: Fixing up cyclic dependency with 10-0010
[    8.422315] platform 13e00000.host1x:nvcsi@15a00000: Fixing up cyclic dependency with 9-0010
[    8.422330] platform 13e00000.host1x:nvcsi@15a00000: Fixing up cyclic dependency with tegra-capture-vi
[    9.100492] tegra-camrtc-capture-vi tegra-capture-vi: subdev 13e00000.host1x:nvcsi@15a00000- bound
[    9.100502] tegra-camrtc-capture-vi tegra-capture-vi: subdev 13e00000.host1x:nvcsi@15a00000- bound
jetson@yahboom:~$ sudo dmesg | grep -i camera
**[    3.775064] gpio-394 (camera-control-output-low): hogged as output/low**

Did you run jetson-io to enable the IMX219 ?

Yes, I tried all possible combinations

Any message about imx219?

sudo dmesg | grep -i imx219

Yes, there appears to be an issue:

sudo dmesg | grep -i IMX219
[    9.514044] imx219 9-0010: tegracam sensor driver:imx219_v2.0.6
[    9.524744] imx219 9-0010: imx219_board_setup: error during i2c read probe (-121)
[    9.529852] imx219 9-0010: board setup failed
[    9.529905] imx219: probe of 9-0010 failed with error -121
[    9.533092] imx219 10-0010: tegracam sensor driver:imx219_v2.0.6
[    9.543681] imx219 10-0010: imx219_board_setup: error during i2c read probe (-121)
[    9.548787] imx219 10-0010: board setup failed
[    9.548844] imx219: probe of 10-0010 failed with error -121

This error message tell the i2c communication error with imx219.
It could be the HW like cable problem.
Please reconnect the camera or verify the HW by another Orin NX to confirm.

Thanks