wifi: mt76: mt7925: fix fails to enter low power mode in suspend state
authorQuan Zhou <quan.zhou@mediatek.com>
Tue, 14 Jan 2025 05:06:22 +0000 (13:06 +0800)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Mar 2025 13:47:02 +0000 (14:47 +0100)
The mt7925 sometimes fails to enter low power mode during suspend.
This is caused by the chip firmware sending an additional ACK event
to the host after processing the suspend command. Due to timing issues,
this event may not reach the host, causing the chip to get stuck.
To resolve this, the ACK flag in the suspend command is removed,
as it is not needed in the MT7925 architecture. This prevents the
firmware from sending the additional ACK event, ensuring the device
can reliably enter low power mode during suspend.

Signed-off-by: Quan Zhou <quan.zhou@mediatek.com>
Link: https://patch.msgid.link/d056938144a3a0336c3a4e3cec6f271899f32bf7.1736775666.git.quan.zhou@mediatek.com
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7925/mcu.c

index 5f40c3c1ffa10f11a89ee14f63433155181b8531..4bbbcfd5cdd4f74adfa9ea89564080f17d4842fc 100644 (file)
@@ -3272,6 +3272,9 @@ int mt7925_mcu_fill_message(struct mt76_dev *mdev, struct sk_buff *skb,
                else
                        uni_txd->option = MCU_CMD_UNI_EXT_ACK;
 
+               if (cmd == MCU_UNI_CMD(HIF_CTRL))
+                       uni_txd->option &= ~MCU_CMD_ACK;
+
                goto exit;
        }