tx.c 5.4 KB

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