tx.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /**
  2. * This file contains the handling of TX in wlan driver.
  3. */
  4. #include <linux/netdevice.h>
  5. #include "hostcmd.h"
  6. #include "radiotap.h"
  7. #include "decl.h"
  8. #include "defs.h"
  9. #include "dev.h"
  10. #include "wext.h"
  11. /**
  12. * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE
  13. * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1)
  14. *
  15. * @param rate Input rate
  16. * @return Output Rate (0 if invalid)
  17. */
  18. static u32 convert_radiotap_rate_to_mv(u8 rate)
  19. {
  20. switch (rate) {
  21. case 2: /* 1 Mbps */
  22. return 0 | (1 << 4);
  23. case 4: /* 2 Mbps */
  24. return 1 | (1 << 4);
  25. case 11: /* 5.5 Mbps */
  26. return 2 | (1 << 4);
  27. case 22: /* 11 Mbps */
  28. return 3 | (1 << 4);
  29. case 12: /* 6 Mbps */
  30. return 4 | (1 << 4);
  31. case 18: /* 9 Mbps */
  32. return 5 | (1 << 4);
  33. case 24: /* 12 Mbps */
  34. return 6 | (1 << 4);
  35. case 36: /* 18 Mbps */
  36. return 7 | (1 << 4);
  37. case 48: /* 24 Mbps */
  38. return 8 | (1 << 4);
  39. case 72: /* 36 Mbps */
  40. return 9 | (1 << 4);
  41. case 96: /* 48 Mbps */
  42. return 10 | (1 << 4);
  43. case 108: /* 54 Mbps */
  44. return 11 | (1 << 4);
  45. }
  46. return 0;
  47. }
  48. /**
  49. * @brief This function checks the conditions and sends packet to IF
  50. * layer if everything is ok.
  51. *
  52. * @param priv A pointer to struct lbs_private structure
  53. * @param skb A pointer to skb which includes TX packet
  54. * @return 0 or -1
  55. */
  56. int lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
  57. {
  58. unsigned long flags;
  59. struct lbs_private *priv = dev->priv;
  60. struct txpd *txpd;
  61. char *p802x_hdr;
  62. uint16_t pkt_len;
  63. int ret;
  64. lbs_deb_enter(LBS_DEB_TX);
  65. ret = NETDEV_TX_OK;
  66. /* We need to protect against the queues being restarted before
  67. we get round to stopping them */
  68. spin_lock_irqsave(&priv->driver_lock, flags);
  69. if (priv->surpriseremoved)
  70. goto free;
  71. if (!skb->len || (skb->len > MRVDRV_ETH_TX_PACKET_BUFFER_SIZE)) {
  72. lbs_deb_tx("tx err: skb length %d 0 or > %zd\n",
  73. skb->len, MRVDRV_ETH_TX_PACKET_BUFFER_SIZE);
  74. /* We'll never manage to send this one; drop it and return 'OK' */
  75. priv->stats.tx_dropped++;
  76. priv->stats.tx_errors++;
  77. goto free;
  78. }
  79. netif_stop_queue(priv->dev);
  80. if (priv->mesh_dev)
  81. netif_stop_queue(priv->mesh_dev);
  82. if (priv->tx_pending_len) {
  83. /* This can happen if packets come in on the mesh and eth
  84. device simultaneously -- there's no mutual exclusion on
  85. hard_start_xmit() calls between devices. */
  86. lbs_deb_tx("Packet on %s while busy\n", dev->name);
  87. ret = NETDEV_TX_BUSY;
  88. goto unlock;
  89. }
  90. priv->tx_pending_len = -1;
  91. spin_unlock_irqrestore(&priv->driver_lock, flags);
  92. lbs_deb_hex(LBS_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
  93. txpd = (void *)priv->tx_pending_buf;
  94. memset(txpd, 0, sizeof(struct txpd));
  95. p802x_hdr = skb->data;
  96. pkt_len = skb->len;
  97. if (dev == priv->rtap_net_dev) {
  98. struct tx_radiotap_hdr *rtap_hdr = (void *)skb->data;
  99. /* set txpd fields from the radiotap header */
  100. txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
  101. /* skip the radiotap header */
  102. p802x_hdr += sizeof(*rtap_hdr);
  103. pkt_len -= sizeof(*rtap_hdr);
  104. /* copy destination address from 802.11 header */
  105. memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
  106. } else {
  107. /* copy destination address from 802.3 header */
  108. memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
  109. }
  110. txpd->tx_packet_length = cpu_to_le16(pkt_len);
  111. txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
  112. if (dev == priv->mesh_dev)
  113. txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
  114. lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
  115. lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
  116. memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
  117. spin_lock_irqsave(&priv->driver_lock, flags);
  118. priv->tx_pending_len = pkt_len + sizeof(struct txpd);
  119. lbs_deb_tx("%s lined up packet\n", __func__);
  120. priv->stats.tx_packets++;
  121. priv->stats.tx_bytes += skb->len;
  122. dev->trans_start = jiffies;
  123. if (priv->monitormode != LBS_MONITOR_OFF) {
  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. * @brief This function sends to the host the last transmitted packet,
  141. * filling the radiotap headers with transmission information.
  142. *
  143. * @param priv A pointer to struct lbs_private structure
  144. * @param status A 32 bit value containing transmission status.
  145. *
  146. * @returns void
  147. */
  148. void lbs_send_tx_feedback(struct lbs_private *priv)
  149. {
  150. struct tx_radiotap_hdr *radiotap_hdr;
  151. u32 status = priv->eventcause;
  152. int txfail;
  153. int try_count;
  154. if (priv->monitormode == LBS_MONITOR_OFF ||
  155. priv->currenttxskb == NULL)
  156. return;
  157. radiotap_hdr = (struct tx_radiotap_hdr *)priv->currenttxskb->data;
  158. txfail = (status >> 24);
  159. #if 0
  160. /* The version of roofnet that we've tested does not use this yet
  161. * But it may be used in the future.
  162. */
  163. if (txfail)
  164. radiotap_hdr->flags &= IEEE80211_RADIOTAP_F_TX_FAIL;
  165. #endif
  166. try_count = (status >> 16) & 0xff;
  167. radiotap_hdr->data_retries = (try_count) ?
  168. (1 + priv->txretrycount - try_count) : 0;
  169. lbs_upload_rx_packet(priv, priv->currenttxskb);
  170. priv->currenttxskb = NULL;
  171. if (priv->connect_status == LBS_CONNECTED)
  172. netif_wake_queue(priv->dev);
  173. if (priv->mesh_dev && (priv->mesh_connect_status == LBS_CONNECTED))
  174. netif_wake_queue(priv->mesh_dev);
  175. }
  176. EXPORT_SYMBOL_GPL(lbs_send_tx_feedback);