blob: e2141f0a67d4ac479cd00772ad2a27d8c9463109 [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/**
David Woodhouse6b4a7e02007-12-09 12:48:10 -050052 * @brief This function checks the conditions and sends packet to IF
53 * layer if everything is ok.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054 *
Holger Schurig69f90322007-11-23 15:43:44 +010055 * @param priv A pointer to struct 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 */
David Woodhouse8af23b22007-12-09 12:57:14 -050059int lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060{
David Woodhousea2b62dc2007-12-09 14:37:59 -050061 unsigned long flags;
David Woodhouse8af23b22007-12-09 12:57:14 -050062 struct lbs_private *priv = dev->priv;
David Woodhousea2b62dc2007-12-09 14:37:59 -050063 struct txpd *txpd;
64 char *p802x_hdr;
65 uint16_t pkt_len;
66 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020067
Holger Schurig9012b282007-05-25 11:27:16 -040068 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020069
David Woodhouse2eb188a2007-12-09 23:54:27 -050070 ret = NETDEV_TX_OK;
David Woodhouse8af23b22007-12-09 12:57:14 -050071
David Woodhouse2eb188a2007-12-09 23:54:27 -050072 /* We need to protect against the queues being restarted before
73 we get round to stopping them */
74 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse6b4a7e02007-12-09 12:48:10 -050075
David Woodhouseaa21c002007-12-08 20:04:36 +000076 if (priv->surpriseremoved)
David Woodhouse2eb188a2007-12-09 23:54:27 -050077 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020078
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020079 if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
Holger Schurig9012b282007-05-25 11:27:16 -040080 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020081 skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
David Woodhousea2b62dc2007-12-09 14:37:59 -050082 /* We'll never manage to send this one; drop it and return 'OK' */
David Woodhouse2eb188a2007-12-09 23:54:27 -050083
84 priv->stats.tx_dropped++;
85 priv->stats.tx_errors++;
86 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020087 }
88
David Woodhouse2eb188a2007-12-09 23:54:27 -050089
90 netif_stop_queue(priv->dev);
91 if (priv->mesh_dev)
92 netif_stop_queue(priv->mesh_dev);
93
94 if (priv->tx_pending_len) {
95 /* This can happen if packets come in on the mesh and eth
96 device simultaneously -- there's no mutual exclusion on
97 hard_start_xmit() calls between devices. */
98 lbs_deb_tx("Packet on %s while busy\n", dev->name);
99 ret = NETDEV_TX_BUSY;
100 goto unlock;
101 }
102
103 priv->tx_pending_len = -1;
104 spin_unlock_irqrestore(&priv->driver_lock, flags);
105
David Woodhousea2b62dc2007-12-09 14:37:59 -0500106 lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200107
David Woodhouse2eb188a2007-12-09 23:54:27 -0500108 txpd = (void *)priv->tx_pending_buf;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500109 memset(txpd, 0, sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111 p802x_hdr = skb->data;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500112 pkt_len = skb->len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113
David Woodhousea97bcfe2007-12-09 22:00:55 -0500114 if (dev == priv->rtap_net_dev) {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500115 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116
117 /* set txpd fields from the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500118 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
120 /* skip the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500121 p802x_hdr += sizeof(*rtap_hdr);
122 pkt_len -= sizeof(*rtap_hdr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200123
David Woodhousea2b62dc2007-12-09 14:37:59 -0500124 /* copy destination address from 802.11 header */
125 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200126 } else {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500127 /* copy destination address from 802.3 header */
128 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129 }
130
David Woodhousea2b62dc2007-12-09 14:37:59 -0500131 txpd->tx_packet_length = cpu_to_le16(pkt_len);
132 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
133
134 if (dev == priv->mesh_dev)
135 txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
136
137 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
138
139 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
140
141 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
142
David Woodhousea2b62dc2007-12-09 14:37:59 -0500143 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500144 priv->tx_pending_len = pkt_len + sizeof(struct txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500145
David Woodhouse2eb188a2007-12-09 23:54:27 -0500146 lbs_deb_tx("%s lined up packet\n", __func__);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500147
David Woodhouse2eb188a2007-12-09 23:54:27 -0500148 priv->stats.tx_packets++;
149 priv->stats.tx_bytes += skb->len;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500150
David Woodhouse2eb188a2007-12-09 23:54:27 -0500151 dev->trans_start = jiffies;
David Woodhousef86a93e2007-12-08 19:46:19 +0000152
David Woodhouse2eb188a2007-12-09 23:54:27 -0500153 if (priv->monitormode != LBS_MONITOR_OFF) {
154 /* Keep the skb to echo it back once Tx feedback is
155 received from FW */
156 skb_orphan(skb);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500157
David Woodhouse2eb188a2007-12-09 23:54:27 -0500158 /* Keep the skb around for when we get feedback */
159 priv->currenttxskb = skb;
160 } else {
161 free:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162 dev_kfree_skb_any(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163 }
David Woodhouse2eb188a2007-12-09 23:54:27 -0500164 unlock:
165 spin_unlock_irqrestore(&priv->driver_lock, flags);
166 wake_up(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200167
Holger Schurig9012b282007-05-25 11:27:16 -0400168 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169 return ret;
170}
171
172/**
173 * @brief This function sends to the host the last transmitted packet,
174 * filling the radiotap headers with transmission information.
175 *
Holger Schurig69f90322007-11-23 15:43:44 +0100176 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200177 * @param status A 32 bit value containing transmission status.
178 *
179 * @returns void
180 */
Holger Schurig69f90322007-11-23 15:43:44 +0100181void lbs_send_tx_feedback(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 struct tx_radiotap_hdr *radiotap_hdr;
David Woodhouseaa21c002007-12-08 20:04:36 +0000184 u32 status = priv->eventcause;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185 int txfail;
186 int try_count;
187
David Woodhouseaa21c002007-12-08 20:04:36 +0000188 if (priv->monitormode == LBS_MONITOR_OFF ||
189 priv->currenttxskb == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 return;
191
David Woodhouseaa21c002007-12-08 20:04:36 +0000192 radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200194 txfail = (status >> 24);
195
196#if 0
197 /* The version of roofnet that we've tested does not use this yet
198 * But it may be used in the future.
199 */
200 if (txfail)
201 radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL;
202#endif
203 try_count = (status >> 16) & 0xff;
204 radiotap_hdr->data_retries = (try_count) ?
David Woodhouseaa21c002007-12-08 20:04:36 +0000205 (1 + priv->txretrycount - try_count) : 0;
206 lbs_upload_rx_packet(priv, priv->currenttxskb);
207 priv->currenttxskb = NULL;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500208
David Woodhouseaa21c002007-12-08 20:04:36 +0000209 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400210 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500211
David Woodhouseaa21c002007-12-08 20:04:36 +0000212 if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED))
Brajesh Dave01d77d82007-11-20 17:44:14 -0500213 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200214}
Holger Schurig10078322007-11-15 18:05:47 -0500215EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);