I’m trying to use a DM3730’s GPIO_112 as an input, yet the input reads as 1 regardless of the actual input signal. Mux configuration in u-boot below:
MUX_VAL(CP(CSI2_DX0), (IEN | PTD | DIS | M4)) /* GPIO_112 */\
I can set the actual input low (~0 V) or high (~1.8 V) however under both conditions the OS reports a state of high (1) when the following commands are issued:
# echo 112 > /sys/class/gpio/export
# cat /sys/class/gpio/gpio112/value
1
# cat /sys/class/gpio/gpio112/active_low
0
# cat /sys/class/gpio/gpio112/direction
in
This input was previously working when routed to GPIO_22. Is there some configuration step I’m missing?