wifi: mt76: mt7921: fix a potential association failure upon resuming
authorLeon Yen <leon.yen@mediatek.com>
Tue, 6 Feb 2024 08:53:04 +0000 (16:53 +0800)
committerFelix Fietkau <nbd@nbd.name>
Thu, 22 Feb 2024 08:55:19 +0000 (09:55 +0100)
In multi-channel scenarios, the granted channel must be aborted before
suspending. Otherwise, the firmware will be put into a wrong state,
resulting in an association failure after resuming.
With this patch, the granted channel will be aborted before suspending
if necessary.

Signed-off-by: Leon Yen <leon.yen@mediatek.com>
Signed-off-by: Ming Yen Hsieh <mingyen.hsieh@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7921/main.c
drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h
drivers/net/wireless/mediatek/mt76/mt7921/pci.c
drivers/net/wireless/mediatek/mt76/mt7921/sdio.c

index 0d5adc5ddae38283eb618ba00284fb4b527c677c..ca36de34171b6a607f5f55a1a910d3b0b26f2d3f 100644 (file)
@@ -325,6 +325,19 @@ static void mt7921_roc_iter(void *priv, u8 *mac,
        mt7921_mcu_abort_roc(phy, mvif, phy->roc_token_id);
 }
 
+void mt7921_roc_abort_sync(struct mt792x_dev *dev)
+{
+       struct mt792x_phy *phy = &dev->phy;
+
+       del_timer_sync(&phy->roc_timer);
+       cancel_work_sync(&phy->roc_work);
+       if (test_and_clear_bit(MT76_STATE_ROC, &phy->mt76->state))
+               ieee80211_iterate_active_interfaces(mt76_hw(dev),
+                                                   IEEE80211_IFACE_ITER_RESUME_ALL,
+                                                   mt7921_roc_iter, (void *)phy);
+}
+EXPORT_SYMBOL_GPL(mt7921_roc_abort_sync);
+
 void mt7921_roc_work(struct work_struct *work)
 {
        struct mt792x_phy *phy;
index 1cb21133992b700fbcccbb730062caaa4b7ac505..3016636d18c6fb25da215bbdf509c2dd3c5a5306 100644 (file)
@@ -322,4 +322,5 @@ int mt7921_mcu_set_roc(struct mt792x_phy *phy, struct mt792x_vif *vif,
                       enum mt7921_roc_req type, u8 token_id);
 int mt7921_mcu_abort_roc(struct mt792x_phy *phy, struct mt792x_vif *vif,
                         u8 token_id);
+void mt7921_roc_abort_sync(struct mt792x_dev *dev);
 #endif
index 7037ef57651e1c66f23a37935feae00960182682..f85e7c90dd25f19a4e6ae7659c649b6e388d8f23 100644 (file)
@@ -406,6 +406,8 @@ static int mt7921_pci_suspend(struct device *device)
        cancel_delayed_work_sync(&pm->ps_work);
        cancel_work_sync(&pm->wake_work);
 
+       mt7921_roc_abort_sync(dev);
+
        err = mt792x_mcu_drv_pmctrl(dev);
        if (err < 0)
                goto restore_suspend;
index a9ce1e746b954bc7c7599f23ec6a6c23031dd384..004d942ee11a86dc91ea9b6a3e1aa82131a751db 100644 (file)
@@ -216,6 +216,8 @@ static int mt7921s_suspend(struct device *__dev)
        cancel_delayed_work_sync(&pm->ps_work);
        cancel_work_sync(&pm->wake_work);
 
+       mt7921_roc_abort_sync(dev);
+
        err = mt792x_mcu_drv_pmctrl(dev);
        if (err < 0)
                goto restore_suspend;