summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.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_iodata_wn-ax1167gr.dts
parentabc17bf306acd1c5954fbba97134e891439f917c (diff)
downloadopenwrt-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.gz
openwrt-06bb4a5018cd84dc4553e71c273e2daae2c996ab.tar.bz2
openwrt-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_iodata_wn-ax1167gr.dts')
-rw-r--r--target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.dts26
1 files changed, 24 insertions, 2 deletions
diff --git a/target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.dts b/target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.dts
index c549bbb518..cc6446b75c 100644
--- a/target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.dts
+++ b/target/linux/ramips/dts/mt7621_iodata_wn-ax1167gr.dts
@@ -128,7 +128,8 @@
};
&gmac0 {
- mtd-mac-address = <&iNIC_rf 0x4>;
+ nvmem-cells = <&macaddr_iNIC_rf_4>;
+ nvmem-cell-names = "mac-address";
};
&switch0 {
@@ -136,7 +137,8 @@
port@0 {
status = "okay";
label = "wan";
- mtd-mac-address = <&factory 0x4>;
+ nvmem-cells = <&macaddr_factory_4>;
+ nvmem-cell-names = "mac-address";
mac-address-increment = <1>;
};
@@ -191,3 +193,23 @@
&xhci {
status = "disabled";
};
+
+&iNIC_rf {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_iNIC_rf_4: macaddr@4 {
+ reg = <0x4 0x6>;
+ };
+};
+
+&factory {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_factory_4: macaddr@4 {
+ reg = <0x4 0x6>;
+ };
+};