mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-16 12:46:59 +08:00

uboot: - immortalwrt/immortalwrt@7a042afdee uboot-rockchip: fix RockPro64 boot from eMMC - immortalwrt/immortalwrt@f450acefb0 uboot-rockchip: update to v2021.01 - immortalwrt/immortalwrt@5cc1d3df78 rockchip: improve support for NanoPi R4S - immortalwrt/immortalwrt@83d3fb9634 uboot-rockchip: add NanoPi R4S support - immortalwrt/immortalwrt@3d86ffedd7 uboot-rockchip: update to v2020.10 - immortalwrt/immortalwrt@fe5fa0c7ab Revert "uboot-rockchip: fix nanopi-r2s failed to boot on some sd cards" target: - immortalwrt/immortalwrt@f67522e532 rockchip: add support for Radxa Rock Pi 4 - immortalwrt/immortalwrt@cd7fd0c77b rockchip: add NanoPi R4S support - immortalwrt/immortalwrt@02395293a2 rockchip: fix SUPPORTED_DEVICES for Radxa ROCK Pi 4 - immortalwrt/immortalwrt@c7b200b8a2 rockchip: re-order patches - immortalwrt/immortalwrt@aee038e773 rockchip: refresh Kconfig - immortalwrt/immortalwrt@22061b2880 kernel: enable CONFIG_LEDS_TRIGGER_HEARTBEAT - immortalwrt/immortalwrt@b1150de9e4 rockchip: add missing Kconfig symbols - immortalwrt/immortalwrt@ab28d07c3b treewide: fix spelling 'seperate' -> 'separate' - immortalwrt/immortalwrt@6401fca74d rockchip: use native mac address for NanoPi R4S Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
29 lines
881 B
Diff
29 lines
881 B
Diff
From 2795c8b31a686bdb8338f9404d18ef7a154f0d75 Mon Sep 17 00:00:00 2001
|
|
From: David Bauer <mail@david-bauer.net>
|
|
Date: Sun, 26 Jul 2020 13:32:59 +0200
|
|
Subject: [PATCH] arm64: rockchip: add OF node for USB eth on NanoPi R2S
|
|
|
|
This adds the OF node for the USB3 ethernet adapter on the FriendlyARM
|
|
NanoPi R2S. Add the correct value for the RTL8153 LED configuration
|
|
register to match the blink behavior of the other port on the device.
|
|
|
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
|
---
|
|
arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
--- a/arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
|
|
@@ -401,4 +401,11 @@
|
|
&usbdrd_dwc3 {
|
|
dr_mode = "host";
|
|
status = "okay";
|
|
+
|
|
+ usb-eth@2 {
|
|
+ compatible = "realtek,rtl8153";
|
|
+ reg = <2>;
|
|
+
|
|
+ realtek,led-data = <0x87>;
|
|
+ };
|
|
};
|