Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 1 | /* |
Gertjan van Wingerde | 9c9a0d1 | 2009-11-08 16:39:55 +0100 | [diff] [blame] | 2 | Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com> |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 3 | <http://rt2x00.serialmonkey.com> |
| 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 | You should have received a copy of the GNU General Public License |
| 16 | along with this program; if not, write to the |
| 17 | Free Software Foundation, Inc., |
| 18 | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | Module: rt2x00lib |
| 23 | Abstract: rt2x00 HT specific routines. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/module.h> |
| 28 | |
| 29 | #include "rt2x00.h" |
| 30 | #include "rt2x00lib.h" |
| 31 | |
| 32 | void rt2x00ht_create_tx_descriptor(struct queue_entry *entry, |
| 33 | struct txentry_desc *txdesc, |
| 34 | const struct rt2x00_rate *hwrate) |
| 35 | { |
| 36 | struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb); |
| 37 | struct ieee80211_tx_rate *txrate = &tx_info->control.rates[0]; |
Helmut Schaa | 1affa09 | 2010-05-07 11:03:08 +0200 | [diff] [blame] | 38 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data; |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 39 | |
| 40 | if (tx_info->control.sta) |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 41 | txdesc->u.ht.mpdu_density = |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 42 | tx_info->control.sta->ht_cap.ampdu_density; |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 43 | |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 44 | txdesc->u.ht.ba_size = 7; /* FIXME: What value is needed? */ |
Ivo van Doorn | bd96bd6 | 2010-06-03 10:52:11 +0200 | [diff] [blame] | 45 | |
Helmut Schaa | 351151e | 2011-03-28 13:34:15 +0200 | [diff] [blame] | 46 | /* |
| 47 | * Only one STBC stream is supported for now. |
| 48 | */ |
| 49 | if (tx_info->flags & IEEE80211_TX_CTL_STBC) |
| 50 | txdesc->u.ht.stbc = 1; |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 51 | |
Helmut Schaa | df7f4eb | 2010-06-03 10:52:15 +0200 | [diff] [blame] | 52 | /* |
| 53 | * If IEEE80211_TX_RC_MCS is set txrate->idx just contains the |
| 54 | * mcs rate to be used |
| 55 | */ |
| 56 | if (txrate->flags & IEEE80211_TX_RC_MCS) { |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 57 | txdesc->u.ht.mcs = txrate->idx; |
Ivo van Doorn | 84804cd | 2010-08-06 20:46:19 +0200 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * MIMO PS should be set to 1 for STA's using dynamic SM PS |
| 61 | * when using more then one tx stream (>MCS7). |
| 62 | */ |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 63 | if (tx_info->control.sta && txdesc->u.ht.mcs > 7 && |
Helmut Schaa | a13ac9d | 2010-10-02 11:28:02 +0200 | [diff] [blame] | 64 | ((tx_info->control.sta->ht_cap.cap & |
| 65 | IEEE80211_HT_CAP_SM_PS) >> |
| 66 | IEEE80211_HT_CAP_SM_PS_SHIFT) == |
| 67 | WLAN_HT_CAP_SM_PS_DYNAMIC) |
Ivo van Doorn | 84804cd | 2010-08-06 20:46:19 +0200 | [diff] [blame] | 68 | __set_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags); |
Helmut Schaa | df7f4eb | 2010-06-03 10:52:15 +0200 | [diff] [blame] | 69 | } else { |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 70 | txdesc->u.ht.mcs = rt2x00_get_rate_mcs(hwrate->mcs); |
Helmut Schaa | df7f4eb | 2010-06-03 10:52:15 +0200 | [diff] [blame] | 71 | if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 72 | txdesc->u.ht.mcs |= 0x08; |
Helmut Schaa | df7f4eb | 2010-06-03 10:52:15 +0200 | [diff] [blame] | 73 | } |
| 74 | |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 75 | /* |
Helmut Schaa | 01e946f | 2010-10-02 11:34:26 +0200 | [diff] [blame] | 76 | * This frame is eligible for an AMPDU, however, don't aggregate |
| 77 | * frames that are intended to probe a specific tx rate. |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 78 | */ |
Helmut Schaa | 01e946f | 2010-10-02 11:34:26 +0200 | [diff] [blame] | 79 | if (tx_info->flags & IEEE80211_TX_CTL_AMPDU && |
| 80 | !(tx_info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)) |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 81 | __set_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags); |
| 82 | |
| 83 | /* |
Helmut Schaa | cb753b7 | 2010-10-02 11:29:59 +0200 | [diff] [blame] | 84 | * Set 40Mhz mode if necessary (for legacy rates this will |
| 85 | * duplicate the frame to both channels). |
| 86 | */ |
| 87 | if (txrate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH || |
| 88 | txrate->flags & IEEE80211_TX_RC_DUP_DATA) |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 89 | __set_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags); |
| 90 | if (txrate->flags & IEEE80211_TX_RC_SHORT_GI) |
| 91 | __set_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags); |
Helmut Schaa | 1affa09 | 2010-05-07 11:03:08 +0200 | [diff] [blame] | 92 | |
| 93 | /* |
| 94 | * Determine IFS values |
Helmut Schaa | 8da3efb | 2011-04-18 15:28:50 +0200 | [diff] [blame] | 95 | * - Use TXOP_BACKOFF for management frames except beacons |
Helmut Schaa | 1affa09 | 2010-05-07 11:03:08 +0200 | [diff] [blame] | 96 | * - Use TXOP_SIFS for fragment bursts |
| 97 | * - Use TXOP_HTTXOP for everything else |
| 98 | * |
| 99 | * Note: rt2800 devices won't use CTS protection (if used) |
| 100 | * for frames not transmitted with TXOP_HTTXOP |
| 101 | */ |
Helmut Schaa | 8da3efb | 2011-04-18 15:28:50 +0200 | [diff] [blame] | 102 | if (ieee80211_is_mgmt(hdr->frame_control) && |
| 103 | !ieee80211_is_beacon(hdr->frame_control)) |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 104 | txdesc->u.ht.txop = TXOP_BACKOFF; |
Helmut Schaa | 1affa09 | 2010-05-07 11:03:08 +0200 | [diff] [blame] | 105 | else if (!(tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)) |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 106 | txdesc->u.ht.txop = TXOP_SIFS; |
Helmut Schaa | 1affa09 | 2010-05-07 11:03:08 +0200 | [diff] [blame] | 107 | else |
Helmut Schaa | 26a1d07 | 2011-03-03 19:42:35 +0100 | [diff] [blame] | 108 | txdesc->u.ht.txop = TXOP_HTTXOP; |
Ivo van Doorn | 35f00cf | 2009-04-26 16:09:32 +0200 | [diff] [blame] | 109 | } |
Gertjan van Wingerde | 06443e4 | 2010-06-03 10:52:08 +0200 | [diff] [blame] | 110 | |
| 111 | u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev, |
| 112 | struct ieee80211_conf *conf) |
| 113 | { |
| 114 | struct hw_mode_spec *spec = &rt2x00dev->spec; |
| 115 | int center_channel; |
| 116 | u16 i; |
| 117 | |
| 118 | /* |
| 119 | * Initialize center channel to current channel. |
| 120 | */ |
| 121 | center_channel = spec->channels[conf->channel->hw_value].channel; |
| 122 | |
| 123 | /* |
| 124 | * Adjust center channel to HT40+ and HT40- operation. |
| 125 | */ |
| 126 | if (conf_is_ht40_plus(conf)) |
| 127 | center_channel += 2; |
| 128 | else if (conf_is_ht40_minus(conf)) |
| 129 | center_channel -= (center_channel == 14) ? 1 : 2; |
| 130 | |
| 131 | for (i = 0; i < spec->num_channels; i++) |
| 132 | if (spec->channels[i].channel == center_channel) |
| 133 | return i; |
| 134 | |
| 135 | WARN_ON(1); |
| 136 | return conf->channel->hw_value; |
| 137 | } |