rt2x00ht.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. Copyright (C) 2004 - 2009 rt2x00 SourceForge Project
  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. if (tx_info->control.sta)
  32. txdesc->mpdu_density =
  33. tx_info->control.sta->ht_cap.ampdu_density;
  34. else
  35. txdesc->mpdu_density = 0;
  36. txdesc->ba_size = 7; /* FIXME: What value is needed? */
  37. txdesc->stbc = 0; /* FIXME: What value is needed? */
  38. txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs);
  39. if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
  40. txdesc->mcs |= 0x08;
  41. /*
  42. * Convert flags
  43. */
  44. if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
  45. __set_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags);
  46. /*
  47. * Determine HT Mix/Greenfield rate mode
  48. */
  49. if (txrate->flags & IEEE80211_TX_RC_MCS)
  50. txdesc->rate_mode = RATE_MODE_HT_MIX;
  51. if (txrate->flags & IEEE80211_TX_RC_GREEN_FIELD)
  52. txdesc->rate_mode = RATE_MODE_HT_GREENFIELD;
  53. if (txrate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  54. __set_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags);
  55. if (txrate->flags & IEEE80211_TX_RC_SHORT_GI)
  56. __set_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags);
  57. }