wireless: Remove casts to same type
[deliverable/linux.git] / drivers / net / wireless / mwifiex / 11n_rxreorder.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: 802.11n RX Re-ordering
3 *
4 * Copyright (C) 2011, 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#include "11n_rxreorder.h"
28
5e6e3a92 29/*
8c00228e
YAP
30 * This function dispatches all packets in the Rx reorder table until the
31 * start window.
5e6e3a92
BZ
32 *
33 * There could be holes in the buffer, which are skipped by the function.
34 * Since the buffer is linear, the function uses rotation to simulate
35 * circular buffer.
36 */
ab581472 37static void
8c00228e
YAP
38mwifiex_11n_dispatch_pkt(struct mwifiex_private *priv,
39 struct mwifiex_rx_reorder_tbl *tbl, int start_win)
5e6e3a92 40{
8c00228e 41 int pkt_to_send, i;
270e58e8 42 void *rx_tmp_ptr;
5e6e3a92
BZ
43 unsigned long flags;
44
8c00228e
YAP
45 pkt_to_send = (start_win > tbl->start_win) ?
46 min((start_win - tbl->start_win), tbl->win_size) :
47 tbl->win_size;
5e6e3a92 48
8c00228e 49 for (i = 0; i < pkt_to_send; ++i) {
5e6e3a92
BZ
50 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
51 rx_tmp_ptr = NULL;
8c00228e
YAP
52 if (tbl->rx_reorder_ptr[i]) {
53 rx_tmp_ptr = tbl->rx_reorder_ptr[i];
54 tbl->rx_reorder_ptr[i] = NULL;
5e6e3a92
BZ
55 }
56 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
57 if (rx_tmp_ptr)
636c4598 58 mwifiex_process_rx_packet(priv->adapter, rx_tmp_ptr);
5e6e3a92
BZ
59 }
60
61 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
62 /*
63 * We don't have a circular buffer, hence use rotation to simulate
64 * circular buffer
65 */
8c00228e
YAP
66 for (i = 0; i < tbl->win_size - pkt_to_send; ++i) {
67 tbl->rx_reorder_ptr[i] = tbl->rx_reorder_ptr[pkt_to_send + i];
68 tbl->rx_reorder_ptr[pkt_to_send + i] = NULL;
5e6e3a92
BZ
69 }
70
8c00228e 71 tbl->start_win = start_win;
5e6e3a92 72 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
5e6e3a92
BZ
73}
74
75/*
76 * This function dispatches all packets in the Rx reorder table until
77 * a hole is found.
78 *
79 * The start window is adjusted automatically when a hole is located.
80 * Since the buffer is linear, the function uses rotation to simulate
81 * circular buffer.
82 */
ab581472 83static void
5e6e3a92 84mwifiex_11n_scan_and_dispatch(struct mwifiex_private *priv,
8c00228e 85 struct mwifiex_rx_reorder_tbl *tbl)
5e6e3a92
BZ
86{
87 int i, j, xchg;
270e58e8 88 void *rx_tmp_ptr;
5e6e3a92
BZ
89 unsigned long flags;
90
8c00228e 91 for (i = 0; i < tbl->win_size; ++i) {
5e6e3a92 92 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
8c00228e 93 if (!tbl->rx_reorder_ptr[i]) {
5e6e3a92
BZ
94 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
95 break;
96 }
8c00228e
YAP
97 rx_tmp_ptr = tbl->rx_reorder_ptr[i];
98 tbl->rx_reorder_ptr[i] = NULL;
5e6e3a92 99 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
636c4598 100 mwifiex_process_rx_packet(priv->adapter, rx_tmp_ptr);
5e6e3a92
BZ
101 }
102
103 spin_lock_irqsave(&priv->rx_pkt_lock, flags);
104 /*
105 * We don't have a circular buffer, hence use rotation to simulate
106 * circular buffer
107 */
108 if (i > 0) {
8c00228e 109 xchg = tbl->win_size - i;
5e6e3a92 110 for (j = 0; j < xchg; ++j) {
8c00228e
YAP
111 tbl->rx_reorder_ptr[j] = tbl->rx_reorder_ptr[i + j];
112 tbl->rx_reorder_ptr[i + j] = NULL;
5e6e3a92
BZ
113 }
114 }
8c00228e 115 tbl->start_win = (tbl->start_win + i) & (MAX_TID_VALUE - 1);
5e6e3a92 116 spin_unlock_irqrestore(&priv->rx_pkt_lock, flags);
5e6e3a92
BZ
117}
118
119/*
120 * This function deletes the Rx reorder table and frees the memory.
121 *
122 * The function stops the associated timer and dispatches all the
123 * pending packets in the Rx reorder table before deletion.
124 */
125static void
8c00228e
YAP
126mwifiex_del_rx_reorder_entry(struct mwifiex_private *priv,
127 struct mwifiex_rx_reorder_tbl *tbl)
5e6e3a92
BZ
128{
129 unsigned long flags;
130
8c00228e 131 if (!tbl)
5e6e3a92
BZ
132 return;
133
8c00228e
YAP
134 mwifiex_11n_dispatch_pkt(priv, tbl, (tbl->start_win + tbl->win_size) &
135 (MAX_TID_VALUE - 1));
5e6e3a92 136
8c00228e 137 del_timer(&tbl->timer_context.timer);
5e6e3a92
BZ
138
139 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
8c00228e 140 list_del(&tbl->list);
5e6e3a92
BZ
141 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
142
8c00228e
YAP
143 kfree(tbl->rx_reorder_ptr);
144 kfree(tbl);
5e6e3a92
BZ
145}
146
147/*
148 * This function returns the pointer to an entry in Rx reordering
149 * table which matches the given TA/TID pair.
150 */
151static struct mwifiex_rx_reorder_tbl *
152mwifiex_11n_get_rx_reorder_tbl(struct mwifiex_private *priv, int tid, u8 *ta)
153{
8c00228e 154 struct mwifiex_rx_reorder_tbl *tbl;
5e6e3a92
BZ
155 unsigned long flags;
156
157 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
8c00228e
YAP
158 list_for_each_entry(tbl, &priv->rx_reorder_tbl_ptr, list) {
159 if (!memcmp(tbl->ta, ta, ETH_ALEN) && tbl->tid == tid) {
5e6e3a92
BZ
160 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock,
161 flags);
8c00228e 162 return tbl;
5e6e3a92
BZ
163 }
164 }
165 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
166
167 return NULL;
168}
169
170/*
171 * This function finds the last sequence number used in the packets
172 * buffered in Rx reordering table.
173 */
174static int
175mwifiex_11n_find_last_seq_num(struct mwifiex_rx_reorder_tbl *rx_reorder_tbl_ptr)
176{
177 int i;
178
179 for (i = (rx_reorder_tbl_ptr->win_size - 1); i >= 0; --i)
180 if (rx_reorder_tbl_ptr->rx_reorder_ptr[i])
181 return i;
182
183 return -1;
184}
185
186/*
187 * This function flushes all the packets in Rx reordering table.
188 *
189 * The function checks if any packets are currently buffered in the
190 * table or not. In case there are packets available, it dispatches
191 * them and then dumps the Rx reordering table.
192 */
193static void
194mwifiex_flush_data(unsigned long context)
195{
8c00228e 196 struct reorder_tmr_cnxt *ctx =
5e6e3a92
BZ
197 (struct reorder_tmr_cnxt *) context;
198 int start_win;
199
8c00228e 200 start_win = mwifiex_11n_find_last_seq_num(ctx->ptr);
bb7de2ba
YAP
201
202 if (start_win < 0)
203 return;
204
8c00228e
YAP
205 dev_dbg(ctx->priv->adapter->dev, "info: flush data %d\n", start_win);
206 mwifiex_11n_dispatch_pkt(ctx->priv, ctx->ptr,
207 (ctx->ptr->start_win + start_win + 1) &
208 (MAX_TID_VALUE - 1));
5e6e3a92
BZ
209}
210
211/*
212 * This function creates an entry in Rx reordering table for the
213 * given TA/TID.
214 *
215 * The function also initializes the entry with sequence number, window
216 * size as well as initializes the timer.
217 *
218 * If the received TA/TID pair is already present, all the packets are
219 * dispatched and the window size is moved until the SSN.
220 */
221static void
222mwifiex_11n_create_rx_reorder_tbl(struct mwifiex_private *priv, u8 *ta,
84266841 223 int tid, int win_size, int seq_num)
5e6e3a92
BZ
224{
225 int i;
8c00228e 226 struct mwifiex_rx_reorder_tbl *tbl, *new_node;
5e6e3a92
BZ
227 u16 last_seq = 0;
228 unsigned long flags;
229
230 /*
231 * If we get a TID, ta pair which is already present dispatch all the
232 * the packets and move the window size until the ssn
233 */
8c00228e
YAP
234 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid, ta);
235 if (tbl) {
236 mwifiex_11n_dispatch_pkt(priv, tbl, seq_num);
5e6e3a92
BZ
237 return;
238 }
8c00228e 239 /* if !tbl then create one */
5e6e3a92
BZ
240 new_node = kzalloc(sizeof(struct mwifiex_rx_reorder_tbl), GFP_KERNEL);
241 if (!new_node) {
242 dev_err(priv->adapter->dev, "%s: failed to alloc new_node\n",
84266841 243 __func__);
5e6e3a92
BZ
244 return;
245 }
246
247 INIT_LIST_HEAD(&new_node->list);
248 new_node->tid = tid;
249 memcpy(new_node->ta, ta, ETH_ALEN);
250 new_node->start_win = seq_num;
251 if (mwifiex_queuing_ra_based(priv))
252 /* TODO for adhoc */
253 dev_dbg(priv->adapter->dev,
254 "info: ADHOC:last_seq=%d start_win=%d\n",
255 last_seq, new_node->start_win);
256 else
257 last_seq = priv->rx_seq[tid];
258
259 if (last_seq >= new_node->start_win)
260 new_node->start_win = last_seq + 1;
261
262 new_node->win_size = win_size;
263
264 new_node->rx_reorder_ptr = kzalloc(sizeof(void *) * win_size,
265 GFP_KERNEL);
266 if (!new_node->rx_reorder_ptr) {
267 kfree((u8 *) new_node);
268 dev_err(priv->adapter->dev,
269 "%s: failed to alloc reorder_ptr\n", __func__);
270 return;
271 }
272
273 new_node->timer_context.ptr = new_node;
274 new_node->timer_context.priv = priv;
275
276 init_timer(&new_node->timer_context.timer);
277 new_node->timer_context.timer.function = mwifiex_flush_data;
278 new_node->timer_context.timer.data =
279 (unsigned long) &new_node->timer_context;
280
281 for (i = 0; i < win_size; ++i)
282 new_node->rx_reorder_ptr[i] = NULL;
283
284 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
285 list_add_tail(&new_node->list, &priv->rx_reorder_tbl_ptr);
286 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
5e6e3a92
BZ
287}
288
289/*
290 * This function prepares command for adding a BA request.
291 *
292 * Preparation includes -
293 * - Setting command ID and proper size
294 * - Setting add BA request buffer
295 * - Ensuring correct endian-ness
296 */
572e8f3e 297int mwifiex_cmd_11n_addba_req(struct host_cmd_ds_command *cmd, void *data_buf)
5e6e3a92 298{
2c208890 299 struct host_cmd_ds_11n_addba_req *add_ba_req = &cmd->params.add_ba_req;
5e6e3a92
BZ
300
301 cmd->command = cpu_to_le16(HostCmd_CMD_11N_ADDBA_REQ);
302 cmd->size = cpu_to_le16(sizeof(*add_ba_req) + S_DS_GEN);
303 memcpy(add_ba_req, data_buf, sizeof(*add_ba_req));
304
305 return 0;
306}
307
308/*
309 * This function prepares command for adding a BA response.
310 *
311 * Preparation includes -
312 * - Setting command ID and proper size
313 * - Setting add BA response buffer
314 * - Ensuring correct endian-ness
315 */
316int mwifiex_cmd_11n_addba_rsp_gen(struct mwifiex_private *priv,
317 struct host_cmd_ds_command *cmd,
a5ffddb7
AK
318 struct host_cmd_ds_11n_addba_req
319 *cmd_addba_req)
5e6e3a92 320{
2c208890 321 struct host_cmd_ds_11n_addba_rsp *add_ba_rsp = &cmd->params.add_ba_rsp;
270e58e8
YAP
322 u8 tid;
323 int win_size;
5e6e3a92
BZ
324 uint16_t block_ack_param_set;
325
326 cmd->command = cpu_to_le16(HostCmd_CMD_11N_ADDBA_RSP);
327 cmd->size = cpu_to_le16(sizeof(*add_ba_rsp) + S_DS_GEN);
328
329 memcpy(add_ba_rsp->peer_mac_addr, cmd_addba_req->peer_mac_addr,
330 ETH_ALEN);
331 add_ba_rsp->dialog_token = cmd_addba_req->dialog_token;
332 add_ba_rsp->block_ack_tmo = cmd_addba_req->block_ack_tmo;
333 add_ba_rsp->ssn = cmd_addba_req->ssn;
334
335 block_ack_param_set = le16_to_cpu(cmd_addba_req->block_ack_param_set);
336 tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
337 >> BLOCKACKPARAM_TID_POS;
338 add_ba_rsp->status_code = cpu_to_le16(ADDBA_RSP_STATUS_ACCEPT);
339 block_ack_param_set &= ~IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK;
340 /* We donot support AMSDU inside AMPDU, hence reset the bit */
341 block_ack_param_set &= ~BLOCKACKPARAM_AMSDU_SUPP_MASK;
342 block_ack_param_set |= (priv->add_ba_param.rx_win_size <<
343 BLOCKACKPARAM_WINSIZE_POS);
344 add_ba_rsp->block_ack_param_set = cpu_to_le16(block_ack_param_set);
345 win_size = (le16_to_cpu(add_ba_rsp->block_ack_param_set)
346 & IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK)
347 >> BLOCKACKPARAM_WINSIZE_POS;
348 cmd_addba_req->block_ack_param_set = cpu_to_le16(block_ack_param_set);
349
350 mwifiex_11n_create_rx_reorder_tbl(priv, cmd_addba_req->peer_mac_addr,
84266841
YAP
351 tid, win_size,
352 le16_to_cpu(cmd_addba_req->ssn));
5e6e3a92
BZ
353 return 0;
354}
355
356/*
357 * This function prepares command for deleting a BA request.
358 *
359 * Preparation includes -
360 * - Setting command ID and proper size
361 * - Setting del BA request buffer
362 * - Ensuring correct endian-ness
363 */
572e8f3e 364int mwifiex_cmd_11n_delba(struct host_cmd_ds_command *cmd, void *data_buf)
5e6e3a92 365{
2c208890 366 struct host_cmd_ds_11n_delba *del_ba = &cmd->params.del_ba;
5e6e3a92
BZ
367
368 cmd->command = cpu_to_le16(HostCmd_CMD_11N_DELBA);
369 cmd->size = cpu_to_le16(sizeof(*del_ba) + S_DS_GEN);
370 memcpy(del_ba, data_buf, sizeof(*del_ba));
371
372 return 0;
373}
374
375/*
376 * This function identifies if Rx reordering is needed for a received packet.
377 *
378 * In case reordering is required, the function will do the reordering
379 * before sending it to kernel.
380 *
381 * The Rx reorder table is checked first with the received TID/TA pair. If
382 * not found, the received packet is dispatched immediately. But if found,
383 * the packet is reordered and all the packets in the updated Rx reordering
384 * table is dispatched until a hole is found.
385 *
386 * For sequence number less than the starting window, the packet is dropped.
387 */
388int mwifiex_11n_rx_reorder_pkt(struct mwifiex_private *priv,
389 u16 seq_num, u16 tid,
390 u8 *ta, u8 pkt_type, void *payload)
391{
8c00228e 392 struct mwifiex_rx_reorder_tbl *tbl;
ab581472 393 int start_win, end_win, win_size;
270e58e8 394 u16 pkt_index;
5e6e3a92 395
2c208890 396 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid, ta);
8c00228e 397 if (!tbl) {
5e6e3a92 398 if (pkt_type != PKT_TYPE_BAR)
636c4598 399 mwifiex_process_rx_packet(priv->adapter, payload);
5e6e3a92
BZ
400 return 0;
401 }
8c00228e
YAP
402 start_win = tbl->start_win;
403 win_size = tbl->win_size;
5e6e3a92 404 end_win = ((start_win + win_size) - 1) & (MAX_TID_VALUE - 1);
8c00228e
YAP
405 del_timer(&tbl->timer_context.timer);
406 mod_timer(&tbl->timer_context.timer,
407 jiffies + (MIN_FLUSH_TIMER_MS * win_size * HZ) / 1000);
5e6e3a92
BZ
408
409 /*
410 * If seq_num is less then starting win then ignore and drop the
411 * packet
412 */
413 if ((start_win + TWOPOW11) > (MAX_TID_VALUE - 1)) {/* Wrap */
84266841
YAP
414 if (seq_num >= ((start_win + TWOPOW11) &
415 (MAX_TID_VALUE - 1)) && (seq_num < start_win))
5e6e3a92 416 return -1;
84266841
YAP
417 } else if ((seq_num < start_win) ||
418 (seq_num > (start_win + TWOPOW11))) {
5e6e3a92
BZ
419 return -1;
420 }
421
422 /*
423 * If this packet is a BAR we adjust seq_num as
424 * WinStart = seq_num
425 */
426 if (pkt_type == PKT_TYPE_BAR)
427 seq_num = ((seq_num + win_size) - 1) & (MAX_TID_VALUE - 1);
428
84266841
YAP
429 if (((end_win < start_win) &&
430 (seq_num < (TWOPOW11 - (MAX_TID_VALUE - start_win))) &&
431 (seq_num > end_win)) ||
432 ((end_win > start_win) && ((seq_num > end_win) ||
433 (seq_num < start_win)))) {
5e6e3a92
BZ
434 end_win = seq_num;
435 if (((seq_num - win_size) + 1) >= 0)
436 start_win = (end_win - win_size) + 1;
437 else
438 start_win = (MAX_TID_VALUE - (win_size - seq_num)) + 1;
8c00228e 439 mwifiex_11n_dispatch_pkt(priv, tbl, start_win);
5e6e3a92
BZ
440 }
441
442 if (pkt_type != PKT_TYPE_BAR) {
443 if (seq_num >= start_win)
444 pkt_index = seq_num - start_win;
445 else
446 pkt_index = (seq_num+MAX_TID_VALUE) - start_win;
447
8c00228e 448 if (tbl->rx_reorder_ptr[pkt_index])
5e6e3a92
BZ
449 return -1;
450
8c00228e 451 tbl->rx_reorder_ptr[pkt_index] = payload;
5e6e3a92
BZ
452 }
453
454 /*
455 * Dispatch all packets sequentially from start_win until a
456 * hole is found and adjust the start_win appropriately
457 */
8c00228e 458 mwifiex_11n_scan_and_dispatch(priv, tbl);
5e6e3a92 459
ab581472 460 return 0;
5e6e3a92
BZ
461}
462
463/*
464 * This function deletes an entry for a given TID/TA pair.
465 *
466 * The TID/TA are taken from del BA event body.
467 */
468void
3e822635
YAP
469mwifiex_del_ba_tbl(struct mwifiex_private *priv, int tid, u8 *peer_mac,
470 u8 type, int initiator)
5e6e3a92 471{
8c00228e 472 struct mwifiex_rx_reorder_tbl *tbl;
5e6e3a92
BZ
473 struct mwifiex_tx_ba_stream_tbl *ptx_tbl;
474 u8 cleanup_rx_reorder_tbl;
475 unsigned long flags;
476
477 if (type == TYPE_DELBA_RECEIVE)
478 cleanup_rx_reorder_tbl = (initiator) ? true : false;
479 else
480 cleanup_rx_reorder_tbl = (initiator) ? false : true;
481
84266841
YAP
482 dev_dbg(priv->adapter->dev, "event: DELBA: %pM tid=%d initiator=%d\n",
483 peer_mac, tid, initiator);
5e6e3a92
BZ
484
485 if (cleanup_rx_reorder_tbl) {
8c00228e 486 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid,
5e6e3a92 487 peer_mac);
8c00228e 488 if (!tbl) {
5e6e3a92 489 dev_dbg(priv->adapter->dev,
84266841 490 "event: TID, TA not found in table\n");
5e6e3a92
BZ
491 return;
492 }
8c00228e 493 mwifiex_del_rx_reorder_entry(priv, tbl);
5e6e3a92 494 } else {
3e822635 495 ptx_tbl = mwifiex_get_ba_tbl(priv, tid, peer_mac);
5e6e3a92
BZ
496 if (!ptx_tbl) {
497 dev_dbg(priv->adapter->dev,
84266841 498 "event: TID, RA not found in table\n");
5e6e3a92
BZ
499 return;
500 }
501
502 spin_lock_irqsave(&priv->tx_ba_stream_tbl_lock, flags);
503 mwifiex_11n_delete_tx_ba_stream_tbl_entry(priv, ptx_tbl);
504 spin_unlock_irqrestore(&priv->tx_ba_stream_tbl_lock, flags);
505 }
506}
507
508/*
509 * This function handles the command response of an add BA response.
510 *
511 * Handling includes changing the header fields into CPU format and
512 * creating the stream, provided the add BA is accepted.
513 */
514int mwifiex_ret_11n_addba_resp(struct mwifiex_private *priv,
515 struct host_cmd_ds_command *resp)
516{
2c208890 517 struct host_cmd_ds_11n_addba_rsp *add_ba_rsp = &resp->params.add_ba_rsp;
5e6e3a92 518 int tid, win_size;
8c00228e 519 struct mwifiex_rx_reorder_tbl *tbl;
5e6e3a92
BZ
520 uint16_t block_ack_param_set;
521
522 block_ack_param_set = le16_to_cpu(add_ba_rsp->block_ack_param_set);
523
524 tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK)
525 >> BLOCKACKPARAM_TID_POS;
526 /*
527 * Check if we had rejected the ADDBA, if yes then do not create
528 * the stream
529 */
530 if (le16_to_cpu(add_ba_rsp->status_code) == BA_RESULT_SUCCESS) {
531 win_size = (block_ack_param_set &
532 IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK)
533 >> BLOCKACKPARAM_WINSIZE_POS;
534
84266841
YAP
535 dev_dbg(priv->adapter->dev,
536 "cmd: ADDBA RSP: %pM tid=%d ssn=%d win_size=%d\n",
537 add_ba_rsp->peer_mac_addr, tid,
538 add_ba_rsp->ssn, win_size);
5e6e3a92
BZ
539 } else {
540 dev_err(priv->adapter->dev, "ADDBA RSP: failed %pM tid=%d)\n",
84266841 541 add_ba_rsp->peer_mac_addr, tid);
5e6e3a92 542
8c00228e
YAP
543 tbl = mwifiex_11n_get_rx_reorder_tbl(priv, tid,
544 add_ba_rsp->peer_mac_addr);
545 if (tbl)
546 mwifiex_del_rx_reorder_entry(priv, tbl);
5e6e3a92
BZ
547 }
548
549 return 0;
550}
551
552/*
553 * This function handles BA stream timeout event by preparing and sending
554 * a command to the firmware.
555 */
556void mwifiex_11n_ba_stream_timeout(struct mwifiex_private *priv,
557 struct host_cmd_ds_11n_batimeout *event)
558{
559 struct host_cmd_ds_11n_delba delba;
560
561 memset(&delba, 0, sizeof(struct host_cmd_ds_11n_delba));
562 memcpy(delba.peer_mac_addr, event->peer_mac_addr, ETH_ALEN);
563
564 delba.del_ba_param_set |=
565 cpu_to_le16((u16) event->tid << DELBA_TID_POS);
566 delba.del_ba_param_set |= cpu_to_le16(
567 (u16) event->origninator << DELBA_INITIATOR_POS);
568 delba.reason_code = cpu_to_le16(WLAN_REASON_QSTA_TIMEOUT);
600f5d90 569 mwifiex_send_cmd_async(priv, HostCmd_CMD_11N_DELBA, 0, 0, &delba);
5e6e3a92
BZ
570}
571
572/*
573 * This function cleans up the Rx reorder table by deleting all the entries
574 * and re-initializing.
575 */
576void mwifiex_11n_cleanup_reorder_tbl(struct mwifiex_private *priv)
577{
578 struct mwifiex_rx_reorder_tbl *del_tbl_ptr, *tmp_node;
579 unsigned long flags;
580
581 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
582 list_for_each_entry_safe(del_tbl_ptr, tmp_node,
583 &priv->rx_reorder_tbl_ptr, list) {
584 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
8c00228e 585 mwifiex_del_rx_reorder_entry(priv, del_tbl_ptr);
5e6e3a92
BZ
586 spin_lock_irqsave(&priv->rx_reorder_tbl_lock, flags);
587 }
588 spin_unlock_irqrestore(&priv->rx_reorder_tbl_lock, flags);
589
590 INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr);
591 memset(priv->rx_seq, 0, sizeof(priv->rx_seq));
592}
This page took 0.248959 seconds and 5 git commands to generate.