]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
mediatek: filogic: add 6G precal to Acer Vero W6m 21894/head
authorZhi-Jun You <hujy652@protonmail.com>
Fri, 6 Feb 2026 11:25:30 +0000 (19:25 +0800)
committerHauke Mehrtens <hauke@hauke-m.de>
Tue, 10 Feb 2026 23:35:38 +0000 (00:35 +0100)
Bootlog has the following line:
mt7915e 0000:01:00.0: missing precal data, size=403472

It is because precal was not included in the previous NVMEM conversion.

Fix this by adding it to the dts.

Fixes: dbc2923cbe21 ("mediatek: filogic: convert Acer Predator W6 to use NVMEM framework")
Signed-off-by: Zhi-Jun You <hujy652@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/21894
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
target/linux/mediatek/dts/mt7986a-acer-vero-w6m.dts

index 7927efcb003cae9dcd2af1fe13d889cf735a3f7e..683be1cf5087f99544d1a3d4241ff08e8bc191d1 100644 (file)
        eeprom_factory_a0000: eeprom@a0000 {
                reg = <0xa0000 0x1000>;
        };
+
+       precal_factory_a1010: precal@a1010 {
+               reg = <0xa1010 0x62810>;
+       };
 };
 
 &slot0 {
        radio0: mt7915@0,0 {
                reg = <0x0000 0 0 0 0>;
-               nvmem-cells = <&eeprom_factory_a0000>;
-               nvmem-cell-names = "eeprom";
+               nvmem-cells = <&eeprom_factory_a0000>, <&precal_factory_a1010>;
+               nvmem-cell-names = "eeprom", "precal";
        };
 };