blob: 52d244ea3d972809f7a528d8077dea7262879505 [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>
David Woodhouse6f93a8e2007-12-10 00:49:26 -05005#include <linux/etherdevice.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +04006#include <linux/sched.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02007
Holger Schurig9e66e702009-10-16 17:32:16 +02008#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "radiotap.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include "decl.h"
11#include "defs.h"
12#include "dev.h"
13#include "wext.h"
14
15/**
16 * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE
17 * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1)
18 *
19 * @param rate Input rate
20 * @return Output Rate (0 if invalid)
21 */
22static u32 convert_radiotap_rate_to_mv(u8 rate)
23{
24 switch (rate) {
25 case 2: /* 1 Mbps */
26 return 0 | (1 << 4);
27 case 4: /* 2 Mbps */
28 return 1 | (1 << 4);
29 case 11: /* 5.5 Mbps */
30 return 2 | (1 << 4);
31 case 22: /* 11 Mbps */
32 return 3 | (1 << 4);
33 case 12: /* 6 Mbps */
34 return 4 | (1 << 4);
35 case 18: /* 9 Mbps */
36 return 5 | (1 << 4);
37 case 24: /* 12 Mbps */
38 return 6 | (1 << 4);
39 case 36: /* 18 Mbps */
40 return 7 | (1 << 4);
41 case 48: /* 24 Mbps */
42 return 8 | (1 << 4);
43 case 72: /* 36 Mbps */
44 return 9 | (1 << 4);
45 case 96: /* 48 Mbps */
46 return 10 | (1 << 4);
47 case 108: /* 54 Mbps */
48 return 11 | (1 << 4);
49 }
50 return 0;
51}
52
53/**
David Woodhouse6b4a7e02007-12-09 12:48:10 -050054 * @brief This function checks the conditions and sends packet to IF
55 * layer if everything is ok.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056 *
Holger Schurig69f90322007-11-23 15:43:44 +010057 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020058 * @param skb A pointer to skb which includes TX packet
59 * @return 0 or -1
60 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000061netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062{
David Woodhousea2b62dc2007-12-09 14:37:59 -050063 unsigned long flags;
Kiran Divekarab65f642009-02-19 19:32:39 -050064 struct lbs_private *priv = dev->ml_priv;
David Woodhousea2b62dc2007-12-09 14:37:59 -050065 struct txpd *txpd;
66 char *p802x_hdr;
67 uint16_t pkt_len;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000068 netdev_tx_t ret = NETDEV_TX_OK;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020069
Holger Schurig9012b282007-05-25 11:27:16 -040070 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020071
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
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000084 dev->stats.tx_dropped++;
85 dev->stats.tx_errors++;
David Woodhouse2eb188a2007-12-09 23:54:27 -050086 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) {
David Woodhouse7e226272007-12-14 22:53:41 -050095 /* This can happen if packets come in on the mesh and eth
96 device simultaneously -- there's no mutual exclusion on
David Woodhouse2eb188a2007-12-09 23:54:27 -050097 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
Holger Schurige0e42da2009-11-25 13:10:15 +0100134 lbs_mesh_set_txpd(priv, dev, txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500135
136 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
137
138 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
139
140 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
141
David Woodhousea2b62dc2007-12-09 14:37:59 -0500142 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500143 priv->tx_pending_len = pkt_len + sizeof(struct txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500144
David Woodhouse2eb188a2007-12-09 23:54:27 -0500145 lbs_deb_tx("%s lined up packet\n", __func__);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500146
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000147 dev->stats.tx_packets++;
148 dev->stats.tx_bytes += skb->len;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500149
David Woodhouse2eb188a2007-12-09 23:54:27 -0500150 dev->trans_start = jiffies;
David Woodhousef86a93e2007-12-08 19:46:19 +0000151
Holger Schurigc2b310a2008-03-26 09:57:14 +0100152 if (priv->monitormode) {
David Woodhouse2eb188a2007-12-09 23:54:27 -0500153 /* Keep the skb to echo it back once Tx feedback is
154 received from FW */
155 skb_orphan(skb);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500156
David Woodhouse2eb188a2007-12-09 23:54:27 -0500157 /* Keep the skb around for when we get feedback */
158 priv->currenttxskb = skb;
159 } else {
160 free:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200161 dev_kfree_skb_any(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162 }
David Woodhouse2eb188a2007-12-09 23:54:27 -0500163 unlock:
164 spin_unlock_irqrestore(&priv->driver_lock, flags);
165 wake_up(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200166
Holger Schurig9012b282007-05-25 11:27:16 -0400167 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168 return ret;
169}
170
171/**
172 * @brief This function sends to the host the last transmitted packet,
173 * filling the radiotap headers with transmission information.
174 *
Holger Schurig69f90322007-11-23 15:43:44 +0100175 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200176 * @param status A 32 bit value containing transmission status.
177 *
178 * @returns void
179 */
Holger Schurig7919b892008-04-01 14:50:43 +0200180void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182 struct tx_radiotap_hdr *radiotap_hdr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183
Holger Schurigc2b310a2008-03-26 09:57:14 +0100184 if (!priv->monitormode || priv->currenttxskb == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185 return;
186
David Woodhouseaa21c002007-12-08 20:04:36 +0000187 radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188
Holger Schurig7919b892008-04-01 14:50:43 +0200189 radiotap_hdr->data_retries = try_count ?
190 (1 + priv->txretrycount - try_count) : 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500191
192 priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb,
193 priv->rtap_net_dev);
194 netif_rx(priv->currenttxskb);
195
David Woodhouseaa21c002007-12-08 20:04:36 +0000196 priv->currenttxskb = NULL;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500197
David Woodhouseaa21c002007-12-08 20:04:36 +0000198 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400199 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500200
Holger Schurig602114a2009-12-02 15:26:01 +0100201 if (priv->mesh_dev && lbs_mesh_connected(priv))
Brajesh Dave01d77d82007-11-20 17:44:14 -0500202 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203}
Holger Schurig10078322007-11-15 18:05:47 -0500204EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);