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