Commit 223fd4f8 authored by Felix Fietkau's avatar Felix Fietkau

mt76: mt7915: rework tx rate reporting

Instead of attaching the last reported rate to tx packets, use
ieee80211_tx_status_ext to immediately pass the rate to mac80211 after
receiving it from the firmware.
Preparation for implementing full tx status reporting
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 94e4f579
...@@ -1073,62 +1073,68 @@ mt7915_tx_check_aggr(struct ieee80211_sta *sta, __le32 *txwi) ...@@ -1073,62 +1073,68 @@ mt7915_tx_check_aggr(struct ieee80211_sta *sta, __le32 *txwi)
} }
static void static void
mt7915_tx_complete_status(struct mt76_dev *mdev, struct sk_buff *skb, mt7915_txp_skb_unmap(struct mt76_dev *dev, struct mt76_txwi_cache *t)
struct ieee80211_sta *sta, u8 stat,
struct list_head *free_list)
{ {
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); struct mt7915_txp *txp;
struct ieee80211_tx_status status = { int i;
.sta = sta,
.info = info,
.skb = skb,
.free_list = free_list,
};
struct ieee80211_hw *hw;
if (sta) { txp = mt7915_txwi_to_txp(dev, t);
struct mt7915_sta *msta; for (i = 0; i < txp->nbuf; i++)
dma_unmap_single(dev->dev, le32_to_cpu(txp->buf[i]),
le16_to_cpu(txp->len[i]), DMA_TO_DEVICE);
}
msta = (struct mt7915_sta *)sta->drv_priv; static void
status.rate = &msta->stats.tx_rate; mt7915_txwi_free(struct mt7915_dev *dev, struct mt76_txwi_cache *t,
} struct ieee80211_sta *sta, struct list_head *free_list)
{
struct ieee80211_tx_status status = {};
struct mt76_dev *mdev = &dev->mt76;
struct ieee80211_tx_info *info;
struct mt76_wcid *wcid;
__le32 *txwi;
u16 wcid_idx;
#ifdef CONFIG_NL80211_TESTMODE mt7915_txp_skb_unmap(mdev, t);
if (mt76_is_testmode_skb(mdev, skb, &hw)) { if (!t->skb)
struct mt7915_phy *phy = mt7915_hw_phy(hw); goto out;
struct ieee80211_vif *vif = phy->monitor_vif;
struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv;
mt76_tx_complete_skb(mdev, mvif->sta.wcid.idx, skb); txwi = (__le32 *)mt76_get_txwi_ptr(mdev, t);
return; if (sta) {
wcid = (struct mt76_wcid *)sta->drv_priv;
wcid_idx = wcid->idx;
if (likely(t->skb->protocol != cpu_to_be16(ETH_P_PAE)))
mt7915_tx_check_aggr(sta, txwi);
} else {
wcid_idx = FIELD_GET(MT_TXD1_WLAN_IDX, le32_to_cpu(txwi[1]));
} }
#endif
hw = mt76_tx_status_get_hw(mdev, skb); info = IEEE80211_SKB_CB(t->skb);
if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS) {
struct ieee80211_hw *hw;
if (info->flags & IEEE80211_TX_CTL_AMPDU) if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
info->flags |= IEEE80211_TX_STAT_AMPDU; info->flags |= IEEE80211_TX_STAT_ACK;
if (stat) info->status.rates[0].count = 0;
ieee80211_tx_info_clear_status(info); info->status.rates[0].idx = -1;
if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) status.skb = t->skb;
info->flags |= IEEE80211_TX_STAT_ACK; status.sta = sta;
status.info = info;
info->status.tx_time = 0; hw = mt76_tx_status_get_hw(mdev, t->skb);
ieee80211_tx_status_ext(hw, &status); ieee80211_tx_status_ext(hw, &status);
}
void mt7915_txp_skb_unmap(struct mt76_dev *dev, goto out;
struct mt76_txwi_cache *t) }
{
struct mt7915_txp *txp;
int i;
txp = mt7915_txwi_to_txp(dev, t); __mt76_tx_complete_skb(mdev, wcid_idx, t->skb, free_list);
for (i = 0; i < txp->nbuf; i++)
dma_unmap_single(dev->dev, le32_to_cpu(txp->buf[i]), out:
le16_to_cpu(txp->len[i]), DMA_TO_DEVICE); t->skb = NULL;
mt76_put_txwi(mdev, t);
} }
static void static void
...@@ -1197,28 +1203,7 @@ mt7915_mac_tx_free(struct mt7915_dev *dev, struct sk_buff *skb) ...@@ -1197,28 +1203,7 @@ mt7915_mac_tx_free(struct mt7915_dev *dev, struct sk_buff *skb)
if (!txwi) if (!txwi)
continue; continue;
mt7915_txp_skb_unmap(mdev, txwi); mt7915_txwi_free(dev, txwi, sta, &free_list);
if (txwi->skb) {
struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txwi->skb);
void *txwi_ptr = mt76_get_txwi_ptr(mdev, txwi);
if (likely(txwi->skb->protocol != cpu_to_be16(ETH_P_PAE)))
mt7915_tx_check_aggr(sta, txwi_ptr);
if (sta && !info->tx_time_est) {
struct mt76_wcid *wcid = (struct mt76_wcid *)sta->drv_priv;
int pending;
pending = atomic_dec_return(&wcid->non_aql_packets);
if (pending < 0)
atomic_cmpxchg(&wcid->non_aql_packets, pending, 0);
}
mt7915_tx_complete_status(mdev, txwi->skb, sta, stat, &free_list);
txwi->skb = NULL;
}
mt76_put_txwi(mdev, txwi);
} }
mt7915_mac_sta_poll(dev); mt7915_mac_sta_poll(dev);
...@@ -1288,15 +1273,8 @@ void mt7915_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue_entry *e) ...@@ -1288,15 +1273,8 @@ void mt7915_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue_entry *e)
e->skb = t ? t->skb : NULL; e->skb = t ? t->skb : NULL;
} }
if (e->skb) { if (e->skb)
struct mt76_tx_cb *cb = mt76_tx_skb_cb(e->skb); mt76_tx_complete_skb(mdev, e->wcid, e->skb);
struct mt76_wcid *wcid;
wcid = rcu_dereference(dev->mt76.wcid[cb->wcid]);
mt7915_tx_complete_status(mdev, e->skb, wcid_to_sta(wcid), 0,
NULL);
}
} }
void mt7915_mac_cca_stats_reset(struct mt7915_phy *phy) void mt7915_mac_cca_stats_reset(struct mt7915_phy *phy)
...@@ -1582,14 +1560,7 @@ void mt7915_tx_token_put(struct mt7915_dev *dev) ...@@ -1582,14 +1560,7 @@ void mt7915_tx_token_put(struct mt7915_dev *dev)
spin_lock_bh(&dev->mt76.token_lock); spin_lock_bh(&dev->mt76.token_lock);
idr_for_each_entry(&dev->mt76.token, txwi, id) { idr_for_each_entry(&dev->mt76.token, txwi, id) {
mt7915_txp_skb_unmap(&dev->mt76, txwi); mt7915_txwi_free(dev, txwi, NULL, NULL);
if (txwi->skb) {
struct ieee80211_hw *hw;
hw = mt76_tx_status_get_hw(&dev->mt76, txwi->skb);
ieee80211_free_txskb(hw, txwi->skb);
}
mt76_put_txwi(&dev->mt76, txwi);
dev->mt76.token_count--; dev->mt76.token_count--;
} }
spin_unlock_bh(&dev->mt76.token_lock); spin_unlock_bh(&dev->mt76.token_lock);
......
...@@ -469,6 +469,7 @@ mt7915_mcu_tx_rate_report(struct mt7915_dev *dev, struct sk_buff *skb) ...@@ -469,6 +469,7 @@ mt7915_mcu_tx_rate_report(struct mt7915_dev *dev, struct sk_buff *skb)
u16 attempts = le16_to_cpu(ra->attempts); u16 attempts = le16_to_cpu(ra->attempts);
u16 curr = le16_to_cpu(ra->curr_rate); u16 curr = le16_to_cpu(ra->curr_rate);
u16 wcidx = le16_to_cpu(ra->wlan_idx); u16 wcidx = le16_to_cpu(ra->wlan_idx);
struct ieee80211_tx_status status = {};
struct mt76_phy *mphy = &dev->mphy; struct mt76_phy *mphy = &dev->mphy;
struct mt7915_sta_stats *stats; struct mt7915_sta_stats *stats;
struct mt7915_sta *msta; struct mt7915_sta *msta;
...@@ -500,6 +501,13 @@ mt7915_mcu_tx_rate_report(struct mt7915_dev *dev, struct sk_buff *skb) ...@@ -500,6 +501,13 @@ mt7915_mcu_tx_rate_report(struct mt7915_dev *dev, struct sk_buff *skb)
stats->per = 1000 * (attempts - success) / attempts; stats->per = 1000 * (attempts - success) / attempts;
} }
status.sta = wcid_to_sta(wcid);
if (!status.sta)
return;
status.rate = &stats->tx_rate;
ieee80211_tx_status_ext(mphy->hw, &status);
} }
static void static void
......
...@@ -417,8 +417,6 @@ void mt7915_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q, ...@@ -417,8 +417,6 @@ void mt7915_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
struct sk_buff *skb); struct sk_buff *skb);
void mt7915_sta_ps(struct mt76_dev *mdev, struct ieee80211_sta *sta, bool ps); void mt7915_sta_ps(struct mt76_dev *mdev, struct ieee80211_sta *sta, bool ps);
void mt7915_stats_work(struct work_struct *work); void mt7915_stats_work(struct work_struct *work);
void mt7915_txp_skb_unmap(struct mt76_dev *dev,
struct mt76_txwi_cache *txwi);
int mt76_dfs_start_rdd(struct mt7915_dev *dev, bool force); int mt76_dfs_start_rdd(struct mt7915_dev *dev, bool force);
int mt7915_dfs_init_radar_detector(struct mt7915_phy *phy); int mt7915_dfs_init_radar_detector(struct mt7915_phy *phy);
void mt7915_set_stream_he_caps(struct mt7915_phy *phy); void mt7915_set_stream_he_caps(struct mt7915_phy *phy);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment