blob: 3446da6792c90efb28b8d594e38d2d99676564da [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);
Ujjal Royca8d6df2013-12-02 23:17:53 -080043 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070044
45 local_rx_pd = (struct rxpd *) (skb->data);
46 /* Get the BSS number from rxpd, get corresponding priv */
47 priv = mwifiex_get_priv_by_id(adapter, local_rx_pd->bss_num &
48 BSS_NUM_MASK, local_rx_pd->bss_type);
49 if (!priv)
50 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
51
Avinash Patilf3b369e2012-10-19 19:19:21 -070052 if (!priv) {
53 dev_err(adapter->dev, "data: priv not found. Drop RX packet\n");
54 dev_kfree_skb_any(skb);
55 return -1;
56 }
57
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -080058 rx_info->bss_num = priv->bss_num;
59 rx_info->bss_type = priv->bss_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070060
Avinash Patil838e4f42012-08-03 18:06:08 -070061 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP)
Ujjal Royca8d6df2013-12-02 23:17:53 -080062 ret = mwifiex_process_uap_rx_packet(priv, skb);
63 else
64 ret = mwifiex_process_sta_rx_packet(priv, skb);
Avinash Patil838e4f42012-08-03 18:06:08 -070065
Ujjal Royca8d6df2013-12-02 23:17:53 -080066 /* Decrement RX pending counter for each packet */
67 if (adapter->if_ops.data_complete)
68 adapter->if_ops.data_complete(adapter);
69
70 return ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071}
72EXPORT_SYMBOL_GPL(mwifiex_handle_rx_packet);
73
74/*
75 * This function sends a packet to device.
76 *
77 * It processes the packet to add the TxPD, checks condition and
78 * sends the processed packet to firmware for transmission.
79 *
80 * On successful completion, the function calls the completion callback
81 * and logs the time.
82 */
83int mwifiex_process_tx(struct mwifiex_private *priv, struct sk_buff *skb,
84 struct mwifiex_tx_param *tx_param)
85{
86 int ret = -1;
87 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -070088 u8 *head_ptr;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070089 struct txpd *local_tx_pd = NULL;
90
Avinash Patil4ac87642012-09-10 18:30:49 -070091 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP)
92 head_ptr = mwifiex_process_uap_txpd(priv, skb);
93 else
94 head_ptr = mwifiex_process_sta_txpd(priv, skb);
95
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096 if (head_ptr) {
97 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA)
98 local_tx_pd =
99 (struct txpd *) (head_ptr + INTF_HEADER_LEN);
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700100 if (adapter->iface_type == MWIFIEX_USB) {
101 adapter->data_sent = true;
102 skb_pull(skb, INTF_HEADER_LEN);
103 ret = adapter->if_ops.host_to_card(adapter,
104 MWIFIEX_USB_EP_DATA,
105 skb, NULL);
106 } else {
107 ret = adapter->if_ops.host_to_card(adapter,
108 MWIFIEX_TYPE_DATA,
109 skb, tx_param);
110 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700111 }
112
113 switch (ret) {
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700114 case -ENOSR:
115 dev_err(adapter->dev, "data: -ENOSR is returned\n");
116 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700117 case -EBUSY:
118 if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700119 (adapter->pps_uapsd_mode) && (adapter->tx_lock_flag)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700120 priv->adapter->tx_lock_flag = false;
Yogesh Ashok Powar3d82de02011-10-05 14:58:24 -0700121 if (local_tx_pd)
122 local_tx_pd->flags = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700123 }
124 dev_dbg(adapter->dev, "data: -EBUSY is returned\n");
125 break;
126 case -1:
Avinash Patile7f767a2013-01-03 21:21:32 -0800127 if (adapter->iface_type != MWIFIEX_PCIE)
128 adapter->data_sent = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700129 dev_err(adapter->dev, "mwifiex_write_data_async failed: 0x%X\n",
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700130 ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700131 adapter->dbg.num_tx_host_to_card_failure++;
Avinash Patil47411a02012-11-01 18:44:16 -0700132 mwifiex_write_data_complete(adapter, skb, 0, ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700133 break;
134 case -EINPROGRESS:
Avinash Patile7f767a2013-01-03 21:21:32 -0800135 if (adapter->iface_type != MWIFIEX_PCIE)
136 adapter->data_sent = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700137 break;
138 case 0:
Avinash Patil47411a02012-11-01 18:44:16 -0700139 mwifiex_write_data_complete(adapter, skb, 0, ret);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700140 break;
141 default:
142 break;
143 }
144
145 return ret;
146}
147
148/*
149 * Packet send completion callback handler.
150 *
151 * It either frees the buffer directly or forwards it to another
152 * completion callback which checks conditions, updates statistics,
153 * wakes up stalled traffic queue if required, and then frees the buffer.
154 */
155int mwifiex_write_data_complete(struct mwifiex_adapter *adapter,
Avinash Patil47411a02012-11-01 18:44:16 -0700156 struct sk_buff *skb, int aggr, int status)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700157{
Avinash Patil47411a02012-11-01 18:44:16 -0700158 struct mwifiex_private *priv;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700159 struct mwifiex_txinfo *tx_info;
Avinash Patil47411a02012-11-01 18:44:16 -0700160 struct netdev_queue *txq;
161 int index;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700162
163 if (!skb)
164 return 0;
165
166 tx_info = MWIFIEX_SKB_TXCB(skb);
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800167 priv = mwifiex_get_priv_by_id(adapter, tx_info->bss_num,
Yogesh Ashok Powarc65a30f2012-03-13 19:22:42 -0700168 tx_info->bss_type);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700169 if (!priv)
170 goto done;
171
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700172 if (adapter->iface_type == MWIFIEX_USB)
173 adapter->data_sent = false;
174
Avinash Patilbbea3bc2011-12-08 20:41:05 -0800175 mwifiex_set_trans_start(priv->netdev);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700176 if (!status) {
177 priv->stats.tx_packets++;
Ujjal Roya1ed4842013-12-02 23:17:55 -0800178 priv->stats.tx_bytes += tx_info->pkt_len;
Ashok Nagarajan8908c7d2013-03-08 10:58:45 -0800179 if (priv->tx_timeout_cnt)
180 priv->tx_timeout_cnt = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700181 } else {
182 priv->stats.tx_errors++;
183 }
Marc Yang62a5b7d2011-05-16 19:17:53 -0700184
Avinash Patil838e4f42012-08-03 18:06:08 -0700185 if (tx_info->flags & MWIFIEX_BUF_FLAG_BRIDGED_PKT)
186 atomic_dec_return(&adapter->pending_bridged_pkts);
Avinash Patil47411a02012-11-01 18:44:16 -0700187
188 if (aggr)
189 /* For skb_aggr, do not wake up tx queue */
Marc Yang62a5b7d2011-05-16 19:17:53 -0700190 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700191
Avinash Patil47411a02012-11-01 18:44:16 -0700192 atomic_dec(&adapter->tx_pending);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700193
Avinash Patil47411a02012-11-01 18:44:16 -0700194 index = mwifiex_1d_to_wmm_queue[skb->priority];
195 if (atomic_dec_return(&priv->wmm_tx_pending[index]) < LOW_TX_PENDING) {
196 txq = netdev_get_tx_queue(priv->netdev, index);
197 if (netif_tx_queue_stopped(txq)) {
198 netif_tx_wake_queue(txq);
199 dev_dbg(adapter->dev, "wake queue: %d\n", index);
200 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700201 }
202done:
203 dev_kfree_skb_any(skb);
204
205 return 0;
206}
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700207EXPORT_SYMBOL_GPL(mwifiex_write_data_complete);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700208