| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * This file contains the handling of TX in wlan driver. | 
 | 3 |  */ | 
| Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 4 | #include <linux/hardirq.h> | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 5 | #include <linux/netdevice.h> | 
| David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 6 | #include <linux/etherdevice.h> | 
| Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 7 | #include <linux/sched.h> | 
| Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 8 | #include <linux/export.h> | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 9 | #include <net/cfg80211.h> | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 10 |  | 
| Holger Schurig | 9e66e70 | 2009-10-16 17:32:16 +0200 | [diff] [blame] | 11 | #include "host.h" | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 12 | #include "radiotap.h" | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 13 | #include "decl.h" | 
 | 14 | #include "defs.h" | 
 | 15 | #include "dev.h" | 
| Daniel Drake | 49fee69 | 2011-07-21 20:43:17 +0100 | [diff] [blame] | 16 | #include "mesh.h" | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 17 |  | 
 | 18 | /** | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 19 |  * convert_radiotap_rate_to_mv - converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE | 
 | 20 |  * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1) | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 21 |  * | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 22 |  * @rate:	Input rate | 
 | 23 |  * returns:	Output Rate (0 if invalid) | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 24 |  */ | 
 | 25 | static u32 convert_radiotap_rate_to_mv(u8 rate) | 
 | 26 | { | 
 | 27 | 	switch (rate) { | 
 | 28 | 	case 2:		/*   1 Mbps */ | 
 | 29 | 		return 0 | (1 << 4); | 
 | 30 | 	case 4:		/*   2 Mbps */ | 
 | 31 | 		return 1 | (1 << 4); | 
 | 32 | 	case 11:		/* 5.5 Mbps */ | 
 | 33 | 		return 2 | (1 << 4); | 
 | 34 | 	case 22:		/*  11 Mbps */ | 
 | 35 | 		return 3 | (1 << 4); | 
 | 36 | 	case 12:		/*   6 Mbps */ | 
 | 37 | 		return 4 | (1 << 4); | 
 | 38 | 	case 18:		/*   9 Mbps */ | 
 | 39 | 		return 5 | (1 << 4); | 
 | 40 | 	case 24:		/*  12 Mbps */ | 
 | 41 | 		return 6 | (1 << 4); | 
 | 42 | 	case 36:		/*  18 Mbps */ | 
 | 43 | 		return 7 | (1 << 4); | 
 | 44 | 	case 48:		/*  24 Mbps */ | 
 | 45 | 		return 8 | (1 << 4); | 
 | 46 | 	case 72:		/*  36 Mbps */ | 
 | 47 | 		return 9 | (1 << 4); | 
 | 48 | 	case 96:		/*  48 Mbps */ | 
 | 49 | 		return 10 | (1 << 4); | 
 | 50 | 	case 108:		/*  54 Mbps */ | 
 | 51 | 		return 11 | (1 << 4); | 
 | 52 | 	} | 
 | 53 | 	return 0; | 
 | 54 | } | 
 | 55 |  | 
 | 56 | /** | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 57 |  * lbs_hard_start_xmit - checks the conditions and sends packet to IF | 
 | 58 |  * layer if everything is ok | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 59 |  * | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 60 |  * @skb:	A pointer to skb which includes TX packet | 
 | 61 |  * @dev:	A pointer to the &struct net_device | 
 | 62 |  * returns:	0 or -1 | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 63 |  */ | 
| Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 64 | netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 65 | { | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 66 | 	unsigned long flags; | 
| Kiran Divekar | ab65f64 | 2009-02-19 19:32:39 -0500 | [diff] [blame] | 67 | 	struct lbs_private *priv = dev->ml_priv; | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 68 | 	struct txpd *txpd; | 
 | 69 | 	char *p802x_hdr; | 
 | 70 | 	uint16_t pkt_len; | 
| Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 71 | 	netdev_tx_t ret = NETDEV_TX_OK; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 72 |  | 
| Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 73 | 	lbs_deb_enter(LBS_DEB_TX); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 74 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 75 | 	/* We need to protect against the queues being restarted before | 
 | 76 | 	   we get round to stopping them */ | 
 | 77 | 	spin_lock_irqsave(&priv->driver_lock, flags); | 
| David Woodhouse | 6b4a7e0 | 2007-12-09 12:48:10 -0500 | [diff] [blame] | 78 |  | 
| David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 79 | 	if (priv->surpriseremoved) | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 80 | 		goto free; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 81 |  | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 82 | 	if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) { | 
| Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 83 | 		lbs_deb_tx("tx err: skb length %d 0 or > %zd\n", | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 84 | 		       skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE); | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 85 | 		/* We'll never manage to send this one; drop it and return 'OK' */ | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 86 |  | 
| Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 87 | 		dev->stats.tx_dropped++; | 
 | 88 | 		dev->stats.tx_errors++; | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 89 | 		goto free; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 90 | 	} | 
 | 91 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 92 |  | 
 | 93 | 	netif_stop_queue(priv->dev); | 
 | 94 | 	if (priv->mesh_dev) | 
 | 95 | 		netif_stop_queue(priv->mesh_dev); | 
 | 96 |  | 
 | 97 | 	if (priv->tx_pending_len) { | 
| David Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 98 | 		/* This can happen if packets come in on the mesh and eth | 
 | 99 | 		   device simultaneously -- there's no mutual exclusion on | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 100 | 		   hard_start_xmit() calls between devices. */ | 
 | 101 | 		lbs_deb_tx("Packet on %s while busy\n", dev->name); | 
 | 102 | 		ret = NETDEV_TX_BUSY; | 
 | 103 | 		goto unlock; | 
 | 104 | 	} | 
 | 105 |  | 
 | 106 | 	priv->tx_pending_len = -1; | 
 | 107 | 	spin_unlock_irqrestore(&priv->driver_lock, flags); | 
 | 108 |  | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 109 | 	lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100)); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 110 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 111 | 	txpd = (void *)priv->tx_pending_buf; | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 112 | 	memset(txpd, 0, sizeof(struct txpd)); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 113 |  | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 114 | 	p802x_hdr = skb->data; | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 115 | 	pkt_len = skb->len; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 116 |  | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 117 | 	if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) { | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 118 | 		struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 119 |  | 
 | 120 | 		/* set txpd fields from the radiotap header */ | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 121 | 		txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate)); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 122 |  | 
 | 123 | 		/* skip the radiotap header */ | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 124 | 		p802x_hdr += sizeof(*rtap_hdr); | 
 | 125 | 		pkt_len -= sizeof(*rtap_hdr); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 126 |  | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 127 | 		/* copy destination address from 802.11 header */ | 
 | 128 | 		memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 129 | 	} else { | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 130 | 		/* copy destination address from 802.3 header */ | 
 | 131 | 		memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 132 | 	} | 
 | 133 |  | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 134 | 	txpd->tx_packet_length = cpu_to_le16(pkt_len); | 
 | 135 | 	txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd)); | 
 | 136 |  | 
| Holger Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 137 | 	lbs_mesh_set_txpd(priv, dev, txpd); | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 138 |  | 
 | 139 | 	lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd)); | 
 | 140 |  | 
 | 141 | 	lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length)); | 
 | 142 |  | 
 | 143 | 	memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length)); | 
 | 144 |  | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 145 | 	spin_lock_irqsave(&priv->driver_lock, flags); | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 146 | 	priv->tx_pending_len = pkt_len + sizeof(struct txpd); | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 147 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 148 | 	lbs_deb_tx("%s lined up packet\n", __func__); | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 149 |  | 
| Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 150 | 	dev->stats.tx_packets++; | 
 | 151 | 	dev->stats.tx_bytes += skb->len; | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 152 |  | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 153 | 	if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) { | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 154 | 		/* Keep the skb to echo it back once Tx feedback is | 
 | 155 | 		   received from FW */ | 
 | 156 | 		skb_orphan(skb); | 
| David Woodhouse | a2b62dc | 2007-12-09 14:37:59 -0500 | [diff] [blame] | 157 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 158 | 		/* Keep the skb around for when we get feedback */ | 
 | 159 | 		priv->currenttxskb = skb; | 
 | 160 | 	} else { | 
 | 161 |  free: | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 162 | 		dev_kfree_skb_any(skb); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 163 | 	} | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 164 |  | 
| David Woodhouse | 2eb188a | 2007-12-09 23:54:27 -0500 | [diff] [blame] | 165 |  unlock: | 
 | 166 | 	spin_unlock_irqrestore(&priv->driver_lock, flags); | 
 | 167 | 	wake_up(&priv->waitq); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 168 |  | 
| Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 169 | 	lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 170 | 	return ret; | 
 | 171 | } | 
 | 172 |  | 
 | 173 | /** | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 174 |  * lbs_send_tx_feedback - sends to the host the last transmitted packet, | 
 | 175 |  * filling the radiotap headers with transmission information. | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 176 |  * | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 177 |  * @priv:	A pointer to &struct lbs_private structure | 
 | 178 |  * @try_count:	A 32-bit value containing transmission retry status. | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 179 |  * | 
| Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 180 |  * returns:	void | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 181 |  */ | 
| Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 182 | void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 183 | { | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 184 | 	struct tx_radiotap_hdr *radiotap_hdr; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 185 |  | 
| Dan Carpenter | bd75eb8 | 2010-07-22 14:21:02 +0200 | [diff] [blame] | 186 | 	if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR || | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 187 | 	    priv->currenttxskb == NULL) | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 188 | 		return; | 
 | 189 |  | 
| David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 190 | 	radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data; | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 191 |  | 
| Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 192 | 	radiotap_hdr->data_retries = try_count ? | 
 | 193 | 		(1 + priv->txretrycount - try_count) : 0; | 
| David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 194 |  | 
 | 195 | 	priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb, | 
| Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 196 | 						      priv->dev); | 
| David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 197 | 	netif_rx(priv->currenttxskb); | 
 | 198 |  | 
| David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 199 | 	priv->currenttxskb = NULL; | 
| Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 200 |  | 
| David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 201 | 	if (priv->connect_status == LBS_CONNECTED) | 
| Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 202 | 		netif_wake_queue(priv->dev); | 
| Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 203 |  | 
| Daniel Drake | d931998 | 2011-07-20 17:53:56 +0100 | [diff] [blame] | 204 | 	if (priv->mesh_dev && netif_running(priv->mesh_dev)) | 
| Brajesh Dave | 01d77d8 | 2007-11-20 17:44:14 -0500 | [diff] [blame] | 205 | 		netif_wake_queue(priv->mesh_dev); | 
| Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 206 | } | 
| Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 207 | EXPORT_SYMBOL_GPL(lbs_send_tx_feedback); |