aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7628an_tplink_re200.dtsi
diff options
context:
space:
mode:
authorAnsuel Smith <ansuelsmth@gmail.com>2021-04-02 23:50:02 +0200
committerPetr Štetiar <ynezz@true.cz>2021-07-19 14:51:22 +0200
commit06bb4a5018cd84dc4553e71c273e2daae2c996ab (patch)
tree12d31c9dbc5e65ea63124755069e255dbd34db2c /target/linux/ramips/dts/mt7628an_tplink_re200.dtsi
parentabc17bf306acd1c5954fbba97134e891439f917c (diff)
downloadupstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.gz
upstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.bz2
upstream-06bb4a5018cd84dc4553e71c273e2daae2c996ab.zip
ramips: convert mtd-mac-address to nvmem implementation
Define nvmem-cells and convert mtd-mac-address to nvmem implementation. The conversion is done with an automated script. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'target/linux/ramips/dts/mt7628an_tplink_re200.dtsi')
-rw-r--r--target/linux/ramips/dts/mt7628an_tplink_re200.dtsi19
1 files changed, 16 insertions, 3 deletions
diff --git a/target/linux/ramips/dts/mt7628an_tplink_re200.dtsi b/target/linux/ramips/dts/mt7628an_tplink_re200.dtsi
index 633950f287..d221a5c7c8 100644
--- a/target/linux/ramips/dts/mt7628an_tplink_re200.dtsi
+++ b/target/linux/ramips/dts/mt7628an_tplink_re200.dtsi
@@ -130,14 +130,16 @@
};
&ethernet {
- mtd-mac-address = <&config 0x2008>;
+ nvmem-cells = <&macaddr_config_2008>;
+ nvmem-cell-names = "mac-address";
};
&wmac {
status = "okay";
mediatek,mtd-eeprom = <&radio 0x0>;
- mtd-mac-address = <&config 0x2008>;
+ nvmem-cells = <&macaddr_config_2008>;
+ nvmem-cell-names = "mac-address";
mac-address-increment = <1>;
};
@@ -150,7 +152,18 @@
reg = <0x0000 0 0 0 0>;
mediatek,mtd-eeprom = <&radio 0x8000>;
ieee80211-freq-limit = <5000000 6000000>;
- mtd-mac-address = <&config 0x2008>;
+ nvmem-cells = <&macaddr_config_2008>;
+ nvmem-cell-names = "mac-address";
mac-address-increment = <2>;
};
};
+
+&config {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_config_2008: macaddr@2008 {
+ reg = <0x2008 0x6>;
+ };
+};