Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1 | /** |
| 2 | * This file contains the handling of TX in wlan driver. |
| 3 | */ |
| 4 | #include <linux/netdevice.h> |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 5 | #include <linux/etherdevice.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 6 | |
| 7 | #include "hostcmd.h" |
| 8 | #include "radiotap.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 9 | #include "decl.h" |
| 10 | #include "defs.h" |
| 11 | #include "dev.h" |
| 12 | #include "wext.h" |
| 13 | |
| 14 | /** |
| 15 | * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE |
| 16 | * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1) |
| 17 | * |
| 18 | * @param rate Input rate |
| 19 | * @return Output Rate (0 if invalid) |
| 20 | */ |
| 21 | static u32 convert_radiotap_rate_to_mv(u8 rate) |
| 22 | { |
| 23 | switch (rate) { |
| 24 | case 2: /* 1 Mbps */ |
| 25 | return 0 | (1 << 4); |
| 26 | case 4: /* 2 Mbps */ |
| 27 | return 1 | (1 << 4); |
| 28 | case 11: /* 5.5 Mbps */ |
| 29 | return 2 | (1 << 4); |
| 30 | case 22: /* 11 Mbps */ |
| 31 | return 3 | (1 << 4); |
| 32 | case 12: /* 6 Mbps */ |
| 33 | return 4 | (1 << 4); |
| 34 | case 18: /* 9 Mbps */ |
| 35 | return 5 | (1 << 4); |
| 36 | case 24: /* 12 Mbps */ |
| 37 | return 6 | (1 << 4); |
| 38 | case 36: /* 18 Mbps */ |
| 39 | return 7 | (1 << 4); |
| 40 | case 48: /* 24 Mbps */ |
| 41 | return 8 | (1 << 4); |
| 42 | case 72: /* 36 Mbps */ |
| 43 | return 9 | (1 << 4); |
| 44 | case 96: /* 48 Mbps */ |
| 45 | return 10 | (1 << 4); |
| 46 | case 108: /* 54 Mbps */ |
| 47 | return 11 | (1 << 4); |
| 48 | } |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | /** |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 53 | * @brief This function checks the conditions and sends packet to IF |
| 54 | * layer if everything is ok. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 55 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 56 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 57 | * @param skb A pointer to skb which includes TX packet |
| 58 | * @return 0 or -1 |
| 59 | */ |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame] | 60 | int lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 61 | { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 62 | unsigned long flags; |
Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 63 | struct lbs_private *priv = dev->ml_priv; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 64 | struct txpd *txpd; |
| 65 | char *p802x_hdr; |
| 66 | uint16_t pkt_len; |
| 67 | int ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 68 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 69 | lbs_deb_enter(LBS_DEB_TX); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 70 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 71 | ret = NETDEV_TX_OK; |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame] | 72 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 73 | /* We need to protect against the queues being restarted before |
| 74 | we get round to stopping them */ |
| 75 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 76 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 77 | if (priv->surpriseremoved) |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 78 | goto free; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 79 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 80 | if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 81 | lbs_deb_tx("tx err: skb length %d 0 or > %zd\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 82 | skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 83 | /* 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] | 84 | |
| 85 | priv->stats.tx_dropped++; |
| 86 | priv->stats.tx_errors++; |
| 87 | goto free; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 88 | } |
| 89 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 90 | |
| 91 | netif_stop_queue(priv->dev); |
| 92 | if (priv->mesh_dev) |
| 93 | netif_stop_queue(priv->mesh_dev); |
| 94 | |
| 95 | if (priv->tx_pending_len) { |
David Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 96 | /* This can happen if packets come in on the mesh and eth |
| 97 | device simultaneously -- there's no mutual exclusion on |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 98 | hard_start_xmit() calls between devices. */ |
| 99 | lbs_deb_tx("Packet on %s while busy\n", dev->name); |
| 100 | ret = NETDEV_TX_BUSY; |
| 101 | goto unlock; |
| 102 | } |
| 103 | |
| 104 | priv->tx_pending_len = -1; |
| 105 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
| 106 | |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 107 | 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] | 108 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 109 | txpd = (void *)priv->tx_pending_buf; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 110 | memset(txpd, 0, sizeof(struct txpd)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 111 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 112 | p802x_hdr = skb->data; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 113 | pkt_len = skb->len; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 114 | |
David Woodhouse | a97bcfe | 2007-12-09 22:00:55 -0500 | [diff] [blame] | 115 | if (dev == priv->rtap_net_dev) { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 116 | struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 117 | |
| 118 | /* set txpd fields from the radiotap header */ |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 119 | 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] | 120 | |
| 121 | /* skip the radiotap header */ |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 122 | p802x_hdr += sizeof(*rtap_hdr); |
| 123 | pkt_len -= sizeof(*rtap_hdr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 124 | |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 125 | /* copy destination address from 802.11 header */ |
| 126 | memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 127 | } else { |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 128 | /* copy destination address from 802.3 header */ |
| 129 | memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 130 | } |
| 131 | |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 132 | txpd->tx_packet_length = cpu_to_le16(pkt_len); |
| 133 | txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); |
| 134 | |
| 135 | if (dev == priv->mesh_dev) |
| 136 | txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); |
| 137 | |
| 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 Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 144 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 145 | priv->tx_pending_len = pkt_len + sizeof(struct txpd); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 146 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 147 | lbs_deb_tx("%s lined up packet\n", __func__); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 148 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 149 | priv->stats.tx_packets++; |
| 150 | priv->stats.tx_bytes += skb->len; |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 151 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 152 | dev->trans_start = jiffies; |
David Woodhouse | f86a93e | 2007-12-08 19:46:19 +0000 | [diff] [blame] | 153 | |
Holger Schurig | c2b310a | 2008-03-26 09:57:14 +0100 | [diff] [blame] | 154 | if (priv->monitormode) { |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 155 | /* Keep the skb to echo it back once Tx feedback is |
| 156 | received from FW */ |
| 157 | skb_orphan(skb); |
David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 158 | |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 159 | /* Keep the skb around for when we get feedback */ |
| 160 | priv->currenttxskb = skb; |
| 161 | } else { |
| 162 | free: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 163 | dev_kfree_skb_any(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 164 | } |
David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 165 | unlock: |
| 166 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
| 167 | wake_up(&priv->waitq); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 168 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 169 | lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 170 | return ret; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * @brief This function sends to the host the last transmitted packet, |
| 175 | * filling the radiotap headers with transmission information. |
| 176 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 177 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 178 | * @param status A 32 bit value containing transmission status. |
| 179 | * |
| 180 | * @returns void |
| 181 | */ |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 182 | void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 183 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 184 | struct tx_radiotap_hdr *radiotap_hdr; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 185 | |
Holger Schurig | c2b310a | 2008-03-26 09:57:14 +0100 | [diff] [blame] | 186 | if (!priv->monitormode || priv->currenttxskb == NULL) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 187 | return; |
| 188 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 189 | radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 190 | |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 191 | radiotap_hdr->data_retries = try_count ? |
| 192 | (1 + priv->txretrycount - try_count) : 0; |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 193 | |
| 194 | priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb, |
| 195 | priv->rtap_net_dev); |
| 196 | netif_rx(priv->currenttxskb); |
| 197 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 198 | priv->currenttxskb = NULL; |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 199 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 200 | if (priv->connect_status == LBS_CONNECTED) |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 201 | netif_wake_queue(priv->dev); |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 202 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 203 | if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 204 | netif_wake_queue(priv->mesh_dev); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 205 | } |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 206 | EXPORT_SYMBOL_GPL(lbs_send_tx_feedback); |