@@ -9,6 +9,7 @@
#include <dt-bindings/bus/moxtet.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
+#include <dt-bindings/leds/common.h>
#include "armada-372x.dtsi"
/ {
@@ -273,6 +274,28 @@ &mdio {
phy1: ethernet-phy@1 {
reg = <1>;
+
+ leds {
+ compatible = "linux,hw-controlled-leds";
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ led@0 {
+ reg = <0>;
+ color = <LED_COLOR_ID_GREEN>;
+ function = LED_FUNCTION_STATUS;
+ linux,default-trigger = "dev-hw-mode";
+ linux,default-hw-mode = "1Gbps/100Mbps/10Mbps";
+ };
+
+ led@1 {
+ reg = <1>;
+ color = <LED_COLOR_ID_YELLOW>;
+ function = LED_FUNCTION_ACTIVITY;
+ linux,default-trigger = "dev-hw-mode";
+ linux,default-hw-mode = "blink-act";
+ };
+ };
};
/* switch nodes are enabled by U-Boot if modules are present */
Add nodes for the green and yellow LEDs that are connected to the ethernet PHY chip on Turris MOX A. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz> --- .../dts/marvell/armada-3720-turris-mox.dts | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+)