blob: 2504e422364a526246581a963969bcf87e4fc01b [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: utility functions
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
Xinming Hubb5097f2014-12-23 19:14:09 +053028static struct mwifiex_debug_data items[] = {
Zhaoyang Liuc687a002015-05-12 00:48:18 +053029 {"debug_mask", item_size(debug_mask),
30 item_addr(debug_mask), 1},
Xinming Hubb5097f2014-12-23 19:14:09 +053031 {"int_counter", item_size(int_counter),
32 item_addr(int_counter), 1},
33 {"wmm_ac_vo", item_size(packets_out[WMM_AC_VO]),
34 item_addr(packets_out[WMM_AC_VO]), 1},
35 {"wmm_ac_vi", item_size(packets_out[WMM_AC_VI]),
36 item_addr(packets_out[WMM_AC_VI]), 1},
37 {"wmm_ac_be", item_size(packets_out[WMM_AC_BE]),
38 item_addr(packets_out[WMM_AC_BE]), 1},
39 {"wmm_ac_bk", item_size(packets_out[WMM_AC_BK]),
40 item_addr(packets_out[WMM_AC_BK]), 1},
41 {"tx_buf_size", item_size(tx_buf_size),
42 item_addr(tx_buf_size), 1},
43 {"curr_tx_buf_size", item_size(curr_tx_buf_size),
44 item_addr(curr_tx_buf_size), 1},
45 {"ps_mode", item_size(ps_mode),
46 item_addr(ps_mode), 1},
47 {"ps_state", item_size(ps_state),
48 item_addr(ps_state), 1},
49 {"is_deep_sleep", item_size(is_deep_sleep),
50 item_addr(is_deep_sleep), 1},
51 {"wakeup_dev_req", item_size(pm_wakeup_card_req),
52 item_addr(pm_wakeup_card_req), 1},
53 {"wakeup_tries", item_size(pm_wakeup_fw_try),
54 item_addr(pm_wakeup_fw_try), 1},
55 {"hs_configured", item_size(is_hs_configured),
56 item_addr(is_hs_configured), 1},
57 {"hs_activated", item_size(hs_activated),
58 item_addr(hs_activated), 1},
59 {"num_tx_timeout", item_size(num_tx_timeout),
60 item_addr(num_tx_timeout), 1},
61 {"is_cmd_timedout", item_size(is_cmd_timedout),
62 item_addr(is_cmd_timedout), 1},
63 {"timeout_cmd_id", item_size(timeout_cmd_id),
64 item_addr(timeout_cmd_id), 1},
65 {"timeout_cmd_act", item_size(timeout_cmd_act),
66 item_addr(timeout_cmd_act), 1},
67 {"last_cmd_id", item_size(last_cmd_id),
68 item_addr(last_cmd_id), DBG_CMD_NUM},
69 {"last_cmd_act", item_size(last_cmd_act),
70 item_addr(last_cmd_act), DBG_CMD_NUM},
71 {"last_cmd_index", item_size(last_cmd_index),
72 item_addr(last_cmd_index), 1},
73 {"last_cmd_resp_id", item_size(last_cmd_resp_id),
74 item_addr(last_cmd_resp_id), DBG_CMD_NUM},
75 {"last_cmd_resp_index", item_size(last_cmd_resp_index),
76 item_addr(last_cmd_resp_index), 1},
77 {"last_event", item_size(last_event),
78 item_addr(last_event), DBG_CMD_NUM},
79 {"last_event_index", item_size(last_event_index),
80 item_addr(last_event_index), 1},
81 {"num_cmd_h2c_fail", item_size(num_cmd_host_to_card_failure),
82 item_addr(num_cmd_host_to_card_failure), 1},
83 {"num_cmd_sleep_cfm_fail",
84 item_size(num_cmd_sleep_cfm_host_to_card_failure),
85 item_addr(num_cmd_sleep_cfm_host_to_card_failure), 1},
86 {"num_tx_h2c_fail", item_size(num_tx_host_to_card_failure),
87 item_addr(num_tx_host_to_card_failure), 1},
88 {"num_evt_deauth", item_size(num_event_deauth),
89 item_addr(num_event_deauth), 1},
90 {"num_evt_disassoc", item_size(num_event_disassoc),
91 item_addr(num_event_disassoc), 1},
92 {"num_evt_link_lost", item_size(num_event_link_lost),
93 item_addr(num_event_link_lost), 1},
94 {"num_cmd_deauth", item_size(num_cmd_deauth),
95 item_addr(num_cmd_deauth), 1},
96 {"num_cmd_assoc_ok", item_size(num_cmd_assoc_success),
97 item_addr(num_cmd_assoc_success), 1},
98 {"num_cmd_assoc_fail", item_size(num_cmd_assoc_failure),
99 item_addr(num_cmd_assoc_failure), 1},
100 {"cmd_sent", item_size(cmd_sent),
101 item_addr(cmd_sent), 1},
102 {"data_sent", item_size(data_sent),
103 item_addr(data_sent), 1},
104 {"cmd_resp_received", item_size(cmd_resp_received),
105 item_addr(cmd_resp_received), 1},
106 {"event_received", item_size(event_received),
107 item_addr(event_received), 1},
108
109 /* variables defined in struct mwifiex_adapter */
110 {"cmd_pending", adapter_item_size(cmd_pending),
111 adapter_item_addr(cmd_pending), 1},
112 {"tx_pending", adapter_item_size(tx_pending),
113 adapter_item_addr(tx_pending), 1},
114 {"rx_pending", adapter_item_size(rx_pending),
115 adapter_item_addr(rx_pending), 1},
116};
117
118static int num_of_items = ARRAY_SIZE(items);
119
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700120/*
121 * Firmware initialization complete callback handler.
122 *
123 * This function wakes up the function waiting on the init
124 * wait queue for the firmware initialization to complete.
125 */
126int mwifiex_init_fw_complete(struct mwifiex_adapter *adapter)
127{
128
129 adapter->init_wait_q_woken = true;
130 wake_up_interruptible(&adapter->init_wait_q);
131 return 0;
132}
133
134/*
135 * Firmware shutdown complete callback handler.
136 *
137 * This function sets the hardware status to not ready and wakes up
138 * the function waiting on the init wait queue for the firmware
139 * shutdown to complete.
140 */
141int mwifiex_shutdown_fw_complete(struct mwifiex_adapter *adapter)
142{
143 adapter->hw_status = MWIFIEX_HW_STATUS_NOT_READY;
144 adapter->init_wait_q_woken = true;
145 wake_up_interruptible(&adapter->init_wait_q);
146 return 0;
147}
148
149/*
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700150 * This function sends init/shutdown command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700151 * to firmware.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700152 */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700153int mwifiex_init_shutdown_fw(struct mwifiex_private *priv,
154 u32 func_init_shutdown)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700155{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700156 u16 cmd;
157
158 if (func_init_shutdown == MWIFIEX_FUNC_INIT) {
159 cmd = HostCmd_CMD_FUNC_INIT;
160 } else if (func_init_shutdown == MWIFIEX_FUNC_SHUTDOWN) {
161 cmd = HostCmd_CMD_FUNC_SHUTDOWN;
162 } else {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530163 mwifiex_dbg(priv->adapter, ERROR,
164 "unsupported parameter\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700165 return -1;
166 }
167
Bing Zhaofa0ecbb2014-02-27 19:35:12 -0800168 return mwifiex_send_cmd(priv, cmd, HostCmd_ACT_GEN_SET, 0, NULL, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700169}
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700170EXPORT_SYMBOL_GPL(mwifiex_init_shutdown_fw);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700171
172/*
173 * IOCTL request handler to set/get debug information.
174 *
175 * This function collates/sets the information from/to different driver
176 * structures.
177 */
178int mwifiex_get_debug_info(struct mwifiex_private *priv,
179 struct mwifiex_debug_info *info)
180{
181 struct mwifiex_adapter *adapter = priv->adapter;
182
183 if (info) {
Zhaoyang Liuc687a002015-05-12 00:48:18 +0530184 info->debug_mask = adapter->debug_mask;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700185 memcpy(info->packets_out,
186 priv->wmm.packets_out,
187 sizeof(priv->wmm.packets_out));
Bing Zhao5e3175f2013-01-30 19:56:02 -0800188 info->curr_tx_buf_size = (u32) adapter->curr_tx_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700189 info->tx_buf_size = (u32) adapter->tx_buf_size;
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700190 info->rx_tbl_num = mwifiex_get_rx_reorder_tbl(priv,
191 info->rx_tbl);
192 info->tx_tbl_num = mwifiex_get_tx_ba_stream_tbl(priv,
193 info->tx_tbl);
Xinming Hu72df6312014-12-23 19:14:05 +0530194 info->tdls_peer_num = mwifiex_get_tdls_list(priv,
195 info->tdls_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700196 info->ps_mode = adapter->ps_mode;
197 info->ps_state = adapter->ps_state;
198 info->is_deep_sleep = adapter->is_deep_sleep;
199 info->pm_wakeup_card_req = adapter->pm_wakeup_card_req;
200 info->pm_wakeup_fw_try = adapter->pm_wakeup_fw_try;
201 info->is_hs_configured = adapter->is_hs_configured;
202 info->hs_activated = adapter->hs_activated;
Amitkumar Karwar0c9c4a02014-02-27 19:35:17 -0800203 info->is_cmd_timedout = adapter->is_cmd_timedout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700204 info->num_cmd_host_to_card_failure
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700205 = adapter->dbg.num_cmd_host_to_card_failure;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700206 info->num_cmd_sleep_cfm_host_to_card_failure
207 = adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure;
208 info->num_tx_host_to_card_failure
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700209 = adapter->dbg.num_tx_host_to_card_failure;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210 info->num_event_deauth = adapter->dbg.num_event_deauth;
211 info->num_event_disassoc = adapter->dbg.num_event_disassoc;
212 info->num_event_link_lost = adapter->dbg.num_event_link_lost;
213 info->num_cmd_deauth = adapter->dbg.num_cmd_deauth;
214 info->num_cmd_assoc_success =
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700215 adapter->dbg.num_cmd_assoc_success;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700216 info->num_cmd_assoc_failure =
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700217 adapter->dbg.num_cmd_assoc_failure;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700218 info->num_tx_timeout = adapter->dbg.num_tx_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700219 info->timeout_cmd_id = adapter->dbg.timeout_cmd_id;
220 info->timeout_cmd_act = adapter->dbg.timeout_cmd_act;
221 memcpy(info->last_cmd_id, adapter->dbg.last_cmd_id,
222 sizeof(adapter->dbg.last_cmd_id));
223 memcpy(info->last_cmd_act, adapter->dbg.last_cmd_act,
224 sizeof(adapter->dbg.last_cmd_act));
225 info->last_cmd_index = adapter->dbg.last_cmd_index;
226 memcpy(info->last_cmd_resp_id, adapter->dbg.last_cmd_resp_id,
227 sizeof(adapter->dbg.last_cmd_resp_id));
228 info->last_cmd_resp_index = adapter->dbg.last_cmd_resp_index;
229 memcpy(info->last_event, adapter->dbg.last_event,
230 sizeof(adapter->dbg.last_event));
231 info->last_event_index = adapter->dbg.last_event_index;
232 info->data_sent = adapter->data_sent;
233 info->cmd_sent = adapter->cmd_sent;
234 info->cmd_resp_received = adapter->cmd_resp_received;
235 }
236
237 return 0;
238}
239
Xinming Hubb5097f2014-12-23 19:14:09 +0530240int mwifiex_debug_info_to_buffer(struct mwifiex_private *priv, char *buf,
241 struct mwifiex_debug_info *info)
242{
243 char *p = buf;
244 struct mwifiex_debug_data *d = &items[0];
245 size_t size, addr;
246 long val;
247 int i, j;
248
249 if (!info)
250 return 0;
251
252 for (i = 0; i < num_of_items; i++) {
253 p += sprintf(p, "%s=", d[i].name);
254
255 size = d[i].size / d[i].num;
256
257 if (i < (num_of_items - 3))
258 addr = d[i].addr + (size_t)info;
259 else /* The last 3 items are struct mwifiex_adapter variables */
260 addr = d[i].addr + (size_t)priv->adapter;
261
262 for (j = 0; j < d[i].num; j++) {
263 switch (size) {
264 case 1:
265 val = *((u8 *)addr);
266 break;
267 case 2:
268 val = *((u16 *)addr);
269 break;
270 case 4:
271 val = *((u32 *)addr);
272 break;
273 case 8:
274 val = *((long long *)addr);
275 break;
276 default:
277 val = -1;
278 break;
279 }
280
281 p += sprintf(p, "%#lx ", val);
282 addr += size;
283 }
284
285 p += sprintf(p, "\n");
286 }
287
288 if (info->tx_tbl_num) {
289 p += sprintf(p, "Tx BA stream table:\n");
290 for (i = 0; i < info->tx_tbl_num; i++)
291 p += sprintf(p, "tid = %d, ra = %pM\n",
292 info->tx_tbl[i].tid, info->tx_tbl[i].ra);
293 }
294
295 if (info->rx_tbl_num) {
296 p += sprintf(p, "Rx reorder table:\n");
297 for (i = 0; i < info->rx_tbl_num; i++) {
298 p += sprintf(p, "tid = %d, ta = %pM, ",
299 info->rx_tbl[i].tid,
300 info->rx_tbl[i].ta);
301 p += sprintf(p, "start_win = %d, ",
302 info->rx_tbl[i].start_win);
303 p += sprintf(p, "win_size = %d, buffer: ",
304 info->rx_tbl[i].win_size);
305
306 for (j = 0; j < info->rx_tbl[i].win_size; j++)
307 p += sprintf(p, "%c ",
308 info->rx_tbl[i].buffer[j] ?
309 '1' : '0');
310
311 p += sprintf(p, "\n");
312 }
313 }
314
315 if (info->tdls_peer_num) {
316 p += sprintf(p, "TDLS peer table:\n");
317 for (i = 0; i < info->tdls_peer_num; i++) {
318 p += sprintf(p, "peer = %pM",
319 info->tdls_list[i].peer_addr);
320 p += sprintf(p, "\n");
321 }
322 }
323
324 return p - buf;
325}
326
Avinash Patil72e5aa82014-11-13 21:54:17 +0530327static int
328mwifiex_parse_mgmt_packet(struct mwifiex_private *priv, u8 *payload, u16 len,
329 struct rxpd *rx_pd)
330{
331 u16 stype;
Avinash Patil3e6f8a42015-06-03 16:59:43 +0530332 u8 category, action_code, *addr2;
Avinash Patil72e5aa82014-11-13 21:54:17 +0530333 struct ieee80211_hdr *ieee_hdr = (void *)payload;
334
Amitkumar Karwar51974612014-11-25 06:43:02 -0800335 stype = (le16_to_cpu(ieee_hdr->frame_control) & IEEE80211_FCTL_STYPE);
Avinash Patil72e5aa82014-11-13 21:54:17 +0530336
337 switch (stype) {
338 case IEEE80211_STYPE_ACTION:
339 category = *(payload + sizeof(struct ieee80211_hdr));
Avinash Patil3e6f8a42015-06-03 16:59:43 +0530340 switch (category) {
341 case WLAN_CATEGORY_PUBLIC:
342 action_code = *(payload + sizeof(struct ieee80211_hdr)
343 + 1);
344 if (action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) {
345 addr2 = ieee_hdr->addr2;
346 mwifiex_dbg(priv->adapter, INFO,
347 "TDLS discovery response %pM nf=%d, snr=%d\n",
348 addr2, rx_pd->nf, rx_pd->snr);
349 mwifiex_auto_tdls_update_peer_signal(priv,
350 addr2,
351 rx_pd->snr,
352 rx_pd->nf);
353 }
354 break;
355 case WLAN_CATEGORY_BACK:
356 /*we dont indicate BACK action frames to cfg80211*/
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530357 mwifiex_dbg(priv->adapter, INFO,
Avinash Patil3e6f8a42015-06-03 16:59:43 +0530358 "drop BACK action frames");
359 return -1;
360 default:
361 mwifiex_dbg(priv->adapter, INFO,
362 "unknown public action frame category %d\n",
363 category);
Avinash Patil72e5aa82014-11-13 21:54:17 +0530364 }
Avinash Patil72e5aa82014-11-13 21:54:17 +0530365 default:
Avinash Patilec21dc42015-05-20 16:36:06 +0530366 mwifiex_dbg(priv->adapter, INFO,
Avinash Patil3e6f8a42015-06-03 16:59:43 +0530367 "unknown mgmt frame subtype %#x\n", stype);
368 return 0;
Avinash Patil72e5aa82014-11-13 21:54:17 +0530369 }
370
371 return 0;
372}
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700373/*
Stone Piao2dbaf752012-09-25 20:23:35 -0700374 * This function processes the received management packet and send it
375 * to the kernel.
376 */
377int
Avinash Patilf3b369e2012-10-19 19:19:21 -0700378mwifiex_process_mgmt_packet(struct mwifiex_private *priv,
Stone Piao2dbaf752012-09-25 20:23:35 -0700379 struct sk_buff *skb)
380{
381 struct rxpd *rx_pd;
Stone Piao2dbaf752012-09-25 20:23:35 -0700382 u16 pkt_len;
Avinash Patil72e5aa82014-11-13 21:54:17 +0530383 struct ieee80211_hdr *ieee_hdr;
Stone Piao2dbaf752012-09-25 20:23:35 -0700384
385 if (!skb)
386 return -1;
387
Avinash Patil7521ce62015-02-11 23:12:25 +0530388 if (!priv->mgmt_frame_mask ||
389 priv->wdev.iftype == NL80211_IFTYPE_UNSPECIFIED) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530390 mwifiex_dbg(priv->adapter, ERROR,
391 "do not receive mgmt frames on uninitialized intf");
Avinash Patil7521ce62015-02-11 23:12:25 +0530392 return -1;
393 }
394
Stone Piao2dbaf752012-09-25 20:23:35 -0700395 rx_pd = (struct rxpd *)skb->data;
Stone Piao2dbaf752012-09-25 20:23:35 -0700396
397 skb_pull(skb, le16_to_cpu(rx_pd->rx_pkt_offset));
398 skb_pull(skb, sizeof(pkt_len));
399
400 pkt_len = le16_to_cpu(rx_pd->rx_pkt_length);
401
Avinash Patil72e5aa82014-11-13 21:54:17 +0530402 ieee_hdr = (void *)skb->data;
403 if (ieee80211_is_mgmt(ieee_hdr->frame_control)) {
Avinash Patil3e6f8a42015-06-03 16:59:43 +0530404 if (mwifiex_parse_mgmt_packet(priv, (u8 *)ieee_hdr,
405 pkt_len, rx_pd))
406 return -1;
Avinash Patil72e5aa82014-11-13 21:54:17 +0530407 }
Stone Piao2dbaf752012-09-25 20:23:35 -0700408 /* Remove address4 */
409 memmove(skb->data + sizeof(struct ieee80211_hdr_3addr),
410 skb->data + sizeof(struct ieee80211_hdr),
411 pkt_len - sizeof(struct ieee80211_hdr));
412
413 pkt_len -= ETH_ALEN + sizeof(pkt_len);
414 rx_pd->rx_pkt_length = cpu_to_le16(pkt_len);
415
Avinash Patil4facc342015-01-28 15:42:00 +0530416 cfg80211_rx_mgmt(&priv->wdev, priv->roc_cfg.chan.center_freq,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +0300417 CAL_RSSI(rx_pd->snr, rx_pd->nf), skb->data, pkt_len,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -0700418 0);
Stone Piao2dbaf752012-09-25 20:23:35 -0700419
420 return 0;
421}
422
423/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700424 * This function processes the received packet before sending it to the
425 * kernel.
426 *
427 * It extracts the SKB from the received buffer and sends it to kernel.
428 * In case the received buffer does not contain the data in SKB format,
429 * the function creates a blank SKB, fills it with the data from the
430 * received buffer and then sends this new SKB to the kernel.
431 */
Avinash Patilf3b369e2012-10-19 19:19:21 -0700432int mwifiex_recv_packet(struct mwifiex_private *priv, struct sk_buff *skb)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700433{
Xinming Hu442f6f92015-06-03 16:59:38 +0530434 struct mwifiex_sta_node *src_node;
435 struct ethhdr *p_ethhdr;
436
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700437 if (!skb)
438 return -1;
439
Ujjal Royf49c6e82013-12-02 23:17:54 -0800440 priv->stats.rx_bytes += skb->len;
441 priv->stats.rx_packets++;
442
Xinming Hu442f6f92015-06-03 16:59:38 +0530443 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
444 p_ethhdr = (void *)skb->data;
445 src_node = mwifiex_get_sta_entry(priv, p_ethhdr->h_source);
446 if (src_node) {
447 src_node->stats.last_rx = jiffies;
448 src_node->stats.rx_bytes += skb->len;
449 src_node->stats.rx_packets++;
450 }
451 }
452
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700453 skb->dev = priv->netdev;
454 skb->protocol = eth_type_trans(skb, priv->netdev);
455 skb->ip_summed = CHECKSUM_NONE;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700456
Avinash Patilf553e1a2013-03-04 16:27:56 -0800457 /* This is required only in case of 11n and USB/PCIE as we alloc
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700458 * a buffer of 4K only if its 11N (to be able to receive 4K
459 * AMSDU packets). In case of SD we allocate buffers based
460 * on the size of packet and hence this is not needed.
461 *
462 * Modifying the truesize here as our allocation for each
463 * skb is 4K but we only receive 2K packets and this cause
464 * the kernel to start dropping packets in case where
465 * application has allocated buffer based on 2K size i.e.
466 * if there a 64K packet received (in IP fragments and
467 * application allocates 64K to receive this packet but
468 * this packet would almost double up because we allocate
469 * each 1.5K fragment in 4K and pass it up. As soon as the
470 * 64K limit hits kernel will start to drop rest of the
471 * fragments. Currently we fail the Filesndl-ht.scr script
472 * for UDP, hence this fix
473 */
Avinash Patilf553e1a2013-03-04 16:27:56 -0800474 if ((priv->adapter->iface_type == MWIFIEX_USB ||
475 priv->adapter->iface_type == MWIFIEX_PCIE) &&
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700476 (skb->truesize > MWIFIEX_RX_DATA_BUF_SIZE))
477 skb->truesize += (skb->len - MWIFIEX_RX_DATA_BUF_SIZE);
478
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700479 if (in_interrupt())
480 netif_rx(skb);
481 else
482 netif_rx_ni(skb);
483
484 return 0;
485}
486
487/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700488 * IOCTL completion callback handler.
489 *
490 * This function is called when a pending IOCTL is completed.
491 *
492 * If work queue support is enabled, the function wakes up the
493 * corresponding waiting function. Otherwise, it processes the
494 * IOCTL response and frees the response buffer.
495 */
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700496int mwifiex_complete_cmd(struct mwifiex_adapter *adapter,
497 struct cmd_ctrl_node *cmd_node)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700498{
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530499 mwifiex_dbg(adapter, CMD,
500 "cmd completed: status=%d\n",
501 adapter->cmd_wait_q.status);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700502
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700503 *(cmd_node->condition) = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700504
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700505 if (adapter->cmd_wait_q.status == -ETIMEDOUT)
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530506 mwifiex_dbg(adapter, ERROR, "cmd timeout\n");
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700507 else
508 wake_up_interruptible(&adapter->cmd_wait_q.wait);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700509
510 return 0;
511}
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800512
513/* This function will return the pointer to station entry in station list
514 * table which matches specified mac address.
515 * This function should be called after acquiring RA list spinlock.
516 * NULL is returned if station entry is not found in associated STA list.
517 */
518struct mwifiex_sta_node *
Johannes Berg3b3a0162014-05-19 17:19:31 +0200519mwifiex_get_sta_entry(struct mwifiex_private *priv, const u8 *mac)
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800520{
521 struct mwifiex_sta_node *node;
522
523 if (!mac)
524 return NULL;
525
526 list_for_each_entry(node, &priv->sta_list, list) {
527 if (!memcmp(node->mac_addr, mac, ETH_ALEN))
528 return node;
529 }
530
531 return NULL;
532}
533
Xinming Huba101ad2015-06-22 19:06:10 +0530534static struct mwifiex_sta_node *
535mwifiex_get_tdls_sta_entry(struct mwifiex_private *priv, u8 status)
536{
537 struct mwifiex_sta_node *node;
538
539 list_for_each_entry(node, &priv->sta_list, list) {
540 if (node->tdls_status == status)
541 return node;
542 }
543
544 return NULL;
545}
546
547/* If tdls channel switching is on-going, tx data traffic should be
548 * blocked until the switching stage completed.
549 */
550u8 mwifiex_is_tdls_chan_switching(struct mwifiex_private *priv)
551{
552 struct mwifiex_sta_node *sta_ptr;
553
554 if (!priv || !ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info))
555 return false;
556
557 sta_ptr = mwifiex_get_tdls_sta_entry(priv, TDLS_CHAN_SWITCHING);
558 if (sta_ptr)
559 return true;
560
561 return false;
562}
563
564u8 mwifiex_is_tdls_off_chan(struct mwifiex_private *priv)
565{
566 struct mwifiex_sta_node *sta_ptr;
567
568 if (!priv || !ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info))
569 return false;
570
571 sta_ptr = mwifiex_get_tdls_sta_entry(priv, TDLS_IN_OFF_CHAN);
572 if (sta_ptr)
573 return true;
574
575 return false;
576}
577
578/* If tdls channel switching is on-going or tdls operate on off-channel,
579 * cmd path should be blocked until tdls switched to base-channel.
580 */
581u8 mwifiex_is_send_cmd_allowed(struct mwifiex_private *priv)
582{
583 if (!priv || !ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info))
584 return true;
585
586 if (mwifiex_is_tdls_chan_switching(priv) ||
587 mwifiex_is_tdls_off_chan(priv))
588 return false;
589
590 return true;
591}
592
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800593/* This function will add a sta_node entry to associated station list
594 * table with the given mac address.
595 * If entry exist already, existing entry is returned.
596 * If received mac address is NULL, NULL is returned.
597 */
598struct mwifiex_sta_node *
Johannes Berg3b3a0162014-05-19 17:19:31 +0200599mwifiex_add_sta_entry(struct mwifiex_private *priv, const u8 *mac)
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800600{
601 struct mwifiex_sta_node *node;
602 unsigned long flags;
603
604 if (!mac)
605 return NULL;
606
607 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
608 node = mwifiex_get_sta_entry(priv, mac);
609 if (node)
610 goto done;
611
612 node = kzalloc(sizeof(*node), GFP_ATOMIC);
613 if (!node)
614 goto done;
615
616 memcpy(node->mac_addr, mac, ETH_ALEN);
617 list_add_tail(&node->list, &priv->sta_list);
618
619done:
620 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
621 return node;
622}
623
624/* This function will search for HT IE in association request IEs
625 * and set station HT parameters accordingly.
626 */
627void
628mwifiex_set_sta_ht_cap(struct mwifiex_private *priv, const u8 *ies,
629 int ies_len, struct mwifiex_sta_node *node)
630{
Zhaoyang Liu9ab7b5b2015-04-13 21:32:25 +0530631 struct ieee_types_header *ht_cap_ie;
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800632 const struct ieee80211_ht_cap *ht_cap;
633
634 if (!ies)
635 return;
636
Zhaoyang Liu9ab7b5b2015-04-13 21:32:25 +0530637 ht_cap_ie = (void *)cfg80211_find_ie(WLAN_EID_HT_CAPABILITY, ies,
638 ies_len);
639 if (ht_cap_ie) {
640 ht_cap = (void *)(ht_cap_ie + 1);
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800641 node->is_11n_enabled = 1;
642 node->max_amsdu = le16_to_cpu(ht_cap->cap_info) &
643 IEEE80211_HT_CAP_MAX_AMSDU ?
644 MWIFIEX_TX_DATA_BUF_SIZE_8K :
645 MWIFIEX_TX_DATA_BUF_SIZE_4K;
646 } else {
647 node->is_11n_enabled = 0;
648 }
649
650 return;
651}
652
653/* This function will delete a station entry from station list */
Johannes Berg3b3a0162014-05-19 17:19:31 +0200654void mwifiex_del_sta_entry(struct mwifiex_private *priv, const u8 *mac)
Avinash Patil4bcf93d2014-02-07 16:27:30 -0800655{
656 struct mwifiex_sta_node *node;
657 unsigned long flags;
658
659 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
660
661 node = mwifiex_get_sta_entry(priv, mac);
662 if (node) {
663 list_del(&node->list);
664 kfree(node);
665 }
666
667 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
668 return;
669}
670
671/* This function will delete all stations from associated station list. */
672void mwifiex_del_all_sta_list(struct mwifiex_private *priv)
673{
674 struct mwifiex_sta_node *node, *tmp;
675 unsigned long flags;
676
677 spin_lock_irqsave(&priv->sta_list_spinlock, flags);
678
679 list_for_each_entry_safe(node, tmp, &priv->sta_list, list) {
680 list_del(&node->list);
681 kfree(node);
682 }
683
684 INIT_LIST_HEAD(&priv->sta_list);
685 spin_unlock_irqrestore(&priv->sta_list_spinlock, flags);
686 return;
687}
Xinming Hucbf6e052014-12-23 19:14:07 +0530688
689/* This function adds histogram data to histogram array*/
690void mwifiex_hist_data_add(struct mwifiex_private *priv,
691 u8 rx_rate, s8 snr, s8 nflr)
692{
693 struct mwifiex_histogram_data *phist_data = priv->hist_data;
694
695 if (atomic_read(&phist_data->num_samples) > MWIFIEX_HIST_MAX_SAMPLES)
696 mwifiex_hist_data_reset(priv);
697 mwifiex_hist_data_set(priv, rx_rate, snr, nflr);
698}
699
700/* function to add histogram record */
701void mwifiex_hist_data_set(struct mwifiex_private *priv, u8 rx_rate, s8 snr,
702 s8 nflr)
703{
704 struct mwifiex_histogram_data *phist_data = priv->hist_data;
705
706 atomic_inc(&phist_data->num_samples);
707 atomic_inc(&phist_data->rx_rate[rx_rate]);
708 atomic_inc(&phist_data->snr[snr]);
709 atomic_inc(&phist_data->noise_flr[128 + nflr]);
710 atomic_inc(&phist_data->sig_str[nflr - snr]);
711}
712
713/* function to reset histogram data during init/reset */
714void mwifiex_hist_data_reset(struct mwifiex_private *priv)
715{
716 int ix;
717 struct mwifiex_histogram_data *phist_data = priv->hist_data;
718
719 atomic_set(&phist_data->num_samples, 0);
720 for (ix = 0; ix < MWIFIEX_MAX_AC_RX_RATES; ix++)
721 atomic_set(&phist_data->rx_rate[ix], 0);
722 for (ix = 0; ix < MWIFIEX_MAX_SNR; ix++)
723 atomic_set(&phist_data->snr[ix], 0);
724 for (ix = 0; ix < MWIFIEX_MAX_NOISE_FLR; ix++)
725 atomic_set(&phist_data->noise_flr[ix], 0);
726 for (ix = 0; ix < MWIFIEX_MAX_SIG_STRENGTH; ix++)
727 atomic_set(&phist_data->sig_str[ix], 0);
728}
Avinash Patil31def912015-02-13 17:41:08 +0530729
Avinash Patil62159942015-03-13 17:37:52 +0530730void *mwifiex_alloc_dma_align_buf(int rx_len, gfp_t flags)
Avinash Patil31def912015-02-13 17:41:08 +0530731{
732 struct sk_buff *skb;
733 int buf_len, pad;
734
735 buf_len = rx_len + MWIFIEX_RX_HEADROOM + MWIFIEX_DMA_ALIGN_SZ;
736
737 skb = __dev_alloc_skb(buf_len, flags);
738
739 if (!skb)
740 return NULL;
741
742 skb_reserve(skb, MWIFIEX_RX_HEADROOM);
743
744 pad = MWIFIEX_ALIGN_ADDR(skb->data, MWIFIEX_DMA_ALIGN_SZ) -
745 (long)skb->data;
746
747 skb_reserve(skb, pad);
748
749 return skb;
750}
Avinash Patil62159942015-03-13 17:37:52 +0530751EXPORT_SYMBOL_GPL(mwifiex_alloc_dma_align_buf);