mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-03 12:34:19 +00:00
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
|
From 6731d2c9039fbe1ecf21915eab3acee0a999508a Mon Sep 17 00:00:00 2001
|
||
|
From: David Bauer <mail@david-bauer.net>
|
||
|
Date: Fri, 10 Jul 2020 21:38:20 +0200
|
||
|
Subject: [PATCH] rockchip: use system LED for OpenWrt
|
||
|
|
||
|
Use the SYS LED on the casing for showing system status.
|
||
|
|
||
|
This patch is kept seperate from the NanoPi R2S support patch, as i plan
|
||
|
on submitting the device support upstream.
|
||
|
|
||
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
||
|
---
|
||
|
arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts | 9 ++++++++-
|
||
|
1 file changed, 8 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
|
||
|
+++ b/arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
|
||
|
@@ -17,6 +17,13 @@
|
||
|
stdout-path = "serial2:1500000n8";
|
||
|
};
|
||
|
|
||
|
+ aliases {
|
||
|
+ led-boot = &led_sys;
|
||
|
+ led-failsafe = &led_sys;
|
||
|
+ led-running = &led_sys;
|
||
|
+ led-upgrade = &led_sys;
|
||
|
+ };
|
||
|
+
|
||
|
gmac_clkin: external-gmac-clock {
|
||
|
compatible = "fixed-clock";
|
||
|
clock-frequency = <125000000>;
|
||
|
@@ -67,7 +74,7 @@
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&led_pins>;
|
||
|
|
||
|
- sys {
|
||
|
+ led_sys: sys {
|
||
|
gpios = <&gpio0 RK_PA2 GPIO_ACTIVE_HIGH>;
|
||
|
label = "nanopi-r2s:red:sys";
|
||
|
};
|