[PATCH] ARM: dts: bananapi: add support for PHY LEDs

Michael Klein posted 1 patch 9 months, 1 week ago
There is a newer version of this series
.../boot/dts/allwinner/sun7i-a20-bananapi.dts | 27 +++++++++++++++++++
1 file changed, 27 insertions(+)
[PATCH] ARM: dts: bananapi: add support for PHY LEDs
Posted by Michael Klein 9 months, 1 week ago
The Bananapi M1 has three LEDs connected to the RTL8211E ethernet PHY.
Add the corresponding nodes to the device tree.

Signed-off-by: Michael Klein <michael@fossekall.de>
---
 .../boot/dts/allwinner/sun7i-a20-bananapi.dts | 27 +++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
index 46ecf9db2324..d8b362c9661a 100644
--- a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
+++ b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
@@ -48,6 +48,7 @@
 
 #include <dt-bindings/gpio/gpio.h>
 #include <dt-bindings/interrupt-controller/irq.h>
+#include <dt-bindings/leds/common.h>
 
 / {
 	model = "LeMaker Banana Pi";
@@ -169,6 +170,32 @@ &ir0 {
 &gmac_mdio {
 	phy1: ethernet-phy@1 {
 		reg = <1>;
+
+		leds {
+			#address-cells = <1>;
+			#size-cells = <0>;
+
+			led@0 {
+				reg = <0>;
+				color = <LED_COLOR_ID_GREEN>;
+				function = LED_FUNCTION_LAN;
+				linux,default-trigger = "netdev";
+			};
+
+			led@1 {
+				reg = <1>;
+				color = <LED_COLOR_ID_AMBER>;
+				function = LED_FUNCTION_LAN;
+				linux,default-trigger = "netdev";
+			};
+
+			led@2 {
+				reg = <2>;
+				color = <LED_COLOR_ID_BLUE>;
+				function = LED_FUNCTION_LAN;
+				linux,default-trigger = "netdev";
+			};
+		};
 	};
 };
 
-- 
2.39.5
Re: [PATCH] ARM: dts: bananapi: add support for PHY LEDs
Posted by Chen-Yu Tsai 9 months, 1 week ago
On Wed, May 7, 2025 at 4:56 AM Michael Klein <michael@fossekall.de> wrote:
>
> The Bananapi M1 has three LEDs connected to the RTL8211E ethernet PHY.
> Add the corresponding nodes to the device tree.

I see from old emails that this was supposed to be updated? And if you
didn't, then his patch should be marked as a "RESEND", so tooling doesn't
get confused and ignore it.

I'll wait a couple days in case anyone else wants to take a look.

ChenYu

> Signed-off-by: Michael Klein <michael@fossekall.de>
> ---
>  .../boot/dts/allwinner/sun7i-a20-bananapi.dts | 27 +++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
> index 46ecf9db2324..d8b362c9661a 100644
> --- a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
> +++ b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
> @@ -48,6 +48,7 @@
>
>  #include <dt-bindings/gpio/gpio.h>
>  #include <dt-bindings/interrupt-controller/irq.h>
> +#include <dt-bindings/leds/common.h>
>
>  / {
>         model = "LeMaker Banana Pi";
> @@ -169,6 +170,32 @@ &ir0 {
>  &gmac_mdio {
>         phy1: ethernet-phy@1 {
>                 reg = <1>;
> +
> +               leds {
> +                       #address-cells = <1>;
> +                       #size-cells = <0>;
> +
> +                       led@0 {
> +                               reg = <0>;
> +                               color = <LED_COLOR_ID_GREEN>;
> +                               function = LED_FUNCTION_LAN;
> +                               linux,default-trigger = "netdev";
> +                       };
> +
> +                       led@1 {
> +                               reg = <1>;
> +                               color = <LED_COLOR_ID_AMBER>;
> +                               function = LED_FUNCTION_LAN;
> +                               linux,default-trigger = "netdev";
> +                       };
> +
> +                       led@2 {
> +                               reg = <2>;
> +                               color = <LED_COLOR_ID_BLUE>;
> +                               function = LED_FUNCTION_LAN;
> +                               linux,default-trigger = "netdev";
> +                       };
> +               };
>         };
>  };
>
> --
> 2.39.5
>
>
Re: [PATCH] ARM: dts: bananapi: add support for PHY LEDs
Posted by Michael Klein 9 months, 1 week ago
On Thu, May 08, 2025 at 12:45:28AM +0900, Chen-Yu Tsai wrote:
>On Wed, May 7, 2025 at 4:56 AM Michael Klein <michael@fossekall.de> wrote:
>>
>> The Bananapi M1 has three LEDs connected to the RTL8211E ethernet PHY.
>> Add the corresponding nodes to the device tree.
>
>I see from old emails that this was supposed to be updated? And if you
>didn't, then his patch should be marked as a "RESEND", so tooling doesn't
>get confused and ignore it.

Thank you for the reminder. Yes, the commit message was supposed to be 
updated. I'll follow up.

Michael

>I'll wait a couple days in case anyone else wants to take a look.
>
>ChenYu
>
>> Signed-off-by: Michael Klein <michael@fossekall.de>
>> ---
>>  .../boot/dts/allwinner/sun7i-a20-bananapi.dts | 27 +++++++++++++++++++
>>  1 file changed, 27 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
>> index 46ecf9db2324..d8b362c9661a 100644
>> --- a/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
>> +++ b/arch/arm/boot/dts/allwinner/sun7i-a20-bananapi.dts
>> @@ -48,6 +48,7 @@
>>
>>  #include <dt-bindings/gpio/gpio.h>
>>  #include <dt-bindings/interrupt-controller/irq.h>
>> +#include <dt-bindings/leds/common.h>
>>
>>  / {
>>         model = "LeMaker Banana Pi";
>> @@ -169,6 +170,32 @@ &ir0 {
>>  &gmac_mdio {
>>         phy1: ethernet-phy@1 {
>>                 reg = <1>;
>> +
>> +               leds {
>> +                       #address-cells = <1>;
>> +                       #size-cells = <0>;
>> +
>> +                       led@0 {
>> +                               reg = <0>;
>> +                               color = <LED_COLOR_ID_GREEN>;
>> +                               function = LED_FUNCTION_LAN;
>> +                               linux,default-trigger = "netdev";
>> +                       };
>> +
>> +                       led@1 {
>> +                               reg = <1>;
>> +                               color = <LED_COLOR_ID_AMBER>;
>> +                               function = LED_FUNCTION_LAN;
>> +                               linux,default-trigger = "netdev";
>> +                       };
>> +
>> +                       led@2 {
>> +                               reg = <2>;
>> +                               color = <LED_COLOR_ID_BLUE>;
>> +                               function = LED_FUNCTION_LAN;
>> +                               linux,default-trigger = "netdev";
>> +                       };
>> +               };
>>         };
>>  };
>>
>> --
>> 2.39.5
>>
>>
>

--