blob: a6db12cae76925852bd7b764a9a0cc255a3e4c73 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: WMM
3 *
Xinming Hu65da33f2014-06-19 21:38:57 -07004 * Copyright (C) 2011-2014, Marvell International Ltd.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07005 *
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
Amitkumar Karwar4c9f9fb2014-03-07 19:41:31 -080040static bool disable_tx_amsdu;
41module_param(disable_tx_amsdu, bool, 0644);
Avinash Patilc9e24042013-06-04 16:20:38 -070042
Bing Zhao5e6e3a92011-03-21 18:00:50 -070043/* WMM information IE */
44static const u8 wmm_info_ie[] = { WLAN_EID_VENDOR_SPECIFIC, 0x07,
45 0x00, 0x50, 0xf2, 0x02,
46 0x00, 0x01, 0x00
47};
48
49static const u8 wmm_aci_to_qidx_map[] = { WMM_AC_BE,
50 WMM_AC_BK,
51 WMM_AC_VI,
52 WMM_AC_VO
53};
54
55static u8 tos_to_tid[] = {
56 /* TID DSCP_P2 DSCP_P1 DSCP_P0 WMM_AC */
57 0x01, /* 0 1 0 AC_BK */
58 0x02, /* 0 0 0 AC_BK */
59 0x00, /* 0 0 1 AC_BE */
60 0x03, /* 0 1 1 AC_BE */
61 0x04, /* 1 0 0 AC_VI */
62 0x05, /* 1 0 1 AC_VI */
63 0x06, /* 1 1 0 AC_VO */
64 0x07 /* 1 1 1 AC_VO */
65};
66
Bing Zhao5e6e3a92011-03-21 18:00:50 -070067static u8 ac_to_tid[4][2] = { {1, 2}, {0, 3}, {4, 5}, {6, 7} };
68
69/*
70 * This function debug prints the priority parameters for a WMM AC.
71 */
72static void
73mwifiex_wmm_ac_debug_print(const struct ieee_types_wmm_ac_parameters *ac_param)
74{
75 const char *ac_str[] = { "BK", "BE", "VI", "VO" };
76
77 pr_debug("info: WMM AC_%s: ACI=%d, ACM=%d, Aifsn=%d, "
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -070078 "EcwMin=%d, EcwMax=%d, TxopLimit=%d\n",
79 ac_str[wmm_aci_to_qidx_map[(ac_param->aci_aifsn_bitmap
80 & MWIFIEX_ACI) >> 5]],
81 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACI) >> 5,
82 (ac_param->aci_aifsn_bitmap & MWIFIEX_ACM) >> 4,
83 ac_param->aci_aifsn_bitmap & MWIFIEX_AIFSN,
84 ac_param->ecw_bitmap & MWIFIEX_ECW_MIN,
85 (ac_param->ecw_bitmap & MWIFIEX_ECW_MAX) >> 4,
86 le16_to_cpu(ac_param->tx_op_limit));
Bing Zhao5e6e3a92011-03-21 18:00:50 -070087}
88
89/*
90 * This function allocates a route address list.
91 *
92 * The function also initializes the list with the provided RA.
93 */
94static struct mwifiex_ra_list_tbl *
Johannes Berg3b3a0162014-05-19 17:19:31 +020095mwifiex_wmm_allocate_ralist_node(struct mwifiex_adapter *adapter, const u8 *ra)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096{
97 struct mwifiex_ra_list_tbl *ra_list;
98
99 ra_list = kzalloc(sizeof(struct mwifiex_ra_list_tbl), GFP_ATOMIC);
Joe Perches0d2e7a52013-02-03 17:28:14 +0000100 if (!ra_list)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700101 return NULL;
Joe Perches0d2e7a52013-02-03 17:28:14 +0000102
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700103 INIT_LIST_HEAD(&ra_list->list);
104 skb_queue_head_init(&ra_list->skb_head);
105
106 memcpy(ra_list->ra, ra, ETH_ALEN);
107
Avinash Patilc7d9ed92013-07-22 19:17:40 -0700108 ra_list->total_pkt_count = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700109
110 dev_dbg(adapter->dev, "info: allocated ra_list %p\n", ra_list);
111
112 return ra_list;
113}
114
Avinash Patil5a009ad2012-08-03 18:06:10 -0700115/* This function returns random no between 16 and 32 to be used as threshold
116 * for no of packets after which BA setup is initiated.
117 */
118static u8 mwifiex_get_random_ba_threshold(void)
119{
120 u32 sec, usec;
121 struct timeval ba_tstamp;
122 u8 ba_threshold;
123
124 /* setup ba_packet_threshold here random number between
125 * [BA_SETUP_PACKET_OFFSET,
126 * BA_SETUP_PACKET_OFFSET+BA_SETUP_MAX_PACKET_THRESHOLD-1]
127 */
128
129 do_gettimeofday(&ba_tstamp);
130 sec = (ba_tstamp.tv_sec & 0xFFFF) + (ba_tstamp.tv_sec >> 16);
131 usec = (ba_tstamp.tv_usec & 0xFFFF) + (ba_tstamp.tv_usec >> 16);
132 ba_threshold = (((sec << 16) + usec) % BA_SETUP_MAX_PACKET_THRESHOLD)
133 + BA_SETUP_PACKET_OFFSET;
134
135 return ba_threshold;
136}
137
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138/*
139 * This function allocates and adds a RA list for all TIDs
140 * with the given RA.
141 */
Johannes Berg3b3a0162014-05-19 17:19:31 +0200142void mwifiex_ralist_add(struct mwifiex_private *priv, const u8 *ra)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700143{
144 int i;
145 struct mwifiex_ra_list_tbl *ra_list;
146 struct mwifiex_adapter *adapter = priv->adapter;
Avinash Patil5a009ad2012-08-03 18:06:10 -0700147 struct mwifiex_sta_node *node;
148 unsigned long flags;
149
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700150
151 for (i = 0; i < MAX_NUM_TID; ++i) {
152 ra_list = mwifiex_wmm_allocate_ralist_node(adapter, ra);
153 dev_dbg(adapter->dev, "info: created ra_list %p\n", ra_list);
154
155 if (!ra_list)
156 break;
157
Avinash Patil5a009ad2012-08-03 18:06:10 -0700158 ra_list->is_11n_enabled = 0;
Avinash Patildaeb5bb2014-02-07 16:30:37 -0800159 ra_list->tdls_link = false;
Zhaoyang Liu39df5e82015-03-13 17:37:55 +0530160 ra_list->ba_status = BA_SETUP_NONE;
161 ra_list->amsdu_in_ampdu = false;
Avinash Patil5a009ad2012-08-03 18:06:10 -0700162 if (!mwifiex_queuing_ra_based(priv)) {
Avinash Patildaeb5bb2014-02-07 16:30:37 -0800163 if (mwifiex_get_tdls_link_status(priv, ra) ==
164 TDLS_SETUP_COMPLETE) {
Avinash Patila983e482014-05-27 21:39:33 -0700165 ra_list->tdls_link = true;
Avinash Patildaeb5bb2014-02-07 16:30:37 -0800166 ra_list->is_11n_enabled =
167 mwifiex_tdls_peer_11n_enabled(priv, ra);
168 } else {
169 ra_list->is_11n_enabled = IS_11N_ENABLED(priv);
170 }
Avinash Patil5a009ad2012-08-03 18:06:10 -0700171 } else {
Avinash Patilc11fb982014-12-05 23:23:41 +0530172 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
173 node = mwifiex_get_sta_entry(priv, ra);
Avinash Patil5a009ad2012-08-03 18:06:10 -0700174 ra_list->is_11n_enabled =
175 mwifiex_is_sta_11n_enabled(priv, node);
176 if (ra_list->is_11n_enabled)
177 ra_list->max_amsdu = node->max_amsdu;
Avinash Patilc11fb982014-12-05 23:23:41 +0530178 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
Avinash Patil5a009ad2012-08-03 18:06:10 -0700179 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180
181 dev_dbg(adapter->dev, "data: ralist %p: is_11n_enabled=%d\n",
182 ra_list, ra_list->is_11n_enabled);
183
Avinash Patil5a009ad2012-08-03 18:06:10 -0700184 if (ra_list->is_11n_enabled) {
Avinash Patilf0cb84f2013-07-22 19:17:39 -0700185 ra_list->ba_pkt_count = 0;
Avinash Patil5a009ad2012-08-03 18:06:10 -0700186 ra_list->ba_packet_thr =
187 mwifiex_get_random_ba_threshold();
188 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700189 list_add_tail(&ra_list->list,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700190 &priv->wmm.tid_tbl_ptr[i].ra_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700191 }
192}
193
194/*
195 * This function sets the WMM queue priorities to their default values.
196 */
197static void mwifiex_wmm_default_queue_priorities(struct mwifiex_private *priv)
198{
199 /* Default queue priorities: VO->VI->BE->BK */
200 priv->wmm.queue_priority[0] = WMM_AC_VO;
201 priv->wmm.queue_priority[1] = WMM_AC_VI;
202 priv->wmm.queue_priority[2] = WMM_AC_BE;
203 priv->wmm.queue_priority[3] = WMM_AC_BK;
204}
205
206/*
207 * This function map ACs to TIDs.
208 */
209static void
Avinash Patil41a24a22014-02-07 16:27:29 -0800210mwifiex_wmm_queue_priorities_tid(struct mwifiex_private *priv)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700211{
Avinash Patil41a24a22014-02-07 16:27:29 -0800212 struct mwifiex_wmm_desc *wmm = &priv->wmm;
Marc Yang49729ff2011-05-16 19:17:50 -0700213 u8 *queue_priority = wmm->queue_priority;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700214 int i;
215
216 for (i = 0; i < 4; ++i) {
217 tos_to_tid[7 - (i * 2)] = ac_to_tid[queue_priority[i]][1];
218 tos_to_tid[6 - (i * 2)] = ac_to_tid[queue_priority[i]][0];
219 }
Marc Yang49729ff2011-05-16 19:17:50 -0700220
221 for (i = 0; i < MAX_NUM_TID; ++i)
Avinash Patil41a24a22014-02-07 16:27:29 -0800222 priv->tos_to_tid_inv[tos_to_tid[i]] = (u8)i;
Marc Yang49729ff2011-05-16 19:17:50 -0700223
224 atomic_set(&wmm->highest_queued_prio, HIGH_PRIO_TID);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700225}
226
227/*
228 * This function initializes WMM priority queues.
229 */
230void
231mwifiex_wmm_setup_queue_priorities(struct mwifiex_private *priv,
232 struct ieee_types_wmm_parameter *wmm_ie)
233{
234 u16 cw_min, avg_back_off, tmp[4];
235 u32 i, j, num_ac;
236 u8 ac_idx;
237
238 if (!wmm_ie || !priv->wmm_enabled) {
239 /* WMM is not enabled, just set the defaults and return */
240 mwifiex_wmm_default_queue_priorities(priv);
241 return;
242 }
243
244 dev_dbg(priv->adapter->dev, "info: WMM Parameter IE: version=%d, "
245 "qos_info Parameter Set Count=%d, Reserved=%#x\n",
246 wmm_ie->vend_hdr.version, wmm_ie->qos_info_bitmap &
247 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK,
248 wmm_ie->reserved);
249
250 for (num_ac = 0; num_ac < ARRAY_SIZE(wmm_ie->ac_params); num_ac++) {
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700251 u8 ecw = wmm_ie->ac_params[num_ac].ecw_bitmap;
252 u8 aci_aifsn = wmm_ie->ac_params[num_ac].aci_aifsn_bitmap;
253 cw_min = (1 << (ecw & MWIFIEX_ECW_MIN)) - 1;
254 avg_back_off = (cw_min >> 1) + (aci_aifsn & MWIFIEX_AIFSN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700255
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700256 ac_idx = wmm_aci_to_qidx_map[(aci_aifsn & MWIFIEX_ACI) >> 5];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700257 priv->wmm.queue_priority[ac_idx] = ac_idx;
258 tmp[ac_idx] = avg_back_off;
259
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700260 dev_dbg(priv->adapter->dev,
261 "info: WMM: CWmax=%d CWmin=%d Avg Back-off=%d\n",
262 (1 << ((ecw & MWIFIEX_ECW_MAX) >> 4)) - 1,
263 cw_min, avg_back_off);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700264 mwifiex_wmm_ac_debug_print(&wmm_ie->ac_params[num_ac]);
265 }
266
267 /* Bubble sort */
268 for (i = 0; i < num_ac; i++) {
269 for (j = 1; j < num_ac - i; j++) {
270 if (tmp[j - 1] > tmp[j]) {
271 swap(tmp[j - 1], tmp[j]);
272 swap(priv->wmm.queue_priority[j - 1],
273 priv->wmm.queue_priority[j]);
274 } else if (tmp[j - 1] == tmp[j]) {
275 if (priv->wmm.queue_priority[j - 1]
276 < priv->wmm.queue_priority[j])
277 swap(priv->wmm.queue_priority[j - 1],
278 priv->wmm.queue_priority[j]);
279 }
280 }
281 }
282
Avinash Patil41a24a22014-02-07 16:27:29 -0800283 mwifiex_wmm_queue_priorities_tid(priv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700284}
285
286/*
287 * This function evaluates whether or not an AC is to be downgraded.
288 *
289 * In case the AC is not enabled, the highest AC is returned that is
290 * enabled and does not require admission control.
291 */
292static enum mwifiex_wmm_ac_e
293mwifiex_wmm_eval_downgrade_ac(struct mwifiex_private *priv,
294 enum mwifiex_wmm_ac_e eval_ac)
295{
296 int down_ac;
297 enum mwifiex_wmm_ac_e ret_ac;
298 struct mwifiex_wmm_ac_status *ac_status;
299
300 ac_status = &priv->wmm.ac_status[eval_ac];
301
302 if (!ac_status->disabled)
303 /* Okay to use this AC, its enabled */
304 return eval_ac;
305
306 /* Setup a default return value of the lowest priority */
307 ret_ac = WMM_AC_BK;
308
309 /*
310 * Find the highest AC that is enabled and does not require
311 * admission control. The spec disallows downgrading to an AC,
312 * which is enabled due to a completed admission control.
313 * Unadmitted traffic is not to be sent on an AC with admitted
314 * traffic.
315 */
316 for (down_ac = WMM_AC_BK; down_ac < eval_ac; down_ac++) {
317 ac_status = &priv->wmm.ac_status[down_ac];
318
319 if (!ac_status->disabled && !ac_status->flow_required)
320 /* AC is enabled and does not require admission
321 control */
322 ret_ac = (enum mwifiex_wmm_ac_e) down_ac;
323 }
324
325 return ret_ac;
326}
327
328/*
329 * This function downgrades WMM priority queue.
330 */
331void
332mwifiex_wmm_setup_ac_downgrade(struct mwifiex_private *priv)
333{
334 int ac_val;
335
336 dev_dbg(priv->adapter->dev, "info: WMM: AC Priorities:"
337 "BK(0), BE(1), VI(2), VO(3)\n");
338
339 if (!priv->wmm_enabled) {
340 /* WMM is not enabled, default priorities */
341 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++)
342 priv->wmm.ac_down_graded_vals[ac_val] =
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700343 (enum mwifiex_wmm_ac_e) ac_val;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700344 } else {
345 for (ac_val = WMM_AC_BK; ac_val <= WMM_AC_VO; ac_val++) {
346 priv->wmm.ac_down_graded_vals[ac_val]
347 = mwifiex_wmm_eval_downgrade_ac(priv,
348 (enum mwifiex_wmm_ac_e) ac_val);
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700349 dev_dbg(priv->adapter->dev,
350 "info: WMM: AC PRIO %d maps to %d\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700351 ac_val, priv->wmm.ac_down_graded_vals[ac_val]);
352 }
353 }
354}
355
356/*
357 * This function converts the IP TOS field to an WMM AC
358 * Queue assignment.
359 */
360static enum mwifiex_wmm_ac_e
361mwifiex_wmm_convert_tos_to_ac(struct mwifiex_adapter *adapter, u32 tos)
362{
363 /* Map of TOS UP values to WMM AC */
364 const enum mwifiex_wmm_ac_e tos_to_ac[] = { WMM_AC_BE,
365 WMM_AC_BK,
366 WMM_AC_BK,
367 WMM_AC_BE,
368 WMM_AC_VI,
369 WMM_AC_VI,
370 WMM_AC_VO,
371 WMM_AC_VO
372 };
373
374 if (tos >= ARRAY_SIZE(tos_to_ac))
375 return WMM_AC_BE;
376
377 return tos_to_ac[tos];
378}
379
380/*
381 * This function evaluates a given TID and downgrades it to a lower
382 * TID if the WMM Parameter IE received from the AP indicates that the
383 * AP is disabled (due to call admission control (ACM bit). Mapping
384 * of TID to AC is taken care of internally.
385 */
Avinash Patil5f2caaf2014-02-07 16:27:33 -0800386u8 mwifiex_wmm_downgrade_tid(struct mwifiex_private *priv, u32 tid)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700387{
388 enum mwifiex_wmm_ac_e ac, ac_down;
389 u8 new_tid;
390
391 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid);
392 ac_down = priv->wmm.ac_down_graded_vals[ac];
393
394 /* Send the index to tid array, picking from the array will be
395 * taken care by dequeuing function
396 */
397 new_tid = ac_to_tid[ac_down][tid % 2];
398
399 return new_tid;
400}
401
402/*
403 * This function initializes the WMM state information and the
404 * WMM data path queues.
405 */
406void
407mwifiex_wmm_init(struct mwifiex_adapter *adapter)
408{
409 int i, j;
410 struct mwifiex_private *priv;
411
412 for (j = 0; j < adapter->priv_num; ++j) {
413 priv = adapter->priv[j];
414 if (!priv)
415 continue;
416
417 for (i = 0; i < MAX_NUM_TID; ++i) {
Amitkumar Karwar4c9f9fb2014-03-07 19:41:31 -0800418 if (!disable_tx_amsdu &&
419 adapter->tx_buf_size > MWIFIEX_TX_DATA_BUF_SIZE_2K)
420 priv->aggr_prio_tbl[i].amsdu =
421 priv->tos_to_tid_inv[i];
422 else
423 priv->aggr_prio_tbl[i].amsdu =
424 BA_STREAM_NOT_ALLOWED;
Avinash Patil41a24a22014-02-07 16:27:29 -0800425 priv->aggr_prio_tbl[i].ampdu_ap =
426 priv->tos_to_tid_inv[i];
427 priv->aggr_prio_tbl[i].ampdu_user =
428 priv->tos_to_tid_inv[i];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700429 }
430
Avinash Patil04abc0a2013-03-27 19:10:31 -0700431 mwifiex_set_ba_params(priv);
Stone Piao92583922012-06-20 20:21:10 -0700432 mwifiex_reset_11n_rx_seq_num(priv);
433
Marc Yangf6992542011-05-16 19:17:49 -0700434 atomic_set(&priv->wmm.tx_pkts_queued, 0);
Marc Yang49729ff2011-05-16 19:17:50 -0700435 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700436 }
437}
438
439/*
440 * This function checks if WMM Tx queue is empty.
441 */
442int
443mwifiex_wmm_lists_empty(struct mwifiex_adapter *adapter)
444{
Marc Yangf6992542011-05-16 19:17:49 -0700445 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700446 struct mwifiex_private *priv;
447
Marc Yangf6992542011-05-16 19:17:49 -0700448 for (i = 0; i < adapter->priv_num; ++i) {
449 priv = adapter->priv[i];
450 if (priv && atomic_read(&priv->wmm.tx_pkts_queued))
Stone Piaoa8aa69d2012-09-25 20:23:31 -0700451 return false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700452 }
453
454 return true;
455}
456
457/*
458 * This function deletes all packets in an RA list node.
459 *
460 * The packet sent completion callback handler are called with
461 * status failure, after they are dequeued to ensure proper
462 * cleanup. The RA list node itself is freed at the end.
463 */
464static void
465mwifiex_wmm_del_pkts_in_ralist_node(struct mwifiex_private *priv,
466 struct mwifiex_ra_list_tbl *ra_list)
467{
468 struct mwifiex_adapter *adapter = priv->adapter;
469 struct sk_buff *skb, *tmp;
470
471 skb_queue_walk_safe(&ra_list->skb_head, skb, tmp)
Avinash Patil47411a02012-11-01 18:44:16 -0700472 mwifiex_write_data_complete(adapter, skb, 0, -1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700473}
474
475/*
476 * This function deletes all packets in an RA list.
477 *
478 * Each nodes in the RA list are freed individually first, and then
479 * the RA list itself is freed.
480 */
481static void
482mwifiex_wmm_del_pkts_in_ralist(struct mwifiex_private *priv,
483 struct list_head *ra_list_head)
484{
485 struct mwifiex_ra_list_tbl *ra_list;
486
487 list_for_each_entry(ra_list, ra_list_head, list)
488 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
489}
490
491/*
492 * This function deletes all packets in all RA lists.
493 */
494static void mwifiex_wmm_cleanup_queues(struct mwifiex_private *priv)
495{
496 int i;
497
498 for (i = 0; i < MAX_NUM_TID; i++)
499 mwifiex_wmm_del_pkts_in_ralist(priv, &priv->wmm.tid_tbl_ptr[i].
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700500 ra_list);
Marc Yangf6992542011-05-16 19:17:49 -0700501
502 atomic_set(&priv->wmm.tx_pkts_queued, 0);
Marc Yang49729ff2011-05-16 19:17:50 -0700503 atomic_set(&priv->wmm.highest_queued_prio, HIGH_PRIO_TID);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700504}
505
506/*
507 * This function deletes all route addresses from all RA lists.
508 */
509static void mwifiex_wmm_delete_all_ralist(struct mwifiex_private *priv)
510{
511 struct mwifiex_ra_list_tbl *ra_list, *tmp_node;
512 int i;
513
514 for (i = 0; i < MAX_NUM_TID; ++i) {
515 dev_dbg(priv->adapter->dev,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700516 "info: ra_list: freeing buf for tid %d\n", i);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700517 list_for_each_entry_safe(ra_list, tmp_node,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700518 &priv->wmm.tid_tbl_ptr[i].ra_list,
519 list) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700520 list_del(&ra_list->list);
521 kfree(ra_list);
522 }
523
524 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[i].ra_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700525 }
526}
527
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800528static int mwifiex_free_ack_frame(int id, void *p, void *data)
529{
530 pr_warn("Have pending ack frames!\n");
531 kfree_skb(p);
532 return 0;
533}
534
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535/*
536 * This function cleans up the Tx and Rx queues.
537 *
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
544 */
545void
546mwifiex_clean_txrx(struct mwifiex_private *priv)
547{
548 unsigned long flags;
Avinash Patil56bd24a2014-02-07 16:30:35 -0800549 struct sk_buff *skb, *tmp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700550
551 mwifiex_11n_cleanup_reorder_tbl(priv);
552 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
553
554 mwifiex_wmm_cleanup_queues(priv);
555 mwifiex_11n_delete_all_tx_ba_stream_tbl(priv);
556
557 if (priv->adapter->if_ops.cleanup_mpa_buf)
558 priv->adapter->if_ops.cleanup_mpa_buf(priv->adapter);
559
560 mwifiex_wmm_delete_all_ralist(priv);
561 memcpy(tos_to_tid, ac_to_tid, sizeof(tos_to_tid));
562
Avinash Patil4f7ba432014-02-18 15:41:54 -0800563 if (priv->adapter->if_ops.clean_pcie_ring &&
564 !priv->adapter->surprise_removed)
Avinash Patilfbd7e7a2013-01-03 21:21:31 -0800565 priv->adapter->if_ops.clean_pcie_ring(priv->adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700566 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
Avinash Patil56bd24a2014-02-07 16:30:35 -0800567
568 skb_queue_walk_safe(&priv->tdls_txq, skb, tmp)
569 mwifiex_write_data_complete(priv->adapter, skb, 0, -1);
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800570
571 idr_for_each(&priv->ack_status_frames, mwifiex_free_ack_frame, NULL);
572 idr_destroy(&priv->ack_status_frames);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700573}
574
575/*
576 * This function retrieves a particular RA list node, matching with the
577 * given TID and RA address.
578 */
Zhaoyang Liu39df5e82015-03-13 17:37:55 +0530579struct mwifiex_ra_list_tbl *
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700580mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200581 const u8 *ra_addr)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700582{
583 struct mwifiex_ra_list_tbl *ra_list;
584
585 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
586 list) {
587 if (!memcmp(ra_list->ra, ra_addr, ETH_ALEN))
588 return ra_list;
589 }
590
591 return NULL;
592}
593
594/*
595 * This function retrieves an RA list node for a given TID and
596 * RA address pair.
597 *
598 * If no such node is found, a new node is added first and then
599 * retrieved.
600 */
Avinash Patil5f2caaf2014-02-07 16:27:33 -0800601struct mwifiex_ra_list_tbl *
Johannes Berg3b3a0162014-05-19 17:19:31 +0200602mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid,
603 const u8 *ra_addr)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700604{
605 struct mwifiex_ra_list_tbl *ra_list;
606
607 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
608 if (ra_list)
609 return ra_list;
610 mwifiex_ralist_add(priv, ra_addr);
611
612 return mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
613}
614
615/*
Avinash Patil9817fff2014-12-05 23:23:40 +0530616 * This function deletes RA list nodes for given mac for all TIDs.
617 * Function also decrements TX pending count accordingly.
618 */
619void
620mwifiex_wmm_del_peer_ra_list(struct mwifiex_private *priv, const u8 *ra_addr)
621{
622 struct mwifiex_ra_list_tbl *ra_list;
623 unsigned long flags;
624 int i;
625
626 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
627
628 for (i = 0; i < MAX_NUM_TID; ++i) {
629 ra_list = mwifiex_wmm_get_ralist_node(priv, i, ra_addr);
630
631 if (!ra_list)
632 continue;
633 mwifiex_wmm_del_pkts_in_ralist_node(priv, ra_list);
634 atomic_sub(ra_list->total_pkt_count, &priv->wmm.tx_pkts_queued);
635 list_del(&ra_list->list);
636 kfree(ra_list);
637 }
638 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
639}
640
641/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700642 * This function checks if a particular RA list node exists in a given TID
643 * table index.
644 */
645int
646mwifiex_is_ralist_valid(struct mwifiex_private *priv,
647 struct mwifiex_ra_list_tbl *ra_list, int ptr_index)
648{
649 struct mwifiex_ra_list_tbl *rlist;
650
651 list_for_each_entry(rlist, &priv->wmm.tid_tbl_ptr[ptr_index].ra_list,
652 list) {
653 if (rlist == ra_list)
654 return true;
655 }
656
657 return false;
658}
659
660/*
661 * This function adds a packet to WMM queue.
662 *
663 * In disconnected state the packet is immediately dropped and the
664 * packet send completion callback is called with status failure.
665 *
666 * Otherwise, the correct RA list node is located and the packet
667 * is queued at the list tail.
668 */
669void
Avinash Patil2690e1b2012-01-24 20:50:24 -0800670mwifiex_wmm_add_buf_txqueue(struct mwifiex_private *priv,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700671 struct sk_buff *skb)
672{
Avinash Patil2690e1b2012-01-24 20:50:24 -0800673 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700674 u32 tid;
675 struct mwifiex_ra_list_tbl *ra_list;
676 u8 ra[ETH_ALEN], tid_down;
677 unsigned long flags;
Avinash Patild63bf5e2014-02-07 16:30:36 -0800678 struct list_head list_head;
679 int tdls_status = TDLS_NOT_SETUP;
680 struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
681 struct mwifiex_txinfo *tx_info = MWIFIEX_SKB_TXCB(skb);
682
683 memcpy(ra, eth_hdr->h_dest, ETH_ALEN);
684
685 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA &&
686 ISSUPP_TDLS_ENABLED(adapter->fw_cap_info)) {
687 if (ntohs(eth_hdr->h_proto) == ETH_P_TDLS)
688 dev_dbg(adapter->dev,
689 "TDLS setup packet for %pM. Don't block\n", ra);
Avinash Patil16e85522014-05-21 22:02:27 -0700690 else if (memcmp(priv->cfg_bssid, ra, ETH_ALEN))
Avinash Patild63bf5e2014-02-07 16:30:36 -0800691 tdls_status = mwifiex_get_tdls_link_status(priv, ra);
692 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700693
Stone Piaoe39faa72012-09-25 20:23:32 -0700694 if (!priv->media_connected && !mwifiex_is_skb_mgmt_frame(skb)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700695 dev_dbg(adapter->dev, "data: drop packet in disconnect\n");
Avinash Patil47411a02012-11-01 18:44:16 -0700696 mwifiex_write_data_complete(adapter, skb, 0, -1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700697 return;
698 }
699
700 tid = skb->priority;
701
702 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
703
704 tid_down = mwifiex_wmm_downgrade_tid(priv, tid);
705
706 /* In case of infra as we have already created the list during
707 association we just don't have to call get_queue_raptr, we will
708 have only 1 raptr for a tid in case of infra */
Stone Piaoe39faa72012-09-25 20:23:32 -0700709 if (!mwifiex_queuing_ra_based(priv) &&
710 !mwifiex_is_skb_mgmt_frame(skb)) {
Avinash Patild63bf5e2014-02-07 16:30:36 -0800711 switch (tdls_status) {
712 case TDLS_SETUP_COMPLETE:
713 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down,
714 ra);
715 tx_info->flags |= MWIFIEX_BUF_FLAG_TDLS_PKT;
716 break;
717 case TDLS_SETUP_INPROGRESS:
718 skb_queue_tail(&priv->tdls_txq, skb);
719 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
720 flags);
721 return;
722 default:
723 list_head = priv->wmm.tid_tbl_ptr[tid_down].ra_list;
724 if (!list_empty(&list_head))
725 ra_list = list_first_entry(
726 &list_head, struct mwifiex_ra_list_tbl,
727 list);
728 else
729 ra_list = NULL;
730 break;
731 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700732 } else {
733 memcpy(ra, skb->data, ETH_ALEN);
Stone Piaoe39faa72012-09-25 20:23:32 -0700734 if (ra[0] & 0x01 || mwifiex_is_skb_mgmt_frame(skb))
Joe Perches93803b32015-03-02 19:54:49 -0800735 eth_broadcast_addr(ra);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700736 ra_list = mwifiex_wmm_get_queue_raptr(priv, tid_down, ra);
737 }
738
739 if (!ra_list) {
740 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
Avinash Patil47411a02012-11-01 18:44:16 -0700741 mwifiex_write_data_complete(adapter, skb, 0, -1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700742 return;
743 }
744
745 skb_queue_tail(&ra_list->skb_head, skb);
746
Avinash Patilf0cb84f2013-07-22 19:17:39 -0700747 ra_list->ba_pkt_count++;
Avinash Patilc7d9ed92013-07-22 19:17:40 -0700748 ra_list->total_pkt_count++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700749
Marc Yang49729ff2011-05-16 19:17:50 -0700750 if (atomic_read(&priv->wmm.highest_queued_prio) <
Avinash Patil41a24a22014-02-07 16:27:29 -0800751 priv->tos_to_tid_inv[tid_down])
Marc Yang49729ff2011-05-16 19:17:50 -0700752 atomic_set(&priv->wmm.highest_queued_prio,
Avinash Patil41a24a22014-02-07 16:27:29 -0800753 priv->tos_to_tid_inv[tid_down]);
Marc Yang49729ff2011-05-16 19:17:50 -0700754
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700755 atomic_inc(&priv->wmm.tx_pkts_queued);
756
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700757 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
758}
759
760/*
761 * This function processes the get WMM status command response from firmware.
762 *
763 * The response may contain multiple TLVs -
764 * - AC Queue status TLVs
765 * - Current WMM Parameter IE TLV
766 * - Admission Control action frame TLVs
767 *
768 * This function parses the TLVs and then calls further specific functions
769 * to process any changes in the queue prioritize or state.
770 */
771int mwifiex_ret_wmm_get_status(struct mwifiex_private *priv,
772 const struct host_cmd_ds_command *resp)
773{
774 u8 *curr = (u8 *) &resp->params.get_wmm_status;
775 uint16_t resp_len = le16_to_cpu(resp->size), tlv_len;
Peter Senna Tschudinc8561972013-09-22 00:27:43 +0200776 bool valid = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700777
778 struct mwifiex_ie_types_data *tlv_hdr;
779 struct mwifiex_ie_types_wmm_queue_status *tlv_wmm_qstatus;
780 struct ieee_types_wmm_parameter *wmm_param_ie = NULL;
781 struct mwifiex_wmm_ac_status *ac_status;
782
783 dev_dbg(priv->adapter->dev, "info: WMM: WMM_GET_STATUS cmdresp received: %d\n",
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700784 resp_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700785
786 while ((resp_len >= sizeof(tlv_hdr->header)) && valid) {
787 tlv_hdr = (struct mwifiex_ie_types_data *) curr;
788 tlv_len = le16_to_cpu(tlv_hdr->header.len);
789
Dan Carpenter95edbc32013-10-22 15:24:42 -0700790 if (resp_len < tlv_len + sizeof(tlv_hdr->header))
791 break;
792
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700793 switch (le16_to_cpu(tlv_hdr->header.type)) {
794 case TLV_TYPE_WMMQSTATUS:
795 tlv_wmm_qstatus =
796 (struct mwifiex_ie_types_wmm_queue_status *)
797 tlv_hdr;
798 dev_dbg(priv->adapter->dev,
799 "info: CMD_RESP: WMM_GET_STATUS:"
800 " QSTATUS TLV: %d, %d, %d\n",
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700801 tlv_wmm_qstatus->queue_index,
802 tlv_wmm_qstatus->flow_required,
803 tlv_wmm_qstatus->disabled);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700804
805 ac_status = &priv->wmm.ac_status[tlv_wmm_qstatus->
806 queue_index];
807 ac_status->disabled = tlv_wmm_qstatus->disabled;
808 ac_status->flow_required =
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700809 tlv_wmm_qstatus->flow_required;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700810 ac_status->flow_created = tlv_wmm_qstatus->flow_created;
811 break;
812
813 case WLAN_EID_VENDOR_SPECIFIC:
814 /*
815 * Point the regular IEEE IE 2 bytes into the Marvell IE
816 * and setup the IEEE IE type and length byte fields
817 */
818
819 wmm_param_ie =
820 (struct ieee_types_wmm_parameter *) (curr +
821 2);
822 wmm_param_ie->vend_hdr.len = (u8) tlv_len;
823 wmm_param_ie->vend_hdr.element_id =
824 WLAN_EID_VENDOR_SPECIFIC;
825
826 dev_dbg(priv->adapter->dev,
827 "info: CMD_RESP: WMM_GET_STATUS:"
828 " WMM Parameter Set Count: %d\n",
829 wmm_param_ie->qos_info_bitmap &
830 IEEE80211_WMM_IE_AP_QOSINFO_PARAM_SET_CNT_MASK);
831
832 memcpy((u8 *) &priv->curr_bss_params.bss_descriptor.
833 wmm_ie, wmm_param_ie,
834 wmm_param_ie->vend_hdr.len + 2);
835
836 break;
837
838 default:
839 valid = false;
840 break;
841 }
842
843 curr += (tlv_len + sizeof(tlv_hdr->header));
844 resp_len -= (tlv_len + sizeof(tlv_hdr->header));
845 }
846
847 mwifiex_wmm_setup_queue_priorities(priv, wmm_param_ie);
848 mwifiex_wmm_setup_ac_downgrade(priv);
849
850 return 0;
851}
852
853/*
854 * Callback handler from the command module to allow insertion of a WMM TLV.
855 *
856 * If the BSS we are associating to supports WMM, this function adds the
857 * required WMM Information IE to the association request command buffer in
858 * the form of a Marvell extended IEEE IE.
859 */
860u32
861mwifiex_wmm_process_association_req(struct mwifiex_private *priv,
862 u8 **assoc_buf,
863 struct ieee_types_wmm_parameter *wmm_ie,
864 struct ieee80211_ht_cap *ht_cap)
865{
866 struct mwifiex_ie_types_wmm_param_set *wmm_tlv;
867 u32 ret_len = 0;
868
869 /* Null checks */
870 if (!assoc_buf)
871 return 0;
872 if (!(*assoc_buf))
873 return 0;
874
875 if (!wmm_ie)
876 return 0;
877
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700878 dev_dbg(priv->adapter->dev,
879 "info: WMM: process assoc req: bss->wmm_ie=%#x\n",
880 wmm_ie->vend_hdr.element_id);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700881
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700882 if ((priv->wmm_required ||
883 (ht_cap && (priv->adapter->config_bands & BAND_GN ||
884 priv->adapter->config_bands & BAND_AN))) &&
885 wmm_ie->vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700886 wmm_tlv = (struct mwifiex_ie_types_wmm_param_set *) *assoc_buf;
887 wmm_tlv->header.type = cpu_to_le16((u16) wmm_info_ie[0]);
888 wmm_tlv->header.len = cpu_to_le16((u16) wmm_info_ie[1]);
889 memcpy(wmm_tlv->wmm_ie, &wmm_info_ie[2],
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700890 le16_to_cpu(wmm_tlv->header.len));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700891 if (wmm_ie->qos_info_bitmap & IEEE80211_WMM_IE_AP_QOSINFO_UAPSD)
892 memcpy((u8 *) (wmm_tlv->wmm_ie
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700893 + le16_to_cpu(wmm_tlv->header.len)
894 - sizeof(priv->wmm_qosinfo)),
895 &priv->wmm_qosinfo, sizeof(priv->wmm_qosinfo));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700896
897 ret_len = sizeof(wmm_tlv->header)
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700898 + le16_to_cpu(wmm_tlv->header.len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700899
900 *assoc_buf += ret_len;
901 }
902
903 return ret_len;
904}
905
906/*
907 * This function computes the time delay in the driver queues for a
908 * given packet.
909 *
910 * When the packet is received at the OS/Driver interface, the current
911 * time is set in the packet structure. The difference between the present
912 * time and that received time is computed in this function and limited
913 * based on pre-compiled limits in the driver.
914 */
915u8
916mwifiex_wmm_compute_drv_pkt_delay(struct mwifiex_private *priv,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700917 const struct sk_buff *skb)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700918{
Thomas Gleixnerc64800e2014-06-12 08:31:34 +0100919 u32 queue_delay = ktime_to_ms(net_timedelta(skb->tstamp));
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700920 u8 ret_val;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700921
922 /*
923 * Queue delay is passed as a uint8 in units of 2ms (ms shifted
924 * by 1). Min value (other than 0) is therefore 2ms, max is 510ms.
925 *
926 * Pass max value if queue_delay is beyond the uint8 range
927 */
928 ret_val = (u8) (min(queue_delay, priv->wmm.drv_pkt_delay_max) >> 1);
929
930 dev_dbg(priv->adapter->dev, "data: WMM: Pkt Delay: %d ms,"
931 " %d ms sent to FW\n", queue_delay, ret_val);
932
933 return ret_val;
934}
935
936/*
937 * This function retrieves the highest priority RA list table pointer.
938 */
939static struct mwifiex_ra_list_tbl *
940mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter,
941 struct mwifiex_private **priv, int *tid)
942{
943 struct mwifiex_private *priv_tmp;
Andreas Fenkart2e237312013-04-18 16:33:45 -0700944 struct mwifiex_ra_list_tbl *ptr;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700945 struct mwifiex_tid_tbl *tid_ptr;
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700946 atomic_t *hqp;
Zhaoyang Liu690e7922015-03-13 17:37:56 +0530947 unsigned long flags_ra;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700948 int i, j;
949
Andreas Fenkartb006ed52013-04-18 16:34:12 -0700950 /* check the BSS with highest priority first */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700951 for (j = adapter->priv_num - 1; j >= 0; --j) {
Andreas Fenkartb006ed52013-04-18 16:34:12 -0700952 /* iterate over BSS with the equal priority */
953 list_for_each_entry(adapter->bss_prio_tbl[j].bss_prio_cur,
954 &adapter->bss_prio_tbl[j].bss_prio_head,
955 list) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700956
Andreas Fenkartb006ed52013-04-18 16:34:12 -0700957 priv_tmp = adapter->bss_prio_tbl[j].bss_prio_cur->priv;
Marc Yang49729ff2011-05-16 19:17:50 -0700958
Andreas Fenkart333f6b22013-04-04 20:03:52 -0700959 if (atomic_read(&priv_tmp->wmm.tx_pkts_queued) == 0)
Andreas Fenkartb006ed52013-04-18 16:34:12 -0700960 continue;
Andreas Fenkart333f6b22013-04-04 20:03:52 -0700961
962 /* iterate over the WMM queues of the BSS */
963 hqp = &priv_tmp->wmm.highest_queued_prio;
Marc Yang49729ff2011-05-16 19:17:50 -0700964 for (i = atomic_read(hqp); i >= LOW_PRIO_TID; --i) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700965
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700966 spin_lock_irqsave(&priv_tmp->wmm.
967 ra_list_spinlock, flags_ra);
968
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700969 tid_ptr = &(priv_tmp)->wmm.
970 tid_tbl_ptr[tos_to_tid[i]];
971
Andreas Fenkart2e237312013-04-18 16:33:45 -0700972 /* iterate over receiver addresses */
973 list_for_each_entry(ptr, &tid_ptr->ra_list,
974 list) {
Avinash Patil64b05e22012-05-08 18:30:13 -0700975
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700976 if (!skb_queue_empty(&ptr->skb_head))
977 /* holds both locks */
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700978 goto found;
Andreas Fenkart2e237312013-04-18 16:33:45 -0700979 }
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700980
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700981 spin_unlock_irqrestore(&priv_tmp->wmm.
982 ra_list_spinlock,
983 flags_ra);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700984 }
Andreas Fenkartb006ed52013-04-18 16:34:12 -0700985 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700986
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700987 }
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700988
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700989 return NULL;
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700990
991found:
Zhaoyang Liu690e7922015-03-13 17:37:56 +0530992 /* holds ra_list_spinlock */
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700993 if (atomic_read(hqp) > i)
994 atomic_set(hqp, i);
Andreas Fenkart2716fd72013-04-04 20:03:53 -0700995 spin_unlock_irqrestore(&priv_tmp->wmm.ra_list_spinlock, flags_ra);
Yogesh Ashok Powarbb7de2b2012-03-12 19:35:12 -0700996
997 *priv = priv_tmp;
998 *tid = tos_to_tid[i];
999
1000 return ptr;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001001}
1002
Andreas Fenkartb006ed52013-04-18 16:34:12 -07001003/* This functions rotates ra and bss lists so packets are picked round robin.
Andreas Fenkart2e237312013-04-18 16:33:45 -07001004 *
1005 * After a packet is successfully transmitted, rotate the ra list, so the ra
1006 * next to the one transmitted, will come first in the list. This way we pick
Andreas Fenkartb006ed52013-04-18 16:34:12 -07001007 * the ra' in a round robin fashion. Same applies to bss nodes of equal
1008 * priority.
Andreas Fenkart2e237312013-04-18 16:33:45 -07001009 *
1010 * Function also increments wmm.packets_out counter.
1011 */
1012void mwifiex_rotate_priolists(struct mwifiex_private *priv,
1013 struct mwifiex_ra_list_tbl *ra,
1014 int tid)
1015{
Andreas Fenkartb006ed52013-04-18 16:34:12 -07001016 struct mwifiex_adapter *adapter = priv->adapter;
1017 struct mwifiex_bss_prio_tbl *tbl = adapter->bss_prio_tbl;
Andreas Fenkart2e237312013-04-18 16:33:45 -07001018 struct mwifiex_tid_tbl *tid_ptr = &priv->wmm.tid_tbl_ptr[tid];
1019 unsigned long flags;
1020
Andreas Fenkartb006ed52013-04-18 16:34:12 -07001021 spin_lock_irqsave(&tbl[priv->bss_priority].bss_prio_lock, flags);
1022 /*
1023 * dirty trick: we remove 'head' temporarily and reinsert it after
1024 * curr bss node. imagine list to stay fixed while head is moved
1025 */
1026 list_move(&tbl[priv->bss_priority].bss_prio_head,
1027 &tbl[priv->bss_priority].bss_prio_cur->list);
1028 spin_unlock_irqrestore(&tbl[priv->bss_priority].bss_prio_lock, flags);
1029
Andreas Fenkart2e237312013-04-18 16:33:45 -07001030 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1031 if (mwifiex_is_ralist_valid(priv, ra, tid)) {
1032 priv->wmm.packets_out[tid]++;
Andreas Fenkartb006ed52013-04-18 16:34:12 -07001033 /* same as above */
Andreas Fenkart2e237312013-04-18 16:33:45 -07001034 list_move(&tid_ptr->ra_list, &ra->list);
1035 }
1036 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1037}
1038
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001039/*
Amitkumar Karward85c5fe2011-09-29 20:43:40 -07001040 * This function checks if 11n aggregation is possible.
1041 */
1042static int
1043mwifiex_is_11n_aggragation_possible(struct mwifiex_private *priv,
1044 struct mwifiex_ra_list_tbl *ptr,
1045 int max_buf_size)
1046{
1047 int count = 0, total_size = 0;
1048 struct sk_buff *skb, *tmp;
Avinash Patil5a009ad2012-08-03 18:06:10 -07001049 int max_amsdu_size;
1050
1051 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP && priv->ap_11n_enabled &&
1052 ptr->is_11n_enabled)
1053 max_amsdu_size = min_t(int, ptr->max_amsdu, max_buf_size);
1054 else
1055 max_amsdu_size = max_buf_size;
Amitkumar Karward85c5fe2011-09-29 20:43:40 -07001056
1057 skb_queue_walk_safe(&ptr->skb_head, skb, tmp) {
1058 total_size += skb->len;
Avinash Patil5a009ad2012-08-03 18:06:10 -07001059 if (total_size >= max_amsdu_size)
Amitkumar Karward85c5fe2011-09-29 20:43:40 -07001060 break;
1061 if (++count >= MIN_NUM_AMSDU)
1062 return true;
1063 }
1064
1065 return false;
1066}
1067
1068/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001069 * This function sends a single packet to firmware for transmission.
1070 */
1071static void
1072mwifiex_send_single_packet(struct mwifiex_private *priv,
1073 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1074 unsigned long ra_list_flags)
1075 __releases(&priv->wmm.ra_list_spinlock)
1076{
1077 struct sk_buff *skb, *skb_next;
1078 struct mwifiex_tx_param tx_param;
1079 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001080 struct mwifiex_txinfo *tx_info;
1081
1082 if (skb_queue_empty(&ptr->skb_head)) {
1083 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1084 ra_list_flags);
1085 dev_dbg(adapter->dev, "data: nothing to send\n");
1086 return;
1087 }
1088
1089 skb = skb_dequeue(&ptr->skb_head);
1090
1091 tx_info = MWIFIEX_SKB_TXCB(skb);
1092 dev_dbg(adapter->dev, "data: dequeuing the packet %p %p\n", ptr, skb);
1093
Avinash Patilc7d9ed92013-07-22 19:17:40 -07001094 ptr->total_pkt_count--;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001095
1096 if (!skb_queue_empty(&ptr->skb_head))
1097 skb_next = skb_peek(&ptr->skb_head);
1098 else
1099 skb_next = NULL;
1100
1101 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
1102
1103 tx_param.next_pkt_len = ((skb_next) ? skb_next->len +
1104 sizeof(struct txpd) : 0);
1105
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001106 if (mwifiex_process_tx(priv, skb, &tx_param) == -EBUSY) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001107 /* Queue the packet back at the head */
1108 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1109
1110 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1111 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1112 ra_list_flags);
Avinash Patil47411a02012-11-01 18:44:16 -07001113 mwifiex_write_data_complete(adapter, skb, 0, -1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001114 return;
1115 }
1116
1117 skb_queue_tail(&ptr->skb_head, skb);
1118
Avinash Patilc7d9ed92013-07-22 19:17:40 -07001119 ptr->total_pkt_count++;
Avinash Patilf0cb84f2013-07-22 19:17:39 -07001120 ptr->ba_pkt_count++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001121 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1122 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1123 ra_list_flags);
1124 } else {
Andreas Fenkart2e237312013-04-18 16:33:45 -07001125 mwifiex_rotate_priolists(priv, ptr, ptr_index);
Marc Yangf6992542011-05-16 19:17:49 -07001126 atomic_dec(&priv->wmm.tx_pkts_queued);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001127 }
1128}
1129
1130/*
1131 * This function checks if the first packet in the given RA list
1132 * is already processed or not.
1133 */
1134static int
1135mwifiex_is_ptr_processed(struct mwifiex_private *priv,
1136 struct mwifiex_ra_list_tbl *ptr)
1137{
1138 struct sk_buff *skb;
1139 struct mwifiex_txinfo *tx_info;
1140
1141 if (skb_queue_empty(&ptr->skb_head))
1142 return false;
1143
1144 skb = skb_peek(&ptr->skb_head);
1145
1146 tx_info = MWIFIEX_SKB_TXCB(skb);
1147 if (tx_info->flags & MWIFIEX_BUF_FLAG_REQUEUED_PKT)
1148 return true;
1149
1150 return false;
1151}
1152
1153/*
1154 * This function sends a single processed packet to firmware for
1155 * transmission.
1156 */
1157static void
1158mwifiex_send_processed_packet(struct mwifiex_private *priv,
1159 struct mwifiex_ra_list_tbl *ptr, int ptr_index,
1160 unsigned long ra_list_flags)
1161 __releases(&priv->wmm.ra_list_spinlock)
1162{
1163 struct mwifiex_tx_param tx_param;
1164 struct mwifiex_adapter *adapter = priv->adapter;
1165 int ret = -1;
1166 struct sk_buff *skb, *skb_next;
1167 struct mwifiex_txinfo *tx_info;
1168
1169 if (skb_queue_empty(&ptr->skb_head)) {
1170 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1171 ra_list_flags);
1172 return;
1173 }
1174
1175 skb = skb_dequeue(&ptr->skb_head);
1176
1177 if (!skb_queue_empty(&ptr->skb_head))
1178 skb_next = skb_peek(&ptr->skb_head);
1179 else
1180 skb_next = NULL;
1181
1182 tx_info = MWIFIEX_SKB_TXCB(skb);
1183
1184 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, ra_list_flags);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -07001185
1186 if (adapter->iface_type == MWIFIEX_USB) {
1187 adapter->data_sent = true;
1188 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_USB_EP_DATA,
1189 skb, NULL);
1190 } else {
1191 tx_param.next_pkt_len =
1192 ((skb_next) ? skb_next->len +
1193 sizeof(struct txpd) : 0);
1194 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
1195 skb, &tx_param);
1196 }
1197
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001198 switch (ret) {
1199 case -EBUSY:
1200 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
1201 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, ra_list_flags);
1202
1203 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1204 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1205 ra_list_flags);
Avinash Patil47411a02012-11-01 18:44:16 -07001206 mwifiex_write_data_complete(adapter, skb, 0, -1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001207 return;
1208 }
1209
1210 skb_queue_tail(&ptr->skb_head, skb);
1211
1212 tx_info->flags |= MWIFIEX_BUF_FLAG_REQUEUED_PKT;
1213 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock,
1214 ra_list_flags);
1215 break;
1216 case -1:
Avinash Patile7f767a2013-01-03 21:21:32 -08001217 if (adapter->iface_type != MWIFIEX_PCIE)
1218 adapter->data_sent = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001219 dev_err(adapter->dev, "host_to_card failed: %#x\n", ret);
1220 adapter->dbg.num_tx_host_to_card_failure++;
Avinash Patil47411a02012-11-01 18:44:16 -07001221 mwifiex_write_data_complete(adapter, skb, 0, ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001222 break;
1223 case -EINPROGRESS:
Avinash Patile7f767a2013-01-03 21:21:32 -08001224 if (adapter->iface_type != MWIFIEX_PCIE)
1225 adapter->data_sent = false;
Amitkumar Karwar7a1f4e62015-01-30 00:40:05 -08001226 break;
1227 case 0:
1228 mwifiex_write_data_complete(adapter, skb, 0, ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001229 default:
1230 break;
1231 }
1232 if (ret != -EBUSY) {
Andreas Fenkart2e237312013-04-18 16:33:45 -07001233 mwifiex_rotate_priolists(priv, ptr, ptr_index);
Marc Yangf6992542011-05-16 19:17:49 -07001234 atomic_dec(&priv->wmm.tx_pkts_queued);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001235 }
1236}
1237
1238/*
1239 * This function dequeues a packet from the highest priority list
1240 * and transmits it.
1241 */
1242static int
1243mwifiex_dequeue_tx_packet(struct mwifiex_adapter *adapter)
1244{
1245 struct mwifiex_ra_list_tbl *ptr;
1246 struct mwifiex_private *priv = NULL;
1247 int ptr_index = 0;
1248 u8 ra[ETH_ALEN];
1249 int tid_del = 0, tid = 0;
1250 unsigned long flags;
1251
1252 ptr = mwifiex_wmm_get_highest_priolist_ptr(adapter, &priv, &ptr_index);
1253 if (!ptr)
1254 return -1;
1255
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001256 tid = mwifiex_get_tid(ptr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001257
1258 dev_dbg(adapter->dev, "data: tid=%d\n", tid);
1259
1260 spin_lock_irqsave(&priv->wmm.ra_list_spinlock, flags);
1261 if (!mwifiex_is_ralist_valid(priv, ptr, ptr_index)) {
1262 spin_unlock_irqrestore(&priv->wmm.ra_list_spinlock, flags);
1263 return -1;
1264 }
1265
1266 if (mwifiex_is_ptr_processed(priv, ptr)) {
1267 mwifiex_send_processed_packet(priv, ptr, ptr_index, flags);
1268 /* ra_list_spinlock has been freed in
1269 mwifiex_send_processed_packet() */
1270 return 0;
1271 }
1272
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -07001273 if (!ptr->is_11n_enabled ||
Zhaoyang Liu39df5e82015-03-13 17:37:55 +05301274 ptr->ba_status ||
1275 priv->wps.session_enable) {
Amitkumar Karwar4c9f9fb2014-03-07 19:41:31 -08001276 if (ptr->is_11n_enabled &&
Zhaoyang Liu39df5e82015-03-13 17:37:55 +05301277 ptr->ba_status &&
1278 ptr->amsdu_in_ampdu &&
1279 mwifiex_is_amsdu_allowed(priv, tid) &&
1280 mwifiex_is_11n_aggragation_possible(priv, ptr,
Amitkumar Karwar4c9f9fb2014-03-07 19:41:31 -08001281 adapter->tx_buf_size))
1282 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
1283 /* ra_list_spinlock has been freed in
1284 * mwifiex_11n_aggregate_pkt()
1285 */
1286 else
1287 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1288 /* ra_list_spinlock has been freed in
1289 * mwifiex_send_single_packet()
1290 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001291 } else {
Avinash Patileac43222014-02-07 16:27:28 -08001292 if (mwifiex_is_ampdu_allowed(priv, ptr, tid) &&
Avinash Patilf0cb84f2013-07-22 19:17:39 -07001293 ptr->ba_pkt_count > ptr->ba_packet_thr) {
Bing Zhao53d79382011-04-13 17:27:09 -07001294 if (mwifiex_space_avail_for_new_ba_stream(adapter)) {
Yogesh Ashok Powar3e822632012-03-12 19:35:08 -07001295 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1296 BA_SETUP_INPROGRESS);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001297 mwifiex_send_addba(priv, tid, ptr->ra);
1298 } else if (mwifiex_find_stream_to_delete
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001299 (priv, tid, &tid_del, ra)) {
Yogesh Ashok Powar3e822632012-03-12 19:35:08 -07001300 mwifiex_create_ba_tbl(priv, ptr->ra, tid,
1301 BA_SETUP_INPROGRESS);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001302 mwifiex_send_delba(priv, tid_del, ra, 1);
1303 }
1304 }
Amitkumar Karwar4c9f9fb2014-03-07 19:41:31 -08001305 if (mwifiex_is_amsdu_allowed(priv, tid) &&
Amitkumar Karward85c5fe2011-09-29 20:43:40 -07001306 mwifiex_is_11n_aggragation_possible(priv, ptr,
1307 adapter->tx_buf_size))
Amitkumar Karwarbd1c6142013-09-24 19:31:24 -07001308 mwifiex_11n_aggregate_pkt(priv, ptr, ptr_index, flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001309 /* ra_list_spinlock has been freed in
1310 mwifiex_11n_aggregate_pkt() */
1311 else
1312 mwifiex_send_single_packet(priv, ptr, ptr_index, flags);
1313 /* ra_list_spinlock has been freed in
1314 mwifiex_send_single_packet() */
1315 }
1316 return 0;
1317}
1318
1319/*
1320 * This function transmits the highest priority packet awaiting in the
1321 * WMM Queues.
1322 */
1323void
1324mwifiex_wmm_process_tx(struct mwifiex_adapter *adapter)
1325{
1326 do {
1327 /* Check if busy */
1328 if (adapter->data_sent || adapter->tx_lock_flag)
1329 break;
1330
1331 if (mwifiex_dequeue_tx_packet(adapter))
1332 break;
Marc Yang93968142011-05-16 19:17:51 -07001333 } while (!mwifiex_wmm_lists_empty(adapter));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001334}