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