I am using an GPO to enable/disable an IC which has an active low enable signal. My system is powered by a battery. When the TX2 is OFF I have that GPO connected to a 10k pull up (to keep my IC in an disabled sate when the TX2 is OFF) to a 1V8 (which is always on even when TX2 is OFF) .
Question is in the OFF state looks like the TX2’s GPO is pulling down the I/O line. My 10K pull up seems too weak and I read 0.34V on that I/O. Looks like there is a pull down on the GPIO in the OFF state. Why is this? What is the GPIO state of the TX2 in the OFF condition? Should it be High-Z?
We’re able to control the state of the GPIO correctly when the power is on, however we need it to be HIGH when power is off, while it seems to always be LOW when powered off.
I am a little confused, as you know the pin can’t be high by itself when power is off. Meanwhile it has default pull-down to GND which will work during power off.
Hi @Trumany , I’m working on this with @dhrumil44 Thanks for your responses so far.
We just wanted to clarify whether there’s any way to configure a pin to by high when the Jetson is powered off but still connected to battery? (ie. Make high the default state of the pin when powered off?)
To clarify, the pins on the VDDIO_AO / VDDIO_AO_HV power rails can be high while the system is off, while the power rail our pin is using (VDDIO_UARTCAM) can only be low when the Jetson is not running, is that correct?
This is correct! @Trumany@jeremypd5mf looks like the pin we are using (GPIO1 , on Pin F7) is not part of the VDDIO_AO / VDDIO_AO_HV and we cannot change this as the hardware is already built.
Regardless we are okay if we can not pull the pin high when the system is OFF (we have another power rail we can pull this up to).
The problem is that on this GPIO pin its Pulling this pin LOW (looks like there is a strong ~1K pull down to GND so when we pull up the pin using another power rail using a 10K resistor the pin is still LOW because of that strong pull down). Why is this? Is this for protection? Ideally one would assume in an OFF state the GPIO pins would be high impedance/floating (or open drain).
We are wondering if there is anyway to NOT pull down the GPIO LOW when the system is OFF.
If the system power supply is not unplugged, you can try the pins on the VDDIO_AO / VDDIO_AO_HV power rails as said, not sure if that can work certainly for your case. The default pull down of pins on other power domains won’t be changed since the pins are not power supplied.
@Trumany , we realize the GPIO pin we are using most likely has protection circuit as shown in my previous post (see image with 2 diodes). The solution to keep the voltage rail “HIGH” after shutting down the Jetson TX2 module is to pull up that GPIO pin to another another always on voltage rail with a 10K resistor. This way during normal operation GPIO works normally but during shutdown the GPIO is kept high.
Alternate solution if you do not have a another always on voltage rail is to use the GPIO pins on VDDIO_AO / VDDIO_AO_HV as @Trumany suggested. We have not tested this though.