Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file contains the handling of TX in wlan driver. |
| 3 | */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 4 | #include <linux/netdevice.h> |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 5 | #include <linux/etherdevice.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 7 | #include <net/cfg80211.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 8 | |
Holger Schurig | 9e66e70 | 2009-10-16 17:32:16 +0200 | [diff] [blame] | 9 | #include "host.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 10 | #include "radiotap.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 11 | #include "decl.h" |
| 12 | #include "defs.h" |
| 13 | #include "dev.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 14 | |
| 15 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 16 | * convert_radiotap_rate_to_mv - 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) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 18 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 19 | * @rate: Input rate |
| 20 | * returns: Output Rate (0 if invalid) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 21 | */ |
| 22 | static 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 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 54 | * lbs_hard_start_xmit - checks the conditions and sends packet to IF |
| 55 | * layer if everything is ok |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 56 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 57 | * @skb: A pointer to skb which includes TX packet |
| 58 | * @dev: A pointer to the &struct net_device |
| 59 | * returns: 0 or -1 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 60 | */ |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 61 | netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 62 | { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 63 | unsigned long flags; |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 64 | struct lbs_private *priv = dev->ml_priv; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 65 | struct txpd *txpd; |
| 66 | char *p802x_hdr; |
| 67 | uint16_t pkt_len; |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 68 | netdev_tx_t ret = NETDEV_TX_OK; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 69 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 70 | lbs_deb_enter(LBS_DEB_TX); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 71 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 72 | /* 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 Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 75 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 76 | if (priv->surpriseremoved) |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 77 | goto free; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 78 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 79 | if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 80 | lbs_deb_tx("tx err: skb length %d 0 or > %zd\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 81 | skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 82 | /* We'll never manage to send this one; drop it and return 'OK' */ |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 83 | |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 84 | dev->stats.tx_dropped++; |
| 85 | dev->stats.tx_errors++; |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 86 | goto free; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 87 | } |
| 88 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 89 | |
| 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 Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 95 | /* This can happen if packets come in on the mesh and eth |
| 96 | device simultaneously -- there's no mutual exclusion on |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 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 Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 106 | lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 107 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 108 | txpd = (void *)priv->tx_pending_buf; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 109 | memset(txpd, 0, sizeof(struct txpd)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 110 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 111 | p802x_hdr = skb->data; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 112 | pkt_len = skb->len; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 113 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 114 | if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 115 | struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 116 | |
| 117 | /* set txpd fields from the radiotap header */ |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 118 | txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 119 | |
| 120 | /* skip the radiotap header */ |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 121 | p802x_hdr += sizeof(*rtap_hdr); |
| 122 | pkt_len -= sizeof(*rtap_hdr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 123 | |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 124 | /* copy destination address from 802.11 header */ |
| 125 | memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 126 | } else { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 127 | /* copy destination address from 802.3 header */ |
| 128 | memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 129 | } |
| 130 | |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 131 | txpd->tx_packet_length = cpu_to_le16(pkt_len); |
| 132 | txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); |
| 133 | |
Holger Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 134 | lbs_mesh_set_txpd(priv, dev, txpd); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 135 | |
| 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 Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 142 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 143 | priv->tx_pending_len = pkt_len + sizeof(struct txpd); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 144 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 145 | lbs_deb_tx("%s lined up packet\n", __func__); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 146 | |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 147 | dev->stats.tx_packets++; |
| 148 | dev->stats.tx_bytes += skb->len; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 149 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 150 | if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) { |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 151 | /* Keep the skb to echo it back once Tx feedback is |
| 152 | received from FW */ |
| 153 | skb_orphan(skb); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 154 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 155 | /* Keep the skb around for when we get feedback */ |
| 156 | priv->currenttxskb = skb; |
| 157 | } else { |
| 158 | free: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 159 | dev_kfree_skb_any(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 160 | } |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 161 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 162 | unlock: |
| 163 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
| 164 | wake_up(&priv->waitq); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 165 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 166 | lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 167 | return ret; |
| 168 | } |
| 169 | |
| 170 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 171 | * lbs_send_tx_feedback - sends to the host the last transmitted packet, |
| 172 | * filling the radiotap headers with transmission information. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 173 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 174 | * @priv: A pointer to &struct lbs_private structure |
| 175 | * @try_count: A 32-bit value containing transmission retry status. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 176 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 177 | * returns: void |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 178 | */ |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 179 | void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 180 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 181 | struct tx_radiotap_hdr *radiotap_hdr; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 182 | |
Dan Carpenter | bd75eb8 | 2010-07-22 14:21:02 +0200 | [diff] [blame] | 183 | if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR || |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 184 | priv->currenttxskb == NULL) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 185 | return; |
| 186 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 187 | radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 188 | |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 189 | radiotap_hdr->data_retries = try_count ? |
| 190 | (1 + priv->txretrycount - try_count) : 0; |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 191 | |
| 192 | priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb, |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 193 | priv->dev); |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 194 | netif_rx(priv->currenttxskb); |
| 195 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 196 | priv->currenttxskb = NULL; |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 197 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 198 | if (priv->connect_status == LBS_CONNECTED) |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 199 | netif_wake_queue(priv->dev); |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 200 | |
Holger Schurig | 602114a | 2009-12-02 15:26:01 +0100 | [diff] [blame] | 201 | if (priv->mesh_dev && lbs_mesh_connected(priv)) |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 202 | netif_wake_queue(priv->mesh_dev); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 203 | } |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 204 | EXPORT_SYMBOL_GPL(lbs_send_tx_feedback); |