brcmfmac: use struct brcmf_if parameter in firmware event callbacks
[linux-2.6-block.git] / drivers / net / wireless / mwifiex / main.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: major functions
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "main.h"
21#include "wmm.h"
22#include "cfg80211.h"
23#include "11n.h"
24
25#define VERSION "1.0"
26
27const char driver_version[] = "mwifiex " VERSION " (%s) ";
28
5e6e3a92
BZ
29/*
30 * This function registers the device and performs all the necessary
31 * initializations.
32 *
33 * The following initialization operations are performed -
34 * - Allocate adapter structure
35 * - Save interface specific operations table in adapter
36 * - Call interface specific initialization routine
37 * - Allocate private structures
38 * - Set default adapter structure parameters
39 * - Initialize locks
40 *
41 * In case of any errors during inittialization, this function also ensures
42 * proper cleanup before exiting.
43 */
44static int mwifiex_register(void *card, struct mwifiex_if_ops *if_ops,
287546df 45 void **padapter)
5e6e3a92 46{
2be7859f
AK
47 struct mwifiex_adapter *adapter;
48 int i;
5e6e3a92
BZ
49
50 adapter = kzalloc(sizeof(struct mwifiex_adapter), GFP_KERNEL);
5e6e3a92 51 if (!adapter)
b53575ec 52 return -ENOMEM;
5e6e3a92 53
287546df 54 *padapter = adapter;
5e6e3a92
BZ
55 adapter->card = card;
56
57 /* Save interface specific operations in adapter */
58 memmove(&adapter->if_ops, if_ops, sizeof(struct mwifiex_if_ops));
59
60 /* card specific initialization has been deferred until now .. */
4daffe35
AK
61 if (adapter->if_ops.init_if)
62 if (adapter->if_ops.init_if(adapter))
63 goto error;
5e6e3a92
BZ
64
65 adapter->priv_num = 0;
5e6e3a92 66
64b05e2f
AP
67 for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
68 /* Allocate memory for private structure */
69 adapter->priv[i] =
70 kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
71 if (!adapter->priv[i])
72 goto error;
93a1df48 73
64b05e2f 74 adapter->priv[i]->adapter = adapter;
64b05e2f
AP
75 adapter->priv_num++;
76 }
44b815c6 77 mwifiex_init_lock_list(adapter);
5e6e3a92
BZ
78
79 init_timer(&adapter->cmd_timer);
80 adapter->cmd_timer.function = mwifiex_cmd_timeout_func;
81 adapter->cmd_timer.data = (unsigned long) adapter;
82
5e6e3a92
BZ
83 return 0;
84
85error:
86 dev_dbg(adapter->dev, "info: leave mwifiex_register with error\n");
87
93a1df48 88 for (i = 0; i < adapter->priv_num; i++)
5e6e3a92 89 kfree(adapter->priv[i]);
93a1df48 90
5e6e3a92
BZ
91 kfree(adapter);
92
93 return -1;
94}
95
96/*
97 * This function unregisters the device and performs all the necessary
98 * cleanups.
99 *
100 * The following cleanup operations are performed -
101 * - Free the timers
102 * - Free beacon buffers
103 * - Free private structures
104 * - Free adapter structure
105 */
106static int mwifiex_unregister(struct mwifiex_adapter *adapter)
107{
270e58e8 108 s32 i;
5e6e3a92
BZ
109
110 del_timer(&adapter->cmd_timer);
111
112 /* Free private structures */
113 for (i = 0; i < adapter->priv_num; i++) {
114 if (adapter->priv[i]) {
115 mwifiex_free_curr_bcn(adapter->priv[i]);
116 kfree(adapter->priv[i]);
117 }
118 }
119
120 kfree(adapter);
121 return 0;
122}
123
124/*
125 * The main process.
126 *
127 * This function is the main procedure of the driver and handles various driver
128 * operations. It runs in a loop and provides the core functionalities.
129 *
130 * The main responsibilities of this function are -
131 * - Ensure concurrency control
132 * - Handle pending interrupts and call interrupt handlers
133 * - Wake up the card if required
134 * - Handle command responses and call response handlers
135 * - Handle events and call event handlers
136 * - Execute pending commands
137 * - Transmit pending data packets
138 */
139int mwifiex_main_process(struct mwifiex_adapter *adapter)
140{
141 int ret = 0;
142 unsigned long flags;
4daffe35 143 struct sk_buff *skb;
5e6e3a92
BZ
144
145 spin_lock_irqsave(&adapter->main_proc_lock, flags);
146
147 /* Check if already processing */
148 if (adapter->mwifiex_processing) {
149 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
150 goto exit_main_proc;
151 } else {
152 adapter->mwifiex_processing = true;
153 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
154 }
155process_start:
156 do {
157 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
158 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
159 break;
160
161 /* Handle pending interrupt if any */
162 if (adapter->int_status) {
163 if (adapter->hs_activated)
164 mwifiex_process_hs_config(adapter);
4daffe35
AK
165 if (adapter->if_ops.process_int_status)
166 adapter->if_ops.process_int_status(adapter);
5e6e3a92
BZ
167 }
168
169 /* Need to wake up the card ? */
170 if ((adapter->ps_state == PS_STATE_SLEEP) &&
171 (adapter->pm_wakeup_card_req &&
172 !adapter->pm_wakeup_fw_try) &&
f57c1edc
YAP
173 (is_command_pending(adapter) ||
174 !mwifiex_wmm_lists_empty(adapter))) {
5e6e3a92
BZ
175 adapter->pm_wakeup_fw_try = true;
176 adapter->if_ops.wakeup(adapter);
177 continue;
178 }
4daffe35 179
5e6e3a92
BZ
180 if (IS_CARD_RX_RCVD(adapter)) {
181 adapter->pm_wakeup_fw_try = false;
182 if (adapter->ps_state == PS_STATE_SLEEP)
183 adapter->ps_state = PS_STATE_AWAKE;
184 } else {
185 /* We have tried to wakeup the card already */
186 if (adapter->pm_wakeup_fw_try)
187 break;
188 if (adapter->ps_state != PS_STATE_AWAKE ||
189 adapter->tx_lock_flag)
190 break;
191
f931c770
AK
192 if ((adapter->scan_processing &&
193 !adapter->scan_delay_cnt) || adapter->data_sent ||
f57c1edc
YAP
194 mwifiex_wmm_lists_empty(adapter)) {
195 if (adapter->cmd_sent || adapter->curr_cmd ||
196 (!is_command_pending(adapter)))
5e6e3a92
BZ
197 break;
198 }
199 }
200
4daffe35
AK
201 /* Check Rx data for USB */
202 if (adapter->iface_type == MWIFIEX_USB)
203 while ((skb = skb_dequeue(&adapter->usb_rx_data_q)))
204 mwifiex_handle_rx_packet(adapter, skb);
205
5e6e3a92
BZ
206 /* Check for Cmd Resp */
207 if (adapter->cmd_resp_received) {
208 adapter->cmd_resp_received = false;
209 mwifiex_process_cmdresp(adapter);
210
211 /* call mwifiex back when init_fw is done */
212 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
213 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
214 mwifiex_init_fw_complete(adapter);
215 }
216 }
217
218 /* Check for event */
219 if (adapter->event_received) {
220 adapter->event_received = false;
221 mwifiex_process_event(adapter);
222 }
223
224 /* Check if we need to confirm Sleep Request
225 received previously */
226 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
227 if (!adapter->cmd_sent && !adapter->curr_cmd)
228 mwifiex_check_ps_cond(adapter);
229 }
230
231 /* * The ps_state may have been changed during processing of
232 * Sleep Request event.
233 */
f57c1edc
YAP
234 if ((adapter->ps_state == PS_STATE_SLEEP) ||
235 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
236 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
237 adapter->tx_lock_flag)
5e6e3a92
BZ
238 continue;
239
240 if (!adapter->cmd_sent && !adapter->curr_cmd) {
241 if (mwifiex_exec_next_cmd(adapter) == -1) {
242 ret = -1;
243 break;
244 }
245 }
246
3249ba73
AK
247 if ((!adapter->scan_processing || adapter->scan_delay_cnt) &&
248 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter)) {
5e6e3a92
BZ
249 mwifiex_wmm_process_tx(adapter);
250 if (adapter->hs_activated) {
251 adapter->is_hs_configured = false;
252 mwifiex_hs_activated_event
253 (mwifiex_get_priv
254 (adapter, MWIFIEX_BSS_ROLE_ANY),
255 false);
256 }
257 }
258
259 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
f57c1edc
YAP
260 !adapter->curr_cmd && !is_command_pending(adapter) &&
261 mwifiex_wmm_lists_empty(adapter)) {
5e6e3a92
BZ
262 if (!mwifiex_send_null_packet
263 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
264 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
265 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
266 adapter->delay_null_pkt = false;
267 adapter->ps_state = PS_STATE_SLEEP;
268 }
269 break;
270 }
271 } while (true);
272
273 if ((adapter->int_status) || IS_CARD_RX_RCVD(adapter))
274 goto process_start;
275
276 spin_lock_irqsave(&adapter->main_proc_lock, flags);
277 adapter->mwifiex_processing = false;
278 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
279
280exit_main_proc:
281 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
282 mwifiex_shutdown_drv(adapter);
283 return ret;
284}
285
5e6e3a92
BZ
286/*
287 * This function frees the adapter structure.
288 *
289 * Additionally, this closes the netlink socket, frees the timers
290 * and private structures.
291 */
292static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
293{
294 if (!adapter) {
295 pr_err("%s: adapter is NULL\n", __func__);
296 return;
297 }
298
299 mwifiex_unregister(adapter);
300 pr_debug("info: %s: free adapter\n", __func__);
301}
302
303/*
59a4cc25 304 * This function gets firmware and initializes it.
5e6e3a92
BZ
305 *
306 * The main initialization steps followed are -
307 * - Download the correct firmware to card
5e6e3a92
BZ
308 * - Issue the init commands to firmware
309 */
59a4cc25 310static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
5e6e3a92 311{
59a4cc25
AK
312 int ret;
313 char fmt[64];
314 struct mwifiex_private *priv;
315 struct mwifiex_adapter *adapter = context;
5e6e3a92
BZ
316 struct mwifiex_fw_image fw;
317
59a4cc25
AK
318 if (!firmware) {
319 dev_err(adapter->dev,
320 "Failed to get firmware %s\n", adapter->fw_name);
5e6e3a92
BZ
321 goto done;
322 }
59a4cc25
AK
323
324 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
325 adapter->firmware = firmware;
5e6e3a92
BZ
326 fw.fw_buf = (u8 *) adapter->firmware->data;
327 fw.fw_len = adapter->firmware->size;
328
4daffe35
AK
329 if (adapter->if_ops.dnld_fw)
330 ret = adapter->if_ops.dnld_fw(adapter, &fw);
331 else
332 ret = mwifiex_dnld_fw(adapter, &fw);
5e6e3a92
BZ
333 if (ret == -1)
334 goto done;
335
336 dev_notice(adapter->dev, "WLAN FW is active\n");
337
338 adapter->init_wait_q_woken = false;
339 ret = mwifiex_init_fw(adapter);
340 if (ret == -1) {
341 goto done;
342 } else if (!ret) {
343 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
344 goto done;
345 }
346 /* Wait for mwifiex_init to complete */
347 wait_event_interruptible(adapter->init_wait_q,
348 adapter->init_wait_q_woken);
59a4cc25 349 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
5e6e3a92 350 goto done;
59a4cc25 351
d6bffe8b
AP
352 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
353 if (mwifiex_register_cfg80211(adapter)) {
59a4cc25
AK
354 dev_err(adapter->dev, "cannot register with cfg80211\n");
355 goto err_init_fw;
356 }
357
358 rtnl_lock();
359 /* Create station interface by default */
d6bffe8b 360 if (!mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d",
59a4cc25
AK
361 NL80211_IFTYPE_STATION, NULL, NULL)) {
362 dev_err(adapter->dev, "cannot create default STA interface\n");
363 goto err_add_intf;
5e6e3a92 364 }
d6bffe8b
AP
365
366 /* Create AP interface by default */
367 if (!mwifiex_add_virtual_intf(adapter->wiphy, "uap%d",
368 NL80211_IFTYPE_AP, NULL, NULL)) {
369 dev_err(adapter->dev, "cannot create default AP interface\n");
370 goto err_add_intf;
371 }
197f4a2e
SP
372
373 /* Create P2P interface by default */
374 if (!mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d",
375 NL80211_IFTYPE_P2P_CLIENT, NULL, NULL)) {
376 dev_err(adapter->dev, "cannot create default P2P interface\n");
377 goto err_add_intf;
378 }
59a4cc25
AK
379 rtnl_unlock();
380
381 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
382 dev_notice(adapter->dev, "driver_version = %s\n", fmt);
383 goto done;
5e6e3a92 384
59a4cc25 385err_add_intf:
84efbb84 386 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
59a4cc25
AK
387 rtnl_unlock();
388err_init_fw:
389 pr_debug("info: %s: unregister device\n", __func__);
390 adapter->if_ops.unregister_dev(adapter);
5e6e3a92 391done:
4fb25c59 392 release_firmware(adapter->firmware);
59a4cc25
AK
393 complete(&adapter->fw_load);
394 return;
395}
396
397/*
398 * This function initializes the hardware and gets firmware.
399 */
400static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
401{
402 int ret;
403
404 init_completion(&adapter->fw_load);
405 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
406 adapter->dev, GFP_KERNEL, adapter,
407 mwifiex_fw_dpc);
408 if (ret < 0)
409 dev_err(adapter->dev,
410 "request_firmware_nowait() returned error %d\n", ret);
5e6e3a92
BZ
411 return ret;
412}
413
5e6e3a92
BZ
414/*
415 * CFG802.11 network device handler for open.
416 *
417 * Starts the data queue.
418 */
419static int
420mwifiex_open(struct net_device *dev)
421{
bbea3bc4 422 netif_tx_start_all_queues(dev);
5e6e3a92
BZ
423 return 0;
424}
425
426/*
427 * CFG802.11 network device handler for close.
428 */
429static int
430mwifiex_close(struct net_device *dev)
431{
f162cac8
AK
432 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
433
434 if (priv->scan_request) {
435 dev_dbg(priv->adapter->dev, "aborting scan on ndo_stop\n");
436 cfg80211_scan_done(priv->scan_request, 1);
437 priv->scan_request = NULL;
438 }
439
5e6e3a92
BZ
440 return 0;
441}
442
e39faa73
SP
443/*
444 * Add buffer into wmm tx queue and queue work to transmit it.
445 */
446int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
447{
47411a06
AP
448 struct netdev_queue *txq;
449 int index = mwifiex_1d_to_wmm_queue[skb->priority];
450
451 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
452 txq = netdev_get_tx_queue(priv->netdev, index);
453 if (!netif_tx_queue_stopped(txq)) {
454 netif_tx_stop_queue(txq);
455 dev_dbg(priv->adapter->dev, "stop queue: %d\n", index);
456 }
457 }
458
e39faa73 459 atomic_inc(&priv->adapter->tx_pending);
47411a06 460 mwifiex_wmm_add_buf_txqueue(priv, skb);
e39faa73
SP
461
462 if (priv->adapter->scan_delay_cnt)
463 atomic_set(&priv->adapter->is_tx_received, true);
464
e39faa73
SP
465 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
466
467 return 0;
468}
469
5e6e3a92
BZ
470/*
471 * CFG802.11 network device handler for data transmission.
472 */
473static int
474mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
475{
476 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
270e58e8 477 struct sk_buff *new_skb;
5e6e3a92 478 struct mwifiex_txinfo *tx_info;
47411a06 479 struct timeval tv;
5e6e3a92 480
9da9a3b2 481 dev_dbg(priv->adapter->dev, "data: %lu BSS(%d-%d): Data <= kernel\n",
f57c1edc 482 jiffies, priv->bss_type, priv->bss_num);
5e6e3a92
BZ
483
484 if (priv->adapter->surprise_removed) {
b53575ec 485 kfree_skb(skb);
5e6e3a92
BZ
486 priv->stats.tx_dropped++;
487 return 0;
488 }
489 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
490 dev_err(priv->adapter->dev, "Tx: bad skb len %d\n", skb->len);
b53575ec 491 kfree_skb(skb);
5e6e3a92
BZ
492 priv->stats.tx_dropped++;
493 return 0;
494 }
495 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
496 dev_dbg(priv->adapter->dev,
497 "data: Tx: insufficient skb headroom %d\n",
f57c1edc 498 skb_headroom(skb));
5e6e3a92
BZ
499 /* Insufficient skb headroom - allocate a new skb */
500 new_skb =
501 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
502 if (unlikely(!new_skb)) {
503 dev_err(priv->adapter->dev, "Tx: cannot alloca new_skb\n");
b53575ec 504 kfree_skb(skb);
5e6e3a92
BZ
505 priv->stats.tx_dropped++;
506 return 0;
507 }
508 kfree_skb(skb);
509 skb = new_skb;
510 dev_dbg(priv->adapter->dev, "info: new skb headroomd %d\n",
f57c1edc 511 skb_headroom(skb));
5e6e3a92
BZ
512 }
513
514 tx_info = MWIFIEX_SKB_TXCB(skb);
9da9a3b2
YAP
515 tx_info->bss_num = priv->bss_num;
516 tx_info->bss_type = priv->bss_type;
47411a06
AP
517
518 /* Record the current time the packet was queued; used to
519 * determine the amount of time the packet was queued in
520 * the driver before it was sent to the firmware.
521 * The delay is then sent along with the packet to the
522 * firmware for aggregate delay calculation for stats and
523 * MSDU lifetime expiry.
524 */
525 do_gettimeofday(&tv);
526 skb->tstamp = timeval_to_ktime(tv);
5e6e3a92 527
e39faa73 528 mwifiex_queue_tx_pkt(priv, skb);
5e6e3a92
BZ
529
530 return 0;
531}
532
533/*
534 * CFG802.11 network device handler for setting MAC address.
535 */
536static int
537mwifiex_set_mac_address(struct net_device *dev, void *addr)
538{
539 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
a5ffddb7 540 struct sockaddr *hw_addr = addr;
270e58e8 541 int ret;
5e6e3a92
BZ
542
543 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
544
600f5d90
AK
545 /* Send request to firmware */
546 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
547 HostCmd_ACT_GEN_SET, 0, NULL);
548
549 if (!ret)
550 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
551 else
f57c1edc
YAP
552 dev_err(priv->adapter->dev,
553 "set mac address failed: ret=%d\n", ret);
600f5d90 554
5e6e3a92
BZ
555 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
556
600f5d90 557 return ret;
5e6e3a92
BZ
558}
559
560/*
561 * CFG802.11 network device handler for setting multicast list.
562 */
563static void mwifiex_set_multicast_list(struct net_device *dev)
564{
565 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
600f5d90
AK
566 struct mwifiex_multicast_list mcast_list;
567
568 if (dev->flags & IFF_PROMISC) {
569 mcast_list.mode = MWIFIEX_PROMISC_MODE;
570 } else if (dev->flags & IFF_ALLMULTI ||
571 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
572 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
573 } else {
574 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
575 if (netdev_mc_count(dev))
576 mcast_list.num_multicast_addr =
577 mwifiex_copy_mcast_addr(&mcast_list, dev);
578 }
579 mwifiex_request_set_multicast_list(priv, &mcast_list);
5e6e3a92
BZ
580}
581
582/*
583 * CFG802.11 network device handler for transmission timeout.
584 */
585static void
586mwifiex_tx_timeout(struct net_device *dev)
587{
588 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
589
9da9a3b2 590 dev_err(priv->adapter->dev, "%lu : Tx timeout, bss_type-num = %d-%d\n",
f57c1edc 591 jiffies, priv->bss_type, priv->bss_num);
bbea3bc4 592 mwifiex_set_trans_start(dev);
5e6e3a92
BZ
593 priv->num_tx_timeout++;
594}
595
596/*
597 * CFG802.11 network device handler for statistics retrieval.
598 */
599static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
600{
601 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
602
603 return &priv->stats;
604}
605
47411a06
AP
606static u16
607mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb)
608{
609 skb->priority = cfg80211_classify8021d(skb);
610 return mwifiex_1d_to_wmm_queue[skb->priority];
611}
612
5e6e3a92
BZ
613/* Network device handlers */
614static const struct net_device_ops mwifiex_netdev_ops = {
615 .ndo_open = mwifiex_open,
616 .ndo_stop = mwifiex_close,
617 .ndo_start_xmit = mwifiex_hard_start_xmit,
618 .ndo_set_mac_address = mwifiex_set_mac_address,
619 .ndo_tx_timeout = mwifiex_tx_timeout,
620 .ndo_get_stats = mwifiex_get_stats,
afc4b13d 621 .ndo_set_rx_mode = mwifiex_set_multicast_list,
47411a06 622 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
5e6e3a92
BZ
623};
624
625/*
626 * This function initializes the private structure parameters.
627 *
628 * The following wait queues are initialized -
629 * - IOCTL wait queue
630 * - Command wait queue
631 * - Statistics wait queue
632 *
633 * ...and the following default parameters are set -
634 * - Current key index : Set to 0
635 * - Rate index : Set to auto
636 * - Media connected : Set to disconnected
637 * - Adhoc link sensed : Set to false
638 * - Nick name : Set to null
639 * - Number of Tx timeout : Set to 0
640 * - Device address : Set to current address
641 *
642 * In addition, the CFG80211 work queue is also created.
643 */
93a1df48
YAP
644void mwifiex_init_priv_params(struct mwifiex_private *priv,
645 struct net_device *dev)
5e6e3a92
BZ
646{
647 dev->netdev_ops = &mwifiex_netdev_ops;
648 /* Initialize private structure */
5e6e3a92
BZ
649 priv->current_key_index = 0;
650 priv->media_connected = false;
651 memset(&priv->nick_name, 0, sizeof(priv->nick_name));
ede98bfa
AP
652 memset(priv->mgmt_ie, 0,
653 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
f31acabe
AP
654 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
655 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
656 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
657 priv->rsn_idx = MWIFIEX_AUTO_IDX_MASK;
5e6e3a92 658 priv->num_tx_timeout = 0;
5e6e3a92
BZ
659 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
660}
661
5e6e3a92
BZ
662/*
663 * This function check if command is pending.
664 */
665int is_command_pending(struct mwifiex_adapter *adapter)
666{
667 unsigned long flags;
668 int is_cmd_pend_q_empty;
669
670 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
671 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
672 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
673
674 return !is_cmd_pend_q_empty;
675}
676
5e6e3a92
BZ
677/*
678 * This is the main work queue function.
679 *
680 * It handles the main process, which in turn handles the complete
681 * driver operations.
682 */
683static void mwifiex_main_work_queue(struct work_struct *work)
684{
685 struct mwifiex_adapter *adapter =
686 container_of(work, struct mwifiex_adapter, main_work);
687
688 if (adapter->surprise_removed)
689 return;
690 mwifiex_main_process(adapter);
691}
692
693/*
694 * This function cancels all works in the queue and destroys
695 * the main workqueue.
696 */
697static void
698mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
699{
700 flush_workqueue(adapter->workqueue);
701 destroy_workqueue(adapter->workqueue);
702 adapter->workqueue = NULL;
703}
704
705/*
706 * This function adds the card.
707 *
708 * This function follows the following major steps to set up the device -
709 * - Initialize software. This includes probing the card, registering
710 * the interface operations table, and allocating/initializing the
711 * adapter structure
712 * - Set up the netlink socket
713 * - Create and start the main work queue
714 * - Register the device
715 * - Initialize firmware and hardware
716 * - Add logical interfaces
717 */
718int
719mwifiex_add_card(void *card, struct semaphore *sem,
d930faee 720 struct mwifiex_if_ops *if_ops, u8 iface_type)
5e6e3a92 721{
2be7859f 722 struct mwifiex_adapter *adapter;
5e6e3a92
BZ
723
724 if (down_interruptible(sem))
725 goto exit_sem_err;
726
93a1df48 727 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
5e6e3a92
BZ
728 pr_err("%s: software init failed\n", __func__);
729 goto err_init_sw;
730 }
731
d930faee
AK
732 adapter->iface_type = iface_type;
733
5e6e3a92 734 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
5e6e3a92
BZ
735 adapter->surprise_removed = false;
736 init_waitqueue_head(&adapter->init_wait_q);
737 adapter->is_suspended = false;
738 adapter->hs_activated = false;
739 init_waitqueue_head(&adapter->hs_activate_wait_q);
600f5d90
AK
740 adapter->cmd_wait_q_required = false;
741 init_waitqueue_head(&adapter->cmd_wait_q.wait);
600f5d90 742 adapter->cmd_wait_q.status = 0;
efaaa8b8 743 adapter->scan_wait_q_woken = false;
5e6e3a92 744
5e6e3a92
BZ
745 adapter->workqueue = create_workqueue("MWIFIEX_WORK_QUEUE");
746 if (!adapter->workqueue)
747 goto err_kmalloc;
748
749 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
750
751 /* Register the device. Fill up the private data structure with relevant
752 information from the card and request for the required IRQ. */
753 if (adapter->if_ops.register_dev(adapter)) {
754 pr_err("%s: failed to register mwifiex device\n", __func__);
755 goto err_registerdev;
756 }
757
5e6e3a92
BZ
758 if (mwifiex_init_hw_fw(adapter)) {
759 pr_err("%s: firmware init failed\n", __func__);
760 goto err_init_fw;
761 }
2be7859f 762
5e6e3a92 763 up(sem);
5e6e3a92
BZ
764 return 0;
765
5e6e3a92 766err_init_fw:
5e6e3a92 767 pr_debug("info: %s: unregister device\n", __func__);
4daffe35
AK
768 if (adapter->if_ops.unregister_dev)
769 adapter->if_ops.unregister_dev(adapter);
5e6e3a92
BZ
770err_registerdev:
771 adapter->surprise_removed = true;
772 mwifiex_terminate_workqueue(adapter);
773err_kmalloc:
774 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
775 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
776 pr_debug("info: %s: shutdown mwifiex\n", __func__);
777 adapter->init_wait_q_woken = false;
636c4598
YAP
778
779 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
780 wait_event_interruptible(adapter->init_wait_q,
781 adapter->init_wait_q_woken);
782 }
783
784 mwifiex_free_adapter(adapter);
785
786err_init_sw:
787 up(sem);
788
789exit_sem_err:
790 return -1;
791}
792EXPORT_SYMBOL_GPL(mwifiex_add_card);
793
794/*
795 * This function removes the card.
796 *
797 * This function follows the following major steps to remove the device -
798 * - Stop data traffic
799 * - Shutdown firmware
800 * - Remove the logical interfaces
801 * - Terminate the work queue
802 * - Unregister the device
803 * - Free the adapter structure
804 */
805int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
806{
807 struct mwifiex_private *priv = NULL;
5e6e3a92
BZ
808 int i;
809
810 if (down_interruptible(sem))
811 goto exit_sem_err;
812
813 if (!adapter)
814 goto exit_remove;
815
816 adapter->surprise_removed = true;
817
818 /* Stop data */
819 for (i = 0; i < adapter->priv_num; i++) {
820 priv = adapter->priv[i];
93a1df48 821 if (priv && priv->netdev) {
47411a06 822 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
5e6e3a92
BZ
823 if (netif_carrier_ok(priv->netdev))
824 netif_carrier_off(priv->netdev);
825 }
826 }
827
828 dev_dbg(adapter->dev, "cmd: calling mwifiex_shutdown_drv...\n");
829 adapter->init_wait_q_woken = false;
636c4598
YAP
830
831 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
5e6e3a92
BZ
832 wait_event_interruptible(adapter->init_wait_q,
833 adapter->init_wait_q_woken);
834 dev_dbg(adapter->dev, "cmd: mwifiex_shutdown_drv done\n");
835 if (atomic_read(&adapter->rx_pending) ||
836 atomic_read(&adapter->tx_pending) ||
600f5d90 837 atomic_read(&adapter->cmd_pending)) {
5e6e3a92 838 dev_err(adapter->dev, "rx_pending=%d, tx_pending=%d, "
600f5d90 839 "cmd_pending=%d\n",
5e6e3a92
BZ
840 atomic_read(&adapter->rx_pending),
841 atomic_read(&adapter->tx_pending),
600f5d90 842 atomic_read(&adapter->cmd_pending));
5e6e3a92
BZ
843 }
844
93a1df48
YAP
845 for (i = 0; i < adapter->priv_num; i++) {
846 priv = adapter->priv[i];
847
848 if (!priv)
849 continue;
850
851 rtnl_lock();
2da8cbf8 852 if (priv->wdev && priv->netdev)
84efbb84 853 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
93a1df48
YAP
854 rtnl_unlock();
855 }
856
3d82de0f 857 priv = adapter->priv[0];
64b05e2f 858 if (!priv || !priv->wdev)
3d82de0f
YAP
859 goto exit_remove;
860
64b05e2f
AP
861 wiphy_unregister(priv->wdev->wiphy);
862 wiphy_free(priv->wdev->wiphy);
863
864 for (i = 0; i < adapter->priv_num; i++) {
865 priv = adapter->priv[i];
866 if (priv)
867 kfree(priv->wdev);
2da8cbf8 868 }
5e6e3a92
BZ
869
870 mwifiex_terminate_workqueue(adapter);
871
872 /* Unregister device */
873 dev_dbg(adapter->dev, "info: unregister device\n");
4daffe35
AK
874 if (adapter->if_ops.unregister_dev)
875 adapter->if_ops.unregister_dev(adapter);
5e6e3a92
BZ
876 /* Free adapter structure */
877 dev_dbg(adapter->dev, "info: free adapter\n");
878 mwifiex_free_adapter(adapter);
879
880exit_remove:
881 up(sem);
882exit_sem_err:
883 return 0;
884}
885EXPORT_SYMBOL_GPL(mwifiex_remove_card);
886
887/*
888 * This function initializes the module.
889 *
890 * The debug FS is also initialized if configured.
891 */
892static int
893mwifiex_init_module(void)
894{
895#ifdef CONFIG_DEBUG_FS
896 mwifiex_debugfs_init();
897#endif
898 return 0;
899}
900
901/*
902 * This function cleans up the module.
903 *
904 * The debug FS is removed if available.
905 */
906static void
907mwifiex_cleanup_module(void)
908{
909#ifdef CONFIG_DEBUG_FS
910 mwifiex_debugfs_remove();
911#endif
912}
913
914module_init(mwifiex_init_module);
915module_exit(mwifiex_cleanup_module);
916
917MODULE_AUTHOR("Marvell International Ltd.");
918MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
919MODULE_VERSION(VERSION);
920MODULE_LICENSE("GPL v2");