mwifiex: use generic name 'device dump'
[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) ||
f57c1edc 279 !mwifiex_wmm_lists_empty(adapter))) {
5e6e3a92 280 adapter->pm_wakeup_fw_try = true;
4636187d 281 mod_timer(&adapter->wakeup_timer, jiffies + (HZ*3));
5e6e3a92
BZ
282 adapter->if_ops.wakeup(adapter);
283 continue;
284 }
4daffe35 285
5e6e3a92 286 if (IS_CARD_RX_RCVD(adapter)) {
6e251174 287 adapter->data_received = false;
5e6e3a92 288 adapter->pm_wakeup_fw_try = false;
6e9344fd 289 del_timer(&adapter->wakeup_timer);
5e6e3a92
BZ
290 if (adapter->ps_state == PS_STATE_SLEEP)
291 adapter->ps_state = PS_STATE_AWAKE;
292 } else {
293 /* We have tried to wakeup the card already */
294 if (adapter->pm_wakeup_fw_try)
295 break;
296 if (adapter->ps_state != PS_STATE_AWAKE ||
297 adapter->tx_lock_flag)
298 break;
299
5ec39efa 300 if ((!adapter->scan_chan_gap_enabled &&
5ec39efa 301 adapter->scan_processing) || adapter->data_sent ||
e35000ea
ZL
302 (mwifiex_wmm_lists_empty(adapter) &&
303 skb_queue_empty(&adapter->tx_data_q))) {
f57c1edc
YAP
304 if (adapter->cmd_sent || adapter->curr_cmd ||
305 (!is_command_pending(adapter)))
5e6e3a92
BZ
306 break;
307 }
308 }
309
20474129
AK
310 /* Check for event */
311 if (adapter->event_received) {
312 adapter->event_received = false;
313 mwifiex_process_event(adapter);
314 }
315
5e6e3a92
BZ
316 /* Check for Cmd Resp */
317 if (adapter->cmd_resp_received) {
318 adapter->cmd_resp_received = false;
319 mwifiex_process_cmdresp(adapter);
320
321 /* call mwifiex back when init_fw is done */
322 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
323 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
324 mwifiex_init_fw_complete(adapter);
325 }
326 }
327
5e6e3a92
BZ
328 /* Check if we need to confirm Sleep Request
329 received previously */
330 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
331 if (!adapter->cmd_sent && !adapter->curr_cmd)
332 mwifiex_check_ps_cond(adapter);
333 }
334
335 /* * The ps_state may have been changed during processing of
336 * Sleep Request event.
337 */
f57c1edc
YAP
338 if ((adapter->ps_state == PS_STATE_SLEEP) ||
339 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
340 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
04c7b363 341 adapter->tx_lock_flag){
5e6e3a92 342 continue;
04c7b363 343 }
5e6e3a92
BZ
344
345 if (!adapter->cmd_sent && !adapter->curr_cmd) {
346 if (mwifiex_exec_next_cmd(adapter) == -1) {
347 ret = -1;
348 break;
349 }
350 }
351
e35000ea
ZL
352 if ((adapter->scan_chan_gap_enabled ||
353 !adapter->scan_processing) &&
354 !adapter->data_sent &&
355 !skb_queue_empty(&adapter->tx_data_q)) {
356 mwifiex_process_tx_queue(adapter);
357 if (adapter->hs_activated) {
358 adapter->is_hs_configured = false;
359 mwifiex_hs_activated_event
360 (mwifiex_get_priv
361 (adapter, MWIFIEX_BSS_ROLE_ANY),
362 false);
363 }
364 }
365
5ec39efa 366 if ((adapter->scan_chan_gap_enabled ||
d8d91253 367 !adapter->scan_processing) &&
3249ba73 368 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter)) {
5e6e3a92
BZ
369 mwifiex_wmm_process_tx(adapter);
370 if (adapter->hs_activated) {
371 adapter->is_hs_configured = false;
372 mwifiex_hs_activated_event
373 (mwifiex_get_priv
374 (adapter, MWIFIEX_BSS_ROLE_ANY),
375 false);
376 }
377 }
378
379 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
f57c1edc 380 !adapter->curr_cmd && !is_command_pending(adapter) &&
e35000ea
ZL
381 (mwifiex_wmm_lists_empty(adapter) &&
382 skb_queue_empty(&adapter->tx_data_q))) {
5e6e3a92
BZ
383 if (!mwifiex_send_null_packet
384 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
385 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
386 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
387 adapter->delay_null_pkt = false;
388 adapter->ps_state = PS_STATE_SLEEP;
389 }
390 break;
391 }
392 } while (true);
393
453b0c3f 394 spin_lock_irqsave(&adapter->main_proc_lock, flags);
91457eaa
CL
395 if (adapter->more_task_flag) {
396 adapter->more_task_flag = false;
397 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
5e6e3a92 398 goto process_start;
91457eaa 399 }
5e6e3a92
BZ
400 adapter->mwifiex_processing = false;
401 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
402
403exit_main_proc:
404 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
405 mwifiex_shutdown_drv(adapter);
406 return ret;
407}
601216e1 408EXPORT_SYMBOL_GPL(mwifiex_main_process);
5e6e3a92 409
5e6e3a92
BZ
410/*
411 * This function frees the adapter structure.
412 *
413 * Additionally, this closes the netlink socket, frees the timers
414 * and private structures.
415 */
416static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
417{
418 if (!adapter) {
419 pr_err("%s: adapter is NULL\n", __func__);
420 return;
421 }
422
423 mwifiex_unregister(adapter);
424 pr_debug("info: %s: free adapter\n", __func__);
425}
426
6b41f941
AK
427/*
428 * This function cancels all works in the queue and destroys
429 * the main workqueue.
430 */
431static void mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
432{
433 flush_workqueue(adapter->workqueue);
434 destroy_workqueue(adapter->workqueue);
435 adapter->workqueue = NULL;
6e251174
AP
436
437 if (adapter->rx_workqueue) {
438 flush_workqueue(adapter->rx_workqueue);
439 destroy_workqueue(adapter->rx_workqueue);
440 adapter->rx_workqueue = NULL;
441 }
6b41f941
AK
442}
443
5e6e3a92 444/*
59a4cc25 445 * This function gets firmware and initializes it.
5e6e3a92
BZ
446 *
447 * The main initialization steps followed are -
448 * - Download the correct firmware to card
5e6e3a92
BZ
449 * - Issue the init commands to firmware
450 */
59a4cc25 451static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
5e6e3a92 452{
bec568ff 453 int ret;
59a4cc25
AK
454 char fmt[64];
455 struct mwifiex_private *priv;
456 struct mwifiex_adapter *adapter = context;
5e6e3a92 457 struct mwifiex_fw_image fw;
c3afd99f
AK
458 struct semaphore *sem = adapter->card_sem;
459 bool init_failed = false;
68b76e99 460 struct wireless_dev *wdev;
5e6e3a92 461
59a4cc25 462 if (!firmware) {
acebe8c1
ZL
463 mwifiex_dbg(adapter, ERROR,
464 "Failed to get firmware %s\n", adapter->fw_name);
6b41f941 465 goto err_dnld_fw;
5e6e3a92 466 }
59a4cc25
AK
467
468 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
469 adapter->firmware = firmware;
5e6e3a92
BZ
470 fw.fw_buf = (u8 *) adapter->firmware->data;
471 fw.fw_len = adapter->firmware->size;
472
4daffe35
AK
473 if (adapter->if_ops.dnld_fw)
474 ret = adapter->if_ops.dnld_fw(adapter, &fw);
475 else
476 ret = mwifiex_dnld_fw(adapter, &fw);
5e6e3a92 477 if (ret == -1)
6b41f941 478 goto err_dnld_fw;
5e6e3a92 479
acebe8c1 480 mwifiex_dbg(adapter, MSG, "WLAN FW is active\n");
5e6e3a92 481
388ec385
AK
482 if (cal_data_cfg) {
483 if ((request_firmware(&adapter->cal_data, cal_data_cfg,
484 adapter->dev)) < 0)
acebe8c1
ZL
485 mwifiex_dbg(adapter, ERROR,
486 "Cal data request_firmware() failed\n");
388ec385
AK
487 }
488
232fde06 489 /* enable host interrupt after fw dnld is successful */
6b41f941
AK
490 if (adapter->if_ops.enable_int) {
491 if (adapter->if_ops.enable_int(adapter))
492 goto err_dnld_fw;
493 }
232fde06 494
5e6e3a92
BZ
495 adapter->init_wait_q_woken = false;
496 ret = mwifiex_init_fw(adapter);
497 if (ret == -1) {
6b41f941 498 goto err_init_fw;
5e6e3a92
BZ
499 } else if (!ret) {
500 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
501 goto done;
502 }
503 /* Wait for mwifiex_init to complete */
504 wait_event_interruptible(adapter->init_wait_q,
505 adapter->init_wait_q_woken);
59a4cc25 506 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
6b41f941 507 goto err_init_fw;
59a4cc25 508
d6bffe8b
AP
509 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
510 if (mwifiex_register_cfg80211(adapter)) {
acebe8c1
ZL
511 mwifiex_dbg(adapter, ERROR,
512 "cannot register with cfg80211\n");
d1af2943 513 goto err_init_fw;
59a4cc25
AK
514 }
515
bf354433 516 if (mwifiex_init_channel_scan_gap(adapter)) {
acebe8c1
ZL
517 mwifiex_dbg(adapter, ERROR,
518 "could not init channel stats table\n");
bf354433
AP
519 goto err_init_fw;
520 }
521
0013c7ce
AP
522 if (driver_mode) {
523 driver_mode &= MWIFIEX_DRIVER_MODE_BITMASK;
524 driver_mode |= MWIFIEX_DRIVER_MODE_STA;
525 }
526
59a4cc25
AK
527 rtnl_lock();
528 /* Create station interface by default */
6bab2e19 529 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d", NET_NAME_ENUM,
68b76e99
AK
530 NL80211_IFTYPE_STATION, NULL, NULL);
531 if (IS_ERR(wdev)) {
acebe8c1
ZL
532 mwifiex_dbg(adapter, ERROR,
533 "cannot create default STA interface\n");
bec568ff 534 rtnl_unlock();
59a4cc25 535 goto err_add_intf;
5e6e3a92 536 }
0013c7ce
AP
537
538 if (driver_mode & MWIFIEX_DRIVER_MODE_UAP) {
6bab2e19 539 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "uap%d", NET_NAME_ENUM,
0013c7ce
AP
540 NL80211_IFTYPE_AP, NULL, NULL);
541 if (IS_ERR(wdev)) {
acebe8c1
ZL
542 mwifiex_dbg(adapter, ERROR,
543 "cannot create AP interface\n");
0013c7ce
AP
544 rtnl_unlock();
545 goto err_add_intf;
546 }
547 }
548
549 if (driver_mode & MWIFIEX_DRIVER_MODE_P2P) {
6bab2e19 550 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d", NET_NAME_ENUM,
0013c7ce
AP
551 NL80211_IFTYPE_P2P_CLIENT, NULL,
552 NULL);
553 if (IS_ERR(wdev)) {
acebe8c1
ZL
554 mwifiex_dbg(adapter, ERROR,
555 "cannot create p2p client interface\n");
0013c7ce
AP
556 rtnl_unlock();
557 goto err_add_intf;
558 }
559 }
59a4cc25
AK
560 rtnl_unlock();
561
562 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
acebe8c1 563 mwifiex_dbg(adapter, MSG, "driver_version = %s\n", fmt);
59a4cc25 564 goto done;
5e6e3a92 565
59a4cc25 566err_add_intf:
6b41f941
AK
567 wiphy_unregister(adapter->wiphy);
568 wiphy_free(adapter->wiphy);
59a4cc25 569err_init_fw:
232fde06
DD
570 if (adapter->if_ops.disable_int)
571 adapter->if_ops.disable_int(adapter);
6b41f941 572err_dnld_fw:
acebe8c1
ZL
573 mwifiex_dbg(adapter, ERROR,
574 "info: %s: unregister device\n", __func__);
6b41f941
AK
575 if (adapter->if_ops.unregister_dev)
576 adapter->if_ops.unregister_dev(adapter);
577
7197325b 578 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
6b41f941
AK
579 pr_debug("info: %s: shutdown mwifiex\n", __func__);
580 adapter->init_wait_q_woken = false;
581
582 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
583 wait_event_interruptible(adapter->init_wait_q,
584 adapter->init_wait_q_woken);
585 }
586 adapter->surprise_removed = true;
587 mwifiex_terminate_workqueue(adapter);
c3afd99f 588 init_failed = true;
5e6e3a92 589done:
388ec385
AK
590 if (adapter->cal_data) {
591 release_firmware(adapter->cal_data);
592 adapter->cal_data = NULL;
593 }
c3afd99f
AK
594 if (adapter->firmware) {
595 release_firmware(adapter->firmware);
596 adapter->firmware = NULL;
597 }
c3afd99f
AK
598 if (init_failed)
599 mwifiex_free_adapter(adapter);
600 up(sem);
59a4cc25
AK
601 return;
602}
603
604/*
605 * This function initializes the hardware and gets firmware.
606 */
607static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
608{
609 int ret;
610
59a4cc25
AK
611 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
612 adapter->dev, GFP_KERNEL, adapter,
613 mwifiex_fw_dpc);
614 if (ret < 0)
acebe8c1
ZL
615 mwifiex_dbg(adapter, ERROR,
616 "request_firmware_nowait error %d\n", ret);
5e6e3a92
BZ
617 return ret;
618}
619
5e6e3a92
BZ
620/*
621 * CFG802.11 network device handler for open.
622 *
623 * Starts the data queue.
624 */
625static int
626mwifiex_open(struct net_device *dev)
627{
ea2325b8
JB
628 netif_carrier_off(dev);
629
5e6e3a92
BZ
630 return 0;
631}
632
633/*
634 * CFG802.11 network device handler for close.
635 */
636static int
637mwifiex_close(struct net_device *dev)
638{
f162cac8
AK
639 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
640
641 if (priv->scan_request) {
acebe8c1
ZL
642 mwifiex_dbg(priv->adapter, INFO,
643 "aborting scan on ndo_stop\n");
f162cac8
AK
644 cfg80211_scan_done(priv->scan_request, 1);
645 priv->scan_request = NULL;
75ab753d 646 priv->scan_aborting = true;
f162cac8
AK
647 }
648
5e6e3a92
BZ
649 return 0;
650}
651
e39faa73
SP
652/*
653 * Add buffer into wmm tx queue and queue work to transmit it.
654 */
655int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
656{
47411a06
AP
657 struct netdev_queue *txq;
658 int index = mwifiex_1d_to_wmm_queue[skb->priority];
659
660 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
661 txq = netdev_get_tx_queue(priv->netdev, index);
662 if (!netif_tx_queue_stopped(txq)) {
663 netif_tx_stop_queue(txq);
acebe8c1
ZL
664 mwifiex_dbg(priv->adapter, DATA,
665 "stop queue: %d\n", index);
47411a06
AP
666 }
667 }
668
e39faa73 669 atomic_inc(&priv->adapter->tx_pending);
47411a06 670 mwifiex_wmm_add_buf_txqueue(priv, skb);
e39faa73 671
b2713f67 672 mwifiex_queue_main_work(priv->adapter);
e39faa73
SP
673
674 return 0;
675}
676
18ca4382 677struct sk_buff *
808bbebc 678mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv,
18ca4382 679 struct sk_buff *skb, u8 flag, u64 *cookie)
808bbebc
AK
680{
681 struct sk_buff *orig_skb = skb;
682 struct mwifiex_txinfo *tx_info, *orig_tx_info;
683
684 skb = skb_clone(skb, GFP_ATOMIC);
685 if (skb) {
686 unsigned long flags;
687 int id;
688
689 spin_lock_irqsave(&priv->ack_status_lock, flags);
690 id = idr_alloc(&priv->ack_status_frames, orig_skb,
691 1, 0xff, GFP_ATOMIC);
692 spin_unlock_irqrestore(&priv->ack_status_lock, flags);
693
694 if (id >= 0) {
695 tx_info = MWIFIEX_SKB_TXCB(skb);
696 tx_info->ack_frame_id = id;
697 tx_info->flags |= flag;
698 orig_tx_info = MWIFIEX_SKB_TXCB(orig_skb);
699 orig_tx_info->ack_frame_id = id;
700 orig_tx_info->flags |= flag;
18ca4382
AK
701
702 if (flag == MWIFIEX_BUF_FLAG_ACTION_TX_STATUS && cookie)
703 orig_tx_info->cookie = *cookie;
704
808bbebc
AK
705 } else if (skb_shared(skb)) {
706 kfree_skb(orig_skb);
707 } else {
708 kfree_skb(skb);
709 skb = orig_skb;
710 }
711 } else {
712 /* couldn't clone -- lose tx status ... */
713 skb = orig_skb;
714 }
715
716 return skb;
717}
718
5e6e3a92
BZ
719/*
720 * CFG802.11 network device handler for data transmission.
721 */
722static int
723mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
724{
725 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
270e58e8 726 struct sk_buff *new_skb;
5e6e3a92 727 struct mwifiex_txinfo *tx_info;
808bbebc 728 bool multicast;
5e6e3a92 729
acebe8c1
ZL
730 mwifiex_dbg(priv->adapter, DATA,
731 "data: %lu BSS(%d-%d): Data <= kernel\n",
732 jiffies, priv->bss_type, priv->bss_num);
5e6e3a92
BZ
733
734 if (priv->adapter->surprise_removed) {
b53575ec 735 kfree_skb(skb);
5e6e3a92
BZ
736 priv->stats.tx_dropped++;
737 return 0;
738 }
739 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
acebe8c1
ZL
740 mwifiex_dbg(priv->adapter, ERROR,
741 "Tx: bad skb len %d\n", skb->len);
b53575ec 742 kfree_skb(skb);
5e6e3a92
BZ
743 priv->stats.tx_dropped++;
744 return 0;
745 }
746 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
acebe8c1
ZL
747 mwifiex_dbg(priv->adapter, DATA,
748 "data: Tx: insufficient skb headroom %d\n",
749 skb_headroom(skb));
5e6e3a92
BZ
750 /* Insufficient skb headroom - allocate a new skb */
751 new_skb =
752 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
753 if (unlikely(!new_skb)) {
acebe8c1
ZL
754 mwifiex_dbg(priv->adapter, ERROR,
755 "Tx: cannot alloca new_skb\n");
b53575ec 756 kfree_skb(skb);
5e6e3a92
BZ
757 priv->stats.tx_dropped++;
758 return 0;
759 }
760 kfree_skb(skb);
761 skb = new_skb;
acebe8c1
ZL
762 mwifiex_dbg(priv->adapter, INFO,
763 "info: new skb headroomd %d\n",
764 skb_headroom(skb));
5e6e3a92
BZ
765 }
766
767 tx_info = MWIFIEX_SKB_TXCB(skb);
d76744a9 768 memset(tx_info, 0, sizeof(*tx_info));
9da9a3b2
YAP
769 tx_info->bss_num = priv->bss_num;
770 tx_info->bss_type = priv->bss_type;
a1ed4849 771 tx_info->pkt_len = skb->len;
47411a06 772
808bbebc
AK
773 multicast = is_multicast_ether_addr(skb->data);
774
775 if (unlikely(!multicast && skb->sk &&
776 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS &&
777 priv->adapter->fw_api_ver == MWIFIEX_FW_V15))
778 skb = mwifiex_clone_skb_for_tx_status(priv,
779 skb,
18ca4382 780 MWIFIEX_BUF_FLAG_EAPOL_TX_STATUS, NULL);
808bbebc 781
47411a06
AP
782 /* Record the current time the packet was queued; used to
783 * determine the amount of time the packet was queued in
784 * the driver before it was sent to the firmware.
785 * The delay is then sent along with the packet to the
786 * firmware for aggregate delay calculation for stats and
787 * MSDU lifetime expiry.
788 */
c64800e7 789 __net_timestamp(skb);
5e6e3a92 790
9927baa3
AP
791 if (ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
792 priv->bss_type == MWIFIEX_BSS_TYPE_STA &&
793 !ether_addr_equal_unaligned(priv->cfg_bssid, skb->data)) {
794 if (priv->adapter->auto_tdls && priv->check_tdls_tx)
795 mwifiex_tdls_check_tx(priv, skb);
796 }
797
e39faa73 798 mwifiex_queue_tx_pkt(priv, skb);
5e6e3a92
BZ
799
800 return 0;
801}
802
803/*
804 * CFG802.11 network device handler for setting MAC address.
805 */
806static int
807mwifiex_set_mac_address(struct net_device *dev, void *addr)
808{
809 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
a5ffddb7 810 struct sockaddr *hw_addr = addr;
270e58e8 811 int ret;
5e6e3a92
BZ
812
813 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
814
600f5d90 815 /* Send request to firmware */
fa0ecbb9
BZ
816 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
817 HostCmd_ACT_GEN_SET, 0, NULL, true);
600f5d90
AK
818
819 if (!ret)
820 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
821 else
acebe8c1
ZL
822 mwifiex_dbg(priv->adapter, ERROR,
823 "set mac address failed: ret=%d\n", ret);
600f5d90 824
5e6e3a92
BZ
825 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
826
600f5d90 827 return ret;
5e6e3a92
BZ
828}
829
830/*
831 * CFG802.11 network device handler for setting multicast list.
832 */
833static void mwifiex_set_multicast_list(struct net_device *dev)
834{
835 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
600f5d90
AK
836 struct mwifiex_multicast_list mcast_list;
837
838 if (dev->flags & IFF_PROMISC) {
839 mcast_list.mode = MWIFIEX_PROMISC_MODE;
840 } else if (dev->flags & IFF_ALLMULTI ||
841 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
842 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
843 } else {
844 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
6390d885
DD
845 mcast_list.num_multicast_addr =
846 mwifiex_copy_mcast_addr(&mcast_list, dev);
600f5d90
AK
847 }
848 mwifiex_request_set_multicast_list(priv, &mcast_list);
5e6e3a92
BZ
849}
850
851/*
852 * CFG802.11 network device handler for transmission timeout.
853 */
854static void
855mwifiex_tx_timeout(struct net_device *dev)
856{
857 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
858
5e6e3a92 859 priv->num_tx_timeout++;
8908c7d5 860 priv->tx_timeout_cnt++;
acebe8c1
ZL
861 mwifiex_dbg(priv->adapter, ERROR,
862 "%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
863 jiffies, priv->tx_timeout_cnt, priv->bss_type,
864 priv->bss_num);
8908c7d5
AN
865 mwifiex_set_trans_start(dev);
866
867 if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
868 priv->adapter->if_ops.card_reset) {
acebe8c1
ZL
869 mwifiex_dbg(priv->adapter, ERROR,
870 "tx_timeout_cnt exceeds threshold.\t"
871 "Triggering card reset!\n");
8908c7d5
AN
872 priv->adapter->if_ops.card_reset(priv->adapter);
873 }
5e6e3a92
BZ
874}
875
fc697159 876void mwifiex_drv_info_dump(struct mwifiex_adapter *adapter)
11cd07a9
XH
877{
878 void *p;
879 char drv_version[64];
880 struct usb_card_rec *cardp;
881 struct sdio_mmc_card *sdio_card;
882 struct mwifiex_private *priv;
883 int i, idx;
884 struct netdev_queue *txq;
885 struct mwifiex_debug_info *debug_info;
886
887 if (adapter->drv_info_dump) {
888 vfree(adapter->drv_info_dump);
0769b277 889 adapter->drv_info_dump = NULL;
11cd07a9
XH
890 adapter->drv_info_size = 0;
891 }
892
9cc0dbf0 893 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump start===\n");
11cd07a9
XH
894
895 adapter->drv_info_dump = vzalloc(MWIFIEX_DRV_INFO_SIZE_MAX);
896
897 if (!adapter->drv_info_dump)
898 return;
899
900 p = (char *)(adapter->drv_info_dump);
901 p += sprintf(p, "driver_name = " "\"mwifiex\"\n");
902
903 mwifiex_drv_get_driver_version(adapter, drv_version,
904 sizeof(drv_version) - 1);
905 p += sprintf(p, "driver_version = %s\n", drv_version);
906
907 if (adapter->iface_type == MWIFIEX_USB) {
908 cardp = (struct usb_card_rec *)adapter->card;
909 p += sprintf(p, "tx_cmd_urb_pending = %d\n",
910 atomic_read(&cardp->tx_cmd_urb_pending));
911 p += sprintf(p, "tx_data_urb_pending = %d\n",
912 atomic_read(&cardp->tx_data_urb_pending));
913 p += sprintf(p, "rx_cmd_urb_pending = %d\n",
914 atomic_read(&cardp->rx_cmd_urb_pending));
915 p += sprintf(p, "rx_data_urb_pending = %d\n",
916 atomic_read(&cardp->rx_data_urb_pending));
917 }
918
919 p += sprintf(p, "tx_pending = %d\n",
920 atomic_read(&adapter->tx_pending));
921 p += sprintf(p, "rx_pending = %d\n",
922 atomic_read(&adapter->rx_pending));
923
924 if (adapter->iface_type == MWIFIEX_SDIO) {
925 sdio_card = (struct sdio_mmc_card *)adapter->card;
926 p += sprintf(p, "\nmp_rd_bitmap=0x%x curr_rd_port=0x%x\n",
927 sdio_card->mp_rd_bitmap, sdio_card->curr_rd_port);
928 p += sprintf(p, "mp_wr_bitmap=0x%x curr_wr_port=0x%x\n",
929 sdio_card->mp_wr_bitmap, sdio_card->curr_wr_port);
930 }
931
932 for (i = 0; i < adapter->priv_num; i++) {
933 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
934 continue;
935 priv = adapter->priv[i];
936 p += sprintf(p, "\n[interface : \"%s\"]\n",
937 priv->netdev->name);
938 p += sprintf(p, "wmm_tx_pending[0] = %d\n",
939 atomic_read(&priv->wmm_tx_pending[0]));
940 p += sprintf(p, "wmm_tx_pending[1] = %d\n",
941 atomic_read(&priv->wmm_tx_pending[1]));
942 p += sprintf(p, "wmm_tx_pending[2] = %d\n",
943 atomic_read(&priv->wmm_tx_pending[2]));
944 p += sprintf(p, "wmm_tx_pending[3] = %d\n",
945 atomic_read(&priv->wmm_tx_pending[3]));
946 p += sprintf(p, "media_state=\"%s\"\n", !priv->media_connected ?
947 "Disconnected" : "Connected");
948 p += sprintf(p, "carrier %s\n", (netif_carrier_ok(priv->netdev)
949 ? "on" : "off"));
950 for (idx = 0; idx < priv->netdev->num_tx_queues; idx++) {
951 txq = netdev_get_tx_queue(priv->netdev, idx);
952 p += sprintf(p, "tx queue %d:%s ", idx,
953 netif_tx_queue_stopped(txq) ?
954 "stopped" : "started");
955 }
956 p += sprintf(p, "\n%s: num_tx_timeout = %d\n",
957 priv->netdev->name, priv->num_tx_timeout);
958 }
959
809c6ea8 960 if (adapter->iface_type == MWIFIEX_SDIO) {
9cc0dbf0 961 p += sprintf(p, "\n=== SDIO register dump===\n");
809c6ea8
XH
962 if (adapter->if_ops.reg_dump)
963 p += adapter->if_ops.reg_dump(adapter, p);
964 }
965
9cc0dbf0 966 p += sprintf(p, "\n=== more debug information\n");
11cd07a9
XH
967 debug_info = kzalloc(sizeof(*debug_info), GFP_KERNEL);
968 if (debug_info) {
969 for (i = 0; i < adapter->priv_num; i++) {
970 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
971 continue;
972 priv = adapter->priv[i];
973 mwifiex_get_debug_info(priv, debug_info);
974 p += mwifiex_debug_info_to_buffer(priv, p, debug_info);
975 break;
976 }
977 kfree(debug_info);
978 }
979
980 adapter->drv_info_size = p - adapter->drv_info_dump;
9cc0dbf0 981 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump end===\n");
11cd07a9 982}
fc697159 983EXPORT_SYMBOL_GPL(mwifiex_drv_info_dump);
11cd07a9 984
5e6e3a92
BZ
985/*
986 * CFG802.11 network device handler for statistics retrieval.
987 */
988static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
989{
990 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
991
992 return &priv->stats;
993}
994
47411a06 995static u16
f663dd9a 996mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb,
99932d4f 997 void *accel_priv, select_queue_fallback_t fallback)
47411a06 998{
fa9ffc74 999 skb->priority = cfg80211_classify8021d(skb, NULL);
47411a06
AP
1000 return mwifiex_1d_to_wmm_queue[skb->priority];
1001}
1002
5e6e3a92
BZ
1003/* Network device handlers */
1004static const struct net_device_ops mwifiex_netdev_ops = {
1005 .ndo_open = mwifiex_open,
1006 .ndo_stop = mwifiex_close,
1007 .ndo_start_xmit = mwifiex_hard_start_xmit,
1008 .ndo_set_mac_address = mwifiex_set_mac_address,
1009 .ndo_tx_timeout = mwifiex_tx_timeout,
1010 .ndo_get_stats = mwifiex_get_stats,
afc4b13d 1011 .ndo_set_rx_mode = mwifiex_set_multicast_list,
47411a06 1012 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
5e6e3a92
BZ
1013};
1014
1015/*
1016 * This function initializes the private structure parameters.
1017 *
1018 * The following wait queues are initialized -
1019 * - IOCTL wait queue
1020 * - Command wait queue
1021 * - Statistics wait queue
1022 *
1023 * ...and the following default parameters are set -
1024 * - Current key index : Set to 0
1025 * - Rate index : Set to auto
1026 * - Media connected : Set to disconnected
1027 * - Adhoc link sensed : Set to false
1028 * - Nick name : Set to null
1029 * - Number of Tx timeout : Set to 0
1030 * - Device address : Set to current address
cbf6e055 1031 * - Rx histogram statistc : Set to 0
5e6e3a92
BZ
1032 *
1033 * In addition, the CFG80211 work queue is also created.
1034 */
93a1df48 1035void mwifiex_init_priv_params(struct mwifiex_private *priv,
047eaaf6 1036 struct net_device *dev)
5e6e3a92
BZ
1037{
1038 dev->netdev_ops = &mwifiex_netdev_ops;
f16fdc9d 1039 dev->destructor = free_netdev;
5e6e3a92 1040 /* Initialize private structure */
5e6e3a92
BZ
1041 priv->current_key_index = 0;
1042 priv->media_connected = false;
ede98bfa
AP
1043 memset(priv->mgmt_ie, 0,
1044 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
f31acabe
AP
1045 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
1046 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
1047 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
2ade5667 1048 priv->gen_idx = MWIFIEX_AUTO_IDX_MASK;
5e6e3a92 1049 priv->num_tx_timeout = 0;
8d05eb22 1050 ether_addr_copy(priv->curr_addr, priv->adapter->perm_addr);
5e6e3a92 1051 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
cbf6e055
XH
1052
1053 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA ||
1054 GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
1055 priv->hist_data = kmalloc(sizeof(*priv->hist_data), GFP_KERNEL);
1056 if (priv->hist_data)
1057 mwifiex_hist_data_reset(priv);
1058 }
5e6e3a92
BZ
1059}
1060
5e6e3a92
BZ
1061/*
1062 * This function check if command is pending.
1063 */
1064int is_command_pending(struct mwifiex_adapter *adapter)
1065{
1066 unsigned long flags;
1067 int is_cmd_pend_q_empty;
1068
1069 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
1070 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
1071 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
1072
1073 return !is_cmd_pend_q_empty;
1074}
1075
6e251174
AP
1076/*
1077 * This is the RX work queue function.
1078 *
1079 * It handles the RX operations.
1080 */
1081static void mwifiex_rx_work_queue(struct work_struct *work)
1082{
1083 struct mwifiex_adapter *adapter =
1084 container_of(work, struct mwifiex_adapter, rx_work);
1085
1086 if (adapter->surprise_removed)
1087 return;
1088 mwifiex_process_rx(adapter);
1089}
1090
5e6e3a92
BZ
1091/*
1092 * This is the main work queue function.
1093 *
1094 * It handles the main process, which in turn handles the complete
1095 * driver operations.
1096 */
1097static void mwifiex_main_work_queue(struct work_struct *work)
1098{
1099 struct mwifiex_adapter *adapter =
1100 container_of(work, struct mwifiex_adapter, main_work);
1101
1102 if (adapter->surprise_removed)
1103 return;
1104 mwifiex_main_process(adapter);
1105}
1106
5e6e3a92
BZ
1107/*
1108 * This function adds the card.
1109 *
1110 * This function follows the following major steps to set up the device -
1111 * - Initialize software. This includes probing the card, registering
1112 * the interface operations table, and allocating/initializing the
1113 * adapter structure
1114 * - Set up the netlink socket
1115 * - Create and start the main work queue
1116 * - Register the device
1117 * - Initialize firmware and hardware
1118 * - Add logical interfaces
1119 */
1120int
1121mwifiex_add_card(void *card, struct semaphore *sem,
d930faee 1122 struct mwifiex_if_ops *if_ops, u8 iface_type)
5e6e3a92 1123{
2be7859f 1124 struct mwifiex_adapter *adapter;
5e6e3a92
BZ
1125
1126 if (down_interruptible(sem))
1127 goto exit_sem_err;
1128
93a1df48 1129 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
5e6e3a92
BZ
1130 pr_err("%s: software init failed\n", __func__);
1131 goto err_init_sw;
1132 }
1133
d930faee 1134 adapter->iface_type = iface_type;
6b41f941 1135 adapter->card_sem = sem;
d930faee 1136
5e6e3a92 1137 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
5e6e3a92
BZ
1138 adapter->surprise_removed = false;
1139 init_waitqueue_head(&adapter->init_wait_q);
1140 adapter->is_suspended = false;
1141 adapter->hs_activated = false;
1142 init_waitqueue_head(&adapter->hs_activate_wait_q);
600f5d90 1143 init_waitqueue_head(&adapter->cmd_wait_q.wait);
600f5d90 1144 adapter->cmd_wait_q.status = 0;
efaaa8b8 1145 adapter->scan_wait_q_woken = false;
5e6e3a92 1146
ec4a16b4 1147 if ((num_possible_cpus() > 1) || adapter->iface_type == MWIFIEX_USB) {
6e251174
AP
1148 adapter->rx_work_enabled = true;
1149 pr_notice("rx work enabled, cpus %d\n", num_possible_cpus());
1150 }
1151
448a71cc
AK
1152 adapter->workqueue =
1153 alloc_workqueue("MWIFIEX_WORK_QUEUE",
1154 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
5e6e3a92
BZ
1155 if (!adapter->workqueue)
1156 goto err_kmalloc;
1157
1158 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
6e251174
AP
1159
1160 if (adapter->rx_work_enabled) {
1161 adapter->rx_workqueue = alloc_workqueue("MWIFIEX_RX_WORK_QUEUE",
1162 WQ_HIGHPRI |
1163 WQ_MEM_RECLAIM |
1164 WQ_UNBOUND, 1);
1165 if (!adapter->rx_workqueue)
1166 goto err_kmalloc;
1167
1168 INIT_WORK(&adapter->rx_work, mwifiex_rx_work_queue);
1169 }
1170
5e6e3a92 1171 /* Register the device. Fill up the private data structure with relevant
232fde06 1172 information from the card. */
5e6e3a92
BZ
1173 if (adapter->if_ops.register_dev(adapter)) {
1174 pr_err("%s: failed to register mwifiex device\n", __func__);
1175 goto err_registerdev;
1176 }
1177
5e6e3a92
BZ
1178 if (mwifiex_init_hw_fw(adapter)) {
1179 pr_err("%s: firmware init failed\n", __func__);
1180 goto err_init_fw;
1181 }
2be7859f 1182
5e6e3a92
BZ
1183 return 0;
1184
5e6e3a92 1185err_init_fw:
5e6e3a92 1186 pr_debug("info: %s: unregister device\n", __func__);
4daffe35
AK
1187 if (adapter->if_ops.unregister_dev)
1188 adapter->if_ops.unregister_dev(adapter);
7197325b 1189 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
5e6e3a92
BZ
1190 pr_debug("info: %s: shutdown mwifiex\n", __func__);
1191 adapter->init_wait_q_woken = false;
636c4598
YAP
1192
1193 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
1194 wait_event_interruptible(adapter->init_wait_q,
1195 adapter->init_wait_q_woken);
1196 }
6b41f941
AK
1197err_registerdev:
1198 adapter->surprise_removed = true;
1199 mwifiex_terminate_workqueue(adapter);
1200err_kmalloc:
5e6e3a92
BZ
1201 mwifiex_free_adapter(adapter);
1202
1203err_init_sw:
1204 up(sem);
1205
1206exit_sem_err:
1207 return -1;
1208}
1209EXPORT_SYMBOL_GPL(mwifiex_add_card);
1210
1211/*
1212 * This function removes the card.
1213 *
1214 * This function follows the following major steps to remove the device -
1215 * - Stop data traffic
1216 * - Shutdown firmware
1217 * - Remove the logical interfaces
1218 * - Terminate the work queue
1219 * - Unregister the device
1220 * - Free the adapter structure
1221 */
1222int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
1223{
1224 struct mwifiex_private *priv = NULL;
5e6e3a92
BZ
1225 int i;
1226
1227 if (down_interruptible(sem))
1228 goto exit_sem_err;
1229
1230 if (!adapter)
1231 goto exit_remove;
1232
232fde06
DD
1233 /* We can no longer handle interrupts once we start doing the teardown
1234 * below. */
1235 if (adapter->if_ops.disable_int)
1236 adapter->if_ops.disable_int(adapter);
1237
5e6e3a92
BZ
1238 adapter->surprise_removed = true;
1239
9d2e85e0
MY
1240 mwifiex_terminate_workqueue(adapter);
1241
5e6e3a92
BZ
1242 /* Stop data */
1243 for (i = 0; i < adapter->priv_num; i++) {
1244 priv = adapter->priv[i];
93a1df48 1245 if (priv && priv->netdev) {
47411a06 1246 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
5e6e3a92
BZ
1247 if (netif_carrier_ok(priv->netdev))
1248 netif_carrier_off(priv->netdev);
1249 }
1250 }
1251
acebe8c1
ZL
1252 mwifiex_dbg(adapter, CMD,
1253 "cmd: calling mwifiex_shutdown_drv...\n");
5e6e3a92 1254 adapter->init_wait_q_woken = false;
636c4598
YAP
1255
1256 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
1257 wait_event_interruptible(adapter->init_wait_q,
1258 adapter->init_wait_q_woken);
acebe8c1
ZL
1259 mwifiex_dbg(adapter, CMD,
1260 "cmd: mwifiex_shutdown_drv done\n");
5e6e3a92
BZ
1261 if (atomic_read(&adapter->rx_pending) ||
1262 atomic_read(&adapter->tx_pending) ||
600f5d90 1263 atomic_read(&adapter->cmd_pending)) {
acebe8c1
ZL
1264 mwifiex_dbg(adapter, ERROR,
1265 "rx_pending=%d, tx_pending=%d,\t"
1266 "cmd_pending=%d\n",
1267 atomic_read(&adapter->rx_pending),
1268 atomic_read(&adapter->tx_pending),
1269 atomic_read(&adapter->cmd_pending));
5e6e3a92
BZ
1270 }
1271
93a1df48
YAP
1272 for (i = 0; i < adapter->priv_num; i++) {
1273 priv = adapter->priv[i];
1274
1275 if (!priv)
1276 continue;
1277
1278 rtnl_lock();
4facc34a
AP
1279 if (priv->netdev &&
1280 priv->wdev.iftype != NL80211_IFTYPE_UNSPECIFIED)
1281 mwifiex_del_virtual_intf(adapter->wiphy, &priv->wdev);
93a1df48
YAP
1282 rtnl_unlock();
1283 }
1284
c2868ade
AK
1285 wiphy_unregister(adapter->wiphy);
1286 wiphy_free(adapter->wiphy);
64b05e2f 1287
5e6e3a92 1288 /* Unregister device */
acebe8c1
ZL
1289 mwifiex_dbg(adapter, INFO,
1290 "info: unregister device\n");
4daffe35
AK
1291 if (adapter->if_ops.unregister_dev)
1292 adapter->if_ops.unregister_dev(adapter);
5e6e3a92 1293 /* Free adapter structure */
acebe8c1
ZL
1294 mwifiex_dbg(adapter, INFO,
1295 "info: free adapter\n");
5e6e3a92
BZ
1296 mwifiex_free_adapter(adapter);
1297
1298exit_remove:
1299 up(sem);
1300exit_sem_err:
1301 return 0;
1302}
1303EXPORT_SYMBOL_GPL(mwifiex_remove_card);
1304
1305/*
1306 * This function initializes the module.
1307 *
1308 * The debug FS is also initialized if configured.
1309 */
1310static int
1311mwifiex_init_module(void)
1312{
1313#ifdef CONFIG_DEBUG_FS
1314 mwifiex_debugfs_init();
1315#endif
1316 return 0;
1317}
1318
1319/*
1320 * This function cleans up the module.
1321 *
1322 * The debug FS is removed if available.
1323 */
1324static void
1325mwifiex_cleanup_module(void)
1326{
1327#ifdef CONFIG_DEBUG_FS
1328 mwifiex_debugfs_remove();
1329#endif
1330}
1331
1332module_init(mwifiex_init_module);
1333module_exit(mwifiex_cleanup_module);
1334
1335MODULE_AUTHOR("Marvell International Ltd.");
1336MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
1337MODULE_VERSION(VERSION);
1338MODULE_LICENSE("GPL v2");
This page took 0.408369 seconds and 5 git commands to generate.