aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
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/mt7621_cudy_wr2100.dts
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/mt7621_cudy_wr2100.dts')
-rw-r--r--target/linux/ramips/dts/mt7621_cudy_wr2100.dts18
1 files changed, 15 insertions, 3 deletions
diff --git a/target/linux/ramips/dts/mt7621_cudy_wr2100.dts b/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
index 692c94da55..21d03322a7 100644
--- a/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
+++ b/target/linux/ramips/dts/mt7621_cudy_wr2100.dts
@@ -78,7 +78,8 @@
};
&gmac0 {
- mtd-mac-address = <&bdinfo 0xde00>;
+ nvmem-cells = <&macaddr_bdinfo_de00>;
+ nvmem-cell-names = "mac-address";
};
&pcie {
@@ -194,8 +195,19 @@
status = "okay";
label = "wan";
- mtd-mac-address = <&bdinfo 0xde00>;
- mtd-mac-address-increment = <1>;
+ nvmem-cells = <&macaddr_bdinfo_de00>;
+ nvmem-cell-names = "mac-address";
+ mac-address-increment = <1>;
};
};
};
+
+&bdinfo {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_bdinfo_de00: macaddr@de00 {
+ reg = <0xde00 0x6>;
+ };
+};