]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/net/wireless/libertas/tx.c
libertas: TX packet is radiotap iff it comes from rtap_dev
[linux-2.6-omap-h63xx.git] / 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_BUSY;
71
72         if (priv->dnld_sent) {
73                 lbs_pr_alert( "TX error: dnld_sent = %d, not sending\n",
74                        priv->dnld_sent);
75                 goto done;
76         }
77
78         if (priv->currenttxskb) {
79                 lbs_pr_err("%s while TX skb pending\n", __func__);
80                 goto done;
81         }
82
83         if ((priv->psstate == PS_STATE_SLEEP) ||
84             (priv->psstate == PS_STATE_PRE_SLEEP)) {
85                 lbs_pr_alert("TX error: packet xmit in %ssleep mode\n",
86                              priv->psstate == PS_STATE_SLEEP?"":"pre-");
87                 goto done;
88         }
89
90         if (priv->surpriseremoved)
91                 goto drop;
92
93         if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
94                 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
95                        skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
96                 /* We'll never manage to send this one; drop it and return 'OK' */
97                 goto drop;
98         }
99
100         lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
101
102         txpd = (void *)priv->tmptxbuf;
103         memset(txpd, 0, sizeof(struct txpd));
104
105         p802x_hdr = skb->data;
106         pkt_len = skb->len;
107
108         if (dev == priv->rtap_net_dev) {
109                 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
110
111                 /* set txpd fields from the radiotap header */
112                 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
113
114                 /* skip the radiotap header */
115                 p802x_hdr += sizeof(*rtap_hdr);
116                 pkt_len -= sizeof(*rtap_hdr);
117
118                 /* copy destination address from 802.11 header */
119                 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
120         } else {
121                 /* copy destination address from 802.3 header */
122                 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
123         }
124
125         txpd->tx_packet_length = cpu_to_le16(pkt_len);
126         txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
127
128         if (dev == priv->mesh_dev)
129                 txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
130
131         lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
132
133         lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
134
135         memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
136
137         /* We need to protect against the queues being restarted before
138            we get round to stopping them */
139         spin_lock_irqsave(&priv->driver_lock, flags);
140
141         ret = priv->hw_host_to_card(priv, MVMS_DAT, priv->tmptxbuf,
142                                     pkt_len + sizeof(struct txpd));
143
144         if (!ret) {
145                 lbs_deb_tx("%s succeeds\n", __func__);
146
147                 /* Stop processing outgoing pkts before submitting */
148                 netif_stop_queue(priv->dev);
149                 if (priv->mesh_dev)
150                         netif_stop_queue(priv->mesh_dev);
151
152                 priv->stats.tx_packets++;
153                 priv->stats.tx_bytes += skb->len;
154
155                 dev->trans_start = jiffies;
156
157                 if (priv->monitormode != LBS_MONITOR_OFF) {
158                         /* Keep the skb to echo it back once Tx feedback is
159                            received from FW */
160                         skb_orphan(skb);
161
162                         /* Keep the skb around for when we get feedback */
163                         priv->currenttxskb = skb;
164                 }
165         }
166         
167         spin_unlock_irqrestore(&priv->driver_lock, flags);
168
169         if (ret) {
170                 lbs_deb_tx("tx err: hw_host_to_card returned 0x%X\n", ret);
171 drop:
172                 priv->stats.tx_dropped++;
173                 priv->stats.tx_errors++;
174
175                 dev_kfree_skb_any(skb);
176         }
177
178         /* Even if we dropped the packet, return OK. Otherwise the
179            packet gets requeued. */
180         ret = NETDEV_TX_OK;
181
182 done:
183         lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
184         return ret;
185 }
186
187 /**
188  *  @brief This function sends to the host the last transmitted packet,
189  *  filling the radiotap headers with transmission information.
190  *
191  *  @param priv     A pointer to struct lbs_private structure
192  *  @param status   A 32 bit value containing transmission status.
193  *
194  *  @returns void
195  */
196 void lbs_send_tx_feedback(struct lbs_private *priv)
197 {
198         struct tx_radiotap_hdr *radiotap_hdr;
199         u32 status = priv->eventcause;
200         int txfail;
201         int try_count;
202
203         if (priv->monitormode == LBS_MONITOR_OFF ||
204             priv->currenttxskb == NULL)
205                 return;
206
207         radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
208
209         txfail = (status >> 24);
210
211 #if 0
212         /* The version of roofnet that we've tested does not use this yet
213          * But it may be used in the future.
214          */
215         if (txfail)
216                 radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL;
217 #endif
218         try_count = (status >> 16) & 0xff;
219         radiotap_hdr->data_retries = (try_count) ?
220             (1 + priv->txretrycount - try_count) : 0;
221         lbs_upload_rx_packet(priv, priv->currenttxskb);
222         priv->currenttxskb = NULL;
223
224         if (priv->connect_status == LBS_CONNECTED)
225                 netif_wake_queue(priv->dev);
226
227         if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED))
228                 netif_wake_queue(priv->mesh_dev);
229 }
230 EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);