mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 3bcae3396e986b4ab97a69e8de517e32f9691a4b Mon Sep 17 00:00:00 2001
 | 
						|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
 | 
						|
Date: Mon, 18 Jul 2022 15:21:00 +0200
 | 
						|
Subject: [PATCH] arm64: dts: broadcom: bcm4908: add Asus GT-AC5300 LEDs
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Type: text/plain; charset=UTF-8
 | 
						|
Content-Transfer-Encoding: 8bit
 | 
						|
 | 
						|
There are 5 software-controllable LEDs on PCB.
 | 
						|
 | 
						|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
 | 
						|
Link: https://lore.kernel.org/r/20220718132100.13277-3-zajec5@gmail.com
 | 
						|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
 | 
						|
---
 | 
						|
 .../bcm4908/bcm4908-asus-gt-ac5300.dts        | 48 +++++++++++++++++++
 | 
						|
 1 file changed, 48 insertions(+)
 | 
						|
 | 
						|
--- a/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dts
 | 
						|
+++ b/arch/arm64/boot/dts/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dts
 | 
						|
@@ -2,6 +2,7 @@
 | 
						|
 
 | 
						|
 #include <dt-bindings/gpio/gpio.h>
 | 
						|
 #include <dt-bindings/input/input.h>
 | 
						|
+#include <dt-bindings/leds/common.h>
 | 
						|
 
 | 
						|
 #include "bcm4908.dtsi"
 | 
						|
 
 | 
						|
@@ -118,6 +119,53 @@
 | 
						|
 	};
 | 
						|
 };
 | 
						|
 
 | 
						|
+&leds {
 | 
						|
+	led-power@11 {
 | 
						|
+		reg = <0x11>;
 | 
						|
+		function = LED_FUNCTION_POWER;
 | 
						|
+		color = <LED_COLOR_ID_WHITE>;
 | 
						|
+		default-state = "on";
 | 
						|
+		active-low;
 | 
						|
+		pinctrl-names = "default";
 | 
						|
+		pinctrl-0 = <&pins_led_17_a>;
 | 
						|
+	};
 | 
						|
+
 | 
						|
+	led-wan-red@12 {
 | 
						|
+		reg = <0x12>;
 | 
						|
+		function = LED_FUNCTION_WAN;
 | 
						|
+		color = <LED_COLOR_ID_RED>;
 | 
						|
+		active-low;
 | 
						|
+		pinctrl-names = "default";
 | 
						|
+		pinctrl-0 = <&pins_led_18_a>;
 | 
						|
+	};
 | 
						|
+
 | 
						|
+	led-wps@14 {
 | 
						|
+		reg = <0x14>;
 | 
						|
+		function = LED_FUNCTION_WPS;
 | 
						|
+		color = <LED_COLOR_ID_WHITE>;
 | 
						|
+		active-low;
 | 
						|
+		pinctrl-names = "default";
 | 
						|
+		pinctrl-0 = <&pins_led_20_a>;
 | 
						|
+	};
 | 
						|
+
 | 
						|
+	led-wan-white@15 {
 | 
						|
+		reg = <0x15>;
 | 
						|
+		function = LED_FUNCTION_WAN;
 | 
						|
+		color = <LED_COLOR_ID_WHITE>;
 | 
						|
+		active-low;
 | 
						|
+		pinctrl-names = "default";
 | 
						|
+		pinctrl-0 = <&pins_led_21_a>;
 | 
						|
+	};
 | 
						|
+
 | 
						|
+	led-lan@19 {
 | 
						|
+		reg = <0x19>;
 | 
						|
+		function = LED_FUNCTION_LAN;
 | 
						|
+		color = <LED_COLOR_ID_WHITE>;
 | 
						|
+		pinctrl-names = "default";
 | 
						|
+		pinctrl-0 = <&pins_led_25_a>;
 | 
						|
+	};
 | 
						|
+};
 | 
						|
+
 | 
						|
 &nandcs {
 | 
						|
 	nand-ecc-strength = <4>;
 | 
						|
 	nand-ecc-step-size = <512>;
 |