mwifiex: add usb tx data multi endpoints support
[deliverable/linux.git] / drivers / net / wireless / mwifiex / main.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: major functions
3 *
65da33f5 4 * Copyright (C) 2011-2014, Marvell International Ltd.
5e6e3a92
BZ
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 "main.h"
21#include "wmm.h"
22#include "cfg80211.h"
23#include "11n.h"
24
25#define VERSION "1.0"
26
c687a007
ZL
27static unsigned int debug_mask = MWIFIEX_DEFAULT_DEBUG_MASK;
28module_param(debug_mask, uint, 0);
29MODULE_PARM_DESC(debug_mask, "bitmap for debug flags");
30
5e6e3a92 31const char driver_version[] = "mwifiex " VERSION " (%s) ";
388ec385
AK
32static char *cal_data_cfg;
33module_param(cal_data_cfg, charp, 0);
5e6e3a92 34
0013c7ce
AP
35static unsigned short driver_mode;
36module_param(driver_mode, ushort, 0);
37MODULE_PARM_DESC(driver_mode,
38 "station=0x1(default), ap-sta=0x3, station-p2p=0x5, ap-sta-p2p=0x7");
39
5e6e3a92
BZ
40/*
41 * This function registers the device and performs all the necessary
42 * initializations.
43 *
44 * The following initialization operations are performed -
45 * - Allocate adapter structure
46 * - Save interface specific operations table in adapter
47 * - Call interface specific initialization routine
48 * - Allocate private structures
49 * - Set default adapter structure parameters
50 * - Initialize locks
51 *
52 * In case of any errors during inittialization, this function also ensures
53 * proper cleanup before exiting.
54 */
55static int mwifiex_register(void *card, struct mwifiex_if_ops *if_ops,
287546df 56 void **padapter)
5e6e3a92 57{
2be7859f
AK
58 struct mwifiex_adapter *adapter;
59 int i;
5e6e3a92
BZ
60
61 adapter = kzalloc(sizeof(struct mwifiex_adapter), GFP_KERNEL);
5e6e3a92 62 if (!adapter)
b53575ec 63 return -ENOMEM;
5e6e3a92 64
287546df 65 *padapter = adapter;
5e6e3a92
BZ
66 adapter->card = card;
67
68 /* Save interface specific operations in adapter */
69 memmove(&adapter->if_ops, if_ops, sizeof(struct mwifiex_if_ops));
c687a007 70 adapter->debug_mask = debug_mask;
5e6e3a92
BZ
71
72 /* card specific initialization has been deferred until now .. */
4daffe35
AK
73 if (adapter->if_ops.init_if)
74 if (adapter->if_ops.init_if(adapter))
75 goto error;
5e6e3a92
BZ
76
77 adapter->priv_num = 0;
5e6e3a92 78
64b05e2f
AP
79 for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
80 /* Allocate memory for private structure */
81 adapter->priv[i] =
82 kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
83 if (!adapter->priv[i])
84 goto error;
93a1df48 85
64b05e2f 86 adapter->priv[i]->adapter = adapter;
64b05e2f
AP
87 adapter->priv_num++;
88 }
44b815c6 89 mwifiex_init_lock_list(adapter);
5e6e3a92 90
c6c33e77
JL
91 setup_timer(&adapter->cmd_timer, mwifiex_cmd_timeout_func,
92 (unsigned long)adapter);
5e6e3a92 93
5e6e3a92
BZ
94 return 0;
95
96error:
acebe8c1
ZL
97 mwifiex_dbg(adapter, ERROR,
98 "info: leave mwifiex_register with error\n");
5e6e3a92 99
93a1df48 100 for (i = 0; i < adapter->priv_num; i++)
5e6e3a92 101 kfree(adapter->priv[i]);
93a1df48 102
5e6e3a92
BZ
103 kfree(adapter);
104
105 return -1;
106}
107
108/*
109 * This function unregisters the device and performs all the necessary
110 * cleanups.
111 *
112 * The following cleanup operations are performed -
113 * - Free the timers
114 * - Free beacon buffers
115 * - Free private structures
116 * - Free adapter structure
117 */
118static int mwifiex_unregister(struct mwifiex_adapter *adapter)
119{
270e58e8 120 s32 i;
5e6e3a92 121
4cfda67d
AK
122 if (adapter->if_ops.cleanup_if)
123 adapter->if_ops.cleanup_if(adapter);
124
629873f2 125 del_timer_sync(&adapter->cmd_timer);
5e6e3a92
BZ
126
127 /* Free private structures */
128 for (i = 0; i < adapter->priv_num; i++) {
129 if (adapter->priv[i]) {
130 mwifiex_free_curr_bcn(adapter->priv[i]);
131 kfree(adapter->priv[i]);
132 }
133 }
134
bf354433 135 vfree(adapter->chan_stats);
5e6e3a92
BZ
136 kfree(adapter);
137 return 0;
138}
139
b2713f67
SL
140void mwifiex_queue_main_work(struct mwifiex_adapter *adapter)
141{
142 unsigned long flags;
143
144 spin_lock_irqsave(&adapter->main_proc_lock, flags);
145 if (adapter->mwifiex_processing) {
146 adapter->more_task_flag = true;
147 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
148 } else {
149 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
150 queue_work(adapter->workqueue, &adapter->main_work);
151 }
152}
153EXPORT_SYMBOL_GPL(mwifiex_queue_main_work);
154
155static void mwifiex_queue_rx_work(struct mwifiex_adapter *adapter)
156{
157 unsigned long flags;
158
159 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
160 if (adapter->rx_processing) {
161 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
162 } else {
163 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
164 queue_work(adapter->rx_workqueue, &adapter->rx_work);
165 }
166}
167
6e251174
AP
168static int mwifiex_process_rx(struct mwifiex_adapter *adapter)
169{
170 unsigned long flags;
171 struct sk_buff *skb;
92263a84 172 struct mwifiex_rxinfo *rx_info;
6e251174
AP
173
174 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
175 if (adapter->rx_processing || adapter->rx_locked) {
176 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
177 goto exit_rx_proc;
178 } else {
179 adapter->rx_processing = true;
180 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
181 }
182
183 /* Check for Rx data */
184 while ((skb = skb_dequeue(&adapter->rx_data_q))) {
185 atomic_dec(&adapter->rx_pending);
381e9fff
AK
186 if ((adapter->delay_main_work ||
187 adapter->iface_type == MWIFIEX_USB) &&
b43a0d9d 188 (atomic_read(&adapter->rx_pending) < LOW_RX_PENDING)) {
cf6a64fd
AK
189 if (adapter->if_ops.submit_rem_rx_urbs)
190 adapter->if_ops.submit_rem_rx_urbs(adapter);
6e251174 191 adapter->delay_main_work = false;
b2713f67 192 mwifiex_queue_main_work(adapter);
6e251174 193 }
92263a84
ZL
194 rx_info = MWIFIEX_SKB_RXCB(skb);
195 if (rx_info->buf_type == MWIFIEX_TYPE_AGGR_DATA) {
196 if (adapter->if_ops.deaggr_pkt)
197 adapter->if_ops.deaggr_pkt(adapter, skb);
198 dev_kfree_skb_any(skb);
199 } else {
200 mwifiex_handle_rx_packet(adapter, skb);
6e251174 201 }
6e251174
AP
202 }
203 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
204 adapter->rx_processing = false;
205 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
206
6e251174
AP
207exit_rx_proc:
208 return 0;
209}
210
5e6e3a92
BZ
211/*
212 * The main process.
213 *
214 * This function is the main procedure of the driver and handles various driver
215 * operations. It runs in a loop and provides the core functionalities.
216 *
217 * The main responsibilities of this function are -
218 * - Ensure concurrency control
219 * - Handle pending interrupts and call interrupt handlers
220 * - Wake up the card if required
221 * - Handle command responses and call response handlers
222 * - Handle events and call event handlers
223 * - Execute pending commands
224 * - Transmit pending data packets
225 */
226int mwifiex_main_process(struct mwifiex_adapter *adapter)
227{
228 int ret = 0;
229 unsigned long flags;
230
231 spin_lock_irqsave(&adapter->main_proc_lock, flags);
232
233 /* Check if already processing */
a9adbcb3 234 if (adapter->mwifiex_processing || adapter->main_locked) {
04c7b363 235 adapter->more_task_flag = true;
5e6e3a92
BZ
236 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
237 goto exit_main_proc;
238 } else {
239 adapter->mwifiex_processing = true;
91457eaa 240 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
5e6e3a92
BZ
241 }
242process_start:
243 do {
244 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
245 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
246 break;
247
381e9fff
AK
248 /* For non-USB interfaces, If we process interrupts first, it
249 * would increase RX pending even further. Avoid this by
250 * checking if rx_pending has crossed high threshold and
251 * schedule rx work queue and then process interrupts.
252 * For USB interface, there are no interrupts. We already have
253 * HIGH_RX_PENDING check in usb.c
6e251174 254 */
381e9fff
AK
255 if (atomic_read(&adapter->rx_pending) >= HIGH_RX_PENDING &&
256 adapter->iface_type != MWIFIEX_USB) {
6e251174 257 adapter->delay_main_work = true;
b2713f67 258 mwifiex_queue_rx_work(adapter);
6e251174
AP
259 break;
260 }
261
5e6e3a92
BZ
262 /* Handle pending interrupt if any */
263 if (adapter->int_status) {
264 if (adapter->hs_activated)
265 mwifiex_process_hs_config(adapter);
4daffe35
AK
266 if (adapter->if_ops.process_int_status)
267 adapter->if_ops.process_int_status(adapter);
5e6e3a92
BZ
268 }
269
6e251174 270 if (adapter->rx_work_enabled && adapter->data_received)
b2713f67 271 mwifiex_queue_rx_work(adapter);
6e251174 272
5e6e3a92
BZ
273 /* Need to wake up the card ? */
274 if ((adapter->ps_state == PS_STATE_SLEEP) &&
275 (adapter->pm_wakeup_card_req &&
276 !adapter->pm_wakeup_fw_try) &&
f57c1edc 277 (is_command_pending(adapter) ||
e35000ea 278 !skb_queue_empty(&adapter->tx_data_q) ||
a1777327 279 !mwifiex_bypass_txlist_empty(adapter) ||
f57c1edc 280 !mwifiex_wmm_lists_empty(adapter))) {
5e6e3a92 281 adapter->pm_wakeup_fw_try = true;
4636187d 282 mod_timer(&adapter->wakeup_timer, jiffies + (HZ*3));
5e6e3a92
BZ
283 adapter->if_ops.wakeup(adapter);
284 continue;
285 }
4daffe35 286
5e6e3a92 287 if (IS_CARD_RX_RCVD(adapter)) {
6e251174 288 adapter->data_received = false;
5e6e3a92 289 adapter->pm_wakeup_fw_try = false;
6e9344fd 290 del_timer(&adapter->wakeup_timer);
5e6e3a92
BZ
291 if (adapter->ps_state == PS_STATE_SLEEP)
292 adapter->ps_state = PS_STATE_AWAKE;
293 } else {
294 /* We have tried to wakeup the card already */
295 if (adapter->pm_wakeup_fw_try)
296 break;
297 if (adapter->ps_state != PS_STATE_AWAKE ||
298 adapter->tx_lock_flag)
299 break;
300
5ec39efa 301 if ((!adapter->scan_chan_gap_enabled &&
5ec39efa 302 adapter->scan_processing) || adapter->data_sent ||
ba101ad5
XH
303 mwifiex_is_tdls_chan_switching
304 (mwifiex_get_priv(adapter,
305 MWIFIEX_BSS_ROLE_STA)) ||
e35000ea 306 (mwifiex_wmm_lists_empty(adapter) &&
a1777327 307 mwifiex_bypass_txlist_empty(adapter) &&
e35000ea 308 skb_queue_empty(&adapter->tx_data_q))) {
f57c1edc 309 if (adapter->cmd_sent || adapter->curr_cmd ||
ba101ad5
XH
310 !mwifiex_is_send_cmd_allowed
311 (mwifiex_get_priv(adapter,
312 MWIFIEX_BSS_ROLE_STA)) ||
f57c1edc 313 (!is_command_pending(adapter)))
5e6e3a92
BZ
314 break;
315 }
316 }
317
20474129
AK
318 /* Check for event */
319 if (adapter->event_received) {
320 adapter->event_received = false;
321 mwifiex_process_event(adapter);
322 }
323
5e6e3a92
BZ
324 /* Check for Cmd Resp */
325 if (adapter->cmd_resp_received) {
326 adapter->cmd_resp_received = false;
327 mwifiex_process_cmdresp(adapter);
328
329 /* call mwifiex back when init_fw is done */
330 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
331 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
332 mwifiex_init_fw_complete(adapter);
333 }
334 }
335
5e6e3a92
BZ
336 /* Check if we need to confirm Sleep Request
337 received previously */
338 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
339 if (!adapter->cmd_sent && !adapter->curr_cmd)
340 mwifiex_check_ps_cond(adapter);
341 }
342
343 /* * The ps_state may have been changed during processing of
344 * Sleep Request event.
345 */
f57c1edc
YAP
346 if ((adapter->ps_state == PS_STATE_SLEEP) ||
347 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
348 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
04c7b363 349 adapter->tx_lock_flag){
5e6e3a92 350 continue;
04c7b363 351 }
5e6e3a92 352
ba101ad5
XH
353 if (!adapter->cmd_sent && !adapter->curr_cmd &&
354 mwifiex_is_send_cmd_allowed
355 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
5e6e3a92
BZ
356 if (mwifiex_exec_next_cmd(adapter) == -1) {
357 ret = -1;
358 break;
359 }
360 }
361
e35000ea
ZL
362 if ((adapter->scan_chan_gap_enabled ||
363 !adapter->scan_processing) &&
364 !adapter->data_sent &&
365 !skb_queue_empty(&adapter->tx_data_q)) {
366 mwifiex_process_tx_queue(adapter);
367 if (adapter->hs_activated) {
368 adapter->is_hs_configured = false;
369 mwifiex_hs_activated_event
370 (mwifiex_get_priv
371 (adapter, MWIFIEX_BSS_ROLE_ANY),
372 false);
373 }
374 }
375
a1777327
AP
376 if ((adapter->scan_chan_gap_enabled ||
377 !adapter->scan_processing) &&
378 !adapter->data_sent &&
379 !mwifiex_bypass_txlist_empty(adapter) &&
380 !mwifiex_is_tdls_chan_switching
381 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
382 mwifiex_process_bypass_tx(adapter);
383 if (adapter->hs_activated) {
384 adapter->is_hs_configured = false;
385 mwifiex_hs_activated_event
386 (mwifiex_get_priv
387 (adapter, MWIFIEX_BSS_ROLE_ANY),
388 false);
389 }
390 }
391
5ec39efa 392 if ((adapter->scan_chan_gap_enabled ||
d8d91253 393 !adapter->scan_processing) &&
ba101ad5
XH
394 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter) &&
395 !mwifiex_is_tdls_chan_switching
396 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
5e6e3a92
BZ
397 mwifiex_wmm_process_tx(adapter);
398 if (adapter->hs_activated) {
399 adapter->is_hs_configured = false;
400 mwifiex_hs_activated_event
401 (mwifiex_get_priv
402 (adapter, MWIFIEX_BSS_ROLE_ANY),
403 false);
404 }
405 }
406
407 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
f57c1edc 408 !adapter->curr_cmd && !is_command_pending(adapter) &&
e35000ea 409 (mwifiex_wmm_lists_empty(adapter) &&
a1777327 410 mwifiex_bypass_txlist_empty(adapter) &&
e35000ea 411 skb_queue_empty(&adapter->tx_data_q))) {
5e6e3a92
BZ
412 if (!mwifiex_send_null_packet
413 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
414 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
415 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
416 adapter->delay_null_pkt = false;
417 adapter->ps_state = PS_STATE_SLEEP;
418 }
419 break;
420 }
421 } while (true);
422
453b0c3f 423 spin_lock_irqsave(&adapter->main_proc_lock, flags);
91457eaa
CL
424 if (adapter->more_task_flag) {
425 adapter->more_task_flag = false;
426 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
5e6e3a92 427 goto process_start;
91457eaa 428 }
5e6e3a92
BZ
429 adapter->mwifiex_processing = false;
430 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
431
432exit_main_proc:
433 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
434 mwifiex_shutdown_drv(adapter);
435 return ret;
436}
601216e1 437EXPORT_SYMBOL_GPL(mwifiex_main_process);
5e6e3a92 438
5e6e3a92
BZ
439/*
440 * This function frees the adapter structure.
441 *
442 * Additionally, this closes the netlink socket, frees the timers
443 * and private structures.
444 */
445static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
446{
447 if (!adapter) {
448 pr_err("%s: adapter is NULL\n", __func__);
449 return;
450 }
451
452 mwifiex_unregister(adapter);
453 pr_debug("info: %s: free adapter\n", __func__);
454}
455
6b41f941
AK
456/*
457 * This function cancels all works in the queue and destroys
458 * the main workqueue.
459 */
460static void mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
461{
462 flush_workqueue(adapter->workqueue);
463 destroy_workqueue(adapter->workqueue);
464 adapter->workqueue = NULL;
6e251174
AP
465
466 if (adapter->rx_workqueue) {
467 flush_workqueue(adapter->rx_workqueue);
468 destroy_workqueue(adapter->rx_workqueue);
469 adapter->rx_workqueue = NULL;
470 }
6b41f941
AK
471}
472
5e6e3a92 473/*
59a4cc25 474 * This function gets firmware and initializes it.
5e6e3a92
BZ
475 *
476 * The main initialization steps followed are -
477 * - Download the correct firmware to card
5e6e3a92
BZ
478 * - Issue the init commands to firmware
479 */
59a4cc25 480static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
5e6e3a92 481{
bec568ff 482 int ret;
59a4cc25
AK
483 char fmt[64];
484 struct mwifiex_private *priv;
485 struct mwifiex_adapter *adapter = context;
5e6e3a92 486 struct mwifiex_fw_image fw;
c3afd99f
AK
487 struct semaphore *sem = adapter->card_sem;
488 bool init_failed = false;
68b76e99 489 struct wireless_dev *wdev;
5e6e3a92 490
59a4cc25 491 if (!firmware) {
acebe8c1
ZL
492 mwifiex_dbg(adapter, ERROR,
493 "Failed to get firmware %s\n", adapter->fw_name);
6b41f941 494 goto err_dnld_fw;
5e6e3a92 495 }
59a4cc25
AK
496
497 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
498 adapter->firmware = firmware;
5e6e3a92
BZ
499 fw.fw_buf = (u8 *) adapter->firmware->data;
500 fw.fw_len = adapter->firmware->size;
501
4daffe35
AK
502 if (adapter->if_ops.dnld_fw)
503 ret = adapter->if_ops.dnld_fw(adapter, &fw);
504 else
505 ret = mwifiex_dnld_fw(adapter, &fw);
5e6e3a92 506 if (ret == -1)
6b41f941 507 goto err_dnld_fw;
5e6e3a92 508
acebe8c1 509 mwifiex_dbg(adapter, MSG, "WLAN FW is active\n");
5e6e3a92 510
388ec385
AK
511 if (cal_data_cfg) {
512 if ((request_firmware(&adapter->cal_data, cal_data_cfg,
513 adapter->dev)) < 0)
acebe8c1
ZL
514 mwifiex_dbg(adapter, ERROR,
515 "Cal data request_firmware() failed\n");
388ec385
AK
516 }
517
232fde06 518 /* enable host interrupt after fw dnld is successful */
6b41f941
AK
519 if (adapter->if_ops.enable_int) {
520 if (adapter->if_ops.enable_int(adapter))
521 goto err_dnld_fw;
522 }
232fde06 523
5e6e3a92
BZ
524 adapter->init_wait_q_woken = false;
525 ret = mwifiex_init_fw(adapter);
526 if (ret == -1) {
6b41f941 527 goto err_init_fw;
5e6e3a92
BZ
528 } else if (!ret) {
529 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
530 goto done;
531 }
532 /* Wait for mwifiex_init to complete */
533 wait_event_interruptible(adapter->init_wait_q,
534 adapter->init_wait_q_woken);
59a4cc25 535 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
6b41f941 536 goto err_init_fw;
59a4cc25 537
d6bffe8b
AP
538 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
539 if (mwifiex_register_cfg80211(adapter)) {
acebe8c1
ZL
540 mwifiex_dbg(adapter, ERROR,
541 "cannot register with cfg80211\n");
d1af2943 542 goto err_init_fw;
59a4cc25
AK
543 }
544
bf354433 545 if (mwifiex_init_channel_scan_gap(adapter)) {
acebe8c1
ZL
546 mwifiex_dbg(adapter, ERROR,
547 "could not init channel stats table\n");
bf354433
AP
548 goto err_init_fw;
549 }
550
0013c7ce
AP
551 if (driver_mode) {
552 driver_mode &= MWIFIEX_DRIVER_MODE_BITMASK;
553 driver_mode |= MWIFIEX_DRIVER_MODE_STA;
554 }
555
59a4cc25
AK
556 rtnl_lock();
557 /* Create station interface by default */
6bab2e19 558 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d", NET_NAME_ENUM,
68b76e99
AK
559 NL80211_IFTYPE_STATION, NULL, NULL);
560 if (IS_ERR(wdev)) {
acebe8c1
ZL
561 mwifiex_dbg(adapter, ERROR,
562 "cannot create default STA interface\n");
bec568ff 563 rtnl_unlock();
59a4cc25 564 goto err_add_intf;
5e6e3a92 565 }
0013c7ce
AP
566
567 if (driver_mode & MWIFIEX_DRIVER_MODE_UAP) {
6bab2e19 568 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "uap%d", NET_NAME_ENUM,
0013c7ce
AP
569 NL80211_IFTYPE_AP, NULL, NULL);
570 if (IS_ERR(wdev)) {
acebe8c1
ZL
571 mwifiex_dbg(adapter, ERROR,
572 "cannot create AP interface\n");
0013c7ce
AP
573 rtnl_unlock();
574 goto err_add_intf;
575 }
576 }
577
578 if (driver_mode & MWIFIEX_DRIVER_MODE_P2P) {
6bab2e19 579 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d", NET_NAME_ENUM,
0013c7ce
AP
580 NL80211_IFTYPE_P2P_CLIENT, NULL,
581 NULL);
582 if (IS_ERR(wdev)) {
acebe8c1
ZL
583 mwifiex_dbg(adapter, ERROR,
584 "cannot create p2p client interface\n");
0013c7ce
AP
585 rtnl_unlock();
586 goto err_add_intf;
587 }
588 }
59a4cc25
AK
589 rtnl_unlock();
590
591 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
acebe8c1 592 mwifiex_dbg(adapter, MSG, "driver_version = %s\n", fmt);
59a4cc25 593 goto done;
5e6e3a92 594
59a4cc25 595err_add_intf:
6b41f941
AK
596 wiphy_unregister(adapter->wiphy);
597 wiphy_free(adapter->wiphy);
59a4cc25 598err_init_fw:
232fde06
DD
599 if (adapter->if_ops.disable_int)
600 adapter->if_ops.disable_int(adapter);
6b41f941 601err_dnld_fw:
acebe8c1
ZL
602 mwifiex_dbg(adapter, ERROR,
603 "info: %s: unregister device\n", __func__);
6b41f941
AK
604 if (adapter->if_ops.unregister_dev)
605 adapter->if_ops.unregister_dev(adapter);
606
7197325b 607 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
6b41f941
AK
608 pr_debug("info: %s: shutdown mwifiex\n", __func__);
609 adapter->init_wait_q_woken = false;
610
611 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
612 wait_event_interruptible(adapter->init_wait_q,
613 adapter->init_wait_q_woken);
614 }
615 adapter->surprise_removed = true;
616 mwifiex_terminate_workqueue(adapter);
c3afd99f 617 init_failed = true;
5e6e3a92 618done:
388ec385
AK
619 if (adapter->cal_data) {
620 release_firmware(adapter->cal_data);
621 adapter->cal_data = NULL;
622 }
c3afd99f
AK
623 if (adapter->firmware) {
624 release_firmware(adapter->firmware);
625 adapter->firmware = NULL;
626 }
c3afd99f
AK
627 if (init_failed)
628 mwifiex_free_adapter(adapter);
629 up(sem);
59a4cc25
AK
630 return;
631}
632
633/*
634 * This function initializes the hardware and gets firmware.
635 */
636static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
637{
638 int ret;
639
59a4cc25
AK
640 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
641 adapter->dev, GFP_KERNEL, adapter,
642 mwifiex_fw_dpc);
643 if (ret < 0)
acebe8c1
ZL
644 mwifiex_dbg(adapter, ERROR,
645 "request_firmware_nowait error %d\n", ret);
5e6e3a92
BZ
646 return ret;
647}
648
5e6e3a92
BZ
649/*
650 * CFG802.11 network device handler for open.
651 *
652 * Starts the data queue.
653 */
654static int
655mwifiex_open(struct net_device *dev)
656{
ea2325b8
JB
657 netif_carrier_off(dev);
658
5e6e3a92
BZ
659 return 0;
660}
661
662/*
663 * CFG802.11 network device handler for close.
664 */
665static int
666mwifiex_close(struct net_device *dev)
667{
f162cac8
AK
668 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
669
670 if (priv->scan_request) {
acebe8c1
ZL
671 mwifiex_dbg(priv->adapter, INFO,
672 "aborting scan on ndo_stop\n");
f162cac8
AK
673 cfg80211_scan_done(priv->scan_request, 1);
674 priv->scan_request = NULL;
75ab753d 675 priv->scan_aborting = true;
f162cac8
AK
676 }
677
5e6e3a92
BZ
678 return 0;
679}
680
a1777327
AP
681static bool
682mwifiex_bypass_tx_queue(struct mwifiex_private *priv,
683 struct sk_buff *skb)
684{
685 struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
686
687 if (ntohs(eth_hdr->h_proto) == ETH_P_PAE ||
688 mwifiex_is_skb_mgmt_frame(skb) ||
689 (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA &&
690 ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
691 (ntohs(eth_hdr->h_proto) == ETH_P_TDLS))) {
692 mwifiex_dbg(priv->adapter, DATA,
693 "bypass txqueue; eth type %#x, mgmt %d\n",
694 ntohs(eth_hdr->h_proto),
695 mwifiex_is_skb_mgmt_frame(skb));
696 return true;
697 }
698
699 return false;
700}
e39faa73
SP
701/*
702 * Add buffer into wmm tx queue and queue work to transmit it.
703 */
704int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
705{
47411a06
AP
706 struct netdev_queue *txq;
707 int index = mwifiex_1d_to_wmm_queue[skb->priority];
708
709 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
710 txq = netdev_get_tx_queue(priv->netdev, index);
711 if (!netif_tx_queue_stopped(txq)) {
712 netif_tx_stop_queue(txq);
acebe8c1
ZL
713 mwifiex_dbg(priv->adapter, DATA,
714 "stop queue: %d\n", index);
47411a06
AP
715 }
716 }
717
a1777327
AP
718 if (mwifiex_bypass_tx_queue(priv, skb)) {
719 atomic_inc(&priv->adapter->tx_pending);
720 atomic_inc(&priv->adapter->bypass_tx_pending);
721 mwifiex_wmm_add_buf_bypass_txqueue(priv, skb);
722 } else {
723 atomic_inc(&priv->adapter->tx_pending);
724 mwifiex_wmm_add_buf_txqueue(priv, skb);
725 }
e39faa73 726
b2713f67 727 mwifiex_queue_main_work(priv->adapter);
e39faa73
SP
728
729 return 0;
730}
731
18ca4382 732struct sk_buff *
808bbebc 733mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv,
18ca4382 734 struct sk_buff *skb, u8 flag, u64 *cookie)
808bbebc
AK
735{
736 struct sk_buff *orig_skb = skb;
737 struct mwifiex_txinfo *tx_info, *orig_tx_info;
738
739 skb = skb_clone(skb, GFP_ATOMIC);
740 if (skb) {
741 unsigned long flags;
742 int id;
743
744 spin_lock_irqsave(&priv->ack_status_lock, flags);
745 id = idr_alloc(&priv->ack_status_frames, orig_skb,
746 1, 0xff, GFP_ATOMIC);
747 spin_unlock_irqrestore(&priv->ack_status_lock, flags);
748
749 if (id >= 0) {
750 tx_info = MWIFIEX_SKB_TXCB(skb);
751 tx_info->ack_frame_id = id;
752 tx_info->flags |= flag;
753 orig_tx_info = MWIFIEX_SKB_TXCB(orig_skb);
754 orig_tx_info->ack_frame_id = id;
755 orig_tx_info->flags |= flag;
18ca4382
AK
756
757 if (flag == MWIFIEX_BUF_FLAG_ACTION_TX_STATUS && cookie)
758 orig_tx_info->cookie = *cookie;
759
808bbebc
AK
760 } else if (skb_shared(skb)) {
761 kfree_skb(orig_skb);
762 } else {
763 kfree_skb(skb);
764 skb = orig_skb;
765 }
766 } else {
767 /* couldn't clone -- lose tx status ... */
768 skb = orig_skb;
769 }
770
771 return skb;
772}
773
5e6e3a92
BZ
774/*
775 * CFG802.11 network device handler for data transmission.
776 */
777static int
778mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
779{
780 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
270e58e8 781 struct sk_buff *new_skb;
5e6e3a92 782 struct mwifiex_txinfo *tx_info;
808bbebc 783 bool multicast;
5e6e3a92 784
acebe8c1
ZL
785 mwifiex_dbg(priv->adapter, DATA,
786 "data: %lu BSS(%d-%d): Data <= kernel\n",
787 jiffies, priv->bss_type, priv->bss_num);
5e6e3a92
BZ
788
789 if (priv->adapter->surprise_removed) {
b53575ec 790 kfree_skb(skb);
5e6e3a92
BZ
791 priv->stats.tx_dropped++;
792 return 0;
793 }
794 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
acebe8c1
ZL
795 mwifiex_dbg(priv->adapter, ERROR,
796 "Tx: bad skb len %d\n", skb->len);
b53575ec 797 kfree_skb(skb);
5e6e3a92
BZ
798 priv->stats.tx_dropped++;
799 return 0;
800 }
801 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
acebe8c1
ZL
802 mwifiex_dbg(priv->adapter, DATA,
803 "data: Tx: insufficient skb headroom %d\n",
804 skb_headroom(skb));
5e6e3a92
BZ
805 /* Insufficient skb headroom - allocate a new skb */
806 new_skb =
807 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
808 if (unlikely(!new_skb)) {
acebe8c1
ZL
809 mwifiex_dbg(priv->adapter, ERROR,
810 "Tx: cannot alloca new_skb\n");
b53575ec 811 kfree_skb(skb);
5e6e3a92
BZ
812 priv->stats.tx_dropped++;
813 return 0;
814 }
815 kfree_skb(skb);
816 skb = new_skb;
acebe8c1
ZL
817 mwifiex_dbg(priv->adapter, INFO,
818 "info: new skb headroomd %d\n",
819 skb_headroom(skb));
5e6e3a92
BZ
820 }
821
822 tx_info = MWIFIEX_SKB_TXCB(skb);
d76744a9 823 memset(tx_info, 0, sizeof(*tx_info));
9da9a3b2
YAP
824 tx_info->bss_num = priv->bss_num;
825 tx_info->bss_type = priv->bss_type;
a1ed4849 826 tx_info->pkt_len = skb->len;
47411a06 827
808bbebc
AK
828 multicast = is_multicast_ether_addr(skb->data);
829
830 if (unlikely(!multicast && skb->sk &&
831 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS &&
832 priv->adapter->fw_api_ver == MWIFIEX_FW_V15))
833 skb = mwifiex_clone_skb_for_tx_status(priv,
834 skb,
18ca4382 835 MWIFIEX_BUF_FLAG_EAPOL_TX_STATUS, NULL);
808bbebc 836
47411a06
AP
837 /* Record the current time the packet was queued; used to
838 * determine the amount of time the packet was queued in
839 * the driver before it was sent to the firmware.
840 * The delay is then sent along with the packet to the
841 * firmware for aggregate delay calculation for stats and
842 * MSDU lifetime expiry.
843 */
c64800e7 844 __net_timestamp(skb);
5e6e3a92 845
9927baa3
AP
846 if (ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
847 priv->bss_type == MWIFIEX_BSS_TYPE_STA &&
848 !ether_addr_equal_unaligned(priv->cfg_bssid, skb->data)) {
849 if (priv->adapter->auto_tdls && priv->check_tdls_tx)
850 mwifiex_tdls_check_tx(priv, skb);
851 }
852
e39faa73 853 mwifiex_queue_tx_pkt(priv, skb);
5e6e3a92
BZ
854
855 return 0;
856}
857
858/*
859 * CFG802.11 network device handler for setting MAC address.
860 */
861static int
862mwifiex_set_mac_address(struct net_device *dev, void *addr)
863{
864 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
a5ffddb7 865 struct sockaddr *hw_addr = addr;
270e58e8 866 int ret;
5e6e3a92
BZ
867
868 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
869
600f5d90 870 /* Send request to firmware */
fa0ecbb9
BZ
871 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
872 HostCmd_ACT_GEN_SET, 0, NULL, true);
600f5d90
AK
873
874 if (!ret)
875 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
876 else
acebe8c1
ZL
877 mwifiex_dbg(priv->adapter, ERROR,
878 "set mac address failed: ret=%d\n", ret);
600f5d90 879
5e6e3a92
BZ
880 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
881
600f5d90 882 return ret;
5e6e3a92
BZ
883}
884
885/*
886 * CFG802.11 network device handler for setting multicast list.
887 */
888static void mwifiex_set_multicast_list(struct net_device *dev)
889{
890 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
600f5d90
AK
891 struct mwifiex_multicast_list mcast_list;
892
893 if (dev->flags & IFF_PROMISC) {
894 mcast_list.mode = MWIFIEX_PROMISC_MODE;
895 } else if (dev->flags & IFF_ALLMULTI ||
896 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
897 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
898 } else {
899 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
6390d885
DD
900 mcast_list.num_multicast_addr =
901 mwifiex_copy_mcast_addr(&mcast_list, dev);
600f5d90
AK
902 }
903 mwifiex_request_set_multicast_list(priv, &mcast_list);
5e6e3a92
BZ
904}
905
906/*
907 * CFG802.11 network device handler for transmission timeout.
908 */
909static void
910mwifiex_tx_timeout(struct net_device *dev)
911{
912 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
913
5e6e3a92 914 priv->num_tx_timeout++;
8908c7d5 915 priv->tx_timeout_cnt++;
acebe8c1
ZL
916 mwifiex_dbg(priv->adapter, ERROR,
917 "%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
918 jiffies, priv->tx_timeout_cnt, priv->bss_type,
919 priv->bss_num);
8908c7d5
AN
920 mwifiex_set_trans_start(dev);
921
922 if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
923 priv->adapter->if_ops.card_reset) {
acebe8c1
ZL
924 mwifiex_dbg(priv->adapter, ERROR,
925 "tx_timeout_cnt exceeds threshold.\t"
926 "Triggering card reset!\n");
8908c7d5
AN
927 priv->adapter->if_ops.card_reset(priv->adapter);
928 }
5e6e3a92
BZ
929}
930
fc697159 931void mwifiex_drv_info_dump(struct mwifiex_adapter *adapter)
11cd07a9
XH
932{
933 void *p;
934 char drv_version[64];
935 struct usb_card_rec *cardp;
936 struct sdio_mmc_card *sdio_card;
937 struct mwifiex_private *priv;
938 int i, idx;
939 struct netdev_queue *txq;
940 struct mwifiex_debug_info *debug_info;
941
942 if (adapter->drv_info_dump) {
943 vfree(adapter->drv_info_dump);
0769b277 944 adapter->drv_info_dump = NULL;
11cd07a9
XH
945 adapter->drv_info_size = 0;
946 }
947
9cc0dbf0 948 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump start===\n");
11cd07a9
XH
949
950 adapter->drv_info_dump = vzalloc(MWIFIEX_DRV_INFO_SIZE_MAX);
951
952 if (!adapter->drv_info_dump)
953 return;
954
955 p = (char *)(adapter->drv_info_dump);
956 p += sprintf(p, "driver_name = " "\"mwifiex\"\n");
957
958 mwifiex_drv_get_driver_version(adapter, drv_version,
959 sizeof(drv_version) - 1);
960 p += sprintf(p, "driver_version = %s\n", drv_version);
961
962 if (adapter->iface_type == MWIFIEX_USB) {
963 cardp = (struct usb_card_rec *)adapter->card;
964 p += sprintf(p, "tx_cmd_urb_pending = %d\n",
965 atomic_read(&cardp->tx_cmd_urb_pending));
308fe29e
ZL
966 p += sprintf(p, "tx_data_urb_pending_port_0 = %d\n",
967 atomic_read(&cardp->port[0].tx_data_urb_pending));
968 p += sprintf(p, "tx_data_urb_pending_port_1 = %d\n",
969 atomic_read(&cardp->port[1].tx_data_urb_pending));
11cd07a9
XH
970 p += sprintf(p, "rx_cmd_urb_pending = %d\n",
971 atomic_read(&cardp->rx_cmd_urb_pending));
972 p += sprintf(p, "rx_data_urb_pending = %d\n",
973 atomic_read(&cardp->rx_data_urb_pending));
974 }
975
976 p += sprintf(p, "tx_pending = %d\n",
977 atomic_read(&adapter->tx_pending));
978 p += sprintf(p, "rx_pending = %d\n",
979 atomic_read(&adapter->rx_pending));
980
981 if (adapter->iface_type == MWIFIEX_SDIO) {
982 sdio_card = (struct sdio_mmc_card *)adapter->card;
983 p += sprintf(p, "\nmp_rd_bitmap=0x%x curr_rd_port=0x%x\n",
984 sdio_card->mp_rd_bitmap, sdio_card->curr_rd_port);
985 p += sprintf(p, "mp_wr_bitmap=0x%x curr_wr_port=0x%x\n",
986 sdio_card->mp_wr_bitmap, sdio_card->curr_wr_port);
987 }
988
989 for (i = 0; i < adapter->priv_num; i++) {
990 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
991 continue;
992 priv = adapter->priv[i];
993 p += sprintf(p, "\n[interface : \"%s\"]\n",
994 priv->netdev->name);
995 p += sprintf(p, "wmm_tx_pending[0] = %d\n",
996 atomic_read(&priv->wmm_tx_pending[0]));
997 p += sprintf(p, "wmm_tx_pending[1] = %d\n",
998 atomic_read(&priv->wmm_tx_pending[1]));
999 p += sprintf(p, "wmm_tx_pending[2] = %d\n",
1000 atomic_read(&priv->wmm_tx_pending[2]));
1001 p += sprintf(p, "wmm_tx_pending[3] = %d\n",
1002 atomic_read(&priv->wmm_tx_pending[3]));
1003 p += sprintf(p, "media_state=\"%s\"\n", !priv->media_connected ?
1004 "Disconnected" : "Connected");
1005 p += sprintf(p, "carrier %s\n", (netif_carrier_ok(priv->netdev)
1006 ? "on" : "off"));
1007 for (idx = 0; idx < priv->netdev->num_tx_queues; idx++) {
1008 txq = netdev_get_tx_queue(priv->netdev, idx);
1009 p += sprintf(p, "tx queue %d:%s ", idx,
1010 netif_tx_queue_stopped(txq) ?
1011 "stopped" : "started");
1012 }
1013 p += sprintf(p, "\n%s: num_tx_timeout = %d\n",
1014 priv->netdev->name, priv->num_tx_timeout);
1015 }
1016
809c6ea8 1017 if (adapter->iface_type == MWIFIEX_SDIO) {
9cc0dbf0 1018 p += sprintf(p, "\n=== SDIO register dump===\n");
809c6ea8
XH
1019 if (adapter->if_ops.reg_dump)
1020 p += adapter->if_ops.reg_dump(adapter, p);
1021 }
1022
9cc0dbf0 1023 p += sprintf(p, "\n=== more debug information\n");
11cd07a9
XH
1024 debug_info = kzalloc(sizeof(*debug_info), GFP_KERNEL);
1025 if (debug_info) {
1026 for (i = 0; i < adapter->priv_num; i++) {
1027 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
1028 continue;
1029 priv = adapter->priv[i];
1030 mwifiex_get_debug_info(priv, debug_info);
1031 p += mwifiex_debug_info_to_buffer(priv, p, debug_info);
1032 break;
1033 }
1034 kfree(debug_info);
1035 }
1036
1037 adapter->drv_info_size = p - adapter->drv_info_dump;
9cc0dbf0 1038 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump end===\n");
11cd07a9 1039}
fc697159 1040EXPORT_SYMBOL_GPL(mwifiex_drv_info_dump);
11cd07a9 1041
57670ee8
AK
1042void mwifiex_upload_device_dump(struct mwifiex_adapter *adapter)
1043{
1044 u8 idx, *dump_data, *fw_dump_ptr;
1045 u32 dump_len;
1046
1047 dump_len = (strlen("========Start dump driverinfo========\n") +
1048 adapter->drv_info_size +
1049 strlen("\n========End dump========\n"));
1050
1051 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1052 struct memory_type_mapping *entry =
1053 &adapter->mem_type_mapping_tbl[idx];
1054
1055 if (entry->mem_ptr) {
1056 dump_len += (strlen("========Start dump ") +
1057 strlen(entry->mem_name) +
1058 strlen("========\n") +
1059 (entry->mem_size + 1) +
1060 strlen("\n========End dump========\n"));
1061 }
1062 }
1063
1064 dump_data = vzalloc(dump_len + 1);
1065 if (!dump_data)
1066 goto done;
1067
1068 fw_dump_ptr = dump_data;
1069
1070 /* Dump all the memory data into single file, a userspace script will
1071 * be used to split all the memory data to multiple files
1072 */
1073 mwifiex_dbg(adapter, MSG,
1074 "== mwifiex dump information to /sys/class/devcoredump start");
1075
1076 strcpy(fw_dump_ptr, "========Start dump driverinfo========\n");
1077 fw_dump_ptr += strlen("========Start dump driverinfo========\n");
1078 memcpy(fw_dump_ptr, adapter->drv_info_dump, adapter->drv_info_size);
1079 fw_dump_ptr += adapter->drv_info_size;
1080 strcpy(fw_dump_ptr, "\n========End dump========\n");
1081 fw_dump_ptr += strlen("\n========End dump========\n");
1082
1083 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1084 struct memory_type_mapping *entry =
1085 &adapter->mem_type_mapping_tbl[idx];
1086
1087 if (entry->mem_ptr) {
1088 strcpy(fw_dump_ptr, "========Start dump ");
1089 fw_dump_ptr += strlen("========Start dump ");
1090
1091 strcpy(fw_dump_ptr, entry->mem_name);
1092 fw_dump_ptr += strlen(entry->mem_name);
1093
1094 strcpy(fw_dump_ptr, "========\n");
1095 fw_dump_ptr += strlen("========\n");
1096
1097 memcpy(fw_dump_ptr, entry->mem_ptr, entry->mem_size);
1098 fw_dump_ptr += entry->mem_size;
1099
1100 strcpy(fw_dump_ptr, "\n========End dump========\n");
1101 fw_dump_ptr += strlen("\n========End dump========\n");
1102 }
1103 }
1104
1105 /* device dump data will be free in device coredump release function
1106 * after 5 min
1107 */
1108 dev_coredumpv(adapter->dev, dump_data, dump_len, GFP_KERNEL);
1109 mwifiex_dbg(adapter, MSG,
1110 "== mwifiex dump information to /sys/class/devcoredump end");
1111
1112done:
1113 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1114 struct memory_type_mapping *entry =
1115 &adapter->mem_type_mapping_tbl[idx];
1116
1117 if (entry->mem_ptr) {
1118 vfree(entry->mem_ptr);
1119 entry->mem_ptr = NULL;
1120 }
1121 entry->mem_size = 0;
1122 }
1123
1124 if (adapter->drv_info_dump) {
1125 vfree(adapter->drv_info_dump);
1126 adapter->drv_info_dump = NULL;
1127 adapter->drv_info_size = 0;
1128 }
1129}
1130EXPORT_SYMBOL_GPL(mwifiex_upload_device_dump);
1131
5e6e3a92
BZ
1132/*
1133 * CFG802.11 network device handler for statistics retrieval.
1134 */
1135static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
1136{
1137 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1138
1139 return &priv->stats;
1140}
1141
47411a06 1142static u16
f663dd9a 1143mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb,
99932d4f 1144 void *accel_priv, select_queue_fallback_t fallback)
47411a06 1145{
fa9ffc74 1146 skb->priority = cfg80211_classify8021d(skb, NULL);
47411a06
AP
1147 return mwifiex_1d_to_wmm_queue[skb->priority];
1148}
1149
5e6e3a92
BZ
1150/* Network device handlers */
1151static const struct net_device_ops mwifiex_netdev_ops = {
1152 .ndo_open = mwifiex_open,
1153 .ndo_stop = mwifiex_close,
1154 .ndo_start_xmit = mwifiex_hard_start_xmit,
1155 .ndo_set_mac_address = mwifiex_set_mac_address,
1156 .ndo_tx_timeout = mwifiex_tx_timeout,
1157 .ndo_get_stats = mwifiex_get_stats,
afc4b13d 1158 .ndo_set_rx_mode = mwifiex_set_multicast_list,
47411a06 1159 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
5e6e3a92
BZ
1160};
1161
1162/*
1163 * This function initializes the private structure parameters.
1164 *
1165 * The following wait queues are initialized -
1166 * - IOCTL wait queue
1167 * - Command wait queue
1168 * - Statistics wait queue
1169 *
1170 * ...and the following default parameters are set -
1171 * - Current key index : Set to 0
1172 * - Rate index : Set to auto
1173 * - Media connected : Set to disconnected
1174 * - Adhoc link sensed : Set to false
1175 * - Nick name : Set to null
1176 * - Number of Tx timeout : Set to 0
1177 * - Device address : Set to current address
cbf6e055 1178 * - Rx histogram statistc : Set to 0
5e6e3a92
BZ
1179 *
1180 * In addition, the CFG80211 work queue is also created.
1181 */
93a1df48 1182void mwifiex_init_priv_params(struct mwifiex_private *priv,
047eaaf6 1183 struct net_device *dev)
5e6e3a92
BZ
1184{
1185 dev->netdev_ops = &mwifiex_netdev_ops;
f16fdc9d 1186 dev->destructor = free_netdev;
5e6e3a92 1187 /* Initialize private structure */
5e6e3a92
BZ
1188 priv->current_key_index = 0;
1189 priv->media_connected = false;
ede98bfa
AP
1190 memset(priv->mgmt_ie, 0,
1191 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
f31acabe
AP
1192 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
1193 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
1194 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
2ade5667 1195 priv->gen_idx = MWIFIEX_AUTO_IDX_MASK;
5e6e3a92 1196 priv->num_tx_timeout = 0;
8d05eb22 1197 ether_addr_copy(priv->curr_addr, priv->adapter->perm_addr);
5e6e3a92 1198 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
cbf6e055
XH
1199
1200 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA ||
1201 GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
1202 priv->hist_data = kmalloc(sizeof(*priv->hist_data), GFP_KERNEL);
1203 if (priv->hist_data)
1204 mwifiex_hist_data_reset(priv);
1205 }
5e6e3a92
BZ
1206}
1207
5e6e3a92
BZ
1208/*
1209 * This function check if command is pending.
1210 */
1211int is_command_pending(struct mwifiex_adapter *adapter)
1212{
1213 unsigned long flags;
1214 int is_cmd_pend_q_empty;
1215
1216 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
1217 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
1218 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
1219
1220 return !is_cmd_pend_q_empty;
1221}
1222
6e251174
AP
1223/*
1224 * This is the RX work queue function.
1225 *
1226 * It handles the RX operations.
1227 */
1228static void mwifiex_rx_work_queue(struct work_struct *work)
1229{
1230 struct mwifiex_adapter *adapter =
1231 container_of(work, struct mwifiex_adapter, rx_work);
1232
1233 if (adapter->surprise_removed)
1234 return;
1235 mwifiex_process_rx(adapter);
1236}
1237
5e6e3a92
BZ
1238/*
1239 * This is the main work queue function.
1240 *
1241 * It handles the main process, which in turn handles the complete
1242 * driver operations.
1243 */
1244static void mwifiex_main_work_queue(struct work_struct *work)
1245{
1246 struct mwifiex_adapter *adapter =
1247 container_of(work, struct mwifiex_adapter, main_work);
1248
1249 if (adapter->surprise_removed)
1250 return;
1251 mwifiex_main_process(adapter);
1252}
1253
5e6e3a92
BZ
1254/*
1255 * This function adds the card.
1256 *
1257 * This function follows the following major steps to set up the device -
1258 * - Initialize software. This includes probing the card, registering
1259 * the interface operations table, and allocating/initializing the
1260 * adapter structure
1261 * - Set up the netlink socket
1262 * - Create and start the main work queue
1263 * - Register the device
1264 * - Initialize firmware and hardware
1265 * - Add logical interfaces
1266 */
1267int
1268mwifiex_add_card(void *card, struct semaphore *sem,
d930faee 1269 struct mwifiex_if_ops *if_ops, u8 iface_type)
5e6e3a92 1270{
2be7859f 1271 struct mwifiex_adapter *adapter;
5e6e3a92
BZ
1272
1273 if (down_interruptible(sem))
1274 goto exit_sem_err;
1275
93a1df48 1276 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
5e6e3a92
BZ
1277 pr_err("%s: software init failed\n", __func__);
1278 goto err_init_sw;
1279 }
1280
d930faee 1281 adapter->iface_type = iface_type;
6b41f941 1282 adapter->card_sem = sem;
d930faee 1283
5e6e3a92 1284 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
5e6e3a92
BZ
1285 adapter->surprise_removed = false;
1286 init_waitqueue_head(&adapter->init_wait_q);
1287 adapter->is_suspended = false;
1288 adapter->hs_activated = false;
1289 init_waitqueue_head(&adapter->hs_activate_wait_q);
600f5d90 1290 init_waitqueue_head(&adapter->cmd_wait_q.wait);
600f5d90 1291 adapter->cmd_wait_q.status = 0;
efaaa8b8 1292 adapter->scan_wait_q_woken = false;
5e6e3a92 1293
ec4a16b4 1294 if ((num_possible_cpus() > 1) || adapter->iface_type == MWIFIEX_USB) {
6e251174
AP
1295 adapter->rx_work_enabled = true;
1296 pr_notice("rx work enabled, cpus %d\n", num_possible_cpus());
1297 }
1298
448a71cc
AK
1299 adapter->workqueue =
1300 alloc_workqueue("MWIFIEX_WORK_QUEUE",
1301 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
5e6e3a92
BZ
1302 if (!adapter->workqueue)
1303 goto err_kmalloc;
1304
1305 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
6e251174
AP
1306
1307 if (adapter->rx_work_enabled) {
1308 adapter->rx_workqueue = alloc_workqueue("MWIFIEX_RX_WORK_QUEUE",
1309 WQ_HIGHPRI |
1310 WQ_MEM_RECLAIM |
1311 WQ_UNBOUND, 1);
1312 if (!adapter->rx_workqueue)
1313 goto err_kmalloc;
1314
1315 INIT_WORK(&adapter->rx_work, mwifiex_rx_work_queue);
1316 }
1317
5e6e3a92 1318 /* Register the device. Fill up the private data structure with relevant
232fde06 1319 information from the card. */
5e6e3a92
BZ
1320 if (adapter->if_ops.register_dev(adapter)) {
1321 pr_err("%s: failed to register mwifiex device\n", __func__);
1322 goto err_registerdev;
1323 }
1324
5e6e3a92
BZ
1325 if (mwifiex_init_hw_fw(adapter)) {
1326 pr_err("%s: firmware init failed\n", __func__);
1327 goto err_init_fw;
1328 }
2be7859f 1329
5e6e3a92
BZ
1330 return 0;
1331
5e6e3a92 1332err_init_fw:
5e6e3a92 1333 pr_debug("info: %s: unregister device\n", __func__);
4daffe35
AK
1334 if (adapter->if_ops.unregister_dev)
1335 adapter->if_ops.unregister_dev(adapter);
7197325b 1336 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
5e6e3a92
BZ
1337 pr_debug("info: %s: shutdown mwifiex\n", __func__);
1338 adapter->init_wait_q_woken = false;
636c4598
YAP
1339
1340 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
1341 wait_event_interruptible(adapter->init_wait_q,
1342 adapter->init_wait_q_woken);
1343 }
6b41f941
AK
1344err_registerdev:
1345 adapter->surprise_removed = true;
1346 mwifiex_terminate_workqueue(adapter);
1347err_kmalloc:
5e6e3a92
BZ
1348 mwifiex_free_adapter(adapter);
1349
1350err_init_sw:
1351 up(sem);
1352
1353exit_sem_err:
1354 return -1;
1355}
1356EXPORT_SYMBOL_GPL(mwifiex_add_card);
1357
1358/*
1359 * This function removes the card.
1360 *
1361 * This function follows the following major steps to remove the device -
1362 * - Stop data traffic
1363 * - Shutdown firmware
1364 * - Remove the logical interfaces
1365 * - Terminate the work queue
1366 * - Unregister the device
1367 * - Free the adapter structure
1368 */
1369int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
1370{
1371 struct mwifiex_private *priv = NULL;
5e6e3a92
BZ
1372 int i;
1373
1374 if (down_interruptible(sem))
1375 goto exit_sem_err;
1376
1377 if (!adapter)
1378 goto exit_remove;
1379
232fde06
DD
1380 /* We can no longer handle interrupts once we start doing the teardown
1381 * below. */
1382 if (adapter->if_ops.disable_int)
1383 adapter->if_ops.disable_int(adapter);
1384
5e6e3a92
BZ
1385 adapter->surprise_removed = true;
1386
9d2e85e0
MY
1387 mwifiex_terminate_workqueue(adapter);
1388
5e6e3a92
BZ
1389 /* Stop data */
1390 for (i = 0; i < adapter->priv_num; i++) {
1391 priv = adapter->priv[i];
93a1df48 1392 if (priv && priv->netdev) {
47411a06 1393 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
5e6e3a92
BZ
1394 if (netif_carrier_ok(priv->netdev))
1395 netif_carrier_off(priv->netdev);
1396 }
1397 }
1398
acebe8c1
ZL
1399 mwifiex_dbg(adapter, CMD,
1400 "cmd: calling mwifiex_shutdown_drv...\n");
5e6e3a92 1401 adapter->init_wait_q_woken = false;
636c4598
YAP
1402
1403 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
1404 wait_event_interruptible(adapter->init_wait_q,
1405 adapter->init_wait_q_woken);
acebe8c1
ZL
1406 mwifiex_dbg(adapter, CMD,
1407 "cmd: mwifiex_shutdown_drv done\n");
5e6e3a92
BZ
1408 if (atomic_read(&adapter->rx_pending) ||
1409 atomic_read(&adapter->tx_pending) ||
600f5d90 1410 atomic_read(&adapter->cmd_pending)) {
acebe8c1
ZL
1411 mwifiex_dbg(adapter, ERROR,
1412 "rx_pending=%d, tx_pending=%d,\t"
1413 "cmd_pending=%d\n",
1414 atomic_read(&adapter->rx_pending),
1415 atomic_read(&adapter->tx_pending),
1416 atomic_read(&adapter->cmd_pending));
5e6e3a92
BZ
1417 }
1418
93a1df48
YAP
1419 for (i = 0; i < adapter->priv_num; i++) {
1420 priv = adapter->priv[i];
1421
1422 if (!priv)
1423 continue;
1424
1425 rtnl_lock();
4facc34a
AP
1426 if (priv->netdev &&
1427 priv->wdev.iftype != NL80211_IFTYPE_UNSPECIFIED)
1428 mwifiex_del_virtual_intf(adapter->wiphy, &priv->wdev);
93a1df48
YAP
1429 rtnl_unlock();
1430 }
1431
c2868ade
AK
1432 wiphy_unregister(adapter->wiphy);
1433 wiphy_free(adapter->wiphy);
64b05e2f 1434
5e6e3a92 1435 /* Unregister device */
acebe8c1
ZL
1436 mwifiex_dbg(adapter, INFO,
1437 "info: unregister device\n");
4daffe35
AK
1438 if (adapter->if_ops.unregister_dev)
1439 adapter->if_ops.unregister_dev(adapter);
5e6e3a92 1440 /* Free adapter structure */
acebe8c1
ZL
1441 mwifiex_dbg(adapter, INFO,
1442 "info: free adapter\n");
5e6e3a92
BZ
1443 mwifiex_free_adapter(adapter);
1444
1445exit_remove:
1446 up(sem);
1447exit_sem_err:
1448 return 0;
1449}
1450EXPORT_SYMBOL_GPL(mwifiex_remove_card);
1451
36925e52
JP
1452void _mwifiex_dbg(const struct mwifiex_adapter *adapter, int mask,
1453 const char *fmt, ...)
1454{
1455 struct va_format vaf;
1456 va_list args;
1457
1458 if (!adapter->dev || !(adapter->debug_mask & mask))
1459 return;
1460
1461 va_start(args, fmt);
1462
1463 vaf.fmt = fmt;
1464 vaf.va = &args;
1465
1466 dev_info(adapter->dev, "%pV", &vaf);
1467
1468 va_end(args);
1469}
1470EXPORT_SYMBOL_GPL(_mwifiex_dbg);
1471
5e6e3a92
BZ
1472/*
1473 * This function initializes the module.
1474 *
1475 * The debug FS is also initialized if configured.
1476 */
1477static int
1478mwifiex_init_module(void)
1479{
1480#ifdef CONFIG_DEBUG_FS
1481 mwifiex_debugfs_init();
1482#endif
1483 return 0;
1484}
1485
1486/*
1487 * This function cleans up the module.
1488 *
1489 * The debug FS is removed if available.
1490 */
1491static void
1492mwifiex_cleanup_module(void)
1493{
1494#ifdef CONFIG_DEBUG_FS
1495 mwifiex_debugfs_remove();
1496#endif
1497}
1498
1499module_init(mwifiex_init_module);
1500module_exit(mwifiex_cleanup_module);
1501
1502MODULE_AUTHOR("Marvell International Ltd.");
1503MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
1504MODULE_VERSION(VERSION);
1505MODULE_LICENSE("GPL v2");
This page took 0.458043 seconds and 5 git commands to generate.