提交 9800462d 编写于 作者: L Lorenzo Bianconi 提交者: Felix Fietkau

mt76: mt7921: rely on mt76_connac_pm_ref/mt76_connac_pm_unref in tx path

Introduce mt7921_tx_worker routine as mt76 tx worker callback for
mt7921.
Rely on mt76_connac_pm_ref/mt76_connac_pm_unref to check PM state and
increment/decrement wake counter
Signed-off-by: NLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: NFelix Fietkau <nbd@nbd.name>
上级 7f2bc8ba
...@@ -219,9 +219,11 @@ int mt7921_register_device(struct mt7921_dev *dev) ...@@ -219,9 +219,11 @@ int mt7921_register_device(struct mt7921_dev *dev)
dev->phy.dev = dev; dev->phy.dev = dev;
dev->phy.mt76 = &dev->mt76.phy; dev->phy.mt76 = &dev->mt76.phy;
dev->mt76.phy.priv = &dev->phy; dev->mt76.phy.priv = &dev->phy;
dev->mt76.tx_worker.fn = mt7921_tx_worker;
INIT_DELAYED_WORK(&dev->pm.ps_work, mt7921_pm_power_save_work); INIT_DELAYED_WORK(&dev->pm.ps_work, mt7921_pm_power_save_work);
INIT_WORK(&dev->pm.wake_work, mt7921_pm_wake_work); INIT_WORK(&dev->pm.wake_work, mt7921_pm_wake_work);
spin_lock_init(&dev->pm.wake.lock);
mutex_init(&dev->pm.mutex); mutex_init(&dev->pm.mutex);
init_completion(&dev->pm.wake_cmpl); init_completion(&dev->pm.wake_cmpl);
spin_lock_init(&dev->pm.txq_lock); spin_lock_init(&dev->pm.txq_lock);
......
...@@ -725,23 +725,18 @@ void mt7921_mac_sta_remove(struct mt76_dev *mdev, struct ieee80211_vif *vif, ...@@ -725,23 +725,18 @@ void mt7921_mac_sta_remove(struct mt76_dev *mdev, struct ieee80211_vif *vif,
mt76_connac_power_save_sched(&dev->mphy, &dev->pm); mt76_connac_power_save_sched(&dev->mphy, &dev->pm);
} }
static void void mt7921_tx_worker(struct mt76_worker *w)
mt7921_wake_tx_queue(struct ieee80211_hw *hw, struct ieee80211_txq *txq)
{ {
struct mt7921_dev *dev = mt7921_hw_dev(hw); struct mt7921_dev *dev = container_of(w, struct mt7921_dev,
struct mt7921_phy *phy = mt7921_hw_phy(hw); mt76.tx_worker);
struct mt76_phy *mphy = phy->mt76;
if (!test_bit(MT76_STATE_RUNNING, &mphy->state))
return;
if (test_bit(MT76_STATE_PM, &mphy->state)) { if (!mt76_connac_pm_ref(&dev->mphy, &dev->pm)) {
queue_work(dev->mt76.wq, &dev->pm.wake_work); queue_work(dev->mt76.wq, &dev->pm.wake_work);
return; return;
} }
dev->pm.last_activity = jiffies; mt76_txq_schedule_all(&dev->mphy);
mt76_worker_schedule(&dev->mt76.tx_worker); mt76_connac_pm_unref(&dev->pm);
} }
static void mt7921_tx(struct ieee80211_hw *hw, static void mt7921_tx(struct ieee80211_hw *hw,
...@@ -769,9 +764,9 @@ static void mt7921_tx(struct ieee80211_hw *hw, ...@@ -769,9 +764,9 @@ static void mt7921_tx(struct ieee80211_hw *hw,
wcid = &mvif->sta.wcid; wcid = &mvif->sta.wcid;
} }
if (!test_bit(MT76_STATE_PM, &mphy->state)) { if (mt76_connac_pm_ref(mphy, &dev->pm)) {
dev->pm.last_activity = jiffies;
mt76_tx(mphy, control->sta, wcid, skb); mt76_tx(mphy, control->sta, wcid, skb);
mt76_connac_pm_unref(&dev->pm);
return; return;
} }
...@@ -1200,7 +1195,7 @@ const struct ieee80211_ops mt7921_ops = { ...@@ -1200,7 +1195,7 @@ const struct ieee80211_ops mt7921_ops = {
.set_key = mt7921_set_key, .set_key = mt7921_set_key,
.ampdu_action = mt7921_ampdu_action, .ampdu_action = mt7921_ampdu_action,
.set_rts_threshold = mt7921_set_rts_threshold, .set_rts_threshold = mt7921_set_rts_threshold,
.wake_tx_queue = mt7921_wake_tx_queue, .wake_tx_queue = mt76_wake_tx_queue,
.release_buffered_frames = mt76_release_buffered_frames, .release_buffered_frames = mt76_release_buffered_frames,
.get_txpower = mt76_get_txpower, .get_txpower = mt76_get_txpower,
.get_stats = mt7921_get_stats, .get_stats = mt7921_get_stats,
......
...@@ -336,6 +336,8 @@ int mt7921_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr, ...@@ -336,6 +336,8 @@ int mt7921_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
enum mt76_txq_id qid, struct mt76_wcid *wcid, enum mt76_txq_id qid, struct mt76_wcid *wcid,
struct ieee80211_sta *sta, struct ieee80211_sta *sta,
struct mt76_tx_info *tx_info); struct mt76_tx_info *tx_info);
void mt7921_tx_worker(struct mt76_worker *w);
void mt7921_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue_entry *e); void mt7921_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue_entry *e);
int mt7921_init_tx_queues(struct mt7921_phy *phy, int idx, int n_desc); int mt7921_init_tx_queues(struct mt7921_phy *phy, int idx, int n_desc);
void mt7921_tx_token_put(struct mt7921_dev *dev); void mt7921_tx_token_put(struct mt7921_dev *dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册