Tool/software:
Hallo,
is it possible to prevent a gpio pin to be resetted.
We configured a gpio as gpio-hog and set it high:
main_gpio0_pins_default: main-gpio0-pins-default {
...
AM64X_IOPAD(0x00d8, PIN_OUTPUT, 7) /* (W13) PRG1_PRU0_GPO8.GPIO0_53 */
...
}
&main_gpio0 {
pinctrl-names = "default";
pinctrl-0 = <&main_gpio0_pins_default>;
...
nReset {
gpio-hog;
gpios = <53 0>;
output-high;
};
};
This pin is set to low during reboot. But we would like to keep it high. Is it possible?
I checked already the gpio in u-boot, but it's not used there.
Regards,
Artur