Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwif...
[deliverable/linux.git] / drivers / net / wireless / mwifiex / init.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: HW/FW Initialization
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 "decl.h"
21#include "ioctl.h"
22#include "util.h"
23#include "fw.h"
24#include "main.h"
25#include "wmm.h"
26#include "11n.h"
27
28/*
29 * This function adds a BSS priority table to the table list.
30 *
31 * The function allocates a new BSS priority table node and adds it to
32 * the end of BSS priority table list, kept in driver memory.
33 */
34static int mwifiex_add_bss_prio_tbl(struct mwifiex_private *priv)
35{
36 struct mwifiex_adapter *adapter = priv->adapter;
37 struct mwifiex_bss_prio_node *bss_prio;
931f1584 38 struct mwifiex_bss_prio_tbl *tbl = adapter->bss_prio_tbl;
5e6e3a92
BZ
39 unsigned long flags;
40
41 bss_prio = kzalloc(sizeof(struct mwifiex_bss_prio_node), GFP_KERNEL);
0d2e7a5c 42 if (!bss_prio)
b53575ec 43 return -ENOMEM;
5e6e3a92
BZ
44
45 bss_prio->priv = priv;
46 INIT_LIST_HEAD(&bss_prio->list);
931f1584
YAP
47
48 spin_lock_irqsave(&tbl[priv->bss_priority].bss_prio_lock, flags);
49 list_add_tail(&bss_prio->list, &tbl[priv->bss_priority].bss_prio_head);
50 spin_unlock_irqrestore(&tbl[priv->bss_priority].bss_prio_lock, flags);
5e6e3a92 51
600f5d90 52 return 0;
5e6e3a92
BZ
53}
54
55/*
56 * This function initializes the private structure and sets default
57 * values to the members.
58 *
59 * Additionally, it also initializes all the locks and sets up all the
60 * lists.
61 */
9197ab9e 62int mwifiex_init_priv(struct mwifiex_private *priv)
5e6e3a92
BZ
63{
64 u32 i;
5e6e3a92
BZ
65
66 priv->media_connected = false;
67 memset(priv->curr_addr, 0xff, ETH_ALEN);
68
69 priv->pkt_tx_ctrl = 0;
93a1df48 70 priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
5e6e3a92
BZ
71 priv->data_rate = 0; /* Initially indicate the rate as auto */
72 priv->is_data_rate_auto = true;
73 priv->bcn_avg_factor = DEFAULT_BCN_AVG_FACTOR;
74 priv->data_avg_factor = DEFAULT_DATA_AVG_FACTOR;
75
5eb02e44 76 priv->sec_info.wep_enabled = 0;
f986b6d5 77 priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM;
2be50b8d 78 priv->sec_info.encryption_mode = 0;
5e6e3a92
BZ
79 for (i = 0; i < ARRAY_SIZE(priv->wep_key); i++)
80 memset(&priv->wep_key[i], 0, sizeof(struct mwifiex_wep_key));
81 priv->wep_key_curr_index = 0;
82 priv->curr_pkt_filter = HostCmd_ACT_MAC_RX_ON | HostCmd_ACT_MAC_TX_ON |
83 HostCmd_ACT_MAC_ETHERNETII_ENABLE;
84
85 priv->beacon_period = 100; /* beacon interval */ ;
86 priv->attempted_bss_desc = NULL;
87 memset(&priv->curr_bss_params, 0, sizeof(priv->curr_bss_params));
88 priv->listen_interval = MWIFIEX_DEFAULT_LISTEN_INTERVAL;
89
90 memset(&priv->prev_ssid, 0, sizeof(priv->prev_ssid));
91 memset(&priv->prev_bssid, 0, sizeof(priv->prev_bssid));
92 memset(&priv->assoc_rsp_buf, 0, sizeof(priv->assoc_rsp_buf));
93 priv->assoc_rsp_size = 0;
94 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
95 priv->atim_window = 0;
96 priv->adhoc_state = ADHOC_IDLE;
97 priv->tx_power_level = 0;
98 priv->max_tx_power_level = 0;
99 priv->min_tx_power_level = 0;
100 priv->tx_rate = 0;
101 priv->rxpd_htinfo = 0;
102 priv->rxpd_rate = 0;
103 priv->rate_bitmap = 0;
104 priv->data_rssi_last = 0;
105 priv->data_rssi_avg = 0;
106 priv->data_nf_avg = 0;
107 priv->data_nf_last = 0;
108 priv->bcn_rssi_last = 0;
109 priv->bcn_rssi_avg = 0;
110 priv->bcn_nf_avg = 0;
111 priv->bcn_nf_last = 0;
112 memset(&priv->wpa_ie, 0, sizeof(priv->wpa_ie));
113 memset(&priv->aes_key, 0, sizeof(priv->aes_key));
114 priv->wpa_ie_len = 0;
115 priv->wpa_is_gtk_set = false;
116
117 memset(&priv->assoc_tlv_buf, 0, sizeof(priv->assoc_tlv_buf));
118 priv->assoc_tlv_buf_len = 0;
119 memset(&priv->wps, 0, sizeof(priv->wps));
120 memset(&priv->gen_ie_buf, 0, sizeof(priv->gen_ie_buf));
121 priv->gen_ie_buf_len = 0;
122 memset(priv->vs_ie, 0, sizeof(priv->vs_ie));
123
124 priv->wmm_required = true;
125 priv->wmm_enabled = false;
126 priv->wmm_qosinfo = 0;
127 priv->curr_bcn_buf = NULL;
128 priv->curr_bcn_size = 0;
13d7ba78
AP
129 priv->wps_ie = NULL;
130 priv->wps_ie_len = 0;
c8258913 131 priv->ap_11n_enabled = 0;
7feb4c48 132 memset(&priv->roc_cfg, 0, sizeof(priv->roc_cfg));
5e6e3a92
BZ
133
134 priv->scan_block = false;
135
b887664d
AK
136 priv->csa_chan = 0;
137 priv->csa_expire_time = 0;
61c87304 138 priv->del_list_idx = 0;
587b36d3 139 priv->hs2_enabled = false;
41a24a29 140 memcpy(priv->tos_to_tid_inv, tos_to_tid_inv, MAX_NUM_TID);
b887664d 141
636c4598 142 return mwifiex_add_bss_prio_tbl(priv);
5e6e3a92
BZ
143}
144
145/*
146 * This function allocates buffers for members of the adapter
147 * structure.
148 *
149 * The memory allocated includes scan table, command buffers, and
150 * sleep confirm command buffer. In addition, the queues are
151 * also initialized.
152 */
153static int mwifiex_allocate_adapter(struct mwifiex_adapter *adapter)
154{
270e58e8 155 int ret;
5e6e3a92
BZ
156
157 /* Allocate command buffer */
158 ret = mwifiex_alloc_cmd_buffer(adapter);
159 if (ret) {
160 dev_err(adapter->dev, "%s: failed to alloc cmd buffer\n",
931f1584 161 __func__);
5e6e3a92
BZ
162 return -1;
163 }
164
165 adapter->sleep_cfm =
7cc5eb62 166 dev_alloc_skb(sizeof(struct mwifiex_opt_sleep_confirm)
931f1584 167 + INTF_HEADER_LEN);
5e6e3a92
BZ
168
169 if (!adapter->sleep_cfm) {
170 dev_err(adapter->dev, "%s: failed to alloc sleep cfm"
171 " cmd buffer\n", __func__);
172 return -1;
173 }
174 skb_reserve(adapter->sleep_cfm, INTF_HEADER_LEN);
175
176 return 0;
177}
178
179/*
180 * This function initializes the adapter structure and sets default
181 * values to the members of adapter.
182 *
183 * This also initializes the WMM related parameters in the driver private
184 * structures.
185 */
186static void mwifiex_init_adapter(struct mwifiex_adapter *adapter)
187{
7cc5eb62 188 struct mwifiex_opt_sleep_confirm *sleep_cfm_buf = NULL;
5e6e3a92 189
7cc5eb62 190 skb_put(adapter->sleep_cfm, sizeof(struct mwifiex_opt_sleep_confirm));
5e6e3a92
BZ
191
192 adapter->cmd_sent = false;
d930faee 193
4daffe35 194 if (adapter->iface_type == MWIFIEX_SDIO)
d930faee 195 adapter->data_sent = true;
4daffe35
AK
196 else
197 adapter->data_sent = false;
d930faee 198
5e6e3a92
BZ
199 adapter->cmd_resp_received = false;
200 adapter->event_received = false;
201 adapter->data_received = false;
202
203 adapter->surprise_removed = false;
204
205 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
206
207 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM;
208 adapter->ps_state = PS_STATE_AWAKE;
209 adapter->need_to_wakeup = false;
210
211 adapter->scan_mode = HostCmd_BSS_MODE_ANY;
212 adapter->specific_scan_time = MWIFIEX_SPECIFIC_SCAN_CHAN_TIME;
213 adapter->active_scan_time = MWIFIEX_ACTIVE_SCAN_CHAN_TIME;
214 adapter->passive_scan_time = MWIFIEX_PASSIVE_SCAN_CHAN_TIME;
215
5e6e3a92
BZ
216 adapter->scan_probes = 1;
217
5e6e3a92
BZ
218 adapter->multiple_dtim = 1;
219
220 adapter->local_listen_interval = 0; /* default value in firmware
221 will be used */
222
223 adapter->is_deep_sleep = false;
224
225 adapter->delay_null_pkt = false;
226 adapter->delay_to_ps = 1000;
227 adapter->enhanced_ps_mode = PS_MODE_AUTO;
228
229 adapter->gen_null_pkt = false; /* Disable NULL Pkg generation by
230 default */
231 adapter->pps_uapsd_mode = false; /* Disable pps/uapsd mode by
232 default */
233 adapter->pm_wakeup_card_req = false;
234
235 adapter->pm_wakeup_fw_try = false;
236
5e6e3a92
BZ
237 adapter->curr_tx_buf_size = MWIFIEX_TX_DATA_BUF_SIZE_2K;
238
239 adapter->is_hs_configured = false;
cc0b5a64
AK
240 adapter->hs_cfg.conditions = cpu_to_le32(HS_CFG_COND_DEF);
241 adapter->hs_cfg.gpio = HS_CFG_GPIO_DEF;
242 adapter->hs_cfg.gap = HS_CFG_GAP_DEF;
5e6e3a92
BZ
243 adapter->hs_activated = false;
244
245 memset(adapter->event_body, 0, sizeof(adapter->event_body));
246 adapter->hw_dot_11n_dev_cap = 0;
247 adapter->hw_dev_mcs_support = 0;
21c3ba34 248 adapter->sec_chan_offset = 0;
5e6e3a92
BZ
249 adapter->adhoc_11n_enabled = false;
250
251 mwifiex_wmm_init(adapter);
252
253 if (adapter->sleep_cfm) {
8ed13033
YAP
254 sleep_cfm_buf = (struct mwifiex_opt_sleep_confirm *)
255 adapter->sleep_cfm->data;
7cc5eb62
AK
256 memset(sleep_cfm_buf, 0, adapter->sleep_cfm->len);
257 sleep_cfm_buf->command =
258 cpu_to_le16(HostCmd_CMD_802_11_PS_MODE_ENH);
259 sleep_cfm_buf->size =
260 cpu_to_le16(adapter->sleep_cfm->len);
261 sleep_cfm_buf->result = 0;
262 sleep_cfm_buf->action = cpu_to_le16(SLEEP_CONFIRM);
263 sleep_cfm_buf->resp_ctrl = cpu_to_le16(RESP_NEEDED);
5e6e3a92
BZ
264 }
265 memset(&adapter->sleep_params, 0, sizeof(adapter->sleep_params));
266 memset(&adapter->sleep_period, 0, sizeof(adapter->sleep_period));
267 adapter->tx_lock_flag = false;
268 adapter->null_pkt_interval = 0;
269 adapter->fw_bands = 0;
270 adapter->config_bands = 0;
271 adapter->adhoc_start_band = 0;
272 adapter->scan_channels = NULL;
273 adapter->fw_release_number = 0;
274 adapter->fw_cap_info = 0;
275 memset(&adapter->upld_buf, 0, sizeof(adapter->upld_buf));
276 adapter->event_cause = 0;
277 adapter->region_code = 0;
278 adapter->bcn_miss_time_out = DEFAULT_BCN_MISS_TIMEOUT;
279 adapter->adhoc_awake_period = 0;
280 memset(&adapter->arp_filter, 0, sizeof(adapter->arp_filter));
281 adapter->arp_filter_size = 0;
ede98bfa 282 adapter->max_mgmt_ie_index = MAX_MGMT_IE_INDEX;
bdd37bed 283 adapter->empty_tx_q_cnt = 0;
21f58d20 284 adapter->ext_scan = true;
7f445d04
AP
285 adapter->fw_key_api_major_ver = 0;
286 adapter->fw_key_api_minor_ver = 0;
5e6e3a92
BZ
287}
288
bbea3bc4
AP
289/*
290 * This function sets trans_start per tx_queue
291 */
292void mwifiex_set_trans_start(struct net_device *dev)
293{
294 int i;
295
296 for (i = 0; i < dev->num_tx_queues; i++)
297 netdev_get_tx_queue(dev, i)->trans_start = jiffies;
298
299 dev->trans_start = jiffies;
300}
301
302/*
303 * This function wakes up all queues in net_device
304 */
305void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
306 struct mwifiex_adapter *adapter)
307{
308 unsigned long dev_queue_flags;
47411a06 309 unsigned int i;
bbea3bc4
AP
310
311 spin_lock_irqsave(&adapter->queue_lock, dev_queue_flags);
47411a06
AP
312
313 for (i = 0; i < netdev->num_tx_queues; i++) {
314 struct netdev_queue *txq = netdev_get_tx_queue(netdev, i);
315
316 if (netif_tx_queue_stopped(txq))
317 netif_tx_wake_queue(txq);
318 }
319
bbea3bc4
AP
320 spin_unlock_irqrestore(&adapter->queue_lock, dev_queue_flags);
321}
322
323/*
324 * This function stops all queues in net_device
325 */
326void mwifiex_stop_net_dev_queue(struct net_device *netdev,
327 struct mwifiex_adapter *adapter)
328{
329 unsigned long dev_queue_flags;
47411a06 330 unsigned int i;
bbea3bc4
AP
331
332 spin_lock_irqsave(&adapter->queue_lock, dev_queue_flags);
47411a06
AP
333
334 for (i = 0; i < netdev->num_tx_queues; i++) {
335 struct netdev_queue *txq = netdev_get_tx_queue(netdev, i);
336
337 if (!netif_tx_queue_stopped(txq))
338 netif_tx_stop_queue(txq);
339 }
340
bbea3bc4
AP
341 spin_unlock_irqrestore(&adapter->queue_lock, dev_queue_flags);
342}
343
711825a0
AK
344/*
345 * This function releases the lock variables and frees the locks and
346 * associated locks.
347 */
348static void mwifiex_free_lock_list(struct mwifiex_adapter *adapter)
349{
350 struct mwifiex_private *priv;
351 s32 i, j;
352
353 /* Free lists */
354 list_del(&adapter->cmd_free_q);
355 list_del(&adapter->cmd_pending_q);
356 list_del(&adapter->scan_pending_q);
357
358 for (i = 0; i < adapter->priv_num; i++)
359 list_del(&adapter->bss_prio_tbl[i].bss_prio_head);
360
361 for (i = 0; i < adapter->priv_num; i++) {
362 if (adapter->priv[i]) {
363 priv = adapter->priv[i];
364 for (j = 0; j < MAX_NUM_TID; ++j)
365 list_del(&priv->wmm.tid_tbl_ptr[j].ra_list);
366 list_del(&priv->tx_ba_stream_tbl_ptr);
367 list_del(&priv->rx_reorder_tbl_ptr);
017a92a1 368 list_del(&priv->sta_list);
711825a0
AK
369 }
370 }
371}
372
5e6e3a92 373/*
c56ecf5a 374 * This function performs cleanup for adapter structure.
5e6e3a92 375 *
c56ecf5a
AK
376 * The cleanup is done recursively, by canceling all pending
377 * commands, freeing the member buffers previously allocated
378 * (command buffers, scan table buffer, sleep confirm command
379 * buffer), stopping the timers and calling the cleanup routines
380 * for every interface.
5e6e3a92
BZ
381 */
382static void
c56ecf5a 383mwifiex_adapter_cleanup(struct mwifiex_adapter *adapter)
5e6e3a92
BZ
384{
385 if (!adapter) {
386 pr_err("%s: adapter is NULL\n", __func__);
387 return;
388 }
389
390 mwifiex_cancel_all_pending_cmd(adapter);
391
392 /* Free lock variables */
393 mwifiex_free_lock_list(adapter);
394
395 /* Free command buffer */
396 dev_dbg(adapter->dev, "info: free cmd buffer\n");
397 mwifiex_free_cmd_buffer(adapter);
398
5e6e3a92 399 dev_dbg(adapter->dev, "info: free scan table\n");
5e6e3a92 400
2da8cbf8
AK
401 if (adapter->sleep_cfm)
402 dev_kfree_skb_any(adapter->sleep_cfm);
5e6e3a92
BZ
403}
404
405/*
406 * This function intializes the lock variables and
407 * the list heads.
408 */
409int mwifiex_init_lock_list(struct mwifiex_adapter *adapter)
410{
270e58e8
YAP
411 struct mwifiex_private *priv;
412 s32 i, j;
5e6e3a92
BZ
413
414 spin_lock_init(&adapter->mwifiex_lock);
415 spin_lock_init(&adapter->int_lock);
416 spin_lock_init(&adapter->main_proc_lock);
417 spin_lock_init(&adapter->mwifiex_cmd_lock);
bbea3bc4 418 spin_lock_init(&adapter->queue_lock);
5e6e3a92
BZ
419 for (i = 0; i < adapter->priv_num; i++) {
420 if (adapter->priv[i]) {
421 priv = adapter->priv[i];
422 spin_lock_init(&priv->rx_pkt_lock);
423 spin_lock_init(&priv->wmm.ra_list_spinlock);
424 spin_lock_init(&priv->curr_bcn_buf_lock);
017a92a1 425 spin_lock_init(&priv->sta_list_spinlock);
5e6e3a92
BZ
426 }
427 }
428
429 /* Initialize cmd_free_q */
430 INIT_LIST_HEAD(&adapter->cmd_free_q);
431 /* Initialize cmd_pending_q */
432 INIT_LIST_HEAD(&adapter->cmd_pending_q);
433 /* Initialize scan_pending_q */
434 INIT_LIST_HEAD(&adapter->scan_pending_q);
435
436 spin_lock_init(&adapter->cmd_free_q_lock);
437 spin_lock_init(&adapter->cmd_pending_q_lock);
438 spin_lock_init(&adapter->scan_pending_q_lock);
439
4daffe35
AK
440 skb_queue_head_init(&adapter->usb_rx_data_q);
441
5e6e3a92
BZ
442 for (i = 0; i < adapter->priv_num; ++i) {
443 INIT_LIST_HEAD(&adapter->bss_prio_tbl[i].bss_prio_head);
5e6e3a92
BZ
444 spin_lock_init(&adapter->bss_prio_tbl[i].bss_prio_lock);
445 }
446
447 for (i = 0; i < adapter->priv_num; i++) {
448 if (!adapter->priv[i])
449 continue;
450 priv = adapter->priv[i];
6d2344ec 451 for (j = 0; j < MAX_NUM_TID; ++j)
5e6e3a92 452 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[j].ra_list);
5e6e3a92
BZ
453 INIT_LIST_HEAD(&priv->tx_ba_stream_tbl_ptr);
454 INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr);
017a92a1 455 INIT_LIST_HEAD(&priv->sta_list);
56bd24a1 456 skb_queue_head_init(&priv->tdls_txq);
5e6e3a92
BZ
457
458 spin_lock_init(&priv->tx_ba_stream_tbl_lock);
459 spin_lock_init(&priv->rx_reorder_tbl_lock);
460 }
461
462 return 0;
463}
464
5e6e3a92
BZ
465/*
466 * This function initializes the firmware.
467 *
468 * The following operations are performed sequentially -
469 * - Allocate adapter structure
470 * - Initialize the adapter structure
471 * - Initialize the private structure
472 * - Add BSS priority tables to the adapter structure
473 * - For each interface, send the init commands to firmware
474 * - Send the first command in command pending queue, if available
475 */
476int mwifiex_init_fw(struct mwifiex_adapter *adapter)
477{
270e58e8
YAP
478 int ret;
479 struct mwifiex_private *priv;
480 u8 i, first_sta = true;
5e6e3a92
BZ
481 int is_cmd_pend_q_empty;
482 unsigned long flags;
483
484 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
485
486 /* Allocate memory for member of adapter structure */
487 ret = mwifiex_allocate_adapter(adapter);
488 if (ret)
489 return -1;
490
491 /* Initialize adapter structure */
492 mwifiex_init_adapter(adapter);
493
494 for (i = 0; i < adapter->priv_num; i++) {
495 if (adapter->priv[i]) {
496 priv = adapter->priv[i];
497
498 /* Initialize private structure */
499 ret = mwifiex_init_priv(priv);
500 if (ret)
501 return -1;
502 }
503 }
c6d1d87a
AP
504
505 if (adapter->if_ops.init_fw_port) {
506 if (adapter->if_ops.init_fw_port(adapter))
507 return -1;
508 }
509
5e6e3a92
BZ
510 for (i = 0; i < adapter->priv_num; i++) {
511 if (adapter->priv[i]) {
512 ret = mwifiex_sta_init_cmd(adapter->priv[i], first_sta);
513 if (ret == -1)
514 return -1;
515
516 first_sta = false;
517 }
518 }
519
520 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
521 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
522 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
523 if (!is_cmd_pend_q_empty) {
524 /* Send the first command in queue and return */
525 if (mwifiex_main_process(adapter) != -1)
526 ret = -EINPROGRESS;
527 } else {
528 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
529 }
530
531 return ret;
532}
533
534/*
535 * This function deletes the BSS priority tables.
536 *
537 * The function traverses through all the allocated BSS priority nodes
538 * in every BSS priority table and frees them.
539 */
540static void mwifiex_delete_bss_prio_tbl(struct mwifiex_private *priv)
541{
542 int i;
543 struct mwifiex_adapter *adapter = priv->adapter;
b006ed54 544 struct mwifiex_bss_prio_node *bssprio_node, *tmp_node;
5e6e3a92 545 struct list_head *head;
931f1584 546 spinlock_t *lock; /* bss priority lock */
5e6e3a92
BZ
547 unsigned long flags;
548
549 for (i = 0; i < adapter->priv_num; ++i) {
550 head = &adapter->bss_prio_tbl[i].bss_prio_head;
5e6e3a92
BZ
551 lock = &adapter->bss_prio_tbl[i].bss_prio_lock;
552 dev_dbg(adapter->dev, "info: delete BSS priority table,"
9da9a3b2 553 " bss_type = %d, bss_num = %d, i = %d,"
b006ed54
AF
554 " head = %p\n",
555 priv->bss_type, priv->bss_num, i, head);
556
557 {
5e6e3a92
BZ
558 spin_lock_irqsave(lock, flags);
559 if (list_empty(head)) {
560 spin_unlock_irqrestore(lock, flags);
561 continue;
562 }
5e6e3a92
BZ
563 list_for_each_entry_safe(bssprio_node, tmp_node, head,
564 list) {
565 if (bssprio_node->priv == priv) {
566 dev_dbg(adapter->dev, "info: Delete "
567 "node %p, next = %p\n",
568 bssprio_node, tmp_node);
5e6e3a92 569 list_del(&bssprio_node->list);
5e6e3a92
BZ
570 kfree(bssprio_node);
571 }
572 }
b006ed54 573 spin_unlock_irqrestore(lock, flags);
5e6e3a92
BZ
574 }
575 }
576}
577
9197ab9e
SP
578/*
579 * This function frees the private structure, including cleans
580 * up the TX and RX queues and frees the BSS priority tables.
581 */
582void mwifiex_free_priv(struct mwifiex_private *priv)
583{
584 mwifiex_clean_txrx(priv);
585 mwifiex_delete_bss_prio_tbl(priv);
586 mwifiex_free_curr_bcn(priv);
587}
588
5e6e3a92
BZ
589/*
590 * This function is used to shutdown the driver.
591 *
592 * The following operations are performed sequentially -
593 * - Check if already shut down
594 * - Make sure the main process has stopped
595 * - Clean up the Tx and Rx queues
596 * - Delete BSS priority tables
597 * - Free the adapter
598 * - Notify completion
599 */
600int
601mwifiex_shutdown_drv(struct mwifiex_adapter *adapter)
602{
603 int ret = -EINPROGRESS;
270e58e8
YAP
604 struct mwifiex_private *priv;
605 s32 i;
4daffe35 606 struct sk_buff *skb;
5e6e3a92
BZ
607
608 /* mwifiex already shutdown */
609 if (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY)
610 return 0;
611
612 adapter->hw_status = MWIFIEX_HW_STATUS_CLOSING;
613 /* wait for mwifiex_process to complete */
614 if (adapter->mwifiex_processing) {
615 dev_warn(adapter->dev, "main process is still running\n");
616 return ret;
617 }
618
084c7189
BZ
619 /* cancel current command */
620 if (adapter->curr_cmd) {
621 dev_warn(adapter->dev, "curr_cmd is still in processing\n");
629873f2 622 del_timer_sync(&adapter->cmd_timer);
9908b074 623 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd);
084c7189
BZ
624 adapter->curr_cmd = NULL;
625 }
626
5e6e3a92
BZ
627 /* shut down mwifiex */
628 dev_dbg(adapter->dev, "info: shutdown mwifiex...\n");
629
630 /* Clean up Tx/Rx queues and delete BSS priority table */
631 for (i = 0; i < adapter->priv_num; i++) {
632 if (adapter->priv[i]) {
633 priv = adapter->priv[i];
634
635 mwifiex_clean_txrx(priv);
636 mwifiex_delete_bss_prio_tbl(priv);
637 }
638 }
639
013a492e 640 spin_lock(&adapter->mwifiex_lock);
5e6e3a92 641
4daffe35
AK
642 if (adapter->if_ops.data_complete) {
643 while ((skb = skb_dequeue(&adapter->usb_rx_data_q))) {
644 struct mwifiex_rxinfo *rx_info = MWIFIEX_SKB_RXCB(skb);
645
646 priv = adapter->priv[rx_info->bss_num];
647 if (priv)
648 priv->stats.rx_dropped++;
649
ca8d6dfc
UR
650 dev_kfree_skb_any(skb);
651 adapter->if_ops.data_complete(adapter);
4daffe35
AK
652 }
653 }
654
c56ecf5a 655 mwifiex_adapter_cleanup(adapter);
5e6e3a92 656
013a492e 657 spin_unlock(&adapter->mwifiex_lock);
5e6e3a92
BZ
658
659 /* Notify completion */
660 ret = mwifiex_shutdown_fw_complete(adapter);
661
662 return ret;
663}
664
665/*
666 * This function downloads the firmware to the card.
667 *
668 * The actual download is preceded by two sanity checks -
669 * - Check if firmware is already running
670 * - Check if the interface is the winner to download the firmware
671 *
672 * ...and followed by another -
673 * - Check if the firmware is downloaded successfully
674 *
675 * After download is successfully completed, the host interrupts are enabled.
676 */
677int mwifiex_dnld_fw(struct mwifiex_adapter *adapter,
678 struct mwifiex_fw_image *pmfw)
679{
d930faee 680 int ret;
5e6e3a92 681 u32 poll_num = 1;
5e6e3a92 682
4daffe35
AK
683 if (adapter->if_ops.check_fw_status) {
684 adapter->winner = 0;
d930faee 685
4daffe35
AK
686 /* check if firmware is already running */
687 ret = adapter->if_ops.check_fw_status(adapter, poll_num);
688 if (!ret) {
689 dev_notice(adapter->dev,
690 "WLAN FW already running! Skip FW dnld\n");
232fde06 691 return 0;
4daffe35
AK
692 }
693
694 poll_num = MAX_FIRMWARE_POLL_TRIES;
695
696 /* check if we are the winner for downloading FW */
697 if (!adapter->winner) {
698 dev_notice(adapter->dev,
699 "FW already running! Skip FW dnld\n");
4daffe35
AK
700 goto poll_fw;
701 }
5e6e3a92 702 }
4daffe35 703
5e6e3a92
BZ
704 if (pmfw) {
705 /* Download firmware with helper */
706 ret = adapter->if_ops.prog_fw(adapter, pmfw);
707 if (ret) {
708 dev_err(adapter->dev, "prog_fw failed ret=%#x\n", ret);
709 return ret;
710 }
711 }
712
713poll_fw:
714 /* Check if the firmware is downloaded successfully or not */
d930faee 715 ret = adapter->if_ops.check_fw_status(adapter, poll_num);
232fde06 716 if (ret)
5e6e3a92 717 dev_err(adapter->dev, "FW failed to be active in time\n");
4daffe35 718
5e6e3a92
BZ
719 return ret;
720}
This page took 0.35614 seconds and 5 git commands to generate.