ramips: WizFi630S use macs from factory partion
authorTobias Welz <tw@wiznet.eu>
Tue, 4 Aug 2020 16:30:15 +0000 (18:30 +0200)
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>
Thu, 6 Aug 2020 11:33:26 +0000 (13:33 +0200)
WIZnet WizFi630s has three mac addresses in the factory partition:
0x04 (also on the label), 0x28 for wan mac and 0x2e as lan mac.
All three macadresses are sequential series of addresses.
This is making use of them.

While at it, also add the label MAC address to 02_network.

MAC addresses as verified by OEM firmware:

use      interface   source
WLAN     ra0         factory 0x04 (label)
WAN      eth0.2      factory 0x28 (label + 1)
LAN      eth0.1      factory 0x2e (label + 2)

Signed-off-by: Tobias Welz <tw@wiznet.eu>
[fix sorting in 02_network, commit message adjustments]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
target/linux/ramips/dts/mt7628an_wiznet_wizfi630s.dts
target/linux/ramips/mt76x8/base-files/etc/board.d/02_network

index 684a70cffe0c12b5391319c41d648b62e3f88ce3..3bb1e06eb1914d000232fc4188ea3ea560e72944 100644 (file)
 };
 
 &ethernet {
-       mtd-mac-address = <&factory 0x28>;
+       mtd-mac-address = <&factory 0x2e>;
 };
 
 &esw {
index 83437ea3646acb98f8afa6336553273c0d0577df..3920afde958b5405b7a509928827810064874d96 100755 (executable)
@@ -199,8 +199,7 @@ ramips_setup_macs()
                ;;
        rakwireless,rak633|\
        unielec,u7628-01-16m|\
-       wavlink,wl-wn575a3|\
-       wiznet,wizfi630s)
+       wavlink,wl-wn575a3)
                wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x28)" 1)
                ;;
        tplink,archer-c20-v4|\
@@ -225,6 +224,10 @@ ramips_setup_macs()
        zbtlink,zbt-we1226)
                wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x2e)" 1)
                ;;
+       wiznet,wizfi630s)
+               label_mac=$(mtd_get_mac_binary factory 0x4)
+               wan_mac=$(mtd_get_mac_binary factory 0x28)
+               ;;
        xiaomi,mir4a-100m)
                wan_mac=$(mtd_get_mac_binary factory 0x4)
                ;;