I am trying to interface the MAX7320 I2C slave device with the Jetson Orin Nano Developer Kit. The expansion header J40 pin 3 (I2C1_SDA) and pin 5 (I2C1_SCL) are connected to our custom board. The MAX7320 output GPIO is controlled by the Orin nano. The driver is probed, and virtual GPIOs are exposed, as shown in the below image.
Using the “gpioset” command, the value 1 is written into the respective pin of the gpiochip2.
test@test:~$ sudo gpioset 2 3=1
test@test:~$ sudo gpioset 2 4=1
When I read back the values using the “gpioget” command, it returns 1.
test@test:~$ sudo gpioget 2 3
1
test@test:~$ sudo gpioget 2 4
1
The port expander GPIOs are connected to the enable pin of the buck regulator, and the chip output supply didn’t power on. The voltage measured across the output test points is 0 volts.
Previously, we were using the Jetpack SDK 5.1.1 with Jetson Linux 35.3.1, and it was working fine. The Jetpack SDK 6.0 is flashed into the Orin Nano Developer Kit. After that, we couldn’t enable the buck regulators supply voltage using the virtual GPIO created by the MAX7320 IC. There is no source code difference in the “drivers/gpio/gpio-max732x.c” driver in both 5.10 and 5.15 Linux kernels.
I am seeing this issue only with jetpack SDK 6.0
Can you provide some suggestions for further debugging?