Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec...
[linux-2.6-block.git] / drivers / net / wireless / mwifiex / wmm.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: WMM
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
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
c9e2404c
AP
40static bool enable_tx_amsdu;
41module_param(enable_tx_amsdu, bool, 0644);
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 *
95mwifiex_wmm_allocate_ralist_node(struct mwifiex_adapter *adapter, u8 *ra)
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
BZ
109
110 dev_dbg(adapter->dev, "info: allocated ra_list %p\n", ra_list);
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{
120 u32 sec, usec;
121 struct timeval ba_tstamp;
122 u8 ba_threshold;
123
124 /* setup ba_packet_threshold here random number between
125 * [BA_SETUP_PACKET_OFFSET,
126 * BA_SETUP_PACKET_OFFSET+BA_SETUP_MAX_PACKET_THRESHOLD-1]
127 */
128
129 do_gettimeofday(&ba_tstamp);
130 sec = (ba_tstamp.tv_sec & 0xFFFF) + (ba_tstamp.tv_sec >> 16);
131 usec = (ba_tstamp.tv_usec & 0xFFFF) + (ba_tstamp.tv_usec >> 16);
132 ba_threshold = (((sec << 16) + usec) % BA_SETUP_MAX_PACKET_THRESHOLD)
133 + BA_SETUP_PACKET_OFFSET;
134
135 return ba_threshold;
136}
137
5e6e3a92
BZ
138/*
139 * This function allocates and adds a RA list for all TIDs
140 * with the given RA.
141 */
142void
143mwifiex_ralist_add(struct mwifiex_private *priv, u8 *ra)
144{
145 int i;
146 struct mwifiex_ra_list_tbl *ra_list;
147 struct mwifiex_adapter *adapter = priv->adapter;
5a009adf
AP
148 struct mwifiex_sta_node *node;
149 unsigned long flags;
150
151 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
152 node = mwifiex_get_sta_entry(priv, ra);
153 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
5e6e3a92
BZ
154
155 for (i = 0; i < MAX_NUM_TID; ++i) {
156 ra_list = mwifiex_wmm_allocate_ralist_node(adapter, ra);
157 dev_dbg(adapter->dev, "info: created ra_list %p\n", ra_list);
158
159 if (!ra_list)
160 break;
161
5a009adf 162 ra_list->is_11n_enabled = 0;
daeb5bb4 163 ra_list->tdls_link = false;
5a009adf 164 if (!mwifiex_queuing_ra_based(priv)) {
daeb5bb4
AP
165 if (mwifiex_get_tdls_link_status(priv, ra) ==
166 TDLS_SETUP_COMPLETE) {
167 ra_list->is_11n_enabled =
168 mwifiex_tdls_peer_11n_enabled(priv, ra);
169 } else {
170 ra_list->is_11n_enabled = IS_11N_ENABLED(priv);
171 }
5a009adf
AP
172 } else {
173 ra_list->is_11n_enabled =
174 mwifiex_is_sta_11n_enabled(priv, node);
175 if (ra_list->is_11n_enabled)
176 ra_list->max_amsdu = node->max_amsdu;
177 }
5e6e3a92
BZ
178
179 dev_dbg(adapter->dev, "data: ralist %p: is_11n_enabled=%d\n",
180 ra_list, ra_list->is_11n_enabled);
181
5a009adf 182 if (ra_list->is_11n_enabled) {
f0cb84f8 183 ra_list->ba_pkt_count = 0;
5a009adf
AP
184 ra_list->ba_packet_thr =
185 mwifiex_get_random_ba_threshold();
186 }
5e6e3a92 187 list_add_tail(&ra_list->list,
c65a30f3 188 &priv->wmm.tid_tbl_ptr[i].ra_list);
5e6e3a92
BZ
189 }
190}
191
192/*
193 * This function sets the WMM queue priorities to their default values.
194 */
195static void mwifiex_wmm_default_queue_priorities(struct mwifiex_private *priv)
196{
197 /* Default queue priorities: VO->VI->BE->BK */
198 priv->wmm.queue_priority[0] = WMM_AC_VO;
199 priv->wmm.queue_priority[1] = WMM_AC_VI;
200 priv->wmm.queue_priority[2] = WMM_AC_BE;
201 priv->wmm.queue_priority[3] = WMM_AC_BK;
202}
203
204/*
205 * This function map ACs to TIDs.
206 */
207static void
41a24a29 208mwifiex_wmm_queue_priorities_tid(struct mwifiex_private *priv)
5e6e3a92 209{
41a24a29 210 struct mwifiex_wmm_desc *wmm = &priv->wmm;
49729ff6 211 u8 *queue_priority = wmm->queue_priority;
5e6e3a92
BZ
212 int i;
213
214 for (i = 0; i < 4; ++i) {
215 tos_to_tid[7 - (i * 2)] = ac_to_tid[queue_priority[i]][1];
216 tos_to_tid[6 - (i * 2)] = ac_to_tid[queue_priority[i]][0];
217 }
49729ff6
MY
218
219 for (i = 0; i < MAX_NUM_TID; ++i)
41a24a29 220 priv->tos_to_tid_inv[tos_to_tid[i]] = (u8)i;
49729ff6
MY
221
222 atomic_set(&wmm->highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
223}
224
225/*
226 * This function initializes WMM priority queues.
227 */
228void
229mwifiex_wmm_setup_queue_priorities(struct mwifiex_private *priv,
230 struct ieee_types_wmm_parameter *wmm_ie)
231{
232 u16 cw_min, avg_back_off, tmp[4];
233 u32 i, j, num_ac;
234 u8 ac_idx;
235
236 if (!wmm_ie || !priv->wmm_enabled) {
237 /* WMM is not enabled, just set the defaults and return */
238 mwifiex_wmm_default_queue_priorities(priv);
239 return;
240 }
241
242 dev_dbg(priv->adapter->dev, "info: WMM Parameter IE: version=%d, "
243 "qos_info Parameter Set Count=%d, Reserved=%#x\n",
244 wmm_ie->vend_hdr.version, wmm_ie->qos_info_bitmap &
245 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK,
246 wmm_ie->reserved);
247
248 for (num_ac = 0; num_ac < ARRAY_SIZE(wmm_ie->ac_params); num_ac++) {
c65a30f3
YAP
249 u8 ecw = wmm_ie->ac_params[num_ac].ecw_bitmap;
250 u8 aci_aifsn = wmm_ie->ac_params[num_ac].aci_aifsn_bitmap;
251 cw_min = (1 << (ecw & MWIFIEX_ECW_MIN)) - 1;
252 avg_back_off = (cw_min >> 1) + (aci_aifsn & MWIFIEX_AIFSN);
253
254 ac_idx = wmm_aci_to_qidx_map[(aci_aifsn & MWIFIEX_ACI) >> 5];
5e6e3a92
BZ
255 priv->wmm.queue_priority[ac_idx] = ac_idx;
256 tmp[ac_idx] = avg_back_off;
257
c65a30f3
YAP
258 dev_dbg(priv->adapter->dev,
259 "info: WMM: CWmax=%d CWmin=%d Avg Back-off=%d\n",
260 (1 << ((ecw & MWIFIEX_ECW_MAX) >> 4)) - 1,
261 cw_min, avg_back_off);
5e6e3a92
BZ
262 mwifiex_wmm_ac_debug_print(&wmm_ie->ac_params[num_ac]);
263 }
264
265 /* Bubble sort */
266 for (i = 0; i < num_ac; i++) {
267 for (j = 1; j < num_ac - i; j++) {
268 if (tmp[j - 1] > tmp[j]) {
269 swap(tmp[j - 1], tmp[j]);
270 swap(priv->wmm.queue_priority[j - 1],
271 priv->wmm.queue_priority[j]);
272 } else if (tmp[j - 1] == tmp[j]) {
273 if (priv->wmm.queue_priority[j - 1]
274 < priv->wmm.queue_priority[j])
275 swap(priv->wmm.queue_priority[j - 1],
276 priv->wmm.queue_priority[j]);
277 }
278 }
279 }
280
41a24a29 281 mwifiex_wmm_queue_priorities_tid(priv);
5e6e3a92
BZ
282}
283
284/*
285 * This function evaluates whether or not an AC is to be downgraded.
286 *
287 * In case the AC is not enabled, the highest AC is returned that is
288 * enabled and does not require admission control.
289 */
290static enum mwifiex_wmm_ac_e
291mwifiex_wmm_eval_downgrade_ac(struct mwifiex_private *priv,
292 enum mwifiex_wmm_ac_e eval_ac)
293{
294 int down_ac;
295 enum mwifiex_wmm_ac_e ret_ac;
296 struct mwifiex_wmm_ac_status *ac_status;
297
298 ac_status = &priv->wmm.ac_status[eval_ac];
299
300 if (!ac_status->disabled)
301 /* Okay to use this AC, its enabled */
302 return eval_ac;
303
304 /* Setup a default return value of the lowest priority */
305 ret_ac = WMM_AC_BK;
306
307 /*
308 * Find the highest AC that is enabled and does not require
309 * admission control. The spec disallows downgrading to an AC,
310 * which is enabled due to a completed admission control.
311 * Unadmitted traffic is not to be sent on an AC with admitted
312 * traffic.
313 */
314 for (down_ac = WMM_AC_BK; down_ac < eval_ac; down_ac++) {
315 ac_status = &priv->wmm.ac_status[down_ac];
316
317 if (!ac_status->disabled && !ac_status->flow_required)
318 /* AC is enabled and does not require admission
319 control */
320 ret_ac = (enum mwifiex_wmm_ac_e) down_ac;
321 }
322
323 return ret_ac;
324}
325
326/*
327 * This function downgrades WMM priority queue.
328 */
329void
330mwifiex_wmm_setup_ac_downgrade(struct mwifiex_private *priv)
331{
332 int ac_val;
333
334 dev_dbg(priv->adapter->dev, "info: WMM: AC Priorities:"
335 "BK(0), BE(1), VI(2), VO(3)\n");
336
337 if (!priv->wmm_enabled) {
338 /* WMM is not enabled, default priorities */
339 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++)
340 priv->wmm.ac_down_graded_vals[ac_val] =
c65a30f3 341 (enum mwifiex_wmm_ac_e) ac_val;
5e6e3a92
BZ
342 } else {
343 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++) {
344 priv->wmm.ac_down_graded_vals[ac_val]
345 = mwifiex_wmm_eval_downgrade_ac(priv,
346 (enum mwifiex_wmm_ac_e) ac_val);
c65a30f3
YAP
347 dev_dbg(priv->adapter->dev,
348 "info: WMM: AC PRIO %d maps to %d\n",
5e6e3a92
BZ
349 ac_val, priv->wmm.ac_down_graded_vals[ac_val]);
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) {
41a24a29
AP
416 priv->aggr_prio_tbl[i].amsdu = priv->tos_to_tid_inv[i];
417 priv->aggr_prio_tbl[i].ampdu_ap =
418 priv->tos_to_tid_inv[i];
419 priv->aggr_prio_tbl[i].ampdu_user =
420 priv->tos_to_tid_inv[i];
5e6e3a92
BZ
421 }
422
423 priv->aggr_prio_tbl[6].amsdu
c65a30f3
YAP
424 = priv->aggr_prio_tbl[6].ampdu_ap
425 = priv->aggr_prio_tbl[6].ampdu_user
426 = BA_STREAM_NOT_ALLOWED;
5e6e3a92
BZ
427
428 priv->aggr_prio_tbl[7].amsdu = priv->aggr_prio_tbl[7].ampdu_ap
c65a30f3
YAP
429 = priv->aggr_prio_tbl[7].ampdu_user
430 = BA_STREAM_NOT_ALLOWED;
5e6e3a92 431
04abc0a3 432 mwifiex_set_ba_params(priv);
92583924
SP
433 mwifiex_reset_11n_rx_seq_num(priv);
434
f699254c 435 atomic_set(&priv->wmm.tx_pkts_queued, 0);
49729ff6 436 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
437 }
438}
439
440/*
441 * This function checks if WMM Tx queue is empty.
442 */
443int
444mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter)
445{
f699254c 446 int i;
5e6e3a92
BZ
447 struct mwifiex_private *priv;
448
f699254c
MY
449 for (i = 0; i < adapter->priv_num; ++i) {
450 priv = adapter->priv[i];
451 if (priv && atomic_read(&priv->wmm.tx_pkts_queued))
a8aa69dc 452 return false;
5e6e3a92
BZ
453 }
454
455 return true;
456}
457
458/*
459 * This function deletes all packets in an RA list node.
460 *
461 * The packet sent completion callback handler are called with
462 * status failure, after they are dequeued to ensure proper
463 * cleanup. The RA list node itself is freed at the end.
464 */
465static void
466mwifiex_wmm_del_pkts_in_ralist_node(struct mwifiex_private *priv,
467 struct mwifiex_ra_list_tbl *ra_list)
468{
469 struct mwifiex_adapter *adapter = priv->adapter;
470 struct sk_buff *skb, *tmp;
471
472 skb_queue_walk_safe(&ra_list->skb_head, skb, tmp)
47411a06 473 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
474}
475
476/*
477 * This function deletes all packets in an RA list.
478 *
479 * Each nodes in the RA list are freed individually first, and then
480 * the RA list itself is freed.
481 */
482static void
483mwifiex_wmm_del_pkts_in_ralist(struct mwifiex_private *priv,
484 struct list_head *ra_list_head)
485{
486 struct mwifiex_ra_list_tbl *ra_list;
487
488 list_for_each_entry(ra_list, ra_list_head, list)
489 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
490}
491
492/*
493 * This function deletes all packets in all RA lists.
494 */
495static void mwifiex_wmm_cleanup_queues(struct mwifiex_private *priv)
496{
497 int i;
498
499 for (i = 0; i < MAX_NUM_TID; i++)
500 mwifiex_wmm_del_pkts_in_ralist(priv, &priv->wmm.tid_tbl_ptr[i].
c65a30f3 501 ra_list);
f699254c
MY
502
503 atomic_set(&priv->wmm.tx_pkts_queued, 0);
49729ff6 504 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
5e6e3a92
BZ
505}
506
507/*
508 * This function deletes all route addresses from all RA lists.
509 */
510static void mwifiex_wmm_delete_all_ralist(struct mwifiex_private *priv)
511{
512 struct mwifiex_ra_list_tbl *ra_list, *tmp_node;
513 int i;
514
515 for (i = 0; i < MAX_NUM_TID; ++i) {
516 dev_dbg(priv->adapter->dev,
c65a30f3 517 "info: ra_list: freeing buf for tid %d\n", i);
5e6e3a92 518 list_for_each_entry_safe(ra_list, tmp_node,
c65a30f3
YAP
519 &priv->wmm.tid_tbl_ptr[i].ra_list,
520 list) {
5e6e3a92
BZ
521 list_del(&ra_list->list);
522 kfree(ra_list);
523 }
524
525 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[i].ra_list);
5e6e3a92
BZ
526 }
527}
528
529/*
530 * This function cleans up the Tx and Rx queues.
531 *
532 * Cleanup includes -
533 * - All packets in RA lists
534 * - All entries in Rx reorder table
535 * - All entries in Tx BA stream table
536 * - MPA buffer (if required)
537 * - All RA lists
538 */
539void
540mwifiex_clean_txrx(struct mwifiex_private *priv)
541{
542 unsigned long flags;
56bd24a1 543 struct sk_buff *skb, *tmp;
5e6e3a92
BZ
544
545 mwifiex_11n_cleanup_reorder_tbl(priv);
546 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
547
548 mwifiex_wmm_cleanup_queues(priv);
549 mwifiex_11n_delete_all_tx_ba_stream_tbl(priv);
550
551 if (priv->adapter->if_ops.cleanup_mpa_buf)
552 priv->adapter->if_ops.cleanup_mpa_buf(priv->adapter);
553
554 mwifiex_wmm_delete_all_ralist(priv);
555 memcpy(tos_to_tid, ac_to_tid, sizeof(tos_to_tid));
556
4f7ba432
AP
557 if (priv->adapter->if_ops.clean_pcie_ring &&
558 !priv->adapter->surprise_removed)
fbd7e7ac 559 priv->adapter->if_ops.clean_pcie_ring(priv->adapter);
5e6e3a92 560 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
56bd24a1
AP
561
562 skb_queue_walk_safe(&priv->tdls_txq, skb, tmp)
563 mwifiex_write_data_complete(priv->adapter, skb, 0, -1);
5e6e3a92
BZ
564}
565
566/*
567 * This function retrieves a particular RA list node, matching with the
568 * given TID and RA address.
569 */
570static struct mwifiex_ra_list_tbl *
571mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid,
572 u8 *ra_addr)
573{
574 struct mwifiex_ra_list_tbl *ra_list;
575
576 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
577 list) {
578 if (!memcmp(ra_list->ra, ra_addr, ETH_ALEN))
579 return ra_list;
580 }
581
582 return NULL;
583}
584
585/*
586 * This function retrieves an RA list node for a given TID and
587 * RA address pair.
588 *
589 * If no such node is found, a new node is added first and then
590 * retrieved.
591 */
5f2caaf3 592struct mwifiex_ra_list_tbl *
5e6e3a92
BZ
593mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid, u8 *ra_addr)
594{
595 struct mwifiex_ra_list_tbl *ra_list;
596
597 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
598 if (ra_list)
599 return ra_list;
600 mwifiex_ralist_add(priv, ra_addr);
601
602 return mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
603}
604
605/*
606 * This function checks if a particular RA list node exists in a given TID
607 * table index.
608 */
609int
610mwifiex_is_ralist_valid(struct mwifiex_private *priv,
611 struct mwifiex_ra_list_tbl *ra_list, int ptr_index)
612{
613 struct mwifiex_ra_list_tbl *rlist;
614
615 list_for_each_entry(rlist, &priv->wmm.tid_tbl_ptr[ptr_index].ra_list,
616 list) {
617 if (rlist == ra_list)
618 return true;
619 }
620
621 return false;
622}
623
624/*
625 * This function adds a packet to WMM queue.
626 *
627 * In disconnected state the packet is immediately dropped and the
628 * packet send completion callback is called with status failure.
629 *
630 * Otherwise, the correct RA list node is located and the packet
631 * is queued at the list tail.
632 */
633void
2690e1bb 634mwifiex_wmm_add_buf_txqueue(struct mwifiex_private *priv,
5e6e3a92
BZ
635 struct sk_buff *skb)
636{
2690e1bb 637 struct mwifiex_adapter *adapter = priv->adapter;
5e6e3a92
BZ
638 u32 tid;
639 struct mwifiex_ra_list_tbl *ra_list;
640 u8 ra[ETH_ALEN], tid_down;
641 unsigned long flags;
d63bf5e5
AP
642 struct list_head list_head;
643 int tdls_status = TDLS_NOT_SETUP;
644 struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
645 struct mwifiex_txinfo *tx_info = MWIFIEX_SKB_TXCB(skb);
646
647 memcpy(ra, eth_hdr->h_dest, ETH_ALEN);
648
649 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA &&
650 ISSUPP_TDLS_ENABLED(adapter->fw_cap_info)) {
651 if (ntohs(eth_hdr->h_proto) == ETH_P_TDLS)
652 dev_dbg(adapter->dev,
653 "TDLS setup packet for %pM. Don't block\n", ra);
654 else
655 tdls_status = mwifiex_get_tdls_link_status(priv, ra);
656 }
5e6e3a92 657
e39faa73 658 if (!priv->media_connected && !mwifiex_is_skb_mgmt_frame(skb)) {
5e6e3a92 659 dev_dbg(adapter->dev, "data: drop packet in disconnect\n");
47411a06 660 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
661 return;
662 }
663
664 tid = skb->priority;
665
666 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
667
668 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
669
670 /* In case of infra as we have already created the list during
671 association we just don't have to call get_queue_raptr, we will
672 have only 1 raptr for a tid in case of infra */
e39faa73
SP
673 if (!mwifiex_queuing_ra_based(priv) &&
674 !mwifiex_is_skb_mgmt_frame(skb)) {
d63bf5e5
AP
675 switch (tdls_status) {
676 case TDLS_SETUP_COMPLETE:
677 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down,
678 ra);
679 tx_info->flags |= MWIFIEX_BUF_FLAG_TDLS_PKT;
680 break;
681 case TDLS_SETUP_INPROGRESS:
682 skb_queue_tail(&priv->tdls_txq, skb);
683 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
684 flags);
685 return;
686 default:
687 list_head = priv->wmm.tid_tbl_ptr[tid_down].ra_list;
688 if (!list_empty(&list_head))
689 ra_list = list_first_entry(
690 &list_head, struct mwifiex_ra_list_tbl,
691 list);
692 else
693 ra_list = NULL;
694 break;
695 }
5e6e3a92
BZ
696 } else {
697 memcpy(ra, skb->data, ETH_ALEN);
e39faa73 698 if (ra[0] & 0x01 || mwifiex_is_skb_mgmt_frame(skb))
4e3c4420 699 memset(ra, 0xff, ETH_ALEN);
5e6e3a92
BZ
700 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down, ra);
701 }
702
703 if (!ra_list) {
704 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
47411a06 705 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
706 return;
707 }
708
709 skb_queue_tail(&ra_list->skb_head, skb);
710
f0cb84f8 711 ra_list->ba_pkt_count++;
c7d9ed9e 712 ra_list->total_pkt_count++;
5e6e3a92 713
49729ff6 714 if (atomic_read(&priv->wmm.highest_queued_prio) <
41a24a29 715 priv->tos_to_tid_inv[tid_down])
49729ff6 716 atomic_set(&priv->wmm.highest_queued_prio,
41a24a29 717 priv->tos_to_tid_inv[tid_down]);
49729ff6 718
2716fd7d
AF
719 atomic_inc(&priv->wmm.tx_pkts_queued);
720
5e6e3a92
BZ
721 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
722}
723
724/*
725 * This function processes the get WMM status command response from firmware.
726 *
727 * The response may contain multiple TLVs -
728 * - AC Queue status TLVs
729 * - Current WMM Parameter IE TLV
730 * - Admission Control action frame TLVs
731 *
732 * This function parses the TLVs and then calls further specific functions
733 * to process any changes in the queue prioritize or state.
734 */
735int mwifiex_ret_wmm_get_status(struct mwifiex_private *priv,
736 const struct host_cmd_ds_command *resp)
737{
738 u8 *curr = (u8 *) &resp->params.get_wmm_status;
739 uint16_t resp_len = le16_to_cpu(resp->size), tlv_len;
c856197d 740 bool valid = true;
5e6e3a92
BZ
741
742 struct mwifiex_ie_types_data *tlv_hdr;
743 struct mwifiex_ie_types_wmm_queue_status *tlv_wmm_qstatus;
744 struct ieee_types_wmm_parameter *wmm_param_ie = NULL;
745 struct mwifiex_wmm_ac_status *ac_status;
746
747 dev_dbg(priv->adapter->dev, "info: WMM: WMM_GET_STATUS cmdresp received: %d\n",
c65a30f3 748 resp_len);
5e6e3a92
BZ
749
750 while ((resp_len >= sizeof(tlv_hdr->header)) && valid) {
751 tlv_hdr = (struct mwifiex_ie_types_data *) curr;
752 tlv_len = le16_to_cpu(tlv_hdr->header.len);
753
95edbc30
DC
754 if (resp_len < tlv_len + sizeof(tlv_hdr->header))
755 break;
756
5e6e3a92
BZ
757 switch (le16_to_cpu(tlv_hdr->header.type)) {
758 case TLV_TYPE_WMMQSTATUS:
759 tlv_wmm_qstatus =
760 (struct mwifiex_ie_types_wmm_queue_status *)
761 tlv_hdr;
762 dev_dbg(priv->adapter->dev,
763 "info: CMD_RESP: WMM_GET_STATUS:"
764 " QSTATUS TLV: %d, %d, %d\n",
c65a30f3
YAP
765 tlv_wmm_qstatus->queue_index,
766 tlv_wmm_qstatus->flow_required,
767 tlv_wmm_qstatus->disabled);
5e6e3a92
BZ
768
769 ac_status = &priv->wmm.ac_status[tlv_wmm_qstatus->
770 queue_index];
771 ac_status->disabled = tlv_wmm_qstatus->disabled;
772 ac_status->flow_required =
c65a30f3 773 tlv_wmm_qstatus->flow_required;
5e6e3a92
BZ
774 ac_status->flow_created = tlv_wmm_qstatus->flow_created;
775 break;
776
777 case WLAN_EID_VENDOR_SPECIFIC:
778 /*
779 * Point the regular IEEE IE 2 bytes into the Marvell IE
780 * and setup the IEEE IE type and length byte fields
781 */
782
783 wmm_param_ie =
784 (struct ieee_types_wmm_parameter *) (curr +
785 2);
786 wmm_param_ie->vend_hdr.len = (u8) tlv_len;
787 wmm_param_ie->vend_hdr.element_id =
788 WLAN_EID_VENDOR_SPECIFIC;
789
790 dev_dbg(priv->adapter->dev,
791 "info: CMD_RESP: WMM_GET_STATUS:"
792 " WMM Parameter Set Count: %d\n",
793 wmm_param_ie->qos_info_bitmap &
794 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK);
795
796 memcpy((u8 *) &priv->curr_bss_params.bss_descriptor.
797 wmm_ie, wmm_param_ie,
798 wmm_param_ie->vend_hdr.len + 2);
799
800 break;
801
802 default:
803 valid = false;
804 break;
805 }
806
807 curr += (tlv_len + sizeof(tlv_hdr->header));
808 resp_len -= (tlv_len + sizeof(tlv_hdr->header));
809 }
810
811 mwifiex_wmm_setup_queue_priorities(priv, wmm_param_ie);
812 mwifiex_wmm_setup_ac_downgrade(priv);
813
814 return 0;
815}
816
817/*
818 * Callback handler from the command module to allow insertion of a WMM TLV.
819 *
820 * If the BSS we are associating to supports WMM, this function adds the
821 * required WMM Information IE to the association request command buffer in
822 * the form of a Marvell extended IEEE IE.
823 */
824u32
825mwifiex_wmm_process_association_req(struct mwifiex_private *priv,
826 u8 **assoc_buf,
827 struct ieee_types_wmm_parameter *wmm_ie,
828 struct ieee80211_ht_cap *ht_cap)
829{
830 struct mwifiex_ie_types_wmm_param_set *wmm_tlv;
831 u32 ret_len = 0;
832
833 /* Null checks */
834 if (!assoc_buf)
835 return 0;
836 if (!(*assoc_buf))
837 return 0;
838
839 if (!wmm_ie)
840 return 0;
841
c65a30f3
YAP
842 dev_dbg(priv->adapter->dev,
843 "info: WMM: process assoc req: bss->wmm_ie=%#x\n",
844 wmm_ie->vend_hdr.element_id);
5e6e3a92 845
c65a30f3
YAP
846 if ((priv->wmm_required ||
847 (ht_cap && (priv->adapter->config_bands & BAND_GN ||
848 priv->adapter->config_bands & BAND_AN))) &&
849 wmm_ie->vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC) {
5e6e3a92
BZ
850 wmm_tlv = (struct mwifiex_ie_types_wmm_param_set *) *assoc_buf;
851 wmm_tlv->header.type = cpu_to_le16((u16) wmm_info_ie[0]);
852 wmm_tlv->header.len = cpu_to_le16((u16) wmm_info_ie[1]);
853 memcpy(wmm_tlv->wmm_ie, &wmm_info_ie[2],
c65a30f3 854 le16_to_cpu(wmm_tlv->header.len));
5e6e3a92
BZ
855 if (wmm_ie->qos_info_bitmap & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD)
856 memcpy((u8 *) (wmm_tlv->wmm_ie
c65a30f3
YAP
857 + le16_to_cpu(wmm_tlv->header.len)
858 - sizeof(priv->wmm_qosinfo)),
859 &priv->wmm_qosinfo, sizeof(priv->wmm_qosinfo));
5e6e3a92
BZ
860
861 ret_len = sizeof(wmm_tlv->header)
c65a30f3 862 + le16_to_cpu(wmm_tlv->header.len);
5e6e3a92
BZ
863
864 *assoc_buf += ret_len;
865 }
866
867 return ret_len;
868}
869
870/*
871 * This function computes the time delay in the driver queues for a
872 * given packet.
873 *
874 * When the packet is received at the OS/Driver interface, the current
875 * time is set in the packet structure. The difference between the present
876 * time and that received time is computed in this function and limited
877 * based on pre-compiled limits in the driver.
878 */
879u8
880mwifiex_wmm_compute_drv_pkt_delay(struct mwifiex_private *priv,
c65a30f3 881 const struct sk_buff *skb)
5e6e3a92 882{
270e58e8 883 u8 ret_val;
5e6e3a92
BZ
884 struct timeval out_tstamp, in_tstamp;
885 u32 queue_delay;
886
887 do_gettimeofday(&out_tstamp);
888 in_tstamp = ktime_to_timeval(skb->tstamp);
889
890 queue_delay = (out_tstamp.tv_sec - in_tstamp.tv_sec) * 1000;
891 queue_delay += (out_tstamp.tv_usec - in_tstamp.tv_usec) / 1000;
892
893 /*
894 * Queue delay is passed as a uint8 in units of 2ms (ms shifted
895 * by 1). Min value (other than 0) is therefore 2ms, max is 510ms.
896 *
897 * Pass max value if queue_delay is beyond the uint8 range
898 */
899 ret_val = (u8) (min(queue_delay, priv->wmm.drv_pkt_delay_max) >> 1);
900
901 dev_dbg(priv->adapter->dev, "data: WMM: Pkt Delay: %d ms,"
902 " %d ms sent to FW\n", queue_delay, ret_val);
903
904 return ret_val;
905}
906
907/*
908 * This function retrieves the highest priority RA list table pointer.
909 */
910static struct mwifiex_ra_list_tbl *
911mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter,
912 struct mwifiex_private **priv, int *tid)
913{
914 struct mwifiex_private *priv_tmp;
2e237319 915 struct mwifiex_ra_list_tbl *ptr;
5e6e3a92 916 struct mwifiex_tid_tbl *tid_ptr;
bb7de2ba 917 atomic_t *hqp;
2716fd7d 918 unsigned long flags_bss, flags_ra;
5e6e3a92
BZ
919 int i, j;
920
b006ed54 921 /* check the BSS with highest priority first */
5e6e3a92
BZ
922 for (j = adapter->priv_num - 1; j >= 0; --j) {
923 spin_lock_irqsave(&adapter->bss_prio_tbl[j].bss_prio_lock,
2716fd7d
AF
924 flags_bss);
925
b006ed54
AF
926 /* iterate over BSS with the equal priority */
927 list_for_each_entry(adapter->bss_prio_tbl[j].bss_prio_cur,
928 &adapter->bss_prio_tbl[j].bss_prio_head,
929 list) {
16051b0e 930
b006ed54 931 priv_tmp = adapter->bss_prio_tbl[j].bss_prio_cur->priv;
5e6e3a92 932
333f6b22 933 if (atomic_read(&priv_tmp->wmm.tx_pkts_queued) == 0)
b006ed54 934 continue;
333f6b22
AF
935
936 /* iterate over the WMM queues of the BSS */
937 hqp = &priv_tmp->wmm.highest_queued_prio;
49729ff6 938 for (i = atomic_read(hqp); i >= LOW_PRIO_TID; --i) {
5e6e3a92 939
2716fd7d
AF
940 spin_lock_irqsave(&priv_tmp->wmm.
941 ra_list_spinlock, flags_ra);
942
5e6e3a92
BZ
943 tid_ptr = &(priv_tmp)->wmm.
944 tid_tbl_ptr[tos_to_tid[i]];
945
2e237319
AF
946 /* iterate over receiver addresses */
947 list_for_each_entry(ptr, &tid_ptr->ra_list,
948 list) {
5e6e3a92 949
2716fd7d
AF
950 if (!skb_queue_empty(&ptr->skb_head))
951 /* holds both locks */
bb7de2ba 952 goto found;
2e237319 953 }
bb7de2ba 954
2716fd7d
AF
955 spin_unlock_irqrestore(&priv_tmp->wmm.
956 ra_list_spinlock,
957 flags_ra);
5e6e3a92 958 }
b006ed54 959 }
5e6e3a92 960
2716fd7d
AF
961 spin_unlock_irqrestore(&adapter->bss_prio_tbl[j].bss_prio_lock,
962 flags_bss);
5e6e3a92 963 }
2716fd7d 964
5e6e3a92 965 return NULL;
bb7de2ba
YAP
966
967found:
2716fd7d 968 /* holds bss_prio_lock / ra_list_spinlock */
bb7de2ba
YAP
969 if (atomic_read(hqp) > i)
970 atomic_set(hqp, i);
2716fd7d
AF
971 spin_unlock_irqrestore(&priv_tmp->wmm.ra_list_spinlock, flags_ra);
972 spin_unlock_irqrestore(&adapter->bss_prio_tbl[j].bss_prio_lock,
973 flags_bss);
bb7de2ba
YAP
974
975 *priv = priv_tmp;
976 *tid = tos_to_tid[i];
977
978 return ptr;
5e6e3a92
BZ
979}
980
b006ed54 981/* This functions rotates ra and bss lists so packets are picked round robin.
2e237319
AF
982 *
983 * After a packet is successfully transmitted, rotate the ra list, so the ra
984 * next to the one transmitted, will come first in the list. This way we pick
b006ed54
AF
985 * the ra' in a round robin fashion. Same applies to bss nodes of equal
986 * priority.
2e237319
AF
987 *
988 * Function also increments wmm.packets_out counter.
989 */
990void mwifiex_rotate_priolists(struct mwifiex_private *priv,
991 struct mwifiex_ra_list_tbl *ra,
992 int tid)
993{
b006ed54
AF
994 struct mwifiex_adapter *adapter = priv->adapter;
995 struct mwifiex_bss_prio_tbl *tbl = adapter->bss_prio_tbl;
2e237319
AF
996 struct mwifiex_tid_tbl *tid_ptr = &priv->wmm.tid_tbl_ptr[tid];
997 unsigned long flags;
998
b006ed54
AF
999 spin_lock_irqsave(&tbl[priv->bss_priority].bss_prio_lock, flags);
1000 /*
1001 * dirty trick: we remove 'head' temporarily and reinsert it after
1002 * curr bss node. imagine list to stay fixed while head is moved
1003 */
1004 list_move(&tbl[priv->bss_priority].bss_prio_head,
1005 &tbl[priv->bss_priority].bss_prio_cur->list);
1006 spin_unlock_irqrestore(&tbl[priv->bss_priority].bss_prio_lock, flags);
1007
2e237319
AF
1008 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1009 if (mwifiex_is_ralist_valid(priv, ra, tid)) {
1010 priv->wmm.packets_out[tid]++;
b006ed54 1011 /* same as above */
2e237319
AF
1012 list_move(&tid_ptr->ra_list, &ra->list);
1013 }
1014 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1015}
1016
d85c5fe4
AK
1017/*
1018 * This function checks if 11n aggregation is possible.
1019 */
1020static int
1021mwifiex_is_11n_aggragation_possible(struct mwifiex_private *priv,
1022 struct mwifiex_ra_list_tbl *ptr,
1023 int max_buf_size)
1024{
1025 int count = 0, total_size = 0;
1026 struct sk_buff *skb, *tmp;
5a009adf
AP
1027 int max_amsdu_size;
1028
1029 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP && priv->ap_11n_enabled &&
1030 ptr->is_11n_enabled)
1031 max_amsdu_size = min_t(int, ptr->max_amsdu, max_buf_size);
1032 else
1033 max_amsdu_size = max_buf_size;
d85c5fe4
AK
1034
1035 skb_queue_walk_safe(&ptr->skb_head, skb, tmp) {
1036 total_size += skb->len;
5a009adf 1037 if (total_size >= max_amsdu_size)
d85c5fe4
AK
1038 break;
1039 if (++count >= MIN_NUM_AMSDU)
1040 return true;
1041 }
1042
1043 return false;
1044}
1045
5e6e3a92
BZ
1046/*
1047 * This function sends a single packet to firmware for transmission.
1048 */
1049static void
1050mwifiex_send_single_packet(struct mwifiex_private *priv,
1051 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1052 unsigned long ra_list_flags)
1053 __releases(&priv->wmm.ra_list_spinlock)
1054{
1055 struct sk_buff *skb, *skb_next;
1056 struct mwifiex_tx_param tx_param;
1057 struct mwifiex_adapter *adapter = priv->adapter;
5e6e3a92
BZ
1058 struct mwifiex_txinfo *tx_info;
1059
1060 if (skb_queue_empty(&ptr->skb_head)) {
1061 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1062 ra_list_flags);
1063 dev_dbg(adapter->dev, "data: nothing to send\n");
1064 return;
1065 }
1066
1067 skb = skb_dequeue(&ptr->skb_head);
1068
1069 tx_info = MWIFIEX_SKB_TXCB(skb);
1070 dev_dbg(adapter->dev, "data: dequeuing the packet %p %p\n", ptr, skb);
1071
c7d9ed9e 1072 ptr->total_pkt_count--;
5e6e3a92
BZ
1073
1074 if (!skb_queue_empty(&ptr->skb_head))
1075 skb_next = skb_peek(&ptr->skb_head);
1076 else
1077 skb_next = NULL;
1078
1079 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1080
1081 tx_param.next_pkt_len = ((skb_next) ? skb_next->len +
1082 sizeof(struct txpd) : 0);
1083
636c4598 1084 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
5e6e3a92
BZ
1085 /* Queue the packet back at the head */
1086 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1087
1088 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1089 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1090 ra_list_flags);
47411a06 1091 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
1092 return;
1093 }
1094
1095 skb_queue_tail(&ptr->skb_head, skb);
1096
c7d9ed9e 1097 ptr->total_pkt_count++;
f0cb84f8 1098 ptr->ba_pkt_count++;
5e6e3a92
BZ
1099 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1100 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1101 ra_list_flags);
1102 } else {
2e237319 1103 mwifiex_rotate_priolists(priv, ptr, ptr_index);
f699254c 1104 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1105 }
1106}
1107
1108/*
1109 * This function checks if the first packet in the given RA list
1110 * is already processed or not.
1111 */
1112static int
1113mwifiex_is_ptr_processed(struct mwifiex_private *priv,
1114 struct mwifiex_ra_list_tbl *ptr)
1115{
1116 struct sk_buff *skb;
1117 struct mwifiex_txinfo *tx_info;
1118
1119 if (skb_queue_empty(&ptr->skb_head))
1120 return false;
1121
1122 skb = skb_peek(&ptr->skb_head);
1123
1124 tx_info = MWIFIEX_SKB_TXCB(skb);
1125 if (tx_info->flags & MWIFIEX_BUF_FLAG_REQUEUED_PKT)
1126 return true;
1127
1128 return false;
1129}
1130
1131/*
1132 * This function sends a single processed packet to firmware for
1133 * transmission.
1134 */
1135static void
1136mwifiex_send_processed_packet(struct mwifiex_private *priv,
1137 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1138 unsigned long ra_list_flags)
1139 __releases(&priv->wmm.ra_list_spinlock)
1140{
1141 struct mwifiex_tx_param tx_param;
1142 struct mwifiex_adapter *adapter = priv->adapter;
1143 int ret = -1;
1144 struct sk_buff *skb, *skb_next;
1145 struct mwifiex_txinfo *tx_info;
1146
1147 if (skb_queue_empty(&ptr->skb_head)) {
1148 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1149 ra_list_flags);
1150 return;
1151 }
1152
1153 skb = skb_dequeue(&ptr->skb_head);
1154
1155 if (!skb_queue_empty(&ptr->skb_head))
1156 skb_next = skb_peek(&ptr->skb_head);
1157 else
1158 skb_next = NULL;
1159
1160 tx_info = MWIFIEX_SKB_TXCB(skb);
1161
1162 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
4daffe35
AK
1163
1164 if (adapter->iface_type == MWIFIEX_USB) {
1165 adapter->data_sent = true;
1166 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_USB_EP_DATA,
1167 skb, NULL);
1168 } else {
1169 tx_param.next_pkt_len =
1170 ((skb_next) ? skb_next->len +
1171 sizeof(struct txpd) : 0);
1172 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
1173 skb, &tx_param);
1174 }
1175
5e6e3a92
BZ
1176 switch (ret) {
1177 case -EBUSY:
1178 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
1179 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1180
1181 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1182 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1183 ra_list_flags);
47411a06 1184 mwifiex_write_data_complete(adapter, skb, 0, -1);
5e6e3a92
BZ
1185 return;
1186 }
1187
1188 skb_queue_tail(&ptr->skb_head, skb);
1189
1190 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1191 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1192 ra_list_flags);
1193 break;
1194 case -1:
e7f767a7
AP
1195 if (adapter->iface_type != MWIFIEX_PCIE)
1196 adapter->data_sent = false;
5e6e3a92
BZ
1197 dev_err(adapter->dev, "host_to_card failed: %#x\n", ret);
1198 adapter->dbg.num_tx_host_to_card_failure++;
47411a06 1199 mwifiex_write_data_complete(adapter, skb, 0, ret);
5e6e3a92
BZ
1200 break;
1201 case -EINPROGRESS:
e7f767a7
AP
1202 if (adapter->iface_type != MWIFIEX_PCIE)
1203 adapter->data_sent = false;
5e6e3a92
BZ
1204 default:
1205 break;
1206 }
1207 if (ret != -EBUSY) {
2e237319 1208 mwifiex_rotate_priolists(priv, ptr, ptr_index);
f699254c 1209 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1210 }
1211}
1212
1213/*
1214 * This function dequeues a packet from the highest priority list
1215 * and transmits it.
1216 */
1217static int
1218mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1219{
1220 struct mwifiex_ra_list_tbl *ptr;
1221 struct mwifiex_private *priv = NULL;
1222 int ptr_index = 0;
1223 u8 ra[ETH_ALEN];
1224 int tid_del = 0, tid = 0;
1225 unsigned long flags;
1226
1227 ptr = mwifiex_wmm_get_highest_priolist_ptr(adapter, &priv, &ptr_index);
1228 if (!ptr)
1229 return -1;
1230
572e8f3e 1231 tid = mwifiex_get_tid(ptr);
5e6e3a92
BZ
1232
1233 dev_dbg(adapter->dev, "data: tid=%d\n", tid);
1234
1235 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1236 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1237 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1238 return -1;
1239 }
1240
1241 if (mwifiex_is_ptr_processed(priv, ptr)) {
1242 mwifiex_send_processed_packet(priv, ptr, ptr_index, flags);
1243 /* ra_list_spinlock has been freed in
1244 mwifiex_send_processed_packet() */
1245 return 0;
1246 }
1247
c65a30f3
YAP
1248 if (!ptr->is_11n_enabled ||
1249 mwifiex_is_ba_stream_setup(priv, ptr, tid) ||
f03ba7e9 1250 priv->wps.session_enable ||
c65a30f3
YAP
1251 ((priv->sec_info.wpa_enabled ||
1252 priv->sec_info.wpa2_enabled) &&
1253 !priv->wpa_is_gtk_set)) {
5e6e3a92
BZ
1254 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1255 /* ra_list_spinlock has been freed in
1256 mwifiex_send_single_packet() */
1257 } else {
eac43227 1258 if (mwifiex_is_ampdu_allowed(priv, ptr, tid) &&
f0cb84f8 1259 ptr->ba_pkt_count > ptr->ba_packet_thr) {
53d7938e 1260 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
3e822635
YAP
1261 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1262 BA_SETUP_INPROGRESS);
5e6e3a92
BZ
1263 mwifiex_send_addba(priv, tid, ptr->ra);
1264 } else if (mwifiex_find_stream_to_delete
572e8f3e 1265 (priv, tid, &tid_del, ra)) {
3e822635
YAP
1266 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1267 BA_SETUP_INPROGRESS);
5e6e3a92
BZ
1268 mwifiex_send_delba(priv, tid_del, ra, 1);
1269 }
1270 }
c9e2404c 1271 if (enable_tx_amsdu && mwifiex_is_amsdu_allowed(priv, tid) &&
d85c5fe4
AK
1272 mwifiex_is_11n_aggragation_possible(priv, ptr,
1273 adapter->tx_buf_size))
bd1c6142 1274 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
5e6e3a92
BZ
1275 /* ra_list_spinlock has been freed in
1276 mwifiex_11n_aggregate_pkt() */
1277 else
1278 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1279 /* ra_list_spinlock has been freed in
1280 mwifiex_send_single_packet() */
1281 }
1282 return 0;
1283}
1284
1285/*
1286 * This function transmits the highest priority packet awaiting in the
1287 * WMM Queues.
1288 */
1289void
1290mwifiex_wmm_process_tx(struct mwifiex_adapter *adapter)
1291{
1292 do {
1293 /* Check if busy */
1294 if (adapter->data_sent || adapter->tx_lock_flag)
1295 break;
1296
1297 if (mwifiex_dequeue_tx_packet(adapter))
1298 break;
93968147 1299 } while (!mwifiex_wmm_lists_empty(adapter));
5e6e3a92 1300}