blob: eb85186186224800b43f280c1300d2b9448023a8 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: major functions
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "main.h"
21#include "wmm.h"
22#include "cfg80211.h"
23#include "11n.h"
24
25#define VERSION "1.0"
26
27const char driver_version[] = "mwifiex " VERSION " (%s) ";
28
Bing Zhao5e6e3a92011-03-21 18:00:50 -070029/*
30 * This function registers the device and performs all the necessary
31 * initializations.
32 *
33 * The following initialization operations are performed -
34 * - Allocate adapter structure
35 * - Save interface specific operations table in adapter
36 * - Call interface specific initialization routine
37 * - Allocate private structures
38 * - Set default adapter structure parameters
39 * - Initialize locks
40 *
41 * In case of any errors during inittialization, this function also ensures
42 * proper cleanup before exiting.
43 */
44static int mwifiex_register(void *card, struct mwifiex_if_ops *if_ops,
Amitkumar Karwar287546d2011-06-08 20:39:20 +053045 void **padapter)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070046{
Amitkumar Karwar2be78592011-04-15 20:50:42 -070047 struct mwifiex_adapter *adapter;
48 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070049
50 adapter = kzalloc(sizeof(struct mwifiex_adapter), GFP_KERNEL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070051 if (!adapter)
Christoph Fritzb53575e2011-05-08 22:50:09 +020052 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070053
Amitkumar Karwar287546d2011-06-08 20:39:20 +053054 *padapter = adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070055 adapter->card = card;
56
57 /* Save interface specific operations in adapter */
58 memmove(&adapter->if_ops, if_ops, sizeof(struct mwifiex_if_ops));
59
60 /* card specific initialization has been deferred until now .. */
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070061 if (adapter->if_ops.init_if)
62 if (adapter->if_ops.init_if(adapter))
63 goto error;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070064
65 adapter->priv_num = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070066
Avinash Patil64b05e22012-05-08 18:30:13 -070067 for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
68 /* Allocate memory for private structure */
69 adapter->priv[i] =
70 kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
71 if (!adapter->priv[i])
72 goto error;
73
74 adapter->priv[i]->adapter = adapter;
Avinash Patil64b05e22012-05-08 18:30:13 -070075 adapter->priv_num++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070076 }
Amitkumar Karwar44b815c2011-09-29 20:43:41 -070077 mwifiex_init_lock_list(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070078
79 init_timer(&adapter->cmd_timer);
80 adapter->cmd_timer.function = mwifiex_cmd_timeout_func;
81 adapter->cmd_timer.data = (unsigned long) adapter;
82
Bing Zhao5e6e3a92011-03-21 18:00:50 -070083 return 0;
84
85error:
86 dev_dbg(adapter->dev, "info: leave mwifiex_register with error\n");
87
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070088 for (i = 0; i < adapter->priv_num; i++)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070089 kfree(adapter->priv[i]);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070090
Bing Zhao5e6e3a92011-03-21 18:00:50 -070091 kfree(adapter);
92
93 return -1;
94}
95
96/*
97 * This function unregisters the device and performs all the necessary
98 * cleanups.
99 *
100 * The following cleanup operations are performed -
101 * - Free the timers
102 * - Free beacon buffers
103 * - Free private structures
104 * - Free adapter structure
105 */
106static int mwifiex_unregister(struct mwifiex_adapter *adapter)
107{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700108 s32 i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700109
110 del_timer(&adapter->cmd_timer);
111
112 /* Free private structures */
113 for (i = 0; i < adapter->priv_num; i++) {
114 if (adapter->priv[i]) {
115 mwifiex_free_curr_bcn(adapter->priv[i]);
116 kfree(adapter->priv[i]);
117 }
118 }
119
120 kfree(adapter);
121 return 0;
122}
123
124/*
125 * The main process.
126 *
127 * This function is the main procedure of the driver and handles various driver
128 * operations. It runs in a loop and provides the core functionalities.
129 *
130 * The main responsibilities of this function are -
131 * - Ensure concurrency control
132 * - Handle pending interrupts and call interrupt handlers
133 * - Wake up the card if required
134 * - Handle command responses and call response handlers
135 * - Handle events and call event handlers
136 * - Execute pending commands
137 * - Transmit pending data packets
138 */
139int mwifiex_main_process(struct mwifiex_adapter *adapter)
140{
141 int ret = 0;
142 unsigned long flags;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700143 struct sk_buff *skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700144
145 spin_lock_irqsave(&adapter->main_proc_lock, flags);
146
147 /* Check if already processing */
148 if (adapter->mwifiex_processing) {
149 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
150 goto exit_main_proc;
151 } else {
152 adapter->mwifiex_processing = true;
153 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
154 }
155process_start:
156 do {
157 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
158 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
159 break;
160
161 /* Handle pending interrupt if any */
162 if (adapter->int_status) {
163 if (adapter->hs_activated)
164 mwifiex_process_hs_config(adapter);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700165 if (adapter->if_ops.process_int_status)
166 adapter->if_ops.process_int_status(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700167 }
168
169 /* Need to wake up the card ? */
170 if ((adapter->ps_state == PS_STATE_SLEEP) &&
171 (adapter->pm_wakeup_card_req &&
172 !adapter->pm_wakeup_fw_try) &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700173 (is_command_pending(adapter) ||
174 !mwifiex_wmm_lists_empty(adapter))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700175 adapter->pm_wakeup_fw_try = true;
176 adapter->if_ops.wakeup(adapter);
177 continue;
178 }
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700179
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180 if (IS_CARD_RX_RCVD(adapter)) {
181 adapter->pm_wakeup_fw_try = false;
182 if (adapter->ps_state == PS_STATE_SLEEP)
183 adapter->ps_state = PS_STATE_AWAKE;
184 } else {
185 /* We have tried to wakeup the card already */
186 if (adapter->pm_wakeup_fw_try)
187 break;
188 if (adapter->ps_state != PS_STATE_AWAKE ||
189 adapter->tx_lock_flag)
190 break;
191
Amitkumar Karwarf931c772012-06-20 19:58:36 -0700192 if ((adapter->scan_processing &&
193 !adapter->scan_delay_cnt) || adapter->data_sent ||
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700194 mwifiex_wmm_lists_empty(adapter)) {
195 if (adapter->cmd_sent || adapter->curr_cmd ||
196 (!is_command_pending(adapter)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700197 break;
198 }
199 }
200
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700201 /* Check Rx data for USB */
202 if (adapter->iface_type == MWIFIEX_USB)
203 while ((skb = skb_dequeue(&adapter->usb_rx_data_q)))
204 mwifiex_handle_rx_packet(adapter, skb);
205
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700206 /* Check for Cmd Resp */
207 if (adapter->cmd_resp_received) {
208 adapter->cmd_resp_received = false;
209 mwifiex_process_cmdresp(adapter);
210
211 /* call mwifiex back when init_fw is done */
212 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
213 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
214 mwifiex_init_fw_complete(adapter);
215 }
216 }
217
218 /* Check for event */
219 if (adapter->event_received) {
220 adapter->event_received = false;
221 mwifiex_process_event(adapter);
222 }
223
224 /* Check if we need to confirm Sleep Request
225 received previously */
226 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
227 if (!adapter->cmd_sent && !adapter->curr_cmd)
228 mwifiex_check_ps_cond(adapter);
229 }
230
231 /* * The ps_state may have been changed during processing of
232 * Sleep Request event.
233 */
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700234 if ((adapter->ps_state == PS_STATE_SLEEP) ||
235 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
236 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
237 adapter->tx_lock_flag)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700238 continue;
239
240 if (!adapter->cmd_sent && !adapter->curr_cmd) {
241 if (mwifiex_exec_next_cmd(adapter) == -1) {
242 ret = -1;
243 break;
244 }
245 }
246
Amitkumar Karwar3249ba72012-06-06 21:12:41 -0700247 if ((!adapter->scan_processing || adapter->scan_delay_cnt) &&
248 !adapter->data_sent && !mwifiex_wmm_lists_empty(adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700249 mwifiex_wmm_process_tx(adapter);
250 if (adapter->hs_activated) {
251 adapter->is_hs_configured = false;
252 mwifiex_hs_activated_event
253 (mwifiex_get_priv
254 (adapter, MWIFIEX_BSS_ROLE_ANY),
255 false);
256 }
257 }
258
259 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700260 !adapter->curr_cmd && !is_command_pending(adapter) &&
261 mwifiex_wmm_lists_empty(adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700262 if (!mwifiex_send_null_packet
263 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
264 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
265 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
266 adapter->delay_null_pkt = false;
267 adapter->ps_state = PS_STATE_SLEEP;
268 }
269 break;
270 }
271 } while (true);
272
273 if ((adapter->int_status) || IS_CARD_RX_RCVD(adapter))
274 goto process_start;
275
276 spin_lock_irqsave(&adapter->main_proc_lock, flags);
277 adapter->mwifiex_processing = false;
278 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
279
280exit_main_proc:
281 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
282 mwifiex_shutdown_drv(adapter);
283 return ret;
284}
Bing Zhao601216e2012-11-05 16:59:15 -0800285EXPORT_SYMBOL_GPL(mwifiex_main_process);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700286
287/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700288 * This function frees the adapter structure.
289 *
290 * Additionally, this closes the netlink socket, frees the timers
291 * and private structures.
292 */
293static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
294{
295 if (!adapter) {
296 pr_err("%s: adapter is NULL\n", __func__);
297 return;
298 }
299
300 mwifiex_unregister(adapter);
301 pr_debug("info: %s: free adapter\n", __func__);
302}
303
304/*
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700305 * This function gets firmware and initializes it.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306 *
307 * The main initialization steps followed are -
308 * - Download the correct firmware to card
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700309 * - Issue the init commands to firmware
310 */
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700311static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700312{
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700313 int ret;
314 char fmt[64];
315 struct mwifiex_private *priv;
316 struct mwifiex_adapter *adapter = context;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700317 struct mwifiex_fw_image fw;
318
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700319 if (!firmware) {
320 dev_err(adapter->dev,
321 "Failed to get firmware %s\n", adapter->fw_name);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700322 goto done;
323 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700324
325 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
326 adapter->firmware = firmware;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700327 fw.fw_buf = (u8 *) adapter->firmware->data;
328 fw.fw_len = adapter->firmware->size;
329
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700330 if (adapter->if_ops.dnld_fw)
331 ret = adapter->if_ops.dnld_fw(adapter, &fw);
332 else
333 ret = mwifiex_dnld_fw(adapter, &fw);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700334 if (ret == -1)
335 goto done;
336
337 dev_notice(adapter->dev, "WLAN FW is active\n");
338
339 adapter->init_wait_q_woken = false;
340 ret = mwifiex_init_fw(adapter);
341 if (ret == -1) {
342 goto done;
343 } else if (!ret) {
344 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
345 goto done;
346 }
347 /* Wait for mwifiex_init to complete */
348 wait_event_interruptible(adapter->init_wait_q,
349 adapter->init_wait_q_woken);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700350 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700351 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700352
Avinash Patild6bffe82012-05-08 18:30:15 -0700353 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
354 if (mwifiex_register_cfg80211(adapter)) {
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700355 dev_err(adapter->dev, "cannot register with cfg80211\n");
356 goto err_init_fw;
357 }
358
359 rtnl_lock();
360 /* Create station interface by default */
Avinash Patild6bffe82012-05-08 18:30:15 -0700361 if (!mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d",
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700362 NL80211_IFTYPE_STATION, NULL, NULL)) {
363 dev_err(adapter->dev, "cannot create default STA interface\n");
364 goto err_add_intf;
365 }
Avinash Patild6bffe82012-05-08 18:30:15 -0700366
367 /* Create AP interface by default */
368 if (!mwifiex_add_virtual_intf(adapter->wiphy, "uap%d",
369 NL80211_IFTYPE_AP, NULL, NULL)) {
370 dev_err(adapter->dev, "cannot create default AP interface\n");
371 goto err_add_intf;
372 }
Stone Piao197f4a22012-09-25 20:23:40 -0700373
374 /* Create P2P interface by default */
375 if (!mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d",
376 NL80211_IFTYPE_P2P_CLIENT, NULL, NULL)) {
377 dev_err(adapter->dev, "cannot create default P2P interface\n");
378 goto err_add_intf;
379 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700380 rtnl_unlock();
381
382 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
383 dev_notice(adapter->dev, "driver_version = %s\n", fmt);
384 goto done;
385
386err_add_intf:
Johannes Berg84efbb82012-06-16 00:00:26 +0200387 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700388 rtnl_unlock();
389err_init_fw:
390 pr_debug("info: %s: unregister device\n", __func__);
391 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392done:
Jesper Juhl4fb25c52012-04-09 22:51:12 +0200393 release_firmware(adapter->firmware);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700394 complete(&adapter->fw_load);
395 return;
396}
397
398/*
399 * This function initializes the hardware and gets firmware.
400 */
401static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
402{
403 int ret;
404
405 init_completion(&adapter->fw_load);
406 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
407 adapter->dev, GFP_KERNEL, adapter,
408 mwifiex_fw_dpc);
409 if (ret < 0)
410 dev_err(adapter->dev,
411 "request_firmware_nowait() returned error %d\n", ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700412 return ret;
413}
414
415/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700416 * CFG802.11 network device handler for open.
417 *
418 * Starts the data queue.
419 */
420static int
421mwifiex_open(struct net_device *dev)
422{
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800423 netif_tx_start_all_queues(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700424 return 0;
425}
426
427/*
428 * CFG802.11 network device handler for close.
429 */
430static int
431mwifiex_close(struct net_device *dev)
432{
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700433 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
434
435 if (priv->scan_request) {
436 dev_dbg(priv->adapter->dev, "aborting scan on ndo_stop\n");
437 cfg80211_scan_done(priv->scan_request, 1);
438 priv->scan_request = NULL;
Amitkumar Karwar75ab7532013-05-17 17:50:20 -0700439 priv->scan_aborting = true;
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700440 }
441
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700442 return 0;
443}
444
445/*
Stone Piaoe39faa72012-09-25 20:23:32 -0700446 * Add buffer into wmm tx queue and queue work to transmit it.
447 */
448int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
449{
Avinash Patil47411a02012-11-01 18:44:16 -0700450 struct netdev_queue *txq;
451 int index = mwifiex_1d_to_wmm_queue[skb->priority];
452
453 if (atomic_inc_return(&priv->wmm_tx_pending[index]) >= MAX_TX_PENDING) {
454 txq = netdev_get_tx_queue(priv->netdev, index);
455 if (!netif_tx_queue_stopped(txq)) {
456 netif_tx_stop_queue(txq);
457 dev_dbg(priv->adapter->dev, "stop queue: %d\n", index);
458 }
459 }
460
Stone Piaoe39faa72012-09-25 20:23:32 -0700461 atomic_inc(&priv->adapter->tx_pending);
Avinash Patil47411a02012-11-01 18:44:16 -0700462 mwifiex_wmm_add_buf_txqueue(priv, skb);
Stone Piaoe39faa72012-09-25 20:23:32 -0700463
464 if (priv->adapter->scan_delay_cnt)
465 atomic_set(&priv->adapter->is_tx_received, true);
466
Stone Piaoe39faa72012-09-25 20:23:32 -0700467 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
468
469 return 0;
470}
471
472/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700473 * CFG802.11 network device handler for data transmission.
474 */
475static int
476mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
477{
478 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700479 struct sk_buff *new_skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700480 struct mwifiex_txinfo *tx_info;
Avinash Patil47411a02012-11-01 18:44:16 -0700481 struct timeval tv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700482
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800483 dev_dbg(priv->adapter->dev, "data: %lu BSS(%d-%d): Data <= kernel\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700484 jiffies, priv->bss_type, priv->bss_num);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700485
486 if (priv->adapter->surprise_removed) {
Christoph Fritzb53575e2011-05-08 22:50:09 +0200487 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700488 priv->stats.tx_dropped++;
489 return 0;
490 }
491 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
492 dev_err(priv->adapter->dev, "Tx: bad skb len %d\n", skb->len);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200493 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700494 priv->stats.tx_dropped++;
495 return 0;
496 }
497 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
498 dev_dbg(priv->adapter->dev,
499 "data: Tx: insufficient skb headroom %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700500 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700501 /* Insufficient skb headroom - allocate a new skb */
502 new_skb =
503 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
504 if (unlikely(!new_skb)) {
505 dev_err(priv->adapter->dev, "Tx: cannot alloca new_skb\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +0200506 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700507 priv->stats.tx_dropped++;
508 return 0;
509 }
510 kfree_skb(skb);
511 skb = new_skb;
512 dev_dbg(priv->adapter->dev, "info: new skb headroomd %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700513 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700514 }
515
516 tx_info = MWIFIEX_SKB_TXCB(skb);
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800517 tx_info->bss_num = priv->bss_num;
518 tx_info->bss_type = priv->bss_type;
Avinash Patil47411a02012-11-01 18:44:16 -0700519
520 /* Record the current time the packet was queued; used to
521 * determine the amount of time the packet was queued in
522 * the driver before it was sent to the firmware.
523 * The delay is then sent along with the packet to the
524 * firmware for aggregate delay calculation for stats and
525 * MSDU lifetime expiry.
526 */
527 do_gettimeofday(&tv);
528 skb->tstamp = timeval_to_ktime(tv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700529
Stone Piaoe39faa72012-09-25 20:23:32 -0700530 mwifiex_queue_tx_pkt(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700531
532 return 0;
533}
534
535/*
536 * CFG802.11 network device handler for setting MAC address.
537 */
538static int
539mwifiex_set_mac_address(struct net_device *dev, void *addr)
540{
541 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700542 struct sockaddr *hw_addr = addr;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700543 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700544
545 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
546
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700547 /* Send request to firmware */
548 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
549 HostCmd_ACT_GEN_SET, 0, NULL);
550
551 if (!ret)
552 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
553 else
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700554 dev_err(priv->adapter->dev,
555 "set mac address failed: ret=%d\n", ret);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700556
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700557 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
558
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700559 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700560}
561
562/*
563 * CFG802.11 network device handler for setting multicast list.
564 */
565static void mwifiex_set_multicast_list(struct net_device *dev)
566{
567 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700568 struct mwifiex_multicast_list mcast_list;
569
570 if (dev->flags & IFF_PROMISC) {
571 mcast_list.mode = MWIFIEX_PROMISC_MODE;
572 } else if (dev->flags & IFF_ALLMULTI ||
573 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
574 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
575 } else {
576 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
577 if (netdev_mc_count(dev))
578 mcast_list.num_multicast_addr =
579 mwifiex_copy_mcast_addr(&mcast_list, dev);
580 }
581 mwifiex_request_set_multicast_list(priv, &mcast_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700582}
583
584/*
585 * CFG802.11 network device handler for transmission timeout.
586 */
587static void
588mwifiex_tx_timeout(struct net_device *dev)
589{
590 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
591
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700592 priv->num_tx_timeout++;
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800593 priv->tx_timeout_cnt++;
594 dev_err(priv->adapter->dev,
595 "%lu : Tx timeout(#%d), bss_type-num = %d-%d\n",
596 jiffies, priv->tx_timeout_cnt, priv->bss_type, priv->bss_num);
597 mwifiex_set_trans_start(dev);
598
599 if (priv->tx_timeout_cnt > TX_TIMEOUT_THRESHOLD &&
600 priv->adapter->if_ops.card_reset) {
601 dev_err(priv->adapter->dev,
602 "tx_timeout_cnt exceeds threshold. Triggering card reset!\n");
603 priv->adapter->if_ops.card_reset(priv->adapter);
604 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700605}
606
607/*
608 * CFG802.11 network device handler for statistics retrieval.
609 */
610static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
611{
612 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
613
614 return &priv->stats;
615}
616
Avinash Patil47411a02012-11-01 18:44:16 -0700617static u16
618mwifiex_netdev_select_wmm_queue(struct net_device *dev, struct sk_buff *skb)
619{
620 skb->priority = cfg80211_classify8021d(skb);
621 return mwifiex_1d_to_wmm_queue[skb->priority];
622}
623
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700624/* Network device handlers */
625static const struct net_device_ops mwifiex_netdev_ops = {
626 .ndo_open = mwifiex_open,
627 .ndo_stop = mwifiex_close,
628 .ndo_start_xmit = mwifiex_hard_start_xmit,
629 .ndo_set_mac_address = mwifiex_set_mac_address,
630 .ndo_tx_timeout = mwifiex_tx_timeout,
631 .ndo_get_stats = mwifiex_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000632 .ndo_set_rx_mode = mwifiex_set_multicast_list,
Avinash Patil47411a02012-11-01 18:44:16 -0700633 .ndo_select_queue = mwifiex_netdev_select_wmm_queue,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700634};
635
636/*
637 * This function initializes the private structure parameters.
638 *
639 * The following wait queues are initialized -
640 * - IOCTL wait queue
641 * - Command wait queue
642 * - Statistics wait queue
643 *
644 * ...and the following default parameters are set -
645 * - Current key index : Set to 0
646 * - Rate index : Set to auto
647 * - Media connected : Set to disconnected
648 * - Adhoc link sensed : Set to false
649 * - Nick name : Set to null
650 * - Number of Tx timeout : Set to 0
651 * - Device address : Set to current address
652 *
653 * In addition, the CFG80211 work queue is also created.
654 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700655void mwifiex_init_priv_params(struct mwifiex_private *priv,
656 struct net_device *dev)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700657{
658 dev->netdev_ops = &mwifiex_netdev_ops;
659 /* Initialize private structure */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700660 priv->current_key_index = 0;
661 priv->media_connected = false;
662 memset(&priv->nick_name, 0, sizeof(priv->nick_name));
Avinash Patilede98bf2012-05-08 18:30:28 -0700663 memset(priv->mgmt_ie, 0,
664 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
Avinash Patilf31acab2012-05-08 18:30:29 -0700665 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
666 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
667 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
668 priv->rsn_idx = MWIFIEX_AUTO_IDX_MASK;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700669 priv->num_tx_timeout = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700670 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
671}
672
673/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700674 * This function check if command is pending.
675 */
676int is_command_pending(struct mwifiex_adapter *adapter)
677{
678 unsigned long flags;
679 int is_cmd_pend_q_empty;
680
681 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
682 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
683 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
684
685 return !is_cmd_pend_q_empty;
686}
687
688/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700689 * This is the main work queue function.
690 *
691 * It handles the main process, which in turn handles the complete
692 * driver operations.
693 */
694static void mwifiex_main_work_queue(struct work_struct *work)
695{
696 struct mwifiex_adapter *adapter =
697 container_of(work, struct mwifiex_adapter, main_work);
698
699 if (adapter->surprise_removed)
700 return;
701 mwifiex_main_process(adapter);
702}
703
704/*
705 * This function cancels all works in the queue and destroys
706 * the main workqueue.
707 */
708static void
709mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
710{
711 flush_workqueue(adapter->workqueue);
712 destroy_workqueue(adapter->workqueue);
713 adapter->workqueue = NULL;
714}
715
716/*
717 * This function adds the card.
718 *
719 * This function follows the following major steps to set up the device -
720 * - Initialize software. This includes probing the card, registering
721 * the interface operations table, and allocating/initializing the
722 * adapter structure
723 * - Set up the netlink socket
724 * - Create and start the main work queue
725 * - Register the device
726 * - Initialize firmware and hardware
727 * - Add logical interfaces
728 */
729int
730mwifiex_add_card(void *card, struct semaphore *sem,
Amitkumar Karward930fae2011-10-11 17:41:21 -0700731 struct mwifiex_if_ops *if_ops, u8 iface_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700732{
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700733 struct mwifiex_adapter *adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700734
735 if (down_interruptible(sem))
736 goto exit_sem_err;
737
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700738 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700739 pr_err("%s: software init failed\n", __func__);
740 goto err_init_sw;
741 }
742
Amitkumar Karward930fae2011-10-11 17:41:21 -0700743 adapter->iface_type = iface_type;
744
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700745 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700746 adapter->surprise_removed = false;
747 init_waitqueue_head(&adapter->init_wait_q);
748 adapter->is_suspended = false;
749 adapter->hs_activated = false;
750 init_waitqueue_head(&adapter->hs_activate_wait_q);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700751 adapter->cmd_wait_q_required = false;
752 init_waitqueue_head(&adapter->cmd_wait_q.wait);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700753 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700754 adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700755
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700756 adapter->workqueue = create_workqueue("MWIFIEX_WORK_QUEUE");
757 if (!adapter->workqueue)
758 goto err_kmalloc;
759
760 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
761
762 /* Register the device. Fill up the private data structure with relevant
763 information from the card and request for the required IRQ. */
764 if (adapter->if_ops.register_dev(adapter)) {
765 pr_err("%s: failed to register mwifiex device\n", __func__);
766 goto err_registerdev;
767 }
768
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700769 if (mwifiex_init_hw_fw(adapter)) {
770 pr_err("%s: firmware init failed\n", __func__);
771 goto err_init_fw;
772 }
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700773
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700774 up(sem);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700775 return 0;
776
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700777err_init_fw:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700778 pr_debug("info: %s: unregister device\n", __func__);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700779 if (adapter->if_ops.unregister_dev)
780 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700781err_registerdev:
782 adapter->surprise_removed = true;
783 mwifiex_terminate_workqueue(adapter);
784err_kmalloc:
785 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
786 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
787 pr_debug("info: %s: shutdown mwifiex\n", __func__);
788 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700789
790 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700791 wait_event_interruptible(adapter->init_wait_q,
792 adapter->init_wait_q_woken);
793 }
794
795 mwifiex_free_adapter(adapter);
796
797err_init_sw:
798 up(sem);
799
800exit_sem_err:
801 return -1;
802}
803EXPORT_SYMBOL_GPL(mwifiex_add_card);
804
805/*
806 * This function removes the card.
807 *
808 * This function follows the following major steps to remove the device -
809 * - Stop data traffic
810 * - Shutdown firmware
811 * - Remove the logical interfaces
812 * - Terminate the work queue
813 * - Unregister the device
814 * - Free the adapter structure
815 */
816int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
817{
818 struct mwifiex_private *priv = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700819 int i;
820
821 if (down_interruptible(sem))
822 goto exit_sem_err;
823
824 if (!adapter)
825 goto exit_remove;
826
827 adapter->surprise_removed = true;
828
829 /* Stop data */
830 for (i = 0; i < adapter->priv_num; i++) {
831 priv = adapter->priv[i];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700832 if (priv && priv->netdev) {
Avinash Patil47411a02012-11-01 18:44:16 -0700833 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700834 if (netif_carrier_ok(priv->netdev))
835 netif_carrier_off(priv->netdev);
836 }
837 }
838
839 dev_dbg(adapter->dev, "cmd: calling mwifiex_shutdown_drv...\n");
840 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700841
842 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700843 wait_event_interruptible(adapter->init_wait_q,
844 adapter->init_wait_q_woken);
845 dev_dbg(adapter->dev, "cmd: mwifiex_shutdown_drv done\n");
846 if (atomic_read(&adapter->rx_pending) ||
847 atomic_read(&adapter->tx_pending) ||
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700848 atomic_read(&adapter->cmd_pending)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700849 dev_err(adapter->dev, "rx_pending=%d, tx_pending=%d, "
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700850 "cmd_pending=%d\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700851 atomic_read(&adapter->rx_pending),
852 atomic_read(&adapter->tx_pending),
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700853 atomic_read(&adapter->cmd_pending));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700854 }
855
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700856 for (i = 0; i < adapter->priv_num; i++) {
857 priv = adapter->priv[i];
858
859 if (!priv)
860 continue;
861
862 rtnl_lock();
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800863 if (priv->wdev && priv->netdev)
Johannes Berg84efbb82012-06-16 00:00:26 +0200864 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700865 rtnl_unlock();
866 }
867
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700868 priv = adapter->priv[0];
Avinash Patil64b05e22012-05-08 18:30:13 -0700869 if (!priv || !priv->wdev)
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700870 goto exit_remove;
871
Avinash Patil64b05e22012-05-08 18:30:13 -0700872 wiphy_unregister(priv->wdev->wiphy);
873 wiphy_free(priv->wdev->wiphy);
874
875 for (i = 0; i < adapter->priv_num; i++) {
876 priv = adapter->priv[i];
877 if (priv)
878 kfree(priv->wdev);
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800879 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700880
881 mwifiex_terminate_workqueue(adapter);
882
883 /* Unregister device */
884 dev_dbg(adapter->dev, "info: unregister device\n");
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700885 if (adapter->if_ops.unregister_dev)
886 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700887 /* Free adapter structure */
888 dev_dbg(adapter->dev, "info: free adapter\n");
889 mwifiex_free_adapter(adapter);
890
891exit_remove:
892 up(sem);
893exit_sem_err:
894 return 0;
895}
896EXPORT_SYMBOL_GPL(mwifiex_remove_card);
897
898/*
899 * This function initializes the module.
900 *
901 * The debug FS is also initialized if configured.
902 */
903static int
904mwifiex_init_module(void)
905{
906#ifdef CONFIG_DEBUG_FS
907 mwifiex_debugfs_init();
908#endif
909 return 0;
910}
911
912/*
913 * This function cleans up the module.
914 *
915 * The debug FS is removed if available.
916 */
917static void
918mwifiex_cleanup_module(void)
919{
920#ifdef CONFIG_DEBUG_FS
921 mwifiex_debugfs_remove();
922#endif
923}
924
925module_init(mwifiex_init_module);
926module_exit(mwifiex_cleanup_module);
927
928MODULE_AUTHOR("Marvell International Ltd.");
929MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
930MODULE_VERSION(VERSION);
931MODULE_LICENSE("GPL v2");