int.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /*
  2. * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. *
  16. * File: int.c
  17. *
  18. * Purpose: Handle USB interrupt endpoint
  19. *
  20. * Author: Jerry Chen
  21. *
  22. * Date: Apr. 2, 2004
  23. *
  24. * Functions:
  25. *
  26. * Revision History:
  27. * 04-02-2004 Jerry Chen: Initial release
  28. *
  29. */
  30. #include "int.h"
  31. #include "mac.h"
  32. #include "power.h"
  33. #include "usbpipe.h"
  34. static const u8 fallback_rate0[5][5] = {
  35. {RATE_18M, RATE_18M, RATE_12M, RATE_12M, RATE_12M},
  36. {RATE_24M, RATE_24M, RATE_18M, RATE_12M, RATE_12M},
  37. {RATE_36M, RATE_36M, RATE_24M, RATE_18M, RATE_18M},
  38. {RATE_48M, RATE_48M, RATE_36M, RATE_24M, RATE_24M},
  39. {RATE_54M, RATE_54M, RATE_48M, RATE_36M, RATE_36M}
  40. };
  41. static const u8 fallback_rate1[5][5] = {
  42. {RATE_18M, RATE_18M, RATE_12M, RATE_6M, RATE_6M},
  43. {RATE_24M, RATE_24M, RATE_18M, RATE_6M, RATE_6M},
  44. {RATE_36M, RATE_36M, RATE_24M, RATE_12M, RATE_12M},
  45. {RATE_48M, RATE_48M, RATE_24M, RATE_12M, RATE_12M},
  46. {RATE_54M, RATE_54M, RATE_36M, RATE_18M, RATE_18M}
  47. };
  48. void vnt_int_start_interrupt(struct vnt_private *priv)
  49. {
  50. unsigned long flags;
  51. int status;
  52. dev_dbg(&priv->usb->dev, "---->Interrupt Polling Thread\n");
  53. spin_lock_irqsave(&priv->lock, flags);
  54. status = vnt_start_interrupt_urb(priv);
  55. spin_unlock_irqrestore(&priv->lock, flags);
  56. }
  57. static int vnt_int_report_rate(struct vnt_private *priv, u8 pkt_no, u8 tsr)
  58. {
  59. struct vnt_usb_send_context *context;
  60. struct ieee80211_tx_info *info;
  61. struct ieee80211_rate *rate;
  62. u8 tx_retry = (tsr & 0xf0) >> 4;
  63. s8 idx;
  64. if (pkt_no >= priv->num_tx_context)
  65. return -EINVAL;
  66. context = priv->tx_context[pkt_no];
  67. if (!context->skb)
  68. return -EINVAL;
  69. info = IEEE80211_SKB_CB(context->skb);
  70. idx = info->control.rates[0].idx;
  71. if (context->fb_option && !(tsr & (TSR_TMO | TSR_RETRYTMO))) {
  72. u8 tx_rate;
  73. u8 retry = tx_retry;
  74. rate = ieee80211_get_tx_rate(priv->hw, info);
  75. tx_rate = rate->hw_value - RATE_18M;
  76. if (retry > 4)
  77. retry = 4;
  78. if (context->fb_option == AUTO_FB_0)
  79. tx_rate = fallback_rate0[tx_rate][retry];
  80. else if (context->fb_option == AUTO_FB_1)
  81. tx_rate = fallback_rate1[tx_rate][retry];
  82. if (info->band == NL80211_BAND_5GHZ)
  83. idx = tx_rate - RATE_6M;
  84. else
  85. idx = tx_rate;
  86. }
  87. ieee80211_tx_info_clear_status(info);
  88. info->status.rates[0].count = tx_retry;
  89. if (!(tsr & (TSR_TMO | TSR_RETRYTMO))) {
  90. info->status.rates[0].idx = idx;
  91. info->flags |= IEEE80211_TX_STAT_ACK;
  92. }
  93. ieee80211_tx_status_irqsafe(priv->hw, context->skb);
  94. context->in_use = false;
  95. return 0;
  96. }
  97. void vnt_int_process_data(struct vnt_private *priv)
  98. {
  99. struct vnt_interrupt_data *int_data;
  100. struct ieee80211_low_level_stats *low_stats = &priv->low_stats;
  101. dev_dbg(&priv->usb->dev, "---->s_nsInterruptProcessData\n");
  102. int_data = (struct vnt_interrupt_data *)priv->int_buf.data_buf;
  103. if (int_data->tsr0 & TSR_VALID)
  104. vnt_int_report_rate(priv, int_data->pkt0, int_data->tsr0);
  105. if (int_data->tsr1 & TSR_VALID)
  106. vnt_int_report_rate(priv, int_data->pkt1, int_data->tsr1);
  107. if (int_data->tsr2 & TSR_VALID)
  108. vnt_int_report_rate(priv, int_data->pkt2, int_data->tsr2);
  109. if (int_data->tsr3 & TSR_VALID)
  110. vnt_int_report_rate(priv, int_data->pkt3, int_data->tsr3);
  111. if (int_data->isr0 != 0) {
  112. if (int_data->isr0 & ISR_BNTX &&
  113. priv->op_mode == NL80211_IFTYPE_AP)
  114. vnt_schedule_command(priv, WLAN_CMD_BECON_SEND);
  115. if (int_data->isr0 & ISR_TBTT &&
  116. priv->hw->conf.flags & IEEE80211_CONF_PS) {
  117. if (!priv->wake_up_count)
  118. priv->wake_up_count =
  119. priv->hw->conf.listen_interval;
  120. --priv->wake_up_count;
  121. /* Turn on wake up to listen next beacon */
  122. if (priv->wake_up_count == 1)
  123. vnt_schedule_command(priv,
  124. WLAN_CMD_TBTT_WAKEUP);
  125. }
  126. priv->current_tsf = le64_to_cpu(int_data->tsf);
  127. low_stats->dot11RTSSuccessCount += int_data->rts_success;
  128. low_stats->dot11RTSFailureCount += int_data->rts_fail;
  129. low_stats->dot11ACKFailureCount += int_data->ack_fail;
  130. low_stats->dot11FCSErrorCount += int_data->fcs_err;
  131. }
  132. priv->int_buf.in_use = false;
  133. }