blob: 2023419ce0bd27774dbd5431c8d8fb298b2509bc [file] [log] [blame]
Ivo van Doorn35f00cf2009-04-26 16:09:32 +02001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn35f00cf2009-04-26 16:09:32 +02003 <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
32void 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 Schaa1affa092010-05-07 11:03:08 +020038 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data;
Ivo van Doorn35f00cf2009-04-26 16:09:32 +020039
40 if (tx_info->control.sta)
41 txdesc->mpdu_density =
42 tx_info->control.sta->ht_cap.ampdu_density;
43 else
44 txdesc->mpdu_density = 0;
45
46 txdesc->ba_size = 7; /* FIXME: What value is needed? */
Ivo van Doornbd96bd62010-06-03 10:52:11 +020047
48 txdesc->stbc =
49 (tx_info->flags & IEEE80211_TX_CTL_STBC) >> IEEE80211_TX_CTL_STBC_SHIFT;
Ivo van Doorn35f00cf2009-04-26 16:09:32 +020050
Helmut Schaadf7f4eb2010-06-03 10:52:15 +020051 /*
52 * If IEEE80211_TX_RC_MCS is set txrate->idx just contains the
53 * mcs rate to be used
54 */
55 if (txrate->flags & IEEE80211_TX_RC_MCS) {
56 txdesc->mcs = txrate->idx;
Ivo van Doorn84804cd2010-08-06 20:46:19 +020057
58 /*
59 * MIMO PS should be set to 1 for STA's using dynamic SM PS
60 * when using more then one tx stream (>MCS7).
61 */
62 if (tx_info->control.sta && txdesc->mcs > 7 &&
Helmut Schaaa13ac9d2010-10-02 11:28:02 +020063 ((tx_info->control.sta->ht_cap.cap &
64 IEEE80211_HT_CAP_SM_PS) >>
65 IEEE80211_HT_CAP_SM_PS_SHIFT) ==
66 WLAN_HT_CAP_SM_PS_DYNAMIC)
Ivo van Doorn84804cd2010-08-06 20:46:19 +020067 __set_bit(ENTRY_TXD_HT_MIMO_PS, &txdesc->flags);
Helmut Schaadf7f4eb2010-06-03 10:52:15 +020068 } else {
69 txdesc->mcs = rt2x00_get_rate_mcs(hwrate->mcs);
70 if (txrate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
71 txdesc->mcs |= 0x08;
72 }
73
Ivo van Doorn35f00cf2009-04-26 16:09:32 +020074
75 /*
76 * Convert flags
77 */
78 if (tx_info->flags & IEEE80211_TX_CTL_AMPDU)
79 __set_bit(ENTRY_TXD_HT_AMPDU, &txdesc->flags);
80
81 /*
82 * Determine HT Mix/Greenfield rate mode
83 */
84 if (txrate->flags & IEEE80211_TX_RC_MCS)
85 txdesc->rate_mode = RATE_MODE_HT_MIX;
86 if (txrate->flags & IEEE80211_TX_RC_GREEN_FIELD)
87 txdesc->rate_mode = RATE_MODE_HT_GREENFIELD;
Helmut Schaacb753b72010-10-02 11:29:59 +020088
89 /*
90 * Set 40Mhz mode if necessary (for legacy rates this will
91 * duplicate the frame to both channels).
92 */
93 if (txrate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH ||
94 txrate->flags & IEEE80211_TX_RC_DUP_DATA)
Ivo van Doorn35f00cf2009-04-26 16:09:32 +020095 __set_bit(ENTRY_TXD_HT_BW_40, &txdesc->flags);
96 if (txrate->flags & IEEE80211_TX_RC_SHORT_GI)
97 __set_bit(ENTRY_TXD_HT_SHORT_GI, &txdesc->flags);
Helmut Schaa1affa092010-05-07 11:03:08 +020098
99 /*
100 * Determine IFS values
101 * - Use TXOP_BACKOFF for management frames
102 * - Use TXOP_SIFS for fragment bursts
103 * - Use TXOP_HTTXOP for everything else
104 *
105 * Note: rt2800 devices won't use CTS protection (if used)
106 * for frames not transmitted with TXOP_HTTXOP
107 */
108 if (ieee80211_is_mgmt(hdr->frame_control))
109 txdesc->txop = TXOP_BACKOFF;
110 else if (!(tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT))
111 txdesc->txop = TXOP_SIFS;
112 else
113 txdesc->txop = TXOP_HTTXOP;
Ivo van Doorn35f00cf2009-04-26 16:09:32 +0200114}
Gertjan van Wingerde06443e42010-06-03 10:52:08 +0200115
116u16 rt2x00ht_center_channel(struct rt2x00_dev *rt2x00dev,
117 struct ieee80211_conf *conf)
118{
119 struct hw_mode_spec *spec = &rt2x00dev->spec;
120 int center_channel;
121 u16 i;
122
123 /*
124 * Initialize center channel to current channel.
125 */
126 center_channel = spec->channels[conf->channel->hw_value].channel;
127
128 /*
129 * Adjust center channel to HT40+ and HT40- operation.
130 */
131 if (conf_is_ht40_plus(conf))
132 center_channel += 2;
133 else if (conf_is_ht40_minus(conf))
134 center_channel -= (center_channel == 14) ? 1 : 2;
135
136 for (i = 0; i < spec->num_channels; i++)
137 if (spec->channels[i].channel == center_channel)
138 return i;
139
140 WARN_ON(1);
141 return conf->channel->hw_value;
142}