blob: e2faec4db10863c28c7156e922b14b2ca4fa02c9 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: generic TX/RX data handling
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 "decl.h"
21#include "ioctl.h"
22#include "util.h"
23#include "fw.h"
24#include "main.h"
25#include "wmm.h"
26
27/*
28 * This function processes the received buffer.
29 *
30 * Main responsibility of this function is to parse the RxPD to
31 * identify the correct interface this packet is headed for and
32 * forwarding it to the associated handling function, where the
33 * packet will be further processed and sent to kernel/upper layer
34 * if required.
35 */
36int mwifiex_handle_rx_packet(struct mwifiex_adapter *adapter,
37 struct sk_buff *skb)
38{
Bing Zhao5e6e3a92011-03-21 18:00:50 -070039 struct mwifiex_private *priv =
40 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
41 struct rxpd *local_rx_pd;
42 struct mwifiex_rxinfo *rx_info = MWIFIEX_SKB_RXCB(skb);
43
44 local_rx_pd = (struct rxpd *) (skb->data);
45 /* Get the BSS number from rxpd, get corresponding priv */
46 priv = mwifiex_get_priv_by_id(adapter, local_rx_pd->bss_num &
47 BSS_NUM_MASK, local_rx_pd->bss_type);
48 if (!priv)
49 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
50
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -080051 rx_info->bss_num = priv->bss_num;
52 rx_info->bss_type = priv->bss_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070053
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -070054 return mwifiex_process_sta_rx_packet(adapter, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070055}
56EXPORT_SYMBOL_GPL(mwifiex_handle_rx_packet);
57
58/*
59 * This function sends a packet to device.
60 *
61 * It processes the packet to add the TxPD, checks condition and
62 * sends the processed packet to firmware for transmission.
63 *
64 * On successful completion, the function calls the completion callback
65 * and logs the time.
66 */
67int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
68 struct mwifiex_tx_param *tx_param)
69{
70 int ret = -1;
71 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -070072 u8 *head_ptr;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070073 struct txpd *local_tx_pd = NULL;
74
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -070075 head_ptr = mwifiex_process_sta_txpd(priv, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070076 if (head_ptr) {
77 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA)
78 local_tx_pd =
79 (struct txpd *) (head_ptr + INTF_HEADER_LEN);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070080 if (adapter->iface_type == MWIFIEX_USB) {
81 adapter->data_sent = true;
82 skb_pull(skb, INTF_HEADER_LEN);
83 ret = adapter->if_ops.host_to_card(adapter,
84 MWIFIEX_USB_EP_DATA,
85 skb, NULL);
86 } else {
87 ret = adapter->if_ops.host_to_card(adapter,
88 MWIFIEX_TYPE_DATA,
89 skb, tx_param);
90 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070091 }
92
93 switch (ret) {
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070094 case -ENOSR:
95 dev_err(adapter->dev, "data: -ENOSR is returned\n");
96 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070097 case -EBUSY:
98 if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -070099 (adapter->pps_uapsd_mode) && (adapter->tx_lock_flag)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700100 priv->adapter->tx_lock_flag = false;
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700101 if (local_tx_pd)
102 local_tx_pd->flags = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700103 }
104 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
105 break;
106 case -1:
107 adapter->data_sent = false;
108 dev_err(adapter->dev, "mwifiex_write_data_async failed: 0x%X\n",
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700109 ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700110 adapter->dbg.num_tx_host_to_card_failure++;
111 mwifiex_write_data_complete(adapter, skb, ret);
112 break;
113 case -EINPROGRESS:
114 adapter->data_sent = false;
115 break;
116 case 0:
117 mwifiex_write_data_complete(adapter, skb, ret);
118 break;
119 default:
120 break;
121 }
122
123 return ret;
124}
125
126/*
127 * Packet send completion callback handler.
128 *
129 * It either frees the buffer directly or forwards it to another
130 * completion callback which checks conditions, updates statistics,
131 * wakes up stalled traffic queue if required, and then frees the buffer.
132 */
133int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
134 struct sk_buff *skb, int status)
135{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700136 struct mwifiex_private *priv, *tpriv;
137 struct mwifiex_txinfo *tx_info;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138 int i;
139
140 if (!skb)
141 return 0;
142
143 tx_info = MWIFIEX_SKB_TXCB(skb);
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800144 priv = mwifiex_get_priv_by_id(adapter, tx_info->bss_num,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700145 tx_info->bss_type);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700146 if (!priv)
147 goto done;
148
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700149 if (adapter->iface_type == MWIFIEX_USB)
150 adapter->data_sent = false;
151
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800152 mwifiex_set_trans_start(priv->netdev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700153 if (!status) {
154 priv->stats.tx_packets++;
155 priv->stats.tx_bytes += skb->len;
156 } else {
157 priv->stats.tx_errors++;
158 }
Marc Yang62a5b7d2011-05-16 19:17:53 -0700159
160 if (atomic_dec_return(&adapter->tx_pending) >= LOW_TX_PENDING)
161 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700162
163 for (i = 0; i < adapter->priv_num; i++) {
164
165 tpriv = adapter->priv[i];
166
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700167 if ((GET_BSS_ROLE(tpriv) == MWIFIEX_BSS_ROLE_STA) &&
168 (tpriv->media_connected)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700169 if (netif_queue_stopped(tpriv->netdev))
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800170 mwifiex_wake_up_net_dev_queue(tpriv->netdev,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700171 adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700172 }
173 }
174done:
175 dev_kfree_skb_any(skb);
176
177 return 0;
178}
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700179EXPORT_SYMBOL_GPL(mwifiex_write_data_complete);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180