diff options
author | Chukun Pan <amadeus@jmu.edu.cn> | 2022-10-19 23:16:30 +0800 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-04-21 21:35:41 +0200 |
commit | 31c15813f9d273cf7c5683132baa12a6d728f3c8 (patch) | |
tree | 05dcc6579100955177bff1e066e796da25726647 /target/linux/ramips/dts | |
parent | 1f68baf5f0d86f321fb90453e68bcfde0d45fd08 (diff) | |
download | upstream-31c15813f9d273cf7c5683132baa12a6d728f3c8.tar.gz upstream-31c15813f9d273cf7c5683132baa12a6d728f3c8.tar.bz2 upstream-31c15813f9d273cf7c5683132baa12a6d728f3c8.zip |
ramips: MSG1500 X.00: switch to mac-address-ascii dts
The Config partition of some machines is special, and the openwrt script
cannot read the protest_lan_mac correctly. This problem can be solved by
reading the mac address (ascii) in dts.
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r-- | target/linux/ramips/dts/mt7621_raisecom_msg1500-x-00.dts | 39 |
1 files changed, 29 insertions, 10 deletions
diff --git a/target/linux/ramips/dts/mt7621_raisecom_msg1500-x-00.dts b/target/linux/ramips/dts/mt7621_raisecom_msg1500-x-00.dts index 3c5f1e520c..5d713c0098 100644 --- a/target/linux/ramips/dts/mt7621_raisecom_msg1500-x-00.dts +++ b/target/linux/ramips/dts/mt7621_raisecom_msg1500-x-00.dts @@ -13,6 +13,7 @@ led-boot = &led_usb; led-failsafe = &led_usb; led-upgrade = &led_usb; + label-mac-device = &gmac0; }; leds { @@ -79,12 +80,32 @@ label = "Config"; reg = <0x80000 0x80000>; read-only; + + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_config_8014: macaddr@8014 { + reg = <0x8014 0x11>; + }; + + macaddr_config_8036: macaddr@8036 { + reg = <0x8036 0x11>; + }; }; factory: partition@100000 { label = "Factory"; reg = <0x100000 0x40000>; read-only; + + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_factory_4: macaddr@4 { + reg = <0x4 0x6>; + }; }; partition@140000 { @@ -115,10 +136,18 @@ }; }; +&gmac0 { + nvmem-cells = <&macaddr_config_8014>; + nvmem-cell-names = "mac-address-ascii"; +}; + &gmac1 { status = "okay"; label = "wan"; phy-handle = <ðphy4>; + + nvmem-cells = <&macaddr_config_8036>; + nvmem-cell-names = "mac-address-ascii"; }; &mdio { @@ -157,13 +186,3 @@ function = "gpio"; }; }; - -&factory { - compatible = "nvmem-cells"; - #address-cells = <1>; - #size-cells = <1>; - - macaddr_factory_4: macaddr@4 { - reg = <0x4 0x6>; - }; -}; |