123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- #include "ath9k.h"
- #include "hw.h"
- #include "dynack.h"
- #define COMPUTE_TO (5 * HZ)
- #define LATEACK_DELAY (10 * HZ)
- #define EWMA_LEVEL 96
- #define EWMA_DIV 128
- static u32 ath_dynack_get_max_to(struct ath_hw *ah)
- {
- const struct ath9k_channel *chan = ah->curchan;
- if (!chan)
- return 300;
- if (IS_CHAN_HT40(chan))
- return 300;
- if (IS_CHAN_HALF_RATE(chan))
- return 750;
- if (IS_CHAN_QUARTER_RATE(chan))
- return 1500;
- return 600;
- }
- static inline int ath_dynack_ewma(int old, int new)
- {
- if (old > 0)
- return (new * (EWMA_DIV - EWMA_LEVEL) +
- old * EWMA_LEVEL) / EWMA_DIV;
- else
- return new;
- }
- static inline u32 ath_dynack_get_sifs(struct ath_hw *ah, int phy)
- {
- u32 sifs = CCK_SIFS_TIME;
- if (phy == WLAN_RC_PHY_OFDM) {
- if (IS_CHAN_QUARTER_RATE(ah->curchan))
- sifs = OFDM_SIFS_TIME_QUARTER;
- else if (IS_CHAN_HALF_RATE(ah->curchan))
- sifs = OFDM_SIFS_TIME_HALF;
- else
- sifs = OFDM_SIFS_TIME;
- }
- return sifs;
- }
- static inline bool ath_dynack_bssidmask(struct ath_hw *ah, const u8 *mac)
- {
- int i;
- struct ath_common *common = ath9k_hw_common(ah);
- for (i = 0; i < ETH_ALEN; i++) {
- if ((common->macaddr[i] & common->bssidmask[i]) !=
- (mac[i] & common->bssidmask[i]))
- return false;
- }
- return true;
- }
- static void ath_dynack_set_timeout(struct ath_hw *ah, int to)
- {
- struct ath_common *common = ath9k_hw_common(ah);
- int slottime = (to - 3) / 2;
- ath_dbg(common, DYNACK, "ACK timeout %u slottime %u\n",
- to, slottime);
- ath9k_hw_setslottime(ah, slottime);
- ath9k_hw_set_ack_timeout(ah, to);
- ath9k_hw_set_cts_timeout(ah, to);
- }
- static void ath_dynack_compute_ackto(struct ath_hw *ah)
- {
- struct ath_dynack *da = &ah->dynack;
- struct ath_node *an;
- int to = 0;
- list_for_each_entry(an, &da->nodes, list)
- if (an->ackto > to)
- to = an->ackto;
- if (to && da->ackto != to) {
- ath_dynack_set_timeout(ah, to);
- da->ackto = to;
- }
- }
- static void ath_dynack_compute_to(struct ath_hw *ah)
- {
- struct ath_dynack *da = &ah->dynack;
- u32 ackto, ack_ts, max_to;
- struct ieee80211_sta *sta;
- struct ts_info *st_ts;
- struct ath_node *an;
- u8 *dst, *src;
- rcu_read_lock();
- max_to = ath_dynack_get_max_to(ah);
- while (da->st_rbf.h_rb != da->st_rbf.t_rb &&
- da->ack_rbf.h_rb != da->ack_rbf.t_rb) {
- ack_ts = da->ack_rbf.tstamp[da->ack_rbf.h_rb];
- st_ts = &da->st_rbf.ts[da->st_rbf.h_rb];
- dst = da->st_rbf.addr[da->st_rbf.h_rb].h_dest;
- src = da->st_rbf.addr[da->st_rbf.h_rb].h_src;
- ath_dbg(ath9k_hw_common(ah), DYNACK,
- "ack_ts %u st_ts %u st_dur %u [%u-%u]\n",
- ack_ts, st_ts->tstamp, st_ts->dur,
- da->ack_rbf.h_rb, da->st_rbf.h_rb);
- if (ack_ts > st_ts->tstamp + st_ts->dur) {
- ackto = ack_ts - st_ts->tstamp - st_ts->dur;
- if (ackto < max_to) {
- sta = ieee80211_find_sta_by_ifaddr(ah->hw, dst,
- src);
- if (sta) {
- an = (struct ath_node *)sta->drv_priv;
- an->ackto = ath_dynack_ewma(an->ackto,
- ackto);
- ath_dbg(ath9k_hw_common(ah), DYNACK,
- "%pM to %d [%u]\n", dst,
- an->ackto, ackto);
- if (time_is_before_jiffies(da->lto)) {
- ath_dynack_compute_ackto(ah);
- da->lto = jiffies + COMPUTE_TO;
- }
- }
- INCR(da->ack_rbf.h_rb, ATH_DYN_BUF);
- }
- INCR(da->st_rbf.h_rb, ATH_DYN_BUF);
- } else {
- INCR(da->ack_rbf.h_rb, ATH_DYN_BUF);
- }
- }
- rcu_read_unlock();
- }
- void ath_dynack_sample_tx_ts(struct ath_hw *ah, struct sk_buff *skb,
- struct ath_tx_status *ts,
- struct ieee80211_sta *sta)
- {
- struct ieee80211_hdr *hdr;
- struct ath_dynack *da = &ah->dynack;
- struct ath_common *common = ath9k_hw_common(ah);
- struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
- u32 dur = ts->duration;
- u8 ridx;
- if (!da->enabled || (info->flags & IEEE80211_TX_CTL_NO_ACK))
- return;
- spin_lock_bh(&da->qlock);
- hdr = (struct ieee80211_hdr *)skb->data;
-
- if (ts->ts_status & ATH9K_TXERR_XRETRY) {
- if (ieee80211_is_assoc_req(hdr->frame_control) ||
- ieee80211_is_assoc_resp(hdr->frame_control) ||
- ieee80211_is_auth(hdr->frame_control)) {
- u32 max_to = ath_dynack_get_max_to(ah);
- ath_dbg(common, DYNACK, "late ack\n");
- ath_dynack_set_timeout(ah, max_to);
- if (sta) {
- struct ath_node *an;
- an = (struct ath_node *)sta->drv_priv;
- an->ackto = -1;
- }
- da->lto = jiffies + LATEACK_DELAY;
- }
- spin_unlock_bh(&da->qlock);
- return;
- }
- ridx = ts->ts_rateindex;
- da->st_rbf.ts[da->st_rbf.t_rb].tstamp = ts->ts_tstamp;
-
- memcpy(da->st_rbf.addr[da->st_rbf.t_rb].h_dest, hdr->addr1, ETH_ALEN);
- memcpy(da->st_rbf.addr[da->st_rbf.t_rb].h_src, hdr->addr2, ETH_ALEN);
- if (!(info->status.rates[ridx].flags & IEEE80211_TX_RC_MCS)) {
- const struct ieee80211_rate *rate;
- struct ieee80211_tx_rate *rates = info->status.rates;
- u32 phy;
- rate = &common->sbands[info->band].bitrates[rates[ridx].idx];
- if (info->band == NL80211_BAND_2GHZ &&
- !(rate->flags & IEEE80211_RATE_ERP_G))
- phy = WLAN_RC_PHY_CCK;
- else
- phy = WLAN_RC_PHY_OFDM;
- dur -= ath_dynack_get_sifs(ah, phy);
- }
- da->st_rbf.ts[da->st_rbf.t_rb].dur = dur;
- INCR(da->st_rbf.t_rb, ATH_DYN_BUF);
- if (da->st_rbf.t_rb == da->st_rbf.h_rb)
- INCR(da->st_rbf.h_rb, ATH_DYN_BUF);
- ath_dbg(common, DYNACK, "{%pM} tx sample %u [dur %u][h %u-t %u]\n",
- hdr->addr1, ts->ts_tstamp, dur, da->st_rbf.h_rb,
- da->st_rbf.t_rb);
- ath_dynack_compute_to(ah);
- spin_unlock_bh(&da->qlock);
- }
- EXPORT_SYMBOL(ath_dynack_sample_tx_ts);
- void ath_dynack_sample_ack_ts(struct ath_hw *ah, struct sk_buff *skb,
- u32 ts)
- {
- struct ath_dynack *da = &ah->dynack;
- struct ath_common *common = ath9k_hw_common(ah);
- struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
- if (!da->enabled || !ath_dynack_bssidmask(ah, hdr->addr1))
- return;
- spin_lock_bh(&da->qlock);
- da->ack_rbf.tstamp[da->ack_rbf.t_rb] = ts;
- INCR(da->ack_rbf.t_rb, ATH_DYN_BUF);
- if (da->ack_rbf.t_rb == da->ack_rbf.h_rb)
- INCR(da->ack_rbf.h_rb, ATH_DYN_BUF);
- ath_dbg(common, DYNACK, "rx sample %u [h %u-t %u]\n",
- ts, da->ack_rbf.h_rb, da->ack_rbf.t_rb);
- ath_dynack_compute_to(ah);
- spin_unlock_bh(&da->qlock);
- }
- EXPORT_SYMBOL(ath_dynack_sample_ack_ts);
- void ath_dynack_node_init(struct ath_hw *ah, struct ath_node *an)
- {
- struct ath_dynack *da = &ah->dynack;
- an->ackto = da->ackto;
- spin_lock_bh(&da->qlock);
- list_add_tail(&an->list, &da->nodes);
- spin_unlock_bh(&da->qlock);
- }
- EXPORT_SYMBOL(ath_dynack_node_init);
- void ath_dynack_node_deinit(struct ath_hw *ah, struct ath_node *an)
- {
- struct ath_dynack *da = &ah->dynack;
- spin_lock_bh(&da->qlock);
- list_del(&an->list);
- spin_unlock_bh(&da->qlock);
- }
- EXPORT_SYMBOL(ath_dynack_node_deinit);
- void ath_dynack_reset(struct ath_hw *ah)
- {
- struct ath_dynack *da = &ah->dynack;
- struct ath_node *an;
- spin_lock_bh(&da->qlock);
- da->lto = jiffies + COMPUTE_TO;
- da->st_rbf.t_rb = 0;
- da->st_rbf.h_rb = 0;
- da->ack_rbf.t_rb = 0;
- da->ack_rbf.h_rb = 0;
- da->ackto = ath_dynack_get_max_to(ah);
- list_for_each_entry(an, &da->nodes, list)
- an->ackto = da->ackto;
-
- ath_dynack_set_timeout(ah, da->ackto);
- spin_unlock_bh(&da->qlock);
- }
- EXPORT_SYMBOL(ath_dynack_reset);
- void ath_dynack_init(struct ath_hw *ah)
- {
- struct ath_dynack *da = &ah->dynack;
- memset(da, 0, sizeof(struct ath_dynack));
- spin_lock_init(&da->qlock);
- INIT_LIST_HEAD(&da->nodes);
-
- da->ackto = 9 + 16 + 64;
- ah->hw->wiphy->features |= NL80211_FEATURE_ACKTO_ESTIMATION;
- }
|