blob: c025f9c1828234ebbac20396c76ae69c05af05da [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains the handling of TX in wlan driver.
3 */
Alexey Dobriyana6b7a402011-06-06 10:43:46 +00004#include <linux/hardirq.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02005#include <linux/netdevice.h>
David Woodhouse6f93a8e2007-12-10 00:49:26 -05006#include <linux/etherdevice.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +04007#include <linux/sched.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -04008#include <linux/export.h>
Kiran Divekare86dc1c2010-06-14 22:01:26 +05309#include <net/cfg80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010
Holger Schurig9e66e702009-10-16 17:32:16 +020011#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include "radiotap.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include "decl.h"
14#include "defs.h"
15#include "dev.h"
Daniel Drake49fee692011-07-21 20:43:17 +010016#include "mesh.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020017
18/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070019 * convert_radiotap_rate_to_mv - converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE
20 * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070022 * @rate: Input rate
23 * returns: Output Rate (0 if invalid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024 */
25static u32 convert_radiotap_rate_to_mv(u8 rate)
26{
27 switch (rate) {
28 case 2: /* 1 Mbps */
29 return 0 | (1 << 4);
30 case 4: /* 2 Mbps */
31 return 1 | (1 << 4);
32 case 11: /* 5.5 Mbps */
33 return 2 | (1 << 4);
34 case 22: /* 11 Mbps */
35 return 3 | (1 << 4);
36 case 12: /* 6 Mbps */
37 return 4 | (1 << 4);
38 case 18: /* 9 Mbps */
39 return 5 | (1 << 4);
40 case 24: /* 12 Mbps */
41 return 6 | (1 << 4);
42 case 36: /* 18 Mbps */
43 return 7 | (1 << 4);
44 case 48: /* 24 Mbps */
45 return 8 | (1 << 4);
46 case 72: /* 36 Mbps */
47 return 9 | (1 << 4);
48 case 96: /* 48 Mbps */
49 return 10 | (1 << 4);
50 case 108: /* 54 Mbps */
51 return 11 | (1 << 4);
52 }
53 return 0;
54}
55
56/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070057 * lbs_hard_start_xmit - checks the conditions and sends packet to IF
58 * layer if everything is ok
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070060 * @skb: A pointer to skb which includes TX packet
61 * @dev: A pointer to the &struct net_device
62 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000064netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020065{
David Woodhousea2b62dc2007-12-09 14:37:59 -050066 unsigned long flags;
Kiran Divekarab65f642009-02-19 19:32:39 -050067 struct lbs_private *priv = dev->ml_priv;
David Woodhousea2b62dc2007-12-09 14:37:59 -050068 struct txpd *txpd;
69 char *p802x_hdr;
70 uint16_t pkt_len;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000071 netdev_tx_t ret = NETDEV_TX_OK;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020072
Holger Schurig9012b282007-05-25 11:27:16 -040073 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074
David Woodhouse2eb188a2007-12-09 23:54:27 -050075 /* We need to protect against the queues being restarted before
76 we get round to stopping them */
77 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse6b4a7e02007-12-09 12:48:10 -050078
David Woodhouseaa21c002007-12-08 20:04:36 +000079 if (priv->surpriseremoved)
David Woodhouse2eb188a2007-12-09 23:54:27 -050080 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020081
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020082 if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
Holger Schurig9012b282007-05-25 11:27:16 -040083 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020084 skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
David Woodhousea2b62dc2007-12-09 14:37:59 -050085 /* We'll never manage to send this one; drop it and return 'OK' */
David Woodhouse2eb188a2007-12-09 23:54:27 -050086
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000087 dev->stats.tx_dropped++;
88 dev->stats.tx_errors++;
David Woodhouse2eb188a2007-12-09 23:54:27 -050089 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020090 }
91
David Woodhouse2eb188a2007-12-09 23:54:27 -050092
93 netif_stop_queue(priv->dev);
94 if (priv->mesh_dev)
95 netif_stop_queue(priv->mesh_dev);
96
97 if (priv->tx_pending_len) {
David Woodhouse7e226272007-12-14 22:53:41 -050098 /* This can happen if packets come in on the mesh and eth
99 device simultaneously -- there's no mutual exclusion on
David Woodhouse2eb188a2007-12-09 23:54:27 -0500100 hard_start_xmit() calls between devices. */
101 lbs_deb_tx("Packet on %s while busy\n", dev->name);
102 ret = NETDEV_TX_BUSY;
103 goto unlock;
104 }
105
106 priv->tx_pending_len = -1;
107 spin_unlock_irqrestore(&priv->driver_lock, flags);
108
David Woodhousea2b62dc2007-12-09 14:37:59 -0500109 lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110
David Woodhouse2eb188a2007-12-09 23:54:27 -0500111 txpd = (void *)priv->tx_pending_buf;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500112 memset(txpd, 0, sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200114 p802x_hdr = skb->data;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500115 pkt_len = skb->len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530117 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500118 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
120 /* set txpd fields from the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500121 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200122
123 /* skip the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500124 p802x_hdr += sizeof(*rtap_hdr);
125 pkt_len -= sizeof(*rtap_hdr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200126
David Woodhousea2b62dc2007-12-09 14:37:59 -0500127 /* copy destination address from 802.11 header */
128 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200129 } else {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500130 /* copy destination address from 802.3 header */
131 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200132 }
133
David Woodhousea2b62dc2007-12-09 14:37:59 -0500134 txpd->tx_packet_length = cpu_to_le16(pkt_len);
135 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
136
Holger Schurige0e42da2009-11-25 13:10:15 +0100137 lbs_mesh_set_txpd(priv, dev, txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500138
139 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
140
141 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
142
143 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
144
David Woodhousea2b62dc2007-12-09 14:37:59 -0500145 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500146 priv->tx_pending_len = pkt_len + sizeof(struct txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500147
David Woodhouse2eb188a2007-12-09 23:54:27 -0500148 lbs_deb_tx("%s lined up packet\n", __func__);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500149
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000150 dev->stats.tx_packets++;
151 dev->stats.tx_bytes += skb->len;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500152
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530153 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
David Woodhouse2eb188a2007-12-09 23:54:27 -0500154 /* 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 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530164
David Woodhouse2eb188a2007-12-09 23:54:27 -0500165 unlock:
166 spin_unlock_irqrestore(&priv->driver_lock, flags);
167 wake_up(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200168
Holger Schurig9012b282007-05-25 11:27:16 -0400169 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170 return ret;
171}
172
173/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700174 * lbs_send_tx_feedback - sends to the host the last transmitted packet,
175 * filling the radiotap headers with transmission information.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200176 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700177 * @priv: A pointer to &struct lbs_private structure
178 * @try_count: A 32-bit value containing transmission retry status.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200179 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700180 * returns: void
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181 */
Holger Schurig7919b892008-04-01 14:50:43 +0200182void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184 struct tx_radiotap_hdr *radiotap_hdr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185
Dan Carpenterbd75eb82010-07-22 14:21:02 +0200186 if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR ||
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530187 priv->currenttxskb == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188 return;
189
David Woodhouseaa21c002007-12-08 20:04:36 +0000190 radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191
Holger Schurig7919b892008-04-01 14:50:43 +0200192 radiotap_hdr->data_retries = try_count ?
193 (1 + priv->txretrycount - try_count) : 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500194
195 priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb,
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530196 priv->dev);
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500197 netif_rx(priv->currenttxskb);
198
David Woodhouseaa21c002007-12-08 20:04:36 +0000199 priv->currenttxskb = NULL;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500200
David Woodhouseaa21c002007-12-08 20:04:36 +0000201 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400202 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500203
Daniel Draked9319982011-07-20 17:53:56 +0100204 if (priv->mesh_dev && netif_running(priv->mesh_dev))
Brajesh Dave01d77d82007-11-20 17:44:14 -0500205 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206}
Holger Schurig10078322007-11-15 18:05:47 -0500207EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);