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