diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-10-07 17:08:52 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2019-10-15 23:31:13 +0200 |
commit | d1072096f49823eb39357f9555d7854a9c91bcfb (patch) | |
tree | 7794bd3aacc8a7246149ad918e3c6bd3ac9ce75c /target | |
parent | a5ec41b0e598f73cd1f878a107c480f472dfb15a (diff) | |
download | upstream-d1072096f49823eb39357f9555d7854a9c91bcfb.tar.gz upstream-d1072096f49823eb39357f9555d7854a9c91bcfb.tar.bz2 upstream-d1072096f49823eb39357f9555d7854a9c91bcfb.zip |
ramips: fix WiFi MAC addresses for D-Link DIR-810L
So far, WiFi MAC addresses for this device have been set up from
caldata. However, this returns values which do not look like MAC
addresses. They also do not match stock firmware:
wlan0 (5.0): 00:11:22:00:17:D0 from 0x8004
wlan1 (2.4): 00:11:22:00:17:CD from 0x4 (and 0x2e)
It looks like the only valid MAC address on this device is at 0x28.
So, this patch changes setup to calculate addresses based on the
value at 0x28:
lan: *:0A (flash, label)
wan: *:0B (flash + 1)
wifi2: *:0A (flash)
wifi5: *:0C (flash + 2)
Thanks to Roger Pueyo Centelles <roger.pueyo@guifi.net> for
investigating this on his devices.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts b/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts index 687d80fa5d..1df7e2e451 100644 --- a/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts +++ b/target/linux/ramips/dts/mt7620a_dlink_dir-810l.dts @@ -143,9 +143,10 @@ }; &wmac { - ralink,mtd-eeprom = <&factory 0>; + ralink,mtd-eeprom = <&factory 0x0>; pinctrl-names = "default"; pinctrl-0 = <&pa_pins>; + mtd-mac-address = <&factory 0x28>; }; &pcie0 { @@ -153,5 +154,7 @@ reg = <0x0000 0 0 0 0>; mediatek,mtd-eeprom = <&factory 0x8000>; ieee80211-freq-limit = <5000000 6000000>; + mtd-mac-address = <&factory 0x28>; + mtd-mac-address-increment = <2>; }; }; |