blob: d5070c444fe1fcb53ff95a67024b12013ed547dc [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: major functions
3 *
Xinming Hu65da33f2014-06-19 21:38:57 -07004 * Copyright (C) 2011-2014, Marvell International Ltd.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07005 *
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) ";
Amitkumar Karwar388ec382013-05-17 17:50:25 -070028static char *cal_data_cfg;
29module_param(cal_data_cfg, charp, 0);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070030
Bing Zhao5e6e3a92011-03-21 18:00:50 -070031/*
32 * This function registers the device and performs all the necessary
33 * initializations.
34 *
35 * The following initialization operations are performed -
36 * - Allocate adapter structure
37 * - Save interface specific operations table in adapter
38 * - Call interface specific initialization routine
39 * - Allocate private structures
40 * - Set default adapter structure parameters
41 * - Initialize locks
42 *
43 * In case of any errors during inittialization, this function also ensures
44 * proper cleanup before exiting.
45 */
46static int mwifiex_register(void *card, struct mwifiex_if_ops *if_ops,
Amitkumar Karwar287546d2011-06-08 20:39:20 +053047 void **padapter)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070048{
Amitkumar Karwar2be78592011-04-15 20:50:42 -070049 struct mwifiex_adapter *adapter;
50 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070051
52 adapter = kzalloc(sizeof(struct mwifiex_adapter), GFP_KERNEL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070053 if (!adapter)
Christoph Fritzb53575e2011-05-08 22:50:09 +020054 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070055
Amitkumar Karwar287546d2011-06-08 20:39:20 +053056 *padapter = adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070057 adapter->card = card;
58
59 /* Save interface specific operations in adapter */
60 memmove(&adapter->if_ops, if_ops, sizeof(struct mwifiex_if_ops));
61
62 /* card specific initialization has been deferred until now .. */
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070063 if (adapter->if_ops.init_if)
64 if (adapter->if_ops.init_if(adapter))
65 goto error;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070066
67 adapter->priv_num = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070068
Avinash Patil64b05e22012-05-08 18:30:13 -070069 for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
70 /* Allocate memory for private structure */
71 adapter->priv[i] =
72 kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
73 if (!adapter->priv[i])
74 goto error;
75
76 adapter->priv[i]->adapter = adapter;
Avinash Patil64b05e22012-05-08 18:30:13 -070077 adapter->priv_num++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070078 }
Amitkumar Karwar44b815c2011-09-29 20:43:41 -070079 mwifiex_init_lock_list(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070080
81 init_timer(&adapter->cmd_timer);
82 adapter->cmd_timer.function = mwifiex_cmd_timeout_func;
83 adapter->cmd_timer.data = (unsigned long) adapter;
84
Bing Zhao5e6e3a92011-03-21 18:00:50 -070085 return 0;
86
87error:
88 dev_dbg(adapter->dev, "info: leave mwifiex_register with error\n");
89
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070090 for (i = 0; i < adapter->priv_num; i++)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070091 kfree(adapter->priv[i]);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070092
Bing Zhao5e6e3a92011-03-21 18:00:50 -070093 kfree(adapter);
94
95 return -1;
96}
97
98/*
99 * This function unregisters the device and performs all the necessary
100 * cleanups.
101 *
102 * The following cleanup operations are performed -
103 * - Free the timers
104 * - Free beacon buffers
105 * - Free private structures
106 * - Free adapter structure
107 */
108static int mwifiex_unregister(struct mwifiex_adapter *adapter)
109{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700110 s32 i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700111
Amitkumar Karwar4cfda672013-07-22 19:17:50 -0700112 if (adapter->if_ops.cleanup_if)
113 adapter->if_ops.cleanup_if(adapter);
114
Avinash Patil629873f2014-02-18 15:47:55 -0800115 del_timer_sync(&adapter->cmd_timer);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116
117 /* Free private structures */
118 for (i = 0; i < adapter->priv_num; i++) {
119 if (adapter->priv[i]) {
120 mwifiex_free_curr_bcn(adapter->priv[i]);
121 kfree(adapter->priv[i]);
122 }
123 }
124
125 kfree(adapter);
126 return 0;
127}
128
Avinash Patil6e251172014-09-12 20:08:59 +0530129static int mwifiex_process_rx(struct mwifiex_adapter *adapter)
130{
131 unsigned long flags;
132 struct sk_buff *skb;
Avinash Patil6e251172014-09-12 20:08:59 +0530133
134 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
135 if (adapter->rx_processing || adapter->rx_locked) {
136 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
137 goto exit_rx_proc;
138 } else {
139 adapter->rx_processing = true;
140 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
141 }
142
143 /* Check for Rx data */
144 while ((skb = skb_dequeue(&adapter->rx_data_q))) {
145 atomic_dec(&adapter->rx_pending);
146 if (adapter->delay_main_work &&
Avinash Patilb43a0d92014-09-29 21:44:14 +0530147 (atomic_read(&adapter->rx_pending) < LOW_RX_PENDING)) {
Avinash Patil6e251172014-09-12 20:08:59 +0530148 adapter->delay_main_work = false;
Avinash Patilb43a0d92014-09-29 21:44:14 +0530149 queue_work(adapter->workqueue, &adapter->main_work);
Avinash Patil6e251172014-09-12 20:08:59 +0530150 }
151 mwifiex_handle_rx_packet(adapter, skb);
152 }
153 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
154 adapter->rx_processing = false;
155 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
156
Avinash Patil6e251172014-09-12 20:08:59 +0530157exit_rx_proc:
158 return 0;
159}
160
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700161/*
162 * The main process.
163 *
164 * This function is the main procedure of the driver and handles various driver
165 * operations. It runs in a loop and provides the core functionalities.
166 *
167 * The main responsibilities of this function are -
168 * - Ensure concurrency control
169 * - Handle pending interrupts and call interrupt handlers
170 * - Wake up the card if required
171 * - Handle command responses and call response handlers
172 * - Handle events and call event handlers
173 * - Execute pending commands
174 * - Transmit pending data packets
175 */
176int mwifiex_main_process(struct mwifiex_adapter *adapter)
177{
178 int ret = 0;
179 unsigned long flags;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700180 struct sk_buff *skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700181
182 spin_lock_irqsave(&adapter->main_proc_lock, flags);
183
184 /* Check if already processing */
185 if (adapter->mwifiex_processing) {
186 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
187 goto exit_main_proc;
188 } else {
189 adapter->mwifiex_processing = true;
190 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
191 }
192process_start:
193 do {
194 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
195 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
196 break;
197
Avinash Patil6e251172014-09-12 20:08:59 +0530198 /* If we process interrupts first, it would increase RX pending
199 * even further. Avoid this by checking if rx_pending has
200 * crossed high threshold and schedule rx work queue
201 * and then process interrupts
202 */
203 if (atomic_read(&adapter->rx_pending) >= HIGH_RX_PENDING) {
204 adapter->delay_main_work = true;
205 if (!adapter->rx_processing)
206 queue_work(adapter->rx_workqueue,
207 &adapter->rx_work);
208 break;
209 }
210
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700211 /* Handle pending interrupt if any */
212 if (adapter->int_status) {
213 if (adapter->hs_activated)
214 mwifiex_process_hs_config(adapter);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700215 if (adapter->if_ops.process_int_status)
216 adapter->if_ops.process_int_status(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700217 }
218
Avinash Patil6e251172014-09-12 20:08:59 +0530219 if (adapter->rx_work_enabled && adapter->data_received)
220 queue_work(adapter->rx_workqueue, &adapter->rx_work);
221
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700222 /* Need to wake up the card ? */
223 if ((adapter->ps_state == PS_STATE_SLEEP) &&
224 (adapter->pm_wakeup_card_req &&
225 !adapter->pm_wakeup_fw_try) &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700226 (is_command_pending(adapter) ||
227 !mwifiex_wmm_lists_empty(adapter))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700228 adapter->pm_wakeup_fw_try = true;
229 adapter->if_ops.wakeup(adapter);
230 continue;
231 }
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700232
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700233 if (IS_CARD_RX_RCVD(adapter)) {
Avinash Patil6e251172014-09-12 20:08:59 +0530234 adapter->data_received = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700235 adapter->pm_wakeup_fw_try = false;
236 if (adapter->ps_state == PS_STATE_SLEEP)
237 adapter->ps_state = PS_STATE_AWAKE;
238 } else {
239 /* We have tried to wakeup the card already */
240 if (adapter->pm_wakeup_fw_try)
241 break;
242 if (adapter->ps_state != PS_STATE_AWAKE ||
243 adapter->tx_lock_flag)
244 break;
245
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530246 if ((!adapter->scan_chan_gap_enabled &&
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530247 adapter->scan_processing) || adapter->data_sent ||
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700248 mwifiex_wmm_lists_empty(adapter)) {
249 if (adapter->cmd_sent || adapter->curr_cmd ||
250 (!is_command_pending(adapter)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700251 break;
252 }
253 }
254
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700255 /* Check Rx data for USB */
256 if (adapter->iface_type == MWIFIEX_USB)
257 while ((skb = skb_dequeue(&adapter->usb_rx_data_q)))
258 mwifiex_handle_rx_packet(adapter, skb);
259
Amitkumar Karwar20474122014-04-14 15:31:05 -0700260 /* Check for event */
261 if (adapter->event_received) {
262 adapter->event_received = false;
263 mwifiex_process_event(adapter);
264 }
265
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700266 /* Check for Cmd Resp */
267 if (adapter->cmd_resp_received) {
268 adapter->cmd_resp_received = false;
269 mwifiex_process_cmdresp(adapter);
270
271 /* call mwifiex back when init_fw is done */
272 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
273 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
274 mwifiex_init_fw_complete(adapter);
275 }
276 }
277
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700278 /* Check if we need to confirm Sleep Request
279 received previously */
280 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
281 if (!adapter->cmd_sent && !adapter->curr_cmd)
282 mwifiex_check_ps_cond(adapter);
283 }
284
285 /* * The ps_state may have been changed during processing of
286 * Sleep Request event.
287 */
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700288 if ((adapter->ps_state == PS_STATE_SLEEP) ||
289 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
290 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
291 adapter->tx_lock_flag)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700292 continue;
293
294 if (!adapter->cmd_sent && !adapter->curr_cmd) {
295 if (mwifiex_exec_next_cmd(adapter) == -1) {
296 ret = -1;
297 break;
298 }
299 }
300
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530301 if ((adapter->scan_chan_gap_enabled ||
Amitkumar Karward8d91252014-09-12 20:08:58 +0530302 !adapter->scan_processing) &&
Amitkumar Karwar3249ba72012-06-06 21:12:41 -0700303 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700304 mwifiex_wmm_process_tx(adapter);
305 if (adapter->hs_activated) {
306 adapter->is_hs_configured = false;
307 mwifiex_hs_activated_event
308 (mwifiex_get_priv
309 (adapter, MWIFIEX_BSS_ROLE_ANY),
310 false);
311 }
312 }
313
314 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700315 !adapter->curr_cmd && !is_command_pending(adapter) &&
316 mwifiex_wmm_lists_empty(adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700317 if (!mwifiex_send_null_packet
318 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
319 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
320 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
321 adapter->delay_null_pkt = false;
322 adapter->ps_state = PS_STATE_SLEEP;
323 }
324 break;
325 }
326 } while (true);
327
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700328 spin_lock_irqsave(&adapter->main_proc_lock, flags);
Avinash Patilf73e5572014-09-29 21:44:13 +0530329 if (!adapter->delay_main_work &&
330 (adapter->int_status || IS_CARD_RX_RCVD(adapter))) {
Amitkumar Karwar453b0c32013-09-27 10:55:38 -0700331 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
332 goto process_start;
333 }
334
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700335 adapter->mwifiex_processing = false;
336 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
337
338exit_main_proc:
339 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
340 mwifiex_shutdown_drv(adapter);
341 return ret;
342}
Bing Zhao601216e2012-11-05 16:59:15 -0800343EXPORT_SYMBOL_GPL(mwifiex_main_process);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700344
345/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700346 * This function frees the adapter structure.
347 *
348 * Additionally, this closes the netlink socket, frees the timers
349 * and private structures.
350 */
351static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
352{
353 if (!adapter) {
354 pr_err("%s: adapter is NULL\n", __func__);
355 return;
356 }
357
358 mwifiex_unregister(adapter);
359 pr_debug("info: %s: free adapter\n", __func__);
360}
361
362/*
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700363 * This function cancels all works in the queue and destroys
364 * the main workqueue.
365 */
366static void mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
367{
368 flush_workqueue(adapter->workqueue);
369 destroy_workqueue(adapter->workqueue);
370 adapter->workqueue = NULL;
Avinash Patil6e251172014-09-12 20:08:59 +0530371
372 if (adapter->rx_workqueue) {
373 flush_workqueue(adapter->rx_workqueue);
374 destroy_workqueue(adapter->rx_workqueue);
375 adapter->rx_workqueue = NULL;
376 }
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700377}
378
379/*
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700380 * This function gets firmware and initializes it.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700381 *
382 * The main initialization steps followed are -
383 * - Download the correct firmware to card
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700384 * - Issue the init commands to firmware
385 */
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700386static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700387{
Amitkumar Karwarbec568f2013-11-14 19:10:38 -0800388 int ret;
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700389 char fmt[64];
390 struct mwifiex_private *priv;
391 struct mwifiex_adapter *adapter = context;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392 struct mwifiex_fw_image fw;
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700393 struct semaphore *sem = adapter->card_sem;
394 bool init_failed = false;
Amitkumar Karwar68b76e92013-11-14 19:10:37 -0800395 struct wireless_dev *wdev;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700396
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700397 if (!firmware) {
398 dev_err(adapter->dev,
399 "Failed to get firmware %s\n", adapter->fw_name);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700400 goto err_dnld_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700401 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700402
403 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
404 adapter->firmware = firmware;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700405 fw.fw_buf = (u8 *) adapter->firmware->data;
406 fw.fw_len = adapter->firmware->size;
407
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700408 if (adapter->if_ops.dnld_fw)
409 ret = adapter->if_ops.dnld_fw(adapter, &fw);
410 else
411 ret = mwifiex_dnld_fw(adapter, &fw);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700412 if (ret == -1)
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700413 goto err_dnld_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700414
415 dev_notice(adapter->dev, "WLAN FW is active\n");
416
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700417 if (cal_data_cfg) {
418 if ((request_firmware(&adapter->cal_data, cal_data_cfg,
419 adapter->dev)) < 0)
420 dev_err(adapter->dev,
421 "Cal data request_firmware() failed\n");
422 }
423
Daniel Drake232fde02013-07-13 10:57:10 -0400424 /* enable host interrupt after fw dnld is successful */
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700425 if (adapter->if_ops.enable_int) {
426 if (adapter->if_ops.enable_int(adapter))
427 goto err_dnld_fw;
428 }
Daniel Drake232fde02013-07-13 10:57:10 -0400429
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700430 adapter->init_wait_q_woken = false;
431 ret = mwifiex_init_fw(adapter);
432 if (ret == -1) {
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700433 goto err_init_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434 } else if (!ret) {
435 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
436 goto done;
437 }
438 /* Wait for mwifiex_init to complete */
439 wait_event_interruptible(adapter->init_wait_q,
440 adapter->init_wait_q_woken);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700441 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700442 goto err_init_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700443
Avinash Patild6bffe82012-05-08 18:30:15 -0700444 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
445 if (mwifiex_register_cfg80211(adapter)) {
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700446 dev_err(adapter->dev, "cannot register with cfg80211\n");
Amitkumar Karward1af2942013-11-14 19:10:39 -0800447 goto err_init_fw;
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700448 }
449
450 rtnl_lock();
451 /* Create station interface by default */
Amitkumar Karwar68b76e92013-11-14 19:10:37 -0800452 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d",
453 NL80211_IFTYPE_STATION, NULL, NULL);
454 if (IS_ERR(wdev)) {
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700455 dev_err(adapter->dev, "cannot create default STA interface\n");
Amitkumar Karwarbec568f2013-11-14 19:10:38 -0800456 rtnl_unlock();
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700457 goto err_add_intf;
458 }
459 rtnl_unlock();
460
461 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
462 dev_notice(adapter->dev, "driver_version = %s\n", fmt);
463 goto done;
464
465err_add_intf:
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700466 wiphy_unregister(adapter->wiphy);
467 wiphy_free(adapter->wiphy);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700468err_init_fw:
Daniel Drake232fde02013-07-13 10:57:10 -0400469 if (adapter->if_ops.disable_int)
470 adapter->if_ops.disable_int(adapter);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700471err_dnld_fw:
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700472 pr_debug("info: %s: unregister device\n", __func__);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700473 if (adapter->if_ops.unregister_dev)
474 adapter->if_ops.unregister_dev(adapter);
475
476 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
477 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
478 pr_debug("info: %s: shutdown mwifiex\n", __func__);
479 adapter->init_wait_q_woken = false;
480
481 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
482 wait_event_interruptible(adapter->init_wait_q,
483 adapter->init_wait_q_woken);
484 }
485 adapter->surprise_removed = true;
486 mwifiex_terminate_workqueue(adapter);
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700487 init_failed = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700488done:
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700489 if (adapter->cal_data) {
490 release_firmware(adapter->cal_data);
491 adapter->cal_data = NULL;
492 }
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700493 if (adapter->firmware) {
494 release_firmware(adapter->firmware);
495 adapter->firmware = NULL;
496 }
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700497 if (init_failed)
498 mwifiex_free_adapter(adapter);
499 up(sem);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700500 return;
501}
502
503/*
504 * This function initializes the hardware and gets firmware.
505 */
506static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
507{
508 int ret;
509
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700510 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
511 adapter->dev, GFP_KERNEL, adapter,
512 mwifiex_fw_dpc);
513 if (ret < 0)
514 dev_err(adapter->dev,
515 "request_firmware_nowait() returned error %d\n", ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700516 return ret;
517}
518
519/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700520 * CFG802.11 network device handler for open.
521 *
522 * Starts the data queue.
523 */
524static int
525mwifiex_open(struct net_device *dev)
526{
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800527 netif_tx_start_all_queues(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700528 return 0;
529}
530
531/*
532 * CFG802.11 network device handler for close.
533 */
534static int
535mwifiex_close(struct net_device *dev)
536{
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700537 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
538
539 if (priv->scan_request) {
540 dev_dbg(priv->adapter->dev, "aborting scan on ndo_stop\n");
541 cfg80211_scan_done(priv->scan_request, 1);
542 priv->scan_request = NULL;
Amitkumar Karwar75ab7532013-05-17 17:50:20 -0700543 priv->scan_aborting = true;
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700544 }
545
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700546 return 0;
547}
548
549/*
Stone Piaoe39faa72012-09-25 20:23:32 -0700550 * Add buffer into wmm tx queue and queue work to transmit it.
551 */
552int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
553{
Avinash Patil47411a02012-11-01 18:44:16 -0700554 struct netdev_queue *txq;
555 int index = mwifiex_1d_to_wmm_queue[skb->priority];
556
557 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
558 txq = netdev_get_tx_queue(priv->netdev, index);
559 if (!netif_tx_queue_stopped(txq)) {
560 netif_tx_stop_queue(txq);
561 dev_dbg(priv->adapter->dev, "stop queue: %d\n", index);
562 }
563 }
564
Stone Piaoe39faa72012-09-25 20:23:32 -0700565 atomic_inc(&priv->adapter->tx_pending);
Avinash Patil47411a02012-11-01 18:44:16 -0700566 mwifiex_wmm_add_buf_txqueue(priv, skb);
Stone Piaoe39faa72012-09-25 20:23:32 -0700567
Stone Piaoe39faa72012-09-25 20:23:32 -0700568 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
569
570 return 0;
571}
572
573/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700574 * CFG802.11 network device handler for data transmission.
575 */
576static int
577mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
578{
579 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700580 struct sk_buff *new_skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700581 struct mwifiex_txinfo *tx_info;
582
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800583 dev_dbg(priv->adapter->dev, "data: %lu BSS(%d-%d): Data <= kernel\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700584 jiffies, priv->bss_type, priv->bss_num);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700585
586 if (priv->adapter->surprise_removed) {
Christoph Fritzb53575e2011-05-08 22:50:09 +0200587 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700588 priv->stats.tx_dropped++;
589 return 0;
590 }
591 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
592 dev_err(priv->adapter->dev, "Tx: bad skb len %d\n", skb->len);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200593 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700594 priv->stats.tx_dropped++;
595 return 0;
596 }
597 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
598 dev_dbg(priv->adapter->dev,
599 "data: Tx: insufficient skb headroom %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700600 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700601 /* Insufficient skb headroom - allocate a new skb */
602 new_skb =
603 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
604 if (unlikely(!new_skb)) {
605 dev_err(priv->adapter->dev, "Tx: cannot alloca new_skb\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +0200606 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700607 priv->stats.tx_dropped++;
608 return 0;
609 }
610 kfree_skb(skb);
611 skb = new_skb;
612 dev_dbg(priv->adapter->dev, "info: new skb headroomd %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700613 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700614 }
615
616 tx_info = MWIFIEX_SKB_TXCB(skb);
Amitkumar Karward76744a2014-06-20 11:45:25 -0700617 memset(tx_info, 0, sizeof(*tx_info));
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800618 tx_info->bss_num = priv->bss_num;
619 tx_info->bss_type = priv->bss_type;
Ujjal Roya1ed4842013-12-02 23:17:55 -0800620 tx_info->pkt_len = skb->len;
Avinash Patil47411a02012-11-01 18:44:16 -0700621
622 /* Record the current time the packet was queued; used to
623 * determine the amount of time the packet was queued in
624 * the driver before it was sent to the firmware.
625 * The delay is then sent along with the packet to the
626 * firmware for aggregate delay calculation for stats and
627 * MSDU lifetime expiry.
628 */
Thomas Gleixnerc64800e2014-06-12 08:31:34 +0100629 __net_timestamp(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700630
Stone Piaoe39faa72012-09-25 20:23:32 -0700631 mwifiex_queue_tx_pkt(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700632
633 return 0;
634}
635
636/*
637 * CFG802.11 network device handler for setting MAC address.
638 */
639static int
640mwifiex_set_mac_address(struct net_device *dev, void *addr)
641{
642 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700643 struct sockaddr *hw_addr = addr;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700644 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700645
646 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
647
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700648 /* Send request to firmware */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -0800649 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
650 HostCmd_ACT_GEN_SET, 0, NULL, true);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700651
652 if (!ret)
653 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
654 else
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700655 dev_err(priv->adapter->dev,
656 "set mac address failed: ret=%d\n", ret);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700657
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700658 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
659
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700660 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700661}
662
663/*
664 * CFG802.11 network device handler for setting multicast list.
665 */
666static void mwifiex_set_multicast_list(struct net_device *dev)
667{
668 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700669 struct mwifiex_multicast_list mcast_list;
670
671 if (dev->flags & IFF_PROMISC) {
672 mcast_list.mode = MWIFIEX_PROMISC_MODE;
673 } else if (dev->flags & IFF_ALLMULTI ||
674 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
675 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
676 } else {
677 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
Daniel Drake6390d882013-06-14 15:24:24 -0400678 mcast_list.num_multicast_addr =
679 mwifiex_copy_mcast_addr(&mcast_list, dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700680 }
681 mwifiex_request_set_multicast_list(priv, &mcast_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700682}
683
684/*
685 * CFG802.11 network device handler for transmission timeout.
686 */
687static void
688mwifiex_tx_timeout(struct net_device *dev)
689{
690 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
691
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700692 priv->num_tx_timeout++;
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800693 priv->tx_timeout_cnt++;
694 dev_err(priv->adapter->dev,
695 "%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
696 jiffies, priv->tx_timeout_cnt, priv->bss_type, priv->bss_num);
697 mwifiex_set_trans_start(dev);
698
699 if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
700 priv->adapter->if_ops.card_reset) {
701 dev_err(priv->adapter->dev,
702 "tx_timeout_cnt exceeds threshold. Triggering card reset!\n");
703 priv->adapter->if_ops.card_reset(priv->adapter);
704 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700705}
706
707/*
708 * CFG802.11 network device handler for statistics retrieval.
709 */
710static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
711{
712 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
713
714 return &priv->stats;
715}
716
Avinash Patil47411a02012-11-01 18:44:16 -0700717static u16
Jason Wangf663dd92014-01-10 16:18:26 +0800718mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100719 void *accel_priv, select_queue_fallback_t fallback)
Avinash Patil47411a02012-11-01 18:44:16 -0700720{
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800721 skb->priority = cfg80211_classify8021d(skb, NULL);
Avinash Patil47411a02012-11-01 18:44:16 -0700722 return mwifiex_1d_to_wmm_queue[skb->priority];
723}
724
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700725/* Network device handlers */
726static const struct net_device_ops mwifiex_netdev_ops = {
727 .ndo_open = mwifiex_open,
728 .ndo_stop = mwifiex_close,
729 .ndo_start_xmit = mwifiex_hard_start_xmit,
730 .ndo_set_mac_address = mwifiex_set_mac_address,
731 .ndo_tx_timeout = mwifiex_tx_timeout,
732 .ndo_get_stats = mwifiex_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000733 .ndo_set_rx_mode = mwifiex_set_multicast_list,
Avinash Patil47411a02012-11-01 18:44:16 -0700734 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700735};
736
737/*
738 * This function initializes the private structure parameters.
739 *
740 * The following wait queues are initialized -
741 * - IOCTL wait queue
742 * - Command wait queue
743 * - Statistics wait queue
744 *
745 * ...and the following default parameters are set -
746 * - Current key index : Set to 0
747 * - Rate index : Set to auto
748 * - Media connected : Set to disconnected
749 * - Adhoc link sensed : Set to false
750 * - Nick name : Set to null
751 * - Number of Tx timeout : Set to 0
752 * - Device address : Set to current address
753 *
754 * In addition, the CFG80211 work queue is also created.
755 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700756void mwifiex_init_priv_params(struct mwifiex_private *priv,
757 struct net_device *dev)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700758{
759 dev->netdev_ops = &mwifiex_netdev_ops;
Amitkumar Karwarf16fdc92013-05-06 19:46:54 -0700760 dev->destructor = free_netdev;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700761 /* Initialize private structure */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700762 priv->current_key_index = 0;
763 priv->media_connected = false;
764 memset(&priv->nick_name, 0, sizeof(priv->nick_name));
Avinash Patilede98bf2012-05-08 18:30:28 -0700765 memset(priv->mgmt_ie, 0,
766 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
Avinash Patilf31acab2012-05-08 18:30:29 -0700767 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
768 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
769 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
770 priv->rsn_idx = MWIFIEX_AUTO_IDX_MASK;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700771 priv->num_tx_timeout = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700772 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
773}
774
775/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700776 * This function check if command is pending.
777 */
778int is_command_pending(struct mwifiex_adapter *adapter)
779{
780 unsigned long flags;
781 int is_cmd_pend_q_empty;
782
783 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
784 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
785 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
786
787 return !is_cmd_pend_q_empty;
788}
789
790/*
Avinash Patil6e251172014-09-12 20:08:59 +0530791 * This is the RX work queue function.
792 *
793 * It handles the RX operations.
794 */
795static void mwifiex_rx_work_queue(struct work_struct *work)
796{
797 struct mwifiex_adapter *adapter =
798 container_of(work, struct mwifiex_adapter, rx_work);
799
800 if (adapter->surprise_removed)
801 return;
802 mwifiex_process_rx(adapter);
803}
804
805/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700806 * This is the main work queue function.
807 *
808 * It handles the main process, which in turn handles the complete
809 * driver operations.
810 */
811static void mwifiex_main_work_queue(struct work_struct *work)
812{
813 struct mwifiex_adapter *adapter =
814 container_of(work, struct mwifiex_adapter, main_work);
815
816 if (adapter->surprise_removed)
817 return;
818 mwifiex_main_process(adapter);
819}
820
821/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700822 * This function adds the card.
823 *
824 * This function follows the following major steps to set up the device -
825 * - Initialize software. This includes probing the card, registering
826 * the interface operations table, and allocating/initializing the
827 * adapter structure
828 * - Set up the netlink socket
829 * - Create and start the main work queue
830 * - Register the device
831 * - Initialize firmware and hardware
832 * - Add logical interfaces
833 */
834int
835mwifiex_add_card(void *card, struct semaphore *sem,
Amitkumar Karward930fae2011-10-11 17:41:21 -0700836 struct mwifiex_if_ops *if_ops, u8 iface_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700837{
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700838 struct mwifiex_adapter *adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700839
840 if (down_interruptible(sem))
841 goto exit_sem_err;
842
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700843 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700844 pr_err("%s: software init failed\n", __func__);
845 goto err_init_sw;
846 }
847
Amitkumar Karward930fae2011-10-11 17:41:21 -0700848 adapter->iface_type = iface_type;
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700849 adapter->card_sem = sem;
Amitkumar Karward930fae2011-10-11 17:41:21 -0700850
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700851 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700852 adapter->surprise_removed = false;
853 init_waitqueue_head(&adapter->init_wait_q);
854 adapter->is_suspended = false;
855 adapter->hs_activated = false;
856 init_waitqueue_head(&adapter->hs_activate_wait_q);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700857 init_waitqueue_head(&adapter->cmd_wait_q.wait);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700858 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700859 adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700860
Avinash Patil6e251172014-09-12 20:08:59 +0530861 if (num_possible_cpus() > 1) {
862 adapter->rx_work_enabled = true;
863 pr_notice("rx work enabled, cpus %d\n", num_possible_cpus());
864 }
865
Amitkumar Karwar448a71c2013-10-11 18:33:04 -0700866 adapter->workqueue =
867 alloc_workqueue("MWIFIEX_WORK_QUEUE",
868 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700869 if (!adapter->workqueue)
870 goto err_kmalloc;
871
872 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
Avinash Patil6e251172014-09-12 20:08:59 +0530873
874 if (adapter->rx_work_enabled) {
875 adapter->rx_workqueue = alloc_workqueue("MWIFIEX_RX_WORK_QUEUE",
876 WQ_HIGHPRI |
877 WQ_MEM_RECLAIM |
878 WQ_UNBOUND, 1);
879 if (!adapter->rx_workqueue)
880 goto err_kmalloc;
881
882 INIT_WORK(&adapter->rx_work, mwifiex_rx_work_queue);
883 }
884
Amitkumar Karwar92c25382014-06-19 21:38:52 -0700885 if (adapter->if_ops.iface_work)
886 INIT_WORK(&adapter->iface_work, adapter->if_ops.iface_work);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700887
888 /* Register the device. Fill up the private data structure with relevant
Daniel Drake232fde02013-07-13 10:57:10 -0400889 information from the card. */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700890 if (adapter->if_ops.register_dev(adapter)) {
891 pr_err("%s: failed to register mwifiex device\n", __func__);
892 goto err_registerdev;
893 }
894
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700895 if (mwifiex_init_hw_fw(adapter)) {
896 pr_err("%s: firmware init failed\n", __func__);
897 goto err_init_fw;
898 }
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700899
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700900 return 0;
901
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700902err_init_fw:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700903 pr_debug("info: %s: unregister device\n", __func__);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700904 if (adapter->if_ops.unregister_dev)
905 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700906 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
907 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
908 pr_debug("info: %s: shutdown mwifiex\n", __func__);
909 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700910
911 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700912 wait_event_interruptible(adapter->init_wait_q,
913 adapter->init_wait_q_woken);
914 }
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700915err_registerdev:
916 adapter->surprise_removed = true;
917 mwifiex_terminate_workqueue(adapter);
918err_kmalloc:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700919 mwifiex_free_adapter(adapter);
920
921err_init_sw:
922 up(sem);
923
924exit_sem_err:
925 return -1;
926}
927EXPORT_SYMBOL_GPL(mwifiex_add_card);
928
929/*
930 * This function removes the card.
931 *
932 * This function follows the following major steps to remove the device -
933 * - Stop data traffic
934 * - Shutdown firmware
935 * - Remove the logical interfaces
936 * - Terminate the work queue
937 * - Unregister the device
938 * - Free the adapter structure
939 */
940int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
941{
942 struct mwifiex_private *priv = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700943 int i;
944
945 if (down_interruptible(sem))
946 goto exit_sem_err;
947
948 if (!adapter)
949 goto exit_remove;
950
Daniel Drake232fde02013-07-13 10:57:10 -0400951 /* We can no longer handle interrupts once we start doing the teardown
952 * below. */
953 if (adapter->if_ops.disable_int)
954 adapter->if_ops.disable_int(adapter);
955
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700956 adapter->surprise_removed = true;
957
958 /* Stop data */
959 for (i = 0; i < adapter->priv_num; i++) {
960 priv = adapter->priv[i];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700961 if (priv && priv->netdev) {
Avinash Patil47411a02012-11-01 18:44:16 -0700962 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700963 if (netif_carrier_ok(priv->netdev))
964 netif_carrier_off(priv->netdev);
965 }
966 }
967
968 dev_dbg(adapter->dev, "cmd: calling mwifiex_shutdown_drv...\n");
969 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700970
971 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700972 wait_event_interruptible(adapter->init_wait_q,
973 adapter->init_wait_q_woken);
974 dev_dbg(adapter->dev, "cmd: mwifiex_shutdown_drv done\n");
975 if (atomic_read(&adapter->rx_pending) ||
976 atomic_read(&adapter->tx_pending) ||
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700977 atomic_read(&adapter->cmd_pending)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700978 dev_err(adapter->dev, "rx_pending=%d, tx_pending=%d, "
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700979 "cmd_pending=%d\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700980 atomic_read(&adapter->rx_pending),
981 atomic_read(&adapter->tx_pending),
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700982 atomic_read(&adapter->cmd_pending));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700983 }
984
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700985 for (i = 0; i < adapter->priv_num; i++) {
986 priv = adapter->priv[i];
987
988 if (!priv)
989 continue;
990
991 rtnl_lock();
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800992 if (priv->wdev && priv->netdev)
Johannes Berg84efbb82012-06-16 00:00:26 +0200993 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700994 rtnl_unlock();
995 }
996
Amitkumar Karwarc2868ad2013-12-02 23:17:57 -0800997 wiphy_unregister(adapter->wiphy);
998 wiphy_free(adapter->wiphy);
Avinash Patil64b05e22012-05-08 18:30:13 -0700999
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001000 mwifiex_terminate_workqueue(adapter);
1001
1002 /* Unregister device */
1003 dev_dbg(adapter->dev, "info: unregister device\n");
Amitkumar Karwar4daffe32012-04-18 20:08:28 -07001004 if (adapter->if_ops.unregister_dev)
1005 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001006 /* Free adapter structure */
1007 dev_dbg(adapter->dev, "info: free adapter\n");
1008 mwifiex_free_adapter(adapter);
1009
1010exit_remove:
1011 up(sem);
1012exit_sem_err:
1013 return 0;
1014}
1015EXPORT_SYMBOL_GPL(mwifiex_remove_card);
1016
1017/*
1018 * This function initializes the module.
1019 *
1020 * The debug FS is also initialized if configured.
1021 */
1022static int
1023mwifiex_init_module(void)
1024{
1025#ifdef CONFIG_DEBUG_FS
1026 mwifiex_debugfs_init();
1027#endif
1028 return 0;
1029}
1030
1031/*
1032 * This function cleans up the module.
1033 *
1034 * The debug FS is removed if available.
1035 */
1036static void
1037mwifiex_cleanup_module(void)
1038{
1039#ifdef CONFIG_DEBUG_FS
1040 mwifiex_debugfs_remove();
1041#endif
1042}
1043
1044module_init(mwifiex_init_module);
1045module_exit(mwifiex_cleanup_module);
1046
1047MODULE_AUTHOR("Marvell International Ltd.");
1048MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
1049MODULE_VERSION(VERSION);
1050MODULE_LICENSE("GPL v2");