mwifiex: fix IE parsing issues
[linux-2.6/btrfs-unstable.git] / drivers / net / wireless / mwifiex / 11n.c
blob2bd07d681c5e7fbedfacd35e9bcad038fcf56970
1 /*
2 * Marvell Wireless LAN device driver: 802.11n
4 * Copyright (C) 2011, Marvell International Ltd.
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
20 #include "decl.h"
21 #include "ioctl.h"
22 #include "util.h"
23 #include "fw.h"
24 #include "main.h"
25 #include "wmm.h"
26 #include "11n.h"
29 * Fills HT capability information field, AMPDU Parameters field, HT extended
30 * capability field, and supported MCS set fields.
32 * HT capability information field, AMPDU Parameters field, supported MCS set
33 * fields are retrieved from cfg80211 stack
35 * RD responder bit to set to clear in the extended capability header.
37 int mwifiex_fill_cap_info(struct mwifiex_private *priv, u8 radio_type,
38 struct ieee80211_ht_cap *ht_cap)
40 uint16_t ht_ext_cap = le16_to_cpu(ht_cap->extended_ht_cap_info);
41 struct ieee80211_supported_band *sband =
42 priv->wdev->wiphy->bands[radio_type];
44 if (WARN_ON_ONCE(!sband)) {
45 dev_err(priv->adapter->dev, "Invalid radio type!\n");
46 return -EINVAL;
49 ht_cap->ampdu_params_info =
50 (sband->ht_cap.ampdu_factor &
51 IEEE80211_HT_AMPDU_PARM_FACTOR) |
52 ((sband->ht_cap.ampdu_density <<
53 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT) &
54 IEEE80211_HT_AMPDU_PARM_DENSITY);
56 memcpy((u8 *)&ht_cap->mcs, &sband->ht_cap.mcs,
57 sizeof(sband->ht_cap.mcs));
59 if (priv->bss_mode == NL80211_IFTYPE_STATION ||
60 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
61 (priv->adapter->sec_chan_offset !=
62 IEEE80211_HT_PARAM_CHA_SEC_NONE)))
63 /* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
64 SETHT_MCS32(ht_cap->mcs.rx_mask);
66 /* Clear RD responder bit */
67 ht_ext_cap &= ~IEEE80211_HT_EXT_CAP_RD_RESPONDER;
69 ht_cap->cap_info = cpu_to_le16(sband->ht_cap.cap);
70 ht_cap->extended_ht_cap_info = cpu_to_le16(ht_ext_cap);
72 if (ISSUPP_BEAMFORMING(priv->adapter->hw_dot_11n_dev_cap))
73 ht_cap->tx_BF_cap_info = cpu_to_le32(MWIFIEX_DEF_11N_TX_BF_CAP);
75 return 0;
79 * This function returns the pointer to an entry in BA Stream
80 * table which matches the requested BA status.
82 static struct mwifiex_tx_ba_stream_tbl *
83 mwifiex_get_ba_status(struct mwifiex_private *priv,
84 enum mwifiex_ba_status ba_status)
86 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
87 unsigned long flags;
89 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
90 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
91 if (tx_ba_tsr_tbl->ba_status == ba_status) {
92 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock,
93 flags);
94 return tx_ba_tsr_tbl;
97 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
98 return NULL;
102 * This function handles the command response of delete a block
103 * ack request.
105 * The function checks the response success status and takes action
106 * accordingly (send an add BA request in case of success, or recreate
107 * the deleted stream in case of failure, if the add BA was also
108 * initiated by us).
110 int mwifiex_ret_11n_delba(struct mwifiex_private *priv,
111 struct host_cmd_ds_command *resp)
113 int tid;
114 struct mwifiex_tx_ba_stream_tbl *tx_ba_tbl;
115 struct host_cmd_ds_11n_delba *del_ba = &resp->params.del_ba;
116 uint16_t del_ba_param_set = le16_to_cpu(del_ba->del_ba_param_set);
118 tid = del_ba_param_set >> DELBA_TID_POS;
119 if (del_ba->del_result == BA_RESULT_SUCCESS) {
120 mwifiex_del_ba_tbl(priv, tid, del_ba->peer_mac_addr,
121 TYPE_DELBA_SENT,
122 INITIATOR_BIT(del_ba_param_set));
124 tx_ba_tbl = mwifiex_get_ba_status(priv, BA_SETUP_INPROGRESS);
125 if (tx_ba_tbl)
126 mwifiex_send_addba(priv, tx_ba_tbl->tid,
127 tx_ba_tbl->ra);
128 } else { /*
129 * In case of failure, recreate the deleted stream in case
130 * we initiated the ADDBA
132 if (!INITIATOR_BIT(del_ba_param_set))
133 return 0;
135 mwifiex_create_ba_tbl(priv, del_ba->peer_mac_addr, tid,
136 BA_SETUP_INPROGRESS);
138 tx_ba_tbl = mwifiex_get_ba_status(priv, BA_SETUP_INPROGRESS);
140 if (tx_ba_tbl)
141 mwifiex_del_ba_tbl(priv, tx_ba_tbl->tid, tx_ba_tbl->ra,
142 TYPE_DELBA_SENT, true);
145 return 0;
149 * This function handles the command response of add a block
150 * ack request.
152 * Handling includes changing the header fields to CPU formats, checking
153 * the response success status and taking actions accordingly (delete the
154 * BA stream table in case of failure).
156 int mwifiex_ret_11n_addba_req(struct mwifiex_private *priv,
157 struct host_cmd_ds_command *resp)
159 int tid;
160 struct host_cmd_ds_11n_addba_rsp *add_ba_rsp = &resp->params.add_ba_rsp;
161 struct mwifiex_tx_ba_stream_tbl *tx_ba_tbl;
162 u16 block_ack_param_set = le16_to_cpu(add_ba_rsp->block_ack_param_set);
164 add_ba_rsp->ssn = cpu_to_le16((le16_to_cpu(add_ba_rsp->ssn))
165 & SSN_MASK);
167 tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
168 >> BLOCKACKPARAM_TID_POS;
169 if (le16_to_cpu(add_ba_rsp->status_code) != BA_RESULT_SUCCESS) {
170 mwifiex_del_ba_tbl(priv, tid, add_ba_rsp->peer_mac_addr,
171 TYPE_DELBA_SENT, true);
172 if (add_ba_rsp->add_rsp_result != BA_RESULT_TIMEOUT)
173 priv->aggr_prio_tbl[tid].ampdu_ap =
174 BA_STREAM_NOT_ALLOWED;
175 return 0;
178 tx_ba_tbl = mwifiex_get_ba_tbl(priv, tid, add_ba_rsp->peer_mac_addr);
179 if (tx_ba_tbl) {
180 dev_dbg(priv->adapter->dev, "info: BA stream complete\n");
181 tx_ba_tbl->ba_status = BA_SETUP_COMPLETE;
182 if ((block_ack_param_set & BLOCKACKPARAM_AMSDU_SUPP_MASK) &&
183 priv->add_ba_param.tx_amsdu &&
184 (priv->aggr_prio_tbl[tid].amsdu != BA_STREAM_NOT_ALLOWED))
185 tx_ba_tbl->amsdu = true;
186 else
187 tx_ba_tbl->amsdu = false;
188 } else {
189 dev_err(priv->adapter->dev, "BA stream not created\n");
192 return 0;
196 * This function prepares command of reconfigure Tx buffer.
198 * Preparation includes -
199 * - Setting command ID, action and proper size
200 * - Setting Tx buffer size (for SET only)
201 * - Ensuring correct endian-ness
203 int mwifiex_cmd_recfg_tx_buf(struct mwifiex_private *priv,
204 struct host_cmd_ds_command *cmd, int cmd_action,
205 u16 *buf_size)
207 struct host_cmd_ds_txbuf_cfg *tx_buf = &cmd->params.tx_buf;
208 u16 action = (u16) cmd_action;
210 cmd->command = cpu_to_le16(HostCmd_CMD_RECONFIGURE_TX_BUFF);
211 cmd->size =
212 cpu_to_le16(sizeof(struct host_cmd_ds_txbuf_cfg) + S_DS_GEN);
213 tx_buf->action = cpu_to_le16(action);
214 switch (action) {
215 case HostCmd_ACT_GEN_SET:
216 dev_dbg(priv->adapter->dev, "cmd: set tx_buf=%d\n", *buf_size);
217 tx_buf->buff_size = cpu_to_le16(*buf_size);
218 break;
219 case HostCmd_ACT_GEN_GET:
220 default:
221 tx_buf->buff_size = 0;
222 break;
224 return 0;
228 * This function prepares command of AMSDU aggregation control.
230 * Preparation includes -
231 * - Setting command ID, action and proper size
232 * - Setting AMSDU control parameters (for SET only)
233 * - Ensuring correct endian-ness
235 int mwifiex_cmd_amsdu_aggr_ctrl(struct host_cmd_ds_command *cmd,
236 int cmd_action,
237 struct mwifiex_ds_11n_amsdu_aggr_ctrl *aa_ctrl)
239 struct host_cmd_ds_amsdu_aggr_ctrl *amsdu_ctrl =
240 &cmd->params.amsdu_aggr_ctrl;
241 u16 action = (u16) cmd_action;
243 cmd->command = cpu_to_le16(HostCmd_CMD_AMSDU_AGGR_CTRL);
244 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_amsdu_aggr_ctrl)
245 + S_DS_GEN);
246 amsdu_ctrl->action = cpu_to_le16(action);
247 switch (action) {
248 case HostCmd_ACT_GEN_SET:
249 amsdu_ctrl->enable = cpu_to_le16(aa_ctrl->enable);
250 amsdu_ctrl->curr_buf_size = 0;
251 break;
252 case HostCmd_ACT_GEN_GET:
253 default:
254 amsdu_ctrl->curr_buf_size = 0;
255 break;
257 return 0;
261 * This function prepares 11n configuration command.
263 * Preparation includes -
264 * - Setting command ID, action and proper size
265 * - Setting HT Tx capability and HT Tx information fields
266 * - Ensuring correct endian-ness
268 int mwifiex_cmd_11n_cfg(struct mwifiex_private *priv,
269 struct host_cmd_ds_command *cmd, u16 cmd_action,
270 struct mwifiex_ds_11n_tx_cfg *txcfg)
272 struct host_cmd_ds_11n_cfg *htcfg = &cmd->params.htcfg;
274 cmd->command = cpu_to_le16(HostCmd_CMD_11N_CFG);
275 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_11n_cfg) + S_DS_GEN);
276 htcfg->action = cpu_to_le16(cmd_action);
277 htcfg->ht_tx_cap = cpu_to_le16(txcfg->tx_htcap);
278 htcfg->ht_tx_info = cpu_to_le16(txcfg->tx_htinfo);
280 if (priv->adapter->is_hw_11ac_capable)
281 htcfg->misc_config = cpu_to_le16(txcfg->misc_config);
283 return 0;
287 * This function appends an 11n TLV to a buffer.
289 * Buffer allocation is responsibility of the calling
290 * function. No size validation is made here.
292 * The function fills up the following sections, if applicable -
293 * - HT capability IE
294 * - HT information IE (with channel list)
295 * - 20/40 BSS Coexistence IE
296 * - HT Extended Capabilities IE
299 mwifiex_cmd_append_11n_tlv(struct mwifiex_private *priv,
300 struct mwifiex_bssdescriptor *bss_desc,
301 u8 **buffer)
303 struct mwifiex_ie_types_htcap *ht_cap;
304 struct mwifiex_ie_types_htinfo *ht_info;
305 struct mwifiex_ie_types_chan_list_param_set *chan_list;
306 struct mwifiex_ie_types_2040bssco *bss_co_2040;
307 struct mwifiex_ie_types_extcap *ext_cap;
308 int ret_len = 0;
309 struct ieee80211_supported_band *sband;
310 struct ieee_types_header *hdr;
311 u8 radio_type;
313 if (!buffer || !*buffer)
314 return ret_len;
316 radio_type = mwifiex_band_to_radio_type((u8) bss_desc->bss_band);
317 sband = priv->wdev->wiphy->bands[radio_type];
319 if (bss_desc->bcn_ht_cap) {
320 ht_cap = (struct mwifiex_ie_types_htcap *) *buffer;
321 memset(ht_cap, 0, sizeof(struct mwifiex_ie_types_htcap));
322 ht_cap->header.type = cpu_to_le16(WLAN_EID_HT_CAPABILITY);
323 ht_cap->header.len =
324 cpu_to_le16(sizeof(struct ieee80211_ht_cap));
325 memcpy((u8 *) ht_cap + sizeof(struct mwifiex_ie_types_header),
326 (u8 *)bss_desc->bcn_ht_cap,
327 le16_to_cpu(ht_cap->header.len));
329 mwifiex_fill_cap_info(priv, radio_type, &ht_cap->ht_cap);
331 *buffer += sizeof(struct mwifiex_ie_types_htcap);
332 ret_len += sizeof(struct mwifiex_ie_types_htcap);
335 if (bss_desc->bcn_ht_oper) {
336 if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
337 ht_info = (struct mwifiex_ie_types_htinfo *) *buffer;
338 memset(ht_info, 0,
339 sizeof(struct mwifiex_ie_types_htinfo));
340 ht_info->header.type =
341 cpu_to_le16(WLAN_EID_HT_OPERATION);
342 ht_info->header.len =
343 cpu_to_le16(
344 sizeof(struct ieee80211_ht_operation));
346 memcpy((u8 *) ht_info +
347 sizeof(struct mwifiex_ie_types_header),
348 (u8 *)bss_desc->bcn_ht_oper,
349 le16_to_cpu(ht_info->header.len));
351 if (!(sband->ht_cap.cap &
352 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
353 ht_info->ht_oper.ht_param &=
354 ~(IEEE80211_HT_PARAM_CHAN_WIDTH_ANY |
355 IEEE80211_HT_PARAM_CHA_SEC_OFFSET);
357 *buffer += sizeof(struct mwifiex_ie_types_htinfo);
358 ret_len += sizeof(struct mwifiex_ie_types_htinfo);
361 chan_list =
362 (struct mwifiex_ie_types_chan_list_param_set *) *buffer;
363 memset(chan_list, 0,
364 sizeof(struct mwifiex_ie_types_chan_list_param_set));
365 chan_list->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
366 chan_list->header.len = cpu_to_le16(
367 sizeof(struct mwifiex_ie_types_chan_list_param_set) -
368 sizeof(struct mwifiex_ie_types_header));
369 chan_list->chan_scan_param[0].chan_number =
370 bss_desc->bcn_ht_oper->primary_chan;
371 chan_list->chan_scan_param[0].radio_type =
372 mwifiex_band_to_radio_type((u8) bss_desc->bss_band);
374 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
375 bss_desc->bcn_ht_oper->ht_param &
376 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)
377 SET_SECONDARYCHAN(chan_list->chan_scan_param[0].
378 radio_type,
379 (bss_desc->bcn_ht_oper->ht_param &
380 IEEE80211_HT_PARAM_CHA_SEC_OFFSET));
382 *buffer += sizeof(struct mwifiex_ie_types_chan_list_param_set);
383 ret_len += sizeof(struct mwifiex_ie_types_chan_list_param_set);
386 if (bss_desc->bcn_bss_co_2040) {
387 bss_co_2040 = (struct mwifiex_ie_types_2040bssco *) *buffer;
388 memset(bss_co_2040, 0,
389 sizeof(struct mwifiex_ie_types_2040bssco));
390 bss_co_2040->header.type = cpu_to_le16(WLAN_EID_BSS_COEX_2040);
391 bss_co_2040->header.len =
392 cpu_to_le16(sizeof(bss_co_2040->bss_co_2040));
394 memcpy((u8 *) bss_co_2040 +
395 sizeof(struct mwifiex_ie_types_header),
396 bss_desc->bcn_bss_co_2040 +
397 sizeof(struct ieee_types_header),
398 le16_to_cpu(bss_co_2040->header.len));
400 *buffer += sizeof(struct mwifiex_ie_types_2040bssco);
401 ret_len += sizeof(struct mwifiex_ie_types_2040bssco);
404 if (bss_desc->bcn_ext_cap) {
405 hdr = (void *)bss_desc->bcn_ext_cap;
406 ext_cap = (struct mwifiex_ie_types_extcap *) *buffer;
407 memset(ext_cap, 0, sizeof(struct mwifiex_ie_types_extcap));
408 ext_cap->header.type = cpu_to_le16(WLAN_EID_EXT_CAPABILITY);
409 ext_cap->header.len = cpu_to_le16(hdr->len);
411 memcpy((u8 *)ext_cap->ext_capab,
412 bss_desc->bcn_ext_cap + sizeof(struct ieee_types_header),
413 le16_to_cpu(ext_cap->header.len));
415 if (hdr->len > 3 &&
416 ext_cap->ext_capab[3] & WLAN_EXT_CAPA4_INTERWORKING_ENABLED)
417 priv->hs2_enabled = true;
418 else
419 priv->hs2_enabled = false;
421 *buffer += sizeof(struct mwifiex_ie_types_extcap) + hdr->len;
422 ret_len += sizeof(struct mwifiex_ie_types_extcap) + hdr->len;
425 return ret_len;
429 * This function checks if the given pointer is valid entry of
430 * Tx BA Stream table.
432 static int mwifiex_is_tx_ba_stream_ptr_valid(struct mwifiex_private *priv,
433 struct mwifiex_tx_ba_stream_tbl *tx_tbl_ptr)
435 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
437 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
438 if (tx_ba_tsr_tbl == tx_tbl_ptr)
439 return true;
442 return false;
446 * This function deletes the given entry in Tx BA Stream table.
448 * The function also performs a validity check on the supplied
449 * pointer before trying to delete.
451 void mwifiex_11n_delete_tx_ba_stream_tbl_entry(struct mwifiex_private *priv,
452 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl)
454 if (!tx_ba_tsr_tbl &&
455 mwifiex_is_tx_ba_stream_ptr_valid(priv, tx_ba_tsr_tbl))
456 return;
458 dev_dbg(priv->adapter->dev, "info: tx_ba_tsr_tbl %p\n", tx_ba_tsr_tbl);
460 list_del(&tx_ba_tsr_tbl->list);
462 kfree(tx_ba_tsr_tbl);
466 * This function deletes all the entries in Tx BA Stream table.
468 void mwifiex_11n_delete_all_tx_ba_stream_tbl(struct mwifiex_private *priv)
470 int i;
471 struct mwifiex_tx_ba_stream_tbl *del_tbl_ptr, *tmp_node;
472 unsigned long flags;
474 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
475 list_for_each_entry_safe(del_tbl_ptr, tmp_node,
476 &priv->tx_ba_stream_tbl_ptr, list)
477 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, del_tbl_ptr);
478 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
480 INIT_LIST_HEAD(&priv->tx_ba_stream_tbl_ptr);
482 for (i = 0; i < MAX_NUM_TID; ++i)
483 priv->aggr_prio_tbl[i].ampdu_ap =
484 priv->aggr_prio_tbl[i].ampdu_user;
488 * This function returns the pointer to an entry in BA Stream
489 * table which matches the given RA/TID pair.
491 struct mwifiex_tx_ba_stream_tbl *
492 mwifiex_get_ba_tbl(struct mwifiex_private *priv, int tid, u8 *ra)
494 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
495 unsigned long flags;
497 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
498 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
499 if (ether_addr_equal_unaligned(tx_ba_tsr_tbl->ra, ra) &&
500 tx_ba_tsr_tbl->tid == tid) {
501 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock,
502 flags);
503 return tx_ba_tsr_tbl;
506 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
507 return NULL;
511 * This function creates an entry in Tx BA stream table for the
512 * given RA/TID pair.
514 void mwifiex_create_ba_tbl(struct mwifiex_private *priv, u8 *ra, int tid,
515 enum mwifiex_ba_status ba_status)
517 struct mwifiex_tx_ba_stream_tbl *new_node;
518 unsigned long flags;
520 if (!mwifiex_get_ba_tbl(priv, tid, ra)) {
521 new_node = kzalloc(sizeof(struct mwifiex_tx_ba_stream_tbl),
522 GFP_ATOMIC);
523 if (!new_node)
524 return;
526 INIT_LIST_HEAD(&new_node->list);
528 new_node->tid = tid;
529 new_node->ba_status = ba_status;
530 memcpy(new_node->ra, ra, ETH_ALEN);
532 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
533 list_add_tail(&new_node->list, &priv->tx_ba_stream_tbl_ptr);
534 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
539 * This function sends an add BA request to the given TID/RA pair.
541 int mwifiex_send_addba(struct mwifiex_private *priv, int tid, u8 *peer_mac)
543 struct host_cmd_ds_11n_addba_req add_ba_req;
544 struct mwifiex_sta_node *sta_ptr;
545 u32 tx_win_size = priv->add_ba_param.tx_win_size;
546 static u8 dialog_tok;
547 int ret;
548 u16 block_ack_param_set;
550 dev_dbg(priv->adapter->dev, "cmd: %s: tid %d\n", __func__, tid);
552 if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
553 ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
554 priv->adapter->is_hw_11ac_capable &&
555 memcmp(priv->cfg_bssid, peer_mac, ETH_ALEN)) {
556 sta_ptr = mwifiex_get_sta_entry(priv, peer_mac);
557 if (!sta_ptr) {
558 dev_warn(priv->adapter->dev,
559 "BA setup with unknown TDLS peer %pM!\n",
560 peer_mac);
561 return -1;
563 if (sta_ptr->is_11ac_enabled)
564 tx_win_size = MWIFIEX_11AC_STA_AMPDU_DEF_TXWINSIZE;
567 block_ack_param_set = (u16)((tid << BLOCKACKPARAM_TID_POS) |
568 tx_win_size << BLOCKACKPARAM_WINSIZE_POS |
569 IMMEDIATE_BLOCK_ACK);
571 /* enable AMSDU inside AMPDU */
572 if (priv->add_ba_param.tx_amsdu &&
573 (priv->aggr_prio_tbl[tid].amsdu != BA_STREAM_NOT_ALLOWED))
574 block_ack_param_set |= BLOCKACKPARAM_AMSDU_SUPP_MASK;
576 add_ba_req.block_ack_param_set = cpu_to_le16(block_ack_param_set);
577 add_ba_req.block_ack_tmo = cpu_to_le16((u16)priv->add_ba_param.timeout);
579 ++dialog_tok;
581 if (dialog_tok == 0)
582 dialog_tok = 1;
584 add_ba_req.dialog_token = dialog_tok;
585 memcpy(&add_ba_req.peer_mac_addr, peer_mac, ETH_ALEN);
587 /* We don't wait for the response of this command */
588 ret = mwifiex_send_cmd(priv, HostCmd_CMD_11N_ADDBA_REQ,
589 0, 0, &add_ba_req, false);
591 return ret;
595 * This function sends a delete BA request to the given TID/RA pair.
597 int mwifiex_send_delba(struct mwifiex_private *priv, int tid, u8 *peer_mac,
598 int initiator)
600 struct host_cmd_ds_11n_delba delba;
601 int ret;
602 uint16_t del_ba_param_set;
604 memset(&delba, 0, sizeof(delba));
605 delba.del_ba_param_set = cpu_to_le16(tid << DELBA_TID_POS);
607 del_ba_param_set = le16_to_cpu(delba.del_ba_param_set);
608 if (initiator)
609 del_ba_param_set |= IEEE80211_DELBA_PARAM_INITIATOR_MASK;
610 else
611 del_ba_param_set &= ~IEEE80211_DELBA_PARAM_INITIATOR_MASK;
613 memcpy(&delba.peer_mac_addr, peer_mac, ETH_ALEN);
615 /* We don't wait for the response of this command */
616 ret = mwifiex_send_cmd(priv, HostCmd_CMD_11N_DELBA,
617 HostCmd_ACT_GEN_SET, 0, &delba, false);
619 return ret;
623 * This function handles the command response of a delete BA request.
625 void mwifiex_11n_delete_ba_stream(struct mwifiex_private *priv, u8 *del_ba)
627 struct host_cmd_ds_11n_delba *cmd_del_ba =
628 (struct host_cmd_ds_11n_delba *) del_ba;
629 uint16_t del_ba_param_set = le16_to_cpu(cmd_del_ba->del_ba_param_set);
630 int tid;
632 tid = del_ba_param_set >> DELBA_TID_POS;
634 mwifiex_del_ba_tbl(priv, tid, cmd_del_ba->peer_mac_addr,
635 TYPE_DELBA_RECEIVE, INITIATOR_BIT(del_ba_param_set));
639 * This function retrieves the Rx reordering table.
641 int mwifiex_get_rx_reorder_tbl(struct mwifiex_private *priv,
642 struct mwifiex_ds_rx_reorder_tbl *buf)
644 int i;
645 struct mwifiex_ds_rx_reorder_tbl *rx_reo_tbl = buf;
646 struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr;
647 int count = 0;
648 unsigned long flags;
650 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
651 list_for_each_entry(rx_reorder_tbl_ptr, &priv->rx_reorder_tbl_ptr,
652 list) {
653 rx_reo_tbl->tid = (u16) rx_reorder_tbl_ptr->tid;
654 memcpy(rx_reo_tbl->ta, rx_reorder_tbl_ptr->ta, ETH_ALEN);
655 rx_reo_tbl->start_win = rx_reorder_tbl_ptr->start_win;
656 rx_reo_tbl->win_size = rx_reorder_tbl_ptr->win_size;
657 for (i = 0; i < rx_reorder_tbl_ptr->win_size; ++i) {
658 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i])
659 rx_reo_tbl->buffer[i] = true;
660 else
661 rx_reo_tbl->buffer[i] = false;
663 rx_reo_tbl++;
664 count++;
666 if (count >= MWIFIEX_MAX_RX_BASTREAM_SUPPORTED)
667 break;
669 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
671 return count;
675 * This function retrieves the Tx BA stream table.
677 int mwifiex_get_tx_ba_stream_tbl(struct mwifiex_private *priv,
678 struct mwifiex_ds_tx_ba_stream_tbl *buf)
680 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
681 struct mwifiex_ds_tx_ba_stream_tbl *rx_reo_tbl = buf;
682 int count = 0;
683 unsigned long flags;
685 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
686 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
687 rx_reo_tbl->tid = (u16) tx_ba_tsr_tbl->tid;
688 dev_dbg(priv->adapter->dev, "data: %s tid=%d\n",
689 __func__, rx_reo_tbl->tid);
690 memcpy(rx_reo_tbl->ra, tx_ba_tsr_tbl->ra, ETH_ALEN);
691 rx_reo_tbl->amsdu = tx_ba_tsr_tbl->amsdu;
692 rx_reo_tbl++;
693 count++;
694 if (count >= MWIFIEX_MAX_TX_BASTREAM_SUPPORTED)
695 break;
697 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
699 return count;
703 * This function retrieves the entry for specific tx BA stream table by RA and
704 * deletes it.
706 void mwifiex_del_tx_ba_stream_tbl_by_ra(struct mwifiex_private *priv, u8 *ra)
708 struct mwifiex_tx_ba_stream_tbl *tbl, *tmp;
709 unsigned long flags;
711 if (!ra)
712 return;
714 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
715 list_for_each_entry_safe(tbl, tmp, &priv->tx_ba_stream_tbl_ptr, list) {
716 if (!memcmp(tbl->ra, ra, ETH_ALEN)) {
717 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock,
718 flags);
719 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, tbl);
720 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
723 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
725 return;
728 /* This function initializes the BlockACK setup information for given
729 * mwifiex_private structure.
731 void mwifiex_set_ba_params(struct mwifiex_private *priv)
733 priv->add_ba_param.timeout = MWIFIEX_DEFAULT_BLOCK_ACK_TIMEOUT;
735 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
736 priv->add_ba_param.tx_win_size =
737 MWIFIEX_UAP_AMPDU_DEF_TXWINSIZE;
738 priv->add_ba_param.rx_win_size =
739 MWIFIEX_UAP_AMPDU_DEF_RXWINSIZE;
740 } else {
741 priv->add_ba_param.tx_win_size =
742 MWIFIEX_STA_AMPDU_DEF_TXWINSIZE;
743 priv->add_ba_param.rx_win_size =
744 MWIFIEX_STA_AMPDU_DEF_RXWINSIZE;
747 priv->add_ba_param.tx_amsdu = true;
748 priv->add_ba_param.rx_amsdu = true;
750 return;