I am porting the CSI camera driver from Jetson Xavier NX to Jetson Orin NX (same Jetpack 5.1.2).
In my driver, I use PCC.02 for an interrupt pin on our custom carrier board.
In the setup for Jetson Xavier NX, I need to disable the PCC.02 pin for “Wifi disable” before using for my CSI camera.
I can find this define in tegra194-p3668-common.dtsi
But in the setup for Jetson Orin NX, I can not find the definition of PCC.02 on the kernel device tree.
So, where is the definition for “Wifi Disable” on the device tree for Jetson Orin NX ?
But the PCC.02 looks like can not works as an interrupt.
So i think this pin maybe in use for Wifi disable pin (same with the Jetson Xavier NX). Is it correct ?
Looks like the PCC.02 is ready for my driver. Is it correct ?
If yes, can you help me to take a look into my define for the interrupt pin
It works in Jetson Xavier NX, but no works in Jetson Orin NX. Is there anything changed ?
lt6911uxc_c is your driver and implement the interrupt?
→ Yes, correct.
I’m using the HDMI to CSI converter chip. The chip will trigger an interrupt pin when the input HDMI was detected. It’s active HIGH
You can verify the pin by sysfs to confirm the functionality first.
→ How can I do that ?
How do you confirm it works or not?
→ I can confirm the code in device work with Jetson Xavier NX. I tried with the same carrier for Jetson Xavier NX, same Jetpack 5.1.2, and the Jetson Xavier NX works.
You can try export the pin by yourself for debug.
→ I tried, but no luck
Also, I check with “cat /proc/interrupts”, the result show me that the interrupt was initial done, but the interrupt still not work when I try to change the input voltage from High to Low, from Low to High.