aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.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_8m-split-uboot.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_8m-split-uboot.dtsi')
-rw-r--r--target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi16
1 files changed, 14 insertions, 2 deletions
diff --git a/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi b/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
index b6ce7b1f56..bbd66e113c 100644
--- a/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
+++ b/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
@@ -74,14 +74,26 @@
&wmac {
status = "okay";
- mtd-mac-address = <&rom 0xf100>;
+ nvmem-cells = <&macaddr_rom_f100>;
+ nvmem-cell-names = "mac-address";
mediatek,mtd-eeprom = <&radio 0x0>;
};
&ethernet {
- mtd-mac-address = <&rom 0xf100>;
+ nvmem-cells = <&macaddr_rom_f100>;
+ nvmem-cell-names = "mac-address";
};
&esw {
mediatek,portmap = <0x3e>;
};
+
+&rom {
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_rom_f100: macaddr@f100 {
+ reg = <0xf100 0x6>;
+ };
+};