blob: 8f127520d7863f6ff5eb09b49272d7227b75c5ab [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>
Kiran Divekare86dc1c2010-06-14 22:01:26 +05308#include <net/cfg80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009
Holger Schurig9e66e702009-10-16 17:32:16 +020010#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include "radiotap.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include "decl.h"
13#include "defs.h"
14#include "dev.h"
Daniel Drake49fee692011-07-21 20:43:17 +010015#include "mesh.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020016
17/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070018 * convert_radiotap_rate_to_mv - converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE
19 * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070021 * @rate: Input rate
22 * returns: Output Rate (0 if invalid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023 */
24static u32 convert_radiotap_rate_to_mv(u8 rate)
25{
26 switch (rate) {
27 case 2: /* 1 Mbps */
28 return 0 | (1 << 4);
29 case 4: /* 2 Mbps */
30 return 1 | (1 << 4);
31 case 11: /* 5.5 Mbps */
32 return 2 | (1 << 4);
33 case 22: /* 11 Mbps */
34 return 3 | (1 << 4);
35 case 12: /* 6 Mbps */
36 return 4 | (1 << 4);
37 case 18: /* 9 Mbps */
38 return 5 | (1 << 4);
39 case 24: /* 12 Mbps */
40 return 6 | (1 << 4);
41 case 36: /* 18 Mbps */
42 return 7 | (1 << 4);
43 case 48: /* 24 Mbps */
44 return 8 | (1 << 4);
45 case 72: /* 36 Mbps */
46 return 9 | (1 << 4);
47 case 96: /* 48 Mbps */
48 return 10 | (1 << 4);
49 case 108: /* 54 Mbps */
50 return 11 | (1 << 4);
51 }
52 return 0;
53}
54
55/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070056 * lbs_hard_start_xmit - checks the conditions and sends packet to IF
57 * layer if everything is ok
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020058 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070059 * @skb: A pointer to skb which includes TX packet
60 * @dev: A pointer to the &struct net_device
61 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000063netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064{
David Woodhousea2b62dc2007-12-09 14:37:59 -050065 unsigned long flags;
Kiran Divekarab65f642009-02-19 19:32:39 -050066 struct lbs_private *priv = dev->ml_priv;
David Woodhousea2b62dc2007-12-09 14:37:59 -050067 struct txpd *txpd;
68 char *p802x_hdr;
69 uint16_t pkt_len;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000070 netdev_tx_t ret = NETDEV_TX_OK;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020071
Holger Schurig9012b282007-05-25 11:27:16 -040072 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020073
David Woodhouse2eb188a2007-12-09 23:54:27 -050074 /* We need to protect against the queues being restarted before
75 we get round to stopping them */
76 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse6b4a7e02007-12-09 12:48:10 -050077
David Woodhouseaa21c002007-12-08 20:04:36 +000078 if (priv->surpriseremoved)
David Woodhouse2eb188a2007-12-09 23:54:27 -050079 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020080
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020081 if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
Holger Schurig9012b282007-05-25 11:27:16 -040082 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
David Woodhousea2b62dc2007-12-09 14:37:59 -050084 /* We'll never manage to send this one; drop it and return 'OK' */
David Woodhouse2eb188a2007-12-09 23:54:27 -050085
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000086 dev->stats.tx_dropped++;
87 dev->stats.tx_errors++;
David Woodhouse2eb188a2007-12-09 23:54:27 -050088 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020089 }
90
David Woodhouse2eb188a2007-12-09 23:54:27 -050091
92 netif_stop_queue(priv->dev);
93 if (priv->mesh_dev)
94 netif_stop_queue(priv->mesh_dev);
95
96 if (priv->tx_pending_len) {
David Woodhouse7e226272007-12-14 22:53:41 -050097 /* This can happen if packets come in on the mesh and eth
98 device simultaneously -- there's no mutual exclusion on
David Woodhouse2eb188a2007-12-09 23:54:27 -050099 hard_start_xmit() calls between devices. */
100 lbs_deb_tx("Packet on %s while busy\n", dev->name);
101 ret = NETDEV_TX_BUSY;
102 goto unlock;
103 }
104
105 priv->tx_pending_len = -1;
106 spin_unlock_irqrestore(&priv->driver_lock, flags);
107
David Woodhousea2b62dc2007-12-09 14:37:59 -0500108 lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200109
David Woodhouse2eb188a2007-12-09 23:54:27 -0500110 txpd = (void *)priv->tx_pending_buf;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500111 memset(txpd, 0, sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200113 p802x_hdr = skb->data;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500114 pkt_len = skb->len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530116 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500117 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200118
119 /* set txpd fields from the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500120 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200121
122 /* skip the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500123 p802x_hdr += sizeof(*rtap_hdr);
124 pkt_len -= sizeof(*rtap_hdr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125
David Woodhousea2b62dc2007-12-09 14:37:59 -0500126 /* copy destination address from 802.11 header */
127 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128 } else {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500129 /* copy destination address from 802.3 header */
130 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200131 }
132
David Woodhousea2b62dc2007-12-09 14:37:59 -0500133 txpd->tx_packet_length = cpu_to_le16(pkt_len);
134 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
135
Holger Schurige0e42da2009-11-25 13:10:15 +0100136 lbs_mesh_set_txpd(priv, dev, txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500137
138 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
139
140 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
141
142 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
143
David Woodhousea2b62dc2007-12-09 14:37:59 -0500144 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500145 priv->tx_pending_len = pkt_len + sizeof(struct txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500146
David Woodhouse2eb188a2007-12-09 23:54:27 -0500147 lbs_deb_tx("%s lined up packet\n", __func__);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500148
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000149 dev->stats.tx_packets++;
150 dev->stats.tx_bytes += skb->len;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500151
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530152 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
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 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530163
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/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700173 * lbs_send_tx_feedback - sends to the host the last transmitted packet,
174 * filling the radiotap headers with transmission information.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700176 * @priv: A pointer to &struct lbs_private structure
177 * @try_count: A 32-bit value containing transmission retry status.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700179 * returns: void
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200180 */
Holger Schurig7919b892008-04-01 14:50:43 +0200181void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 struct tx_radiotap_hdr *radiotap_hdr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184
Dan Carpenterbd75eb82010-07-22 14:21:02 +0200185 if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR ||
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530186 priv->currenttxskb == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187 return;
188
David Woodhouseaa21c002007-12-08 20:04:36 +0000189 radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190
Holger Schurig7919b892008-04-01 14:50:43 +0200191 radiotap_hdr->data_retries = try_count ?
192 (1 + priv->txretrycount - try_count) : 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500193
194 priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb,
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530195 priv->dev);
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500196 netif_rx(priv->currenttxskb);
197
David Woodhouseaa21c002007-12-08 20:04:36 +0000198 priv->currenttxskb = NULL;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500199
David Woodhouseaa21c002007-12-08 20:04:36 +0000200 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400201 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500202
Daniel Draked9319982011-07-20 17:53:56 +0100203 if (priv->mesh_dev && netif_running(priv->mesh_dev))
Brajesh Dave01d77d82007-11-20 17:44:14 -0500204 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205}
Holger Schurig10078322007-11-15 18:05:47 -0500206EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);