mwifiex: fix IBSS data path issue.
[deliverable/linux.git] / drivers / net / wireless / marvell / mwifiex / wmm.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: WMM
3 *
65da33f5 4 * Copyright (C) 2011-2014, Marvell International Ltd.
5e6e3a92
BZ
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/* Maximum value FW can accept for driver delay in packet transmission */
30#define DRV_PKT_DELAY_TO_FW_MAX 512
31
32
33#define WMM_QUEUED_PACKET_LOWER_LIMIT 180
34
35#define WMM_QUEUED_PACKET_UPPER_LIMIT 200
36
37/* Offset for TOS field in the IP header */
38#define IPTOS_OFFSET 5
39
4c9f9fb2
AK
40static bool disable_tx_amsdu;
41module_param(disable_tx_amsdu, bool, 0644);
c9e2404c 42
5e6e3a92
BZ
43/* WMM information IE */
44static const u8 wmm_info_ie[] = { WLAN_EID_VENDOR_SPECIFIC, 0x07,
45 0x00, 0x50, 0xf2, 0x02,
46 0x00, 0x01, 0x00
47};
48
49static const u8 wmm_aci_to_qidx_map[] = { WMM_AC_BE,
50 WMM_AC_BK,
51 WMM_AC_VI,
52 WMM_AC_VO
53};
54
55static u8 tos_to_tid[] = {
56 /* TID DSCP_P2 DSCP_P1 DSCP_P0 WMM_AC */
57 0x01, /* 0 1 0 AC_BK */
58 0x02, /* 0 0 0 AC_BK */
59 0x00, /* 0 0 1 AC_BE */
60 0x03, /* 0 1 1 AC_BE */
61 0x04, /* 1 0 0 AC_VI */
62 0x05, /* 1 0 1 AC_VI */
63 0x06, /* 1 1 0 AC_VO */
64 0x07 /* 1 1 1 AC_VO */
65};
66
5e6e3a92
BZ
67static u8 ac_to_tid[4][2] = { {1, 2}, {0, 3}, {4, 5}, {6, 7} };
68
69/*
70 * This function debug prints the priority parameters for a WMM AC.
71 */
72static void
73mwifiex_wmm_ac_debug_print(const struct ieee_types_wmm_ac_parameters *ac_param)
74{
75 const char *ac_str[] = { "BK", "BE", "VI", "VO" };
76
77 pr_debug("info: WMM AC_%s: ACI=%d, ACM=%d, Aifsn=%d, "
c65a30f3
YAP
78 "EcwMin=%d, EcwMax=%d, TxopLimit=%d\n",
79 ac_str[wmm_aci_to_qidx_map[(ac_param->aci_aifsn_bitmap
80 & MWIFIEX_ACI) >> 5]],
81 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACI) >> 5,
82 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACM) >> 4,
83 ac_param->aci_aifsn_bitmap & MWIFIEX_AIFSN,
84 ac_param->ecw_bitmap & MWIFIEX_ECW_MIN,
85 (ac_param->ecw_bitmap & MWIFIEX_ECW_MAX) >> 4,
86 le16_to_cpu(ac_param->tx_op_limit));
5e6e3a92
BZ
87}
88
89/*
90 * This function allocates a route address list.
91 *
92 * The function also initializes the list with the provided RA.
93 */
94static struct mwifiex_ra_list_tbl *
3b3a0162 95mwifiex_wmm_allocate_ralist_node(struct mwifiex_adapter *adapter, const u8 *ra)
5e6e3a92
BZ
96{
97 struct mwifiex_ra_list_tbl *ra_list;
98
99 ra_list = kzalloc(sizeof(struct mwifiex_ra_list_tbl), GFP_ATOMIC);
0d2e7a5c 100 if (!ra_list)
5e6e3a92 101 return NULL;
0d2e7a5c 102
5e6e3a92
BZ
103 INIT_LIST_HEAD(&ra_list->list);
104 skb_queue_head_init(&ra_list->skb_head);
105
106 memcpy(ra_list->ra, ra, ETH_ALEN);
107
c7d9ed9e 108 ra_list->total_pkt_count = 0;
5e6e3a92 109
acebe8c1 110 mwifiex_dbg(adapter, INFO, "info: allocated ra_list %p\n", ra_list);
5e6e3a92
BZ
111
112 return ra_list;
113}
114
5a009adf
AP
115/* This function returns random no between 16 and 32 to be used as threshold
116 * for no of packets after which BA setup is initiated.
117 */
118static u8 mwifiex_get_random_ba_threshold(void)
119{
52f4f918 120 u64 ns;
5a009adf
AP
121 /* setup ba_packet_threshold here random number between
122 * [BA_SETUP_PACKET_OFFSET,
123 * BA_SETUP_PACKET_OFFSET+BA_SETUP_MAX_PACKET_THRESHOLD-1]
124 */
52f4f918
AB
125 ns = ktime_get_ns();
126 ns += (ns >> 32) + (ns >> 16);
5a009adf 127
52f4f918 128 return ((u8)ns % BA_SETUP_MAX_PACKET_THRESHOLD) + BA_SETUP_PACKET_OFFSET;
5a009adf
AP
129}
130
5e6e3a92
BZ
131/*
132 * This function allocates and adds a RA list for all TIDs
133 * with the given RA.
134 */
3b3a0162 135void mwifiex_ralist_add(struct mwifiex_private *priv, const u8 *ra)
5e6e3a92
BZ
136{
137 int i;
138 struct mwifiex_ra_list_tbl *ra_list;
139 struct mwifiex_adapter *adapter = priv->adapter;
5a009adf
AP
140 struct mwifiex_sta_node *node;
141 unsigned long flags;
142
5e6e3a92
BZ
143
144 for (i = 0; i < MAX_NUM_TID; ++i) {
145 ra_list = mwifiex_wmm_allocate_ralist_node(adapter, ra);
acebe8c1
ZL
146 mwifiex_dbg(adapter, INFO,
147 "info: created ra_list %p\n", ra_list);
5e6e3a92
BZ
148
149 if (!ra_list)
150 break;
151
5a009adf 152 ra_list->is_11n_enabled = 0;
daeb5bb4 153 ra_list->tdls_link = false;
39df5e82
ZL
154 ra_list->ba_status = BA_SETUP_NONE;
155 ra_list->amsdu_in_ampdu = false;
5a009adf 156 if (!mwifiex_queuing_ra_based(priv)) {
55a2c077
XH
157 if (mwifiex_is_tdls_link_setup
158 (mwifiex_get_tdls_link_status(priv, ra))) {
a983e48b 159 ra_list->tdls_link = true;
daeb5bb4
AP
160 ra_list->is_11n_enabled =
161 mwifiex_tdls_peer_11n_enabled(priv, ra);
162 } else {
163 ra_list->is_11n_enabled = IS_11N_ENABLED(priv);
164 }
5a009adf 165 } else {
c11fb985
AP
166 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
167 node = mwifiex_get_sta_entry(priv, ra);
70c5ad7e
ZL
168 if (node)
169 ra_list->tx_paused = node->tx_pause;
5a009adf
AP
170 ra_list->is_11n_enabled =
171 mwifiex_is_sta_11n_enabled(priv, node);
172 if (ra_list->is_11n_enabled)
173 ra_list->max_amsdu = node->max_amsdu;
c11fb985 174 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
5a009adf 175 }
5e6e3a92 176
acebe8c1
ZL
177 mwifiex_dbg(adapter, DATA, "data: ralist %p: is_11n_enabled=%d\n",
178 ra_list, ra_list->is_11n_enabled);
5e6e3a92 179
5a009adf 180 if (ra_list->is_11n_enabled) {
f0cb84f8 181 ra_list->ba_pkt_count = 0;
5a009adf
AP
182 ra_list->ba_packet_thr =
183 mwifiex_get_random_ba_threshold();
184 }
5e6e3a92 185 list_add_tail(&ra_list->list,
c65a30f3 186 &priv->wmm.tid_tbl_ptr[i].ra_list);
5e6e3a92
BZ
187 }
188}
189
190/*
191 * This function sets the WMM queue priorities to their default values.
192 */
193static void mwifiex_wmm_default_queue_priorities(struct mwifiex_private *priv)
194{
195 /* Default queue priorities: VO->VI->BE->BK */
196 priv->wmm.queue_priority[0] = WMM_AC_VO;
197 priv->wmm.queue_priority[1] = WMM_AC_VI;
198 priv->wmm.queue_priority[2] = WMM_AC_BE;
199 priv->wmm.queue_priority[3] = WMM_AC_BK;
200}
201
202/*
203 * This function map ACs to TIDs.
204 */
205static void
41a24a29 206mwifiex_wmm_queue_priorities_tid(struct mwifiex_private *priv)
5e6e3a92 207{
41a24a29 208 struct mwifiex_wmm_desc *wmm = &priv->wmm;
49729ff6 209 u8 *queue_priority = wmm->queue_priority;
5e6e3a92
BZ
210 int i;
211
212 for (i = 0; i < 4; ++i) {
213 tos_to_tid[7 - (i * 2)] = ac_to_tid[queue_priority[i]][1];
214 tos_to_tid[6 - (i * 2)] = ac_to_tid[queue_priority[i]][0];
215 }
49729ff6
MY
216
217 for (i = 0; i < MAX_NUM_TID; ++i)
41a24a29 218 priv->tos_to_tid_inv[tos_to_tid[i]] = (u8)i;
49729ff6
MY
219
220 atomic_set(&wmm->highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
221}
222
223/*
224 * This function initializes WMM priority queues.
225 */
226void
227mwifiex_wmm_setup_queue_priorities(struct mwifiex_private *priv,
228 struct ieee_types_wmm_parameter *wmm_ie)
229{
230 u16 cw_min, avg_back_off, tmp[4];
231 u32 i, j, num_ac;
232 u8 ac_idx;
233
234 if (!wmm_ie || !priv->wmm_enabled) {
235 /* WMM is not enabled, just set the defaults and return */
236 mwifiex_wmm_default_queue_priorities(priv);
237 return;
238 }
239
acebe8c1
ZL
240 mwifiex_dbg(priv->adapter, INFO,
241 "info: WMM Parameter IE: version=%d,\t"
242 "qos_info Parameter Set Count=%d, Reserved=%#x\n",
243 wmm_ie->vend_hdr.version, wmm_ie->qos_info_bitmap &
244 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK,
245 wmm_ie->reserved);
5e6e3a92
BZ
246
247 for (num_ac = 0; num_ac < ARRAY_SIZE(wmm_ie->ac_params); num_ac++) {
c65a30f3
YAP
248 u8 ecw = wmm_ie->ac_params[num_ac].ecw_bitmap;
249 u8 aci_aifsn = wmm_ie->ac_params[num_ac].aci_aifsn_bitmap;
250 cw_min = (1 << (ecw & MWIFIEX_ECW_MIN)) - 1;
251 avg_back_off = (cw_min >> 1) + (aci_aifsn & MWIFIEX_AIFSN);
252
253 ac_idx = wmm_aci_to_qidx_map[(aci_aifsn & MWIFIEX_ACI) >> 5];
5e6e3a92
BZ
254 priv->wmm.queue_priority[ac_idx] = ac_idx;
255 tmp[ac_idx] = avg_back_off;
256
acebe8c1
ZL
257 mwifiex_dbg(priv->adapter, INFO,
258 "info: WMM: CWmax=%d CWmin=%d Avg Back-off=%d\n",
259 (1 << ((ecw & MWIFIEX_ECW_MAX) >> 4)) - 1,
260 cw_min, avg_back_off);
5e6e3a92
BZ
261 mwifiex_wmm_ac_debug_print(&wmm_ie->ac_params[num_ac]);
262 }
263
264 /* Bubble sort */
265 for (i = 0; i < num_ac; i++) {
266 for (j = 1; j < num_ac - i; j++) {
267 if (tmp[j - 1] > tmp[j]) {
268 swap(tmp[j - 1], tmp[j]);
269 swap(priv->wmm.queue_priority[j - 1],
270 priv->wmm.queue_priority[j]);
271 } else if (tmp[j - 1] == tmp[j]) {
272 if (priv->wmm.queue_priority[j - 1]
273 < priv->wmm.queue_priority[j])
274 swap(priv->wmm.queue_priority[j - 1],
275 priv->wmm.queue_priority[j]);
276 }
277 }
278 }
279
41a24a29 280 mwifiex_wmm_queue_priorities_tid(priv);
5e6e3a92
BZ
281}
282
283/*
284 * This function evaluates whether or not an AC is to be downgraded.
285 *
286 * In case the AC is not enabled, the highest AC is returned that is
287 * enabled and does not require admission control.
288 */
289static enum mwifiex_wmm_ac_e
290mwifiex_wmm_eval_downgrade_ac(struct mwifiex_private *priv,
291 enum mwifiex_wmm_ac_e eval_ac)
292{
293 int down_ac;
294 enum mwifiex_wmm_ac_e ret_ac;
295 struct mwifiex_wmm_ac_status *ac_status;
296
297 ac_status = &priv->wmm.ac_status[eval_ac];
298
299 if (!ac_status->disabled)
300 /* Okay to use this AC, its enabled */
301 return eval_ac;
302
303 /* Setup a default return value of the lowest priority */
304 ret_ac = WMM_AC_BK;
305
306 /*
307 * Find the highest AC that is enabled and does not require
308 * admission control. The spec disallows downgrading to an AC,
309 * which is enabled due to a completed admission control.
310 * Unadmitted traffic is not to be sent on an AC with admitted
311 * traffic.
312 */
313 for (down_ac = WMM_AC_BK; down_ac < eval_ac; down_ac++) {
314 ac_status = &priv->wmm.ac_status[down_ac];
315
316 if (!ac_status->disabled && !ac_status->flow_required)
317 /* AC is enabled and does not require admission
318 control */
319 ret_ac = (enum mwifiex_wmm_ac_e) down_ac;
320 }
321
322 return ret_ac;
323}
324
325/*
326 * This function downgrades WMM priority queue.
327 */
328void
329mwifiex_wmm_setup_ac_downgrade(struct mwifiex_private *priv)
330{
331 int ac_val;
332
acebe8c1
ZL
333 mwifiex_dbg(priv->adapter, INFO, "info: WMM: AC Priorities:\t"
334 "BK(0), BE(1), VI(2), VO(3)\n");
5e6e3a92
BZ
335
336 if (!priv->wmm_enabled) {
337 /* WMM is not enabled, default priorities */
338 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++)
339 priv->wmm.ac_down_graded_vals[ac_val] =
c65a30f3 340 (enum mwifiex_wmm_ac_e) ac_val;
5e6e3a92
BZ
341 } else {
342 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++) {
343 priv->wmm.ac_down_graded_vals[ac_val]
344 = mwifiex_wmm_eval_downgrade_ac(priv,
345 (enum mwifiex_wmm_ac_e) ac_val);
acebe8c1
ZL
346 mwifiex_dbg(priv->adapter, INFO,
347 "info: WMM: AC PRIO %d maps to %d\n",
348 ac_val,
349 priv->wmm.ac_down_graded_vals[ac_val]);
5e6e3a92
BZ
350 }
351 }
352}
353
354/*
355 * This function converts the IP TOS field to an WMM AC
356 * Queue assignment.
357 */
358static enum mwifiex_wmm_ac_e
359mwifiex_wmm_convert_tos_to_ac(struct mwifiex_adapter *adapter, u32 tos)
360{
361 /* Map of TOS UP values to WMM AC */
362 const enum mwifiex_wmm_ac_e tos_to_ac[] = { WMM_AC_BE,
363 WMM_AC_BK,
364 WMM_AC_BK,
365 WMM_AC_BE,
366 WMM_AC_VI,
367 WMM_AC_VI,
368 WMM_AC_VO,
369 WMM_AC_VO
370 };
371
372 if (tos >= ARRAY_SIZE(tos_to_ac))
373 return WMM_AC_BE;
374
375 return tos_to_ac[tos];
376}
377
378/*
379 * This function evaluates a given TID and downgrades it to a lower
380 * TID if the WMM Parameter IE received from the AP indicates that the
381 * AP is disabled (due to call admission control (ACM bit). Mapping
382 * of TID to AC is taken care of internally.
383 */
5f2caaf3 384u8 mwifiex_wmm_downgrade_tid(struct mwifiex_private *priv, u32 tid)
5e6e3a92
BZ
385{
386 enum mwifiex_wmm_ac_e ac, ac_down;
387 u8 new_tid;
388
389 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid);
390 ac_down = priv->wmm.ac_down_graded_vals[ac];
391
392 /* Send the index to tid array, picking from the array will be
393 * taken care by dequeuing function
394 */
395 new_tid = ac_to_tid[ac_down][tid % 2];
396
397 return new_tid;
398}
399
400/*
401 * This function initializes the WMM state information and the
402 * WMM data path queues.
403 */
404void
405mwifiex_wmm_init(struct mwifiex_adapter *adapter)
406{
407 int i, j;
408 struct mwifiex_private *priv;
409
410 for (j = 0; j < adapter->priv_num; ++j) {
411 priv = adapter->priv[j];
412 if (!priv)
413 continue;
414
415 for (i = 0; i < MAX_NUM_TID; ++i) {
4c9f9fb2
AK
416 if (!disable_tx_amsdu &&
417 adapter->tx_buf_size > MWIFIEX_TX_DATA_BUF_SIZE_2K)
418 priv->aggr_prio_tbl[i].amsdu =
419 priv->tos_to_tid_inv[i];
420 else
421 priv->aggr_prio_tbl[i].amsdu =
422 BA_STREAM_NOT_ALLOWED;
41a24a29
AP
423 priv->aggr_prio_tbl[i].ampdu_ap =
424 priv->tos_to_tid_inv[i];
425 priv->aggr_prio_tbl[i].ampdu_user =
426 priv->tos_to_tid_inv[i];
5e6e3a92
BZ
427 }
428
31a09a5d
AP
429 priv->aggr_prio_tbl[6].amsdu
430 = priv->aggr_prio_tbl[6].ampdu_ap
431 = priv->aggr_prio_tbl[6].ampdu_user
432 = BA_STREAM_NOT_ALLOWED;
433
434 priv->aggr_prio_tbl[7].amsdu = priv->aggr_prio_tbl[7].ampdu_ap
435 = priv->aggr_prio_tbl[7].ampdu_user
436 = BA_STREAM_NOT_ALLOWED;
437
04abc0a3 438 mwifiex_set_ba_params(priv);
92583924
SP
439 mwifiex_reset_11n_rx_seq_num(priv);
440
f699254c 441 atomic_set(&priv->wmm.tx_pkts_queued, 0);
49729ff6 442 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
443 }
444}
445
a1777327
AP
446int mwifiex_bypass_txlist_empty(struct mwifiex_adapter *adapter)
447{
735ab6bf
ZL
448 struct mwifiex_private *priv;
449 int i;
450
451 for (i = 0; i < adapter->priv_num; i++) {
452 priv = adapter->priv[i];
453 if (!priv)
454 continue;
455 if (adapter->if_ops.is_port_ready &&
456 !adapter->if_ops.is_port_ready(priv))
457 continue;
458 if (!skb_queue_empty(&priv->bypass_txq))
459 return false;
460 }
461
462 return true;
a1777327
AP
463}
464
5e6e3a92
BZ
465/*
466 * This function checks if WMM Tx queue is empty.
467 */
468int
469mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter)
470{
f699254c 471 int i;
5e6e3a92
BZ
472 struct mwifiex_private *priv;
473
f699254c
MY
474 for (i = 0; i < adapter->priv_num; ++i) {
475 priv = adapter->priv[i];
735ab6bf
ZL
476 if (!priv)
477 continue;
dc386ce7 478 if (!priv->port_open &&
479 (priv->bss_mode != NL80211_IFTYPE_ADHOC))
735ab6bf
ZL
480 continue;
481 if (adapter->if_ops.is_port_ready &&
482 !adapter->if_ops.is_port_ready(priv))
5c894633 483 continue;
735ab6bf 484 if (atomic_read(&priv->wmm.tx_pkts_queued))
a8aa69dc 485 return false;
5e6e3a92
BZ
486 }
487
488 return true;
489}
490
491/*
492 * This function deletes all packets in an RA list node.
493 *
494 * The packet sent completion callback handler are called with
495 * status failure, after they are dequeued to ensure proper
496 * cleanup. The RA list node itself is freed at the end.
497 */
498static void
499mwifiex_wmm_del_pkts_in_ralist_node(struct mwifiex_private *priv,
500 struct mwifiex_ra_list_tbl *ra_list)
501{
502 struct mwifiex_adapter *adapter = priv->adapter;
503 struct sk_buff *skb, *tmp;
504
505 skb_queue_walk_safe(&ra_list->skb_head, skb, tmp)
47411a06 506 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
507}
508
509/*
510 * This function deletes all packets in an RA list.
511 *
512 * Each nodes in the RA list are freed individually first, and then
513 * the RA list itself is freed.
514 */
515static void
516mwifiex_wmm_del_pkts_in_ralist(struct mwifiex_private *priv,
517 struct list_head *ra_list_head)
518{
519 struct mwifiex_ra_list_tbl *ra_list;
520
521 list_for_each_entry(ra_list, ra_list_head, list)
522 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
523}
524
525/*
526 * This function deletes all packets in all RA lists.
527 */
528static void mwifiex_wmm_cleanup_queues(struct mwifiex_private *priv)
529{
530 int i;
531
532 for (i = 0; i < MAX_NUM_TID; i++)
533 mwifiex_wmm_del_pkts_in_ralist(priv, &priv->wmm.tid_tbl_ptr[i].
c65a30f3 534 ra_list);
f699254c
MY
535
536 atomic_set(&priv->wmm.tx_pkts_queued, 0);
49729ff6 537 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
538}
539
540/*
541 * This function deletes all route addresses from all RA lists.
542 */
543static void mwifiex_wmm_delete_all_ralist(struct mwifiex_private *priv)
544{
545 struct mwifiex_ra_list_tbl *ra_list, *tmp_node;
546 int i;
547
548 for (i = 0; i < MAX_NUM_TID; ++i) {
acebe8c1
ZL
549 mwifiex_dbg(priv->adapter, INFO,
550 "info: ra_list: freeing buf for tid %d\n", i);
5e6e3a92 551 list_for_each_entry_safe(ra_list, tmp_node,
c65a30f3
YAP
552 &priv->wmm.tid_tbl_ptr[i].ra_list,
553 list) {
5e6e3a92
BZ
554 list_del(&ra_list->list);
555 kfree(ra_list);
556 }
557
558 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[i].ra_list);
5e6e3a92
BZ
559 }
560}
561
808bbebc
AK
562static int mwifiex_free_ack_frame(int id, void *p, void *data)
563{
564 pr_warn("Have pending ack frames!\n");
565 kfree_skb(p);
566 return 0;
567}
568
5e6e3a92
BZ
569/*
570 * This function cleans up the Tx and Rx queues.
571 *
572 * Cleanup includes -
573 * - All packets in RA lists
574 * - All entries in Rx reorder table
575 * - All entries in Tx BA stream table
576 * - MPA buffer (if required)
577 * - All RA lists
578 */
579void
580mwifiex_clean_txrx(struct mwifiex_private *priv)
581{
582 unsigned long flags;
56bd24a1 583 struct sk_buff *skb, *tmp;
5e6e3a92
BZ
584
585 mwifiex_11n_cleanup_reorder_tbl(priv);
586 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
587
588 mwifiex_wmm_cleanup_queues(priv);
589 mwifiex_11n_delete_all_tx_ba_stream_tbl(priv);
590
591 if (priv->adapter->if_ops.cleanup_mpa_buf)
592 priv->adapter->if_ops.cleanup_mpa_buf(priv->adapter);
593
594 mwifiex_wmm_delete_all_ralist(priv);
595 memcpy(tos_to_tid, ac_to_tid, sizeof(tos_to_tid));
596
4f7ba432
AP
597 if (priv->adapter->if_ops.clean_pcie_ring &&
598 !priv->adapter->surprise_removed)
fbd7e7ac 599 priv->adapter->if_ops.clean_pcie_ring(priv->adapter);
5e6e3a92 600 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
56bd24a1
AP
601
602 skb_queue_walk_safe(&priv->tdls_txq, skb, tmp)
603 mwifiex_write_data_complete(priv->adapter, skb, 0, -1);
808bbebc 604
a1777327
AP
605 skb_queue_walk_safe(&priv->bypass_txq, skb, tmp)
606 mwifiex_write_data_complete(priv->adapter, skb, 0, -1);
607 atomic_set(&priv->adapter->bypass_tx_pending, 0);
608
808bbebc
AK
609 idr_for_each(&priv->ack_status_frames, mwifiex_free_ack_frame, NULL);
610 idr_destroy(&priv->ack_status_frames);
5e6e3a92
BZ
611}
612
613/*
614 * This function retrieves a particular RA list node, matching with the
615 * given TID and RA address.
616 */
39df5e82 617struct mwifiex_ra_list_tbl *
5e6e3a92 618mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid,
3b3a0162 619 const u8 *ra_addr)
5e6e3a92
BZ
620{
621 struct mwifiex_ra_list_tbl *ra_list;
622
623 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
624 list) {
625 if (!memcmp(ra_list->ra, ra_addr, ETH_ALEN))
626 return ra_list;
627 }
628
629 return NULL;
630}
631
4e6ee91b
AP
632void mwifiex_update_ralist_tx_pause(struct mwifiex_private *priv, u8 *mac,
633 u8 tx_pause)
634{
635 struct mwifiex_ra_list_tbl *ra_list;
636 u32 pkt_cnt = 0, tx_pkts_queued;
637 unsigned long flags;
638 int i;
639
640 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
641
642 for (i = 0; i < MAX_NUM_TID; ++i) {
643 ra_list = mwifiex_wmm_get_ralist_node(priv, i, mac);
644 if (ra_list && ra_list->tx_paused != tx_pause) {
645 pkt_cnt += ra_list->total_pkt_count;
646 ra_list->tx_paused = tx_pause;
647 if (tx_pause)
648 priv->wmm.pkts_paused[i] +=
649 ra_list->total_pkt_count;
650 else
651 priv->wmm.pkts_paused[i] -=
652 ra_list->total_pkt_count;
653 }
654 }
655
f7669877
XH
656 if (pkt_cnt) {
657 tx_pkts_queued = atomic_read(&priv->wmm.tx_pkts_queued);
658 if (tx_pause)
659 tx_pkts_queued -= pkt_cnt;
660 else
661 tx_pkts_queued += pkt_cnt;
662
663 atomic_set(&priv->wmm.tx_pkts_queued, tx_pkts_queued);
664 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
665 }
666 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
667}
668
669/* This function update non-tdls peer ralist tx_pause while
670 * tdls channel swithing
671 */
672void mwifiex_update_ralist_tx_pause_in_tdls_cs(struct mwifiex_private *priv,
673 u8 *mac, u8 tx_pause)
674{
675 struct mwifiex_ra_list_tbl *ra_list;
676 u32 pkt_cnt = 0, tx_pkts_queued;
677 unsigned long flags;
678 int i;
679
680 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
681
682 for (i = 0; i < MAX_NUM_TID; ++i) {
683 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[i].ra_list,
684 list) {
685 if (!memcmp(ra_list->ra, mac, ETH_ALEN))
686 continue;
687
8785955b 688 if (ra_list->tx_paused != tx_pause) {
f7669877
XH
689 pkt_cnt += ra_list->total_pkt_count;
690 ra_list->tx_paused = tx_pause;
691 if (tx_pause)
692 priv->wmm.pkts_paused[i] +=
693 ra_list->total_pkt_count;
694 else
695 priv->wmm.pkts_paused[i] -=
696 ra_list->total_pkt_count;
697 }
698 }
699 }
700
4e6ee91b
AP
701 if (pkt_cnt) {
702 tx_pkts_queued = atomic_read(&priv->wmm.tx_pkts_queued);
703 if (tx_pause)
704 tx_pkts_queued -= pkt_cnt;
705 else
706 tx_pkts_queued += pkt_cnt;
707
708 atomic_set(&priv->wmm.tx_pkts_queued, tx_pkts_queued);
709 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
710 }
711 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
712}
713
5e6e3a92
BZ
714/*
715 * This function retrieves an RA list node for a given TID and
716 * RA address pair.
717 *
718 * If no such node is found, a new node is added first and then
719 * retrieved.
720 */
5f2caaf3 721struct mwifiex_ra_list_tbl *
3b3a0162
JB
722mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid,
723 const u8 *ra_addr)
5e6e3a92
BZ
724{
725 struct mwifiex_ra_list_tbl *ra_list;
726
727 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
728 if (ra_list)
729 return ra_list;
730 mwifiex_ralist_add(priv, ra_addr);
731
732 return mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
733}
734
9817fffb
AP
735/*
736 * This function deletes RA list nodes for given mac for all TIDs.
737 * Function also decrements TX pending count accordingly.
738 */
739void
740mwifiex_wmm_del_peer_ra_list(struct mwifiex_private *priv, const u8 *ra_addr)
741{
742 struct mwifiex_ra_list_tbl *ra_list;
743 unsigned long flags;
744 int i;
745
746 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
747
748 for (i = 0; i < MAX_NUM_TID; ++i) {
749 ra_list = mwifiex_wmm_get_ralist_node(priv, i, ra_addr);
750
751 if (!ra_list)
752 continue;
753 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
70c5ad7e
ZL
754 if (ra_list->tx_paused)
755 priv->wmm.pkts_paused[i] -= ra_list->total_pkt_count;
756 else
757 atomic_sub(ra_list->total_pkt_count,
758 &priv->wmm.tx_pkts_queued);
9817fffb
AP
759 list_del(&ra_list->list);
760 kfree(ra_list);
761 }
762 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
763}
764
5e6e3a92
BZ
765/*
766 * This function checks if a particular RA list node exists in a given TID
767 * table index.
768 */
769int
770mwifiex_is_ralist_valid(struct mwifiex_private *priv,
771 struct mwifiex_ra_list_tbl *ra_list, int ptr_index)
772{
773 struct mwifiex_ra_list_tbl *rlist;
774
775 list_for_each_entry(rlist, &priv->wmm.tid_tbl_ptr[ptr_index].ra_list,
776 list) {
777 if (rlist == ra_list)
778 return true;
779 }
780
781 return false;
782}
783
a1777327
AP
784/*
785 * This function adds a packet to bypass TX queue.
786 * This is special TX queue for packets which can be sent even when port_open
787 * is false.
788 */
789void
790mwifiex_wmm_add_buf_bypass_txqueue(struct mwifiex_private *priv,
791 struct sk_buff *skb)
792{
793 skb_queue_tail(&priv->bypass_txq, skb);
794}
795
5e6e3a92
BZ
796/*
797 * This function adds a packet to WMM queue.
798 *
799 * In disconnected state the packet is immediately dropped and the
800 * packet send completion callback is called with status failure.
801 *
802 * Otherwise, the correct RA list node is located and the packet
803 * is queued at the list tail.
804 */
805void
2690e1bb 806mwifiex_wmm_add_buf_txqueue(struct mwifiex_private *priv,
5e6e3a92
BZ
807 struct sk_buff *skb)
808{
2690e1bb 809 struct mwifiex_adapter *adapter = priv->adapter;
5e6e3a92
BZ
810 u32 tid;
811 struct mwifiex_ra_list_tbl *ra_list;
812 u8 ra[ETH_ALEN], tid_down;
813 unsigned long flags;
d63bf5e5
AP
814 struct list_head list_head;
815 int tdls_status = TDLS_NOT_SETUP;
816 struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
817 struct mwifiex_txinfo *tx_info = MWIFIEX_SKB_TXCB(skb);
818
819 memcpy(ra, eth_hdr->h_dest, ETH_ALEN);
820
821 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA &&
822 ISSUPP_TDLS_ENABLED(adapter->fw_cap_info)) {
823 if (ntohs(eth_hdr->h_proto) == ETH_P_TDLS)
acebe8c1
ZL
824 mwifiex_dbg(adapter, DATA,
825 "TDLS setup packet for %pM.\t"
826 "Don't block\n", ra);
16e8552a 827 else if (memcmp(priv->cfg_bssid, ra, ETH_ALEN))
d63bf5e5
AP
828 tdls_status = mwifiex_get_tdls_link_status(priv, ra);
829 }
5e6e3a92 830
e39faa73 831 if (!priv->media_connected && !mwifiex_is_skb_mgmt_frame(skb)) {
acebe8c1 832 mwifiex_dbg(adapter, DATA, "data: drop packet in disconnect\n");
47411a06 833 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
834 return;
835 }
836
837 tid = skb->priority;
838
839 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
840
841 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
842
843 /* In case of infra as we have already created the list during
844 association we just don't have to call get_queue_raptr, we will
845 have only 1 raptr for a tid in case of infra */
e39faa73
SP
846 if (!mwifiex_queuing_ra_based(priv) &&
847 !mwifiex_is_skb_mgmt_frame(skb)) {
d63bf5e5
AP
848 switch (tdls_status) {
849 case TDLS_SETUP_COMPLETE:
55a2c077
XH
850 case TDLS_CHAN_SWITCHING:
851 case TDLS_IN_BASE_CHAN:
852 case TDLS_IN_OFF_CHAN:
d63bf5e5
AP
853 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down,
854 ra);
855 tx_info->flags |= MWIFIEX_BUF_FLAG_TDLS_PKT;
856 break;
857 case TDLS_SETUP_INPROGRESS:
858 skb_queue_tail(&priv->tdls_txq, skb);
859 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
860 flags);
861 return;
862 default:
863 list_head = priv->wmm.tid_tbl_ptr[tid_down].ra_list;
864 if (!list_empty(&list_head))
865 ra_list = list_first_entry(
866 &list_head, struct mwifiex_ra_list_tbl,
867 list);
868 else
869 ra_list = NULL;
870 break;
871 }
5e6e3a92
BZ
872 } else {
873 memcpy(ra, skb->data, ETH_ALEN);
e39faa73 874 if (ra[0] & 0x01 || mwifiex_is_skb_mgmt_frame(skb))
93803b33 875 eth_broadcast_addr(ra);
5e6e3a92
BZ
876 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down, ra);
877 }
878
879 if (!ra_list) {
880 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
47411a06 881 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
882 return;
883 }
884
885 skb_queue_tail(&ra_list->skb_head, skb);
886
f0cb84f8 887 ra_list->ba_pkt_count++;
c7d9ed9e 888 ra_list->total_pkt_count++;
5e6e3a92 889
49729ff6 890 if (atomic_read(&priv->wmm.highest_queued_prio) <
41a24a29 891 priv->tos_to_tid_inv[tid_down])
49729ff6 892 atomic_set(&priv->wmm.highest_queued_prio,
41a24a29 893 priv->tos_to_tid_inv[tid_down]);
49729ff6 894
9186a1f3
XH
895 if (ra_list->tx_paused)
896 priv->wmm.pkts_paused[tid_down]++;
897 else
898 atomic_inc(&priv->wmm.tx_pkts_queued);
2716fd7d 899
5e6e3a92
BZ
900 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
901}
902
903/*
904 * This function processes the get WMM status command response from firmware.
905 *
906 * The response may contain multiple TLVs -
907 * - AC Queue status TLVs
908 * - Current WMM Parameter IE TLV
909 * - Admission Control action frame TLVs
910 *
911 * This function parses the TLVs and then calls further specific functions
912 * to process any changes in the queue prioritize or state.
913 */
914int mwifiex_ret_wmm_get_status(struct mwifiex_private *priv,
915 const struct host_cmd_ds_command *resp)
916{
917 u8 *curr = (u8 *) &resp->params.get_wmm_status;
918 uint16_t resp_len = le16_to_cpu(resp->size), tlv_len;
acebe8c1 919 int mask = IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK;
c856197d 920 bool valid = true;
5e6e3a92
BZ
921
922 struct mwifiex_ie_types_data *tlv_hdr;
923 struct mwifiex_ie_types_wmm_queue_status *tlv_wmm_qstatus;
924 struct ieee_types_wmm_parameter *wmm_param_ie = NULL;
925 struct mwifiex_wmm_ac_status *ac_status;
926
acebe8c1
ZL
927 mwifiex_dbg(priv->adapter, INFO,
928 "info: WMM: WMM_GET_STATUS cmdresp received: %d\n",
929 resp_len);
5e6e3a92
BZ
930
931 while ((resp_len >= sizeof(tlv_hdr->header)) && valid) {
932 tlv_hdr = (struct mwifiex_ie_types_data *) curr;
933 tlv_len = le16_to_cpu(tlv_hdr->header.len);
934
95edbc30
DC
935 if (resp_len < tlv_len + sizeof(tlv_hdr->header))
936 break;
937
5e6e3a92
BZ
938 switch (le16_to_cpu(tlv_hdr->header.type)) {
939 case TLV_TYPE_WMMQSTATUS:
940 tlv_wmm_qstatus =
941 (struct mwifiex_ie_types_wmm_queue_status *)
942 tlv_hdr;
acebe8c1
ZL
943 mwifiex_dbg(priv->adapter, CMD,
944 "info: CMD_RESP: WMM_GET_STATUS:\t"
945 "QSTATUS TLV: %d, %d, %d\n",
946 tlv_wmm_qstatus->queue_index,
947 tlv_wmm_qstatus->flow_required,
948 tlv_wmm_qstatus->disabled);
5e6e3a92
BZ
949
950 ac_status = &priv->wmm.ac_status[tlv_wmm_qstatus->
951 queue_index];
952 ac_status->disabled = tlv_wmm_qstatus->disabled;
953 ac_status->flow_required =
c65a30f3 954 tlv_wmm_qstatus->flow_required;
5e6e3a92
BZ
955 ac_status->flow_created = tlv_wmm_qstatus->flow_created;
956 break;
957
958 case WLAN_EID_VENDOR_SPECIFIC:
959 /*
960 * Point the regular IEEE IE 2 bytes into the Marvell IE
961 * and setup the IEEE IE type and length byte fields
962 */
963
964 wmm_param_ie =
965 (struct ieee_types_wmm_parameter *) (curr +
966 2);
967 wmm_param_ie->vend_hdr.len = (u8) tlv_len;
968 wmm_param_ie->vend_hdr.element_id =
969 WLAN_EID_VENDOR_SPECIFIC;
970
acebe8c1
ZL
971 mwifiex_dbg(priv->adapter, CMD,
972 "info: CMD_RESP: WMM_GET_STATUS:\t"
973 "WMM Parameter Set Count: %d\n",
974 wmm_param_ie->qos_info_bitmap & mask);
5e6e3a92
BZ
975
976 memcpy((u8 *) &priv->curr_bss_params.bss_descriptor.
977 wmm_ie, wmm_param_ie,
978 wmm_param_ie->vend_hdr.len + 2);
979
980 break;
981
982 default:
983 valid = false;
984 break;
985 }
986
987 curr += (tlv_len + sizeof(tlv_hdr->header));
988 resp_len -= (tlv_len + sizeof(tlv_hdr->header));
989 }
990
991 mwifiex_wmm_setup_queue_priorities(priv, wmm_param_ie);
992 mwifiex_wmm_setup_ac_downgrade(priv);
993
994 return 0;
995}
996
997/*
998 * Callback handler from the command module to allow insertion of a WMM TLV.
999 *
1000 * If the BSS we are associating to supports WMM, this function adds the
1001 * required WMM Information IE to the association request command buffer in
1002 * the form of a Marvell extended IEEE IE.
1003 */
1004u32
1005mwifiex_wmm_process_association_req(struct mwifiex_private *priv,
1006 u8 **assoc_buf,
1007 struct ieee_types_wmm_parameter *wmm_ie,
1008 struct ieee80211_ht_cap *ht_cap)
1009{
1010 struct mwifiex_ie_types_wmm_param_set *wmm_tlv;
1011 u32 ret_len = 0;
1012
1013 /* Null checks */
1014 if (!assoc_buf)
1015 return 0;
1016 if (!(*assoc_buf))
1017 return 0;
1018
1019 if (!wmm_ie)
1020 return 0;
1021
acebe8c1
ZL
1022 mwifiex_dbg(priv->adapter, INFO,
1023 "info: WMM: process assoc req: bss->wmm_ie=%#x\n",
1024 wmm_ie->vend_hdr.element_id);
5e6e3a92 1025
c65a30f3
YAP
1026 if ((priv->wmm_required ||
1027 (ht_cap && (priv->adapter->config_bands & BAND_GN ||
1028 priv->adapter->config_bands & BAND_AN))) &&
1029 wmm_ie->vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC) {
5e6e3a92
BZ
1030 wmm_tlv = (struct mwifiex_ie_types_wmm_param_set *) *assoc_buf;
1031 wmm_tlv->header.type = cpu_to_le16((u16) wmm_info_ie[0]);
1032 wmm_tlv->header.len = cpu_to_le16((u16) wmm_info_ie[1]);
1033 memcpy(wmm_tlv->wmm_ie, &wmm_info_ie[2],
c65a30f3 1034 le16_to_cpu(wmm_tlv->header.len));
5e6e3a92
BZ
1035 if (wmm_ie->qos_info_bitmap & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD)
1036 memcpy((u8 *) (wmm_tlv->wmm_ie
c65a30f3
YAP
1037 + le16_to_cpu(wmm_tlv->header.len)
1038 - sizeof(priv->wmm_qosinfo)),
1039 &priv->wmm_qosinfo, sizeof(priv->wmm_qosinfo));
5e6e3a92
BZ
1040
1041 ret_len = sizeof(wmm_tlv->header)
c65a30f3 1042 + le16_to_cpu(wmm_tlv->header.len);
5e6e3a92
BZ
1043
1044 *assoc_buf += ret_len;
1045 }
1046
1047 return ret_len;
1048}
1049
1050/*
1051 * This function computes the time delay in the driver queues for a
1052 * given packet.
1053 *
1054 * When the packet is received at the OS/Driver interface, the current
1055 * time is set in the packet structure. The difference between the present
1056 * time and that received time is computed in this function and limited
1057 * based on pre-compiled limits in the driver.
1058 */
1059u8
1060mwifiex_wmm_compute_drv_pkt_delay(struct mwifiex_private *priv,
c65a30f3 1061 const struct sk_buff *skb)
5e6e3a92 1062{
c64800e7 1063 u32 queue_delay = ktime_to_ms(net_timedelta(skb->tstamp));
270e58e8 1064 u8 ret_val;
5e6e3a92
BZ
1065
1066 /*
1067 * Queue delay is passed as a uint8 in units of 2ms (ms shifted
1068 * by 1). Min value (other than 0) is therefore 2ms, max is 510ms.
1069 *
1070 * Pass max value if queue_delay is beyond the uint8 range
1071 */
1072 ret_val = (u8) (min(queue_delay, priv->wmm.drv_pkt_delay_max) >> 1);
1073
acebe8c1
ZL
1074 mwifiex_dbg(priv->adapter, DATA, "data: WMM: Pkt Delay: %d ms,\t"
1075 "%d ms sent to FW\n", queue_delay, ret_val);
5e6e3a92
BZ
1076
1077 return ret_val;
1078}
1079
1080/*
1081 * This function retrieves the highest priority RA list table pointer.
1082 */
1083static struct mwifiex_ra_list_tbl *
1084mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter,
1085 struct mwifiex_private **priv, int *tid)
1086{
1087 struct mwifiex_private *priv_tmp;
2e237319 1088 struct mwifiex_ra_list_tbl *ptr;
5e6e3a92 1089 struct mwifiex_tid_tbl *tid_ptr;
bb7de2ba 1090 atomic_t *hqp;
690e792c 1091 unsigned long flags_ra;
5e6e3a92
BZ
1092 int i, j;
1093
b006ed54 1094 /* check the BSS with highest priority first */
5e6e3a92 1095 for (j = adapter->priv_num - 1; j >= 0; --j) {
b006ed54
AF
1096 /* iterate over BSS with the equal priority */
1097 list_for_each_entry(adapter->bss_prio_tbl[j].bss_prio_cur,
1098 &adapter->bss_prio_tbl[j].bss_prio_head,
1099 list) {
16051b0e 1100
b006ed54 1101 priv_tmp = adapter->bss_prio_tbl[j].bss_prio_cur->priv;
5e6e3a92 1102
dc386ce7 1103 if (((priv_tmp->bss_mode != NL80211_IFTYPE_ADHOC) &&
1104 !priv_tmp->port_open) ||
5c894633 1105 (atomic_read(&priv_tmp->wmm.tx_pkts_queued) == 0))
b006ed54 1106 continue;
333f6b22 1107
735ab6bf
ZL
1108 if (adapter->if_ops.is_port_ready &&
1109 !adapter->if_ops.is_port_ready(priv_tmp))
1110 continue;
1111
333f6b22
AF
1112 /* iterate over the WMM queues of the BSS */
1113 hqp = &priv_tmp->wmm.highest_queued_prio;
49729ff6 1114 for (i = atomic_read(hqp); i >= LOW_PRIO_TID; --i) {
5e6e3a92 1115
2716fd7d
AF
1116 spin_lock_irqsave(&priv_tmp->wmm.
1117 ra_list_spinlock, flags_ra);
1118
5e6e3a92
BZ
1119 tid_ptr = &(priv_tmp)->wmm.
1120 tid_tbl_ptr[tos_to_tid[i]];
1121
2e237319
AF
1122 /* iterate over receiver addresses */
1123 list_for_each_entry(ptr, &tid_ptr->ra_list,
1124 list) {
5e6e3a92 1125
b5b0f272
XH
1126 if (!ptr->tx_paused &&
1127 !skb_queue_empty(&ptr->skb_head))
2716fd7d 1128 /* holds both locks */
bb7de2ba 1129 goto found;
2e237319 1130 }
bb7de2ba 1131
2716fd7d
AF
1132 spin_unlock_irqrestore(&priv_tmp->wmm.
1133 ra_list_spinlock,
1134 flags_ra);
5e6e3a92 1135 }
b006ed54 1136 }
5e6e3a92 1137
5e6e3a92 1138 }
2716fd7d 1139
5e6e3a92 1140 return NULL;
bb7de2ba
YAP
1141
1142found:
690e792c 1143 /* holds ra_list_spinlock */
bb7de2ba
YAP
1144 if (atomic_read(hqp) > i)
1145 atomic_set(hqp, i);
2716fd7d 1146 spin_unlock_irqrestore(&priv_tmp->wmm.ra_list_spinlock, flags_ra);
bb7de2ba
YAP
1147
1148 *priv = priv_tmp;
1149 *tid = tos_to_tid[i];
1150
1151 return ptr;
5e6e3a92
BZ
1152}
1153
b006ed54 1154/* This functions rotates ra and bss lists so packets are picked round robin.
2e237319
AF
1155 *
1156 * After a packet is successfully transmitted, rotate the ra list, so the ra
1157 * next to the one transmitted, will come first in the list. This way we pick
b006ed54
AF
1158 * the ra' in a round robin fashion. Same applies to bss nodes of equal
1159 * priority.
2e237319
AF
1160 *
1161 * Function also increments wmm.packets_out counter.
1162 */
1163void mwifiex_rotate_priolists(struct mwifiex_private *priv,
1164 struct mwifiex_ra_list_tbl *ra,
1165 int tid)
1166{
b006ed54
AF
1167 struct mwifiex_adapter *adapter = priv->adapter;
1168 struct mwifiex_bss_prio_tbl *tbl = adapter->bss_prio_tbl;
2e237319
AF
1169 struct mwifiex_tid_tbl *tid_ptr = &priv->wmm.tid_tbl_ptr[tid];
1170 unsigned long flags;
1171
b006ed54
AF
1172 spin_lock_irqsave(&tbl[priv->bss_priority].bss_prio_lock, flags);
1173 /*
1174 * dirty trick: we remove 'head' temporarily and reinsert it after
1175 * curr bss node. imagine list to stay fixed while head is moved
1176 */
1177 list_move(&tbl[priv->bss_priority].bss_prio_head,
1178 &tbl[priv->bss_priority].bss_prio_cur->list);
1179 spin_unlock_irqrestore(&tbl[priv->bss_priority].bss_prio_lock, flags);
1180
2e237319
AF
1181 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1182 if (mwifiex_is_ralist_valid(priv, ra, tid)) {
1183 priv->wmm.packets_out[tid]++;
b006ed54 1184 /* same as above */
2e237319
AF
1185 list_move(&tid_ptr->ra_list, &ra->list);
1186 }
1187 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1188}
1189
d85c5fe4
AK
1190/*
1191 * This function checks if 11n aggregation is possible.
1192 */
1193static int
1194mwifiex_is_11n_aggragation_possible(struct mwifiex_private *priv,
1195 struct mwifiex_ra_list_tbl *ptr,
1196 int max_buf_size)
1197{
1198 int count = 0, total_size = 0;
1199 struct sk_buff *skb, *tmp;
5a009adf
AP
1200 int max_amsdu_size;
1201
1202 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP && priv->ap_11n_enabled &&
1203 ptr->is_11n_enabled)
1204 max_amsdu_size = min_t(int, ptr->max_amsdu, max_buf_size);
1205 else
1206 max_amsdu_size = max_buf_size;
d85c5fe4
AK
1207
1208 skb_queue_walk_safe(&ptr->skb_head, skb, tmp) {
1209 total_size += skb->len;
5a009adf 1210 if (total_size >= max_amsdu_size)
d85c5fe4
AK
1211 break;
1212 if (++count >= MIN_NUM_AMSDU)
1213 return true;
1214 }
1215
1216 return false;
1217}
1218
5e6e3a92
BZ
1219/*
1220 * This function sends a single packet to firmware for transmission.
1221 */
1222static void
1223mwifiex_send_single_packet(struct mwifiex_private *priv,
1224 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1225 unsigned long ra_list_flags)
1226 __releases(&priv->wmm.ra_list_spinlock)
1227{
1228 struct sk_buff *skb, *skb_next;
1229 struct mwifiex_tx_param tx_param;
1230 struct mwifiex_adapter *adapter = priv->adapter;
5e6e3a92
BZ
1231 struct mwifiex_txinfo *tx_info;
1232
1233 if (skb_queue_empty(&ptr->skb_head)) {
1234 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1235 ra_list_flags);
acebe8c1 1236 mwifiex_dbg(adapter, DATA, "data: nothing to send\n");
5e6e3a92
BZ
1237 return;
1238 }
1239
1240 skb = skb_dequeue(&ptr->skb_head);
1241
1242 tx_info = MWIFIEX_SKB_TXCB(skb);
acebe8c1
ZL
1243 mwifiex_dbg(adapter, DATA,
1244 "data: dequeuing the packet %p %p\n", ptr, skb);
5e6e3a92 1245
c7d9ed9e 1246 ptr->total_pkt_count--;
5e6e3a92
BZ
1247
1248 if (!skb_queue_empty(&ptr->skb_head))
1249 skb_next = skb_peek(&ptr->skb_head);
1250 else
1251 skb_next = NULL;
1252
1253 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1254
1255 tx_param.next_pkt_len = ((skb_next) ? skb_next->len +
1256 sizeof(struct txpd) : 0);
1257
636c4598 1258 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
5e6e3a92
BZ
1259 /* Queue the packet back at the head */
1260 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1261
1262 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1263 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1264 ra_list_flags);
47411a06 1265 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
1266 return;
1267 }
1268
1269 skb_queue_tail(&ptr->skb_head, skb);
1270
c7d9ed9e 1271 ptr->total_pkt_count++;
f0cb84f8 1272 ptr->ba_pkt_count++;
5e6e3a92
BZ
1273 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1274 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1275 ra_list_flags);
1276 } else {
2e237319 1277 mwifiex_rotate_priolists(priv, ptr, ptr_index);
f699254c 1278 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1279 }
1280}
1281
1282/*
1283 * This function checks if the first packet in the given RA list
1284 * is already processed or not.
1285 */
1286static int
1287mwifiex_is_ptr_processed(struct mwifiex_private *priv,
1288 struct mwifiex_ra_list_tbl *ptr)
1289{
1290 struct sk_buff *skb;
1291 struct mwifiex_txinfo *tx_info;
1292
1293 if (skb_queue_empty(&ptr->skb_head))
1294 return false;
1295
1296 skb = skb_peek(&ptr->skb_head);
1297
1298 tx_info = MWIFIEX_SKB_TXCB(skb);
1299 if (tx_info->flags & MWIFIEX_BUF_FLAG_REQUEUED_PKT)
1300 return true;
1301
1302 return false;
1303}
1304
1305/*
1306 * This function sends a single processed packet to firmware for
1307 * transmission.
1308 */
1309static void
1310mwifiex_send_processed_packet(struct mwifiex_private *priv,
1311 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1312 unsigned long ra_list_flags)
1313 __releases(&priv->wmm.ra_list_spinlock)
1314{
1315 struct mwifiex_tx_param tx_param;
1316 struct mwifiex_adapter *adapter = priv->adapter;
1317 int ret = -1;
1318 struct sk_buff *skb, *skb_next;
1319 struct mwifiex_txinfo *tx_info;
1320
1321 if (skb_queue_empty(&ptr->skb_head)) {
1322 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1323 ra_list_flags);
1324 return;
1325 }
1326
1327 skb = skb_dequeue(&ptr->skb_head);
1328
e35000ea
ZL
1329 if (adapter->data_sent || adapter->tx_lock_flag) {
1330 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1331 ra_list_flags);
1332 skb_queue_tail(&adapter->tx_data_q, skb);
1333 atomic_inc(&adapter->tx_queued);
1334 return;
1335 }
1336
5e6e3a92
BZ
1337 if (!skb_queue_empty(&ptr->skb_head))
1338 skb_next = skb_peek(&ptr->skb_head);
1339 else
1340 skb_next = NULL;
1341
1342 tx_info = MWIFIEX_SKB_TXCB(skb);
1343
1344 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
4daffe35
AK
1345
1346 if (adapter->iface_type == MWIFIEX_USB) {
735ab6bf 1347 ret = adapter->if_ops.host_to_card(adapter, priv->usb_port,
4daffe35
AK
1348 skb, NULL);
1349 } else {
1350 tx_param.next_pkt_len =
1351 ((skb_next) ? skb_next->len +
1352 sizeof(struct txpd) : 0);
1353 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
1354 skb, &tx_param);
1355 }
1356
5e6e3a92
BZ
1357 switch (ret) {
1358 case -EBUSY:
acebe8c1 1359 mwifiex_dbg(adapter, ERROR, "data: -EBUSY is returned\n");
5e6e3a92
BZ
1360 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1361
1362 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1363 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1364 ra_list_flags);
47411a06 1365 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
1366 return;
1367 }
1368
1369 skb_queue_tail(&ptr->skb_head, skb);
1370
1371 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1372 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1373 ra_list_flags);
1374 break;
1375 case -1:
acebe8c1 1376 mwifiex_dbg(adapter, ERROR, "host_to_card failed: %#x\n", ret);
5e6e3a92 1377 adapter->dbg.num_tx_host_to_card_failure++;
47411a06 1378 mwifiex_write_data_complete(adapter, skb, 0, ret);
5e6e3a92
BZ
1379 break;
1380 case -EINPROGRESS:
7a1f4e61
AK
1381 break;
1382 case 0:
1383 mwifiex_write_data_complete(adapter, skb, 0, ret);
5e6e3a92
BZ
1384 default:
1385 break;
1386 }
1387 if (ret != -EBUSY) {
2e237319 1388 mwifiex_rotate_priolists(priv, ptr, ptr_index);
f699254c 1389 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1390 }
1391}
1392
1393/*
1394 * This function dequeues a packet from the highest priority list
1395 * and transmits it.
1396 */
1397static int
1398mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1399{
1400 struct mwifiex_ra_list_tbl *ptr;
1401 struct mwifiex_private *priv = NULL;
1402 int ptr_index = 0;
1403 u8 ra[ETH_ALEN];
1404 int tid_del = 0, tid = 0;
1405 unsigned long flags;
1406
1407 ptr = mwifiex_wmm_get_highest_priolist_ptr(adapter, &priv, &ptr_index);
1408 if (!ptr)
1409 return -1;
1410
572e8f3e 1411 tid = mwifiex_get_tid(ptr);
5e6e3a92 1412
acebe8c1 1413 mwifiex_dbg(adapter, DATA, "data: tid=%d\n", tid);
5e6e3a92
BZ
1414
1415 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1416 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1417 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1418 return -1;
1419 }
1420
1421 if (mwifiex_is_ptr_processed(priv, ptr)) {
1422 mwifiex_send_processed_packet(priv, ptr, ptr_index, flags);
1423 /* ra_list_spinlock has been freed in
1424 mwifiex_send_processed_packet() */
1425 return 0;
1426 }
1427
c65a30f3 1428 if (!ptr->is_11n_enabled ||
39df5e82
ZL
1429 ptr->ba_status ||
1430 priv->wps.session_enable) {
4c9f9fb2 1431 if (ptr->is_11n_enabled &&
39df5e82
ZL
1432 ptr->ba_status &&
1433 ptr->amsdu_in_ampdu &&
1434 mwifiex_is_amsdu_allowed(priv, tid) &&
1435 mwifiex_is_11n_aggragation_possible(priv, ptr,
4c9f9fb2
AK
1436 adapter->tx_buf_size))
1437 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
1438 /* ra_list_spinlock has been freed in
1439 * mwifiex_11n_aggregate_pkt()
1440 */
1441 else
1442 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1443 /* ra_list_spinlock has been freed in
1444 * mwifiex_send_single_packet()
1445 */
5e6e3a92 1446 } else {
eac43227 1447 if (mwifiex_is_ampdu_allowed(priv, ptr, tid) &&
f0cb84f8 1448 ptr->ba_pkt_count > ptr->ba_packet_thr) {
53d7938e 1449 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
3e822635
YAP
1450 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1451 BA_SETUP_INPROGRESS);
5e6e3a92
BZ
1452 mwifiex_send_addba(priv, tid, ptr->ra);
1453 } else if (mwifiex_find_stream_to_delete
572e8f3e 1454 (priv, tid, &tid_del, ra)) {
3e822635
YAP
1455 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1456 BA_SETUP_INPROGRESS);
5e6e3a92
BZ
1457 mwifiex_send_delba(priv, tid_del, ra, 1);
1458 }
1459 }
4c9f9fb2 1460 if (mwifiex_is_amsdu_allowed(priv, tid) &&
d85c5fe4
AK
1461 mwifiex_is_11n_aggragation_possible(priv, ptr,
1462 adapter->tx_buf_size))
bd1c6142 1463 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
5e6e3a92
BZ
1464 /* ra_list_spinlock has been freed in
1465 mwifiex_11n_aggregate_pkt() */
1466 else
1467 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1468 /* ra_list_spinlock has been freed in
1469 mwifiex_send_single_packet() */
1470 }
1471 return 0;
1472}
1473
a1777327
AP
1474void mwifiex_process_bypass_tx(struct mwifiex_adapter *adapter)
1475{
1476 struct mwifiex_tx_param tx_param;
1477 struct sk_buff *skb;
1478 struct mwifiex_txinfo *tx_info;
1479 struct mwifiex_private *priv;
1480 int i;
1481
1482 if (adapter->data_sent || adapter->tx_lock_flag)
1483 return;
1484
1485 for (i = 0; i < adapter->priv_num; ++i) {
1486 priv = adapter->priv[i];
1487
735ab6bf
ZL
1488 if (!priv)
1489 continue;
1490
1491 if (adapter->if_ops.is_port_ready &&
1492 !adapter->if_ops.is_port_ready(priv))
1493 continue;
1494
a1777327
AP
1495 if (skb_queue_empty(&priv->bypass_txq))
1496 continue;
1497
1498 skb = skb_dequeue(&priv->bypass_txq);
1499 tx_info = MWIFIEX_SKB_TXCB(skb);
1500
1501 /* no aggregation for bypass packets */
1502 tx_param.next_pkt_len = 0;
1503
1504 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
1505 skb_queue_head(&priv->bypass_txq, skb);
1506 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1507 } else {
1508 atomic_dec(&adapter->bypass_tx_pending);
1509 }
1510 }
1511}
1512
5e6e3a92
BZ
1513/*
1514 * This function transmits the highest priority packet awaiting in the
1515 * WMM Queues.
1516 */
1517void
1518mwifiex_wmm_process_tx(struct mwifiex_adapter *adapter)
1519{
1520 do {
5e6e3a92
BZ
1521 if (mwifiex_dequeue_tx_packet(adapter))
1522 break;
e35000ea
ZL
1523 if (adapter->iface_type != MWIFIEX_SDIO) {
1524 if (adapter->data_sent ||
1525 adapter->tx_lock_flag)
1526 break;
1527 } else {
1528 if (atomic_read(&adapter->tx_queued) >=
1529 MWIFIEX_MAX_PKTS_TXQ)
1530 break;
1531 }
93968147 1532 } while (!mwifiex_wmm_lists_empty(adapter));
5e6e3a92 1533}
This page took 0.435353 seconds and 5 git commands to generate.