[openwrt/openwrt] mvebu: Add support for WD MyCloud EX2 Ultra

LEDE Commits lede-commits at lists.infradead.org
Fri Jan 2 09:08:29 PST 2026


hauke pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/96ad29a0f3e5fd1c05d685aa3cda1e7940fa4e5c

commit 96ad29a0f3e5fd1c05d685aa3cda1e7940fa4e5c
Author: Robert Senderek <robert.senderek at 10g.pl>
AuthorDate: Wed Nov 12 10:08:37 2025 +0100

    mvebu: Add support for WD MyCloud EX2 Ultra
    
    Hardware
    --------
    Marvell Armada 385 (MV88F6820)
    1GB RAM
    256MB NAND
    1x 1Gbit
    2x USB 3.0
    2x SATA-III
    UART: 115200 8N1 3.3V
    RTC
    Weltrend MCU WT6703F connected via UART1 for Power LED / PWM Fan / hw reset / WoL
    
    Installation
    ------------
    Connect UART 3.3V adapter to JP2  pins: 1-RX / 2-GND / 5-TX
    
    Use USB2.0 FAT32 pendrive with openwrt-mvebu-cortexa9-wd_cloud-ex2-ultra-initramfs-kernel.bin
     1. stop boot by pressing 1
     2. usb start
     3. fatload usb 0:1  0x02000000 openwrt-mvebu-cortexa9-wd_cloud-ex2-ultra-initramfs-kernel.bin;bootm 0x02000000 -
     4. do backup mtd1 mtd3
     5. use sysupgrade
    
    Or tftp
     1. stop boot by pressing 1
     2. setenv ethact egiga2;setenv serverip 192.168.11.114;setenv ipaddr 192.168.11.113
     3. tftpboot 0x02000000 openwrt-mvebu-cortexa9-wd_cloud-ex2-ultra-initramfs-kernel.bin; bootm 0x02000000 -
     4. do backup mtd1 mtd3
     5. use sysupgrade
    
    or Evgeny Kolesnikov <evgenyz at gmail.com> method from his failed PR 2040
    
    - Using original firmware's network settings obtain SSH access to the device.
    - Put *-image-cfs-factory.bin and *-uImage-factory.bin images into device's /tmp directory.
    - Write kernel (uImage) image 'flash_eraseall /dev/mtd1 && nandwrite --markbad -p /dev/mtd1 /tmp/*-uImage-factory.bin'.
    - Write rootfs (image-cfs) image 'ubiformat /dev/mtd3 -f /tmp/*-image.cfs-factory.bin -y'.
    - Reboot the device.
    
    Installation (upgrade):
    
    Use *-sysupgrade.bin in a usual way.
    Weltrend MCU control is done via uart1 19200
    install coreutils-stty
    stty -F /dev/ttyS1 raw speed 19200
    stty -F /dev/ttyS1 raw speed 19200
    
    PWM Fan Control
    off: 00
    echo -n -e '\xfa\x02\x00\x00\x00\x00\xfb' > /dev/ttyS1
    slow: 5F
    echo -n -e '\xfa\x02\x00\x5f\x00\x00\xfb' > /dev/ttyS1
    max: FF
    echo -n -e '\xfa\x02\x00\xff\x00\x00\xfb' > /dev/ttyS1
    
    Power LED Control
    Blue
    echo -n -e '\xfa\x26\x00\x11\x00\x01\xfb' > /dev/ttyS1
    Red
    echo -n -e '\xfa\x26\x00\x14\x00\x01\xfb' > /dev/ttyS1
    Orange
    echo -n -e '\xfa\x26\x00\x12\x00\x01\xfb' > /dev/ttyS1
    
    more here: https://github.com/c-MM/mcm-daemon/blob/master/mcm.h
    
    Signed-off-by: Robert Senderek <robert.senderek at 10g.pl>
    Link: https://github.com/openwrt/openwrt/pull/17779
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 .../cortexa9/base-files/etc/board.d/02_network     |   2 +
 .../cortexa9/base-files/lib/upgrade/platform.sh    |   1 +
 .../dts/marvell/armada-385-wd_cloud-ex2-ultra.dts  |  13 +
 .../marvell/armada-385-wd_cloud-mirror-gen2.dts    | 359 +--------------------
 ...ud-mirror-gen2.dts => armada-385-wd_cloud.dtsi} |   8 -
 target/linux/mvebu/image/cortexa9.mk               |  17 +
 6 files changed, 35 insertions(+), 365 deletions(-)

diff --git a/target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network b/target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network
index 484ebe3db2..cd0f4c99c4 100644
--- a/target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network
+++ b/target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network
@@ -14,6 +14,7 @@ mvebu_setup_interfaces()
 	case "$board" in
 	ctera,c200-v2|\
 	synology,ds213j|\
+	wd,cloud-ex2-ultra|\
 	wd,cloud-mirror-gen2)
 		ucidef_set_interface_lan "eth0" "dhcp"
 		;;
@@ -96,6 +97,7 @@ mvebu_setup_macs()
 		lan_mac=$label_mac
 		wan_mac=$label_mac
 		;;
+	wd,cloud-ex2-ultra|\
 	wd,cloud-mirror-gen2)
 		# mac address is on ubi "config" or ubi "reserve2" in text file.
 		# ubi "reserve2" /dev/mtd7 is twice small and only contains basic OEM factory info
diff --git a/target/linux/mvebu/cortexa9/base-files/lib/upgrade/platform.sh b/target/linux/mvebu/cortexa9/base-files/lib/upgrade/platform.sh
index 9f24fcfdef..a30f4bc1e2 100755
--- a/target/linux/mvebu/cortexa9/base-files/lib/upgrade/platform.sh
+++ b/target/linux/mvebu/cortexa9/base-files/lib/upgrade/platform.sh
@@ -32,6 +32,7 @@ platform_do_upgrade() {
 		nand_do_upgrade "$1"
 		;;
 	buffalo,ls421de|\
+	wd,cloud-ex2-ultra|\
 	wd,cloud-mirror-gen2)
 		nand_do_upgrade "$1"
 		;;
diff --git a/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-ex2-ultra.dts b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-ex2-ultra.dts
new file mode 100644
index 0000000000..e9e2dc4186
--- /dev/null
+++ b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-ex2-ultra.dts
@@ -0,0 +1,13 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/dts-v1/;
+#include "armada-385-wd_cloud.dtsi"
+
+/ {
+	model = "WD MyCloud Ex2 Ultra";
+	compatible = "wd,cloud-ex2-ultra", "marvell,armada385", "marvell,armada380";
+
+	memory {
+		device_type = "memory";
+		reg = <0x00000000 0x40000000>; /* 1GB */
+	};
+};
diff --git a/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts
index 97edc4ca46..03b6d7b18f 100644
--- a/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts
+++ b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts
@@ -1,368 +1,13 @@
 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
-/*
- * Device Tree file for Western Digital My Cloud Mirror Gen 2
- * (BWVZ/Grand Teton)
- *
- * Copyright (C) 2020
- *
- * Based on the code from:
- *
- * Copyright (C) 2019 Evgeny Kolesnikov <evgenyz at gmail.com>
- * Copyright (C) 2016 Martin Mueller <mm at sig21.net>
- * Copyright (C) 2013 Gregory CLEMENT <gregory.clement at free-electrons.com>
- * Copyright (C) 2014 Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
- *
- */
-
 /dts-v1/;
-#include <dt-bindings/input/input.h>
-#include <dt-bindings/gpio/gpio.h>
-#include <dt-bindings/leds/common.h>
-#include "armada-385.dtsi"
+#include "armada-385-wd_cloud.dtsi"
 
 / {
 	model = "WD MyCloud Mirror Gen 2 (BWVZ/Grand Teton)";
 	compatible = "wd,cloud-mirror-gen2", "marvell,armada385", "marvell,armada380";
 
-	aliases {
-		led-boot = &led_boot;
-		led-failsafe = &led_boot;
-		led-upgrade = &led_boot;
-	};
-
-	chosen {
-		stdout-path = "serial0:115200n8";
-		append-rootblock = "nullparameter="; /* override the bootloader args */
-	};
-
 	memory {
 		device_type = "memory";
-		reg = <0x00000000 0x20000000>; /* 512 MB */
-	};
-
-	soc {
-		ranges = <MBUS_ID(0xf0, 0x01) 0 0xf1000000 0x100000
-		          MBUS_ID(0x01, 0x1d) 0 0xfff00000 0x100000
-		          MBUS_ID(0x09, 0x19) 0 0xf1100000 0x10000
-		          MBUS_ID(0x09, 0x15) 0 0xf1110000 0x10000
-		          MBUS_ID(0x0c, 0x04) 0 0xf1200000 0x100000>;
-
-		internal-regs {
-			timer at c200 {
-				status = "okay";
-			};
-
-			i2c0: i2c at 11000 {
-				status = "okay";
-				clock-frequency = <100000>;
-			};
-
-			i2c1: i2c at 11100 {
-				status = "okay";
-				clock-frequency = <100000>;
-			};
-
-			serial at 12000 {
-				status = "okay";
-			};
-
-			/* Connected to Welltrend 6703F-OG240WT MCU
-			 * which controls power, fan and other things
-			 */
-			serial at 12100 {
-				status = "okay";
-			};
-
-			pinctrl at 18000 {
-				/* use only one pin for UART1, as mpp20 is used by sata0 */
-				uart1_pins: uart-pins-1 {
-					marvell,pins = "mpp19";
-					marvell,function = "ua1";
-				};
-
-				xhci0_vbus_pins: xhci0-vbus-pins {
-					marvell,pins = "mpp26";
-					marvell,function = "gpio";
-				};
-
-				xhci1_vbus_pins: xhci1-vbus-pins {
-					marvell,pins = "mpp27";
-					marvell,function = "gpio";
-				};
-
-				sata0_pins: sata-pins-0 {
-					marvell,pins = "mpp55";
-					marvell,function = "sata0";
-				};
-
-				sata1_pins: sata-pins-1 {
-					marvell,pins = "mpp56";
-					marvell,function = "sata1";
-				};
-
-				sata_leds: sata-leds {
-					marvell,pins = "mpp43", "mpp52", "mpp53", "mpp54";
-					marvell,function = "gpio";
-				};
-
-				btn_pins: btn-pins {
-					marvell,pins = "mpp50";
-					marvell,function = "gpio";
-				};
-			};
-
-			usb at 58000 {
-				status = "okay";
-			};
-
-			phy: mdio at 72004 {
-				phy0: ethernet-phy at 0 {
-					/* Init ETH LEDs */
-					marvell,reg-init = <3 16 0 0x101e>;
-					reg = <0>;
-				};
-			};
-
-			sata at a8000 {
-				status = "okay";
-			};
-
-			nand-controller at d0000 {
-				status = "okay";
-
-				nand: nand at 0 {
-					reg = <0>;
-					label = "pxa3xx_nand-0";
-					nand-rb = <0>;
-					marvell,nand-keep-config;
-					#marvell,nand-enable-arbiter; //optional
-					nand-on-flash-bbt;
-					nand-ecc-strength = <4>;
-					nand-ecc-step-size = <512>;
-
-					partitions {
-						compatible = "fixed-partitions";
-						#address-cells = <1>;
-						#size-cells = <1>;
-
-						partition at 0 {
-							label = "U-Boot";
-							reg = <0x00000000 0x00500000>;    /*   5 MB */
-							read-only;
-						};
-
-						partition at 500000 {
-							label = "kernel";
-							reg = <0x00500000 0x00500000>;    /*   5 MB */
-						};
-
-						partition at a00000 {
-							label = "uRamdisk";
-							reg = <0x00a00000 0x00500000>;    /*   5 MB */
-							read-only;
-						};
-
-						partition at f00000 {
-							label = "ubi";
-							reg = <0x00f00000 0x0b900000>;    /* 185 MB */
-						};
-
-						partition at c800000 {
-							label = "rescue fw";
-							reg = <0x0c800000 0x00f00000>;    /*  15 MB */
-							read-only;
-						};
-
-						partition at d70000 {
-							label = "config";
-							reg = <0x0d700000 0x01400000>;    /*  20 MB */
-							read-only;
-						};
-
-						partition at eb00000 {
-							label = "reserve1";
-							reg = <0x0eb00000 0x00a00000>;    /*  10 MB */
-							read-only;
-						};
-
-						partition at f500000 {
-							label = "reserve2";
-							reg = <0x0f500000 0x00a00000>;    /*  10 MB */
-							read-only;
-						};
-					};
-				};
-			};
-
-			usb3 at f0000 {
-				usb-phy = <&usb3_0_phy>;
-				status = "okay";
-			};
-
-			usb3 at f8000 {
-				usb-phy = <&usb3_1_phy>;
-				status = "okay";
-			};
-		};
-	};
-
-	gpio-leds {
-		compatible = "gpio-leds";
-		pinctrl-names = "default";
-		pinctrl-0 = <&sata_leds>;
-
-		led_boot: s1red {
-			label = "red:hdd1";
-			gpios = <&gpio1 11 GPIO_ACTIVE_HIGH>;
-		};
-		s2red {
-			label = "red:hdd2";
-			gpios = <&gpio1 20 GPIO_ACTIVE_HIGH>;
-		};
-		s1blue {
-			label = "blue:hdd1";
-			gpios = <&gpio1 21 GPIO_ACTIVE_LOW>;
-			linux,default-trigger = "ata1";
-		};
-		s2blue {
-			label = "blue:hdd2";
-			gpios = <&gpio1 22 GPIO_ACTIVE_LOW>;
-			linux,default-trigger = "ata2";
-		};
-	};
-
-	gpio-keys {
-		compatible = "gpio-keys";
-		pinctrl-names = "default";
-		pinctrl-0 = <&btn_pins>;
-
-		reset {
-			label = "reset";
-			linux,code = <KEY_RESTART>;  // Restart=0x198, Power=0x116
-			gpios = <&gpio1 18 GPIO_ACTIVE_LOW>;
-			debounce-interval = <60>;
-			wakeup-source;
-		};
-	};
-
-	usb3_0_phy: usb3_0_phy {
-		compatible = "usb-nop-xceiv";
-		vcc-supply = <&reg_usb3_0_vbus>;
-	};
-
-	usb3_1_phy: usb3_1_phy {
-		compatible = "usb-nop-xceiv";
-		vcc-supply = <&reg_usb3_1_vbus>;
-	};
-
-	reg_usb3_0_vbus: usb3-vbus0 {
-		compatible = "regulator-fixed";
-		regulator-name = "usb3-vbus0";
-		pinctrl-names = "default";
-		pinctrl-0 = <&xhci0_vbus_pins>;
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		enable-active-high;
-		regulator-always-on;
-		gpios = <&gpio0 26 GPIO_ACTIVE_HIGH>;
-	};
-
-	reg_usb3_1_vbus: usb3-vbus1 {
-		compatible = "regulator-fixed";
-		regulator-name = "usb3-vbus1";
-		pinctrl-names = "default";
-		pinctrl-0 = <&xhci1_vbus_pins>;
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		enable-active-high;
-		regulator-always-on;
-		gpios = <&gpio0 27 GPIO_ACTIVE_HIGH>;
-	};
-
-	reg_sata0: pwr-sata0 {
-		compatible = "regulator-fixed";
-		regulator-name = "pwr_en_sata0";
-		regulator-min-microvolt = <12000000>;
-		regulator-max-microvolt = <12000000>;
-		enable-active-high;
-		regulator-boot-on;
-		gpios = <&gpio1 23 GPIO_ACTIVE_HIGH>;
-	};
-
-	reg_5v_sata0: v5-sata0 {
-		compatible = "regulator-fixed";
-		regulator-name = "v5.0-sata0";
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		vin-supply = <&reg_sata0>;
-	};
-
-	reg_12v_sata0: v12-sata0 {
-		compatible = "regulator-fixed";
-		regulator-name = "v12.0-sata0";
-		regulator-min-microvolt = <12000000>;
-		regulator-max-microvolt = <12000000>;
-		vin-supply = <&reg_sata0>;
-	};
-
-	reg_sata1: pwr-sata1 {
-		compatible = "regulator-fixed";
-		regulator-name = "pwr_en_sata1";
-		regulator-min-microvolt = <12000000>;
-		regulator-max-microvolt = <12000000>;
-		enable-active-high;
-		regulator-boot-on;
-		gpios = <&gpio1 24 GPIO_ACTIVE_HIGH>;
-	};
-
-	reg_5v_sata1: v5-sata1 {
-		compatible = "regulator-fixed";
-		regulator-name = "v5.0-sata1";
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		vin-supply = <&reg_sata1>;
-	};
-
-	reg_12v_sata1: v12-sata1 {
-		compatible = "regulator-fixed";
-		regulator-name = "v12.0-sata1";
-		regulator-min-microvolt = <12000000>;
-		regulator-max-microvolt = <12000000>;
-		vin-supply = <&reg_sata1>;
-	};
-};
-
-&bm {
-	status = "okay";
-};
-
-&bm_bppi {
-	status = "okay";
-};
-
-&eth2 {
-	status = "okay";
-	phy = <&phy0>;
-	phy-mode = "sgmii";
-	buffer-manager = <&bm>;
-	bm,pool-long = <0>;
-	bm,pool-short = <1>;
-};
-
-&ahci0 {
-	status = "okay";
-	#address-cells = <1>;
-	#size-cells = <0>;
-
-	sata-port at 0 {
-		reg = <0>;
-		target-supply = <&reg_sata0>;
-		#thermal-sensor-cells = <0>;
-	};
-
-	sata-port at 1 {
-		reg = <1>;
-		target-supply = <&reg_sata1>;
-		#thermal-sensor-cells = <1>;
+		reg = <0x00000000 0x20000000>; /* 512MB */
 	};
 };
diff --git a/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud.dtsi
similarity index 97%
copy from target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts
copy to target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud.dtsi
index 97edc4ca46..f32c838977 100644
--- a/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud-mirror-gen2.dts
+++ b/target/linux/mvebu/files/arch/arm/boot/dts/marvell/armada-385-wd_cloud.dtsi
@@ -21,9 +21,6 @@
 #include "armada-385.dtsi"
 
 / {
-	model = "WD MyCloud Mirror Gen 2 (BWVZ/Grand Teton)";
-	compatible = "wd,cloud-mirror-gen2", "marvell,armada385", "marvell,armada380";
-
 	aliases {
 		led-boot = &led_boot;
 		led-failsafe = &led_boot;
@@ -35,11 +32,6 @@
 		append-rootblock = "nullparameter="; /* override the bootloader args */
 	};
 
-	memory {
-		device_type = "memory";
-		reg = <0x00000000 0x20000000>; /* 512 MB */
-	};
-
 	soc {
 		ranges = <MBUS_ID(0xf0, 0x01) 0 0xf1000000 0x100000
 		          MBUS_ID(0x01, 0x1d) 0 0xfff00000 0x100000
diff --git a/target/linux/mvebu/image/cortexa9.mk b/target/linux/mvebu/image/cortexa9.mk
index 6c6889b542..570251424b 100644
--- a/target/linux/mvebu/image/cortexa9.mk
+++ b/target/linux/mvebu/image/cortexa9.mk
@@ -463,6 +463,23 @@ define Device/synology_ds213j
 endef
 TARGET_DEVICES += synology_ds213j
 
+define Device/wd_cloud-ex2-ultra
+  $(Device/NAND-128K)
+  DEVICE_VENDOR := Western Digital
+  DEVICE_MODEL := MyCloud EX2 Ultra
+  DEVICE_PACKAGES += -uboot-envtools mkf2fs e2fsprogs \
+	partx-utils kmod-hwmon-drivetemp -ppp -kmod-nft-offload -dnsmasq \
+	-odhcpd-ipv6only 
+  DEVICE_DTS := armada-385-wd_cloud-ex2-ultra
+  KERNEL_SIZE := 5120k
+  KERNEL := kernel-bin | append-dtb | uImage none
+  KERNEL_INITRAMFS := kernel-bin | append-dtb | uImage none
+  IMAGES += image-cfs-factory.bin uImage-factory.bin
+  IMAGE/image-cfs-factory.bin := append-ubi
+  IMAGE/uImage-factory.bin := append-kernel
+endef
+TARGET_DEVICES += wd_cloud-ex2-ultra
+
 define Device/wd_cloud-mirror-gen2
   $(Device/NAND-128K)
   DEVICE_VENDOR := Western Digital




More information about the lede-commits mailing list