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