libertas: Move actual transmission to main thread
[linux-2.6] / drivers / net / wireless / libertas / tx.c
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"
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 /**
52  *  @brief This function checks the conditions and sends packet to IF
53  *  layer if everything is ok.
54  *
55  *  @param priv    A pointer to struct lbs_private structure
56  *  @param skb     A pointer to skb which includes TX packet
57  *  @return        0 or -1
58  */
59 int lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
60 {
61         unsigned long flags;
62         struct lbs_private *priv = dev->priv;
63         struct txpd *txpd;
64         char *p802x_hdr;
65         uint16_t pkt_len;
66         int ret;
67
68         lbs_deb_enter(LBS_DEB_TX);
69
70         ret = NETDEV_TX_OK;
71
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);
75
76         if (priv->surpriseremoved)
77                 goto free;
78
79         if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
80                 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
81                        skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
82                 /* We'll never manage to send this one; drop it and return 'OK' */
83
84                 priv->stats.tx_dropped++;
85                 priv->stats.tx_errors++;
86                 goto free;
87         }
88
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) {
95                 /* This can happen if packets come in on the mesh and eth 
96                    device simultaneously -- there's no mutual exclusion on 
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
106         lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
107
108         txpd = (void *)priv->tx_pending_buf;
109         memset(txpd, 0, sizeof(struct txpd));
110
111         p802x_hdr = skb->data;
112         pkt_len = skb->len;
113
114         if (dev == priv->rtap_net_dev) {
115                 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
116
117                 /* set txpd fields from the radiotap header */
118                 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
119
120                 /* skip the radiotap header */
121                 p802x_hdr += sizeof(*rtap_hdr);
122                 pkt_len -= sizeof(*rtap_hdr);
123
124                 /* copy destination address from 802.11 header */
125                 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
126         } else {
127                 /* copy destination address from 802.3 header */
128                 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
129         }
130
131         txpd->tx_packet_length = cpu_to_le16(pkt_len);
132         txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
133
134         if (dev == priv->mesh_dev)
135                 txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
136
137         lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
138
139         lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
140
141         memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
142
143         spin_lock_irqsave(&priv->driver_lock, flags);
144         priv->tx_pending_len = pkt_len + sizeof(struct txpd);
145
146         lbs_deb_tx("%s lined up packet\n", __func__);
147
148         priv->stats.tx_packets++;
149         priv->stats.tx_bytes += skb->len;
150
151         dev->trans_start = jiffies;
152
153         if (priv->monitormode != LBS_MONITOR_OFF) {
154                 /* Keep the skb to echo it back once Tx feedback is
155                    received from FW */
156                 skb_orphan(skb);
157
158                 /* Keep the skb around for when we get feedback */
159                 priv->currenttxskb = skb;
160         } else {
161  free:
162                 dev_kfree_skb_any(skb);
163         }
164  unlock:
165         spin_unlock_irqrestore(&priv->driver_lock, flags);
166         wake_up(&priv->waitq);
167
168         lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
169         return ret;
170 }
171
172 /**
173  *  @brief This function sends to the host the last transmitted packet,
174  *  filling the radiotap headers with transmission information.
175  *
176  *  @param priv     A pointer to struct lbs_private structure
177  *  @param status   A 32 bit value containing transmission status.
178  *
179  *  @returns void
180  */
181 void lbs_send_tx_feedback(struct lbs_private *priv)
182 {
183         struct tx_radiotap_hdr *radiotap_hdr;
184         u32 status = priv->eventcause;
185         int txfail;
186         int try_count;
187
188         if (priv->monitormode == LBS_MONITOR_OFF ||
189             priv->currenttxskb == NULL)
190                 return;
191
192         radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
193
194         txfail = (status >> 24);
195
196 #if 0
197         /* The version of roofnet that we've tested does not use this yet
198          * But it may be used in the future.
199          */
200         if (txfail)
201                 radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL;
202 #endif
203         try_count = (status >> 16) & 0xff;
204         radiotap_hdr->data_retries = (try_count) ?
205             (1 + priv->txretrycount - try_count) : 0;
206         lbs_upload_rx_packet(priv, priv->currenttxskb);
207         priv->currenttxskb = NULL;
208
209         if (priv->connect_status == LBS_CONNECTED)
210                 netif_wake_queue(priv->dev);
211
212         if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED))
213                 netif_wake_queue(priv->mesh_dev);
214 }
215 EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);