blob: 969ca1e1f3e9f805d26edd3ed9f6ea8d839fc9b7 [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
Zhaoyang Liuc687a002015-05-12 00:48:18 +053027static unsigned int debug_mask = MWIFIEX_DEFAULT_DEBUG_MASK;
28module_param(debug_mask, uint, 0);
29MODULE_PARM_DESC(debug_mask, "bitmap for debug flags");
30
Bing Zhao5e6e3a92011-03-21 18:00:50 -070031const char driver_version[] = "mwifiex " VERSION " (%s) ";
Amitkumar Karwar388ec382013-05-17 17:50:25 -070032static char *cal_data_cfg;
33module_param(cal_data_cfg, charp, 0);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070034
Avinash Patil0013c7c2014-11-05 19:38:11 +053035static unsigned short driver_mode;
36module_param(driver_mode, ushort, 0);
37MODULE_PARM_DESC(driver_mode,
38 "station=0x1(default), ap-sta=0x3, station-p2p=0x5, ap-sta-p2p=0x7");
39
Bing Zhao5e6e3a92011-03-21 18:00:50 -070040/*
41 * This function registers the device and performs all the necessary
42 * initializations.
43 *
44 * The following initialization operations are performed -
45 * - Allocate adapter structure
46 * - Save interface specific operations table in adapter
47 * - Call interface specific initialization routine
48 * - Allocate private structures
49 * - Set default adapter structure parameters
50 * - Initialize locks
51 *
52 * In case of any errors during inittialization, this function also ensures
53 * proper cleanup before exiting.
54 */
55static int mwifiex_register(void *card, struct mwifiex_if_ops *if_ops,
Amitkumar Karwar287546d2011-06-08 20:39:20 +053056 void **padapter)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070057{
Amitkumar Karwar2be78592011-04-15 20:50:42 -070058 struct mwifiex_adapter *adapter;
59 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070060
61 adapter = kzalloc(sizeof(struct mwifiex_adapter), GFP_KERNEL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070062 if (!adapter)
Christoph Fritzb53575e2011-05-08 22:50:09 +020063 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070064
Amitkumar Karwar287546d2011-06-08 20:39:20 +053065 *padapter = adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070066 adapter->card = card;
67
68 /* Save interface specific operations in adapter */
69 memmove(&adapter->if_ops, if_ops, sizeof(struct mwifiex_if_ops));
Zhaoyang Liuc687a002015-05-12 00:48:18 +053070 adapter->debug_mask = debug_mask;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071
72 /* card specific initialization has been deferred until now .. */
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070073 if (adapter->if_ops.init_if)
74 if (adapter->if_ops.init_if(adapter))
75 goto error;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070076
77 adapter->priv_num = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070078
Avinash Patil64b05e22012-05-08 18:30:13 -070079 for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
80 /* Allocate memory for private structure */
81 adapter->priv[i] =
82 kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
83 if (!adapter->priv[i])
84 goto error;
85
86 adapter->priv[i]->adapter = adapter;
Avinash Patil64b05e22012-05-08 18:30:13 -070087 adapter->priv_num++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070088 }
Amitkumar Karwar44b815c2011-09-29 20:43:41 -070089 mwifiex_init_lock_list(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070090
Julia Lawallc6c33e72014-12-26 15:35:56 +010091 setup_timer(&adapter->cmd_timer, mwifiex_cmd_timeout_func,
92 (unsigned long)adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070093
Bing Zhao5e6e3a92011-03-21 18:00:50 -070094 return 0;
95
96error:
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +053097 mwifiex_dbg(adapter, ERROR,
98 "info: leave mwifiex_register with error\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -070099
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700100 for (i = 0; i < adapter->priv_num; i++)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700101 kfree(adapter->priv[i]);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700102
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700103 kfree(adapter);
104
105 return -1;
106}
107
108/*
109 * This function unregisters the device and performs all the necessary
110 * cleanups.
111 *
112 * The following cleanup operations are performed -
113 * - Free the timers
114 * - Free beacon buffers
115 * - Free private structures
116 * - Free adapter structure
117 */
118static int mwifiex_unregister(struct mwifiex_adapter *adapter)
119{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700120 s32 i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700121
Amitkumar Karwar4cfda672013-07-22 19:17:50 -0700122 if (adapter->if_ops.cleanup_if)
123 adapter->if_ops.cleanup_if(adapter);
124
Avinash Patil629873f2014-02-18 15:47:55 -0800125 del_timer_sync(&adapter->cmd_timer);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700126
127 /* Free private structures */
128 for (i = 0; i < adapter->priv_num; i++) {
129 if (adapter->priv[i]) {
130 mwifiex_free_curr_bcn(adapter->priv[i]);
131 kfree(adapter->priv[i]);
132 }
133 }
134
Avinash Patilbf354432014-10-31 16:08:26 +0530135 vfree(adapter->chan_stats);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700136 kfree(adapter);
137 return 0;
138}
139
Shengzhen Lib2713f62015-03-13 17:37:54 +0530140void mwifiex_queue_main_work(struct mwifiex_adapter *adapter)
141{
142 unsigned long flags;
143
144 spin_lock_irqsave(&adapter->main_proc_lock, flags);
145 if (adapter->mwifiex_processing) {
146 adapter->more_task_flag = true;
147 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
148 } else {
149 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
150 queue_work(adapter->workqueue, &adapter->main_work);
151 }
152}
153EXPORT_SYMBOL_GPL(mwifiex_queue_main_work);
154
155static void mwifiex_queue_rx_work(struct mwifiex_adapter *adapter)
156{
157 unsigned long flags;
158
159 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
160 if (adapter->rx_processing) {
161 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
162 } else {
163 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
164 queue_work(adapter->rx_workqueue, &adapter->rx_work);
165 }
166}
167
Avinash Patil6e251172014-09-12 20:08:59 +0530168static int mwifiex_process_rx(struct mwifiex_adapter *adapter)
169{
170 unsigned long flags;
171 struct sk_buff *skb;
Zhaoyang Liu92263a82015-03-13 17:37:58 +0530172 struct mwifiex_rxinfo *rx_info;
Avinash Patil6e251172014-09-12 20:08:59 +0530173
174 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
175 if (adapter->rx_processing || adapter->rx_locked) {
176 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
177 goto exit_rx_proc;
178 } else {
179 adapter->rx_processing = true;
180 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
181 }
182
183 /* Check for Rx data */
184 while ((skb = skb_dequeue(&adapter->rx_data_q))) {
185 atomic_dec(&adapter->rx_pending);
Amitkumar Karwar381e9ff2014-11-25 06:43:04 -0800186 if ((adapter->delay_main_work ||
187 adapter->iface_type == MWIFIEX_USB) &&
Avinash Patilb43a0d92014-09-29 21:44:14 +0530188 (atomic_read(&adapter->rx_pending) < LOW_RX_PENDING)) {
Amitkumar Karwarcf6a64f2014-11-05 17:04:29 +0530189 if (adapter->if_ops.submit_rem_rx_urbs)
190 adapter->if_ops.submit_rem_rx_urbs(adapter);
Avinash Patil6e251172014-09-12 20:08:59 +0530191 adapter->delay_main_work = false;
Shengzhen Lib2713f62015-03-13 17:37:54 +0530192 mwifiex_queue_main_work(adapter);
Avinash Patil6e251172014-09-12 20:08:59 +0530193 }
Zhaoyang Liu92263a82015-03-13 17:37:58 +0530194 rx_info = MWIFIEX_SKB_RXCB(skb);
195 if (rx_info->buf_type == MWIFIEX_TYPE_AGGR_DATA) {
196 if (adapter->if_ops.deaggr_pkt)
197 adapter->if_ops.deaggr_pkt(adapter, skb);
198 dev_kfree_skb_any(skb);
199 } else {
200 mwifiex_handle_rx_packet(adapter, skb);
201 }
Avinash Patil6e251172014-09-12 20:08:59 +0530202 }
203 spin_lock_irqsave(&adapter->rx_proc_lock, flags);
204 adapter->rx_processing = false;
205 spin_unlock_irqrestore(&adapter->rx_proc_lock, flags);
206
Avinash Patil6e251172014-09-12 20:08:59 +0530207exit_rx_proc:
208 return 0;
209}
210
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700211/*
212 * The main process.
213 *
214 * This function is the main procedure of the driver and handles various driver
215 * operations. It runs in a loop and provides the core functionalities.
216 *
217 * The main responsibilities of this function are -
218 * - Ensure concurrency control
219 * - Handle pending interrupts and call interrupt handlers
220 * - Wake up the card if required
221 * - Handle command responses and call response handlers
222 * - Handle events and call event handlers
223 * - Execute pending commands
224 * - Transmit pending data packets
225 */
226int mwifiex_main_process(struct mwifiex_adapter *adapter)
227{
228 int ret = 0;
229 unsigned long flags;
230
231 spin_lock_irqsave(&adapter->main_proc_lock, flags);
232
233 /* Check if already processing */
Avinash Patila9adbcb2015-03-13 17:37:51 +0530234 if (adapter->mwifiex_processing || adapter->main_locked) {
Shengzhen Li04c7b362015-02-11 23:12:24 +0530235 adapter->more_task_flag = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700236 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
237 goto exit_main_proc;
238 } else {
239 adapter->mwifiex_processing = true;
Cathy Luo91457ea2015-04-17 04:18:29 -0700240 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700241 }
242process_start:
243 do {
244 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
245 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
246 break;
247
Amitkumar Karwar381e9ff2014-11-25 06:43:04 -0800248 /* For non-USB interfaces, If we process interrupts first, it
249 * would increase RX pending even further. Avoid this by
250 * checking if rx_pending has crossed high threshold and
251 * schedule rx work queue and then process interrupts.
252 * For USB interface, there are no interrupts. We already have
253 * HIGH_RX_PENDING check in usb.c
Avinash Patil6e251172014-09-12 20:08:59 +0530254 */
Amitkumar Karwar381e9ff2014-11-25 06:43:04 -0800255 if (atomic_read(&adapter->rx_pending) >= HIGH_RX_PENDING &&
256 adapter->iface_type != MWIFIEX_USB) {
Avinash Patil6e251172014-09-12 20:08:59 +0530257 adapter->delay_main_work = true;
Shengzhen Lib2713f62015-03-13 17:37:54 +0530258 mwifiex_queue_rx_work(adapter);
Avinash Patil6e251172014-09-12 20:08:59 +0530259 break;
260 }
261
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700262 /* Handle pending interrupt if any */
263 if (adapter->int_status) {
264 if (adapter->hs_activated)
265 mwifiex_process_hs_config(adapter);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700266 if (adapter->if_ops.process_int_status)
267 adapter->if_ops.process_int_status(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700268 }
269
Avinash Patil6e251172014-09-12 20:08:59 +0530270 if (adapter->rx_work_enabled && adapter->data_received)
Shengzhen Lib2713f62015-03-13 17:37:54 +0530271 mwifiex_queue_rx_work(adapter);
Avinash Patil6e251172014-09-12 20:08:59 +0530272
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700273 /* Need to wake up the card ? */
274 if ((adapter->ps_state == PS_STATE_SLEEP) &&
275 (adapter->pm_wakeup_card_req &&
276 !adapter->pm_wakeup_fw_try) &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700277 (is_command_pending(adapter) ||
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530278 !skb_queue_empty(&adapter->tx_data_q) ||
Avinash Patila1777322015-06-22 19:06:17 +0530279 !mwifiex_bypass_txlist_empty(adapter) ||
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700280 !mwifiex_wmm_lists_empty(adapter))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700281 adapter->pm_wakeup_fw_try = true;
Amitkumar Karwar46361872014-12-31 02:36:41 -0800282 mod_timer(&adapter->wakeup_timer, jiffies + (HZ*3));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700283 adapter->if_ops.wakeup(adapter);
284 continue;
285 }
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700286
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700287 if (IS_CARD_RX_RCVD(adapter)) {
Avinash Patil6e251172014-09-12 20:08:59 +0530288 adapter->data_received = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700289 adapter->pm_wakeup_fw_try = false;
Amitkumar Karwar6e9344f2015-03-12 00:38:40 -0700290 del_timer(&adapter->wakeup_timer);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700291 if (adapter->ps_state == PS_STATE_SLEEP)
292 adapter->ps_state = PS_STATE_AWAKE;
293 } else {
294 /* We have tried to wakeup the card already */
295 if (adapter->pm_wakeup_fw_try)
296 break;
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700297 if (adapter->ps_state != PS_STATE_AWAKE)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700298 break;
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700299 if (adapter->tx_lock_flag) {
300 if (adapter->iface_type == MWIFIEX_USB) {
301 if (!adapter->usb_mc_setup)
302 break;
303 } else
304 break;
305 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530307 if ((!adapter->scan_chan_gap_enabled &&
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530308 adapter->scan_processing) || adapter->data_sent ||
Xinming Huba101ad2015-06-22 19:06:10 +0530309 mwifiex_is_tdls_chan_switching
310 (mwifiex_get_priv(adapter,
311 MWIFIEX_BSS_ROLE_STA)) ||
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530312 (mwifiex_wmm_lists_empty(adapter) &&
Avinash Patila1777322015-06-22 19:06:17 +0530313 mwifiex_bypass_txlist_empty(adapter) &&
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530314 skb_queue_empty(&adapter->tx_data_q))) {
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700315 if (adapter->cmd_sent || adapter->curr_cmd ||
Xinming Huba101ad2015-06-22 19:06:10 +0530316 !mwifiex_is_send_cmd_allowed
317 (mwifiex_get_priv(adapter,
318 MWIFIEX_BSS_ROLE_STA)) ||
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700319 (!is_command_pending(adapter)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700320 break;
321 }
322 }
323
Amitkumar Karwar20474122014-04-14 15:31:05 -0700324 /* Check for event */
325 if (adapter->event_received) {
326 adapter->event_received = false;
327 mwifiex_process_event(adapter);
328 }
329
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700330 /* Check for Cmd Resp */
331 if (adapter->cmd_resp_received) {
332 adapter->cmd_resp_received = false;
333 mwifiex_process_cmdresp(adapter);
334
335 /* call mwifiex back when init_fw is done */
336 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
337 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
338 mwifiex_init_fw_complete(adapter);
339 }
340 }
341
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700342 /* Check if we need to confirm Sleep Request
343 received previously */
344 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
345 if (!adapter->cmd_sent && !adapter->curr_cmd)
346 mwifiex_check_ps_cond(adapter);
347 }
348
349 /* * The ps_state may have been changed during processing of
350 * Sleep Request event.
351 */
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700352 if ((adapter->ps_state == PS_STATE_SLEEP) ||
353 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700354 (adapter->ps_state == PS_STATE_SLEEP_CFM)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700355 continue;
Shengzhen Li04c7b362015-02-11 23:12:24 +0530356 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700357
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700358 if (adapter->tx_lock_flag) {
359 if (adapter->iface_type == MWIFIEX_USB) {
360 if (!adapter->usb_mc_setup)
361 continue;
362 } else
363 continue;
364 }
365
Xinming Huba101ad2015-06-22 19:06:10 +0530366 if (!adapter->cmd_sent && !adapter->curr_cmd &&
367 mwifiex_is_send_cmd_allowed
368 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700369 if (mwifiex_exec_next_cmd(adapter) == -1) {
370 ret = -1;
371 break;
372 }
373 }
374
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700375 /** If USB Multi channel setup ongoing,
376 * wait for ready to tx data.
377 */
378 if (adapter->iface_type == MWIFIEX_USB &&
379 adapter->usb_mc_setup)
380 continue;
381
Avinash Patil5ec39ef2014-09-12 20:08:56 +0530382 if ((adapter->scan_chan_gap_enabled ||
Amitkumar Karward8d91252014-09-12 20:08:58 +0530383 !adapter->scan_processing) &&
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530384 !adapter->data_sent &&
385 !skb_queue_empty(&adapter->tx_data_q)) {
386 mwifiex_process_tx_queue(adapter);
387 if (adapter->hs_activated) {
388 adapter->is_hs_configured = false;
389 mwifiex_hs_activated_event
390 (mwifiex_get_priv
391 (adapter, MWIFIEX_BSS_ROLE_ANY),
392 false);
393 }
394 }
395
396 if ((adapter->scan_chan_gap_enabled ||
397 !adapter->scan_processing) &&
Avinash Patila1777322015-06-22 19:06:17 +0530398 !adapter->data_sent &&
399 !mwifiex_bypass_txlist_empty(adapter) &&
400 !mwifiex_is_tdls_chan_switching
401 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
402 mwifiex_process_bypass_tx(adapter);
403 if (adapter->hs_activated) {
404 adapter->is_hs_configured = false;
405 mwifiex_hs_activated_event
406 (mwifiex_get_priv
407 (adapter, MWIFIEX_BSS_ROLE_ANY),
408 false);
409 }
410 }
411
412 if ((adapter->scan_chan_gap_enabled ||
413 !adapter->scan_processing) &&
Xinming Huba101ad2015-06-22 19:06:10 +0530414 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter) &&
415 !mwifiex_is_tdls_chan_switching
416 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700417 mwifiex_wmm_process_tx(adapter);
418 if (adapter->hs_activated) {
419 adapter->is_hs_configured = false;
420 mwifiex_hs_activated_event
421 (mwifiex_get_priv
422 (adapter, MWIFIEX_BSS_ROLE_ANY),
423 false);
424 }
425 }
426
427 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700428 !adapter->curr_cmd && !is_command_pending(adapter) &&
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530429 (mwifiex_wmm_lists_empty(adapter) &&
Avinash Patila1777322015-06-22 19:06:17 +0530430 mwifiex_bypass_txlist_empty(adapter) &&
Zhaoyang Liue35000e2015-03-13 17:37:57 +0530431 skb_queue_empty(&adapter->tx_data_q))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700432 if (!mwifiex_send_null_packet
433 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
434 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
435 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
436 adapter->delay_null_pkt = false;
437 adapter->ps_state = PS_STATE_SLEEP;
438 }
439 break;
440 }
441 } while (true);
442
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700443 spin_lock_irqsave(&adapter->main_proc_lock, flags);
Cathy Luo91457ea2015-04-17 04:18:29 -0700444 if (adapter->more_task_flag) {
445 adapter->more_task_flag = false;
446 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
Amitkumar Karwar453b0c32013-09-27 10:55:38 -0700447 goto process_start;
Cathy Luo91457ea2015-04-17 04:18:29 -0700448 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700449 adapter->mwifiex_processing = false;
450 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
451
452exit_main_proc:
453 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
454 mwifiex_shutdown_drv(adapter);
455 return ret;
456}
Bing Zhao601216e2012-11-05 16:59:15 -0800457EXPORT_SYMBOL_GPL(mwifiex_main_process);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700458
459/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700460 * This function frees the adapter structure.
461 *
462 * Additionally, this closes the netlink socket, frees the timers
463 * and private structures.
464 */
465static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
466{
467 if (!adapter) {
468 pr_err("%s: adapter is NULL\n", __func__);
469 return;
470 }
471
472 mwifiex_unregister(adapter);
473 pr_debug("info: %s: free adapter\n", __func__);
474}
475
476/*
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700477 * This function cancels all works in the queue and destroys
478 * the main workqueue.
479 */
480static void mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
481{
482 flush_workqueue(adapter->workqueue);
483 destroy_workqueue(adapter->workqueue);
484 adapter->workqueue = NULL;
Avinash Patil6e251172014-09-12 20:08:59 +0530485
486 if (adapter->rx_workqueue) {
487 flush_workqueue(adapter->rx_workqueue);
488 destroy_workqueue(adapter->rx_workqueue);
489 adapter->rx_workqueue = NULL;
490 }
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700491}
492
493/*
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700494 * This function gets firmware and initializes it.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700495 *
496 * The main initialization steps followed are -
497 * - Download the correct firmware to card
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700498 * - Issue the init commands to firmware
499 */
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700500static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700501{
Amitkumar Karwarbec568f2013-11-14 19:10:38 -0800502 int ret;
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700503 char fmt[64];
504 struct mwifiex_private *priv;
505 struct mwifiex_adapter *adapter = context;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700506 struct mwifiex_fw_image fw;
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700507 struct semaphore *sem = adapter->card_sem;
508 bool init_failed = false;
Amitkumar Karwar68b76e92013-11-14 19:10:37 -0800509 struct wireless_dev *wdev;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700510
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700511 if (!firmware) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530512 mwifiex_dbg(adapter, ERROR,
513 "Failed to get firmware %s\n", adapter->fw_name);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700514 goto err_dnld_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700515 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700516
517 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
518 adapter->firmware = firmware;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700519 fw.fw_buf = (u8 *) adapter->firmware->data;
520 fw.fw_len = adapter->firmware->size;
521
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700522 if (adapter->if_ops.dnld_fw)
523 ret = adapter->if_ops.dnld_fw(adapter, &fw);
524 else
525 ret = mwifiex_dnld_fw(adapter, &fw);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700526 if (ret == -1)
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700527 goto err_dnld_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700528
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530529 mwifiex_dbg(adapter, MSG, "WLAN FW is active\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700530
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700531 if (cal_data_cfg) {
532 if ((request_firmware(&adapter->cal_data, cal_data_cfg,
533 adapter->dev)) < 0)
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530534 mwifiex_dbg(adapter, ERROR,
535 "Cal data request_firmware() failed\n");
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700536 }
537
Daniel Drake232fde02013-07-13 10:57:10 -0400538 /* enable host interrupt after fw dnld is successful */
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700539 if (adapter->if_ops.enable_int) {
540 if (adapter->if_ops.enable_int(adapter))
541 goto err_dnld_fw;
542 }
Daniel Drake232fde02013-07-13 10:57:10 -0400543
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700544 adapter->init_wait_q_woken = false;
545 ret = mwifiex_init_fw(adapter);
546 if (ret == -1) {
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700547 goto err_init_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700548 } else if (!ret) {
549 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
550 goto done;
551 }
552 /* Wait for mwifiex_init to complete */
553 wait_event_interruptible(adapter->init_wait_q,
554 adapter->init_wait_q_woken);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700555 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700556 goto err_init_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700557
Avinash Patild6bffe82012-05-08 18:30:15 -0700558 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
559 if (mwifiex_register_cfg80211(adapter)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530560 mwifiex_dbg(adapter, ERROR,
561 "cannot register with cfg80211\n");
Amitkumar Karward1af2942013-11-14 19:10:39 -0800562 goto err_init_fw;
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700563 }
564
Avinash Patilbf354432014-10-31 16:08:26 +0530565 if (mwifiex_init_channel_scan_gap(adapter)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530566 mwifiex_dbg(adapter, ERROR,
567 "could not init channel stats table\n");
Avinash Patilbf354432014-10-31 16:08:26 +0530568 goto err_init_fw;
569 }
570
Avinash Patil0013c7c2014-11-05 19:38:11 +0530571 if (driver_mode) {
572 driver_mode &= MWIFIEX_DRIVER_MODE_BITMASK;
573 driver_mode |= MWIFIEX_DRIVER_MODE_STA;
574 }
575
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700576 rtnl_lock();
577 /* Create station interface by default */
Tom Gundersen6bab2e192015-03-18 11:13:39 +0100578 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d", NET_NAME_ENUM,
Amitkumar Karwar68b76e92013-11-14 19:10:37 -0800579 NL80211_IFTYPE_STATION, NULL, NULL);
580 if (IS_ERR(wdev)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530581 mwifiex_dbg(adapter, ERROR,
582 "cannot create default STA interface\n");
Amitkumar Karwarbec568f2013-11-14 19:10:38 -0800583 rtnl_unlock();
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700584 goto err_add_intf;
585 }
Avinash Patil0013c7c2014-11-05 19:38:11 +0530586
587 if (driver_mode & MWIFIEX_DRIVER_MODE_UAP) {
Tom Gundersen6bab2e192015-03-18 11:13:39 +0100588 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "uap%d", NET_NAME_ENUM,
Avinash Patil0013c7c2014-11-05 19:38:11 +0530589 NL80211_IFTYPE_AP, NULL, NULL);
590 if (IS_ERR(wdev)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530591 mwifiex_dbg(adapter, ERROR,
592 "cannot create AP interface\n");
Avinash Patil0013c7c2014-11-05 19:38:11 +0530593 rtnl_unlock();
594 goto err_add_intf;
595 }
596 }
597
598 if (driver_mode & MWIFIEX_DRIVER_MODE_P2P) {
Tom Gundersen6bab2e192015-03-18 11:13:39 +0100599 wdev = mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d", NET_NAME_ENUM,
Avinash Patil0013c7c2014-11-05 19:38:11 +0530600 NL80211_IFTYPE_P2P_CLIENT, NULL,
601 NULL);
602 if (IS_ERR(wdev)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530603 mwifiex_dbg(adapter, ERROR,
604 "cannot create p2p client interface\n");
Avinash Patil0013c7c2014-11-05 19:38:11 +0530605 rtnl_unlock();
606 goto err_add_intf;
607 }
608 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700609 rtnl_unlock();
610
611 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530612 mwifiex_dbg(adapter, MSG, "driver_version = %s\n", fmt);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700613 goto done;
614
615err_add_intf:
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700616 wiphy_unregister(adapter->wiphy);
617 wiphy_free(adapter->wiphy);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700618err_init_fw:
Daniel Drake232fde02013-07-13 10:57:10 -0400619 if (adapter->if_ops.disable_int)
620 adapter->if_ops.disable_int(adapter);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700621err_dnld_fw:
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530622 mwifiex_dbg(adapter, ERROR,
623 "info: %s: unregister device\n", __func__);
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700624 if (adapter->if_ops.unregister_dev)
625 adapter->if_ops.unregister_dev(adapter);
626
Amitkumar Karwar71973252014-12-31 02:36:38 -0800627 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
Amitkumar Karwar6b41f942013-07-22 19:17:55 -0700628 pr_debug("info: %s: shutdown mwifiex\n", __func__);
629 adapter->init_wait_q_woken = false;
630
631 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
632 wait_event_interruptible(adapter->init_wait_q,
633 adapter->init_wait_q_woken);
634 }
635 adapter->surprise_removed = true;
636 mwifiex_terminate_workqueue(adapter);
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700637 init_failed = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700638done:
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700639 if (adapter->cal_data) {
640 release_firmware(adapter->cal_data);
641 adapter->cal_data = NULL;
642 }
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700643 if (adapter->firmware) {
644 release_firmware(adapter->firmware);
645 adapter->firmware = NULL;
646 }
Amitkumar Karwarc3afd992013-07-30 17:18:15 -0700647 if (init_failed)
648 mwifiex_free_adapter(adapter);
649 up(sem);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700650 return;
651}
652
653/*
654 * This function initializes the hardware and gets firmware.
655 */
656static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
657{
658 int ret;
659
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700660 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
661 adapter->dev, GFP_KERNEL, adapter,
662 mwifiex_fw_dpc);
663 if (ret < 0)
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530664 mwifiex_dbg(adapter, ERROR,
665 "request_firmware_nowait error %d\n", ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700666 return ret;
667}
668
669/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700670 * CFG802.11 network device handler for open.
671 *
672 * Starts the data queue.
673 */
674static int
675mwifiex_open(struct net_device *dev)
676{
Johannes Bergea2325b2015-01-19 15:54:36 +0530677 netif_carrier_off(dev);
678
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700679 return 0;
680}
681
682/*
683 * CFG802.11 network device handler for close.
684 */
685static int
686mwifiex_close(struct net_device *dev)
687{
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700688 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
689
690 if (priv->scan_request) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530691 mwifiex_dbg(priv->adapter, INFO,
692 "aborting scan on ndo_stop\n");
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700693 cfg80211_scan_done(priv->scan_request, 1);
694 priv->scan_request = NULL;
Amitkumar Karwar75ab7532013-05-17 17:50:20 -0700695 priv->scan_aborting = true;
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700696 }
697
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700698 return 0;
699}
700
Avinash Patila1777322015-06-22 19:06:17 +0530701static bool
702mwifiex_bypass_tx_queue(struct mwifiex_private *priv,
703 struct sk_buff *skb)
704{
705 struct ethhdr *eth_hdr = (struct ethhdr *)skb->data;
706
707 if (ntohs(eth_hdr->h_proto) == ETH_P_PAE ||
708 mwifiex_is_skb_mgmt_frame(skb) ||
709 (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA &&
710 ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
711 (ntohs(eth_hdr->h_proto) == ETH_P_TDLS))) {
712 mwifiex_dbg(priv->adapter, DATA,
713 "bypass txqueue; eth type %#x, mgmt %d\n",
714 ntohs(eth_hdr->h_proto),
715 mwifiex_is_skb_mgmt_frame(skb));
716 return true;
717 }
718
719 return false;
720}
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700721/*
Stone Piaoe39faa72012-09-25 20:23:32 -0700722 * Add buffer into wmm tx queue and queue work to transmit it.
723 */
724int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
725{
Avinash Patil47411a02012-11-01 18:44:16 -0700726 struct netdev_queue *txq;
727 int index = mwifiex_1d_to_wmm_queue[skb->priority];
728
729 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
730 txq = netdev_get_tx_queue(priv->netdev, index);
731 if (!netif_tx_queue_stopped(txq)) {
732 netif_tx_stop_queue(txq);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530733 mwifiex_dbg(priv->adapter, DATA,
734 "stop queue: %d\n", index);
Avinash Patil47411a02012-11-01 18:44:16 -0700735 }
736 }
737
Avinash Patila1777322015-06-22 19:06:17 +0530738 if (mwifiex_bypass_tx_queue(priv, skb)) {
739 atomic_inc(&priv->adapter->tx_pending);
740 atomic_inc(&priv->adapter->bypass_tx_pending);
741 mwifiex_wmm_add_buf_bypass_txqueue(priv, skb);
742 } else {
743 atomic_inc(&priv->adapter->tx_pending);
744 mwifiex_wmm_add_buf_txqueue(priv, skb);
745 }
Stone Piaoe39faa72012-09-25 20:23:32 -0700746
Shengzhen Lib2713f62015-03-13 17:37:54 +0530747 mwifiex_queue_main_work(priv->adapter);
Stone Piaoe39faa72012-09-25 20:23:32 -0700748
749 return 0;
750}
751
Amitkumar Karwar18ca4382014-11-25 06:43:06 -0800752struct sk_buff *
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800753mwifiex_clone_skb_for_tx_status(struct mwifiex_private *priv,
Amitkumar Karwar18ca4382014-11-25 06:43:06 -0800754 struct sk_buff *skb, u8 flag, u64 *cookie)
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800755{
756 struct sk_buff *orig_skb = skb;
757 struct mwifiex_txinfo *tx_info, *orig_tx_info;
758
759 skb = skb_clone(skb, GFP_ATOMIC);
760 if (skb) {
761 unsigned long flags;
762 int id;
763
764 spin_lock_irqsave(&priv->ack_status_lock, flags);
765 id = idr_alloc(&priv->ack_status_frames, orig_skb,
766 1, 0xff, GFP_ATOMIC);
767 spin_unlock_irqrestore(&priv->ack_status_lock, flags);
768
769 if (id >= 0) {
770 tx_info = MWIFIEX_SKB_TXCB(skb);
771 tx_info->ack_frame_id = id;
772 tx_info->flags |= flag;
773 orig_tx_info = MWIFIEX_SKB_TXCB(orig_skb);
774 orig_tx_info->ack_frame_id = id;
775 orig_tx_info->flags |= flag;
Amitkumar Karwar18ca4382014-11-25 06:43:06 -0800776
777 if (flag == MWIFIEX_BUF_FLAG_ACTION_TX_STATUS && cookie)
778 orig_tx_info->cookie = *cookie;
779
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800780 } else if (skb_shared(skb)) {
781 kfree_skb(orig_skb);
782 } else {
783 kfree_skb(skb);
784 skb = orig_skb;
785 }
786 } else {
787 /* couldn't clone -- lose tx status ... */
788 skb = orig_skb;
789 }
790
791 return skb;
792}
793
Stone Piaoe39faa72012-09-25 20:23:32 -0700794/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700795 * CFG802.11 network device handler for data transmission.
796 */
797static int
798mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
799{
800 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700801 struct sk_buff *new_skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700802 struct mwifiex_txinfo *tx_info;
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800803 bool multicast;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700804
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530805 mwifiex_dbg(priv->adapter, DATA,
806 "data: %lu BSS(%d-%d): Data <= kernel\n",
807 jiffies, priv->bss_type, priv->bss_num);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700808
809 if (priv->adapter->surprise_removed) {
Christoph Fritzb53575e2011-05-08 22:50:09 +0200810 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700811 priv->stats.tx_dropped++;
812 return 0;
813 }
814 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530815 mwifiex_dbg(priv->adapter, ERROR,
816 "Tx: bad skb len %d\n", skb->len);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200817 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700818 priv->stats.tx_dropped++;
819 return 0;
820 }
821 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530822 mwifiex_dbg(priv->adapter, DATA,
823 "data: Tx: insufficient skb headroom %d\n",
824 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700825 /* Insufficient skb headroom - allocate a new skb */
826 new_skb =
827 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
828 if (unlikely(!new_skb)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530829 mwifiex_dbg(priv->adapter, ERROR,
830 "Tx: cannot alloca new_skb\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +0200831 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700832 priv->stats.tx_dropped++;
833 return 0;
834 }
835 kfree_skb(skb);
836 skb = new_skb;
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530837 mwifiex_dbg(priv->adapter, INFO,
838 "info: new skb headroomd %d\n",
839 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700840 }
841
842 tx_info = MWIFIEX_SKB_TXCB(skb);
Amitkumar Karward76744a2014-06-20 11:45:25 -0700843 memset(tx_info, 0, sizeof(*tx_info));
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800844 tx_info->bss_num = priv->bss_num;
845 tx_info->bss_type = priv->bss_type;
Ujjal Roya1ed4842013-12-02 23:17:55 -0800846 tx_info->pkt_len = skb->len;
Avinash Patil47411a02012-11-01 18:44:16 -0700847
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800848 multicast = is_multicast_ether_addr(skb->data);
849
850 if (unlikely(!multicast && skb->sk &&
851 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS &&
852 priv->adapter->fw_api_ver == MWIFIEX_FW_V15))
853 skb = mwifiex_clone_skb_for_tx_status(priv,
854 skb,
Amitkumar Karwar18ca4382014-11-25 06:43:06 -0800855 MWIFIEX_BUF_FLAG_EAPOL_TX_STATUS, NULL);
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800856
Avinash Patil47411a02012-11-01 18:44:16 -0700857 /* Record the current time the packet was queued; used to
858 * determine the amount of time the packet was queued in
859 * the driver before it was sent to the firmware.
860 * The delay is then sent along with the packet to the
861 * firmware for aggregate delay calculation for stats and
862 * MSDU lifetime expiry.
863 */
Thomas Gleixnerc64800e2014-06-12 08:31:34 +0100864 __net_timestamp(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700865
Avinash Patil9927baa2014-11-13 21:54:16 +0530866 if (ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
867 priv->bss_type == MWIFIEX_BSS_TYPE_STA &&
868 !ether_addr_equal_unaligned(priv->cfg_bssid, skb->data)) {
869 if (priv->adapter->auto_tdls && priv->check_tdls_tx)
870 mwifiex_tdls_check_tx(priv, skb);
871 }
872
Stone Piaoe39faa72012-09-25 20:23:32 -0700873 mwifiex_queue_tx_pkt(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700874
875 return 0;
876}
877
878/*
879 * CFG802.11 network device handler for setting MAC address.
880 */
881static int
882mwifiex_set_mac_address(struct net_device *dev, void *addr)
883{
884 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700885 struct sockaddr *hw_addr = addr;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700886 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700887
888 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
889
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700890 /* Send request to firmware */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -0800891 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
892 HostCmd_ACT_GEN_SET, 0, NULL, true);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700893
894 if (!ret)
895 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
896 else
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530897 mwifiex_dbg(priv->adapter, ERROR,
898 "set mac address failed: ret=%d\n", ret);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700899
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700900 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
901
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700902 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700903}
904
905/*
906 * CFG802.11 network device handler for setting multicast list.
907 */
908static void mwifiex_set_multicast_list(struct net_device *dev)
909{
910 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700911 struct mwifiex_multicast_list mcast_list;
912
913 if (dev->flags & IFF_PROMISC) {
914 mcast_list.mode = MWIFIEX_PROMISC_MODE;
915 } else if (dev->flags & IFF_ALLMULTI ||
916 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
917 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
918 } else {
919 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
Daniel Drake6390d882013-06-14 15:24:24 -0400920 mcast_list.num_multicast_addr =
921 mwifiex_copy_mcast_addr(&mcast_list, dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700922 }
923 mwifiex_request_set_multicast_list(priv, &mcast_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700924}
925
926/*
927 * CFG802.11 network device handler for transmission timeout.
928 */
929static void
930mwifiex_tx_timeout(struct net_device *dev)
931{
932 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
933
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700934 priv->num_tx_timeout++;
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800935 priv->tx_timeout_cnt++;
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530936 mwifiex_dbg(priv->adapter, ERROR,
937 "%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
938 jiffies, priv->tx_timeout_cnt, priv->bss_type,
939 priv->bss_num);
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800940 mwifiex_set_trans_start(dev);
941
942 if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
943 priv->adapter->if_ops.card_reset) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530944 mwifiex_dbg(priv->adapter, ERROR,
945 "tx_timeout_cnt exceeds threshold.\t"
946 "Triggering card reset!\n");
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800947 priv->adapter->if_ops.card_reset(priv->adapter);
948 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700949}
950
Zhaoyang Liu7e4e5d22015-09-18 06:32:17 -0700951void mwifiex_multi_chan_resync(struct mwifiex_adapter *adapter)
952{
953 struct usb_card_rec *card = adapter->card;
954 struct mwifiex_private *priv;
955 u16 tx_buf_size;
956 int i, ret;
957
958 card->mc_resync_flag = true;
959 for (i = 0; i < MWIFIEX_TX_DATA_PORT; i++) {
960 if (atomic_read(&card->port[i].tx_data_urb_pending)) {
961 mwifiex_dbg(adapter, WARN, "pending data urb in sys\n");
962 return;
963 }
964 }
965
966 card->mc_resync_flag = false;
967 tx_buf_size = 0xffff;
968 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
969 ret = mwifiex_send_cmd(priv, HostCmd_CMD_RECONFIGURE_TX_BUFF,
970 HostCmd_ACT_GEN_SET, 0, &tx_buf_size, false);
971 if (ret)
972 mwifiex_dbg(adapter, ERROR,
973 "send reconfig tx buf size cmd err\n");
974}
975EXPORT_SYMBOL_GPL(mwifiex_multi_chan_resync);
976
Amitkumar Karwarfc697152015-05-26 06:34:31 -0700977void mwifiex_drv_info_dump(struct mwifiex_adapter *adapter)
Xinming Hu11cd07a2014-12-23 19:14:10 +0530978{
979 void *p;
980 char drv_version[64];
981 struct usb_card_rec *cardp;
982 struct sdio_mmc_card *sdio_card;
983 struct mwifiex_private *priv;
984 int i, idx;
985 struct netdev_queue *txq;
986 struct mwifiex_debug_info *debug_info;
987
988 if (adapter->drv_info_dump) {
989 vfree(adapter->drv_info_dump);
Amitkumar Karwar0769b272015-05-26 06:34:28 -0700990 adapter->drv_info_dump = NULL;
Xinming Hu11cd07a2014-12-23 19:14:10 +0530991 adapter->drv_info_size = 0;
992 }
993
Amitkumar Karwar9cc0dbf02015-05-26 06:34:30 -0700994 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump start===\n");
Xinming Hu11cd07a2014-12-23 19:14:10 +0530995
996 adapter->drv_info_dump = vzalloc(MWIFIEX_DRV_INFO_SIZE_MAX);
997
998 if (!adapter->drv_info_dump)
999 return;
1000
1001 p = (char *)(adapter->drv_info_dump);
1002 p += sprintf(p, "driver_name = " "\"mwifiex\"\n");
1003
1004 mwifiex_drv_get_driver_version(adapter, drv_version,
1005 sizeof(drv_version) - 1);
1006 p += sprintf(p, "driver_version = %s\n", drv_version);
1007
1008 if (adapter->iface_type == MWIFIEX_USB) {
1009 cardp = (struct usb_card_rec *)adapter->card;
1010 p += sprintf(p, "tx_cmd_urb_pending = %d\n",
1011 atomic_read(&cardp->tx_cmd_urb_pending));
Zhaoyang Liu308fe292015-09-18 06:32:16 -07001012 p += sprintf(p, "tx_data_urb_pending_port_0 = %d\n",
1013 atomic_read(&cardp->port[0].tx_data_urb_pending));
1014 p += sprintf(p, "tx_data_urb_pending_port_1 = %d\n",
1015 atomic_read(&cardp->port[1].tx_data_urb_pending));
Xinming Hu11cd07a2014-12-23 19:14:10 +05301016 p += sprintf(p, "rx_cmd_urb_pending = %d\n",
1017 atomic_read(&cardp->rx_cmd_urb_pending));
1018 p += sprintf(p, "rx_data_urb_pending = %d\n",
1019 atomic_read(&cardp->rx_data_urb_pending));
1020 }
1021
1022 p += sprintf(p, "tx_pending = %d\n",
1023 atomic_read(&adapter->tx_pending));
1024 p += sprintf(p, "rx_pending = %d\n",
1025 atomic_read(&adapter->rx_pending));
1026
1027 if (adapter->iface_type == MWIFIEX_SDIO) {
1028 sdio_card = (struct sdio_mmc_card *)adapter->card;
1029 p += sprintf(p, "\nmp_rd_bitmap=0x%x curr_rd_port=0x%x\n",
1030 sdio_card->mp_rd_bitmap, sdio_card->curr_rd_port);
1031 p += sprintf(p, "mp_wr_bitmap=0x%x curr_wr_port=0x%x\n",
1032 sdio_card->mp_wr_bitmap, sdio_card->curr_wr_port);
1033 }
1034
1035 for (i = 0; i < adapter->priv_num; i++) {
1036 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
1037 continue;
1038 priv = adapter->priv[i];
1039 p += sprintf(p, "\n[interface : \"%s\"]\n",
1040 priv->netdev->name);
1041 p += sprintf(p, "wmm_tx_pending[0] = %d\n",
1042 atomic_read(&priv->wmm_tx_pending[0]));
1043 p += sprintf(p, "wmm_tx_pending[1] = %d\n",
1044 atomic_read(&priv->wmm_tx_pending[1]));
1045 p += sprintf(p, "wmm_tx_pending[2] = %d\n",
1046 atomic_read(&priv->wmm_tx_pending[2]));
1047 p += sprintf(p, "wmm_tx_pending[3] = %d\n",
1048 atomic_read(&priv->wmm_tx_pending[3]));
1049 p += sprintf(p, "media_state=\"%s\"\n", !priv->media_connected ?
1050 "Disconnected" : "Connected");
1051 p += sprintf(p, "carrier %s\n", (netif_carrier_ok(priv->netdev)
1052 ? "on" : "off"));
1053 for (idx = 0; idx < priv->netdev->num_tx_queues; idx++) {
1054 txq = netdev_get_tx_queue(priv->netdev, idx);
1055 p += sprintf(p, "tx queue %d:%s ", idx,
1056 netif_tx_queue_stopped(txq) ?
1057 "stopped" : "started");
1058 }
1059 p += sprintf(p, "\n%s: num_tx_timeout = %d\n",
1060 priv->netdev->name, priv->num_tx_timeout);
1061 }
1062
Xinming Hu809c6ea2014-12-23 19:14:11 +05301063 if (adapter->iface_type == MWIFIEX_SDIO) {
Amitkumar Karwar9cc0dbf02015-05-26 06:34:30 -07001064 p += sprintf(p, "\n=== SDIO register dump===\n");
Xinming Hu809c6ea2014-12-23 19:14:11 +05301065 if (adapter->if_ops.reg_dump)
1066 p += adapter->if_ops.reg_dump(adapter, p);
1067 }
1068
Amitkumar Karwar9cc0dbf02015-05-26 06:34:30 -07001069 p += sprintf(p, "\n=== more debug information\n");
Xinming Hu11cd07a2014-12-23 19:14:10 +05301070 debug_info = kzalloc(sizeof(*debug_info), GFP_KERNEL);
1071 if (debug_info) {
1072 for (i = 0; i < adapter->priv_num; i++) {
1073 if (!adapter->priv[i] || !adapter->priv[i]->netdev)
1074 continue;
1075 priv = adapter->priv[i];
1076 mwifiex_get_debug_info(priv, debug_info);
1077 p += mwifiex_debug_info_to_buffer(priv, p, debug_info);
1078 break;
1079 }
1080 kfree(debug_info);
1081 }
1082
1083 adapter->drv_info_size = p - adapter->drv_info_dump;
Amitkumar Karwar9cc0dbf02015-05-26 06:34:30 -07001084 mwifiex_dbg(adapter, MSG, "===mwifiex driverinfo dump end===\n");
Xinming Hu11cd07a2014-12-23 19:14:10 +05301085}
Amitkumar Karwarfc697152015-05-26 06:34:31 -07001086EXPORT_SYMBOL_GPL(mwifiex_drv_info_dump);
Xinming Hu11cd07a2014-12-23 19:14:10 +05301087
Amitkumar Karwar57670ee2015-05-26 06:34:32 -07001088void mwifiex_upload_device_dump(struct mwifiex_adapter *adapter)
1089{
1090 u8 idx, *dump_data, *fw_dump_ptr;
1091 u32 dump_len;
1092
1093 dump_len = (strlen("========Start dump driverinfo========\n") +
1094 adapter->drv_info_size +
1095 strlen("\n========End dump========\n"));
1096
1097 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1098 struct memory_type_mapping *entry =
1099 &adapter->mem_type_mapping_tbl[idx];
1100
1101 if (entry->mem_ptr) {
1102 dump_len += (strlen("========Start dump ") +
1103 strlen(entry->mem_name) +
1104 strlen("========\n") +
1105 (entry->mem_size + 1) +
1106 strlen("\n========End dump========\n"));
1107 }
1108 }
1109
1110 dump_data = vzalloc(dump_len + 1);
1111 if (!dump_data)
1112 goto done;
1113
1114 fw_dump_ptr = dump_data;
1115
1116 /* Dump all the memory data into single file, a userspace script will
1117 * be used to split all the memory data to multiple files
1118 */
1119 mwifiex_dbg(adapter, MSG,
1120 "== mwifiex dump information to /sys/class/devcoredump start");
1121
1122 strcpy(fw_dump_ptr, "========Start dump driverinfo========\n");
1123 fw_dump_ptr += strlen("========Start dump driverinfo========\n");
1124 memcpy(fw_dump_ptr, adapter->drv_info_dump, adapter->drv_info_size);
1125 fw_dump_ptr += adapter->drv_info_size;
1126 strcpy(fw_dump_ptr, "\n========End dump========\n");
1127 fw_dump_ptr += strlen("\n========End dump========\n");
1128
1129 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1130 struct memory_type_mapping *entry =
1131 &adapter->mem_type_mapping_tbl[idx];
1132
1133 if (entry->mem_ptr) {
1134 strcpy(fw_dump_ptr, "========Start dump ");
1135 fw_dump_ptr += strlen("========Start dump ");
1136
1137 strcpy(fw_dump_ptr, entry->mem_name);
1138 fw_dump_ptr += strlen(entry->mem_name);
1139
1140 strcpy(fw_dump_ptr, "========\n");
1141 fw_dump_ptr += strlen("========\n");
1142
1143 memcpy(fw_dump_ptr, entry->mem_ptr, entry->mem_size);
1144 fw_dump_ptr += entry->mem_size;
1145
1146 strcpy(fw_dump_ptr, "\n========End dump========\n");
1147 fw_dump_ptr += strlen("\n========End dump========\n");
1148 }
1149 }
1150
1151 /* device dump data will be free in device coredump release function
1152 * after 5 min
1153 */
1154 dev_coredumpv(adapter->dev, dump_data, dump_len, GFP_KERNEL);
1155 mwifiex_dbg(adapter, MSG,
1156 "== mwifiex dump information to /sys/class/devcoredump end");
1157
1158done:
1159 for (idx = 0; idx < adapter->num_mem_types; idx++) {
1160 struct memory_type_mapping *entry =
1161 &adapter->mem_type_mapping_tbl[idx];
1162
1163 if (entry->mem_ptr) {
1164 vfree(entry->mem_ptr);
1165 entry->mem_ptr = NULL;
1166 }
1167 entry->mem_size = 0;
1168 }
1169
1170 if (adapter->drv_info_dump) {
1171 vfree(adapter->drv_info_dump);
1172 adapter->drv_info_dump = NULL;
1173 adapter->drv_info_size = 0;
1174 }
1175}
1176EXPORT_SYMBOL_GPL(mwifiex_upload_device_dump);
1177
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001178/*
1179 * CFG802.11 network device handler for statistics retrieval.
1180 */
1181static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
1182{
1183 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1184
1185 return &priv->stats;
1186}
1187
Avinash Patil47411a02012-11-01 18:44:16 -07001188static u16
Jason Wangf663dd92014-01-10 16:18:26 +08001189mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +01001190 void *accel_priv, select_queue_fallback_t fallback)
Avinash Patil47411a02012-11-01 18:44:16 -07001191{
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -08001192 skb->priority = cfg80211_classify8021d(skb, NULL);
Avinash Patil47411a02012-11-01 18:44:16 -07001193 return mwifiex_1d_to_wmm_queue[skb->priority];
1194}
1195
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001196/* Network device handlers */
1197static const struct net_device_ops mwifiex_netdev_ops = {
1198 .ndo_open = mwifiex_open,
1199 .ndo_stop = mwifiex_close,
1200 .ndo_start_xmit = mwifiex_hard_start_xmit,
1201 .ndo_set_mac_address = mwifiex_set_mac_address,
Amitkumar Karwarfe243722015-10-09 04:26:34 -07001202 .ndo_validate_addr = eth_validate_addr,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001203 .ndo_tx_timeout = mwifiex_tx_timeout,
1204 .ndo_get_stats = mwifiex_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001205 .ndo_set_rx_mode = mwifiex_set_multicast_list,
Avinash Patil47411a02012-11-01 18:44:16 -07001206 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001207};
1208
1209/*
1210 * This function initializes the private structure parameters.
1211 *
1212 * The following wait queues are initialized -
1213 * - IOCTL wait queue
1214 * - Command wait queue
1215 * - Statistics wait queue
1216 *
1217 * ...and the following default parameters are set -
1218 * - Current key index : Set to 0
1219 * - Rate index : Set to auto
1220 * - Media connected : Set to disconnected
1221 * - Adhoc link sensed : Set to false
1222 * - Nick name : Set to null
1223 * - Number of Tx timeout : Set to 0
1224 * - Device address : Set to current address
Xinming Hucbf6e052014-12-23 19:14:07 +05301225 * - Rx histogram statistc : Set to 0
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001226 *
1227 * In addition, the CFG80211 work queue is also created.
1228 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001229void mwifiex_init_priv_params(struct mwifiex_private *priv,
Avinash Patil047eaaf2015-01-28 15:42:05 +05301230 struct net_device *dev)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001231{
1232 dev->netdev_ops = &mwifiex_netdev_ops;
Amitkumar Karwarf16fdc92013-05-06 19:46:54 -07001233 dev->destructor = free_netdev;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001234 /* Initialize private structure */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001235 priv->current_key_index = 0;
1236 priv->media_connected = false;
Avinash Patilede98bf2012-05-08 18:30:28 -07001237 memset(priv->mgmt_ie, 0,
1238 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
Avinash Patilf31acab2012-05-08 18:30:29 -07001239 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
1240 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
1241 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
Avinash Patil2ade5662015-01-28 15:54:20 +05301242 priv->gen_idx = MWIFIEX_AUTO_IDX_MASK;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001243 priv->num_tx_timeout = 0;
Avinash Patil8d05eb22015-01-28 15:42:01 +05301244 ether_addr_copy(priv->curr_addr, priv->adapter->perm_addr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001245 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
Xinming Hucbf6e052014-12-23 19:14:07 +05301246
1247 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA ||
1248 GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
1249 priv->hist_data = kmalloc(sizeof(*priv->hist_data), GFP_KERNEL);
1250 if (priv->hist_data)
1251 mwifiex_hist_data_reset(priv);
1252 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001253}
1254
1255/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001256 * This function check if command is pending.
1257 */
1258int is_command_pending(struct mwifiex_adapter *adapter)
1259{
1260 unsigned long flags;
1261 int is_cmd_pend_q_empty;
1262
1263 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
1264 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
1265 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
1266
1267 return !is_cmd_pend_q_empty;
1268}
1269
1270/*
Avinash Patil6e251172014-09-12 20:08:59 +05301271 * This is the RX work queue function.
1272 *
1273 * It handles the RX operations.
1274 */
1275static void mwifiex_rx_work_queue(struct work_struct *work)
1276{
1277 struct mwifiex_adapter *adapter =
1278 container_of(work, struct mwifiex_adapter, rx_work);
1279
1280 if (adapter->surprise_removed)
1281 return;
1282 mwifiex_process_rx(adapter);
1283}
1284
1285/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001286 * This is the main work queue function.
1287 *
1288 * It handles the main process, which in turn handles the complete
1289 * driver operations.
1290 */
1291static void mwifiex_main_work_queue(struct work_struct *work)
1292{
1293 struct mwifiex_adapter *adapter =
1294 container_of(work, struct mwifiex_adapter, main_work);
1295
1296 if (adapter->surprise_removed)
1297 return;
1298 mwifiex_main_process(adapter);
1299}
1300
1301/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001302 * This function adds the card.
1303 *
1304 * This function follows the following major steps to set up the device -
1305 * - Initialize software. This includes probing the card, registering
1306 * the interface operations table, and allocating/initializing the
1307 * adapter structure
1308 * - Set up the netlink socket
1309 * - Create and start the main work queue
1310 * - Register the device
1311 * - Initialize firmware and hardware
1312 * - Add logical interfaces
1313 */
1314int
1315mwifiex_add_card(void *card, struct semaphore *sem,
Amitkumar Karward930fae2011-10-11 17:41:21 -07001316 struct mwifiex_if_ops *if_ops, u8 iface_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001317{
Amitkumar Karwar2be78592011-04-15 20:50:42 -07001318 struct mwifiex_adapter *adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001319
1320 if (down_interruptible(sem))
1321 goto exit_sem_err;
1322
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001323 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001324 pr_err("%s: software init failed\n", __func__);
1325 goto err_init_sw;
1326 }
1327
Amitkumar Karward930fae2011-10-11 17:41:21 -07001328 adapter->iface_type = iface_type;
Amitkumar Karwar6b41f942013-07-22 19:17:55 -07001329 adapter->card_sem = sem;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001330
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001331 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001332 adapter->surprise_removed = false;
1333 init_waitqueue_head(&adapter->init_wait_q);
1334 adapter->is_suspended = false;
1335 adapter->hs_activated = false;
1336 init_waitqueue_head(&adapter->hs_activate_wait_q);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001337 init_waitqueue_head(&adapter->cmd_wait_q.wait);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001338 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001339 adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001340
Avinash Patilec4a16b2014-11-05 17:04:27 +05301341 if ((num_possible_cpus() > 1) || adapter->iface_type == MWIFIEX_USB) {
Avinash Patil6e251172014-09-12 20:08:59 +05301342 adapter->rx_work_enabled = true;
1343 pr_notice("rx work enabled, cpus %d\n", num_possible_cpus());
1344 }
1345
Amitkumar Karwar448a71c2013-10-11 18:33:04 -07001346 adapter->workqueue =
1347 alloc_workqueue("MWIFIEX_WORK_QUEUE",
1348 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_UNBOUND, 1);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001349 if (!adapter->workqueue)
1350 goto err_kmalloc;
1351
1352 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
Avinash Patil6e251172014-09-12 20:08:59 +05301353
1354 if (adapter->rx_work_enabled) {
1355 adapter->rx_workqueue = alloc_workqueue("MWIFIEX_RX_WORK_QUEUE",
1356 WQ_HIGHPRI |
1357 WQ_MEM_RECLAIM |
1358 WQ_UNBOUND, 1);
1359 if (!adapter->rx_workqueue)
1360 goto err_kmalloc;
1361
1362 INIT_WORK(&adapter->rx_work, mwifiex_rx_work_queue);
1363 }
1364
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001365 /* Register the device. Fill up the private data structure with relevant
Daniel Drake232fde02013-07-13 10:57:10 -04001366 information from the card. */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001367 if (adapter->if_ops.register_dev(adapter)) {
1368 pr_err("%s: failed to register mwifiex device\n", __func__);
1369 goto err_registerdev;
1370 }
1371
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001372 if (mwifiex_init_hw_fw(adapter)) {
1373 pr_err("%s: firmware init failed\n", __func__);
1374 goto err_init_fw;
1375 }
Amitkumar Karwar2be78592011-04-15 20:50:42 -07001376
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001377 return 0;
1378
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001379err_init_fw:
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001380 pr_debug("info: %s: unregister device\n", __func__);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -07001381 if (adapter->if_ops.unregister_dev)
1382 adapter->if_ops.unregister_dev(adapter);
Amitkumar Karwar71973252014-12-31 02:36:38 -08001383 if (adapter->hw_status == MWIFIEX_HW_STATUS_READY) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001384 pr_debug("info: %s: shutdown mwifiex\n", __func__);
1385 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001386
1387 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001388 wait_event_interruptible(adapter->init_wait_q,
1389 adapter->init_wait_q_woken);
1390 }
Amitkumar Karwar6b41f942013-07-22 19:17:55 -07001391err_registerdev:
1392 adapter->surprise_removed = true;
1393 mwifiex_terminate_workqueue(adapter);
1394err_kmalloc:
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001395 mwifiex_free_adapter(adapter);
1396
1397err_init_sw:
1398 up(sem);
1399
1400exit_sem_err:
1401 return -1;
1402}
1403EXPORT_SYMBOL_GPL(mwifiex_add_card);
1404
1405/*
1406 * This function removes the card.
1407 *
1408 * This function follows the following major steps to remove the device -
1409 * - Stop data traffic
1410 * - Shutdown firmware
1411 * - Remove the logical interfaces
1412 * - Terminate the work queue
1413 * - Unregister the device
1414 * - Free the adapter structure
1415 */
1416int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
1417{
1418 struct mwifiex_private *priv = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001419 int i;
1420
1421 if (down_interruptible(sem))
1422 goto exit_sem_err;
1423
1424 if (!adapter)
1425 goto exit_remove;
1426
Daniel Drake232fde02013-07-13 10:57:10 -04001427 /* We can no longer handle interrupts once we start doing the teardown
1428 * below. */
1429 if (adapter->if_ops.disable_int)
1430 adapter->if_ops.disable_int(adapter);
1431
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001432 adapter->surprise_removed = true;
1433
Marc Yang9d2e85e2014-12-31 02:36:39 -08001434 mwifiex_terminate_workqueue(adapter);
1435
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001436 /* Stop data */
1437 for (i = 0; i < adapter->priv_num; i++) {
1438 priv = adapter->priv[i];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001439 if (priv && priv->netdev) {
Avinash Patil47411a02012-11-01 18:44:16 -07001440 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001441 if (netif_carrier_ok(priv->netdev))
1442 netif_carrier_off(priv->netdev);
1443 }
1444 }
1445
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301446 mwifiex_dbg(adapter, CMD,
1447 "cmd: calling mwifiex_shutdown_drv...\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001448 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001449
1450 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001451 wait_event_interruptible(adapter->init_wait_q,
1452 adapter->init_wait_q_woken);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301453 mwifiex_dbg(adapter, CMD,
1454 "cmd: mwifiex_shutdown_drv done\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001455 if (atomic_read(&adapter->rx_pending) ||
1456 atomic_read(&adapter->tx_pending) ||
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001457 atomic_read(&adapter->cmd_pending)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301458 mwifiex_dbg(adapter, ERROR,
1459 "rx_pending=%d, tx_pending=%d,\t"
1460 "cmd_pending=%d\n",
1461 atomic_read(&adapter->rx_pending),
1462 atomic_read(&adapter->tx_pending),
1463 atomic_read(&adapter->cmd_pending));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001464 }
1465
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001466 for (i = 0; i < adapter->priv_num; i++) {
1467 priv = adapter->priv[i];
1468
1469 if (!priv)
1470 continue;
1471
1472 rtnl_lock();
Avinash Patil4facc342015-01-28 15:42:00 +05301473 if (priv->netdev &&
1474 priv->wdev.iftype != NL80211_IFTYPE_UNSPECIFIED)
1475 mwifiex_del_virtual_intf(adapter->wiphy, &priv->wdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -07001476 rtnl_unlock();
1477 }
1478
Amitkumar Karwarc2868ad2013-12-02 23:17:57 -08001479 wiphy_unregister(adapter->wiphy);
1480 wiphy_free(adapter->wiphy);
Avinash Patil64b05e22012-05-08 18:30:13 -07001481
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001482 /* Unregister device */
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301483 mwifiex_dbg(adapter, INFO,
1484 "info: unregister device\n");
Amitkumar Karwar4daffe32012-04-18 20:08:28 -07001485 if (adapter->if_ops.unregister_dev)
1486 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001487 /* Free adapter structure */
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301488 mwifiex_dbg(adapter, INFO,
1489 "info: free adapter\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001490 mwifiex_free_adapter(adapter);
1491
1492exit_remove:
1493 up(sem);
1494exit_sem_err:
1495 return 0;
1496}
1497EXPORT_SYMBOL_GPL(mwifiex_remove_card);
1498
Joe Perches36925e52015-08-31 10:46:45 -07001499void _mwifiex_dbg(const struct mwifiex_adapter *adapter, int mask,
1500 const char *fmt, ...)
1501{
1502 struct va_format vaf;
1503 va_list args;
1504
1505 if (!adapter->dev || !(adapter->debug_mask & mask))
1506 return;
1507
1508 va_start(args, fmt);
1509
1510 vaf.fmt = fmt;
1511 vaf.va = &args;
1512
1513 dev_info(adapter->dev, "%pV", &vaf);
1514
1515 va_end(args);
1516}
1517EXPORT_SYMBOL_GPL(_mwifiex_dbg);
1518
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001519/*
1520 * This function initializes the module.
1521 *
1522 * The debug FS is also initialized if configured.
1523 */
1524static int
1525mwifiex_init_module(void)
1526{
1527#ifdef CONFIG_DEBUG_FS
1528 mwifiex_debugfs_init();
1529#endif
1530 return 0;
1531}
1532
1533/*
1534 * This function cleans up the module.
1535 *
1536 * The debug FS is removed if available.
1537 */
1538static void
1539mwifiex_cleanup_module(void)
1540{
1541#ifdef CONFIG_DEBUG_FS
1542 mwifiex_debugfs_remove();
1543#endif
1544}
1545
1546module_init(mwifiex_init_module);
1547module_exit(mwifiex_cleanup_module);
1548
1549MODULE_AUTHOR("Marvell International Ltd.");
1550MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
1551MODULE_VERSION(VERSION);
1552MODULE_LICENSE("GPL v2");