]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: dts: stm32: Add gpio-keys for stm32mp157c-ed1-scmi-u-boot
authorPatrice Chotard <patrice.chotard@foss.st.com>
Tue, 9 Apr 2024 15:02:12 +0000 (17:02 +0200)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Fri, 19 Apr 2024 10:05:10 +0000 (12:05 +0200)
Add 2 gpio-keys :
  _ button-user-1 for stm32prog mode activation.
  _ button-user-2 for fastboot mode activation.

Remove proprietary st,fastboot-gpios and st,stm32prog-gpios.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
arch/arm/dts/stm32mp157c-ed1-scmi-u-boot.dtsi

index 4d763bd3a2c598aa84c6b431030681548297af0f..84920f534960c95fb0259800bc2bf1a9a6641c77 100644 (file)
@@ -3,6 +3,7 @@
  * Copyright : STMicroelectronics 2022
  */
 
+#include <dt-bindings/input/linux-event-codes.h>
 #include "stm32mp15-scmi-u-boot.dtsi"
 
 / {
                u-boot,boot-led = "heartbeat";
                u-boot,error-led = "error";
                u-boot,mmc-env-partition = "u-boot-env";
-               st,fastboot-gpios = <&gpioa 13 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
-               st,stm32prog-gpios = <&gpioa 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
+       };
+
+       gpio-keys {
+               compatible = "gpio-keys";
+
+               button-user-1 {
+                       label = "User-1";
+                       linux,code = <BTN_1>;
+                       gpios = <&gpioa 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
+               };
+
+               button-user-2 {
+                       label = "User-2";
+                       linux,code = <BTN_2>;
+                       gpios = <&gpioa 13 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
+               };
        };
 
        led {