rt2x00ht.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
  3. <http://rt2x00.serialmonkey.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the
  14. Free Software Foundation, Inc.,
  15. 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16. */
  17. /*
  18. Module: rt2x00lib
  19. Abstract: rt2x00 HT specific routines.
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include "rt2x00.h"
  24. #include "rt2x00lib.h"
  25. void rt2x00ht_create_tx_descriptor(struct queue_entry *entry,
  26. struct txentry_desc *txdesc,
  27. const struct rt2x00_rate *hwrate)
  28. {
  29. struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
  30. struct ieee80211_tx_rate *txrate = &tx_info->control.rates[0];
  31. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data;
  32. if (tx_info->control.sta)
  33. txdesc->u.ht.mpdu_density =
  34. tx_info->control.sta->ht_cap.ampdu_density;
  35. txdesc->u.ht.ba_size = 7; /* FIXME: What value is needed? */
  36. /*
  37. * Only one STBC stream is supported for now.
  38. */
  39. if (tx_info->flags & IEEE80211_TX_CTL_STBC)
  40. txdesc->u.ht.stbc = 1;
  41. /*
  42. * If IEEE80211_TX_RC_MCS is set txrate->idx just contains the
  43. * mcs rate to be used
  44. */
  45. if (txrate->flags & IEEE80211_TX_RC_MCS) {
  46. txdesc->u.ht.mcs = txrate->idx;
  47. /*
  48. * MIMO PS should be set to 1 for STA's using dynamic SM PS
  49. * when using more then one tx stream (>MCS7).
  50. */
  51. if (tx_info->control.sta && txdesc->u.ht.mcs > 7 &&
  52. ((tx_info->control.sta->ht_cap.cap &
  53. IEEE80211_HT_CAP_SM_PS) >>
  54. IEEE80211_HT_CAP_SM_PS_SHIFT) ==
  55. WLAN_HT_CAP_SM_PS_DYNAMIC)
  56. __set_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags);
  57. } else {
  58. txdesc->u.ht.mcs = rt2x00_get_rate_mcs(hwrate->mcs);
  59. if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
  60. txdesc->u.ht.mcs |= 0x08;
  61. }
  62. /*
  63. * This frame is eligible for an AMPDU, however, don't aggregate
  64. * frames that are intended to probe a specific tx rate.
  65. */
  66. if (tx_info->flags & IEEE80211_TX_CTL_AMPDU &&
  67. !(tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE))
  68. __set_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags);
  69. /*
  70. * Set 40Mhz mode if necessary (for legacy rates this will
  71. * duplicate the frame to both channels).
  72. */
  73. if (txrate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH ||
  74. txrate->flags & IEEE80211_TX_RC_DUP_DATA)
  75. __set_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags);
  76. if (txrate->flags & IEEE80211_TX_RC_SHORT_GI)
  77. __set_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags);
  78. /*
  79. * Determine IFS values
  80. * - Use TXOP_BACKOFF for management frames
  81. * - Use TXOP_SIFS for fragment bursts
  82. * - Use TXOP_HTTXOP for everything else
  83. *
  84. * Note: rt2800 devices won't use CTS protection (if used)
  85. * for frames not transmitted with TXOP_HTTXOP
  86. */
  87. if (ieee80211_is_mgmt(hdr->frame_control))
  88. txdesc->u.ht.txop = TXOP_BACKOFF;
  89. else if (!(tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT))
  90. txdesc->u.ht.txop = TXOP_SIFS;
  91. else
  92. txdesc->u.ht.txop = TXOP_HTTXOP;
  93. }
  94. u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev,
  95. struct ieee80211_conf *conf)
  96. {
  97. struct hw_mode_spec *spec = &rt2x00dev->spec;
  98. int center_channel;
  99. u16 i;
  100. /*
  101. * Initialize center channel to current channel.
  102. */
  103. center_channel = spec->channels[conf->channel->hw_value].channel;
  104. /*
  105. * Adjust center channel to HT40+ and HT40- operation.
  106. */
  107. if (conf_is_ht40_plus(conf))
  108. center_channel += 2;
  109. else if (conf_is_ht40_minus(conf))
  110. center_channel -= (center_channel == 14) ? 1 : 2;
  111. for (i = 0; i < spec->num_channels; i++)
  112. if (spec->channels[i].channel == center_channel)
  113. return i;
  114. WARN_ON(1);
  115. return conf->channel->hw_value;
  116. }