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