blob: 93725ce55b107d7236c9110d2043166c6e2b39a1 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of TX in wlan driver.
3 */
4#include <linux/netdevice.h>
5
6#include "hostcmd.h"
7#include "radiotap.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008#include "decl.h"
9#include "defs.h"
10#include "dev.h"
11#include "wext.h"
12
13/**
14 * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE
15 * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1)
16 *
17 * @param rate Input rate
18 * @return Output Rate (0 if invalid)
19 */
20static u32 convert_radiotap_rate_to_mv(u8 rate)
21{
22 switch (rate) {
23 case 2: /* 1 Mbps */
24 return 0 | (1 << 4);
25 case 4: /* 2 Mbps */
26 return 1 | (1 << 4);
27 case 11: /* 5.5 Mbps */
28 return 2 | (1 << 4);
29 case 22: /* 11 Mbps */
30 return 3 | (1 << 4);
31 case 12: /* 6 Mbps */
32 return 4 | (1 << 4);
33 case 18: /* 9 Mbps */
34 return 5 | (1 << 4);
35 case 24: /* 12 Mbps */
36 return 6 | (1 << 4);
37 case 36: /* 18 Mbps */
38 return 7 | (1 << 4);
39 case 48: /* 24 Mbps */
40 return 8 | (1 << 4);
41 case 72: /* 36 Mbps */
42 return 9 | (1 << 4);
43 case 96: /* 48 Mbps */
44 return 10 | (1 << 4);
45 case 108: /* 54 Mbps */
46 return 11 | (1 << 4);
47 }
48 return 0;
49}
50
51/**
52 * @brief This function processes a single packet and sends
53 * to IF layer
54 *
Holger Schurig10078322007-11-15 18:05:47 -050055 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056 * @param skb A pointer to skb which includes TX packet
57 * @return 0 or -1
58 */
Holger Schurig10078322007-11-15 18:05:47 -050059static int SendSinglePacket(lbs_private *priv, struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061 int ret = 0;
62 struct txpd localtxpd;
63 struct txpd *plocaltxpd = &localtxpd;
64 u8 *p802x_hdr;
65 struct tx_radiotap_hdr *pradiotap_hdr;
66 u32 new_rate;
67 u8 *ptr = priv->adapter->tmptxbuf;
68
Holger Schurig9012b282007-05-25 11:27:16 -040069 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020070
71 if (priv->adapter->surpriseremoved)
72 return -1;
73
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074 if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
Holger Schurig9012b282007-05-25 11:27:16 -040075 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
77 ret = -1;
78 goto done;
79 }
80
81 memset(plocaltxpd, 0, sizeof(struct txpd));
82
David Woodhouse981f1872007-05-25 23:36:54 -040083 plocaltxpd->tx_packet_length = cpu_to_le16(skb->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020084
85 /* offset of actual data */
David Woodhouse981f1872007-05-25 23:36:54 -040086 plocaltxpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020087
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088 p802x_hdr = skb->data;
Holger Schurig10078322007-11-15 18:05:47 -050089 if (priv->adapter->monitormode != LBS_MONITOR_OFF) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020090
91 /* locate radiotap header */
92 pradiotap_hdr = (struct tx_radiotap_hdr *)skb->data;
93
94 /* set txpd fields from the radiotap header */
95 new_rate = convert_radiotap_rate_to_mv(pradiotap_hdr->rate);
96 if (new_rate != 0) {
David Woodhouse981f1872007-05-25 23:36:54 -040097 /* use new tx_control[4:0] */
David Woodhouse981f1872007-05-25 23:36:54 -040098 plocaltxpd->tx_control = cpu_to_le32(new_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020099 }
100
101 /* skip the radiotap header */
102 p802x_hdr += sizeof(struct tx_radiotap_hdr);
David Woodhouse981f1872007-05-25 23:36:54 -0400103 plocaltxpd->tx_packet_length =
David Woodhouse86760082007-05-25 23:39:34 -0400104 cpu_to_le16(le16_to_cpu(plocaltxpd->tx_packet_length)
David Woodhouse981f1872007-05-25 23:36:54 -0400105 - sizeof(struct tx_radiotap_hdr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200106
107 }
108 /* copy destination address from 802.3 or 802.11 header */
Holger Schurig10078322007-11-15 18:05:47 -0500109 if (priv->adapter->monitormode != LBS_MONITOR_OFF)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110 memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
111 else
112 memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
113
Holger Schurigece56192007-08-02 11:53:06 -0400114 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) plocaltxpd, sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
116 if (IS_MESH_FRAME(skb)) {
David Woodhouse981f1872007-05-25 23:36:54 -0400117 plocaltxpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200118 }
119
120 memcpy(ptr, plocaltxpd, sizeof(struct txpd));
121
122 ptr += sizeof(struct txpd);
123
Holger Schurigece56192007-08-02 11:53:06 -0400124 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length));
David Woodhouse86760082007-05-25 23:39:34 -0400125 memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length));
Holger Schurig208fdd22007-05-25 12:17:06 -0400126 ret = priv->hw_host_to_card(priv, MVMS_DAT,
David Woodhouse981f1872007-05-25 23:36:54 -0400127 priv->adapter->tmptxbuf,
David Woodhouse86760082007-05-25 23:39:34 -0400128 le16_to_cpu(plocaltxpd->tx_packet_length) +
David Woodhouse981f1872007-05-25 23:36:54 -0400129 sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130
131 if (ret) {
Holger Schurig208fdd22007-05-25 12:17:06 -0400132 lbs_deb_tx("tx err: hw_host_to_card returned 0x%X\n", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200133 goto done;
134 }
135
Holger Schurig9012b282007-05-25 11:27:16 -0400136 lbs_deb_tx("SendSinglePacket succeeds\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200137
Holger Schurig9012b282007-05-25 11:27:16 -0400138done:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200139 if (!ret) {
140 priv->stats.tx_packets++;
141 priv->stats.tx_bytes += skb->len;
142 } else {
143 priv->stats.tx_dropped++;
144 priv->stats.tx_errors++;
145 }
146
Holger Schurig10078322007-11-15 18:05:47 -0500147 if (!ret && priv->adapter->monitormode != LBS_MONITOR_OFF) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200148 /* Keep the skb to echo it back once Tx feedback is
149 received from FW */
150 skb_orphan(skb);
151 /* stop processing outgoing pkts */
Holger Schurig634b8f42007-05-25 13:05:16 -0400152 netif_stop_queue(priv->dev);
Holger Schurig3cf84092007-08-02 11:50:12 -0400153 if (priv->mesh_dev)
154 netif_stop_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155 /* freeze any packets already in our queues */
156 priv->adapter->TxLockFlag = 1;
157 } else {
158 dev_kfree_skb_any(skb);
159 priv->adapter->currenttxskb = NULL;
160 }
161
Holger Schurig9012b282007-05-25 11:27:16 -0400162 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163 return ret;
164}
165
166
Holger Schurig10078322007-11-15 18:05:47 -0500167void lbs_tx_runqueue(lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168{
Holger Schurig10078322007-11-15 18:05:47 -0500169 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170 int i;
171
172 spin_lock(&adapter->txqueue_lock);
173 for (i = 0; i < adapter->tx_queue_idx; i++) {
174 struct sk_buff *skb = adapter->tx_queue_ps[i];
175 spin_unlock(&adapter->txqueue_lock);
176 SendSinglePacket(priv, skb);
177 spin_lock(&adapter->txqueue_lock);
178 }
179 adapter->tx_queue_idx = 0;
180 spin_unlock(&adapter->txqueue_lock);
181}
182
Holger Schurig10078322007-11-15 18:05:47 -0500183static void lbs_tx_queue(lbs_private *priv, struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184{
Holger Schurig10078322007-11-15 18:05:47 -0500185 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186
187 spin_lock(&adapter->txqueue_lock);
188
189 WARN_ON(priv->adapter->tx_queue_idx >= NR_TX_QUEUE);
190 adapter->tx_queue_ps[adapter->tx_queue_idx++] = skb;
Javier Cardona51d84f52007-05-25 12:06:56 -0400191 if (adapter->tx_queue_idx == NR_TX_QUEUE) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400192 netif_stop_queue(priv->dev);
Holger Schurig3cf84092007-08-02 11:50:12 -0400193 if (priv->mesh_dev)
194 netif_stop_queue(priv->mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400195 } else {
Holger Schurig634b8f42007-05-25 13:05:16 -0400196 netif_start_queue(priv->dev);
Holger Schurig3cf84092007-08-02 11:50:12 -0400197 if (priv->mesh_dev)
198 netif_start_queue(priv->mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400199 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200
201 spin_unlock(&adapter->txqueue_lock);
202}
203
204/**
205 * @brief This function checks the conditions and sends packet to IF
206 * layer if everything is ok.
207 *
Holger Schurig10078322007-11-15 18:05:47 -0500208 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209 * @return n/a
210 */
Holger Schurig10078322007-11-15 18:05:47 -0500211int lbs_process_tx(lbs_private *priv, struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200212{
213 int ret = -1;
214
Holger Schurig9012b282007-05-25 11:27:16 -0400215 lbs_deb_enter(LBS_DEB_TX);
Holger Schurigece56192007-08-02 11:53:06 -0400216 lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200217
Holger Schurig634b8f42007-05-25 13:05:16 -0400218 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200219 lbs_pr_alert( "TX error: dnld_sent = %d, not sending\n",
Holger Schurig634b8f42007-05-25 13:05:16 -0400220 priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200221 goto done;
222 }
223
224 if ((priv->adapter->psstate == PS_STATE_SLEEP) ||
225 (priv->adapter->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig10078322007-11-15 18:05:47 -0500226 lbs_tx_queue(priv, skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200227 return ret;
228 }
229
230 priv->adapter->currenttxskb = skb;
231
232 ret = SendSinglePacket(priv, skb);
233done:
Holger Schurig9012b282007-05-25 11:27:16 -0400234 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200235 return ret;
236}
237
238/**
239 * @brief This function sends to the host the last transmitted packet,
240 * filling the radiotap headers with transmission information.
241 *
Holger Schurig10078322007-11-15 18:05:47 -0500242 * @param priv A pointer to lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200243 * @param status A 32 bit value containing transmission status.
244 *
245 * @returns void
246 */
Holger Schurig10078322007-11-15 18:05:47 -0500247void lbs_send_tx_feedback(lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248{
Holger Schurig10078322007-11-15 18:05:47 -0500249 lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 struct tx_radiotap_hdr *radiotap_hdr;
251 u32 status = adapter->eventcause;
252 int txfail;
253 int try_count;
254
Holger Schurig10078322007-11-15 18:05:47 -0500255 if (adapter->monitormode == LBS_MONITOR_OFF ||
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256 adapter->currenttxskb == NULL)
257 return;
258
259 radiotap_hdr = (struct tx_radiotap_hdr *)adapter->currenttxskb->data;
260
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261 txfail = (status >> 24);
262
263#if 0
264 /* The version of roofnet that we've tested does not use this yet
265 * But it may be used in the future.
266 */
267 if (txfail)
268 radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL;
269#endif
270 try_count = (status >> 16) & 0xff;
271 radiotap_hdr->data_retries = (try_count) ?
272 (1 + adapter->txretrycount - try_count) : 0;
Holger Schurig10078322007-11-15 18:05:47 -0500273 lbs_upload_rx_packet(priv, adapter->currenttxskb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200274 adapter->currenttxskb = NULL;
275 priv->adapter->TxLockFlag = 0;
Holger Schurig10078322007-11-15 18:05:47 -0500276 if (priv->adapter->connect_status == LBS_CONNECTED) {
Holger Schurig634b8f42007-05-25 13:05:16 -0400277 netif_wake_queue(priv->dev);
Holger Schurig3cf84092007-08-02 11:50:12 -0400278 if (priv->mesh_dev)
279 netif_wake_queue(priv->mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400280 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200281}
Holger Schurig10078322007-11-15 18:05:47 -0500282EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);