blob: 4c018f7a0a8d0ccc5adb690ca7d8ce6758f972c5 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of TX in wlan driver.
3 */
4#include <linux/netdevice.h>
David Woodhouse6f93a8e2007-12-10 00:49:26 -05005#include <linux/etherdevice.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006
7#include "hostcmd.h"
8#include "radiotap.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#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 */
21static 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 Woodhouse6b4a7e02007-12-09 12:48:10 -050053 * @brief This function checks the conditions and sends packet to IF
54 * layer if everything is ok.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055 *
Holger Schurig69f90322007-11-23 15:43:44 +010056 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020057 * @param skb A pointer to skb which includes TX packet
58 * @return 0 or -1
59 */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000060netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061{
David Woodhousea2b62dc2007-12-09 14:37:59 -050062 unsigned long flags;
Kiran Divekarab65f642009-02-19 19:32:39 -050063 struct lbs_private *priv = dev->ml_priv;
David Woodhousea2b62dc2007-12-09 14:37:59 -050064 struct txpd *txpd;
65 char *p802x_hdr;
66 uint16_t pkt_len;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000067 netdev_tx_t ret = NETDEV_TX_OK;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020068
Holger Schurig9012b282007-05-25 11:27:16 -040069 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020070
David Woodhouse2eb188a2007-12-09 23:54:27 -050071 /* We need to protect against the queues being restarted before
72 we get round to stopping them */
73 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse6b4a7e02007-12-09 12:48:10 -050074
David Woodhouseaa21c002007-12-08 20:04:36 +000075 if (priv->surpriseremoved)
David Woodhouse2eb188a2007-12-09 23:54:27 -050076 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020077
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020078 if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
Holger Schurig9012b282007-05-25 11:27:16 -040079 lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020080 skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
David Woodhousea2b62dc2007-12-09 14:37:59 -050081 /* We'll never manage to send this one; drop it and return 'OK' */
David Woodhouse2eb188a2007-12-09 23:54:27 -050082
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000083 dev->stats.tx_dropped++;
84 dev->stats.tx_errors++;
David Woodhouse2eb188a2007-12-09 23:54:27 -050085 goto free;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020086 }
87
David Woodhouse2eb188a2007-12-09 23:54:27 -050088
89 netif_stop_queue(priv->dev);
90 if (priv->mesh_dev)
91 netif_stop_queue(priv->mesh_dev);
92
93 if (priv->tx_pending_len) {
David Woodhouse7e226272007-12-14 22:53:41 -050094 /* This can happen if packets come in on the mesh and eth
95 device simultaneously -- there's no mutual exclusion on
David Woodhouse2eb188a2007-12-09 23:54:27 -050096 hard_start_xmit() calls between devices. */
97 lbs_deb_tx("Packet on %s while busy\n", dev->name);
98 ret = NETDEV_TX_BUSY;
99 goto unlock;
100 }
101
102 priv->tx_pending_len = -1;
103 spin_unlock_irqrestore(&priv->driver_lock, flags);
104
David Woodhousea2b62dc2007-12-09 14:37:59 -0500105 lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200106
David Woodhouse2eb188a2007-12-09 23:54:27 -0500107 txpd = (void *)priv->tx_pending_buf;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500108 memset(txpd, 0, sizeof(struct txpd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200109
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110 p802x_hdr = skb->data;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500111 pkt_len = skb->len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112
David Woodhousea97bcfe2007-12-09 22:00:55 -0500113 if (dev == priv->rtap_net_dev) {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500114 struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
116 /* set txpd fields from the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500117 txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200118
119 /* skip the radiotap header */
David Woodhousea2b62dc2007-12-09 14:37:59 -0500120 p802x_hdr += sizeof(*rtap_hdr);
121 pkt_len -= sizeof(*rtap_hdr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200122
David Woodhousea2b62dc2007-12-09 14:37:59 -0500123 /* copy destination address from 802.11 header */
124 memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125 } else {
David Woodhousea2b62dc2007-12-09 14:37:59 -0500126 /* copy destination address from 802.3 header */
127 memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128 }
129
David Woodhousea2b62dc2007-12-09 14:37:59 -0500130 txpd->tx_packet_length = cpu_to_le16(pkt_len);
131 txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
132
Bing Zhao684d6b32009-03-25 09:51:16 -0700133 if (dev == priv->mesh_dev) {
134 if (priv->mesh_fw_ver == MESH_FW_OLD)
135 txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
136 else if (priv->mesh_fw_ver == MESH_FW_NEW)
137 txpd->u.bss.bss_num = MESH_IFACE_ID;
138 }
David Woodhousea2b62dc2007-12-09 14:37:59 -0500139
140 lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
141
142 lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
143
144 memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
145
David Woodhousea2b62dc2007-12-09 14:37:59 -0500146 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500147 priv->tx_pending_len = pkt_len + sizeof(struct txpd);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500148
David Woodhouse2eb188a2007-12-09 23:54:27 -0500149 lbs_deb_tx("%s lined up packet\n", __func__);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500150
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000151 dev->stats.tx_packets++;
152 dev->stats.tx_bytes += skb->len;
David Woodhousea2b62dc2007-12-09 14:37:59 -0500153
David Woodhouse2eb188a2007-12-09 23:54:27 -0500154 dev->trans_start = jiffies;
David Woodhousef86a93e2007-12-08 19:46:19 +0000155
Holger Schurigc2b310a2008-03-26 09:57:14 +0100156 if (priv->monitormode) {
David Woodhouse2eb188a2007-12-09 23:54:27 -0500157 /* Keep the skb to echo it back once Tx feedback is
158 received from FW */
159 skb_orphan(skb);
David Woodhousea2b62dc2007-12-09 14:37:59 -0500160
David Woodhouse2eb188a2007-12-09 23:54:27 -0500161 /* Keep the skb around for when we get feedback */
162 priv->currenttxskb = skb;
163 } else {
164 free:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200165 dev_kfree_skb_any(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200166 }
David Woodhouse2eb188a2007-12-09 23:54:27 -0500167 unlock:
168 spin_unlock_irqrestore(&priv->driver_lock, flags);
169 wake_up(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170
Holger Schurig9012b282007-05-25 11:27:16 -0400171 lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200172 return ret;
173}
174
175/**
176 * @brief This function sends to the host the last transmitted packet,
177 * filling the radiotap headers with transmission information.
178 *
Holger Schurig69f90322007-11-23 15:43:44 +0100179 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200180 * @param status A 32 bit value containing transmission status.
181 *
182 * @returns void
183 */
Holger Schurig7919b892008-04-01 14:50:43 +0200184void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186 struct tx_radiotap_hdr *radiotap_hdr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187
Holger Schurigc2b310a2008-03-26 09:57:14 +0100188 if (!priv->monitormode || priv->currenttxskb == NULL)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200189 return;
190
David Woodhouseaa21c002007-12-08 20:04:36 +0000191 radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200192
Holger Schurig7919b892008-04-01 14:50:43 +0200193 radiotap_hdr->data_retries = try_count ?
194 (1 + priv->txretrycount - try_count) : 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500195
196 priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb,
197 priv->rtap_net_dev);
198 netif_rx(priv->currenttxskb);
199
David Woodhouseaa21c002007-12-08 20:04:36 +0000200 priv->currenttxskb = NULL;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500201
David Woodhouseaa21c002007-12-08 20:04:36 +0000202 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400203 netif_wake_queue(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500204
David Woodhouseaa21c002007-12-08 20:04:36 +0000205 if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED))
Brajesh Dave01d77d82007-11-20 17:44:14 -0500206 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200207}
Holger Schurig10078322007-11-15 18:05:47 -0500208EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);