blob: 1df767bc8b6eb1efd34f2cb655698caa26453146 [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 Karwarf931c7702012-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}
285
286/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700287 * This function frees the adapter structure.
288 *
289 * Additionally, this closes the netlink socket, frees the timers
290 * and private structures.
291 */
292static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
293{
294 if (!adapter) {
295 pr_err("%s: adapter is NULL\n", __func__);
296 return;
297 }
298
299 mwifiex_unregister(adapter);
300 pr_debug("info: %s: free adapter\n", __func__);
301}
302
303/*
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700304 * This function gets firmware and initializes it.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700305 *
306 * The main initialization steps followed are -
307 * - Download the correct firmware to card
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700308 * - Issue the init commands to firmware
309 */
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700310static void mwifiex_fw_dpc(const struct firmware *firmware, void *context)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700311{
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700312 int ret;
313 char fmt[64];
314 struct mwifiex_private *priv;
315 struct mwifiex_adapter *adapter = context;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700316 struct mwifiex_fw_image fw;
317
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700318 if (!firmware) {
319 dev_err(adapter->dev,
320 "Failed to get firmware %s\n", adapter->fw_name);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700321 goto done;
322 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700323
324 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
325 adapter->firmware = firmware;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700326 fw.fw_buf = (u8 *) adapter->firmware->data;
327 fw.fw_len = adapter->firmware->size;
328
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700329 if (adapter->if_ops.dnld_fw)
330 ret = adapter->if_ops.dnld_fw(adapter, &fw);
331 else
332 ret = mwifiex_dnld_fw(adapter, &fw);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700333 if (ret == -1)
334 goto done;
335
336 dev_notice(adapter->dev, "WLAN FW is active\n");
337
338 adapter->init_wait_q_woken = false;
339 ret = mwifiex_init_fw(adapter);
340 if (ret == -1) {
341 goto done;
342 } else if (!ret) {
343 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
344 goto done;
345 }
346 /* Wait for mwifiex_init to complete */
347 wait_event_interruptible(adapter->init_wait_q,
348 adapter->init_wait_q_woken);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700349 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700350 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700351
Avinash Patild6bffe82012-05-08 18:30:15 -0700352 priv = adapter->priv[MWIFIEX_BSS_ROLE_STA];
353 if (mwifiex_register_cfg80211(adapter)) {
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700354 dev_err(adapter->dev, "cannot register with cfg80211\n");
355 goto err_init_fw;
356 }
357
358 rtnl_lock();
359 /* Create station interface by default */
Avinash Patild6bffe82012-05-08 18:30:15 -0700360 if (!mwifiex_add_virtual_intf(adapter->wiphy, "mlan%d",
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700361 NL80211_IFTYPE_STATION, NULL, NULL)) {
362 dev_err(adapter->dev, "cannot create default STA interface\n");
363 goto err_add_intf;
364 }
Avinash Patild6bffe82012-05-08 18:30:15 -0700365
366 /* Create AP interface by default */
367 if (!mwifiex_add_virtual_intf(adapter->wiphy, "uap%d",
368 NL80211_IFTYPE_AP, NULL, NULL)) {
369 dev_err(adapter->dev, "cannot create default AP interface\n");
370 goto err_add_intf;
371 }
Stone Piao197f4a22012-09-25 20:23:40 -0700372
373 /* Create P2P interface by default */
374 if (!mwifiex_add_virtual_intf(adapter->wiphy, "p2p%d",
375 NL80211_IFTYPE_P2P_CLIENT, NULL, NULL)) {
376 dev_err(adapter->dev, "cannot create default P2P interface\n");
377 goto err_add_intf;
378 }
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700379 rtnl_unlock();
380
381 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
382 dev_notice(adapter->dev, "driver_version = %s\n", fmt);
383 goto done;
384
385err_add_intf:
Johannes Berg84efbb82012-06-16 00:00:26 +0200386 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700387 rtnl_unlock();
388err_init_fw:
389 pr_debug("info: %s: unregister device\n", __func__);
390 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700391done:
Jesper Juhl4fb25c52012-04-09 22:51:12 +0200392 release_firmware(adapter->firmware);
Amitkumar Karwar59a4cc22012-04-09 20:06:57 -0700393 complete(&adapter->fw_load);
394 return;
395}
396
397/*
398 * This function initializes the hardware and gets firmware.
399 */
400static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
401{
402 int ret;
403
404 init_completion(&adapter->fw_load);
405 ret = request_firmware_nowait(THIS_MODULE, 1, adapter->fw_name,
406 adapter->dev, GFP_KERNEL, adapter,
407 mwifiex_fw_dpc);
408 if (ret < 0)
409 dev_err(adapter->dev,
410 "request_firmware_nowait() returned error %d\n", ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700411 return ret;
412}
413
414/*
415 * This function fills a driver buffer.
416 *
417 * The function associates a given SKB with the provided driver buffer
418 * and also updates some of the SKB parameters, including IP header,
419 * priority and timestamp.
420 */
421static void
422mwifiex_fill_buffer(struct sk_buff *skb)
423{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700424 struct ethhdr *eth;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700425 struct iphdr *iph;
426 struct timeval tv;
427 u8 tid = 0;
428
429 eth = (struct ethhdr *) skb->data;
430 switch (eth->h_proto) {
431 case __constant_htons(ETH_P_IP):
432 iph = ip_hdr(skb);
433 tid = IPTOS_PREC(iph->tos);
434 pr_debug("data: packet type ETH_P_IP: %04x, tid=%#x prio=%#x\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700435 eth->h_proto, tid, skb->priority);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700436 break;
437 case __constant_htons(ETH_P_ARP):
438 pr_debug("data: ARP packet: %04x\n", eth->h_proto);
439 default:
440 break;
441 }
442/* Offset for TOS field in the IP header */
443#define IPTOS_OFFSET 5
444 tid = (tid >> IPTOS_OFFSET);
445 skb->priority = tid;
446 /* Record the current time the packet was queued; used to
447 determine the amount of time the packet was queued in
448 the driver before it was sent to the firmware.
449 The delay is then sent along with the packet to the
450 firmware for aggregate delay calculation for stats and
451 MSDU lifetime expiry.
452 */
453 do_gettimeofday(&tv);
454 skb->tstamp = timeval_to_ktime(tv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700455}
456
457/*
458 * CFG802.11 network device handler for open.
459 *
460 * Starts the data queue.
461 */
462static int
463mwifiex_open(struct net_device *dev)
464{
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800465 netif_tx_start_all_queues(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466 return 0;
467}
468
469/*
470 * CFG802.11 network device handler for close.
471 */
472static int
473mwifiex_close(struct net_device *dev)
474{
Amitkumar Karwarf162cac2012-10-19 19:19:16 -0700475 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
476
477 if (priv->scan_request) {
478 dev_dbg(priv->adapter->dev, "aborting scan on ndo_stop\n");
479 cfg80211_scan_done(priv->scan_request, 1);
480 priv->scan_request = NULL;
481 }
482
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700483 return 0;
484}
485
486/*
Stone Piaoe39faa72012-09-25 20:23:32 -0700487 * Add buffer into wmm tx queue and queue work to transmit it.
488 */
489int mwifiex_queue_tx_pkt(struct mwifiex_private *priv, struct sk_buff *skb)
490{
491 mwifiex_wmm_add_buf_txqueue(priv, skb);
492 atomic_inc(&priv->adapter->tx_pending);
493
494 if (priv->adapter->scan_delay_cnt)
495 atomic_set(&priv->adapter->is_tx_received, true);
496
497 if (atomic_read(&priv->adapter->tx_pending) >= MAX_TX_PENDING) {
498 mwifiex_set_trans_start(priv->netdev);
499 mwifiex_stop_net_dev_queue(priv->netdev, priv->adapter);
500 }
501
502 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
503
504 return 0;
505}
506
507/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700508 * CFG802.11 network device handler for data transmission.
509 */
510static int
511mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
512{
513 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700514 struct sk_buff *new_skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700515 struct mwifiex_txinfo *tx_info;
516
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800517 dev_dbg(priv->adapter->dev, "data: %lu BSS(%d-%d): Data <= kernel\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700518 jiffies, priv->bss_type, priv->bss_num);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700519
520 if (priv->adapter->surprise_removed) {
Christoph Fritzb53575e2011-05-08 22:50:09 +0200521 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700522 priv->stats.tx_dropped++;
523 return 0;
524 }
525 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
526 dev_err(priv->adapter->dev, "Tx: bad skb len %d\n", skb->len);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200527 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700528 priv->stats.tx_dropped++;
529 return 0;
530 }
531 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
532 dev_dbg(priv->adapter->dev,
533 "data: Tx: insufficient skb headroom %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700534 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535 /* Insufficient skb headroom - allocate a new skb */
536 new_skb =
537 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
538 if (unlikely(!new_skb)) {
539 dev_err(priv->adapter->dev, "Tx: cannot alloca new_skb\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +0200540 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700541 priv->stats.tx_dropped++;
542 return 0;
543 }
544 kfree_skb(skb);
545 skb = new_skb;
546 dev_dbg(priv->adapter->dev, "info: new skb headroomd %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700547 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700548 }
549
550 tx_info = MWIFIEX_SKB_TXCB(skb);
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800551 tx_info->bss_num = priv->bss_num;
552 tx_info->bss_type = priv->bss_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700553 mwifiex_fill_buffer(skb);
554
Stone Piaoe39faa72012-09-25 20:23:32 -0700555 mwifiex_queue_tx_pkt(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700556
557 return 0;
558}
559
560/*
561 * CFG802.11 network device handler for setting MAC address.
562 */
563static int
564mwifiex_set_mac_address(struct net_device *dev, void *addr)
565{
566 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700567 struct sockaddr *hw_addr = addr;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700568 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700569
570 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
571
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700572 /* Send request to firmware */
573 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
574 HostCmd_ACT_GEN_SET, 0, NULL);
575
576 if (!ret)
577 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
578 else
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700579 dev_err(priv->adapter->dev,
580 "set mac address failed: ret=%d\n", ret);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700581
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700582 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
583
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700584 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700585}
586
587/*
588 * CFG802.11 network device handler for setting multicast list.
589 */
590static void mwifiex_set_multicast_list(struct net_device *dev)
591{
592 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700593 struct mwifiex_multicast_list mcast_list;
594
595 if (dev->flags & IFF_PROMISC) {
596 mcast_list.mode = MWIFIEX_PROMISC_MODE;
597 } else if (dev->flags & IFF_ALLMULTI ||
598 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
599 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
600 } else {
601 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
602 if (netdev_mc_count(dev))
603 mcast_list.num_multicast_addr =
604 mwifiex_copy_mcast_addr(&mcast_list, dev);
605 }
606 mwifiex_request_set_multicast_list(priv, &mcast_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700607}
608
609/*
610 * CFG802.11 network device handler for transmission timeout.
611 */
612static void
613mwifiex_tx_timeout(struct net_device *dev)
614{
615 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
616
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800617 dev_err(priv->adapter->dev, "%lu : Tx timeout, bss_type-num = %d-%d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700618 jiffies, priv->bss_type, priv->bss_num);
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800619 mwifiex_set_trans_start(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700620 priv->num_tx_timeout++;
621}
622
623/*
624 * CFG802.11 network device handler for statistics retrieval.
625 */
626static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
627{
628 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
629
630 return &priv->stats;
631}
632
633/* Network device handlers */
634static const struct net_device_ops mwifiex_netdev_ops = {
635 .ndo_open = mwifiex_open,
636 .ndo_stop = mwifiex_close,
637 .ndo_start_xmit = mwifiex_hard_start_xmit,
638 .ndo_set_mac_address = mwifiex_set_mac_address,
639 .ndo_tx_timeout = mwifiex_tx_timeout,
640 .ndo_get_stats = mwifiex_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000641 .ndo_set_rx_mode = mwifiex_set_multicast_list,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700642};
643
644/*
645 * This function initializes the private structure parameters.
646 *
647 * The following wait queues are initialized -
648 * - IOCTL wait queue
649 * - Command wait queue
650 * - Statistics wait queue
651 *
652 * ...and the following default parameters are set -
653 * - Current key index : Set to 0
654 * - Rate index : Set to auto
655 * - Media connected : Set to disconnected
656 * - Adhoc link sensed : Set to false
657 * - Nick name : Set to null
658 * - Number of Tx timeout : Set to 0
659 * - Device address : Set to current address
660 *
661 * In addition, the CFG80211 work queue is also created.
662 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700663void mwifiex_init_priv_params(struct mwifiex_private *priv,
664 struct net_device *dev)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700665{
666 dev->netdev_ops = &mwifiex_netdev_ops;
667 /* Initialize private structure */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700668 priv->current_key_index = 0;
669 priv->media_connected = false;
670 memset(&priv->nick_name, 0, sizeof(priv->nick_name));
Avinash Patilede98bf2012-05-08 18:30:28 -0700671 memset(priv->mgmt_ie, 0,
672 sizeof(struct mwifiex_ie) * MAX_MGMT_IE_INDEX);
Avinash Patilf31acab2012-05-08 18:30:29 -0700673 priv->beacon_idx = MWIFIEX_AUTO_IDX_MASK;
674 priv->proberesp_idx = MWIFIEX_AUTO_IDX_MASK;
675 priv->assocresp_idx = MWIFIEX_AUTO_IDX_MASK;
676 priv->rsn_idx = MWIFIEX_AUTO_IDX_MASK;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700677 priv->num_tx_timeout = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700678 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
679}
680
681/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700682 * This function check if command is pending.
683 */
684int is_command_pending(struct mwifiex_adapter *adapter)
685{
686 unsigned long flags;
687 int is_cmd_pend_q_empty;
688
689 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
690 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
691 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
692
693 return !is_cmd_pend_q_empty;
694}
695
696/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700697 * This is the main work queue function.
698 *
699 * It handles the main process, which in turn handles the complete
700 * driver operations.
701 */
702static void mwifiex_main_work_queue(struct work_struct *work)
703{
704 struct mwifiex_adapter *adapter =
705 container_of(work, struct mwifiex_adapter, main_work);
706
707 if (adapter->surprise_removed)
708 return;
709 mwifiex_main_process(adapter);
710}
711
712/*
713 * This function cancels all works in the queue and destroys
714 * the main workqueue.
715 */
716static void
717mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
718{
719 flush_workqueue(adapter->workqueue);
720 destroy_workqueue(adapter->workqueue);
721 adapter->workqueue = NULL;
722}
723
724/*
725 * This function adds the card.
726 *
727 * This function follows the following major steps to set up the device -
728 * - Initialize software. This includes probing the card, registering
729 * the interface operations table, and allocating/initializing the
730 * adapter structure
731 * - Set up the netlink socket
732 * - Create and start the main work queue
733 * - Register the device
734 * - Initialize firmware and hardware
735 * - Add logical interfaces
736 */
737int
738mwifiex_add_card(void *card, struct semaphore *sem,
Amitkumar Karward930fae2011-10-11 17:41:21 -0700739 struct mwifiex_if_ops *if_ops, u8 iface_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700740{
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700741 struct mwifiex_adapter *adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700742
743 if (down_interruptible(sem))
744 goto exit_sem_err;
745
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700746 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700747 pr_err("%s: software init failed\n", __func__);
748 goto err_init_sw;
749 }
750
Amitkumar Karward930fae2011-10-11 17:41:21 -0700751 adapter->iface_type = iface_type;
752
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700753 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700754 adapter->surprise_removed = false;
755 init_waitqueue_head(&adapter->init_wait_q);
756 adapter->is_suspended = false;
757 adapter->hs_activated = false;
758 init_waitqueue_head(&adapter->hs_activate_wait_q);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700759 adapter->cmd_wait_q_required = false;
760 init_waitqueue_head(&adapter->cmd_wait_q.wait);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700761 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700762 adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700763
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700764 adapter->workqueue = create_workqueue("MWIFIEX_WORK_QUEUE");
765 if (!adapter->workqueue)
766 goto err_kmalloc;
767
768 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
769
770 /* Register the device. Fill up the private data structure with relevant
771 information from the card and request for the required IRQ. */
772 if (adapter->if_ops.register_dev(adapter)) {
773 pr_err("%s: failed to register mwifiex device\n", __func__);
774 goto err_registerdev;
775 }
776
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700777 if (mwifiex_init_hw_fw(adapter)) {
778 pr_err("%s: firmware init failed\n", __func__);
779 goto err_init_fw;
780 }
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700781
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700782 up(sem);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700783 return 0;
784
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700785err_init_fw:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700786 pr_debug("info: %s: unregister device\n", __func__);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700787 if (adapter->if_ops.unregister_dev)
788 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700789err_registerdev:
790 adapter->surprise_removed = true;
791 mwifiex_terminate_workqueue(adapter);
792err_kmalloc:
793 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
794 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
795 pr_debug("info: %s: shutdown mwifiex\n", __func__);
796 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700797
798 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700799 wait_event_interruptible(adapter->init_wait_q,
800 adapter->init_wait_q_woken);
801 }
802
803 mwifiex_free_adapter(adapter);
804
805err_init_sw:
806 up(sem);
807
808exit_sem_err:
809 return -1;
810}
811EXPORT_SYMBOL_GPL(mwifiex_add_card);
812
813/*
814 * This function removes the card.
815 *
816 * This function follows the following major steps to remove the device -
817 * - Stop data traffic
818 * - Shutdown firmware
819 * - Remove the logical interfaces
820 * - Terminate the work queue
821 * - Unregister the device
822 * - Free the adapter structure
823 */
824int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
825{
826 struct mwifiex_private *priv = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700827 int i;
828
829 if (down_interruptible(sem))
830 goto exit_sem_err;
831
832 if (!adapter)
833 goto exit_remove;
834
835 adapter->surprise_removed = true;
836
837 /* Stop data */
838 for (i = 0; i < adapter->priv_num; i++) {
839 priv = adapter->priv[i];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700840 if (priv && priv->netdev) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700841 if (!netif_queue_stopped(priv->netdev))
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800842 mwifiex_stop_net_dev_queue(priv->netdev,
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700843 adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700844 if (netif_carrier_ok(priv->netdev))
845 netif_carrier_off(priv->netdev);
846 }
847 }
848
849 dev_dbg(adapter->dev, "cmd: calling mwifiex_shutdown_drv...\n");
850 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700851
852 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700853 wait_event_interruptible(adapter->init_wait_q,
854 adapter->init_wait_q_woken);
855 dev_dbg(adapter->dev, "cmd: mwifiex_shutdown_drv done\n");
856 if (atomic_read(&adapter->rx_pending) ||
857 atomic_read(&adapter->tx_pending) ||
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700858 atomic_read(&adapter->cmd_pending)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700859 dev_err(adapter->dev, "rx_pending=%d, tx_pending=%d, "
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700860 "cmd_pending=%d\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700861 atomic_read(&adapter->rx_pending),
862 atomic_read(&adapter->tx_pending),
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700863 atomic_read(&adapter->cmd_pending));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700864 }
865
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700866 for (i = 0; i < adapter->priv_num; i++) {
867 priv = adapter->priv[i];
868
869 if (!priv)
870 continue;
871
872 rtnl_lock();
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800873 if (priv->wdev && priv->netdev)
Johannes Berg84efbb82012-06-16 00:00:26 +0200874 mwifiex_del_virtual_intf(adapter->wiphy, priv->wdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700875 rtnl_unlock();
876 }
877
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700878 priv = adapter->priv[0];
Avinash Patil64b05e22012-05-08 18:30:13 -0700879 if (!priv || !priv->wdev)
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700880 goto exit_remove;
881
Avinash Patil64b05e22012-05-08 18:30:13 -0700882 wiphy_unregister(priv->wdev->wiphy);
883 wiphy_free(priv->wdev->wiphy);
884
885 for (i = 0; i < adapter->priv_num; i++) {
886 priv = adapter->priv[i];
887 if (priv)
888 kfree(priv->wdev);
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800889 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700890
891 mwifiex_terminate_workqueue(adapter);
892
893 /* Unregister device */
894 dev_dbg(adapter->dev, "info: unregister device\n");
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700895 if (adapter->if_ops.unregister_dev)
896 adapter->if_ops.unregister_dev(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700897 /* Free adapter structure */
898 dev_dbg(adapter->dev, "info: free adapter\n");
899 mwifiex_free_adapter(adapter);
900
901exit_remove:
902 up(sem);
903exit_sem_err:
904 return 0;
905}
906EXPORT_SYMBOL_GPL(mwifiex_remove_card);
907
908/*
909 * This function initializes the module.
910 *
911 * The debug FS is also initialized if configured.
912 */
913static int
914mwifiex_init_module(void)
915{
916#ifdef CONFIG_DEBUG_FS
917 mwifiex_debugfs_init();
918#endif
919 return 0;
920}
921
922/*
923 * This function cleans up the module.
924 *
925 * The debug FS is removed if available.
926 */
927static void
928mwifiex_cleanup_module(void)
929{
930#ifdef CONFIG_DEBUG_FS
931 mwifiex_debugfs_remove();
932#endif
933}
934
935module_init(mwifiex_init_module);
936module_exit(mwifiex_cleanup_module);
937
938MODULE_AUTHOR("Marvell International Ltd.");
939MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
940MODULE_VERSION(VERSION);
941MODULE_LICENSE("GPL v2");