mediatek: update LED/Key bindings for Buffalo WSR-2533DHP2

Update LED and key nodes with newer DeviceTree bindings for WSR-2533DHP2.

- LED
  - use led-[0-9] for node name of LEDs
  - add "color" and "function" properties
  - drop default-state = "on" from green:power LED
    - this LED will be turned on by led-running alias

- key
  - drop unnecessary poll-interval property
  - use key-[0-9] for node name of keys

Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
This commit is contained in:
INAGAKI Hiroshi 2023-08-27 14:49:41 +09:00 committed by Hauke Mehrtens
parent 2970d4b6cc
commit 6b8e7144c8

View file

@ -2,6 +2,7 @@
/dts-v1/; /dts-v1/;
#include <dt-bindings/input/input.h> #include <dt-bindings/input/input.h>
#include <dt-bindings/gpio/gpio.h> #include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/leds/common.h>
#include "mt7622.dtsi" #include "mt7622.dtsi"
#include "mt6380.dtsi" #include "mt6380.dtsi"
@ -29,43 +30,53 @@
leds { leds {
compatible = "gpio-leds"; compatible = "gpio-leds";
wireless_amber { led-0 {
label = "amber:wireless"; label = "amber:wireless";
gpios = <&pio 2 GPIO_ACTIVE_HIGH>; gpios = <&pio 2 GPIO_ACTIVE_HIGH>;
color = <LED_COLOR_ID_AMBER>;
function = LED_FUNCTION_WLAN;
}; };
power_amber: power_amber { power_amber: led-1 {
label = "amber:power"; label = "amber:power";
gpios = <&pio 3 GPIO_ACTIVE_LOW>; gpios = <&pio 3 GPIO_ACTIVE_LOW>;
color = <LED_COLOR_ID_AMBER>;
function = LED_FUNCTION_POWER;
}; };
power_green: power_green { power_green: led-2 {
label = "green:power"; label = "green:power";
gpios = <&pio 4 GPIO_ACTIVE_LOW>; gpios = <&pio 4 GPIO_ACTIVE_LOW>;
default-state = "on"; color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_POWER;
}; };
wireless_green { led-3 {
label = "green:wireless"; label = "green:wireless";
gpios = <&pio 15 GPIO_ACTIVE_HIGH>; gpios = <&pio 15 GPIO_ACTIVE_HIGH>;
color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_WLAN;
}; };
internet { led-4 {
label = "green:internet"; label = "green:internet";
gpios = <&pio 19 GPIO_ACTIVE_HIGH>; gpios = <&pio 19 GPIO_ACTIVE_HIGH>;
color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_WAN;
}; };
router { led-5 {
label = "green:router"; label = "green:router";
gpios = <&pio 20 GPIO_ACTIVE_HIGH>; gpios = <&pio 20 GPIO_ACTIVE_HIGH>;
color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_INDICATOR;
}; };
}; };
keys { keys {
compatible = "gpio-keys"; compatible = "gpio-keys";
poll-interval = <100>;
reset { key-reset {
label = "reset"; label = "reset";
gpios = <&pio 0 GPIO_ACTIVE_LOW>; gpios = <&pio 0 GPIO_ACTIVE_LOW>;
linux,code = <KEY_RESTART>; linux,code = <KEY_RESTART>;
@ -74,14 +85,14 @@
/* GPIO 1 and 16 are a tri-state switch button with /* GPIO 1 and 16 are a tri-state switch button with
* ROUTER / AP / WB. * ROUTER / AP / WB.
*/ */
router { key-router {
label = "router"; label = "router";
gpios = <&pio 1 GPIO_ACTIVE_LOW>; gpios = <&pio 1 GPIO_ACTIVE_LOW>;
linux,code = <BTN_0>; linux,code = <BTN_0>;
linux,input-type = <EV_SW>; linux,input-type = <EV_SW>;
}; };
bridge { key-bridge {
label = "wb"; label = "wb";
gpios = <&pio 16 GPIO_ACTIVE_LOW>; gpios = <&pio 16 GPIO_ACTIVE_LOW>;
linux,code = <BTN_1>; linux,code = <BTN_1>;
@ -89,14 +100,14 @@
}; };
/* GPIO 18 is a switch button with AUTO / MANUAL. */ /* GPIO 18 is a switch button with AUTO / MANUAL. */
manual { key-manual {
label = "manual"; label = "manual";
gpios = <&pio 18 GPIO_ACTIVE_LOW>; gpios = <&pio 18 GPIO_ACTIVE_LOW>;
linux,code = <BTN_2>; linux,code = <BTN_2>;
linux,input-type = <EV_SW>; linux,input-type = <EV_SW>;
}; };
wps { key-wps {
label = "wps"; label = "wps";
gpios = <&pio 102 GPIO_ACTIVE_LOW>; gpios = <&pio 102 GPIO_ACTIVE_LOW>;
linux,code = <KEY_WPS_BUTTON>; linux,code = <KEY_WPS_BUTTON>;