]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blob - drivers/net/wireless/marvell/mwifiex/11n.c
Merge tag 'mac80211-next-for-davem-2018-03-29' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-eoan-kernel.git] / drivers / net / wireless / marvell / mwifiex / 11n.c
1 /*
2 * Marvell Wireless LAN device driver: 802.11n
3 *
4 * Copyright (C) 2011-2014, Marvell International Ltd.
5 *
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.
13 *
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.
18 */
19
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"
27
28 /*
29 * Fills HT capability information field, AMPDU Parameters field, HT extended
30 * capability field, and supported MCS set fields.
31 *
32 * HT capability information field, AMPDU Parameters field, supported MCS set
33 * fields are retrieved from cfg80211 stack
34 *
35 * RD responder bit to set to clear in the extended capability header.
36 */
37 int mwifiex_fill_cap_info(struct mwifiex_private *priv, u8 radio_type,
38 struct ieee80211_ht_cap *ht_cap)
39 {
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];
43
44 if (WARN_ON_ONCE(!sband)) {
45 mwifiex_dbg(priv->adapter, ERROR, "Invalid radio type!\n");
46 return -EINVAL;
47 }
48
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);
55
56 memcpy((u8 *)&ht_cap->mcs, &sband->ht_cap.mcs,
57 sizeof(sband->ht_cap.mcs));
58
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);
65
66 /* Clear RD responder bit */
67 ht_ext_cap &= ~IEEE80211_HT_EXT_CAP_RD_RESPONDER;
68
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);
71
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);
74
75 return 0;
76 }
77
78 /*
79 * This function returns the pointer to an entry in BA Stream
80 * table which matches the requested BA status.
81 */
82 static struct mwifiex_tx_ba_stream_tbl *
83 mwifiex_get_ba_status(struct mwifiex_private *priv,
84 enum mwifiex_ba_status ba_status)
85 {
86 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
87 unsigned long flags;
88
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;
95 }
96 }
97 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
98 return NULL;
99 }
100
101 /*
102 * This function handles the command response of delete a block
103 * ack request.
104 *
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).
109 */
110 int mwifiex_ret_11n_delba(struct mwifiex_private *priv,
111 struct host_cmd_ds_command *resp)
112 {
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);
117
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));
123
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
131 */
132 if (!INITIATOR_BIT(del_ba_param_set))
133 return 0;
134
135 mwifiex_create_ba_tbl(priv, del_ba->peer_mac_addr, tid,
136 BA_SETUP_INPROGRESS);
137
138 tx_ba_tbl = mwifiex_get_ba_status(priv, BA_SETUP_INPROGRESS);
139
140 if (tx_ba_tbl)
141 mwifiex_del_ba_tbl(priv, tx_ba_tbl->tid, tx_ba_tbl->ra,
142 TYPE_DELBA_SENT, true);
143 }
144
145 return 0;
146 }
147
148 /*
149 * This function handles the command response of add a block
150 * ack request.
151 *
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).
155 */
156 int mwifiex_ret_11n_addba_req(struct mwifiex_private *priv,
157 struct host_cmd_ds_command *resp)
158 {
159 int tid, tid_down;
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 struct mwifiex_ra_list_tbl *ra_list;
163 u16 block_ack_param_set = le16_to_cpu(add_ba_rsp->block_ack_param_set);
164
165 add_ba_rsp->ssn = cpu_to_le16((le16_to_cpu(add_ba_rsp->ssn))
166 & SSN_MASK);
167
168 tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
169 >> BLOCKACKPARAM_TID_POS;
170
171 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
172 ra_list = mwifiex_wmm_get_ralist_node(priv, tid_down, add_ba_rsp->
173 peer_mac_addr);
174 if (le16_to_cpu(add_ba_rsp->status_code) != BA_RESULT_SUCCESS) {
175 if (ra_list) {
176 ra_list->ba_status = BA_SETUP_NONE;
177 ra_list->amsdu_in_ampdu = false;
178 }
179 mwifiex_del_ba_tbl(priv, tid, add_ba_rsp->peer_mac_addr,
180 TYPE_DELBA_SENT, true);
181 if (add_ba_rsp->add_rsp_result != BA_RESULT_TIMEOUT)
182 priv->aggr_prio_tbl[tid].ampdu_ap =
183 BA_STREAM_NOT_ALLOWED;
184 return 0;
185 }
186
187 tx_ba_tbl = mwifiex_get_ba_tbl(priv, tid, add_ba_rsp->peer_mac_addr);
188 if (tx_ba_tbl) {
189 mwifiex_dbg(priv->adapter, EVENT, "info: BA stream complete\n");
190 tx_ba_tbl->ba_status = BA_SETUP_COMPLETE;
191 if ((block_ack_param_set & BLOCKACKPARAM_AMSDU_SUPP_MASK) &&
192 priv->add_ba_param.tx_amsdu &&
193 (priv->aggr_prio_tbl[tid].amsdu != BA_STREAM_NOT_ALLOWED))
194 tx_ba_tbl->amsdu = true;
195 else
196 tx_ba_tbl->amsdu = false;
197 if (ra_list) {
198 ra_list->amsdu_in_ampdu = tx_ba_tbl->amsdu;
199 ra_list->ba_status = BA_SETUP_COMPLETE;
200 }
201 } else {
202 mwifiex_dbg(priv->adapter, ERROR, "BA stream not created\n");
203 }
204
205 return 0;
206 }
207
208 /*
209 * This function prepares command of reconfigure Tx buffer.
210 *
211 * Preparation includes -
212 * - Setting command ID, action and proper size
213 * - Setting Tx buffer size (for SET only)
214 * - Ensuring correct endian-ness
215 */
216 int mwifiex_cmd_recfg_tx_buf(struct mwifiex_private *priv,
217 struct host_cmd_ds_command *cmd, int cmd_action,
218 u16 *buf_size)
219 {
220 struct host_cmd_ds_txbuf_cfg *tx_buf = &cmd->params.tx_buf;
221 u16 action = (u16) cmd_action;
222
223 cmd->command = cpu_to_le16(HostCmd_CMD_RECONFIGURE_TX_BUFF);
224 cmd->size =
225 cpu_to_le16(sizeof(struct host_cmd_ds_txbuf_cfg) + S_DS_GEN);
226 tx_buf->action = cpu_to_le16(action);
227 switch (action) {
228 case HostCmd_ACT_GEN_SET:
229 mwifiex_dbg(priv->adapter, CMD,
230 "cmd: set tx_buf=%d\n", *buf_size);
231 tx_buf->buff_size = cpu_to_le16(*buf_size);
232 break;
233 case HostCmd_ACT_GEN_GET:
234 default:
235 tx_buf->buff_size = 0;
236 break;
237 }
238 return 0;
239 }
240
241 /*
242 * This function prepares command of AMSDU aggregation control.
243 *
244 * Preparation includes -
245 * - Setting command ID, action and proper size
246 * - Setting AMSDU control parameters (for SET only)
247 * - Ensuring correct endian-ness
248 */
249 int mwifiex_cmd_amsdu_aggr_ctrl(struct host_cmd_ds_command *cmd,
250 int cmd_action,
251 struct mwifiex_ds_11n_amsdu_aggr_ctrl *aa_ctrl)
252 {
253 struct host_cmd_ds_amsdu_aggr_ctrl *amsdu_ctrl =
254 &cmd->params.amsdu_aggr_ctrl;
255 u16 action = (u16) cmd_action;
256
257 cmd->command = cpu_to_le16(HostCmd_CMD_AMSDU_AGGR_CTRL);
258 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_amsdu_aggr_ctrl)
259 + S_DS_GEN);
260 amsdu_ctrl->action = cpu_to_le16(action);
261 switch (action) {
262 case HostCmd_ACT_GEN_SET:
263 amsdu_ctrl->enable = cpu_to_le16(aa_ctrl->enable);
264 amsdu_ctrl->curr_buf_size = 0;
265 break;
266 case HostCmd_ACT_GEN_GET:
267 default:
268 amsdu_ctrl->curr_buf_size = 0;
269 break;
270 }
271 return 0;
272 }
273
274 /*
275 * This function prepares 11n configuration command.
276 *
277 * Preparation includes -
278 * - Setting command ID, action and proper size
279 * - Setting HT Tx capability and HT Tx information fields
280 * - Ensuring correct endian-ness
281 */
282 int mwifiex_cmd_11n_cfg(struct mwifiex_private *priv,
283 struct host_cmd_ds_command *cmd, u16 cmd_action,
284 struct mwifiex_ds_11n_tx_cfg *txcfg)
285 {
286 struct host_cmd_ds_11n_cfg *htcfg = &cmd->params.htcfg;
287
288 cmd->command = cpu_to_le16(HostCmd_CMD_11N_CFG);
289 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_11n_cfg) + S_DS_GEN);
290 htcfg->action = cpu_to_le16(cmd_action);
291 htcfg->ht_tx_cap = cpu_to_le16(txcfg->tx_htcap);
292 htcfg->ht_tx_info = cpu_to_le16(txcfg->tx_htinfo);
293
294 if (priv->adapter->is_hw_11ac_capable)
295 htcfg->misc_config = cpu_to_le16(txcfg->misc_config);
296
297 return 0;
298 }
299
300 /*
301 * This function appends an 11n TLV to a buffer.
302 *
303 * Buffer allocation is responsibility of the calling
304 * function. No size validation is made here.
305 *
306 * The function fills up the following sections, if applicable -
307 * - HT capability IE
308 * - HT information IE (with channel list)
309 * - 20/40 BSS Coexistence IE
310 * - HT Extended Capabilities IE
311 */
312 int
313 mwifiex_cmd_append_11n_tlv(struct mwifiex_private *priv,
314 struct mwifiex_bssdescriptor *bss_desc,
315 u8 **buffer)
316 {
317 struct mwifiex_ie_types_htcap *ht_cap;
318 struct mwifiex_ie_types_htinfo *ht_info;
319 struct mwifiex_ie_types_chan_list_param_set *chan_list;
320 struct mwifiex_ie_types_2040bssco *bss_co_2040;
321 struct mwifiex_ie_types_extcap *ext_cap;
322 int ret_len = 0;
323 struct ieee80211_supported_band *sband;
324 struct ieee_types_header *hdr;
325 u8 radio_type;
326
327 if (!buffer || !*buffer)
328 return ret_len;
329
330 radio_type = mwifiex_band_to_radio_type((u8) bss_desc->bss_band);
331 sband = priv->wdev.wiphy->bands[radio_type];
332
333 if (bss_desc->bcn_ht_cap) {
334 ht_cap = (struct mwifiex_ie_types_htcap *) *buffer;
335 memset(ht_cap, 0, sizeof(struct mwifiex_ie_types_htcap));
336 ht_cap->header.type = cpu_to_le16(WLAN_EID_HT_CAPABILITY);
337 ht_cap->header.len =
338 cpu_to_le16(sizeof(struct ieee80211_ht_cap));
339 memcpy((u8 *) ht_cap + sizeof(struct mwifiex_ie_types_header),
340 (u8 *)bss_desc->bcn_ht_cap,
341 le16_to_cpu(ht_cap->header.len));
342
343 mwifiex_fill_cap_info(priv, radio_type, &ht_cap->ht_cap);
344 /* Update HT40 capability from current channel information */
345 if (bss_desc->bcn_ht_oper) {
346 u8 ht_param = bss_desc->bcn_ht_oper->ht_param;
347 u8 radio =
348 mwifiex_band_to_radio_type(bss_desc->bss_band);
349 int freq =
350 ieee80211_channel_to_frequency(bss_desc->channel,
351 radio);
352 struct ieee80211_channel *chan =
353 ieee80211_get_channel(priv->adapter->wiphy, freq);
354
355 switch (ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
356 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
357 if (chan->flags & IEEE80211_CHAN_NO_HT40PLUS) {
358 ht_cap->ht_cap.cap_info &=
359 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
360 ht_cap->ht_cap.cap_info &=
361 ~IEEE80211_HT_CAP_SGI_40;
362 }
363 break;
364 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
365 if (chan->flags & IEEE80211_CHAN_NO_HT40MINUS) {
366 ht_cap->ht_cap.cap_info &=
367 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
368 ht_cap->ht_cap.cap_info &=
369 ~IEEE80211_HT_CAP_SGI_40;
370 }
371 break;
372 }
373 }
374
375 *buffer += sizeof(struct mwifiex_ie_types_htcap);
376 ret_len += sizeof(struct mwifiex_ie_types_htcap);
377 }
378
379 if (bss_desc->bcn_ht_oper) {
380 if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
381 ht_info = (struct mwifiex_ie_types_htinfo *) *buffer;
382 memset(ht_info, 0,
383 sizeof(struct mwifiex_ie_types_htinfo));
384 ht_info->header.type =
385 cpu_to_le16(WLAN_EID_HT_OPERATION);
386 ht_info->header.len =
387 cpu_to_le16(
388 sizeof(struct ieee80211_ht_operation));
389
390 memcpy((u8 *) ht_info +
391 sizeof(struct mwifiex_ie_types_header),
392 (u8 *)bss_desc->bcn_ht_oper,
393 le16_to_cpu(ht_info->header.len));
394
395 if (!(sband->ht_cap.cap &
396 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
397 ht_info->ht_oper.ht_param &=
398 ~(IEEE80211_HT_PARAM_CHAN_WIDTH_ANY |
399 IEEE80211_HT_PARAM_CHA_SEC_OFFSET);
400
401 *buffer += sizeof(struct mwifiex_ie_types_htinfo);
402 ret_len += sizeof(struct mwifiex_ie_types_htinfo);
403 }
404
405 chan_list =
406 (struct mwifiex_ie_types_chan_list_param_set *) *buffer;
407 memset(chan_list, 0,
408 sizeof(struct mwifiex_ie_types_chan_list_param_set));
409 chan_list->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
410 chan_list->header.len = cpu_to_le16(
411 sizeof(struct mwifiex_ie_types_chan_list_param_set) -
412 sizeof(struct mwifiex_ie_types_header));
413 chan_list->chan_scan_param[0].chan_number =
414 bss_desc->bcn_ht_oper->primary_chan;
415 chan_list->chan_scan_param[0].radio_type =
416 mwifiex_band_to_radio_type((u8) bss_desc->bss_band);
417
418 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
419 bss_desc->bcn_ht_oper->ht_param &
420 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)
421 SET_SECONDARYCHAN(chan_list->chan_scan_param[0].
422 radio_type,
423 (bss_desc->bcn_ht_oper->ht_param &
424 IEEE80211_HT_PARAM_CHA_SEC_OFFSET));
425
426 *buffer += sizeof(struct mwifiex_ie_types_chan_list_param_set);
427 ret_len += sizeof(struct mwifiex_ie_types_chan_list_param_set);
428 }
429
430 if (bss_desc->bcn_bss_co_2040) {
431 bss_co_2040 = (struct mwifiex_ie_types_2040bssco *) *buffer;
432 memset(bss_co_2040, 0,
433 sizeof(struct mwifiex_ie_types_2040bssco));
434 bss_co_2040->header.type = cpu_to_le16(WLAN_EID_BSS_COEX_2040);
435 bss_co_2040->header.len =
436 cpu_to_le16(sizeof(bss_co_2040->bss_co_2040));
437
438 memcpy((u8 *) bss_co_2040 +
439 sizeof(struct mwifiex_ie_types_header),
440 bss_desc->bcn_bss_co_2040 +
441 sizeof(struct ieee_types_header),
442 le16_to_cpu(bss_co_2040->header.len));
443
444 *buffer += sizeof(struct mwifiex_ie_types_2040bssco);
445 ret_len += sizeof(struct mwifiex_ie_types_2040bssco);
446 }
447
448 if (bss_desc->bcn_ext_cap) {
449 hdr = (void *)bss_desc->bcn_ext_cap;
450 ext_cap = (struct mwifiex_ie_types_extcap *) *buffer;
451 memset(ext_cap, 0, sizeof(struct mwifiex_ie_types_extcap));
452 ext_cap->header.type = cpu_to_le16(WLAN_EID_EXT_CAPABILITY);
453 ext_cap->header.len = cpu_to_le16(hdr->len);
454
455 memcpy((u8 *)ext_cap->ext_capab,
456 bss_desc->bcn_ext_cap + sizeof(struct ieee_types_header),
457 le16_to_cpu(ext_cap->header.len));
458
459 if (hdr->len > 3 &&
460 ext_cap->ext_capab[3] & WLAN_EXT_CAPA4_INTERWORKING_ENABLED)
461 priv->hs2_enabled = true;
462 else
463 priv->hs2_enabled = false;
464
465 *buffer += sizeof(struct mwifiex_ie_types_extcap) + hdr->len;
466 ret_len += sizeof(struct mwifiex_ie_types_extcap) + hdr->len;
467 }
468
469 return ret_len;
470 }
471
472 /*
473 * This function checks if the given pointer is valid entry of
474 * Tx BA Stream table.
475 */
476 static int mwifiex_is_tx_ba_stream_ptr_valid(struct mwifiex_private *priv,
477 struct mwifiex_tx_ba_stream_tbl *tx_tbl_ptr)
478 {
479 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
480
481 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
482 if (tx_ba_tsr_tbl == tx_tbl_ptr)
483 return true;
484 }
485
486 return false;
487 }
488
489 /*
490 * This function deletes the given entry in Tx BA Stream table.
491 *
492 * The function also performs a validity check on the supplied
493 * pointer before trying to delete.
494 */
495 void mwifiex_11n_delete_tx_ba_stream_tbl_entry(struct mwifiex_private *priv,
496 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl)
497 {
498 if (!tx_ba_tsr_tbl &&
499 mwifiex_is_tx_ba_stream_ptr_valid(priv, tx_ba_tsr_tbl))
500 return;
501
502 mwifiex_dbg(priv->adapter, INFO,
503 "info: tx_ba_tsr_tbl %p\n", tx_ba_tsr_tbl);
504
505 list_del(&tx_ba_tsr_tbl->list);
506
507 kfree(tx_ba_tsr_tbl);
508 }
509
510 /*
511 * This function deletes all the entries in Tx BA Stream table.
512 */
513 void mwifiex_11n_delete_all_tx_ba_stream_tbl(struct mwifiex_private *priv)
514 {
515 int i;
516 struct mwifiex_tx_ba_stream_tbl *del_tbl_ptr, *tmp_node;
517 unsigned long flags;
518
519 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
520 list_for_each_entry_safe(del_tbl_ptr, tmp_node,
521 &priv->tx_ba_stream_tbl_ptr, list)
522 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, del_tbl_ptr);
523 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
524
525 INIT_LIST_HEAD(&priv->tx_ba_stream_tbl_ptr);
526
527 for (i = 0; i < MAX_NUM_TID; ++i)
528 priv->aggr_prio_tbl[i].ampdu_ap =
529 priv->aggr_prio_tbl[i].ampdu_user;
530 }
531
532 /*
533 * This function returns the pointer to an entry in BA Stream
534 * table which matches the given RA/TID pair.
535 */
536 struct mwifiex_tx_ba_stream_tbl *
537 mwifiex_get_ba_tbl(struct mwifiex_private *priv, int tid, u8 *ra)
538 {
539 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
540 unsigned long flags;
541
542 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
543 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
544 if (ether_addr_equal_unaligned(tx_ba_tsr_tbl->ra, ra) &&
545 tx_ba_tsr_tbl->tid == tid) {
546 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock,
547 flags);
548 return tx_ba_tsr_tbl;
549 }
550 }
551 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
552 return NULL;
553 }
554
555 /*
556 * This function creates an entry in Tx BA stream table for the
557 * given RA/TID pair.
558 */
559 void mwifiex_create_ba_tbl(struct mwifiex_private *priv, u8 *ra, int tid,
560 enum mwifiex_ba_status ba_status)
561 {
562 struct mwifiex_tx_ba_stream_tbl *new_node;
563 struct mwifiex_ra_list_tbl *ra_list;
564 unsigned long flags;
565 int tid_down;
566
567 if (!mwifiex_get_ba_tbl(priv, tid, ra)) {
568 new_node = kzalloc(sizeof(struct mwifiex_tx_ba_stream_tbl),
569 GFP_ATOMIC);
570 if (!new_node)
571 return;
572
573 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
574 ra_list = mwifiex_wmm_get_ralist_node(priv, tid_down, ra);
575 if (ra_list) {
576 ra_list->ba_status = ba_status;
577 ra_list->amsdu_in_ampdu = false;
578 }
579 INIT_LIST_HEAD(&new_node->list);
580
581 new_node->tid = tid;
582 new_node->ba_status = ba_status;
583 memcpy(new_node->ra, ra, ETH_ALEN);
584
585 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
586 list_add_tail(&new_node->list, &priv->tx_ba_stream_tbl_ptr);
587 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
588 }
589 }
590
591 /*
592 * This function sends an add BA request to the given TID/RA pair.
593 */
594 int mwifiex_send_addba(struct mwifiex_private *priv, int tid, u8 *peer_mac)
595 {
596 struct host_cmd_ds_11n_addba_req add_ba_req;
597 u32 tx_win_size = priv->add_ba_param.tx_win_size;
598 static u8 dialog_tok;
599 int ret;
600 unsigned long flags;
601 u16 block_ack_param_set;
602
603 mwifiex_dbg(priv->adapter, CMD, "cmd: %s: tid %d\n", __func__, tid);
604
605 memset(&add_ba_req, 0, sizeof(add_ba_req));
606
607 if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
608 ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
609 priv->adapter->is_hw_11ac_capable &&
610 memcmp(priv->cfg_bssid, peer_mac, ETH_ALEN)) {
611 struct mwifiex_sta_node *sta_ptr;
612
613 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
614 sta_ptr = mwifiex_get_sta_entry(priv, peer_mac);
615 if (!sta_ptr) {
616 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
617 mwifiex_dbg(priv->adapter, ERROR,
618 "BA setup with unknown TDLS peer %pM!\n",
619 peer_mac);
620 return -1;
621 }
622 if (sta_ptr->is_11ac_enabled)
623 tx_win_size = MWIFIEX_11AC_STA_AMPDU_DEF_TXWINSIZE;
624 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
625 }
626
627 block_ack_param_set = (u16)((tid << BLOCKACKPARAM_TID_POS) |
628 tx_win_size << BLOCKACKPARAM_WINSIZE_POS |
629 IMMEDIATE_BLOCK_ACK);
630
631 /* enable AMSDU inside AMPDU */
632 if (priv->add_ba_param.tx_amsdu &&
633 (priv->aggr_prio_tbl[tid].amsdu != BA_STREAM_NOT_ALLOWED))
634 block_ack_param_set |= BLOCKACKPARAM_AMSDU_SUPP_MASK;
635
636 add_ba_req.block_ack_param_set = cpu_to_le16(block_ack_param_set);
637 add_ba_req.block_ack_tmo = cpu_to_le16((u16)priv->add_ba_param.timeout);
638
639 ++dialog_tok;
640
641 if (dialog_tok == 0)
642 dialog_tok = 1;
643
644 add_ba_req.dialog_token = dialog_tok;
645 memcpy(&add_ba_req.peer_mac_addr, peer_mac, ETH_ALEN);
646
647 /* We don't wait for the response of this command */
648 ret = mwifiex_send_cmd(priv, HostCmd_CMD_11N_ADDBA_REQ,
649 0, 0, &add_ba_req, false);
650
651 return ret;
652 }
653
654 /*
655 * This function sends a delete BA request to the given TID/RA pair.
656 */
657 int mwifiex_send_delba(struct mwifiex_private *priv, int tid, u8 *peer_mac,
658 int initiator)
659 {
660 struct host_cmd_ds_11n_delba delba;
661 int ret;
662 uint16_t del_ba_param_set;
663
664 memset(&delba, 0, sizeof(delba));
665 delba.del_ba_param_set = cpu_to_le16(tid << DELBA_TID_POS);
666
667 del_ba_param_set = le16_to_cpu(delba.del_ba_param_set);
668 if (initiator)
669 del_ba_param_set |= IEEE80211_DELBA_PARAM_INITIATOR_MASK;
670 else
671 del_ba_param_set &= ~IEEE80211_DELBA_PARAM_INITIATOR_MASK;
672
673 memcpy(&delba.peer_mac_addr, peer_mac, ETH_ALEN);
674
675 /* We don't wait for the response of this command */
676 ret = mwifiex_send_cmd(priv, HostCmd_CMD_11N_DELBA,
677 HostCmd_ACT_GEN_SET, 0, &delba, false);
678
679 return ret;
680 }
681
682 /*
683 * This function sends delba to specific tid
684 */
685 void mwifiex_11n_delba(struct mwifiex_private *priv, int tid)
686 {
687 struct mwifiex_rx_reorder_tbl *rx_reor_tbl_ptr;
688 unsigned long flags;
689
690 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
691 list_for_each_entry(rx_reor_tbl_ptr, &priv->rx_reorder_tbl_ptr, list) {
692 if (rx_reor_tbl_ptr->tid == tid) {
693 dev_dbg(priv->adapter->dev,
694 "Send delba to tid=%d, %pM\n",
695 tid, rx_reor_tbl_ptr->ta);
696 mwifiex_send_delba(priv, tid, rx_reor_tbl_ptr->ta, 0);
697 goto exit;
698 }
699 }
700 exit:
701 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
702 }
703
704 /*
705 * This function handles the command response of a delete BA request.
706 */
707 void mwifiex_11n_delete_ba_stream(struct mwifiex_private *priv, u8 *del_ba)
708 {
709 struct host_cmd_ds_11n_delba *cmd_del_ba =
710 (struct host_cmd_ds_11n_delba *) del_ba;
711 uint16_t del_ba_param_set = le16_to_cpu(cmd_del_ba->del_ba_param_set);
712 int tid;
713
714 tid = del_ba_param_set >> DELBA_TID_POS;
715
716 mwifiex_del_ba_tbl(priv, tid, cmd_del_ba->peer_mac_addr,
717 TYPE_DELBA_RECEIVE, INITIATOR_BIT(del_ba_param_set));
718 }
719
720 /*
721 * This function retrieves the Rx reordering table.
722 */
723 int mwifiex_get_rx_reorder_tbl(struct mwifiex_private *priv,
724 struct mwifiex_ds_rx_reorder_tbl *buf)
725 {
726 int i;
727 struct mwifiex_ds_rx_reorder_tbl *rx_reo_tbl = buf;
728 struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr;
729 int count = 0;
730 unsigned long flags;
731
732 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
733 list_for_each_entry(rx_reorder_tbl_ptr, &priv->rx_reorder_tbl_ptr,
734 list) {
735 rx_reo_tbl->tid = (u16) rx_reorder_tbl_ptr->tid;
736 memcpy(rx_reo_tbl->ta, rx_reorder_tbl_ptr->ta, ETH_ALEN);
737 rx_reo_tbl->start_win = rx_reorder_tbl_ptr->start_win;
738 rx_reo_tbl->win_size = rx_reorder_tbl_ptr->win_size;
739 for (i = 0; i < rx_reorder_tbl_ptr->win_size; ++i) {
740 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i])
741 rx_reo_tbl->buffer[i] = true;
742 else
743 rx_reo_tbl->buffer[i] = false;
744 }
745 rx_reo_tbl++;
746 count++;
747
748 if (count >= MWIFIEX_MAX_RX_BASTREAM_SUPPORTED)
749 break;
750 }
751 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
752
753 return count;
754 }
755
756 /*
757 * This function retrieves the Tx BA stream table.
758 */
759 int mwifiex_get_tx_ba_stream_tbl(struct mwifiex_private *priv,
760 struct mwifiex_ds_tx_ba_stream_tbl *buf)
761 {
762 struct mwifiex_tx_ba_stream_tbl *tx_ba_tsr_tbl;
763 struct mwifiex_ds_tx_ba_stream_tbl *rx_reo_tbl = buf;
764 int count = 0;
765 unsigned long flags;
766
767 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
768 list_for_each_entry(tx_ba_tsr_tbl, &priv->tx_ba_stream_tbl_ptr, list) {
769 rx_reo_tbl->tid = (u16) tx_ba_tsr_tbl->tid;
770 mwifiex_dbg(priv->adapter, DATA, "data: %s tid=%d\n",
771 __func__, rx_reo_tbl->tid);
772 memcpy(rx_reo_tbl->ra, tx_ba_tsr_tbl->ra, ETH_ALEN);
773 rx_reo_tbl->amsdu = tx_ba_tsr_tbl->amsdu;
774 rx_reo_tbl++;
775 count++;
776 if (count >= MWIFIEX_MAX_TX_BASTREAM_SUPPORTED)
777 break;
778 }
779 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
780
781 return count;
782 }
783
784 /*
785 * This function retrieves the entry for specific tx BA stream table by RA and
786 * deletes it.
787 */
788 void mwifiex_del_tx_ba_stream_tbl_by_ra(struct mwifiex_private *priv, u8 *ra)
789 {
790 struct mwifiex_tx_ba_stream_tbl *tbl, *tmp;
791 unsigned long flags;
792
793 if (!ra)
794 return;
795
796 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
797 list_for_each_entry_safe(tbl, tmp, &priv->tx_ba_stream_tbl_ptr, list)
798 if (!memcmp(tbl->ra, ra, ETH_ALEN))
799 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, tbl);
800 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
801
802 return;
803 }
804
805 /* This function initializes the BlockACK setup information for given
806 * mwifiex_private structure.
807 */
808 void mwifiex_set_ba_params(struct mwifiex_private *priv)
809 {
810 priv->add_ba_param.timeout = MWIFIEX_DEFAULT_BLOCK_ACK_TIMEOUT;
811
812 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
813 priv->add_ba_param.tx_win_size =
814 MWIFIEX_UAP_AMPDU_DEF_TXWINSIZE;
815 priv->add_ba_param.rx_win_size =
816 MWIFIEX_UAP_AMPDU_DEF_RXWINSIZE;
817 } else {
818 priv->add_ba_param.tx_win_size =
819 MWIFIEX_STA_AMPDU_DEF_TXWINSIZE;
820 priv->add_ba_param.rx_win_size =
821 MWIFIEX_STA_AMPDU_DEF_RXWINSIZE;
822 }
823
824 priv->add_ba_param.tx_amsdu = true;
825 priv->add_ba_param.rx_amsdu = true;
826
827 return;
828 }
829
830 u8 mwifiex_get_sec_chan_offset(int chan)
831 {
832 u8 sec_offset;
833
834 switch (chan) {
835 case 36:
836 case 44:
837 case 52:
838 case 60:
839 case 100:
840 case 108:
841 case 116:
842 case 124:
843 case 132:
844 case 140:
845 case 149:
846 case 157:
847 sec_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
848 break;
849 case 40:
850 case 48:
851 case 56:
852 case 64:
853 case 104:
854 case 112:
855 case 120:
856 case 128:
857 case 136:
858 case 144:
859 case 153:
860 case 161:
861 sec_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
862 break;
863 case 165:
864 default:
865 sec_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
866 break;
867 }
868
869 return sec_offset;
870 }
871
872 /* This function will send DELBA to entries in the priv's
873 * Tx BA stream table
874 */
875 static void
876 mwifiex_send_delba_txbastream_tbl(struct mwifiex_private *priv, u8 tid)
877 {
878 struct mwifiex_adapter *adapter = priv->adapter;
879 struct mwifiex_tx_ba_stream_tbl *tx_ba_stream_tbl_ptr;
880
881 list_for_each_entry(tx_ba_stream_tbl_ptr,
882 &priv->tx_ba_stream_tbl_ptr, list) {
883 if (tx_ba_stream_tbl_ptr->ba_status == BA_SETUP_COMPLETE) {
884 if (tid == tx_ba_stream_tbl_ptr->tid) {
885 dev_dbg(adapter->dev,
886 "Tx:Send delba to tid=%d, %pM\n", tid,
887 tx_ba_stream_tbl_ptr->ra);
888 mwifiex_send_delba(priv,
889 tx_ba_stream_tbl_ptr->tid,
890 tx_ba_stream_tbl_ptr->ra, 1);
891 return;
892 }
893 }
894 }
895 }
896
897 /* This function updates all the tx_win_size
898 */
899 void mwifiex_update_ampdu_txwinsize(struct mwifiex_adapter *adapter)
900 {
901 u8 i;
902 u32 tx_win_size;
903 struct mwifiex_private *priv;
904
905 for (i = 0; i < adapter->priv_num; i++) {
906 if (!adapter->priv[i])
907 continue;
908 priv = adapter->priv[i];
909 tx_win_size = priv->add_ba_param.tx_win_size;
910
911 if (priv->bss_type == MWIFIEX_BSS_TYPE_STA)
912 priv->add_ba_param.tx_win_size =
913 MWIFIEX_STA_AMPDU_DEF_TXWINSIZE;
914
915 if (priv->bss_type == MWIFIEX_BSS_TYPE_P2P)
916 priv->add_ba_param.tx_win_size =
917 MWIFIEX_STA_AMPDU_DEF_TXWINSIZE;
918
919 if (priv->bss_type == MWIFIEX_BSS_TYPE_UAP)
920 priv->add_ba_param.tx_win_size =
921 MWIFIEX_UAP_AMPDU_DEF_TXWINSIZE;
922
923 if (adapter->coex_win_size) {
924 if (adapter->coex_tx_win_size)
925 priv->add_ba_param.tx_win_size =
926 adapter->coex_tx_win_size;
927 }
928
929 if (tx_win_size != priv->add_ba_param.tx_win_size) {
930 if (!priv->media_connected)
931 continue;
932 for (i = 0; i < MAX_NUM_TID; i++)
933 mwifiex_send_delba_txbastream_tbl(priv, i);
934 }
935 }
936 }