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