diff options
| author | Shiji Yang <yangshiji66@qq.com> | 2023-10-02 10:12:02 +0800 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-10-17 12:07:26 +0200 |
| commit | e93f41adee3e5fa4046811890b92c9b86875911b (patch) | |
| tree | 96b26c91ef71d5bb8dd5a2382c3fa7c5a13eae55 /target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi | |
| parent | da42c329c6c73b5f4eb40f894195c488ba76d76b (diff) | |
| download | upstream-e93f41adee3e5fa4046811890b92c9b86875911b.tar.gz upstream-e93f41adee3e5fa4046811890b92c9b86875911b.tar.bz2 upstream-e93f41adee3e5fa4046811890b92c9b86875911b.zip | |
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_wrtnode_wrtnode2.dtsi')
| -rw-r--r-- | target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi b/target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi index bb35357808e..c3fcaabe2fc 100644 --- a/target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi +++ b/target/linux/ramips/dts/mt7628an_wrtnode_wrtnode2.dtsi @@ -48,9 +48,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_4: macaddr@4 { + reg = <0x4 0x6>; + }; }; partition@50000 { @@ -90,15 +101,6 @@ &wmac { status = "okay"; - mediatek,mtd-eeprom = <&factory 0x0>; -}; - -&factory { - compatible = "nvmem-cells"; - #address-cells = <1>; - #size-cells = <1>; - - macaddr_factory_4: macaddr@4 { - reg = <0x4 0x6>; - }; + nvmem-cells = <&eeprom_factory_0>; + nvmem-cell-names = "eeprom"; }; |
