mwifiex: move debug_data dump function to common utililty file
[deliverable/linux.git] / drivers / net / wireless / mwifiex / init.c
CommitLineData
5e6e3a92
BZ
1/*
2 * Marvell Wireless LAN device driver: HW/FW Initialization
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 "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;
9927baa3 140 priv->check_tdls_tx = false;
41a24a29 141 memcpy(priv->tos_to_tid_inv, tos_to_tid_inv, MAX_NUM_TID);
b887664d 142
636c4598 143 return mwifiex_add_bss_prio_tbl(priv);
5e6e3a92
BZ
144}
145
146/*
147 * This function allocates buffers for members of the adapter
148 * structure.
149 *
150 * The memory allocated includes scan table, command buffers, and
151 * sleep confirm command buffer. In addition, the queues are
152 * also initialized.
153 */
154static int mwifiex_allocate_adapter(struct mwifiex_adapter *adapter)
155{
270e58e8 156 int ret;
5e6e3a92
BZ
157
158 /* Allocate command buffer */
159 ret = mwifiex_alloc_cmd_buffer(adapter);
160 if (ret) {
161 dev_err(adapter->dev, "%s: failed to alloc cmd buffer\n",
931f1584 162 __func__);
5e6e3a92
BZ
163 return -1;
164 }
165
166 adapter->sleep_cfm =
7cc5eb62 167 dev_alloc_skb(sizeof(struct mwifiex_opt_sleep_confirm)
931f1584 168 + INTF_HEADER_LEN);
5e6e3a92
BZ
169
170 if (!adapter->sleep_cfm) {
171 dev_err(adapter->dev, "%s: failed to alloc sleep cfm"
172 " cmd buffer\n", __func__);
173 return -1;
174 }
175 skb_reserve(adapter->sleep_cfm, INTF_HEADER_LEN);
176
177 return 0;
178}
179
180/*
181 * This function initializes the adapter structure and sets default
182 * values to the members of adapter.
183 *
184 * This also initializes the WMM related parameters in the driver private
185 * structures.
186 */
187static void mwifiex_init_adapter(struct mwifiex_adapter *adapter)
188{
7cc5eb62 189 struct mwifiex_opt_sleep_confirm *sleep_cfm_buf = NULL;
5e6e3a92 190
7cc5eb62 191 skb_put(adapter->sleep_cfm, sizeof(struct mwifiex_opt_sleep_confirm));
5e6e3a92
BZ
192
193 adapter->cmd_sent = false;
d930faee 194
4daffe35 195 if (adapter->iface_type == MWIFIEX_SDIO)
d930faee 196 adapter->data_sent = true;
4daffe35
AK
197 else
198 adapter->data_sent = false;
d930faee 199
5e6e3a92
BZ
200 adapter->cmd_resp_received = false;
201 adapter->event_received = false;
202 adapter->data_received = false;
203
204 adapter->surprise_removed = false;
205
206 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
207
208 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM;
209 adapter->ps_state = PS_STATE_AWAKE;
210 adapter->need_to_wakeup = false;
211
212 adapter->scan_mode = HostCmd_BSS_MODE_ANY;
213 adapter->specific_scan_time = MWIFIEX_SPECIFIC_SCAN_CHAN_TIME;
214 adapter->active_scan_time = MWIFIEX_ACTIVE_SCAN_CHAN_TIME;
215 adapter->passive_scan_time = MWIFIEX_PASSIVE_SCAN_CHAN_TIME;
cb91be87 216 adapter->scan_chan_gap_time = MWIFIEX_DEF_SCAN_CHAN_GAP_TIME;
5e6e3a92 217
5e6e3a92
BZ
218 adapter->scan_probes = 1;
219
5e6e3a92
BZ
220 adapter->multiple_dtim = 1;
221
222 adapter->local_listen_interval = 0; /* default value in firmware
223 will be used */
224
225 adapter->is_deep_sleep = false;
226
227 adapter->delay_null_pkt = false;
228 adapter->delay_to_ps = 1000;
229 adapter->enhanced_ps_mode = PS_MODE_AUTO;
230
231 adapter->gen_null_pkt = false; /* Disable NULL Pkg generation by
232 default */
233 adapter->pps_uapsd_mode = false; /* Disable pps/uapsd mode by
234 default */
235 adapter->pm_wakeup_card_req = false;
236
237 adapter->pm_wakeup_fw_try = false;
238
5e6e3a92
BZ
239 adapter->curr_tx_buf_size = MWIFIEX_TX_DATA_BUF_SIZE_2K;
240
241 adapter->is_hs_configured = false;
cc0b5a64
AK
242 adapter->hs_cfg.conditions = cpu_to_le32(HS_CFG_COND_DEF);
243 adapter->hs_cfg.gpio = HS_CFG_GPIO_DEF;
244 adapter->hs_cfg.gap = HS_CFG_GAP_DEF;
5e6e3a92
BZ
245 adapter->hs_activated = false;
246
247 memset(adapter->event_body, 0, sizeof(adapter->event_body));
248 adapter->hw_dot_11n_dev_cap = 0;
249 adapter->hw_dev_mcs_support = 0;
21c3ba34 250 adapter->sec_chan_offset = 0;
5e6e3a92
BZ
251 adapter->adhoc_11n_enabled = false;
252
253 mwifiex_wmm_init(adapter);
254
255 if (adapter->sleep_cfm) {
8ed13033
YAP
256 sleep_cfm_buf = (struct mwifiex_opt_sleep_confirm *)
257 adapter->sleep_cfm->data;
7cc5eb62
AK
258 memset(sleep_cfm_buf, 0, adapter->sleep_cfm->len);
259 sleep_cfm_buf->command =
260 cpu_to_le16(HostCmd_CMD_802_11_PS_MODE_ENH);
261 sleep_cfm_buf->size =
262 cpu_to_le16(adapter->sleep_cfm->len);
263 sleep_cfm_buf->result = 0;
264 sleep_cfm_buf->action = cpu_to_le16(SLEEP_CONFIRM);
265 sleep_cfm_buf->resp_ctrl = cpu_to_le16(RESP_NEEDED);
5e6e3a92
BZ
266 }
267 memset(&adapter->sleep_params, 0, sizeof(adapter->sleep_params));
268 memset(&adapter->sleep_period, 0, sizeof(adapter->sleep_period));
269 adapter->tx_lock_flag = false;
270 adapter->null_pkt_interval = 0;
271 adapter->fw_bands = 0;
272 adapter->config_bands = 0;
273 adapter->adhoc_start_band = 0;
274 adapter->scan_channels = NULL;
275 adapter->fw_release_number = 0;
276 adapter->fw_cap_info = 0;
277 memset(&adapter->upld_buf, 0, sizeof(adapter->upld_buf));
278 adapter->event_cause = 0;
279 adapter->region_code = 0;
280 adapter->bcn_miss_time_out = DEFAULT_BCN_MISS_TIMEOUT;
281 adapter->adhoc_awake_period = 0;
282 memset(&adapter->arp_filter, 0, sizeof(adapter->arp_filter));
283 adapter->arp_filter_size = 0;
ede98bfa 284 adapter->max_mgmt_ie_index = MAX_MGMT_IE_INDEX;
21f58d20 285 adapter->ext_scan = true;
4b9fede5
AK
286 adapter->key_api_major_ver = 0;
287 adapter->key_api_minor_ver = 0;
5e6e3a92
BZ
288}
289
bbea3bc4
AP
290/*
291 * This function sets trans_start per tx_queue
292 */
293void mwifiex_set_trans_start(struct net_device *dev)
294{
295 int i;
296
297 for (i = 0; i < dev->num_tx_queues; i++)
298 netdev_get_tx_queue(dev, i)->trans_start = jiffies;
299
300 dev->trans_start = jiffies;
301}
302
303/*
304 * This function wakes up all queues in net_device
305 */
306void mwifiex_wake_up_net_dev_queue(struct net_device *netdev,
307 struct mwifiex_adapter *adapter)
308{
309 unsigned long dev_queue_flags;
47411a06 310 unsigned int i;
bbea3bc4
AP
311
312 spin_lock_irqsave(&adapter->queue_lock, dev_queue_flags);
47411a06
AP
313
314 for (i = 0; i < netdev->num_tx_queues; i++) {
315 struct netdev_queue *txq = netdev_get_tx_queue(netdev, i);
316
317 if (netif_tx_queue_stopped(txq))
318 netif_tx_wake_queue(txq);
319 }
320
bbea3bc4
AP
321 spin_unlock_irqrestore(&adapter->queue_lock, dev_queue_flags);
322}
323
324/*
325 * This function stops all queues in net_device
326 */
327void mwifiex_stop_net_dev_queue(struct net_device *netdev,
328 struct mwifiex_adapter *adapter)
329{
330 unsigned long dev_queue_flags;
47411a06 331 unsigned int i;
bbea3bc4
AP
332
333 spin_lock_irqsave(&adapter->queue_lock, dev_queue_flags);
47411a06
AP
334
335 for (i = 0; i < netdev->num_tx_queues; i++) {
336 struct netdev_queue *txq = netdev_get_tx_queue(netdev, i);
337
338 if (!netif_tx_queue_stopped(txq))
339 netif_tx_stop_queue(txq);
340 }
341
bbea3bc4
AP
342 spin_unlock_irqrestore(&adapter->queue_lock, dev_queue_flags);
343}
344
711825a0
AK
345/*
346 * This function releases the lock variables and frees the locks and
347 * associated locks.
348 */
349static void mwifiex_free_lock_list(struct mwifiex_adapter *adapter)
350{
351 struct mwifiex_private *priv;
352 s32 i, j;
353
354 /* Free lists */
355 list_del(&adapter->cmd_free_q);
356 list_del(&adapter->cmd_pending_q);
357 list_del(&adapter->scan_pending_q);
358
359 for (i = 0; i < adapter->priv_num; i++)
360 list_del(&adapter->bss_prio_tbl[i].bss_prio_head);
361
362 for (i = 0; i < adapter->priv_num; i++) {
363 if (adapter->priv[i]) {
364 priv = adapter->priv[i];
365 for (j = 0; j < MAX_NUM_TID; ++j)
366 list_del(&priv->wmm.tid_tbl_ptr[j].ra_list);
367 list_del(&priv->tx_ba_stream_tbl_ptr);
368 list_del(&priv->rx_reorder_tbl_ptr);
017a92a1 369 list_del(&priv->sta_list);
9927baa3 370 list_del(&priv->auto_tdls_list);
711825a0
AK
371 }
372 }
373}
374
5e6e3a92 375/*
c56ecf5a 376 * This function performs cleanup for adapter structure.
5e6e3a92 377 *
c56ecf5a
AK
378 * The cleanup is done recursively, by canceling all pending
379 * commands, freeing the member buffers previously allocated
380 * (command buffers, scan table buffer, sleep confirm command
381 * buffer), stopping the timers and calling the cleanup routines
382 * for every interface.
5e6e3a92
BZ
383 */
384static void
c56ecf5a 385mwifiex_adapter_cleanup(struct mwifiex_adapter *adapter)
5e6e3a92 386{
92c2538f
AK
387 int idx;
388
5e6e3a92
BZ
389 if (!adapter) {
390 pr_err("%s: adapter is NULL\n", __func__);
391 return;
392 }
393
394 mwifiex_cancel_all_pending_cmd(adapter);
395
396 /* Free lock variables */
397 mwifiex_free_lock_list(adapter);
398
399 /* Free command buffer */
400 dev_dbg(adapter->dev, "info: free cmd buffer\n");
401 mwifiex_free_cmd_buffer(adapter);
402
92c2538f
AK
403 for (idx = 0; idx < adapter->num_mem_types; idx++) {
404 struct memory_type_mapping *entry =
405 &adapter->mem_type_mapping_tbl[idx];
406
407 if (entry->mem_ptr) {
408 vfree(entry->mem_ptr);
409 entry->mem_ptr = NULL;
410 }
411 entry->mem_size = 0;
412 }
5e6e3a92 413
2da8cbf8
AK
414 if (adapter->sleep_cfm)
415 dev_kfree_skb_any(adapter->sleep_cfm);
5e6e3a92
BZ
416}
417
418/*
419 * This function intializes the lock variables and
420 * the list heads.
421 */
422int mwifiex_init_lock_list(struct mwifiex_adapter *adapter)
423{
270e58e8
YAP
424 struct mwifiex_private *priv;
425 s32 i, j;
5e6e3a92
BZ
426
427 spin_lock_init(&adapter->mwifiex_lock);
428 spin_lock_init(&adapter->int_lock);
429 spin_lock_init(&adapter->main_proc_lock);
430 spin_lock_init(&adapter->mwifiex_cmd_lock);
bbea3bc4 431 spin_lock_init(&adapter->queue_lock);
5e6e3a92
BZ
432 for (i = 0; i < adapter->priv_num; i++) {
433 if (adapter->priv[i]) {
434 priv = adapter->priv[i];
435 spin_lock_init(&priv->rx_pkt_lock);
436 spin_lock_init(&priv->wmm.ra_list_spinlock);
437 spin_lock_init(&priv->curr_bcn_buf_lock);
017a92a1 438 spin_lock_init(&priv->sta_list_spinlock);
9927baa3 439 spin_lock_init(&priv->auto_tdls_lock);
5e6e3a92
BZ
440 }
441 }
442
443 /* Initialize cmd_free_q */
444 INIT_LIST_HEAD(&adapter->cmd_free_q);
445 /* Initialize cmd_pending_q */
446 INIT_LIST_HEAD(&adapter->cmd_pending_q);
447 /* Initialize scan_pending_q */
448 INIT_LIST_HEAD(&adapter->scan_pending_q);
449
450 spin_lock_init(&adapter->cmd_free_q_lock);
451 spin_lock_init(&adapter->cmd_pending_q_lock);
452 spin_lock_init(&adapter->scan_pending_q_lock);
6e251174 453 spin_lock_init(&adapter->rx_proc_lock);
5e6e3a92 454
6e251174 455 skb_queue_head_init(&adapter->rx_data_q);
4daffe35 456
5e6e3a92
BZ
457 for (i = 0; i < adapter->priv_num; ++i) {
458 INIT_LIST_HEAD(&adapter->bss_prio_tbl[i].bss_prio_head);
5e6e3a92
BZ
459 spin_lock_init(&adapter->bss_prio_tbl[i].bss_prio_lock);
460 }
461
462 for (i = 0; i < adapter->priv_num; i++) {
463 if (!adapter->priv[i])
464 continue;
465 priv = adapter->priv[i];
6d2344ec 466 for (j = 0; j < MAX_NUM_TID; ++j)
5e6e3a92 467 INIT_LIST_HEAD(&priv->wmm.tid_tbl_ptr[j].ra_list);
5e6e3a92
BZ
468 INIT_LIST_HEAD(&priv->tx_ba_stream_tbl_ptr);
469 INIT_LIST_HEAD(&priv->rx_reorder_tbl_ptr);
017a92a1 470 INIT_LIST_HEAD(&priv->sta_list);
9927baa3 471 INIT_LIST_HEAD(&priv->auto_tdls_list);
56bd24a1 472 skb_queue_head_init(&priv->tdls_txq);
5e6e3a92
BZ
473
474 spin_lock_init(&priv->tx_ba_stream_tbl_lock);
475 spin_lock_init(&priv->rx_reorder_tbl_lock);
808bbebc
AK
476
477 spin_lock_init(&priv->ack_status_lock);
478 idr_init(&priv->ack_status_frames);
5e6e3a92
BZ
479 }
480
481 return 0;
482}
483
5e6e3a92
BZ
484/*
485 * This function initializes the firmware.
486 *
487 * The following operations are performed sequentially -
488 * - Allocate adapter structure
489 * - Initialize the adapter structure
490 * - Initialize the private structure
491 * - Add BSS priority tables to the adapter structure
492 * - For each interface, send the init commands to firmware
493 * - Send the first command in command pending queue, if available
494 */
495int mwifiex_init_fw(struct mwifiex_adapter *adapter)
496{
270e58e8
YAP
497 int ret;
498 struct mwifiex_private *priv;
499 u8 i, first_sta = true;
5e6e3a92
BZ
500 int is_cmd_pend_q_empty;
501 unsigned long flags;
502
503 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
504
505 /* Allocate memory for member of adapter structure */
506 ret = mwifiex_allocate_adapter(adapter);
507 if (ret)
508 return -1;
509
510 /* Initialize adapter structure */
511 mwifiex_init_adapter(adapter);
512
513 for (i = 0; i < adapter->priv_num; i++) {
514 if (adapter->priv[i]) {
515 priv = adapter->priv[i];
516
517 /* Initialize private structure */
518 ret = mwifiex_init_priv(priv);
519 if (ret)
520 return -1;
521 }
522 }
c6d1d87a
AP
523
524 if (adapter->if_ops.init_fw_port) {
525 if (adapter->if_ops.init_fw_port(adapter))
526 return -1;
527 }
528
5e6e3a92
BZ
529 for (i = 0; i < adapter->priv_num; i++) {
530 if (adapter->priv[i]) {
531 ret = mwifiex_sta_init_cmd(adapter->priv[i], first_sta);
532 if (ret == -1)
533 return -1;
534
535 first_sta = false;
536 }
537 }
538
539 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
540 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
541 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
542 if (!is_cmd_pend_q_empty) {
543 /* Send the first command in queue and return */
544 if (mwifiex_main_process(adapter) != -1)
545 ret = -EINPROGRESS;
546 } else {
547 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
548 }
549
550 return ret;
551}
552
553/*
554 * This function deletes the BSS priority tables.
555 *
556 * The function traverses through all the allocated BSS priority nodes
557 * in every BSS priority table and frees them.
558 */
559static void mwifiex_delete_bss_prio_tbl(struct mwifiex_private *priv)
560{
561 int i;
562 struct mwifiex_adapter *adapter = priv->adapter;
b006ed54 563 struct mwifiex_bss_prio_node *bssprio_node, *tmp_node;
5e6e3a92 564 struct list_head *head;
931f1584 565 spinlock_t *lock; /* bss priority lock */
5e6e3a92
BZ
566 unsigned long flags;
567
568 for (i = 0; i < adapter->priv_num; ++i) {
569 head = &adapter->bss_prio_tbl[i].bss_prio_head;
5e6e3a92
BZ
570 lock = &adapter->bss_prio_tbl[i].bss_prio_lock;
571 dev_dbg(adapter->dev, "info: delete BSS priority table,"
9da9a3b2 572 " bss_type = %d, bss_num = %d, i = %d,"
b006ed54
AF
573 " head = %p\n",
574 priv->bss_type, priv->bss_num, i, head);
575
576 {
5e6e3a92
BZ
577 spin_lock_irqsave(lock, flags);
578 if (list_empty(head)) {
579 spin_unlock_irqrestore(lock, flags);
580 continue;
581 }
5e6e3a92
BZ
582 list_for_each_entry_safe(bssprio_node, tmp_node, head,
583 list) {
584 if (bssprio_node->priv == priv) {
585 dev_dbg(adapter->dev, "info: Delete "
586 "node %p, next = %p\n",
587 bssprio_node, tmp_node);
5e6e3a92 588 list_del(&bssprio_node->list);
5e6e3a92
BZ
589 kfree(bssprio_node);
590 }
591 }
b006ed54 592 spin_unlock_irqrestore(lock, flags);
5e6e3a92
BZ
593 }
594 }
595}
596
9197ab9e
SP
597/*
598 * This function frees the private structure, including cleans
599 * up the TX and RX queues and frees the BSS priority tables.
600 */
601void mwifiex_free_priv(struct mwifiex_private *priv)
602{
603 mwifiex_clean_txrx(priv);
604 mwifiex_delete_bss_prio_tbl(priv);
605 mwifiex_free_curr_bcn(priv);
606}
607
5e6e3a92
BZ
608/*
609 * This function is used to shutdown the driver.
610 *
611 * The following operations are performed sequentially -
612 * - Check if already shut down
613 * - Make sure the main process has stopped
614 * - Clean up the Tx and Rx queues
615 * - Delete BSS priority tables
616 * - Free the adapter
617 * - Notify completion
618 */
619int
620mwifiex_shutdown_drv(struct mwifiex_adapter *adapter)
621{
622 int ret = -EINPROGRESS;
270e58e8
YAP
623 struct mwifiex_private *priv;
624 s32 i;
6e251174 625 unsigned long flags;
4daffe35 626 struct sk_buff *skb;
5e6e3a92
BZ
627
628 /* mwifiex already shutdown */
629 if (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY)
630 return 0;
631
632 adapter->hw_status = MWIFIEX_HW_STATUS_CLOSING;
633 /* wait for mwifiex_process to complete */
634 if (adapter->mwifiex_processing) {
635 dev_warn(adapter->dev, "main process is still running\n");
636 return ret;
637 }
638
084c7189
BZ
639 /* cancel current command */
640 if (adapter->curr_cmd) {
641 dev_warn(adapter->dev, "curr_cmd is still in processing\n");
629873f2 642 del_timer_sync(&adapter->cmd_timer);
9908b074 643 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd);
084c7189
BZ
644 adapter->curr_cmd = NULL;
645 }
646
5e6e3a92
BZ
647 /* shut down mwifiex */
648 dev_dbg(adapter->dev, "info: shutdown mwifiex...\n");
649
650 /* Clean up Tx/Rx queues and delete BSS priority table */
651 for (i = 0; i < adapter->priv_num; i++) {
652 if (adapter->priv[i]) {
653 priv = adapter->priv[i];
654
9927baa3 655 mwifiex_clean_auto_tdls(priv);
5e6e3a92
BZ
656 mwifiex_clean_txrx(priv);
657 mwifiex_delete_bss_prio_tbl(priv);
658 }
659 }
660
6e251174
AP
661 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
662
663 while ((skb = skb_dequeue(&adapter->rx_data_q))) {
664 struct mwifiex_rxinfo *rx_info = MWIFIEX_SKB_RXCB(skb);
665
666 atomic_dec(&adapter->rx_pending);
667 priv = adapter->priv[rx_info->bss_num];
668 if (priv)
669 priv->stats.rx_dropped++;
670
671 dev_kfree_skb_any(skb);
672 }
673
674 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
675
013a492e 676 spin_lock(&adapter->mwifiex_lock);
5e6e3a92 677
c56ecf5a 678 mwifiex_adapter_cleanup(adapter);
5e6e3a92 679
013a492e 680 spin_unlock(&adapter->mwifiex_lock);
5e6e3a92
BZ
681
682 /* Notify completion */
683 ret = mwifiex_shutdown_fw_complete(adapter);
684
685 return ret;
686}
687
688/*
689 * This function downloads the firmware to the card.
690 *
691 * The actual download is preceded by two sanity checks -
692 * - Check if firmware is already running
693 * - Check if the interface is the winner to download the firmware
694 *
695 * ...and followed by another -
696 * - Check if the firmware is downloaded successfully
697 *
698 * After download is successfully completed, the host interrupts are enabled.
699 */
700int mwifiex_dnld_fw(struct mwifiex_adapter *adapter,
701 struct mwifiex_fw_image *pmfw)
702{
d930faee 703 int ret;
5e6e3a92 704 u32 poll_num = 1;
5e6e3a92 705
4daffe35
AK
706 if (adapter->if_ops.check_fw_status) {
707 adapter->winner = 0;
d930faee 708
4daffe35
AK
709 /* check if firmware is already running */
710 ret = adapter->if_ops.check_fw_status(adapter, poll_num);
711 if (!ret) {
712 dev_notice(adapter->dev,
713 "WLAN FW already running! Skip FW dnld\n");
232fde06 714 return 0;
4daffe35
AK
715 }
716
717 poll_num = MAX_FIRMWARE_POLL_TRIES;
718
719 /* check if we are the winner for downloading FW */
720 if (!adapter->winner) {
721 dev_notice(adapter->dev,
722 "FW already running! Skip FW dnld\n");
4daffe35
AK
723 goto poll_fw;
724 }
5e6e3a92 725 }
4daffe35 726
5e6e3a92
BZ
727 if (pmfw) {
728 /* Download firmware with helper */
729 ret = adapter->if_ops.prog_fw(adapter, pmfw);
730 if (ret) {
731 dev_err(adapter->dev, "prog_fw failed ret=%#x\n", ret);
732 return ret;
733 }
734 }
735
736poll_fw:
737 /* Check if the firmware is downloaded successfully or not */
d930faee 738 ret = adapter->if_ops.check_fw_status(adapter, poll_num);
232fde06 739 if (ret)
5e6e3a92 740 dev_err(adapter->dev, "FW failed to be active in time\n");
4daffe35 741
5e6e3a92
BZ
742 return ret;
743}
This page took 0.455161 seconds and 5 git commands to generate.