blob: a884c322f3eaaed9bc3fce3cd1280bb37162011a [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 .. */
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070061 if (adapter->if_ops.init_if(adapter))
Bing Zhao5e6e3a92011-03-21 18:00:50 -070062 goto error;
63
64 adapter->priv_num = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070065
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070066 /* Allocate memory for private structure */
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -070067 adapter->priv[0] = kzalloc(sizeof(struct mwifiex_private), GFP_KERNEL);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070068 if (!adapter->priv[0]) {
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -070069 dev_err(adapter->dev,
70 "%s: failed to alloc priv[0]\n", __func__);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071 goto error;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070072 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070073
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -070074 adapter->priv_num++;
75
76 adapter->priv[0]->adapter = adapter;
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;
143
144 spin_lock_irqsave(&adapter->main_proc_lock, flags);
145
146 /* Check if already processing */
147 if (adapter->mwifiex_processing) {
148 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
149 goto exit_main_proc;
150 } else {
151 adapter->mwifiex_processing = true;
152 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
153 }
154process_start:
155 do {
156 if ((adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING) ||
157 (adapter->hw_status == MWIFIEX_HW_STATUS_NOT_READY))
158 break;
159
160 /* Handle pending interrupt if any */
161 if (adapter->int_status) {
162 if (adapter->hs_activated)
163 mwifiex_process_hs_config(adapter);
164 adapter->if_ops.process_int_status(adapter);
165 }
166
167 /* Need to wake up the card ? */
168 if ((adapter->ps_state == PS_STATE_SLEEP) &&
169 (adapter->pm_wakeup_card_req &&
170 !adapter->pm_wakeup_fw_try) &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700171 (is_command_pending(adapter) ||
172 !mwifiex_wmm_lists_empty(adapter))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700173 adapter->pm_wakeup_fw_try = true;
174 adapter->if_ops.wakeup(adapter);
175 continue;
176 }
177 if (IS_CARD_RX_RCVD(adapter)) {
178 adapter->pm_wakeup_fw_try = false;
179 if (adapter->ps_state == PS_STATE_SLEEP)
180 adapter->ps_state = PS_STATE_AWAKE;
181 } else {
182 /* We have tried to wakeup the card already */
183 if (adapter->pm_wakeup_fw_try)
184 break;
185 if (adapter->ps_state != PS_STATE_AWAKE ||
186 adapter->tx_lock_flag)
187 break;
188
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700189 if (adapter->scan_processing || adapter->data_sent ||
190 mwifiex_wmm_lists_empty(adapter)) {
191 if (adapter->cmd_sent || adapter->curr_cmd ||
192 (!is_command_pending(adapter)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700193 break;
194 }
195 }
196
197 /* Check for Cmd Resp */
198 if (adapter->cmd_resp_received) {
199 adapter->cmd_resp_received = false;
200 mwifiex_process_cmdresp(adapter);
201
202 /* call mwifiex back when init_fw is done */
203 if (adapter->hw_status == MWIFIEX_HW_STATUS_INIT_DONE) {
204 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
205 mwifiex_init_fw_complete(adapter);
206 }
207 }
208
209 /* Check for event */
210 if (adapter->event_received) {
211 adapter->event_received = false;
212 mwifiex_process_event(adapter);
213 }
214
215 /* Check if we need to confirm Sleep Request
216 received previously */
217 if (adapter->ps_state == PS_STATE_PRE_SLEEP) {
218 if (!adapter->cmd_sent && !adapter->curr_cmd)
219 mwifiex_check_ps_cond(adapter);
220 }
221
222 /* * The ps_state may have been changed during processing of
223 * Sleep Request event.
224 */
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700225 if ((adapter->ps_state == PS_STATE_SLEEP) ||
226 (adapter->ps_state == PS_STATE_PRE_SLEEP) ||
227 (adapter->ps_state == PS_STATE_SLEEP_CFM) ||
228 adapter->tx_lock_flag)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700229 continue;
230
231 if (!adapter->cmd_sent && !adapter->curr_cmd) {
232 if (mwifiex_exec_next_cmd(adapter) == -1) {
233 ret = -1;
234 break;
235 }
236 }
237
238 if (!adapter->scan_processing && !adapter->data_sent &&
239 !mwifiex_wmm_lists_empty(adapter)) {
240 mwifiex_wmm_process_tx(adapter);
241 if (adapter->hs_activated) {
242 adapter->is_hs_configured = false;
243 mwifiex_hs_activated_event
244 (mwifiex_get_priv
245 (adapter, MWIFIEX_BSS_ROLE_ANY),
246 false);
247 }
248 }
249
250 if (adapter->delay_null_pkt && !adapter->cmd_sent &&
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700251 !adapter->curr_cmd && !is_command_pending(adapter) &&
252 mwifiex_wmm_lists_empty(adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700253 if (!mwifiex_send_null_packet
254 (mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA),
255 MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET |
256 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET)) {
257 adapter->delay_null_pkt = false;
258 adapter->ps_state = PS_STATE_SLEEP;
259 }
260 break;
261 }
262 } while (true);
263
264 if ((adapter->int_status) || IS_CARD_RX_RCVD(adapter))
265 goto process_start;
266
267 spin_lock_irqsave(&adapter->main_proc_lock, flags);
268 adapter->mwifiex_processing = false;
269 spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
270
271exit_main_proc:
272 if (adapter->hw_status == MWIFIEX_HW_STATUS_CLOSING)
273 mwifiex_shutdown_drv(adapter);
274 return ret;
275}
276
277/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700278 * This function frees the adapter structure.
279 *
280 * Additionally, this closes the netlink socket, frees the timers
281 * and private structures.
282 */
283static void mwifiex_free_adapter(struct mwifiex_adapter *adapter)
284{
285 if (!adapter) {
286 pr_err("%s: adapter is NULL\n", __func__);
287 return;
288 }
289
290 mwifiex_unregister(adapter);
291 pr_debug("info: %s: free adapter\n", __func__);
292}
293
294/*
295 * This function initializes the hardware and firmware.
296 *
297 * The main initialization steps followed are -
298 * - Download the correct firmware to card
299 * - Allocate and initialize the adapter structure
300 * - Initialize the private structures
301 * - Issue the init commands to firmware
302 */
303static int mwifiex_init_hw_fw(struct mwifiex_adapter *adapter)
304{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700305 int ret, err;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306 struct mwifiex_fw_image fw;
307
308 memset(&fw, 0, sizeof(struct mwifiex_fw_image));
309
Amitkumar Karwar4a7f5db2011-05-23 18:00:17 -0700310 err = request_firmware(&adapter->firmware, adapter->fw_name,
311 adapter->dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700312 if (err < 0) {
313 dev_err(adapter->dev, "request_firmware() returned"
314 " error code %#x\n", err);
315 ret = -1;
316 goto done;
317 }
318 fw.fw_buf = (u8 *) adapter->firmware->data;
319 fw.fw_len = adapter->firmware->size;
320
321 ret = mwifiex_dnld_fw(adapter, &fw);
322 if (ret == -1)
323 goto done;
324
325 dev_notice(adapter->dev, "WLAN FW is active\n");
326
327 adapter->init_wait_q_woken = false;
328 ret = mwifiex_init_fw(adapter);
329 if (ret == -1) {
330 goto done;
331 } else if (!ret) {
332 adapter->hw_status = MWIFIEX_HW_STATUS_READY;
333 goto done;
334 }
335 /* Wait for mwifiex_init to complete */
336 wait_event_interruptible(adapter->init_wait_q,
337 adapter->init_wait_q_woken);
338 if (adapter->hw_status != MWIFIEX_HW_STATUS_READY) {
339 ret = -1;
340 goto done;
341 }
342 ret = 0;
343
344done:
345 if (adapter->firmware)
346 release_firmware(adapter->firmware);
347 if (ret)
348 ret = -1;
349 return ret;
350}
351
352/*
353 * This function fills a driver buffer.
354 *
355 * The function associates a given SKB with the provided driver buffer
356 * and also updates some of the SKB parameters, including IP header,
357 * priority and timestamp.
358 */
359static void
360mwifiex_fill_buffer(struct sk_buff *skb)
361{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700362 struct ethhdr *eth;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700363 struct iphdr *iph;
364 struct timeval tv;
365 u8 tid = 0;
366
367 eth = (struct ethhdr *) skb->data;
368 switch (eth->h_proto) {
369 case __constant_htons(ETH_P_IP):
370 iph = ip_hdr(skb);
371 tid = IPTOS_PREC(iph->tos);
372 pr_debug("data: packet type ETH_P_IP: %04x, tid=%#x prio=%#x\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700373 eth->h_proto, tid, skb->priority);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700374 break;
375 case __constant_htons(ETH_P_ARP):
376 pr_debug("data: ARP packet: %04x\n", eth->h_proto);
377 default:
378 break;
379 }
380/* Offset for TOS field in the IP header */
381#define IPTOS_OFFSET 5
382 tid = (tid >> IPTOS_OFFSET);
383 skb->priority = tid;
384 /* Record the current time the packet was queued; used to
385 determine the amount of time the packet was queued in
386 the driver before it was sent to the firmware.
387 The delay is then sent along with the packet to the
388 firmware for aggregate delay calculation for stats and
389 MSDU lifetime expiry.
390 */
391 do_gettimeofday(&tv);
392 skb->tstamp = timeval_to_ktime(tv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700393}
394
395/*
396 * CFG802.11 network device handler for open.
397 *
398 * Starts the data queue.
399 */
400static int
401mwifiex_open(struct net_device *dev)
402{
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800403 netif_tx_start_all_queues(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700404 return 0;
405}
406
407/*
408 * CFG802.11 network device handler for close.
409 */
410static int
411mwifiex_close(struct net_device *dev)
412{
413 return 0;
414}
415
416/*
417 * CFG802.11 network device handler for data transmission.
418 */
419static int
420mwifiex_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
421{
422 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700423 struct sk_buff *new_skb;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700424 struct mwifiex_txinfo *tx_info;
425
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800426 dev_dbg(priv->adapter->dev, "data: %lu BSS(%d-%d): Data <= kernel\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700427 jiffies, priv->bss_type, priv->bss_num);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700428
429 if (priv->adapter->surprise_removed) {
Christoph Fritzb53575e2011-05-08 22:50:09 +0200430 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700431 priv->stats.tx_dropped++;
432 return 0;
433 }
434 if (!skb->len || (skb->len > ETH_FRAME_LEN)) {
435 dev_err(priv->adapter->dev, "Tx: bad skb len %d\n", skb->len);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200436 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700437 priv->stats.tx_dropped++;
438 return 0;
439 }
440 if (skb_headroom(skb) < MWIFIEX_MIN_DATA_HEADER_LEN) {
441 dev_dbg(priv->adapter->dev,
442 "data: Tx: insufficient skb headroom %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700443 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700444 /* Insufficient skb headroom - allocate a new skb */
445 new_skb =
446 skb_realloc_headroom(skb, MWIFIEX_MIN_DATA_HEADER_LEN);
447 if (unlikely(!new_skb)) {
448 dev_err(priv->adapter->dev, "Tx: cannot alloca new_skb\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +0200449 kfree_skb(skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700450 priv->stats.tx_dropped++;
451 return 0;
452 }
453 kfree_skb(skb);
454 skb = new_skb;
455 dev_dbg(priv->adapter->dev, "info: new skb headroomd %d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700456 skb_headroom(skb));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700457 }
458
459 tx_info = MWIFIEX_SKB_TXCB(skb);
Amitkumar Karwared379762014-06-20 11:45:25 -0700460 memset(tx_info, 0, sizeof(*tx_info));
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800461 tx_info->bss_num = priv->bss_num;
462 tx_info->bss_type = priv->bss_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700463 mwifiex_fill_buffer(skb);
464
Avinash Patil2690e1b2012-01-24 20:50:24 -0800465 mwifiex_wmm_add_buf_txqueue(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466 atomic_inc(&priv->adapter->tx_pending);
467
468 if (atomic_read(&priv->adapter->tx_pending) >= MAX_TX_PENDING) {
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800469 mwifiex_set_trans_start(dev);
470 mwifiex_stop_net_dev_queue(priv->netdev, priv->adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700471 }
472
473 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
474
475 return 0;
476}
477
478/*
479 * CFG802.11 network device handler for setting MAC address.
480 */
481static int
482mwifiex_set_mac_address(struct net_device *dev, void *addr)
483{
484 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700485 struct sockaddr *hw_addr = addr;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700486 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700487
488 memcpy(priv->curr_addr, hw_addr->sa_data, ETH_ALEN);
489
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700490 /* Send request to firmware */
491 ret = mwifiex_send_cmd_sync(priv, HostCmd_CMD_802_11_MAC_ADDRESS,
492 HostCmd_ACT_GEN_SET, 0, NULL);
493
494 if (!ret)
495 memcpy(priv->netdev->dev_addr, priv->curr_addr, ETH_ALEN);
496 else
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700497 dev_err(priv->adapter->dev,
498 "set mac address failed: ret=%d\n", ret);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700499
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700500 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
501
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700502 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700503}
504
505/*
506 * CFG802.11 network device handler for setting multicast list.
507 */
508static void mwifiex_set_multicast_list(struct net_device *dev)
509{
510 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700511 struct mwifiex_multicast_list mcast_list;
512
513 if (dev->flags & IFF_PROMISC) {
514 mcast_list.mode = MWIFIEX_PROMISC_MODE;
515 } else if (dev->flags & IFF_ALLMULTI ||
516 netdev_mc_count(dev) > MWIFIEX_MAX_MULTICAST_LIST_SIZE) {
517 mcast_list.mode = MWIFIEX_ALL_MULTI_MODE;
518 } else {
519 mcast_list.mode = MWIFIEX_MULTICAST_MODE;
520 if (netdev_mc_count(dev))
521 mcast_list.num_multicast_addr =
522 mwifiex_copy_mcast_addr(&mcast_list, dev);
523 }
524 mwifiex_request_set_multicast_list(priv, &mcast_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700525}
526
527/*
528 * CFG802.11 network device handler for transmission timeout.
529 */
530static void
531mwifiex_tx_timeout(struct net_device *dev)
532{
533 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
534
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800535 dev_err(priv->adapter->dev, "%lu : Tx timeout, bss_type-num = %d-%d\n",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700536 jiffies, priv->bss_type, priv->bss_num);
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800537 mwifiex_set_trans_start(dev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700538 priv->num_tx_timeout++;
539}
540
541/*
542 * CFG802.11 network device handler for statistics retrieval.
543 */
544static struct net_device_stats *mwifiex_get_stats(struct net_device *dev)
545{
546 struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
547
548 return &priv->stats;
549}
550
551/* Network device handlers */
552static const struct net_device_ops mwifiex_netdev_ops = {
553 .ndo_open = mwifiex_open,
554 .ndo_stop = mwifiex_close,
555 .ndo_start_xmit = mwifiex_hard_start_xmit,
556 .ndo_set_mac_address = mwifiex_set_mac_address,
557 .ndo_tx_timeout = mwifiex_tx_timeout,
558 .ndo_get_stats = mwifiex_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000559 .ndo_set_rx_mode = mwifiex_set_multicast_list,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700560};
561
562/*
563 * This function initializes the private structure parameters.
564 *
565 * The following wait queues are initialized -
566 * - IOCTL wait queue
567 * - Command wait queue
568 * - Statistics wait queue
569 *
570 * ...and the following default parameters are set -
571 * - Current key index : Set to 0
572 * - Rate index : Set to auto
573 * - Media connected : Set to disconnected
574 * - Adhoc link sensed : Set to false
575 * - Nick name : Set to null
576 * - Number of Tx timeout : Set to 0
577 * - Device address : Set to current address
578 *
579 * In addition, the CFG80211 work queue is also created.
580 */
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700581void mwifiex_init_priv_params(struct mwifiex_private *priv,
582 struct net_device *dev)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700583{
584 dev->netdev_ops = &mwifiex_netdev_ops;
585 /* Initialize private structure */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700586 priv->current_key_index = 0;
587 priv->media_connected = false;
588 memset(&priv->nick_name, 0, sizeof(priv->nick_name));
589 priv->num_tx_timeout = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700590 memcpy(dev->dev_addr, priv->curr_addr, ETH_ALEN);
591}
592
593/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700594 * This function check if command is pending.
595 */
596int is_command_pending(struct mwifiex_adapter *adapter)
597{
598 unsigned long flags;
599 int is_cmd_pend_q_empty;
600
601 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
602 is_cmd_pend_q_empty = list_empty(&adapter->cmd_pending_q);
603 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
604
605 return !is_cmd_pend_q_empty;
606}
607
608/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700609 * This is the main work queue function.
610 *
611 * It handles the main process, which in turn handles the complete
612 * driver operations.
613 */
614static void mwifiex_main_work_queue(struct work_struct *work)
615{
616 struct mwifiex_adapter *adapter =
617 container_of(work, struct mwifiex_adapter, main_work);
618
619 if (adapter->surprise_removed)
620 return;
621 mwifiex_main_process(adapter);
622}
623
624/*
625 * This function cancels all works in the queue and destroys
626 * the main workqueue.
627 */
628static void
629mwifiex_terminate_workqueue(struct mwifiex_adapter *adapter)
630{
631 flush_workqueue(adapter->workqueue);
632 destroy_workqueue(adapter->workqueue);
633 adapter->workqueue = NULL;
634}
635
636/*
637 * This function adds the card.
638 *
639 * This function follows the following major steps to set up the device -
640 * - Initialize software. This includes probing the card, registering
641 * the interface operations table, and allocating/initializing the
642 * adapter structure
643 * - Set up the netlink socket
644 * - Create and start the main work queue
645 * - Register the device
646 * - Initialize firmware and hardware
647 * - Add logical interfaces
648 */
649int
650mwifiex_add_card(void *card, struct semaphore *sem,
Amitkumar Karward930fae2011-10-11 17:41:21 -0700651 struct mwifiex_if_ops *if_ops, u8 iface_type)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700652{
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700653 struct mwifiex_adapter *adapter;
Amitkumar Karwar5674fbb72011-08-02 18:42:23 -0700654 char fmt[64];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700655 struct mwifiex_private *priv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700656
657 if (down_interruptible(sem))
658 goto exit_sem_err;
659
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700660 if (mwifiex_register(card, if_ops, (void **)&adapter)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700661 pr_err("%s: software init failed\n", __func__);
662 goto err_init_sw;
663 }
664
Amitkumar Karward930fae2011-10-11 17:41:21 -0700665 adapter->iface_type = iface_type;
666
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700667 adapter->hw_status = MWIFIEX_HW_STATUS_INITIALIZING;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700668 adapter->surprise_removed = false;
669 init_waitqueue_head(&adapter->init_wait_q);
670 adapter->is_suspended = false;
671 adapter->hs_activated = false;
672 init_waitqueue_head(&adapter->hs_activate_wait_q);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700673 adapter->cmd_wait_q_required = false;
674 init_waitqueue_head(&adapter->cmd_wait_q.wait);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700675 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700676 adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700677
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700678 adapter->workqueue = create_workqueue("MWIFIEX_WORK_QUEUE");
679 if (!adapter->workqueue)
680 goto err_kmalloc;
681
682 INIT_WORK(&adapter->main_work, mwifiex_main_work_queue);
683
684 /* Register the device. Fill up the private data structure with relevant
685 information from the card and request for the required IRQ. */
686 if (adapter->if_ops.register_dev(adapter)) {
687 pr_err("%s: failed to register mwifiex device\n", __func__);
688 goto err_registerdev;
689 }
690
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700691 if (mwifiex_init_hw_fw(adapter)) {
692 pr_err("%s: firmware init failed\n", __func__);
693 goto err_init_fw;
694 }
Amitkumar Karwar2be78592011-04-15 20:50:42 -0700695
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700696 priv = adapter->priv[0];
697
698 if (mwifiex_register_cfg80211(priv) != 0) {
699 dev_err(adapter->dev, "cannot register netdevice"
700 " with cfg80211\n");
701 goto err_init_fw;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700702 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700703
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700704 rtnl_lock();
705 /* Create station interface by default */
706 if (!mwifiex_add_virtual_intf(priv->wdev->wiphy, "mlan%d",
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700707 NL80211_IFTYPE_STATION, NULL, NULL)) {
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700708 rtnl_unlock();
709 dev_err(adapter->dev, "cannot create default station"
710 " interface\n");
711 goto err_add_intf;
712 }
713
714 rtnl_unlock();
715
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700716 up(sem);
717
Amitkumar Karwar5674fbb72011-08-02 18:42:23 -0700718 mwifiex_drv_get_driver_version(adapter, fmt, sizeof(fmt) - 1);
719 dev_notice(adapter->dev, "driver_version = %s\n", fmt);
720
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700721 return 0;
722
723err_add_intf:
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700724 rtnl_lock();
725 mwifiex_del_virtual_intf(priv->wdev->wiphy, priv->netdev);
726 rtnl_unlock();
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700727err_init_fw:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700728 pr_debug("info: %s: unregister device\n", __func__);
729 adapter->if_ops.unregister_dev(adapter);
730err_registerdev:
731 adapter->surprise_removed = true;
732 mwifiex_terminate_workqueue(adapter);
733err_kmalloc:
734 if ((adapter->hw_status == MWIFIEX_HW_STATUS_FW_READY) ||
735 (adapter->hw_status == MWIFIEX_HW_STATUS_READY)) {
736 pr_debug("info: %s: shutdown mwifiex\n", __func__);
737 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700738
739 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700740 wait_event_interruptible(adapter->init_wait_q,
741 adapter->init_wait_q_woken);
742 }
743
744 mwifiex_free_adapter(adapter);
745
746err_init_sw:
747 up(sem);
748
749exit_sem_err:
750 return -1;
751}
752EXPORT_SYMBOL_GPL(mwifiex_add_card);
753
754/*
755 * This function removes the card.
756 *
757 * This function follows the following major steps to remove the device -
758 * - Stop data traffic
759 * - Shutdown firmware
760 * - Remove the logical interfaces
761 * - Terminate the work queue
762 * - Unregister the device
763 * - Free the adapter structure
764 */
765int mwifiex_remove_card(struct mwifiex_adapter *adapter, struct semaphore *sem)
766{
767 struct mwifiex_private *priv = NULL;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700768 int i;
769
770 if (down_interruptible(sem))
771 goto exit_sem_err;
772
773 if (!adapter)
774 goto exit_remove;
775
776 adapter->surprise_removed = true;
777
778 /* Stop data */
779 for (i = 0; i < adapter->priv_num; i++) {
780 priv = adapter->priv[i];
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700781 if (priv && priv->netdev) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700782 if (!netif_queue_stopped(priv->netdev))
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800783 mwifiex_stop_net_dev_queue(priv->netdev,
Yogesh Ashok Powarf57c1ed2012-03-13 19:22:37 -0700784 adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700785 if (netif_carrier_ok(priv->netdev))
786 netif_carrier_off(priv->netdev);
787 }
788 }
789
790 dev_dbg(adapter->dev, "cmd: calling mwifiex_shutdown_drv...\n");
791 adapter->init_wait_q_woken = false;
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -0700792
793 if (mwifiex_shutdown_drv(adapter) == -EINPROGRESS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700794 wait_event_interruptible(adapter->init_wait_q,
795 adapter->init_wait_q_woken);
796 dev_dbg(adapter->dev, "cmd: mwifiex_shutdown_drv done\n");
797 if (atomic_read(&adapter->rx_pending) ||
798 atomic_read(&adapter->tx_pending) ||
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700799 atomic_read(&adapter->cmd_pending)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700800 dev_err(adapter->dev, "rx_pending=%d, tx_pending=%d, "
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700801 "cmd_pending=%d\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700802 atomic_read(&adapter->rx_pending),
803 atomic_read(&adapter->tx_pending),
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700804 atomic_read(&adapter->cmd_pending));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700805 }
806
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700807 for (i = 0; i < adapter->priv_num; i++) {
808 priv = adapter->priv[i];
809
810 if (!priv)
811 continue;
812
813 rtnl_lock();
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800814 if (priv->wdev && priv->netdev)
815 mwifiex_del_virtual_intf(priv->wdev->wiphy,
816 priv->netdev);
Yogesh Ashok Powar93a1df42011-09-26 20:37:26 -0700817 rtnl_unlock();
818 }
819
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700820 priv = adapter->priv[0];
821 if (!priv)
822 goto exit_remove;
823
Amitkumar Karwar2da8cbf2012-02-03 20:34:02 -0800824 if (priv->wdev) {
825 wiphy_unregister(priv->wdev->wiphy);
826 wiphy_free(priv->wdev->wiphy);
827 kfree(priv->wdev);
828 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700829
830 mwifiex_terminate_workqueue(adapter);
831
832 /* Unregister device */
833 dev_dbg(adapter->dev, "info: unregister device\n");
834 adapter->if_ops.unregister_dev(adapter);
835 /* Free adapter structure */
836 dev_dbg(adapter->dev, "info: free adapter\n");
837 mwifiex_free_adapter(adapter);
838
839exit_remove:
840 up(sem);
841exit_sem_err:
842 return 0;
843}
844EXPORT_SYMBOL_GPL(mwifiex_remove_card);
845
846/*
847 * This function initializes the module.
848 *
849 * The debug FS is also initialized if configured.
850 */
851static int
852mwifiex_init_module(void)
853{
854#ifdef CONFIG_DEBUG_FS
855 mwifiex_debugfs_init();
856#endif
857 return 0;
858}
859
860/*
861 * This function cleans up the module.
862 *
863 * The debug FS is removed if available.
864 */
865static void
866mwifiex_cleanup_module(void)
867{
868#ifdef CONFIG_DEBUG_FS
869 mwifiex_debugfs_remove();
870#endif
871}
872
873module_init(mwifiex_init_module);
874module_exit(mwifiex_cleanup_module);
875
876MODULE_AUTHOR("Marvell International Ltd.");
877MODULE_DESCRIPTION("Marvell WiFi-Ex Driver version " VERSION);
878MODULE_VERSION(VERSION);
879MODULE_LICENSE("GPL v2");