blob: 718fbcff84d24e230fadd5808a80d12aee889020 [file] [log] [blame]
Johannes Bergb8695a82009-02-10 21:25:46 +01001/*
2 * HT handling
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
5 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2007-2009, Intel Corporation
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/ieee80211.h>
17#include <net/mac80211.h>
18#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020019#include "driver-ops.h"
Johannes Bergb8695a82009-02-10 21:25:46 +010020#include "wme.h"
21
Johannes Berg86ab6c52009-02-10 21:25:49 +010022/**
23 * DOC: TX aggregation
24 *
25 * Aggregation on the TX side requires setting the hardware flag
26 * %IEEE80211_HW_AMPDU_AGGREGATION as well as, if present, the @ampdu_queues
27 * hardware parameter to the number of hardware AMPDU queues. If there are no
28 * hardware queues then the driver will (currently) have to do all frame
29 * buffering.
30 *
31 * When TX aggregation is started by some subsystem (usually the rate control
32 * algorithm would be appropriate) by calling the
33 * ieee80211_start_tx_ba_session() function, the driver will be notified via
34 * its @ampdu_action function, with the %IEEE80211_AMPDU_TX_START action.
35 *
36 * In response to that, the driver is later required to call the
37 * ieee80211_start_tx_ba_cb() (or ieee80211_start_tx_ba_cb_irqsafe())
38 * function, which will start the aggregation session.
39 *
40 * Similarly, when the aggregation session is stopped by
41 * ieee80211_stop_tx_ba_session(), the driver's @ampdu_action function will
42 * be called with the action %IEEE80211_AMPDU_TX_STOP. In this case, the
43 * call must not fail, and the driver must later call ieee80211_stop_tx_ba_cb()
44 * (or ieee80211_stop_tx_ba_cb_irqsafe()).
45 */
46
Johannes Bergb8695a82009-02-10 21:25:46 +010047static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata,
48 const u8 *da, u16 tid,
49 u8 dialog_token, u16 start_seq_num,
50 u16 agg_size, u16 timeout)
51{
52 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +010053 struct sk_buff *skb;
54 struct ieee80211_mgmt *mgmt;
55 u16 capab;
56
57 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
58
59 if (!skb) {
60 printk(KERN_ERR "%s: failed to allocate buffer "
Johannes Berg47846c92009-11-25 17:46:19 +010061 "for addba request frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +010062 return;
63 }
64 skb_reserve(skb, local->hw.extra_tx_headroom);
65 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
66 memset(mgmt, 0, 24);
67 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +010068 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +010069 if (sdata->vif.type == NL80211_IFTYPE_AP ||
70 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg47846c92009-11-25 17:46:19 +010071 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +010072 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
73 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +010074
75 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
76 IEEE80211_STYPE_ACTION);
77
78 skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req));
79
80 mgmt->u.action.category = WLAN_CATEGORY_BACK;
81 mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ;
82
83 mgmt->u.action.u.addba_req.dialog_token = dialog_token;
84 capab = (u16)(1 << 1); /* bit 1 aggregation policy */
85 capab |= (u16)(tid << 2); /* bit 5:2 TID number */
86 capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */
87
88 mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab);
89
90 mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout);
91 mgmt->u.action.u.addba_req.start_seq_num =
92 cpu_to_le16(start_seq_num << 4);
93
Johannes Berg62ae67b2009-11-18 18:42:05 +010094 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +010095}
96
97void ieee80211_send_bar(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid, u16 ssn)
98{
99 struct ieee80211_local *local = sdata->local;
100 struct sk_buff *skb;
101 struct ieee80211_bar *bar;
102 u16 bar_control = 0;
103
104 skb = dev_alloc_skb(sizeof(*bar) + local->hw.extra_tx_headroom);
105 if (!skb) {
106 printk(KERN_ERR "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100107 "bar frame\n", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100108 return;
109 }
110 skb_reserve(skb, local->hw.extra_tx_headroom);
111 bar = (struct ieee80211_bar *)skb_put(skb, sizeof(*bar));
112 memset(bar, 0, sizeof(*bar));
113 bar->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
114 IEEE80211_STYPE_BACK_REQ);
115 memcpy(bar->ra, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100116 memcpy(bar->ta, sdata->vif.addr, ETH_ALEN);
Johannes Bergb8695a82009-02-10 21:25:46 +0100117 bar_control |= (u16)IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL;
118 bar_control |= (u16)IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA;
119 bar_control |= (u16)(tid << 12);
120 bar->control = cpu_to_le16(bar_control);
121 bar->start_seq_num = cpu_to_le16(ssn);
122
Johannes Berg62ae67b2009-11-18 18:42:05 +0100123 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
124 ieee80211_tx_skb(sdata, skb);
Johannes Bergb8695a82009-02-10 21:25:46 +0100125}
126
Johannes Berg827d42c2009-11-22 12:28:41 +0100127int ___ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
128 enum ieee80211_back_parties initiator)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100129{
Johannes Berg849b7962009-02-10 21:25:54 +0100130 struct ieee80211_local *local = sta->local;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100131 int ret;
132 u8 *state;
133
Johannes Berg827d42c2009-11-22 12:28:41 +0100134#ifdef CONFIG_MAC80211_HT_DEBUG
135 printk(KERN_DEBUG "Tx BA session stop requested for %pM tid %u\n",
136 sta->sta.addr, tid);
137#endif /* CONFIG_MAC80211_HT_DEBUG */
138
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100139 state = &sta->ampdu_mlme.tid_state_tx[tid];
140
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530141 if (*state == HT_AGG_STATE_OPERATIONAL)
142 sta->ampdu_mlme.addba_req_num[tid] = 0;
143
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100144 *state = HT_AGG_STATE_REQ_STOP_BA_MSK |
145 (initiator << HT_AGG_STATE_INITIATOR_SHIFT);
146
Johannes Berg12375ef2009-11-25 20:30:31 +0100147 ret = drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100148 IEEE80211_AMPDU_TX_STOP,
Johannes Berg24487982009-04-23 18:52:52 +0200149 &sta->sta, tid, NULL);
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100150
151 /* HW shall not deny going back to legacy */
152 if (WARN_ON(ret)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100153 /*
154 * We may have pending packets get stuck in this case...
155 * Not bothering with a workaround for now.
156 */
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100157 }
158
159 return ret;
160}
161
Johannes Bergb8695a82009-02-10 21:25:46 +0100162/*
163 * After sending add Block Ack request we activated a timer until
164 * add Block Ack response will arrive from the recipient.
165 * If this timer expires sta_addba_resp_timer_expired will be executed.
166 */
167static void sta_addba_resp_timer_expired(unsigned long data)
168{
169 /* not an elegant detour, but there is no choice as the timer passes
170 * only one argument, and both sta_info and TID are needed, so init
171 * flow in sta_info_create gives the TID as data, while the timer_to_id
172 * array gives the sta through container_of */
173 u16 tid = *(u8 *)data;
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100174 struct sta_info *sta = container_of((void *)data,
Johannes Bergb8695a82009-02-10 21:25:46 +0100175 struct sta_info, timer_to_tid[tid]);
Johannes Bergb8695a82009-02-10 21:25:46 +0100176 u8 *state;
177
Johannes Bergb8695a82009-02-10 21:25:46 +0100178 state = &sta->ampdu_mlme.tid_state_tx[tid];
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100179
Johannes Bergb8695a82009-02-10 21:25:46 +0100180 /* check if the TID waits for addBA response */
181 spin_lock_bh(&sta->lock);
Zhu Yi3dc1de02009-12-28 16:57:15 +0800182 if ((*state & (HT_ADDBA_REQUESTED_MSK | HT_ADDBA_RECEIVED_MSK |
183 HT_AGG_STATE_REQ_STOP_BA_MSK)) !=
Johannes Berg8ade0082009-11-18 17:15:06 +0100184 HT_ADDBA_REQUESTED_MSK) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100185 spin_unlock_bh(&sta->lock);
186 *state = HT_AGG_STATE_IDLE;
187#ifdef CONFIG_MAC80211_HT_DEBUG
188 printk(KERN_DEBUG "timer expired on tid %d but we are not "
Johannes Berg8ade0082009-11-18 17:15:06 +0100189 "(or no longer) expecting addBA response there",
190 tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100191#endif
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100192 return;
Johannes Bergb8695a82009-02-10 21:25:46 +0100193 }
194
195#ifdef CONFIG_MAC80211_HT_DEBUG
196 printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid);
197#endif
198
Johannes Berg849b7962009-02-10 21:25:54 +0100199 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100200 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100201}
202
Johannes Berg96f5e662009-02-12 00:51:53 +0100203static inline int ieee80211_ac_from_tid(int tid)
204{
205 return ieee802_1d_to_ac[tid & 7];
206}
207
Johannes Bergc951ad32009-11-16 12:00:38 +0100208int ieee80211_start_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100209{
Johannes Bergc951ad32009-11-16 12:00:38 +0100210 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
211 struct ieee80211_sub_if_data *sdata = sta->sdata;
212 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100213 u8 *state;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100214 int ret = 0;
Johannes Berg96f5e662009-02-12 00:51:53 +0100215 u16 start_seq_num;
Johannes Bergb8695a82009-02-10 21:25:46 +0100216
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100217 if (WARN_ON(!local->ops->ampdu_action))
218 return -EINVAL;
219
Johannes Bergc951ad32009-11-16 12:00:38 +0100220 if ((tid >= STA_TID_NUM) ||
221 !(local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION))
Johannes Bergb8695a82009-02-10 21:25:46 +0100222 return -EINVAL;
223
224#ifdef CONFIG_MAC80211_HT_DEBUG
225 printk(KERN_DEBUG "Open BA session requested for %pM tid %u\n",
Johannes Bergc951ad32009-11-16 12:00:38 +0100226 pubsta->addr, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100227#endif /* CONFIG_MAC80211_HT_DEBUG */
228
Johannes Berg8abd3f92009-02-10 21:25:47 +0100229 /*
230 * The aggregation code is not prepared to handle
231 * anything but STA/AP due to the BSSID handling.
232 * IBSS could work in the code but isn't supported
233 * by drivers or the standard.
234 */
Johannes Bergc951ad32009-11-16 12:00:38 +0100235 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
236 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
237 sdata->vif.type != NL80211_IFTYPE_AP)
238 return -EINVAL;
Johannes Berg8abd3f92009-02-10 21:25:47 +0100239
Sujith722f0692009-03-17 08:50:06 +0530240 if (test_sta_flags(sta, WLAN_STA_SUSPEND)) {
241#ifdef CONFIG_MAC80211_HT_DEBUG
242 printk(KERN_DEBUG "Suspend in progress. "
243 "Denying BA session request\n");
244#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100245 return -EINVAL;
Sujith722f0692009-03-17 08:50:06 +0530246 }
247
Johannes Bergb8695a82009-02-10 21:25:46 +0100248 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100249 spin_lock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100250
251 /* we have tried too many times, receiver does not want A-MPDU */
252 if (sta->ampdu_mlme.addba_req_num[tid] > HT_AGG_MAX_RETRIES) {
253 ret = -EBUSY;
254 goto err_unlock_sta;
255 }
256
257 state = &sta->ampdu_mlme.tid_state_tx[tid];
258 /* check if the TID is not in aggregation flow already */
259 if (*state != HT_AGG_STATE_IDLE) {
260#ifdef CONFIG_MAC80211_HT_DEBUG
261 printk(KERN_DEBUG "BA request denied - session is not "
262 "idle on tid %u\n", tid);
263#endif /* CONFIG_MAC80211_HT_DEBUG */
264 ret = -EAGAIN;
265 goto err_unlock_sta;
266 }
267
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100268 /*
269 * While we're asking the driver about the aggregation,
270 * stop the AC queue so that we don't have to worry
271 * about frames that came in while we were doing that,
272 * which would require us to put them to the AC pending
273 * afterwards which just makes the code more complex.
274 */
275 ieee80211_stop_queue_by_reason(
276 &local->hw, ieee80211_ac_from_tid(tid),
277 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
278
Johannes Bergb8695a82009-02-10 21:25:46 +0100279 /* prepare A-MPDU MLME for Tx aggregation */
280 sta->ampdu_mlme.tid_tx[tid] =
281 kmalloc(sizeof(struct tid_ampdu_tx), GFP_ATOMIC);
282 if (!sta->ampdu_mlme.tid_tx[tid]) {
283#ifdef CONFIG_MAC80211_HT_DEBUG
284 if (net_ratelimit())
285 printk(KERN_ERR "allocate tx mlme to tid %d failed\n",
286 tid);
287#endif
288 ret = -ENOMEM;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100289 goto err_wake_queue;
Johannes Bergb8695a82009-02-10 21:25:46 +0100290 }
Johannes Berg96f5e662009-02-12 00:51:53 +0100291
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100292 skb_queue_head_init(&sta->ampdu_mlme.tid_tx[tid]->pending);
293
Johannes Bergb8695a82009-02-10 21:25:46 +0100294 /* Tx timer */
295 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.function =
296 sta_addba_resp_timer_expired;
297 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.data =
298 (unsigned long)&sta->timer_to_tid[tid];
299 init_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
300
Johannes Bergb8695a82009-02-10 21:25:46 +0100301 /* Ok, the Addba frame hasn't been sent yet, but if the driver calls the
302 * call back right away, it must see that the flow has begun */
303 *state |= HT_ADDBA_REQUESTED_MSK;
304
Christian Lamparterf3f66b62010-01-04 00:52:56 +0100305 start_seq_num = sta->tid_seq[tid] >> 4;
Johannes Bergb8695a82009-02-10 21:25:46 +0100306
Johannes Berg12375ef2009-11-25 20:30:31 +0100307 ret = drv_ampdu_action(local, sdata, IEEE80211_AMPDU_TX_START,
Johannes Bergc951ad32009-11-16 12:00:38 +0100308 pubsta, tid, &start_seq_num);
Johannes Bergb8695a82009-02-10 21:25:46 +0100309
310 if (ret) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100311#ifdef CONFIG_MAC80211_HT_DEBUG
312 printk(KERN_DEBUG "BA request denied - HW unavailable for"
313 " tid %d\n", tid);
314#endif /* CONFIG_MAC80211_HT_DEBUG */
315 *state = HT_AGG_STATE_IDLE;
Johannes Berg96f5e662009-02-12 00:51:53 +0100316 goto err_free;
Johannes Bergb8695a82009-02-10 21:25:46 +0100317 }
318
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100319 /* Driver vetoed or OKed, but we can take packets again now */
320 ieee80211_wake_queue_by_reason(
321 &local->hw, ieee80211_ac_from_tid(tid),
322 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
323
324 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100325 spin_unlock_bh(&sta->lock);
326
327 /* send an addBA request */
328 sta->ampdu_mlme.dialog_token_allocator++;
329 sta->ampdu_mlme.tid_tx[tid]->dialog_token =
330 sta->ampdu_mlme.dialog_token_allocator;
331 sta->ampdu_mlme.tid_tx[tid]->ssn = start_seq_num;
332
Johannes Bergc951ad32009-11-16 12:00:38 +0100333 ieee80211_send_addba_request(sdata, pubsta->addr, tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100334 sta->ampdu_mlme.tid_tx[tid]->dialog_token,
335 sta->ampdu_mlme.tid_tx[tid]->ssn,
336 0x40, 5000);
Vasanthakumar Thiagarajan736708b2009-06-09 14:11:46 +0530337 sta->ampdu_mlme.addba_req_num[tid]++;
Johannes Bergb8695a82009-02-10 21:25:46 +0100338 /* activate the timer for the recipient's addBA response */
339 sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer.expires =
340 jiffies + ADDBA_RESP_INTERVAL;
341 add_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
342#ifdef CONFIG_MAC80211_HT_DEBUG
343 printk(KERN_DEBUG "activated addBA response timer on tid %d\n", tid);
344#endif
Johannes Bergc951ad32009-11-16 12:00:38 +0100345 return 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100346
Johannes Berg96f5e662009-02-12 00:51:53 +0100347 err_free:
Johannes Bergb8695a82009-02-10 21:25:46 +0100348 kfree(sta->ampdu_mlme.tid_tx[tid]);
349 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Berge4e72fb2009-03-23 17:28:42 +0100350 err_wake_queue:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100351 ieee80211_wake_queue_by_reason(
352 &local->hw, ieee80211_ac_from_tid(tid),
353 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
Johannes Berg96f5e662009-02-12 00:51:53 +0100354 err_unlock_sta:
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100355 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100356 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100357 return ret;
358}
359EXPORT_SYMBOL(ieee80211_start_tx_ba_session);
360
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100361/*
362 * splice packets from the STA's pending to the local pending,
363 * requires a call to ieee80211_agg_splice_finish and holding
364 * local->ampdu_lock across both calls.
365 */
366static void ieee80211_agg_splice_packets(struct ieee80211_local *local,
367 struct sta_info *sta, u16 tid)
368{
369 unsigned long flags;
370 u16 queue = ieee80211_ac_from_tid(tid);
371
372 ieee80211_stop_queue_by_reason(
373 &local->hw, queue,
374 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
375
Luis R. Rodriguez416fbdf2009-08-11 13:10:33 -0700376 if (!(sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK))
377 return;
378
379 if (WARN(!sta->ampdu_mlme.tid_tx[tid],
380 "TID %d gone but expected when splicing aggregates from"
381 "the pending queue\n", tid))
382 return;
383
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100384 if (!skb_queue_empty(&sta->ampdu_mlme.tid_tx[tid]->pending)) {
385 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100386 /* copy over remaining packets */
387 skb_queue_splice_tail_init(
388 &sta->ampdu_mlme.tid_tx[tid]->pending,
389 &local->pending[queue]);
390 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
391 }
392}
393
394static void ieee80211_agg_splice_finish(struct ieee80211_local *local,
395 struct sta_info *sta, u16 tid)
396{
397 u16 queue = ieee80211_ac_from_tid(tid);
398
399 ieee80211_wake_queue_by_reason(
400 &local->hw, queue,
401 IEEE80211_QUEUE_STOP_REASON_AGGREGATION);
402}
403
404/* caller must hold sta->lock */
Johannes Bergb1720232009-03-23 17:28:39 +0100405static void ieee80211_agg_tx_operational(struct ieee80211_local *local,
406 struct sta_info *sta, u16 tid)
407{
408#ifdef CONFIG_MAC80211_HT_DEBUG
409 printk(KERN_DEBUG "Aggregation is on for tid %d \n", tid);
410#endif
411
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100412 spin_lock(&local->ampdu_lock);
413 ieee80211_agg_splice_packets(local, sta, tid);
414 /*
415 * NB: we rely on sta->lock being taken in the TX
416 * processing here when adding to the pending queue,
417 * otherwise we could only change the state of the
418 * session to OPERATIONAL _here_.
419 */
420 ieee80211_agg_splice_finish(local, sta, tid);
421 spin_unlock(&local->ampdu_lock);
Johannes Bergb1720232009-03-23 17:28:39 +0100422
Johannes Berg12375ef2009-11-25 20:30:31 +0100423 drv_ampdu_action(local, sta->sdata,
Johannes Bergc951ad32009-11-16 12:00:38 +0100424 IEEE80211_AMPDU_TX_OPERATIONAL,
Johannes Berg24487982009-04-23 18:52:52 +0200425 &sta->sta, tid, NULL);
Johannes Bergb1720232009-03-23 17:28:39 +0100426}
427
Johannes Bergc951ad32009-11-16 12:00:38 +0100428void ieee80211_start_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u16 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100429{
Johannes Bergc951ad32009-11-16 12:00:38 +0100430 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
431 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100432 struct sta_info *sta;
433 u8 *state;
434
435 if (tid >= STA_TID_NUM) {
436#ifdef CONFIG_MAC80211_HT_DEBUG
437 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
438 tid, STA_TID_NUM);
439#endif
440 return;
441 }
442
443 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100444 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100445 if (!sta) {
446 rcu_read_unlock();
447#ifdef CONFIG_MAC80211_HT_DEBUG
448 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
449#endif
450 return;
451 }
452
453 state = &sta->ampdu_mlme.tid_state_tx[tid];
454 spin_lock_bh(&sta->lock);
455
Johannes Berg96f5e662009-02-12 00:51:53 +0100456 if (WARN_ON(!(*state & HT_ADDBA_REQUESTED_MSK))) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100457#ifdef CONFIG_MAC80211_HT_DEBUG
458 printk(KERN_DEBUG "addBA was not requested yet, state is %d\n",
459 *state);
460#endif
461 spin_unlock_bh(&sta->lock);
462 rcu_read_unlock();
463 return;
464 }
465
Johannes Berg96f5e662009-02-12 00:51:53 +0100466 if (WARN_ON(*state & HT_ADDBA_DRV_READY_MSK))
467 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100468
469 *state |= HT_ADDBA_DRV_READY_MSK;
470
Johannes Bergb1720232009-03-23 17:28:39 +0100471 if (*state == HT_AGG_STATE_OPERATIONAL)
472 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100473
474 out:
Johannes Bergb8695a82009-02-10 21:25:46 +0100475 spin_unlock_bh(&sta->lock);
476 rcu_read_unlock();
477}
478EXPORT_SYMBOL(ieee80211_start_tx_ba_cb);
479
Johannes Bergc951ad32009-11-16 12:00:38 +0100480void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Berg86ab6c52009-02-10 21:25:49 +0100481 const u8 *ra, u16 tid)
482{
Johannes Bergc951ad32009-11-16 12:00:38 +0100483 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
484 struct ieee80211_local *local = sdata->local;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100485 struct ieee80211_ra_tid *ra_tid;
486 struct sk_buff *skb = dev_alloc_skb(0);
487
488 if (unlikely(!skb)) {
489#ifdef CONFIG_MAC80211_HT_DEBUG
490 if (net_ratelimit())
491 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100492 "dropping start BA session", sdata->name);
Johannes Berg86ab6c52009-02-10 21:25:49 +0100493#endif
494 return;
495 }
496 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
497 memcpy(&ra_tid->ra, ra, ETH_ALEN);
498 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530499 ra_tid->vif = vif;
Johannes Berg86ab6c52009-02-10 21:25:49 +0100500
501 skb->pkt_type = IEEE80211_ADDBA_MSG;
502 skb_queue_tail(&local->skb_queue, skb);
503 tasklet_schedule(&local->tasklet);
504}
505EXPORT_SYMBOL(ieee80211_start_tx_ba_cb_irqsafe);
506
Johannes Berg849b7962009-02-10 21:25:54 +0100507int __ieee80211_stop_tx_ba_session(struct sta_info *sta, u16 tid,
508 enum ieee80211_back_parties initiator)
509{
510 u8 *state;
511 int ret;
512
513 /* check if the TID is in aggregation */
514 state = &sta->ampdu_mlme.tid_state_tx[tid];
515 spin_lock_bh(&sta->lock);
516
517 if (*state != HT_AGG_STATE_OPERATIONAL) {
518 ret = -ENOENT;
519 goto unlock;
520 }
521
Johannes Berg849b7962009-02-10 21:25:54 +0100522 ret = ___ieee80211_stop_tx_ba_session(sta, tid, initiator);
523
524 unlock:
525 spin_unlock_bh(&sta->lock);
526 return ret;
527}
Johannes Bergb8695a82009-02-10 21:25:46 +0100528
Johannes Bergc951ad32009-11-16 12:00:38 +0100529int ieee80211_stop_tx_ba_session(struct ieee80211_sta *pubsta, u16 tid,
Johannes Bergb8695a82009-02-10 21:25:46 +0100530 enum ieee80211_back_parties initiator)
531{
Johannes Bergc951ad32009-11-16 12:00:38 +0100532 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
533 struct ieee80211_sub_if_data *sdata = sta->sdata;
534 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100535
Johannes Berg42531192009-11-20 09:15:51 +0100536 if (!local->ops->ampdu_action)
Johannes Berg23e6a7e2009-02-10 21:25:50 +0100537 return -EINVAL;
538
Johannes Bergb8695a82009-02-10 21:25:46 +0100539 if (tid >= STA_TID_NUM)
540 return -EINVAL;
541
Johannes Bergc951ad32009-11-16 12:00:38 +0100542 return __ieee80211_stop_tx_ba_session(sta, tid, initiator);
Johannes Bergb8695a82009-02-10 21:25:46 +0100543}
544EXPORT_SYMBOL(ieee80211_stop_tx_ba_session);
545
Johannes Bergc951ad32009-11-16 12:00:38 +0100546void ieee80211_stop_tx_ba_cb(struct ieee80211_vif *vif, u8 *ra, u8 tid)
Johannes Bergb8695a82009-02-10 21:25:46 +0100547{
Johannes Bergc951ad32009-11-16 12:00:38 +0100548 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
549 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100550 struct sta_info *sta;
551 u8 *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100552
553 if (tid >= STA_TID_NUM) {
554#ifdef CONFIG_MAC80211_HT_DEBUG
555 printk(KERN_DEBUG "Bad TID value: tid = %d (>= %d)\n",
556 tid, STA_TID_NUM);
557#endif
558 return;
559 }
560
561#ifdef CONFIG_MAC80211_HT_DEBUG
562 printk(KERN_DEBUG "Stopping Tx BA session for %pM tid %d\n",
563 ra, tid);
564#endif /* CONFIG_MAC80211_HT_DEBUG */
565
566 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100567 sta = sta_info_get(sdata, ra);
Johannes Bergb8695a82009-02-10 21:25:46 +0100568 if (!sta) {
569#ifdef CONFIG_MAC80211_HT_DEBUG
570 printk(KERN_DEBUG "Could not find station: %pM\n", ra);
571#endif
572 rcu_read_unlock();
573 return;
574 }
575 state = &sta->ampdu_mlme.tid_state_tx[tid];
576
577 /* NOTE: no need to use sta->lock in this state check, as
578 * ieee80211_stop_tx_ba_session will let only one stop call to
579 * pass through per sta/tid
580 */
581 if ((*state & HT_AGG_STATE_REQ_STOP_BA_MSK) == 0) {
582#ifdef CONFIG_MAC80211_HT_DEBUG
583 printk(KERN_DEBUG "unexpected callback to A-MPDU stop\n");
584#endif
585 rcu_read_unlock();
586 return;
587 }
588
589 if (*state & HT_AGG_STATE_INITIATOR_MSK)
590 ieee80211_send_delba(sta->sdata, ra, tid,
591 WLAN_BACK_INITIATOR, WLAN_REASON_QSTA_NOT_USE);
592
Johannes Bergb8695a82009-02-10 21:25:46 +0100593 spin_lock_bh(&sta->lock);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100594 spin_lock(&local->ampdu_lock);
Johannes Berg96f5e662009-02-12 00:51:53 +0100595
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100596 ieee80211_agg_splice_packets(local, sta, tid);
Johannes Berg96f5e662009-02-12 00:51:53 +0100597
Johannes Bergb8695a82009-02-10 21:25:46 +0100598 *state = HT_AGG_STATE_IDLE;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100599 /* from now on packets are no longer put onto sta->pending */
Johannes Bergb8695a82009-02-10 21:25:46 +0100600 kfree(sta->ampdu_mlme.tid_tx[tid]);
601 sta->ampdu_mlme.tid_tx[tid] = NULL;
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100602
603 ieee80211_agg_splice_finish(local, sta, tid);
604
605 spin_unlock(&local->ampdu_lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100606 spin_unlock_bh(&sta->lock);
607
608 rcu_read_unlock();
609}
610EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb);
611
Johannes Bergc951ad32009-11-16 12:00:38 +0100612void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_vif *vif,
Johannes Bergb8695a82009-02-10 21:25:46 +0100613 const u8 *ra, u16 tid)
614{
Johannes Bergc951ad32009-11-16 12:00:38 +0100615 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
616 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100617 struct ieee80211_ra_tid *ra_tid;
618 struct sk_buff *skb = dev_alloc_skb(0);
619
620 if (unlikely(!skb)) {
621#ifdef CONFIG_MAC80211_HT_DEBUG
622 if (net_ratelimit())
623 printk(KERN_WARNING "%s: Not enough memory, "
Johannes Berg47846c92009-11-25 17:46:19 +0100624 "dropping stop BA session", sdata->name);
Johannes Bergb8695a82009-02-10 21:25:46 +0100625#endif
626 return;
627 }
628 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
629 memcpy(&ra_tid->ra, ra, ETH_ALEN);
630 ra_tid->tid = tid;
Sujith0bc6b182009-11-18 11:42:14 +0530631 ra_tid->vif = vif;
Johannes Bergb8695a82009-02-10 21:25:46 +0100632
633 skb->pkt_type = IEEE80211_DELBA_MSG;
634 skb_queue_tail(&local->skb_queue, skb);
635 tasklet_schedule(&local->tasklet);
636}
637EXPORT_SYMBOL(ieee80211_stop_tx_ba_cb_irqsafe);
638
Johannes Berg86ab6c52009-02-10 21:25:49 +0100639
Johannes Bergb8695a82009-02-10 21:25:46 +0100640void ieee80211_process_addba_resp(struct ieee80211_local *local,
641 struct sta_info *sta,
642 struct ieee80211_mgmt *mgmt,
643 size_t len)
644{
Johannes Bergb1720232009-03-23 17:28:39 +0100645 u16 capab, tid;
Johannes Bergb8695a82009-02-10 21:25:46 +0100646 u8 *state;
647
648 capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab);
649 tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
650
651 state = &sta->ampdu_mlme.tid_state_tx[tid];
652
653 spin_lock_bh(&sta->lock);
654
Johannes Berg2171abc2009-10-29 08:34:00 +0100655 if (!(*state & HT_ADDBA_REQUESTED_MSK))
Johannes Berg8ade0082009-11-18 17:15:06 +0100656 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100657
658 if (mgmt->u.action.u.addba_resp.dialog_token !=
659 sta->ampdu_mlme.tid_tx[tid]->dialog_token) {
Johannes Bergb8695a82009-02-10 21:25:46 +0100660#ifdef CONFIG_MAC80211_HT_DEBUG
661 printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid);
662#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg8ade0082009-11-18 17:15:06 +0100663 goto out;
Johannes Bergb8695a82009-02-10 21:25:46 +0100664 }
665
Johannes Berg8ade0082009-11-18 17:15:06 +0100666 del_timer(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer);
667
Johannes Bergb8695a82009-02-10 21:25:46 +0100668#ifdef CONFIG_MAC80211_HT_DEBUG
669 printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid);
670#endif /* CONFIG_MAC80211_HT_DEBUG */
Johannes Berg2171abc2009-10-29 08:34:00 +0100671
Johannes Bergb8695a82009-02-10 21:25:46 +0100672 if (le16_to_cpu(mgmt->u.action.u.addba_resp.status)
673 == WLAN_STATUS_SUCCESS) {
Johannes Berg96f5e662009-02-12 00:51:53 +0100674 u8 curstate = *state;
Johannes Bergb8695a82009-02-10 21:25:46 +0100675
Johannes Berg96f5e662009-02-12 00:51:53 +0100676 *state |= HT_ADDBA_RECEIVED_MSK;
677
Johannes Bergb1720232009-03-23 17:28:39 +0100678 if (*state != curstate && *state == HT_AGG_STATE_OPERATIONAL)
679 ieee80211_agg_tx_operational(local, sta, tid);
Johannes Bergb8695a82009-02-10 21:25:46 +0100680
Johannes Bergb1720232009-03-23 17:28:39 +0100681 sta->ampdu_mlme.addba_req_num[tid] = 0;
Johannes Bergb8695a82009-02-10 21:25:46 +0100682 } else {
Johannes Berg849b7962009-02-10 21:25:54 +0100683 ___ieee80211_stop_tx_ba_session(sta, tid, WLAN_BACK_INITIATOR);
Johannes Bergb8695a82009-02-10 21:25:46 +0100684 }
Johannes Berg2171abc2009-10-29 08:34:00 +0100685
Johannes Berg2171abc2009-10-29 08:34:00 +0100686 out:
Johannes Berg849b7962009-02-10 21:25:54 +0100687 spin_unlock_bh(&sta->lock);
Johannes Bergb8695a82009-02-10 21:25:46 +0100688}