mwifiex: reduce CPU usage by tracking tx_pkts_queued
[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
40/* WMM information IE */
41static const u8 wmm_info_ie[] = { WLAN_EID_VENDOR_SPECIFIC, 0x07,
42 0x00, 0x50, 0xf2, 0x02,
43 0x00, 0x01, 0x00
44};
45
46static const u8 wmm_aci_to_qidx_map[] = { WMM_AC_BE,
47 WMM_AC_BK,
48 WMM_AC_VI,
49 WMM_AC_VO
50};
51
52static u8 tos_to_tid[] = {
53 /* TID DSCP_P2 DSCP_P1 DSCP_P0 WMM_AC */
54 0x01, /* 0 1 0 AC_BK */
55 0x02, /* 0 0 0 AC_BK */
56 0x00, /* 0 0 1 AC_BE */
57 0x03, /* 0 1 1 AC_BE */
58 0x04, /* 1 0 0 AC_VI */
59 0x05, /* 1 0 1 AC_VI */
60 0x06, /* 1 1 0 AC_VO */
61 0x07 /* 1 1 1 AC_VO */
62};
63
64/*
65 * This table inverses the tos_to_tid operation to get a priority
66 * which is in sequential order, and can be compared.
67 * Use this to compare the priority of two different TIDs.
68 */
69static u8 tos_to_tid_inv[] = {
70 0x02, /* from tos_to_tid[2] = 0 */
71 0x00, /* from tos_to_tid[0] = 1 */
72 0x01, /* from tos_to_tid[1] = 2 */
73 0x03,
74 0x04,
75 0x05,
76 0x06,
77 0x07};
78
79static u8 ac_to_tid[4][2] = { {1, 2}, {0, 3}, {4, 5}, {6, 7} };
80
81/*
82 * This function debug prints the priority parameters for a WMM AC.
83 */
84static void
85mwifiex_wmm_ac_debug_print(const struct ieee_types_wmm_ac_parameters *ac_param)
86{
87 const char *ac_str[] = { "BK", "BE", "VI", "VO" };
88
89 pr_debug("info: WMM AC_%s: ACI=%d, ACM=%d, Aifsn=%d, "
90 "EcwMin=%d, EcwMax=%d, TxopLimit=%d\n",
91 ac_str[wmm_aci_to_qidx_map[(ac_param->aci_aifsn_bitmap
92 & MWIFIEX_ACI) >> 5]],
93 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACI) >> 5,
94 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACM) >> 4,
95 ac_param->aci_aifsn_bitmap & MWIFIEX_AIFSN,
96 ac_param->ecw_bitmap & MWIFIEX_ECW_MIN,
97 (ac_param->ecw_bitmap & MWIFIEX_ECW_MAX) >> 4,
98 le16_to_cpu(ac_param->tx_op_limit));
99}
100
101/*
102 * This function allocates a route address list.
103 *
104 * The function also initializes the list with the provided RA.
105 */
106static struct mwifiex_ra_list_tbl *
107mwifiex_wmm_allocate_ralist_node(struct mwifiex_adapter *adapter, u8 *ra)
108{
109 struct mwifiex_ra_list_tbl *ra_list;
110
111 ra_list = kzalloc(sizeof(struct mwifiex_ra_list_tbl), GFP_ATOMIC);
112
113 if (!ra_list) {
114 dev_err(adapter->dev, "%s: failed to alloc ra_list\n",
115 __func__);
116 return NULL;
117 }
118 INIT_LIST_HEAD(&ra_list->list);
119 skb_queue_head_init(&ra_list->skb_head);
120
121 memcpy(ra_list->ra, ra, ETH_ALEN);
122
123 ra_list->total_pkts_size = 0;
124
125 dev_dbg(adapter->dev, "info: allocated ra_list %p\n", ra_list);
126
127 return ra_list;
128}
129
130/*
131 * This function allocates and adds a RA list for all TIDs
132 * with the given RA.
133 */
134void
135mwifiex_ralist_add(struct mwifiex_private *priv, u8 *ra)
136{
137 int i;
138 struct mwifiex_ra_list_tbl *ra_list;
139 struct mwifiex_adapter *adapter = priv->adapter;
140
141 for (i = 0; i < MAX_NUM_TID; ++i) {
142 ra_list = mwifiex_wmm_allocate_ralist_node(adapter, ra);
143 dev_dbg(adapter->dev, "info: created ra_list %p\n", ra_list);
144
145 if (!ra_list)
146 break;
147
148 if (!mwifiex_queuing_ra_based(priv))
149 ra_list->is_11n_enabled = IS_11N_ENABLED(priv);
150 else
151 ra_list->is_11n_enabled = false;
152
153 dev_dbg(adapter->dev, "data: ralist %p: is_11n_enabled=%d\n",
154 ra_list, ra_list->is_11n_enabled);
155
156 list_add_tail(&ra_list->list,
157 &priv->wmm.tid_tbl_ptr[i].ra_list);
158
159 if (!priv->wmm.tid_tbl_ptr[i].ra_list_curr)
160 priv->wmm.tid_tbl_ptr[i].ra_list_curr = ra_list;
161 }
162}
163
164/*
165 * This function sets the WMM queue priorities to their default values.
166 */
167static void mwifiex_wmm_default_queue_priorities(struct mwifiex_private *priv)
168{
169 /* Default queue priorities: VO->VI->BE->BK */
170 priv->wmm.queue_priority[0] = WMM_AC_VO;
171 priv->wmm.queue_priority[1] = WMM_AC_VI;
172 priv->wmm.queue_priority[2] = WMM_AC_BE;
173 priv->wmm.queue_priority[3] = WMM_AC_BK;
174}
175
176/*
177 * This function map ACs to TIDs.
178 */
179static void
572e8f3e 180mwifiex_wmm_queue_priorities_tid(u8 queue_priority[])
5e6e3a92
BZ
181{
182 int i;
183
184 for (i = 0; i < 4; ++i) {
185 tos_to_tid[7 - (i * 2)] = ac_to_tid[queue_priority[i]][1];
186 tos_to_tid[6 - (i * 2)] = ac_to_tid[queue_priority[i]][0];
187 }
188}
189
190/*
191 * This function initializes WMM priority queues.
192 */
193void
194mwifiex_wmm_setup_queue_priorities(struct mwifiex_private *priv,
195 struct ieee_types_wmm_parameter *wmm_ie)
196{
197 u16 cw_min, avg_back_off, tmp[4];
198 u32 i, j, num_ac;
199 u8 ac_idx;
200
201 if (!wmm_ie || !priv->wmm_enabled) {
202 /* WMM is not enabled, just set the defaults and return */
203 mwifiex_wmm_default_queue_priorities(priv);
204 return;
205 }
206
207 dev_dbg(priv->adapter->dev, "info: WMM Parameter IE: version=%d, "
208 "qos_info Parameter Set Count=%d, Reserved=%#x\n",
209 wmm_ie->vend_hdr.version, wmm_ie->qos_info_bitmap &
210 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK,
211 wmm_ie->reserved);
212
213 for (num_ac = 0; num_ac < ARRAY_SIZE(wmm_ie->ac_params); num_ac++) {
214 cw_min = (1 << (wmm_ie->ac_params[num_ac].ecw_bitmap &
215 MWIFIEX_ECW_MIN)) - 1;
216 avg_back_off = (cw_min >> 1) +
217 (wmm_ie->ac_params[num_ac].aci_aifsn_bitmap &
218 MWIFIEX_AIFSN);
219
220 ac_idx = wmm_aci_to_qidx_map[(wmm_ie->ac_params[num_ac].
221 aci_aifsn_bitmap &
222 MWIFIEX_ACI) >> 5];
223 priv->wmm.queue_priority[ac_idx] = ac_idx;
224 tmp[ac_idx] = avg_back_off;
225
226 dev_dbg(priv->adapter->dev, "info: WMM: CWmax=%d CWmin=%d Avg Back-off=%d\n",
227 (1 << ((wmm_ie->ac_params[num_ac].ecw_bitmap &
228 MWIFIEX_ECW_MAX) >> 4)) - 1,
229 cw_min, avg_back_off);
230 mwifiex_wmm_ac_debug_print(&wmm_ie->ac_params[num_ac]);
231 }
232
233 /* Bubble sort */
234 for (i = 0; i < num_ac; i++) {
235 for (j = 1; j < num_ac - i; j++) {
236 if (tmp[j - 1] > tmp[j]) {
237 swap(tmp[j - 1], tmp[j]);
238 swap(priv->wmm.queue_priority[j - 1],
239 priv->wmm.queue_priority[j]);
240 } else if (tmp[j - 1] == tmp[j]) {
241 if (priv->wmm.queue_priority[j - 1]
242 < priv->wmm.queue_priority[j])
243 swap(priv->wmm.queue_priority[j - 1],
244 priv->wmm.queue_priority[j]);
245 }
246 }
247 }
248
572e8f3e 249 mwifiex_wmm_queue_priorities_tid(priv->wmm.queue_priority);
5e6e3a92
BZ
250}
251
252/*
253 * This function evaluates whether or not an AC is to be downgraded.
254 *
255 * In case the AC is not enabled, the highest AC is returned that is
256 * enabled and does not require admission control.
257 */
258static enum mwifiex_wmm_ac_e
259mwifiex_wmm_eval_downgrade_ac(struct mwifiex_private *priv,
260 enum mwifiex_wmm_ac_e eval_ac)
261{
262 int down_ac;
263 enum mwifiex_wmm_ac_e ret_ac;
264 struct mwifiex_wmm_ac_status *ac_status;
265
266 ac_status = &priv->wmm.ac_status[eval_ac];
267
268 if (!ac_status->disabled)
269 /* Okay to use this AC, its enabled */
270 return eval_ac;
271
272 /* Setup a default return value of the lowest priority */
273 ret_ac = WMM_AC_BK;
274
275 /*
276 * Find the highest AC that is enabled and does not require
277 * admission control. The spec disallows downgrading to an AC,
278 * which is enabled due to a completed admission control.
279 * Unadmitted traffic is not to be sent on an AC with admitted
280 * traffic.
281 */
282 for (down_ac = WMM_AC_BK; down_ac < eval_ac; down_ac++) {
283 ac_status = &priv->wmm.ac_status[down_ac];
284
285 if (!ac_status->disabled && !ac_status->flow_required)
286 /* AC is enabled and does not require admission
287 control */
288 ret_ac = (enum mwifiex_wmm_ac_e) down_ac;
289 }
290
291 return ret_ac;
292}
293
294/*
295 * This function downgrades WMM priority queue.
296 */
297void
298mwifiex_wmm_setup_ac_downgrade(struct mwifiex_private *priv)
299{
300 int ac_val;
301
302 dev_dbg(priv->adapter->dev, "info: WMM: AC Priorities:"
303 "BK(0), BE(1), VI(2), VO(3)\n");
304
305 if (!priv->wmm_enabled) {
306 /* WMM is not enabled, default priorities */
307 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++)
308 priv->wmm.ac_down_graded_vals[ac_val] =
309 (enum mwifiex_wmm_ac_e) ac_val;
310 } else {
311 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++) {
312 priv->wmm.ac_down_graded_vals[ac_val]
313 = mwifiex_wmm_eval_downgrade_ac(priv,
314 (enum mwifiex_wmm_ac_e) ac_val);
315 dev_dbg(priv->adapter->dev, "info: WMM: AC PRIO %d maps to %d\n",
316 ac_val, priv->wmm.ac_down_graded_vals[ac_val]);
317 }
318 }
319}
320
321/*
322 * This function converts the IP TOS field to an WMM AC
323 * Queue assignment.
324 */
325static enum mwifiex_wmm_ac_e
326mwifiex_wmm_convert_tos_to_ac(struct mwifiex_adapter *adapter, u32 tos)
327{
328 /* Map of TOS UP values to WMM AC */
329 const enum mwifiex_wmm_ac_e tos_to_ac[] = { WMM_AC_BE,
330 WMM_AC_BK,
331 WMM_AC_BK,
332 WMM_AC_BE,
333 WMM_AC_VI,
334 WMM_AC_VI,
335 WMM_AC_VO,
336 WMM_AC_VO
337 };
338
339 if (tos >= ARRAY_SIZE(tos_to_ac))
340 return WMM_AC_BE;
341
342 return tos_to_ac[tos];
343}
344
345/*
346 * This function evaluates a given TID and downgrades it to a lower
347 * TID if the WMM Parameter IE received from the AP indicates that the
348 * AP is disabled (due to call admission control (ACM bit). Mapping
349 * of TID to AC is taken care of internally.
350 */
351static u8
352mwifiex_wmm_downgrade_tid(struct mwifiex_private *priv, u32 tid)
353{
354 enum mwifiex_wmm_ac_e ac, ac_down;
355 u8 new_tid;
356
357 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid);
358 ac_down = priv->wmm.ac_down_graded_vals[ac];
359
360 /* Send the index to tid array, picking from the array will be
361 * taken care by dequeuing function
362 */
363 new_tid = ac_to_tid[ac_down][tid % 2];
364
365 return new_tid;
366}
367
368/*
369 * This function initializes the WMM state information and the
370 * WMM data path queues.
371 */
372void
373mwifiex_wmm_init(struct mwifiex_adapter *adapter)
374{
375 int i, j;
376 struct mwifiex_private *priv;
377
378 for (j = 0; j < adapter->priv_num; ++j) {
379 priv = adapter->priv[j];
380 if (!priv)
381 continue;
382
383 for (i = 0; i < MAX_NUM_TID; ++i) {
384 priv->aggr_prio_tbl[i].amsdu = tos_to_tid_inv[i];
385 priv->aggr_prio_tbl[i].ampdu_ap = tos_to_tid_inv[i];
386 priv->aggr_prio_tbl[i].ampdu_user = tos_to_tid_inv[i];
387 priv->wmm.tid_tbl_ptr[i].ra_list_curr = NULL;
388 }
389
390 priv->aggr_prio_tbl[6].amsdu
391 = priv->aggr_prio_tbl[6].ampdu_ap
392 = priv->aggr_prio_tbl[6].ampdu_user
393 = BA_STREAM_NOT_ALLOWED;
394
395 priv->aggr_prio_tbl[7].amsdu = priv->aggr_prio_tbl[7].ampdu_ap
396 = priv->aggr_prio_tbl[7].ampdu_user
397 = BA_STREAM_NOT_ALLOWED;
398
399 priv->add_ba_param.timeout = MWIFIEX_DEFAULT_BLOCK_ACK_TIMEOUT;
400 priv->add_ba_param.tx_win_size = MWIFIEX_AMPDU_DEF_TXWINSIZE;
401 priv->add_ba_param.rx_win_size = MWIFIEX_AMPDU_DEF_RXWINSIZE;
f699254c
MY
402
403 atomic_set(&priv->wmm.tx_pkts_queued, 0);
5e6e3a92
BZ
404 }
405}
406
407/*
408 * This function checks if WMM Tx queue is empty.
409 */
410int
411mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter)
412{
f699254c 413 int i;
5e6e3a92
BZ
414 struct mwifiex_private *priv;
415
f699254c
MY
416 for (i = 0; i < adapter->priv_num; ++i) {
417 priv = adapter->priv[i];
418 if (priv && atomic_read(&priv->wmm.tx_pkts_queued))
419 return false;
5e6e3a92
BZ
420 }
421
422 return true;
423}
424
425/*
426 * This function deletes all packets in an RA list node.
427 *
428 * The packet sent completion callback handler are called with
429 * status failure, after they are dequeued to ensure proper
430 * cleanup. The RA list node itself is freed at the end.
431 */
432static void
433mwifiex_wmm_del_pkts_in_ralist_node(struct mwifiex_private *priv,
434 struct mwifiex_ra_list_tbl *ra_list)
435{
436 struct mwifiex_adapter *adapter = priv->adapter;
437 struct sk_buff *skb, *tmp;
438
439 skb_queue_walk_safe(&ra_list->skb_head, skb, tmp)
440 mwifiex_write_data_complete(adapter, skb, -1);
441}
442
443/*
444 * This function deletes all packets in an RA list.
445 *
446 * Each nodes in the RA list are freed individually first, and then
447 * the RA list itself is freed.
448 */
449static void
450mwifiex_wmm_del_pkts_in_ralist(struct mwifiex_private *priv,
451 struct list_head *ra_list_head)
452{
453 struct mwifiex_ra_list_tbl *ra_list;
454
455 list_for_each_entry(ra_list, ra_list_head, list)
456 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
457}
458
459/*
460 * This function deletes all packets in all RA lists.
461 */
462static void mwifiex_wmm_cleanup_queues(struct mwifiex_private *priv)
463{
464 int i;
465
466 for (i = 0; i < MAX_NUM_TID; i++)
467 mwifiex_wmm_del_pkts_in_ralist(priv, &priv->wmm.tid_tbl_ptr[i].
468 ra_list);
f699254c
MY
469
470 atomic_set(&priv->wmm.tx_pkts_queued, 0);
5e6e3a92
BZ
471}
472
473/*
474 * This function deletes all route addresses from all RA lists.
475 */
476static void mwifiex_wmm_delete_all_ralist(struct mwifiex_private *priv)
477{
478 struct mwifiex_ra_list_tbl *ra_list, *tmp_node;
479 int i;
480
481 for (i = 0; i < MAX_NUM_TID; ++i) {
482 dev_dbg(priv->adapter->dev,
483 "info: ra_list: freeing buf for tid %d\n", i);
484 list_for_each_entry_safe(ra_list, tmp_node,
485 &priv->wmm.tid_tbl_ptr[i].ra_list, list) {
486 list_del(&ra_list->list);
487 kfree(ra_list);
488 }
489
490 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[i].ra_list);
491
492 priv->wmm.tid_tbl_ptr[i].ra_list_curr = NULL;
493 }
494}
495
496/*
497 * This function cleans up the Tx and Rx queues.
498 *
499 * Cleanup includes -
500 * - All packets in RA lists
501 * - All entries in Rx reorder table
502 * - All entries in Tx BA stream table
503 * - MPA buffer (if required)
504 * - All RA lists
505 */
506void
507mwifiex_clean_txrx(struct mwifiex_private *priv)
508{
509 unsigned long flags;
510
511 mwifiex_11n_cleanup_reorder_tbl(priv);
512 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
513
514 mwifiex_wmm_cleanup_queues(priv);
515 mwifiex_11n_delete_all_tx_ba_stream_tbl(priv);
516
517 if (priv->adapter->if_ops.cleanup_mpa_buf)
518 priv->adapter->if_ops.cleanup_mpa_buf(priv->adapter);
519
520 mwifiex_wmm_delete_all_ralist(priv);
521 memcpy(tos_to_tid, ac_to_tid, sizeof(tos_to_tid));
522
523 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
524}
525
526/*
527 * This function retrieves a particular RA list node, matching with the
528 * given TID and RA address.
529 */
530static struct mwifiex_ra_list_tbl *
531mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid,
532 u8 *ra_addr)
533{
534 struct mwifiex_ra_list_tbl *ra_list;
535
536 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
537 list) {
538 if (!memcmp(ra_list->ra, ra_addr, ETH_ALEN))
539 return ra_list;
540 }
541
542 return NULL;
543}
544
545/*
546 * This function retrieves an RA list node for a given TID and
547 * RA address pair.
548 *
549 * If no such node is found, a new node is added first and then
550 * retrieved.
551 */
552static struct mwifiex_ra_list_tbl *
553mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid, u8 *ra_addr)
554{
555 struct mwifiex_ra_list_tbl *ra_list;
556
557 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
558 if (ra_list)
559 return ra_list;
560 mwifiex_ralist_add(priv, ra_addr);
561
562 return mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
563}
564
565/*
566 * This function checks if a particular RA list node exists in a given TID
567 * table index.
568 */
569int
570mwifiex_is_ralist_valid(struct mwifiex_private *priv,
571 struct mwifiex_ra_list_tbl *ra_list, int ptr_index)
572{
573 struct mwifiex_ra_list_tbl *rlist;
574
575 list_for_each_entry(rlist, &priv->wmm.tid_tbl_ptr[ptr_index].ra_list,
576 list) {
577 if (rlist == ra_list)
578 return true;
579 }
580
581 return false;
582}
583
584/*
585 * This function adds a packet to WMM queue.
586 *
587 * In disconnected state the packet is immediately dropped and the
588 * packet send completion callback is called with status failure.
589 *
590 * Otherwise, the correct RA list node is located and the packet
591 * is queued at the list tail.
592 */
593void
594mwifiex_wmm_add_buf_txqueue(struct mwifiex_adapter *adapter,
595 struct sk_buff *skb)
596{
597 struct mwifiex_txinfo *tx_info = MWIFIEX_SKB_TXCB(skb);
598 struct mwifiex_private *priv = adapter->priv[tx_info->bss_index];
599 u32 tid;
600 struct mwifiex_ra_list_tbl *ra_list;
601 u8 ra[ETH_ALEN], tid_down;
602 unsigned long flags;
603
604 if (!priv->media_connected) {
605 dev_dbg(adapter->dev, "data: drop packet in disconnect\n");
606 mwifiex_write_data_complete(adapter, skb, -1);
607 return;
608 }
609
610 tid = skb->priority;
611
612 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
613
614 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
615
616 /* In case of infra as we have already created the list during
617 association we just don't have to call get_queue_raptr, we will
618 have only 1 raptr for a tid in case of infra */
619 if (!mwifiex_queuing_ra_based(priv)) {
620 if (!list_empty(&priv->wmm.tid_tbl_ptr[tid_down].ra_list))
621 ra_list = list_first_entry(
622 &priv->wmm.tid_tbl_ptr[tid_down].ra_list,
623 struct mwifiex_ra_list_tbl, list);
624 else
625 ra_list = NULL;
626 } else {
627 memcpy(ra, skb->data, ETH_ALEN);
628 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down, ra);
629 }
630
631 if (!ra_list) {
632 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
633 mwifiex_write_data_complete(adapter, skb, -1);
634 return;
635 }
636
637 skb_queue_tail(&ra_list->skb_head, skb);
638
639 ra_list->total_pkts_size += skb->len;
640
f699254c
MY
641 atomic_inc(&priv->wmm.tx_pkts_queued);
642
5e6e3a92
BZ
643 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
644}
645
646/*
647 * This function processes the get WMM status command response from firmware.
648 *
649 * The response may contain multiple TLVs -
650 * - AC Queue status TLVs
651 * - Current WMM Parameter IE TLV
652 * - Admission Control action frame TLVs
653 *
654 * This function parses the TLVs and then calls further specific functions
655 * to process any changes in the queue prioritize or state.
656 */
657int mwifiex_ret_wmm_get_status(struct mwifiex_private *priv,
658 const struct host_cmd_ds_command *resp)
659{
660 u8 *curr = (u8 *) &resp->params.get_wmm_status;
661 uint16_t resp_len = le16_to_cpu(resp->size), tlv_len;
662 int valid = true;
663
664 struct mwifiex_ie_types_data *tlv_hdr;
665 struct mwifiex_ie_types_wmm_queue_status *tlv_wmm_qstatus;
666 struct ieee_types_wmm_parameter *wmm_param_ie = NULL;
667 struct mwifiex_wmm_ac_status *ac_status;
668
669 dev_dbg(priv->adapter->dev, "info: WMM: WMM_GET_STATUS cmdresp received: %d\n",
670 resp_len);
671
672 while ((resp_len >= sizeof(tlv_hdr->header)) && valid) {
673 tlv_hdr = (struct mwifiex_ie_types_data *) curr;
674 tlv_len = le16_to_cpu(tlv_hdr->header.len);
675
676 switch (le16_to_cpu(tlv_hdr->header.type)) {
677 case TLV_TYPE_WMMQSTATUS:
678 tlv_wmm_qstatus =
679 (struct mwifiex_ie_types_wmm_queue_status *)
680 tlv_hdr;
681 dev_dbg(priv->adapter->dev,
682 "info: CMD_RESP: WMM_GET_STATUS:"
683 " QSTATUS TLV: %d, %d, %d\n",
684 tlv_wmm_qstatus->queue_index,
685 tlv_wmm_qstatus->flow_required,
686 tlv_wmm_qstatus->disabled);
687
688 ac_status = &priv->wmm.ac_status[tlv_wmm_qstatus->
689 queue_index];
690 ac_status->disabled = tlv_wmm_qstatus->disabled;
691 ac_status->flow_required =
692 tlv_wmm_qstatus->flow_required;
693 ac_status->flow_created = tlv_wmm_qstatus->flow_created;
694 break;
695
696 case WLAN_EID_VENDOR_SPECIFIC:
697 /*
698 * Point the regular IEEE IE 2 bytes into the Marvell IE
699 * and setup the IEEE IE type and length byte fields
700 */
701
702 wmm_param_ie =
703 (struct ieee_types_wmm_parameter *) (curr +
704 2);
705 wmm_param_ie->vend_hdr.len = (u8) tlv_len;
706 wmm_param_ie->vend_hdr.element_id =
707 WLAN_EID_VENDOR_SPECIFIC;
708
709 dev_dbg(priv->adapter->dev,
710 "info: CMD_RESP: WMM_GET_STATUS:"
711 " WMM Parameter Set Count: %d\n",
712 wmm_param_ie->qos_info_bitmap &
713 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK);
714
715 memcpy((u8 *) &priv->curr_bss_params.bss_descriptor.
716 wmm_ie, wmm_param_ie,
717 wmm_param_ie->vend_hdr.len + 2);
718
719 break;
720
721 default:
722 valid = false;
723 break;
724 }
725
726 curr += (tlv_len + sizeof(tlv_hdr->header));
727 resp_len -= (tlv_len + sizeof(tlv_hdr->header));
728 }
729
730 mwifiex_wmm_setup_queue_priorities(priv, wmm_param_ie);
731 mwifiex_wmm_setup_ac_downgrade(priv);
732
733 return 0;
734}
735
736/*
737 * Callback handler from the command module to allow insertion of a WMM TLV.
738 *
739 * If the BSS we are associating to supports WMM, this function adds the
740 * required WMM Information IE to the association request command buffer in
741 * the form of a Marvell extended IEEE IE.
742 */
743u32
744mwifiex_wmm_process_association_req(struct mwifiex_private *priv,
745 u8 **assoc_buf,
746 struct ieee_types_wmm_parameter *wmm_ie,
747 struct ieee80211_ht_cap *ht_cap)
748{
749 struct mwifiex_ie_types_wmm_param_set *wmm_tlv;
750 u32 ret_len = 0;
751
752 /* Null checks */
753 if (!assoc_buf)
754 return 0;
755 if (!(*assoc_buf))
756 return 0;
757
758 if (!wmm_ie)
759 return 0;
760
761 dev_dbg(priv->adapter->dev, "info: WMM: process assoc req:"
762 "bss->wmmIe=0x%x\n",
763 wmm_ie->vend_hdr.element_id);
764
765 if ((priv->wmm_required
766 || (ht_cap && (priv->adapter->config_bands & BAND_GN
767 || priv->adapter->config_bands & BAND_AN))
768 )
769 && wmm_ie->vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC) {
770 wmm_tlv = (struct mwifiex_ie_types_wmm_param_set *) *assoc_buf;
771 wmm_tlv->header.type = cpu_to_le16((u16) wmm_info_ie[0]);
772 wmm_tlv->header.len = cpu_to_le16((u16) wmm_info_ie[1]);
773 memcpy(wmm_tlv->wmm_ie, &wmm_info_ie[2],
774 le16_to_cpu(wmm_tlv->header.len));
775 if (wmm_ie->qos_info_bitmap & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD)
776 memcpy((u8 *) (wmm_tlv->wmm_ie
777 + le16_to_cpu(wmm_tlv->header.len)
778 - sizeof(priv->wmm_qosinfo)),
779 &priv->wmm_qosinfo,
780 sizeof(priv->wmm_qosinfo));
781
782 ret_len = sizeof(wmm_tlv->header)
783 + le16_to_cpu(wmm_tlv->header.len);
784
785 *assoc_buf += ret_len;
786 }
787
788 return ret_len;
789}
790
791/*
792 * This function computes the time delay in the driver queues for a
793 * given packet.
794 *
795 * When the packet is received at the OS/Driver interface, the current
796 * time is set in the packet structure. The difference between the present
797 * time and that received time is computed in this function and limited
798 * based on pre-compiled limits in the driver.
799 */
800u8
801mwifiex_wmm_compute_drv_pkt_delay(struct mwifiex_private *priv,
802 const struct sk_buff *skb)
803{
270e58e8 804 u8 ret_val;
5e6e3a92
BZ
805 struct timeval out_tstamp, in_tstamp;
806 u32 queue_delay;
807
808 do_gettimeofday(&out_tstamp);
809 in_tstamp = ktime_to_timeval(skb->tstamp);
810
811 queue_delay = (out_tstamp.tv_sec - in_tstamp.tv_sec) * 1000;
812 queue_delay += (out_tstamp.tv_usec - in_tstamp.tv_usec) / 1000;
813
814 /*
815 * Queue delay is passed as a uint8 in units of 2ms (ms shifted
816 * by 1). Min value (other than 0) is therefore 2ms, max is 510ms.
817 *
818 * Pass max value if queue_delay is beyond the uint8 range
819 */
820 ret_val = (u8) (min(queue_delay, priv->wmm.drv_pkt_delay_max) >> 1);
821
822 dev_dbg(priv->adapter->dev, "data: WMM: Pkt Delay: %d ms,"
823 " %d ms sent to FW\n", queue_delay, ret_val);
824
825 return ret_val;
826}
827
828/*
829 * This function retrieves the highest priority RA list table pointer.
830 */
831static struct mwifiex_ra_list_tbl *
832mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter,
833 struct mwifiex_private **priv, int *tid)
834{
835 struct mwifiex_private *priv_tmp;
836 struct mwifiex_ra_list_tbl *ptr, *head;
837 struct mwifiex_bss_prio_node *bssprio_node, *bssprio_head;
838 struct mwifiex_tid_tbl *tid_ptr;
839 int is_list_empty;
840 unsigned long flags;
841 int i, j;
842
843 for (j = adapter->priv_num - 1; j >= 0; --j) {
844 spin_lock_irqsave(&adapter->bss_prio_tbl[j].bss_prio_lock,
845 flags);
846 is_list_empty = list_empty(&adapter->bss_prio_tbl[j]
847 .bss_prio_head);
848 spin_unlock_irqrestore(&adapter->bss_prio_tbl[j].bss_prio_lock,
849 flags);
850 if (is_list_empty)
851 continue;
852
853 if (adapter->bss_prio_tbl[j].bss_prio_cur ==
854 (struct mwifiex_bss_prio_node *)
855 &adapter->bss_prio_tbl[j].bss_prio_head) {
856 bssprio_node =
857 list_first_entry(&adapter->bss_prio_tbl[j]
858 .bss_prio_head,
859 struct mwifiex_bss_prio_node,
860 list);
861 bssprio_head = bssprio_node;
862 } else {
863 bssprio_node = adapter->bss_prio_tbl[j].bss_prio_cur;
864 bssprio_head = bssprio_node;
865 }
866
867 do {
868 priv_tmp = bssprio_node->priv;
869
870 for (i = HIGH_PRIO_TID; i >= LOW_PRIO_TID; --i) {
871
872 tid_ptr = &(priv_tmp)->wmm.
873 tid_tbl_ptr[tos_to_tid[i]];
874
875 spin_lock_irqsave(&tid_ptr->tid_tbl_lock,
876 flags);
877 is_list_empty =
878 list_empty(&adapter->bss_prio_tbl[j]
879 .bss_prio_head);
880 spin_unlock_irqrestore(&tid_ptr->tid_tbl_lock,
881 flags);
882 if (is_list_empty)
883 continue;
884
885 /*
886 * Always choose the next ra we transmitted
887 * last time, this way we pick the ra's in
888 * round robin fashion.
889 */
890 ptr = list_first_entry(
891 &tid_ptr->ra_list_curr->list,
892 struct mwifiex_ra_list_tbl,
893 list);
894
895 head = ptr;
896 if (ptr == (struct mwifiex_ra_list_tbl *)
897 &tid_ptr->ra_list) {
898 /* Get next ra */
899 ptr = list_first_entry(&ptr->list,
900 struct mwifiex_ra_list_tbl, list);
901 head = ptr;
902 }
903
904 do {
905 is_list_empty =
906 skb_queue_empty(&ptr->skb_head);
907 if (!is_list_empty) {
908 *priv = priv_tmp;
909 *tid = tos_to_tid[i];
910 return ptr;
911 }
912 /* Get next ra */
913 ptr = list_first_entry(&ptr->list,
914 struct mwifiex_ra_list_tbl,
915 list);
916 if (ptr ==
917 (struct mwifiex_ra_list_tbl *)
918 &tid_ptr->ra_list)
919 ptr = list_first_entry(
920 &ptr->list,
921 struct mwifiex_ra_list_tbl,
922 list);
923 } while (ptr != head);
924 }
925
926 /* Get next bss priority node */
927 bssprio_node = list_first_entry(&bssprio_node->list,
928 struct mwifiex_bss_prio_node,
929 list);
930
931 if (bssprio_node ==
932 (struct mwifiex_bss_prio_node *)
933 &adapter->bss_prio_tbl[j].bss_prio_head)
934 /* Get next bss priority node */
935 bssprio_node = list_first_entry(
936 &bssprio_node->list,
937 struct mwifiex_bss_prio_node,
938 list);
939 } while (bssprio_node != bssprio_head);
940 }
941 return NULL;
942}
943
944/*
945 * This function gets the number of packets in the Tx queue of a
946 * particular RA list.
947 */
948static int
949mwifiex_num_pkts_in_txq(struct mwifiex_private *priv,
950 struct mwifiex_ra_list_tbl *ptr, int max_buf_size)
951{
952 int count = 0, total_size = 0;
953 struct sk_buff *skb, *tmp;
954
955 skb_queue_walk_safe(&ptr->skb_head, skb, tmp) {
956 total_size += skb->len;
957 if (total_size < max_buf_size)
958 ++count;
959 else
960 break;
961 }
962
963 return count;
964}
965
966/*
967 * This function sends a single packet to firmware for transmission.
968 */
969static void
970mwifiex_send_single_packet(struct mwifiex_private *priv,
971 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
972 unsigned long ra_list_flags)
973 __releases(&priv->wmm.ra_list_spinlock)
974{
975 struct sk_buff *skb, *skb_next;
976 struct mwifiex_tx_param tx_param;
977 struct mwifiex_adapter *adapter = priv->adapter;
5e6e3a92
BZ
978 struct mwifiex_txinfo *tx_info;
979
980 if (skb_queue_empty(&ptr->skb_head)) {
981 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
982 ra_list_flags);
983 dev_dbg(adapter->dev, "data: nothing to send\n");
984 return;
985 }
986
987 skb = skb_dequeue(&ptr->skb_head);
988
989 tx_info = MWIFIEX_SKB_TXCB(skb);
990 dev_dbg(adapter->dev, "data: dequeuing the packet %p %p\n", ptr, skb);
991
992 ptr->total_pkts_size -= skb->len;
993
994 if (!skb_queue_empty(&ptr->skb_head))
995 skb_next = skb_peek(&ptr->skb_head);
996 else
997 skb_next = NULL;
998
999 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1000
1001 tx_param.next_pkt_len = ((skb_next) ? skb_next->len +
1002 sizeof(struct txpd) : 0);
1003
636c4598 1004 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
5e6e3a92
BZ
1005 /* Queue the packet back at the head */
1006 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1007
1008 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1009 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1010 ra_list_flags);
1011 mwifiex_write_data_complete(adapter, skb, -1);
1012 return;
1013 }
1014
1015 skb_queue_tail(&ptr->skb_head, skb);
1016
1017 ptr->total_pkts_size += skb->len;
1018 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1019 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1020 ra_list_flags);
1021 } else {
1022 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1023 if (mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1024 priv->wmm.packets_out[ptr_index]++;
1025 priv->wmm.tid_tbl_ptr[ptr_index].ra_list_curr = ptr;
1026 }
1027 adapter->bss_prio_tbl[priv->bss_priority].bss_prio_cur =
1028 list_first_entry(
1029 &adapter->bss_prio_tbl[priv->bss_priority]
1030 .bss_prio_cur->list,
1031 struct mwifiex_bss_prio_node,
1032 list);
f699254c 1033 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1034 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1035 ra_list_flags);
1036 }
1037}
1038
1039/*
1040 * This function checks if the first packet in the given RA list
1041 * is already processed or not.
1042 */
1043static int
1044mwifiex_is_ptr_processed(struct mwifiex_private *priv,
1045 struct mwifiex_ra_list_tbl *ptr)
1046{
1047 struct sk_buff *skb;
1048 struct mwifiex_txinfo *tx_info;
1049
1050 if (skb_queue_empty(&ptr->skb_head))
1051 return false;
1052
1053 skb = skb_peek(&ptr->skb_head);
1054
1055 tx_info = MWIFIEX_SKB_TXCB(skb);
1056 if (tx_info->flags & MWIFIEX_BUF_FLAG_REQUEUED_PKT)
1057 return true;
1058
1059 return false;
1060}
1061
1062/*
1063 * This function sends a single processed packet to firmware for
1064 * transmission.
1065 */
1066static void
1067mwifiex_send_processed_packet(struct mwifiex_private *priv,
1068 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1069 unsigned long ra_list_flags)
1070 __releases(&priv->wmm.ra_list_spinlock)
1071{
1072 struct mwifiex_tx_param tx_param;
1073 struct mwifiex_adapter *adapter = priv->adapter;
1074 int ret = -1;
1075 struct sk_buff *skb, *skb_next;
1076 struct mwifiex_txinfo *tx_info;
1077
1078 if (skb_queue_empty(&ptr->skb_head)) {
1079 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1080 ra_list_flags);
1081 return;
1082 }
1083
1084 skb = skb_dequeue(&ptr->skb_head);
1085
1086 if (!skb_queue_empty(&ptr->skb_head))
1087 skb_next = skb_peek(&ptr->skb_head);
1088 else
1089 skb_next = NULL;
1090
1091 tx_info = MWIFIEX_SKB_TXCB(skb);
1092
1093 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1094 tx_param.next_pkt_len =
1095 ((skb_next) ? skb_next->len +
1096 sizeof(struct txpd) : 0);
1097 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
1098 skb->data, skb->len, &tx_param);
1099 switch (ret) {
1100 case -EBUSY:
1101 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
1102 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1103
1104 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1105 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1106 ra_list_flags);
1107 mwifiex_write_data_complete(adapter, skb, -1);
1108 return;
1109 }
1110
1111 skb_queue_tail(&ptr->skb_head, skb);
1112
1113 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1114 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1115 ra_list_flags);
1116 break;
1117 case -1:
1118 adapter->data_sent = false;
1119 dev_err(adapter->dev, "host_to_card failed: %#x\n", ret);
1120 adapter->dbg.num_tx_host_to_card_failure++;
1121 mwifiex_write_data_complete(adapter, skb, ret);
1122 break;
1123 case -EINPROGRESS:
1124 adapter->data_sent = false;
1125 default:
1126 break;
1127 }
1128 if (ret != -EBUSY) {
1129 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1130 if (mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1131 priv->wmm.packets_out[ptr_index]++;
1132 priv->wmm.tid_tbl_ptr[ptr_index].ra_list_curr = ptr;
1133 }
1134 adapter->bss_prio_tbl[priv->bss_priority].bss_prio_cur =
1135 list_first_entry(
1136 &adapter->bss_prio_tbl[priv->bss_priority]
1137 .bss_prio_cur->list,
1138 struct mwifiex_bss_prio_node,
1139 list);
f699254c 1140 atomic_dec(&priv->wmm.tx_pkts_queued);
5e6e3a92
BZ
1141 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1142 ra_list_flags);
1143 }
1144}
1145
1146/*
1147 * This function dequeues a packet from the highest priority list
1148 * and transmits it.
1149 */
1150static int
1151mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1152{
1153 struct mwifiex_ra_list_tbl *ptr;
1154 struct mwifiex_private *priv = NULL;
1155 int ptr_index = 0;
1156 u8 ra[ETH_ALEN];
1157 int tid_del = 0, tid = 0;
1158 unsigned long flags;
1159
1160 ptr = mwifiex_wmm_get_highest_priolist_ptr(adapter, &priv, &ptr_index);
1161 if (!ptr)
1162 return -1;
1163
572e8f3e 1164 tid = mwifiex_get_tid(ptr);
5e6e3a92
BZ
1165
1166 dev_dbg(adapter->dev, "data: tid=%d\n", tid);
1167
1168 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1169 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1170 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1171 return -1;
1172 }
1173
1174 if (mwifiex_is_ptr_processed(priv, ptr)) {
1175 mwifiex_send_processed_packet(priv, ptr, ptr_index, flags);
1176 /* ra_list_spinlock has been freed in
1177 mwifiex_send_processed_packet() */
1178 return 0;
1179 }
1180
1181 if (!ptr->is_11n_enabled || mwifiex_is_ba_stream_setup(priv, ptr, tid)
1182 || ((priv->sec_info.wpa_enabled
1183 || priv->sec_info.wpa2_enabled) && !priv->wpa_is_gtk_set)
1184 ) {
1185 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1186 /* ra_list_spinlock has been freed in
1187 mwifiex_send_single_packet() */
1188 } else {
572e8f3e 1189 if (mwifiex_is_ampdu_allowed(priv, tid)) {
53d7938e 1190 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
5e6e3a92
BZ
1191 mwifiex_11n_create_tx_ba_stream_tbl(priv,
1192 ptr->ra, tid,
1193 BA_STREAM_SETUP_INPROGRESS);
1194 mwifiex_send_addba(priv, tid, ptr->ra);
1195 } else if (mwifiex_find_stream_to_delete
572e8f3e 1196 (priv, tid, &tid_del, ra)) {
5e6e3a92
BZ
1197 mwifiex_11n_create_tx_ba_stream_tbl(priv,
1198 ptr->ra, tid,
1199 BA_STREAM_SETUP_INPROGRESS);
1200 mwifiex_send_delba(priv, tid_del, ra, 1);
1201 }
1202 }
1203/* Minimum number of AMSDU */
1204#define MIN_NUM_AMSDU 2
572e8f3e 1205 if (mwifiex_is_amsdu_allowed(priv, tid) &&
5e6e3a92
BZ
1206 (mwifiex_num_pkts_in_txq(priv, ptr, adapter->tx_buf_size) >=
1207 MIN_NUM_AMSDU))
1208 mwifiex_11n_aggregate_pkt(priv, ptr, INTF_HEADER_LEN,
1209 ptr_index, flags);
1210 /* ra_list_spinlock has been freed in
1211 mwifiex_11n_aggregate_pkt() */
1212 else
1213 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1214 /* ra_list_spinlock has been freed in
1215 mwifiex_send_single_packet() */
1216 }
1217 return 0;
1218}
1219
1220/*
1221 * This function transmits the highest priority packet awaiting in the
1222 * WMM Queues.
1223 */
1224void
1225mwifiex_wmm_process_tx(struct mwifiex_adapter *adapter)
1226{
1227 do {
1228 /* Check if busy */
1229 if (adapter->data_sent || adapter->tx_lock_flag)
1230 break;
1231
1232 if (mwifiex_dequeue_tx_packet(adapter))
1233 break;
1234 } while (true);
5e6e3a92 1235}
This page took 0.102595 seconds and 5 git commands to generate.