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> |
| 5 | |
| 6 | #include "hostcmd.h" |
| 7 | #include "radiotap.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 8 | #include "decl.h" |
| 9 | #include "defs.h" |
| 10 | #include "dev.h" |
| 11 | #include "wext.h" |
| 12 | |
| 13 | /** |
| 14 | * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE |
| 15 | * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1) |
| 16 | * |
| 17 | * @param rate Input rate |
| 18 | * @return Output Rate (0 if invalid) |
| 19 | */ |
| 20 | static u32 convert_radiotap_rate_to_mv(u8 rate) |
| 21 | { |
| 22 | switch (rate) { |
| 23 | case 2: /* 1 Mbps */ |
| 24 | return 0 | (1 << 4); |
| 25 | case 4: /* 2 Mbps */ |
| 26 | return 1 | (1 << 4); |
| 27 | case 11: /* 5.5 Mbps */ |
| 28 | return 2 | (1 << 4); |
| 29 | case 22: /* 11 Mbps */ |
| 30 | return 3 | (1 << 4); |
| 31 | case 12: /* 6 Mbps */ |
| 32 | return 4 | (1 << 4); |
| 33 | case 18: /* 9 Mbps */ |
| 34 | return 5 | (1 << 4); |
| 35 | case 24: /* 12 Mbps */ |
| 36 | return 6 | (1 << 4); |
| 37 | case 36: /* 18 Mbps */ |
| 38 | return 7 | (1 << 4); |
| 39 | case 48: /* 24 Mbps */ |
| 40 | return 8 | (1 << 4); |
| 41 | case 72: /* 36 Mbps */ |
| 42 | return 9 | (1 << 4); |
| 43 | case 96: /* 48 Mbps */ |
| 44 | return 10 | (1 << 4); |
| 45 | case 108: /* 54 Mbps */ |
| 46 | return 11 | (1 << 4); |
| 47 | } |
| 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | /** |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 52 | * @brief This function checks the conditions and sends packet to IF |
| 53 | * layer if everything is ok. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 54 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 55 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 56 | * @param skb A pointer to skb which includes TX packet |
| 57 | * @return 0 or -1 |
| 58 | */ |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame^] | 59 | 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] | 60 | { |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame^] | 61 | struct lbs_private *priv = dev->priv; |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 62 | int ret = -1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 63 | struct txpd localtxpd; |
| 64 | struct txpd *plocaltxpd = &localtxpd; |
| 65 | u8 *p802x_hdr; |
| 66 | struct tx_radiotap_hdr *pradiotap_hdr; |
| 67 | u32 new_rate; |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 68 | u8 *ptr = priv->tmptxbuf; |
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 | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 72 | lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100)); |
| 73 | |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame^] | 74 | netif_stop_queue(priv->dev); |
| 75 | if (priv->mesh_dev) |
| 76 | netif_stop_queue(priv->mesh_dev); |
| 77 | |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 78 | if (priv->dnld_sent) { |
| 79 | lbs_pr_alert( "TX error: dnld_sent = %d, not sending\n", |
| 80 | priv->dnld_sent); |
| 81 | goto done; |
| 82 | } |
| 83 | |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame^] | 84 | if (priv->currenttxskb) { |
| 85 | lbs_pr_err("%s while TX skb pending\n", __func__); |
| 86 | goto done; |
| 87 | } |
| 88 | |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 89 | if ((priv->psstate == PS_STATE_SLEEP) || |
| 90 | (priv->psstate == PS_STATE_PRE_SLEEP)) { |
| 91 | lbs_pr_alert("TX error: packet xmit in %ssleep mode\n", |
| 92 | priv->psstate == PS_STATE_SLEEP?"":"pre-"); |
| 93 | goto done; |
| 94 | } |
| 95 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 96 | if (priv->surpriseremoved) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 97 | return -1; |
| 98 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 99 | if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 100 | lbs_deb_tx("tx err: skb length %d 0 or > %zd\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 101 | skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE); |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 102 | goto done_tx; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 103 | } |
| 104 | |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 105 | ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 106 | memset(plocaltxpd, 0, sizeof(struct txpd)); |
| 107 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 108 | plocaltxpd->tx_packet_length = cpu_to_le16(skb->len); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 109 | |
| 110 | /* offset of actual data */ |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 111 | plocaltxpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 112 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 113 | p802x_hdr = skb->data; |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 114 | if (priv->monitormode != LBS_MONITOR_OFF) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 115 | |
| 116 | /* locate radiotap header */ |
| 117 | pradiotap_hdr = (struct tx_radiotap_hdr *)skb->data; |
| 118 | |
| 119 | /* set txpd fields from the radiotap header */ |
| 120 | new_rate = convert_radiotap_rate_to_mv(pradiotap_hdr->rate); |
| 121 | if (new_rate != 0) { |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 122 | /* use new tx_control[4:0] */ |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 123 | plocaltxpd->tx_control = cpu_to_le32(new_rate); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /* skip the radiotap header */ |
| 127 | p802x_hdr += sizeof(struct tx_radiotap_hdr); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 128 | plocaltxpd->tx_packet_length = |
David Woodhouse | 8676008 | 2007-05-25 23:39:34 -0400 | [diff] [blame] | 129 | cpu_to_le16(le16_to_cpu(plocaltxpd->tx_packet_length) |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 130 | - sizeof(struct tx_radiotap_hdr)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 131 | |
| 132 | } |
| 133 | /* copy destination address from 802.3 or 802.11 header */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 134 | if (priv->monitormode != LBS_MONITOR_OFF) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 135 | memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN); |
| 136 | else |
| 137 | memcpy(plocaltxpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); |
| 138 | |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 139 | lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) plocaltxpd, sizeof(struct txpd)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 140 | |
| 141 | if (IS_MESH_FRAME(skb)) { |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 142 | plocaltxpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | memcpy(ptr, plocaltxpd, sizeof(struct txpd)); |
| 146 | |
| 147 | ptr += sizeof(struct txpd); |
| 148 | |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 149 | lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
David Woodhouse | 8676008 | 2007-05-25 23:39:34 -0400 | [diff] [blame] | 150 | memcpy(ptr, p802x_hdr, le16_to_cpu(plocaltxpd->tx_packet_length)); |
Holger Schurig | 208fdd2 | 2007-05-25 12:17:06 -0400 | [diff] [blame] | 151 | ret = priv->hw_host_to_card(priv, MVMS_DAT, |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 152 | priv->tmptxbuf, |
David Woodhouse | 8676008 | 2007-05-25 23:39:34 -0400 | [diff] [blame] | 153 | le16_to_cpu(plocaltxpd->tx_packet_length) + |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 154 | sizeof(struct txpd)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 155 | |
| 156 | if (ret) { |
Holger Schurig | 208fdd2 | 2007-05-25 12:17:06 -0400 | [diff] [blame] | 157 | lbs_deb_tx("tx err: hw_host_to_card returned 0x%X\n", ret); |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 158 | goto done_tx; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 159 | } |
| 160 | |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 161 | lbs_deb_tx("%s succeeds\n", __func__); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 162 | |
David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 163 | done_tx: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 164 | if (!ret) { |
| 165 | priv->stats.tx_packets++; |
| 166 | priv->stats.tx_bytes += skb->len; |
David Woodhouse | 8af23b2 | 2007-12-09 12:57:14 -0500 | [diff] [blame^] | 167 | |
| 168 | dev->trans_start = jiffies; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 169 | } else { |
| 170 | priv->stats.tx_dropped++; |
| 171 | priv->stats.tx_errors++; |
| 172 | } |
| 173 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 174 | if (!ret && priv->monitormode != LBS_MONITOR_OFF) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 175 | /* Keep the skb to echo it back once Tx feedback is |
| 176 | received from FW */ |
| 177 | skb_orphan(skb); |
| 178 | /* stop processing outgoing pkts */ |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 179 | netif_stop_queue(priv->dev); |
Holger Schurig | 3cf8409 | 2007-08-02 11:50:12 -0400 | [diff] [blame] | 180 | if (priv->mesh_dev) |
| 181 | netif_stop_queue(priv->mesh_dev); |
David Woodhouse | f86a93e | 2007-12-08 19:46:19 +0000 | [diff] [blame] | 182 | |
| 183 | /* Keep the skb around for when we get feedback */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 184 | priv->currenttxskb = skb; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 185 | } else { |
| 186 | dev_kfree_skb_any(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 187 | } |
| 188 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 189 | done: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 190 | lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * @brief This function sends to the host the last transmitted packet, |
| 196 | * filling the radiotap headers with transmission information. |
| 197 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 198 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 199 | * @param status A 32 bit value containing transmission status. |
| 200 | * |
| 201 | * @returns void |
| 202 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 203 | void lbs_send_tx_feedback(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 204 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 205 | struct tx_radiotap_hdr *radiotap_hdr; |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 206 | u32 status = priv->eventcause; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 207 | int txfail; |
| 208 | int try_count; |
| 209 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 210 | if (priv->monitormode == LBS_MONITOR_OFF || |
| 211 | priv->currenttxskb == NULL) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 212 | return; |
| 213 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 214 | radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 215 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 216 | txfail = (status >> 24); |
| 217 | |
| 218 | #if 0 |
| 219 | /* The version of roofnet that we've tested does not use this yet |
| 220 | * But it may be used in the future. |
| 221 | */ |
| 222 | if (txfail) |
| 223 | radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL; |
| 224 | #endif |
| 225 | try_count = (status >> 16) & 0xff; |
| 226 | radiotap_hdr->data_retries = (try_count) ? |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 227 | (1 + priv->txretrycount - try_count) : 0; |
| 228 | lbs_upload_rx_packet(priv, priv->currenttxskb); |
| 229 | priv->currenttxskb = NULL; |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 230 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 231 | if (priv->connect_status == LBS_CONNECTED) |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 232 | netif_wake_queue(priv->dev); |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 233 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 234 | if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED)) |
Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 235 | netif_wake_queue(priv->mesh_dev); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 236 | } |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 237 | EXPORT_SYMBOL_GPL(lbs_send_tx_feedback); |