|
|
@@ -49,7 +49,8 @@
|
|
|
|
|
|
&wmac {
|
|
|
mediatek,mtd-eeprom = <&factory 0x0>;
|
|
|
- mtd-mac-address = <&eeprom 0x0>;
|
|
|
+ nvmem-cells = <&macaddr_eeprom_0>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
status = "okay";
|
|
|
};
|
|
|
|
|
|
@@ -57,11 +58,27 @@
|
|
|
wifi@0,0 {
|
|
|
reg = <0x0 0 0 0 0>;
|
|
|
mediatek,mtd-eeprom = <&factory 0x20000>;
|
|
|
- mtd-mac-address = <&eeprom 0x6>;
|
|
|
+ nvmem-cells = <&macaddr_eeprom_6>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
ieee80211-freq-limit = <5000000 6000000>;
|
|
|
};
|
|
|
};
|
|
|
|
|
|
&gmac0 {
|
|
|
- mtd-mac-address = <&eeprom 0x0>;
|
|
|
+ nvmem-cells = <&macaddr_eeprom_0>;
|
|
|
+ nvmem-cell-names = "mac-address";
|
|
|
+};
|
|
|
+
|
|
|
+&eeprom {
|
|
|
+ compatible = "nvmem-cells";
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+
|
|
|
+ macaddr_eeprom_0: macaddr@0 {
|
|
|
+ reg = <0x0 0x6>;
|
|
|
+ };
|
|
|
+
|
|
|
+ macaddr_eeprom_6: macaddr@6 {
|
|
|
+ reg = <0x6 0x6>;
|
|
|
+ };
|
|
|
};
|