[openwrt/openwrt] ramips: add support for D-Link DIR-882 R1

LEDE Commits lede-commits at lists.infradead.org
Tue Dec 22 13:13:54 EST 2020


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/28262f815e4d0fe5302babc696ed5ce518b33759

commit 28262f815e4d0fe5302babc696ed5ce518b33759
Author: Andrew Pikler <andrew.pikler at gmail.com>
AuthorDate: Mon Oct 5 17:16:44 2020 +0300

    ramips: add support for D-Link DIR-882 R1
    
    Specifications:
    - SoC: MediaTek MT7621AT
    - RAM: 128 MB (DDR3)
    - Flash: 16 MB (SPI NOR)
    - WiFi: MediaTek MT7615N (x2)
    - Switch: 1 WAN, 4 LAN (Gigabit)
    - Ports: 1 USB 2.0, 1 USB 3.0
    - Buttons: Reset, WiFi Toggle, WPS
    - LEDs: Power, Internet, WiFi 2.4G WiFi 5G, USB 2.0, USB 3.0
    
    The R1 revision is identical to the A1 revision except
    - No Config2 Parition, therefore
    - factory partition resized to 64k from 128K
    - Firmware partition offset is 0x50000 not 0x60000
    - Firmware partitions size increased by 64K
    - Firmware partition type is "denx,uimage", not "sge,uimage"
    - Padding of image creation "uimage-padhdr 96" removed
    
    Installation:
    - Older firmware versions: put the factory image on a USB stick, turn on
    the telnet console, and flash using the following cmd
    "fw_updater Linux /mnt/usb_X_X/firmware.bin"
    
    - D-Link FailsafeUI:
    Power down the router, press and hold the reset button, then
    re-plug it. Keep the reset button pressed until the internet LED stops
    flashing, then jack into any lan port and manually assign a static IP
    address in 192.168.0.0/24 other than 192.168.0.0 (e.g. 192.168.0.2)
    and go to http://192.168.0.1
    Flash with the factory image.
    
    Signed-off-by: Andrew Pikler <andrew.pikler at gmail.com>
---
 .../linux/ramips/dts/mt7621_dlink_dir-882-a1.dts   |  17 +--
 .../linux/ramips/dts/mt7621_dlink_dir-882-r1.dts   |   9 ++
 ...dir-882-a1.dts => mt7621_dlink_dir-882-x1.dtsi} |   7 --
 .../linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi  | 132 +--------------------
 .../linux/ramips/dts/mt7621_dlink_dir-8xx-r1.dtsi  |  43 +++++++
 ...ir-8xx-a1.dtsi => mt7621_dlink_dir-8xx-x1.dtsi} |  40 -------
 target/linux/ramips/image/mt7621.mk                |  22 ++++
 .../ramips/mt7621/base-files/etc/board.d/01_leds   |   3 +-
 8 files changed, 78 insertions(+), 195 deletions(-)

diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts b/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts
index bc2c6dfe86..cef0705393 100644
--- a/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts
@@ -1,24 +1,9 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
 
 #include "mt7621_dlink_dir-8xx-a1.dtsi"
+#include "mt7621_dlink_dir-882-x1.dtsi"
 
 / {
 	compatible = "dlink,dir-882-a1", "mediatek,mt7621-soc";
 	model = "D-Link DIR-882 A1";
 };
-
-&leds {
-	usb2 {
-		label = "green:usb2";
-		gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
-		trigger-sources = <&ehci_port2>;
-		linux,default-trigger = "usbport";
-	};
-
-	usb3 {
-		label = "green:usb3";
-		gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
-		trigger-sources = <&xhci_ehci_port1>;
-		linux,default-trigger = "usbport";
-	};
-};
diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-882-r1.dts b/target/linux/ramips/dts/mt7621_dlink_dir-882-r1.dts
new file mode 100644
index 0000000000..26b6f34707
--- /dev/null
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-882-r1.dts
@@ -0,0 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+
+#include "mt7621_dlink_dir-8xx-r1.dtsi"
+#include "mt7621_dlink_dir-882-x1.dtsi"
+
+/ {
+	compatible = "dlink,dir-882-r1", "mediatek,mt7621-soc";
+	model = "D-Link DIR-882 R1";
+};
diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts b/target/linux/ramips/dts/mt7621_dlink_dir-882-x1.dtsi
similarity index 72%
copy from target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts
copy to target/linux/ramips/dts/mt7621_dlink_dir-882-x1.dtsi
index bc2c6dfe86..cafb1df964 100644
--- a/target/linux/ramips/dts/mt7621_dlink_dir-882-a1.dts
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-882-x1.dtsi
@@ -1,12 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
 
-#include "mt7621_dlink_dir-8xx-a1.dtsi"
-
-/ {
-	compatible = "dlink,dir-882-a1", "mediatek,mt7621-soc";
-	model = "D-Link DIR-882 A1";
-};
-
 &leds {
 	usb2 {
 		label = "green:usb2";
diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi
index e451d6a39f..c43cc49aa1 100644
--- a/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi
@@ -1,65 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
 
-#include "mt7621.dtsi"
-
-#include <dt-bindings/gpio/gpio.h>
-#include <dt-bindings/input/input.h>
-
-/ {
-	aliases {
-		label-mac-device = &gmac0;
-		led-boot = &led_power_orange;
-		led-failsafe = &led_power_green;
-		led-running = &led_power_green;
-		led-upgrade = &led_net_orange;
-	};
-
-	keys {
-		compatible = "gpio-keys";
-
-		reset {
-			label = "reset";
-			gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
-			linux,code = <KEY_RESTART>;
-		};
-
-		wps {
-			label = "wps";
-			gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
-			linux,code = <KEY_WPS_BUTTON>;
-		};
-
-		wifi {
-			label = "wifi";
-			gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
-			linux,code = <KEY_RFKILL>;
-		};
-	};
-
-	leds: leds {
-		compatible = "gpio-leds";
-
-		led_power_orange: power_orange {
-			label = "orange:power";
-			gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
-		};
-
-		led_power_green: power_green {
-			label = "green:power";
-			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
-		};
-
-		led_net_orange: net_orange {
-			label = "orange:net";
-			gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
-		};
-
-		net_green {
-			label = "green:net";
-			gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
-		};
-	};
-};
+#include "mt7621_dlink_dir-8xx-x1.dtsi"
 
 &spi0 {
 	status = "okay";
@@ -100,74 +41,3 @@
 		};
 	};
 };
-
-&pcie {
-	status = "okay";
-};
-
-&pcie0 {
-	wifi at 0,0 {
-		compatible = "mediatek,mt76";
-		reg = <0x0000 0 0 0 0>;
-		mediatek,mtd-eeprom = <&factory 0x0000>;
-		ieee80211-freq-limit = <2400000 2500000>;
-
-		led {
-			led-active-low;
-		};
-	};
-};
-
-&pcie1 {
-	wifi at 0,0 {
-		compatible = "mediatek,mt76";
-		reg = <0x0000 0 0 0 0>;
-		mediatek,mtd-eeprom = <&factory 0x8000>;
-		ieee80211-freq-limit = <5000000 6000000>;
-
-		led {
-			led-active-low;
-		};
-	};
-};
-
-&gmac0 {
-	mtd-mac-address = <&factory 0xe000>;
-};
-
-&switch0 {
-	ports {
-		port at 0 {
-			status = "okay";
-			label = "lan4";
-		};
-
-		port at 1 {
-			status = "okay";
-			label = "lan3";
-		};
-
-		port at 2 {
-			status = "okay";
-			label = "lan2";
-		};
-
-		port at 3 {
-			status = "okay";
-			label = "lan1";
-		};
-
-		port at 4 {
-			status = "okay";
-			label = "wan";
-			mtd-mac-address = <&factory 0xe006>;
-		};
-	};
-};
-
-&state_default {
-	gpio {
-		groups = "i2c", "uart3", "jtag", "wdt";
-		function = "gpio";
-	};
-};
diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-8xx-r1.dtsi b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-r1.dtsi
new file mode 100644
index 0000000000..e93a06d9fe
--- /dev/null
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-r1.dtsi
@@ -0,0 +1,43 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+
+#include "mt7621_dlink_dir-8xx-x1.dtsi"
+
+&spi0 {
+	status = "okay";
+
+	flash at 0 {
+		compatible = "jedec,spi-nor";
+		reg = <0>;
+		spi-max-frequency = <50000000>;
+
+		partitions {
+			compatible = "fixed-partitions";
+			#address-cells = <1>;
+			#size-cells = <1>;
+
+			partition at 0 {
+				label = "u-boot";
+				reg = <0x0 0x30000>;
+				read-only;
+			};
+
+			partition at 30000 {
+				label = "u-boot-env";
+				reg = <0x30000 0x10000>;
+				read-only;
+			};
+
+			factory: partition at 40000 {
+				label = "factory";
+				reg = <0x40000 0x10000>;
+				read-only;
+			};
+
+			partition at 50000 {
+				compatible = "denx,uimage";
+				label = "firmware";
+				reg = <0x50000 0xfb0000>;
+			};
+		};
+	};
+};
diff --git a/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-x1.dtsi
similarity index 76%
copy from target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi
copy to target/linux/ramips/dts/mt7621_dlink_dir-8xx-x1.dtsi
index e451d6a39f..7ab0e8bd5d 100644
--- a/target/linux/ramips/dts/mt7621_dlink_dir-8xx-a1.dtsi
+++ b/target/linux/ramips/dts/mt7621_dlink_dir-8xx-x1.dtsi
@@ -61,46 +61,6 @@
 	};
 };
 
-&spi0 {
-	status = "okay";
-
-	flash at 0 {
-		compatible = "jedec,spi-nor";
-		reg = <0>;
-		spi-max-frequency = <50000000>;
-
-		partitions {
-			compatible = "fixed-partitions";
-			#address-cells = <1>;
-			#size-cells = <1>;
-
-			partition at 0 {
-				label = "u-boot";
-				reg = <0x0 0x30000>;
-				read-only;
-			};
-
-			partition at 30000 {
-				label = "u-boot-env";
-				reg = <0x30000 0x10000>;
-				read-only;
-			};
-
-			factory: partition at 40000 {
-				label = "factory";
-				reg = <0x40000 0x20000>;
-				read-only;
-			};
-
-			partition at 60000 {
-				compatible = "sge,uimage";
-				label = "firmware";
-				reg = <0x60000 0xfa0000>;
-			};
-		};
-	};
-};
-
 &pcie {
 	status = "okay";
 };
diff --git a/target/linux/ramips/image/mt7621.mk b/target/linux/ramips/image/mt7621.mk
index cc0eb1d279..cf81a862ff 100644
--- a/target/linux/ramips/image/mt7621.mk
+++ b/target/linux/ramips/image/mt7621.mk
@@ -235,6 +235,17 @@ define Device/dlink_dir-8xx-a1
 	check-size
 endef
 
+define Device/dlink_dir-8xx-r1
+  $(Device/dsa-migration)
+  IMAGE_SIZE := 16064k
+  DEVICE_VENDOR := D-Link
+  DEVICE_PACKAGES := kmod-mt7615e kmod-mt7615-firmware
+  KERNEL_INITRAMFS := $$(KERNEL) 
+  IMAGES += factory.bin
+  IMAGE/sysupgrade.bin := append-kernel | append-rootfs |\
+	pad-rootfs | append-metadata | check-size
+endef
+
 define Device/dlink_dir-xx60-a1
   $(Device/dsa-migration)
   BLOCKSIZE := 128k
@@ -312,6 +323,17 @@ define Device/dlink_dir-882-a1
 endef
 TARGET_DEVICES += dlink_dir-882-a1
 
+define Device/dlink_dir-882-r1
+  $(Device/dlink_dir-8xx-r1)
+  DEVICE_MODEL := DIR-882
+  DEVICE_VARIANT := R1
+  DEVICE_PACKAGES += kmod-usb3 kmod-usb-ledtrig-usbport
+  IMAGE/factory.bin := append-kernel | append-rootfs | check-size | \
+	  sign-dlink-ru 57c5375741c30ca9ebcb36713db4ba51 \
+	  ab0dff19af8842cdb70a86b4b68d23f7
+endef
+TARGET_DEVICES += dlink_dir-882-r1
+
 define Device/d-team_newifi-d2
   $(Device/dsa-migration)
   $(Device/uimage-lzma-loader)
diff --git a/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds b/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds
index cd1814cc2b..8d91b36346 100755
--- a/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds
+++ b/target/linux/ramips/mt7621/base-files/etc/board.d/01_leds
@@ -30,7 +30,8 @@ dlink,dir-2660-a1)
 dlink,dir-860l-b1|\
 dlink,dir-867-a1|\
 dlink,dir-878-a1|\
-dlink,dir-882-a1)
+dlink,dir-882-a1|\
+dlink,dir-882-r1)
 	ucidef_set_led_netdev "wan" "wan" "green:net" "wan"
 	;;
 gnubee,gb-pc1|\



More information about the lede-commits mailing list