aboutsummaryrefslogtreecommitdiff
path: root/target/linux/ramips/dts/mt7628an_skylab_skw92a.dts
diff options
context:
space:
mode:
authorShiji Yang <yangshiji66@qq.com>2023-10-02 10:12:02 +0800
committerChristian Marangi <ansuelsmth@gmail.com>2023-10-17 12:07:26 +0200
commite93f41adee3e5fa4046811890b92c9b86875911b (patch)
tree96b26c91ef71d5bb8dd5a2382c3fa7c5a13eae55 /target/linux/ramips/dts/mt7628an_skylab_skw92a.dts
parentda42c329c6c73b5f4eb40f894195c488ba76d76b (diff)
ramips: convert MT7628 EEPROM to NVMEM format
This patch converts MT7628 WiFi calibration data to NVMEM format. The EEPROM size is 0x400. Signed-off-by: Shiji Yang <yangshiji66@qq.com>
Diffstat (limited to 'target/linux/ramips/dts/mt7628an_skylab_skw92a.dts')
-rw-r--r--target/linux/ramips/dts/mt7628an_skylab_skw92a.dts24
1 files changed, 13 insertions, 11 deletions
diff --git a/target/linux/ramips/dts/mt7628an_skylab_skw92a.dts b/target/linux/ramips/dts/mt7628an_skylab_skw92a.dts
index 174272f95f..bfb1bd808a 100644
--- a/target/linux/ramips/dts/mt7628an_skylab_skw92a.dts
+++ b/target/linux/ramips/dts/mt7628an_skylab_skw92a.dts
@@ -54,7 +54,8 @@
&wmac {
status = "okay";
- mediatek,mtd-eeprom = <&factory 0x0>;
+ nvmem-cells = <&eeprom_factory_0>;
+ nvmem-cell-names = "eeprom";
};
&spi0 {
@@ -83,9 +84,20 @@
};
factory: partition@40000 {
+ compatible = "nvmem-cells";
label = "factory";
reg = <0x40000 0x10000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
read-only;
+
+ eeprom_factory_0: eeprom@0 {
+ reg = <0x0 0x400>;
+ };
+
+ macaddr_factory_28: macaddr@28 {
+ reg = <0x28 0x6>;
+ };
};
partition@50000 {
@@ -100,13 +112,3 @@
&uart1 {
status = "okay";
};
-
-&factory {
- compatible = "nvmem-cells";
- #address-cells = <1>;
- #size-cells = <1>;
-
- macaddr_factory_28: macaddr@28 {
- reg = <0x28 0x6>;
- };
-};