tx.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * This file contains the handling of TX in wlan driver.
  3. */
  4. #include <linux/hardirq.h>
  5. #include <linux/netdevice.h>
  6. #include <linux/etherdevice.h>
  7. #include <linux/sched.h>
  8. #include <net/cfg80211.h>
  9. #include "host.h"
  10. #include "radiotap.h"
  11. #include "decl.h"
  12. #include "defs.h"
  13. #include "dev.h"
  14. /**
  15. * convert_radiotap_rate_to_mv - 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. * @rate: Input rate
  19. * returns: Output Rate (0 if invalid)
  20. */
  21. static 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. * lbs_hard_start_xmit - checks the conditions and sends packet to IF
  53. * layer if everything is ok
  54. *
  55. * @skb: A pointer to skb which includes TX packet
  56. * @dev: A pointer to the &struct net_device
  57. * returns: 0 or -1
  58. */
  59. netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
  60. {
  61. unsigned long flags;
  62. struct lbs_private *priv = dev->ml_priv;
  63. struct txpd *txpd;
  64. char *p802x_hdr;
  65. uint16_t pkt_len;
  66. netdev_tx_t ret = NETDEV_TX_OK;
  67. lbs_deb_enter(LBS_DEB_TX);
  68. /* We need to protect against the queues being restarted before
  69. we get round to stopping them */
  70. spin_lock_irqsave(&priv->driver_lock, flags);
  71. if (priv->surpriseremoved)
  72. goto free;
  73. if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
  74. lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
  75. skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
  76. /* We'll never manage to send this one; drop it and return 'OK' */
  77. dev->stats.tx_dropped++;
  78. dev->stats.tx_errors++;
  79. goto free;
  80. }
  81. netif_stop_queue(priv->dev);
  82. if (priv->mesh_dev)
  83. netif_stop_queue(priv->mesh_dev);
  84. if (priv->tx_pending_len) {
  85. /* This can happen if packets come in on the mesh and eth
  86. device simultaneously -- there's no mutual exclusion on
  87. hard_start_xmit() calls between devices. */
  88. lbs_deb_tx("Packet on %s while busy\n", dev->name);
  89. ret = NETDEV_TX_BUSY;
  90. goto unlock;
  91. }
  92. priv->tx_pending_len = -1;
  93. spin_unlock_irqrestore(&priv->driver_lock, flags);
  94. lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
  95. txpd = (void *)priv->tx_pending_buf;
  96. memset(txpd, 0, sizeof(struct txpd));
  97. p802x_hdr = skb->data;
  98. pkt_len = skb->len;
  99. if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
  100. struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
  101. /* set txpd fields from the radiotap header */
  102. txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
  103. /* skip the radiotap header */
  104. p802x_hdr += sizeof(*rtap_hdr);
  105. pkt_len -= sizeof(*rtap_hdr);
  106. /* copy destination address from 802.11 header */
  107. memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
  108. } else {
  109. /* copy destination address from 802.3 header */
  110. memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
  111. }
  112. txpd->tx_packet_length = cpu_to_le16(pkt_len);
  113. txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
  114. lbs_mesh_set_txpd(priv, dev, txpd);
  115. lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
  116. lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
  117. memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
  118. spin_lock_irqsave(&priv->driver_lock, flags);
  119. priv->tx_pending_len = pkt_len + sizeof(struct txpd);
  120. lbs_deb_tx("%s lined up packet\n", __func__);
  121. dev->stats.tx_packets++;
  122. dev->stats.tx_bytes += skb->len;
  123. if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
  124. /* Keep the skb to echo it back once Tx feedback is
  125. received from FW */
  126. skb_orphan(skb);
  127. /* Keep the skb around for when we get feedback */
  128. priv->currenttxskb = skb;
  129. } else {
  130. free:
  131. dev_kfree_skb_any(skb);
  132. }
  133. unlock:
  134. spin_unlock_irqrestore(&priv->driver_lock, flags);
  135. wake_up(&priv->waitq);
  136. lbs_deb_leave_args(LBS_DEB_TX, "ret %d", ret);
  137. return ret;
  138. }
  139. /**
  140. * lbs_send_tx_feedback - sends to the host the last transmitted packet,
  141. * filling the radiotap headers with transmission information.
  142. *
  143. * @priv: A pointer to &struct lbs_private structure
  144. * @try_count: A 32-bit value containing transmission retry status.
  145. *
  146. * returns: void
  147. */
  148. void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count)
  149. {
  150. struct tx_radiotap_hdr *radiotap_hdr;
  151. if (priv->wdev->iftype != NL80211_IFTYPE_MONITOR ||
  152. priv->currenttxskb == NULL)
  153. return;
  154. radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
  155. radiotap_hdr->data_retries = try_count ?
  156. (1 + priv->txretrycount - try_count) : 0;
  157. priv->currenttxskb->protocol = eth_type_trans(priv->currenttxskb,
  158. priv->dev);
  159. netif_rx(priv->currenttxskb);
  160. priv->currenttxskb = NULL;
  161. if (priv->connect_status == LBS_CONNECTED)
  162. netif_wake_queue(priv->dev);
  163. if (priv->mesh_dev && netif_running(priv->mesh_dev))
  164. netif_wake_queue(priv->mesh_dev);
  165. }
  166. EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);