]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: mt76: mt7996: adjust timeout value for boot-up calibration commands
authorRex Lu <rex.lu@mediatek.com>
Thu, 12 Mar 2026 09:57:22 +0000 (17:57 +0800)
committerFelix Fietkau <nbd@nbd.name>
Tue, 24 Mar 2026 15:49:31 +0000 (15:49 +0000)
Align the vendor driver by adjusting the timeout values for the
MCU_UNI_CMD_EFUSE_CTRL and MCU_UNI_CMD_EXT_EEPROM_CTRL commands.
Without this adjustment, false positive command timeout errors may occur,
especially on some iPA variants.

Signed-off-by: Rex Lu <rex.lu@mediatek.com>
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Link: https://patch.msgid.link/20260312095724.2117448-4-shayne.chen@mediatek.com
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7996/mcu.c

index 2a50d0758d9c8f416527d9d33ad9357fdf109c98..4bf22318396f82e705693a52693486628c4c88e1 100644 (file)
@@ -278,7 +278,8 @@ mt7996_mcu_set_timeout(struct mt76_dev *mdev, int cmd)
                mdev->mcu.timeout = 2 * HZ;
                return;
        case MCU_UNI_CMD_EFUSE_CTRL:
-               mdev->mcu.timeout = 20 * HZ;
+       case MCU_UNI_CMD_EXT_EEPROM_CTRL:
+               mdev->mcu.timeout = 30 * HZ;
                return;
        default:
                break;