wifi: mt76: mt7996: adjust timeout value for boot-up calibration commands

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>
This commit is contained in:
Rex Lu 2026-03-12 17:57:22 +08:00 committed by Felix Fietkau
parent 22f9abaf36
commit 9eeea2984c

View 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;