x86/xen: resume timer irqs early
[linux/fpc-iii.git] / drivers / net / wireless / mwifiex / wmm.c
blob35f881585962ff0c5dd2ea383ab6718ca170990d
1 /*
2 * Marvell Wireless LAN device driver: WMM
4 * Copyright (C) 2011, Marvell International Ltd.
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.
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.
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"
29 /* Maximum value FW can accept for driver delay in packet transmission */
30 #define DRV_PKT_DELAY_TO_FW_MAX 512
33 #define WMM_QUEUED_PACKET_LOWER_LIMIT 180
35 #define WMM_QUEUED_PACKET_UPPER_LIMIT 200
37 /* Offset for TOS field in the IP header */
38 #define IPTOS_OFFSET 5
40 static bool enable_tx_amsdu;
41 module_param(enable_tx_amsdu, bool, 0644);
43 /* WMM information IE */
44 static const u8 wmm_info_ie[] = { WLAN_EID_VENDOR_SPECIFIC, 0x07,
45 0x00, 0x50, 0xf2, 0x02,
46 0x00, 0x01, 0x00
49 static const u8 wmm_aci_to_qidx_map[] = { WMM_AC_BE,
50 WMM_AC_BK,
51 WMM_AC_VI,
52 WMM_AC_VO
55 static 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 */
68 * This table inverses the tos_to_tid operation to get a priority
69 * which is in sequential order, and can be compared.
70 * Use this to compare the priority of two different TIDs.
72 static u8 tos_to_tid_inv[] = {
73 0x02, /* from tos_to_tid[2] = 0 */
74 0x00, /* from tos_to_tid[0] = 1 */
75 0x01, /* from tos_to_tid[1] = 2 */
76 0x03,
77 0x04,
78 0x05,
79 0x06,
80 0x07};
82 static u8 ac_to_tid[4][2] = { {1, 2}, {0, 3}, {4, 5}, {6, 7} };
85 * This function debug prints the priority parameters for a WMM AC.
87 static void
88 mwifiex_wmm_ac_debug_print(const struct ieee_types_wmm_ac_parameters *ac_param)
90 const char *ac_str[] = { "BK", "BE", "VI", "VO" };
92 pr_debug("info: WMM AC_%s: ACI=%d, ACM=%d, Aifsn=%d, "
93 "EcwMin=%d, EcwMax=%d, TxopLimit=%d\n",
94 ac_str[wmm_aci_to_qidx_map[(ac_param->aci_aifsn_bitmap
95 & MWIFIEX_ACI) >> 5]],
96 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACI) >> 5,
97 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACM) >> 4,
98 ac_param->aci_aifsn_bitmap & MWIFIEX_AIFSN,
99 ac_param->ecw_bitmap & MWIFIEX_ECW_MIN,
100 (ac_param->ecw_bitmap & MWIFIEX_ECW_MAX) >> 4,
101 le16_to_cpu(ac_param->tx_op_limit));
105 * This function allocates a route address list.
107 * The function also initializes the list with the provided RA.
109 static struct mwifiex_ra_list_tbl *
110 mwifiex_wmm_allocate_ralist_node(struct mwifiex_adapter *adapter, u8 *ra)
112 struct mwifiex_ra_list_tbl *ra_list;
114 ra_list = kzalloc(sizeof(struct mwifiex_ra_list_tbl), GFP_ATOMIC);
115 if (!ra_list)
116 return NULL;
118 INIT_LIST_HEAD(&ra_list->list);
119 skb_queue_head_init(&ra_list->skb_head);
121 memcpy(ra_list->ra, ra, ETH_ALEN);
123 ra_list->total_pkt_count = 0;
125 dev_dbg(adapter->dev, "info: allocated ra_list %p\n", ra_list);
127 return ra_list;
130 /* This function returns random no between 16 and 32 to be used as threshold
131 * for no of packets after which BA setup is initiated.
133 static u8 mwifiex_get_random_ba_threshold(void)
135 u32 sec, usec;
136 struct timeval ba_tstamp;
137 u8 ba_threshold;
139 /* setup ba_packet_threshold here random number between
140 * [BA_SETUP_PACKET_OFFSET,
141 * BA_SETUP_PACKET_OFFSET+BA_SETUP_MAX_PACKET_THRESHOLD-1]
144 do_gettimeofday(&ba_tstamp);
145 sec = (ba_tstamp.tv_sec & 0xFFFF) + (ba_tstamp.tv_sec >> 16);
146 usec = (ba_tstamp.tv_usec & 0xFFFF) + (ba_tstamp.tv_usec >> 16);
147 ba_threshold = (((sec << 16) + usec) % BA_SETUP_MAX_PACKET_THRESHOLD)
148 + BA_SETUP_PACKET_OFFSET;
150 return ba_threshold;
154 * This function allocates and adds a RA list for all TIDs
155 * with the given RA.
157 void
158 mwifiex_ralist_add(struct mwifiex_private *priv, u8 *ra)
160 int i;
161 struct mwifiex_ra_list_tbl *ra_list;
162 struct mwifiex_adapter *adapter = priv->adapter;
163 struct mwifiex_sta_node *node;
164 unsigned long flags;
166 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
167 node = mwifiex_get_sta_entry(priv, ra);
168 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
170 for (i = 0; i < MAX_NUM_TID; ++i) {
171 ra_list = mwifiex_wmm_allocate_ralist_node(adapter, ra);
172 dev_dbg(adapter->dev, "info: created ra_list %p\n", ra_list);
174 if (!ra_list)
175 break;
177 ra_list->is_11n_enabled = 0;
178 if (!mwifiex_queuing_ra_based(priv)) {
179 ra_list->is_11n_enabled = IS_11N_ENABLED(priv);
180 } else {
181 ra_list->is_11n_enabled =
182 mwifiex_is_sta_11n_enabled(priv, node);
183 if (ra_list->is_11n_enabled)
184 ra_list->max_amsdu = node->max_amsdu;
187 dev_dbg(adapter->dev, "data: ralist %p: is_11n_enabled=%d\n",
188 ra_list, ra_list->is_11n_enabled);
190 if (ra_list->is_11n_enabled) {
191 ra_list->ba_pkt_count = 0;
192 ra_list->ba_packet_thr =
193 mwifiex_get_random_ba_threshold();
195 list_add_tail(&ra_list->list,
196 &priv->wmm.tid_tbl_ptr[i].ra_list);
201 * This function sets the WMM queue priorities to their default values.
203 static void mwifiex_wmm_default_queue_priorities(struct mwifiex_private *priv)
205 /* Default queue priorities: VO->VI->BE->BK */
206 priv->wmm.queue_priority[0] = WMM_AC_VO;
207 priv->wmm.queue_priority[1] = WMM_AC_VI;
208 priv->wmm.queue_priority[2] = WMM_AC_BE;
209 priv->wmm.queue_priority[3] = WMM_AC_BK;
213 * This function map ACs to TIDs.
215 static void
216 mwifiex_wmm_queue_priorities_tid(struct mwifiex_wmm_desc *wmm)
218 u8 *queue_priority = wmm->queue_priority;
219 int i;
221 for (i = 0; i < 4; ++i) {
222 tos_to_tid[7 - (i * 2)] = ac_to_tid[queue_priority[i]][1];
223 tos_to_tid[6 - (i * 2)] = ac_to_tid[queue_priority[i]][0];
226 for (i = 0; i < MAX_NUM_TID; ++i)
227 tos_to_tid_inv[tos_to_tid[i]] = (u8)i;
229 atomic_set(&wmm->highest_queued_prio, HIGH_PRIO_TID);
233 * This function initializes WMM priority queues.
235 void
236 mwifiex_wmm_setup_queue_priorities(struct mwifiex_private *priv,
237 struct ieee_types_wmm_parameter *wmm_ie)
239 u16 cw_min, avg_back_off, tmp[4];
240 u32 i, j, num_ac;
241 u8 ac_idx;
243 if (!wmm_ie || !priv->wmm_enabled) {
244 /* WMM is not enabled, just set the defaults and return */
245 mwifiex_wmm_default_queue_priorities(priv);
246 return;
249 dev_dbg(priv->adapter->dev, "info: WMM Parameter IE: version=%d, "
250 "qos_info Parameter Set Count=%d, Reserved=%#x\n",
251 wmm_ie->vend_hdr.version, wmm_ie->qos_info_bitmap &
252 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK,
253 wmm_ie->reserved);
255 for (num_ac = 0; num_ac < ARRAY_SIZE(wmm_ie->ac_params); num_ac++) {
256 u8 ecw = wmm_ie->ac_params[num_ac].ecw_bitmap;
257 u8 aci_aifsn = wmm_ie->ac_params[num_ac].aci_aifsn_bitmap;
258 cw_min = (1 << (ecw & MWIFIEX_ECW_MIN)) - 1;
259 avg_back_off = (cw_min >> 1) + (aci_aifsn & MWIFIEX_AIFSN);
261 ac_idx = wmm_aci_to_qidx_map[(aci_aifsn & MWIFIEX_ACI) >> 5];
262 priv->wmm.queue_priority[ac_idx] = ac_idx;
263 tmp[ac_idx] = avg_back_off;
265 dev_dbg(priv->adapter->dev,
266 "info: WMM: CWmax=%d CWmin=%d Avg Back-off=%d\n",
267 (1 << ((ecw & MWIFIEX_ECW_MAX) >> 4)) - 1,
268 cw_min, avg_back_off);
269 mwifiex_wmm_ac_debug_print(&wmm_ie->ac_params[num_ac]);
272 /* Bubble sort */
273 for (i = 0; i < num_ac; i++) {
274 for (j = 1; j < num_ac - i; j++) {
275 if (tmp[j - 1] > tmp[j]) {
276 swap(tmp[j - 1], tmp[j]);
277 swap(priv->wmm.queue_priority[j - 1],
278 priv->wmm.queue_priority[j]);
279 } else if (tmp[j - 1] == tmp[j]) {
280 if (priv->wmm.queue_priority[j - 1]
281 < priv->wmm.queue_priority[j])
282 swap(priv->wmm.queue_priority[j - 1],
283 priv->wmm.queue_priority[j]);
288 mwifiex_wmm_queue_priorities_tid(&priv->wmm);
292 * This function evaluates whether or not an AC is to be downgraded.
294 * In case the AC is not enabled, the highest AC is returned that is
295 * enabled and does not require admission control.
297 static enum mwifiex_wmm_ac_e
298 mwifiex_wmm_eval_downgrade_ac(struct mwifiex_private *priv,
299 enum mwifiex_wmm_ac_e eval_ac)
301 int down_ac;
302 enum mwifiex_wmm_ac_e ret_ac;
303 struct mwifiex_wmm_ac_status *ac_status;
305 ac_status = &priv->wmm.ac_status[eval_ac];
307 if (!ac_status->disabled)
308 /* Okay to use this AC, its enabled */
309 return eval_ac;
311 /* Setup a default return value of the lowest priority */
312 ret_ac = WMM_AC_BK;
315 * Find the highest AC that is enabled and does not require
316 * admission control. The spec disallows downgrading to an AC,
317 * which is enabled due to a completed admission control.
318 * Unadmitted traffic is not to be sent on an AC with admitted
319 * traffic.
321 for (down_ac = WMM_AC_BK; down_ac < eval_ac; down_ac++) {
322 ac_status = &priv->wmm.ac_status[down_ac];
324 if (!ac_status->disabled && !ac_status->flow_required)
325 /* AC is enabled and does not require admission
326 control */
327 ret_ac = (enum mwifiex_wmm_ac_e) down_ac;
330 return ret_ac;
334 * This function downgrades WMM priority queue.
336 void
337 mwifiex_wmm_setup_ac_downgrade(struct mwifiex_private *priv)
339 int ac_val;
341 dev_dbg(priv->adapter->dev, "info: WMM: AC Priorities:"
342 "BK(0), BE(1), VI(2), VO(3)\n");
344 if (!priv->wmm_enabled) {
345 /* WMM is not enabled, default priorities */
346 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++)
347 priv->wmm.ac_down_graded_vals[ac_val] =
348 (enum mwifiex_wmm_ac_e) ac_val;
349 } else {
350 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++) {
351 priv->wmm.ac_down_graded_vals[ac_val]
352 = mwifiex_wmm_eval_downgrade_ac(priv,
353 (enum mwifiex_wmm_ac_e) ac_val);
354 dev_dbg(priv->adapter->dev,
355 "info: WMM: AC PRIO %d maps to %d\n",
356 ac_val, priv->wmm.ac_down_graded_vals[ac_val]);
362 * This function converts the IP TOS field to an WMM AC
363 * Queue assignment.
365 static enum mwifiex_wmm_ac_e
366 mwifiex_wmm_convert_tos_to_ac(struct mwifiex_adapter *adapter, u32 tos)
368 /* Map of TOS UP values to WMM AC */
369 const enum mwifiex_wmm_ac_e tos_to_ac[] = { WMM_AC_BE,
370 WMM_AC_BK,
371 WMM_AC_BK,
372 WMM_AC_BE,
373 WMM_AC_VI,
374 WMM_AC_VI,
375 WMM_AC_VO,
376 WMM_AC_VO
379 if (tos >= ARRAY_SIZE(tos_to_ac))
380 return WMM_AC_BE;
382 return tos_to_ac[tos];
386 * This function evaluates a given TID and downgrades it to a lower
387 * TID if the WMM Parameter IE received from the AP indicates that the
388 * AP is disabled (due to call admission control (ACM bit). Mapping
389 * of TID to AC is taken care of internally.
391 static u8
392 mwifiex_wmm_downgrade_tid(struct mwifiex_private *priv, u32 tid)
394 enum mwifiex_wmm_ac_e ac, ac_down;
395 u8 new_tid;
397 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid);
398 ac_down = priv->wmm.ac_down_graded_vals[ac];
400 /* Send the index to tid array, picking from the array will be
401 * taken care by dequeuing function
403 new_tid = ac_to_tid[ac_down][tid % 2];
405 return new_tid;
409 * This function initializes the WMM state information and the
410 * WMM data path queues.
412 void
413 mwifiex_wmm_init(struct mwifiex_adapter *adapter)
415 int i, j;
416 struct mwifiex_private *priv;
418 for (j = 0; j < adapter->priv_num; ++j) {
419 priv = adapter->priv[j];
420 if (!priv)
421 continue;
423 for (i = 0; i < MAX_NUM_TID; ++i) {
424 priv->aggr_prio_tbl[i].amsdu = tos_to_tid_inv[i];
425 priv->aggr_prio_tbl[i].ampdu_ap = tos_to_tid_inv[i];
426 priv->aggr_prio_tbl[i].ampdu_user = tos_to_tid_inv[i];
429 priv->aggr_prio_tbl[6].amsdu
430 = priv->aggr_prio_tbl[6].ampdu_ap
431 = priv->aggr_prio_tbl[6].ampdu_user
432 = BA_STREAM_NOT_ALLOWED;
434 priv->aggr_prio_tbl[7].amsdu = priv->aggr_prio_tbl[7].ampdu_ap
435 = priv->aggr_prio_tbl[7].ampdu_user
436 = BA_STREAM_NOT_ALLOWED;
438 mwifiex_set_ba_params(priv);
439 mwifiex_reset_11n_rx_seq_num(priv);
441 atomic_set(&priv->wmm.tx_pkts_queued, 0);
442 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
447 * This function checks if WMM Tx queue is empty.
450 mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter)
452 int i;
453 struct mwifiex_private *priv;
455 for (i = 0; i < adapter->priv_num; ++i) {
456 priv = adapter->priv[i];
457 if (priv && atomic_read(&priv->wmm.tx_pkts_queued))
458 return false;
461 return true;
465 * This function deletes all packets in an RA list node.
467 * The packet sent completion callback handler are called with
468 * status failure, after they are dequeued to ensure proper
469 * cleanup. The RA list node itself is freed at the end.
471 static void
472 mwifiex_wmm_del_pkts_in_ralist_node(struct mwifiex_private *priv,
473 struct mwifiex_ra_list_tbl *ra_list)
475 struct mwifiex_adapter *adapter = priv->adapter;
476 struct sk_buff *skb, *tmp;
478 skb_queue_walk_safe(&ra_list->skb_head, skb, tmp)
479 mwifiex_write_data_complete(adapter, skb, 0, -1);
483 * This function deletes all packets in an RA list.
485 * Each nodes in the RA list are freed individually first, and then
486 * the RA list itself is freed.
488 static void
489 mwifiex_wmm_del_pkts_in_ralist(struct mwifiex_private *priv,
490 struct list_head *ra_list_head)
492 struct mwifiex_ra_list_tbl *ra_list;
494 list_for_each_entry(ra_list, ra_list_head, list)
495 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
499 * This function deletes all packets in all RA lists.
501 static void mwifiex_wmm_cleanup_queues(struct mwifiex_private *priv)
503 int i;
505 for (i = 0; i < MAX_NUM_TID; i++)
506 mwifiex_wmm_del_pkts_in_ralist(priv, &priv->wmm.tid_tbl_ptr[i].
507 ra_list);
509 atomic_set(&priv->wmm.tx_pkts_queued, 0);
510 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
514 * This function deletes all route addresses from all RA lists.
516 static void mwifiex_wmm_delete_all_ralist(struct mwifiex_private *priv)
518 struct mwifiex_ra_list_tbl *ra_list, *tmp_node;
519 int i;
521 for (i = 0; i < MAX_NUM_TID; ++i) {
522 dev_dbg(priv->adapter->dev,
523 "info: ra_list: freeing buf for tid %d\n", i);
524 list_for_each_entry_safe(ra_list, tmp_node,
525 &priv->wmm.tid_tbl_ptr[i].ra_list,
526 list) {
527 list_del(&ra_list->list);
528 kfree(ra_list);
531 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[i].ra_list);
536 * This function cleans up the Tx and Rx queues.
538 * Cleanup includes -
539 * - All packets in RA lists
540 * - All entries in Rx reorder table
541 * - All entries in Tx BA stream table
542 * - MPA buffer (if required)
543 * - All RA lists
545 void
546 mwifiex_clean_txrx(struct mwifiex_private *priv)
548 unsigned long flags;
550 mwifiex_11n_cleanup_reorder_tbl(priv);
551 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
553 mwifiex_wmm_cleanup_queues(priv);
554 mwifiex_11n_delete_all_tx_ba_stream_tbl(priv);
556 if (priv->adapter->if_ops.cleanup_mpa_buf)
557 priv->adapter->if_ops.cleanup_mpa_buf(priv->adapter);
559 mwifiex_wmm_delete_all_ralist(priv);
560 memcpy(tos_to_tid, ac_to_tid, sizeof(tos_to_tid));
562 if (priv->adapter->if_ops.clean_pcie_ring &&
563 !priv->adapter->surprise_removed)
564 priv->adapter->if_ops.clean_pcie_ring(priv->adapter);
565 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
569 * This function retrieves a particular RA list node, matching with the
570 * given TID and RA address.
572 static struct mwifiex_ra_list_tbl *
573 mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid,
574 u8 *ra_addr)
576 struct mwifiex_ra_list_tbl *ra_list;
578 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
579 list) {
580 if (!memcmp(ra_list->ra, ra_addr, ETH_ALEN))
581 return ra_list;
584 return NULL;
588 * This function retrieves an RA list node for a given TID and
589 * RA address pair.
591 * If no such node is found, a new node is added first and then
592 * retrieved.
594 static struct mwifiex_ra_list_tbl *
595 mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid, u8 *ra_addr)
597 struct mwifiex_ra_list_tbl *ra_list;
599 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
600 if (ra_list)
601 return ra_list;
602 mwifiex_ralist_add(priv, ra_addr);
604 return mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
608 * This function checks if a particular RA list node exists in a given TID
609 * table index.
612 mwifiex_is_ralist_valid(struct mwifiex_private *priv,
613 struct mwifiex_ra_list_tbl *ra_list, int ptr_index)
615 struct mwifiex_ra_list_tbl *rlist;
617 list_for_each_entry(rlist, &priv->wmm.tid_tbl_ptr[ptr_index].ra_list,
618 list) {
619 if (rlist == ra_list)
620 return true;
623 return false;
627 * This function adds a packet to WMM queue.
629 * In disconnected state the packet is immediately dropped and the
630 * packet send completion callback is called with status failure.
632 * Otherwise, the correct RA list node is located and the packet
633 * is queued at the list tail.
635 void
636 mwifiex_wmm_add_buf_txqueue(struct mwifiex_private *priv,
637 struct sk_buff *skb)
639 struct mwifiex_adapter *adapter = priv->adapter;
640 u32 tid;
641 struct mwifiex_ra_list_tbl *ra_list;
642 u8 ra[ETH_ALEN], tid_down;
643 unsigned long flags;
645 if (!priv->media_connected && !mwifiex_is_skb_mgmt_frame(skb)) {
646 dev_dbg(adapter->dev, "data: drop packet in disconnect\n");
647 mwifiex_write_data_complete(adapter, skb, 0, -1);
648 return;
651 tid = skb->priority;
653 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
655 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
657 /* In case of infra as we have already created the list during
658 association we just don't have to call get_queue_raptr, we will
659 have only 1 raptr for a tid in case of infra */
660 if (!mwifiex_queuing_ra_based(priv) &&
661 !mwifiex_is_skb_mgmt_frame(skb)) {
662 if (!list_empty(&priv->wmm.tid_tbl_ptr[tid_down].ra_list))
663 ra_list = list_first_entry(
664 &priv->wmm.tid_tbl_ptr[tid_down].ra_list,
665 struct mwifiex_ra_list_tbl, list);
666 else
667 ra_list = NULL;
668 } else {
669 memcpy(ra, skb->data, ETH_ALEN);
670 if (ra[0] & 0x01 || mwifiex_is_skb_mgmt_frame(skb))
671 memset(ra, 0xff, ETH_ALEN);
672 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down, ra);
675 if (!ra_list) {
676 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
677 mwifiex_write_data_complete(adapter, skb, 0, -1);
678 return;
681 skb_queue_tail(&ra_list->skb_head, skb);
683 ra_list->ba_pkt_count++;
684 ra_list->total_pkt_count++;
686 if (atomic_read(&priv->wmm.highest_queued_prio) <
687 tos_to_tid_inv[tid_down])
688 atomic_set(&priv->wmm.highest_queued_prio,
689 tos_to_tid_inv[tid_down]);
691 atomic_inc(&priv->wmm.tx_pkts_queued);
693 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
697 * This function processes the get WMM status command response from firmware.
699 * The response may contain multiple TLVs -
700 * - AC Queue status TLVs
701 * - Current WMM Parameter IE TLV
702 * - Admission Control action frame TLVs
704 * This function parses the TLVs and then calls further specific functions
705 * to process any changes in the queue prioritize or state.
707 int mwifiex_ret_wmm_get_status(struct mwifiex_private *priv,
708 const struct host_cmd_ds_command *resp)
710 u8 *curr = (u8 *) &resp->params.get_wmm_status;
711 uint16_t resp_len = le16_to_cpu(resp->size), tlv_len;
712 int valid = true;
714 struct mwifiex_ie_types_data *tlv_hdr;
715 struct mwifiex_ie_types_wmm_queue_status *tlv_wmm_qstatus;
716 struct ieee_types_wmm_parameter *wmm_param_ie = NULL;
717 struct mwifiex_wmm_ac_status *ac_status;
719 dev_dbg(priv->adapter->dev, "info: WMM: WMM_GET_STATUS cmdresp received: %d\n",
720 resp_len);
722 while ((resp_len >= sizeof(tlv_hdr->header)) && valid) {
723 tlv_hdr = (struct mwifiex_ie_types_data *) curr;
724 tlv_len = le16_to_cpu(tlv_hdr->header.len);
726 switch (le16_to_cpu(tlv_hdr->header.type)) {
727 case TLV_TYPE_WMMQSTATUS:
728 tlv_wmm_qstatus =
729 (struct mwifiex_ie_types_wmm_queue_status *)
730 tlv_hdr;
731 dev_dbg(priv->adapter->dev,
732 "info: CMD_RESP: WMM_GET_STATUS:"
733 " QSTATUS TLV: %d, %d, %d\n",
734 tlv_wmm_qstatus->queue_index,
735 tlv_wmm_qstatus->flow_required,
736 tlv_wmm_qstatus->disabled);
738 ac_status = &priv->wmm.ac_status[tlv_wmm_qstatus->
739 queue_index];
740 ac_status->disabled = tlv_wmm_qstatus->disabled;
741 ac_status->flow_required =
742 tlv_wmm_qstatus->flow_required;
743 ac_status->flow_created = tlv_wmm_qstatus->flow_created;
744 break;
746 case WLAN_EID_VENDOR_SPECIFIC:
748 * Point the regular IEEE IE 2 bytes into the Marvell IE
749 * and setup the IEEE IE type and length byte fields
752 wmm_param_ie =
753 (struct ieee_types_wmm_parameter *) (curr +
755 wmm_param_ie->vend_hdr.len = (u8) tlv_len;
756 wmm_param_ie->vend_hdr.element_id =
757 WLAN_EID_VENDOR_SPECIFIC;
759 dev_dbg(priv->adapter->dev,
760 "info: CMD_RESP: WMM_GET_STATUS:"
761 " WMM Parameter Set Count: %d\n",
762 wmm_param_ie->qos_info_bitmap &
763 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK);
765 memcpy((u8 *) &priv->curr_bss_params.bss_descriptor.
766 wmm_ie, wmm_param_ie,
767 wmm_param_ie->vend_hdr.len + 2);
769 break;
771 default:
772 valid = false;
773 break;
776 curr += (tlv_len + sizeof(tlv_hdr->header));
777 resp_len -= (tlv_len + sizeof(tlv_hdr->header));
780 mwifiex_wmm_setup_queue_priorities(priv, wmm_param_ie);
781 mwifiex_wmm_setup_ac_downgrade(priv);
783 return 0;
787 * Callback handler from the command module to allow insertion of a WMM TLV.
789 * If the BSS we are associating to supports WMM, this function adds the
790 * required WMM Information IE to the association request command buffer in
791 * the form of a Marvell extended IEEE IE.
794 mwifiex_wmm_process_association_req(struct mwifiex_private *priv,
795 u8 **assoc_buf,
796 struct ieee_types_wmm_parameter *wmm_ie,
797 struct ieee80211_ht_cap *ht_cap)
799 struct mwifiex_ie_types_wmm_param_set *wmm_tlv;
800 u32 ret_len = 0;
802 /* Null checks */
803 if (!assoc_buf)
804 return 0;
805 if (!(*assoc_buf))
806 return 0;
808 if (!wmm_ie)
809 return 0;
811 dev_dbg(priv->adapter->dev,
812 "info: WMM: process assoc req: bss->wmm_ie=%#x\n",
813 wmm_ie->vend_hdr.element_id);
815 if ((priv->wmm_required ||
816 (ht_cap && (priv->adapter->config_bands & BAND_GN ||
817 priv->adapter->config_bands & BAND_AN))) &&
818 wmm_ie->vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC) {
819 wmm_tlv = (struct mwifiex_ie_types_wmm_param_set *) *assoc_buf;
820 wmm_tlv->header.type = cpu_to_le16((u16) wmm_info_ie[0]);
821 wmm_tlv->header.len = cpu_to_le16((u16) wmm_info_ie[1]);
822 memcpy(wmm_tlv->wmm_ie, &wmm_info_ie[2],
823 le16_to_cpu(wmm_tlv->header.len));
824 if (wmm_ie->qos_info_bitmap & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD)
825 memcpy((u8 *) (wmm_tlv->wmm_ie
826 + le16_to_cpu(wmm_tlv->header.len)
827 - sizeof(priv->wmm_qosinfo)),
828 &priv->wmm_qosinfo, sizeof(priv->wmm_qosinfo));
830 ret_len = sizeof(wmm_tlv->header)
831 + le16_to_cpu(wmm_tlv->header.len);
833 *assoc_buf += ret_len;
836 return ret_len;
840 * This function computes the time delay in the driver queues for a
841 * given packet.
843 * When the packet is received at the OS/Driver interface, the current
844 * time is set in the packet structure. The difference between the present
845 * time and that received time is computed in this function and limited
846 * based on pre-compiled limits in the driver.
849 mwifiex_wmm_compute_drv_pkt_delay(struct mwifiex_private *priv,
850 const struct sk_buff *skb)
852 u8 ret_val;
853 struct timeval out_tstamp, in_tstamp;
854 u32 queue_delay;
856 do_gettimeofday(&out_tstamp);
857 in_tstamp = ktime_to_timeval(skb->tstamp);
859 queue_delay = (out_tstamp.tv_sec - in_tstamp.tv_sec) * 1000;
860 queue_delay += (out_tstamp.tv_usec - in_tstamp.tv_usec) / 1000;
863 * Queue delay is passed as a uint8 in units of 2ms (ms shifted
864 * by 1). Min value (other than 0) is therefore 2ms, max is 510ms.
866 * Pass max value if queue_delay is beyond the uint8 range
868 ret_val = (u8) (min(queue_delay, priv->wmm.drv_pkt_delay_max) >> 1);
870 dev_dbg(priv->adapter->dev, "data: WMM: Pkt Delay: %d ms,"
871 " %d ms sent to FW\n", queue_delay, ret_val);
873 return ret_val;
877 * This function retrieves the highest priority RA list table pointer.
879 static struct mwifiex_ra_list_tbl *
880 mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter,
881 struct mwifiex_private **priv, int *tid)
883 struct mwifiex_private *priv_tmp;
884 struct mwifiex_ra_list_tbl *ptr;
885 struct mwifiex_tid_tbl *tid_ptr;
886 atomic_t *hqp;
887 unsigned long flags_bss, flags_ra;
888 int i, j;
890 /* check the BSS with highest priority first */
891 for (j = adapter->priv_num - 1; j >= 0; --j) {
892 spin_lock_irqsave(&adapter->bss_prio_tbl[j].bss_prio_lock,
893 flags_bss);
895 /* iterate over BSS with the equal priority */
896 list_for_each_entry(adapter->bss_prio_tbl[j].bss_prio_cur,
897 &adapter->bss_prio_tbl[j].bss_prio_head,
898 list) {
900 priv_tmp = adapter->bss_prio_tbl[j].bss_prio_cur->priv;
902 if (atomic_read(&priv_tmp->wmm.tx_pkts_queued) == 0)
903 continue;
905 /* iterate over the WMM queues of the BSS */
906 hqp = &priv_tmp->wmm.highest_queued_prio;
907 for (i = atomic_read(hqp); i >= LOW_PRIO_TID; --i) {
909 spin_lock_irqsave(&priv_tmp->wmm.
910 ra_list_spinlock, flags_ra);
912 tid_ptr = &(priv_tmp)->wmm.
913 tid_tbl_ptr[tos_to_tid[i]];
915 /* iterate over receiver addresses */
916 list_for_each_entry(ptr, &tid_ptr->ra_list,
917 list) {
919 if (!skb_queue_empty(&ptr->skb_head))
920 /* holds both locks */
921 goto found;
924 spin_unlock_irqrestore(&priv_tmp->wmm.
925 ra_list_spinlock,
926 flags_ra);
930 spin_unlock_irqrestore(&adapter->bss_prio_tbl[j].bss_prio_lock,
931 flags_bss);
934 return NULL;
936 found:
937 /* holds bss_prio_lock / ra_list_spinlock */
938 if (atomic_read(hqp) > i)
939 atomic_set(hqp, i);
940 spin_unlock_irqrestore(&priv_tmp->wmm.ra_list_spinlock, flags_ra);
941 spin_unlock_irqrestore(&adapter->bss_prio_tbl[j].bss_prio_lock,
942 flags_bss);
944 *priv = priv_tmp;
945 *tid = tos_to_tid[i];
947 return ptr;
950 /* This functions rotates ra and bss lists so packets are picked round robin.
952 * After a packet is successfully transmitted, rotate the ra list, so the ra
953 * next to the one transmitted, will come first in the list. This way we pick
954 * the ra' in a round robin fashion. Same applies to bss nodes of equal
955 * priority.
957 * Function also increments wmm.packets_out counter.
959 void mwifiex_rotate_priolists(struct mwifiex_private *priv,
960 struct mwifiex_ra_list_tbl *ra,
961 int tid)
963 struct mwifiex_adapter *adapter = priv->adapter;
964 struct mwifiex_bss_prio_tbl *tbl = adapter->bss_prio_tbl;
965 struct mwifiex_tid_tbl *tid_ptr = &priv->wmm.tid_tbl_ptr[tid];
966 unsigned long flags;
968 spin_lock_irqsave(&tbl[priv->bss_priority].bss_prio_lock, flags);
970 * dirty trick: we remove 'head' temporarily and reinsert it after
971 * curr bss node. imagine list to stay fixed while head is moved
973 list_move(&tbl[priv->bss_priority].bss_prio_head,
974 &tbl[priv->bss_priority].bss_prio_cur->list);
975 spin_unlock_irqrestore(&tbl[priv->bss_priority].bss_prio_lock, flags);
977 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
978 if (mwifiex_is_ralist_valid(priv, ra, tid)) {
979 priv->wmm.packets_out[tid]++;
980 /* same as above */
981 list_move(&tid_ptr->ra_list, &ra->list);
983 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
987 * This function checks if 11n aggregation is possible.
989 static int
990 mwifiex_is_11n_aggragation_possible(struct mwifiex_private *priv,
991 struct mwifiex_ra_list_tbl *ptr,
992 int max_buf_size)
994 int count = 0, total_size = 0;
995 struct sk_buff *skb, *tmp;
996 int max_amsdu_size;
998 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP && priv->ap_11n_enabled &&
999 ptr->is_11n_enabled)
1000 max_amsdu_size = min_t(int, ptr->max_amsdu, max_buf_size);
1001 else
1002 max_amsdu_size = max_buf_size;
1004 skb_queue_walk_safe(&ptr->skb_head, skb, tmp) {
1005 total_size += skb->len;
1006 if (total_size >= max_amsdu_size)
1007 break;
1008 if (++count >= MIN_NUM_AMSDU)
1009 return true;
1012 return false;
1016 * This function sends a single packet to firmware for transmission.
1018 static void
1019 mwifiex_send_single_packet(struct mwifiex_private *priv,
1020 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1021 unsigned long ra_list_flags)
1022 __releases(&priv->wmm.ra_list_spinlock)
1024 struct sk_buff *skb, *skb_next;
1025 struct mwifiex_tx_param tx_param;
1026 struct mwifiex_adapter *adapter = priv->adapter;
1027 struct mwifiex_txinfo *tx_info;
1029 if (skb_queue_empty(&ptr->skb_head)) {
1030 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1031 ra_list_flags);
1032 dev_dbg(adapter->dev, "data: nothing to send\n");
1033 return;
1036 skb = skb_dequeue(&ptr->skb_head);
1038 tx_info = MWIFIEX_SKB_TXCB(skb);
1039 dev_dbg(adapter->dev, "data: dequeuing the packet %p %p\n", ptr, skb);
1041 ptr->total_pkt_count--;
1043 if (!skb_queue_empty(&ptr->skb_head))
1044 skb_next = skb_peek(&ptr->skb_head);
1045 else
1046 skb_next = NULL;
1048 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1050 tx_param.next_pkt_len = ((skb_next) ? skb_next->len +
1051 sizeof(struct txpd) : 0);
1053 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
1054 /* Queue the packet back at the head */
1055 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1057 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1058 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1059 ra_list_flags);
1060 mwifiex_write_data_complete(adapter, skb, 0, -1);
1061 return;
1064 skb_queue_tail(&ptr->skb_head, skb);
1066 ptr->total_pkt_count++;
1067 ptr->ba_pkt_count++;
1068 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1069 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1070 ra_list_flags);
1071 } else {
1072 mwifiex_rotate_priolists(priv, ptr, ptr_index);
1073 atomic_dec(&priv->wmm.tx_pkts_queued);
1078 * This function checks if the first packet in the given RA list
1079 * is already processed or not.
1081 static int
1082 mwifiex_is_ptr_processed(struct mwifiex_private *priv,
1083 struct mwifiex_ra_list_tbl *ptr)
1085 struct sk_buff *skb;
1086 struct mwifiex_txinfo *tx_info;
1088 if (skb_queue_empty(&ptr->skb_head))
1089 return false;
1091 skb = skb_peek(&ptr->skb_head);
1093 tx_info = MWIFIEX_SKB_TXCB(skb);
1094 if (tx_info->flags & MWIFIEX_BUF_FLAG_REQUEUED_PKT)
1095 return true;
1097 return false;
1101 * This function sends a single processed packet to firmware for
1102 * transmission.
1104 static void
1105 mwifiex_send_processed_packet(struct mwifiex_private *priv,
1106 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1107 unsigned long ra_list_flags)
1108 __releases(&priv->wmm.ra_list_spinlock)
1110 struct mwifiex_tx_param tx_param;
1111 struct mwifiex_adapter *adapter = priv->adapter;
1112 int ret = -1;
1113 struct sk_buff *skb, *skb_next;
1114 struct mwifiex_txinfo *tx_info;
1116 if (skb_queue_empty(&ptr->skb_head)) {
1117 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1118 ra_list_flags);
1119 return;
1122 skb = skb_dequeue(&ptr->skb_head);
1124 if (!skb_queue_empty(&ptr->skb_head))
1125 skb_next = skb_peek(&ptr->skb_head);
1126 else
1127 skb_next = NULL;
1129 tx_info = MWIFIEX_SKB_TXCB(skb);
1131 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1133 if (adapter->iface_type == MWIFIEX_USB) {
1134 adapter->data_sent = true;
1135 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_USB_EP_DATA,
1136 skb, NULL);
1137 } else {
1138 tx_param.next_pkt_len =
1139 ((skb_next) ? skb_next->len +
1140 sizeof(struct txpd) : 0);
1141 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
1142 skb, &tx_param);
1145 switch (ret) {
1146 case -EBUSY:
1147 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
1148 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1150 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1151 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1152 ra_list_flags);
1153 mwifiex_write_data_complete(adapter, skb, 0, -1);
1154 return;
1157 skb_queue_tail(&ptr->skb_head, skb);
1159 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1160 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1161 ra_list_flags);
1162 break;
1163 case -1:
1164 if (adapter->iface_type != MWIFIEX_PCIE)
1165 adapter->data_sent = false;
1166 dev_err(adapter->dev, "host_to_card failed: %#x\n", ret);
1167 adapter->dbg.num_tx_host_to_card_failure++;
1168 mwifiex_write_data_complete(adapter, skb, 0, ret);
1169 break;
1170 case -EINPROGRESS:
1171 if (adapter->iface_type != MWIFIEX_PCIE)
1172 adapter->data_sent = false;
1173 default:
1174 break;
1176 if (ret != -EBUSY) {
1177 mwifiex_rotate_priolists(priv, ptr, ptr_index);
1178 atomic_dec(&priv->wmm.tx_pkts_queued);
1183 * This function dequeues a packet from the highest priority list
1184 * and transmits it.
1186 static int
1187 mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1189 struct mwifiex_ra_list_tbl *ptr;
1190 struct mwifiex_private *priv = NULL;
1191 int ptr_index = 0;
1192 u8 ra[ETH_ALEN];
1193 int tid_del = 0, tid = 0;
1194 unsigned long flags;
1196 ptr = mwifiex_wmm_get_highest_priolist_ptr(adapter, &priv, &ptr_index);
1197 if (!ptr)
1198 return -1;
1200 tid = mwifiex_get_tid(ptr);
1202 dev_dbg(adapter->dev, "data: tid=%d\n", tid);
1204 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1205 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1206 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1207 return -1;
1210 if (mwifiex_is_ptr_processed(priv, ptr)) {
1211 mwifiex_send_processed_packet(priv, ptr, ptr_index, flags);
1212 /* ra_list_spinlock has been freed in
1213 mwifiex_send_processed_packet() */
1214 return 0;
1217 if (!ptr->is_11n_enabled ||
1218 mwifiex_is_ba_stream_setup(priv, ptr, tid) ||
1219 priv->wps.session_enable ||
1220 ((priv->sec_info.wpa_enabled ||
1221 priv->sec_info.wpa2_enabled) &&
1222 !priv->wpa_is_gtk_set)) {
1223 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1224 /* ra_list_spinlock has been freed in
1225 mwifiex_send_single_packet() */
1226 } else {
1227 if (mwifiex_is_ampdu_allowed(priv, tid) &&
1228 ptr->ba_pkt_count > ptr->ba_packet_thr) {
1229 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
1230 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1231 BA_SETUP_INPROGRESS);
1232 mwifiex_send_addba(priv, tid, ptr->ra);
1233 } else if (mwifiex_find_stream_to_delete
1234 (priv, tid, &tid_del, ra)) {
1235 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1236 BA_SETUP_INPROGRESS);
1237 mwifiex_send_delba(priv, tid_del, ra, 1);
1240 if (enable_tx_amsdu && mwifiex_is_amsdu_allowed(priv, tid) &&
1241 mwifiex_is_11n_aggragation_possible(priv, ptr,
1242 adapter->tx_buf_size))
1243 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
1244 /* ra_list_spinlock has been freed in
1245 mwifiex_11n_aggregate_pkt() */
1246 else
1247 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1248 /* ra_list_spinlock has been freed in
1249 mwifiex_send_single_packet() */
1251 return 0;
1255 * This function transmits the highest priority packet awaiting in the
1256 * WMM Queues.
1258 void
1259 mwifiex_wmm_process_tx(struct mwifiex_adapter *adapter)
1261 do {
1262 /* Check if busy */
1263 if (adapter->data_sent || adapter->tx_lock_flag)
1264 break;
1266 if (mwifiex_dequeue_tx_packet(adapter))
1267 break;
1268 } while (!mwifiex_wmm_lists_empty(adapter));