ramips: fix DTS EEPROM property for some MT7628 devices
[openwrt/openwrt.git] / target / linux / ramips / dts / mt7628an_totolink_lr1200.dts
index 88bdbf5bbf88e407bd5d5497d0384ca8082e71eb..9d1c930d762dd3111586d78dcc7d6e3e8b775e18 100644 (file)
@@ -1,5 +1,4 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
-/dts-v1/;
 
 #include "mt7628an.dtsi"
 
                compatible = "gpio-leds";
 
                led_sys: sys {
-                       label = "lr1200:blue:sys";
+                       label = "blue:sys";
                        gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
                };
 
                sms {
-                       label = "lr1200:blue:sms";
+                       label = "blue:sms";
                        gpios = <&gpio 37 GPIO_ACTIVE_LOW>;
                };
 
                wifi {
-                       label = "lr1200:blue:wifi";
+                       label = "blue:wifi";
                        gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
                        linux,default-trigger = "phy0tpt";
                };
 
                3g {
-                       label = "lr1200:blue:3g";
+                       label = "blue:3g";
                        gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
                };
 
                4g {
-                       label = "lr1200:blue:4g";
+                       label = "blue:4g";
                        gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
                };
 
                rssi1 {
-                       label = "lr1200:blue:rssi1";
+                       label = "blue:rssi1";
                        gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
                };
 
                rssi2 {
-                       label = "lr1200:blue:rssi2";
+                       label = "blue:rssi2";
                        gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
                };
 
                rssi3 {
-                       label = "lr1200:blue:rssi3";
+                       label = "blue:rssi3";
                        gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
                };
 
                rssi4 {
-                       label = "lr1200:blue:rssi4";
+                       label = "blue:rssi4";
                        gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
                };
        };
 
 &wmac {
        status = "okay";
+
+       mediatek,mtd-eeprom = <&factory 0x0>;
 };
 
 &ethernet {
-       mtd-mac-address = <&factory 0x28>;
+       nvmem-cells = <&macaddr_factory_28>;
+       nvmem-cell-names = "mac-address";
 };
 
 &spi0 {
        status = "okay";
 
-       m25p80@0 {
+       flash@0 {
                compatible = "jedec,spi-nor";
                reg = <0>;
                spi-max-frequency = <40000000>;
                };
        };
 };
+
+&factory {
+       compatible = "nvmem-cells";
+       #address-cells = <1>;
+       #size-cells = <1>;
+
+       macaddr_factory_28: macaddr@28 {
+               reg = <0x28 0x6>;
+       };
+};