cancel
Showing results for 
Search instead for 
Did you mean: 

How to change the pin that is used for the u-boot programming mode

Hammy
Associate III

How do I change the pin for the u-boot-stm32mp programmer mode at boot up?

1 ACCEPTED SOLUTION

Accepted Solutions
Hammy
Associate III

In the your-board-name-u-boot.dtsi file you can change it at

/ {
      * * *
	config{
		st,stm32prog-gpios = <&gpio0 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
	};
};

so search for the st,stm32prog-gpios tag.

View solution in original post

1 REPLY 1
Hammy
Associate III

In the your-board-name-u-boot.dtsi file you can change it at

/ {
      * * *
	config{
		st,stm32prog-gpios = <&gpio0 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
	};
};

so search for the st,stm32prog-gpios tag.