blob: 4e3c72f20de760c5d24fcaa40c004abd237d5607 [file] [log] [blame]
Johannes Berg44d414d2008-09-08 17:44:28 +02001/*
2 * HT handling
3 *
4 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
Johannes Bergbacac542008-09-08 17:44:29 +02005 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
Johannes Berg44d414d2008-09-08 17:44:28 +02007 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9 * Copyright 2007-2008, Intel Corporation
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/ieee80211.h>
17#include <net/wireless.h>
18#include <net/mac80211.h>
19#include "ieee80211_i.h"
Sujith81cb7622009-02-12 11:38:37 +053020#include "rate.h"
Johannes Berg44d414d2008-09-08 17:44:28 +020021
Johannes Bergae5eb022008-10-14 16:58:37 +020022void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband,
23 struct ieee80211_ht_cap *ht_cap_ie,
Johannes Bergd9fe60d2008-10-09 12:13:49 +020024 struct ieee80211_sta_ht_cap *ht_cap)
Johannes Berg44d414d2008-09-08 17:44:28 +020025{
Johannes Bergae5eb022008-10-14 16:58:37 +020026 u8 ampdu_info, tx_mcs_set_cap;
27 int i, max_tx_streams;
Johannes Berg44d414d2008-09-08 17:44:28 +020028
Johannes Bergd9fe60d2008-10-09 12:13:49 +020029 BUG_ON(!ht_cap);
Johannes Berg44d414d2008-09-08 17:44:28 +020030
Johannes Bergd9fe60d2008-10-09 12:13:49 +020031 memset(ht_cap, 0, sizeof(*ht_cap));
Johannes Berg44d414d2008-09-08 17:44:28 +020032
Johannes Bergae5eb022008-10-14 16:58:37 +020033 if (!ht_cap_ie)
34 return;
Johannes Berg44d414d2008-09-08 17:44:28 +020035
Johannes Bergae5eb022008-10-14 16:58:37 +020036 ht_cap->ht_supported = true;
Johannes Berg44d414d2008-09-08 17:44:28 +020037
Sujithf16f33d2008-11-14 16:27:53 +053038 ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) & sband->ht_cap.cap;
Johannes Bergae5eb022008-10-14 16:58:37 +020039 ht_cap->cap &= ~IEEE80211_HT_CAP_SM_PS;
40 ht_cap->cap |= sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS;
Johannes Berg44d414d2008-09-08 17:44:28 +020041
Johannes Bergae5eb022008-10-14 16:58:37 +020042 ampdu_info = ht_cap_ie->ampdu_params_info;
43 ht_cap->ampdu_factor =
44 ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
45 ht_cap->ampdu_density =
46 (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020047
48 /* own MCS TX capabilities */
49 tx_mcs_set_cap = sband->ht_cap.mcs.tx_params;
50
Johannes Bergd9fe60d2008-10-09 12:13:49 +020051 /* can we TX with MCS rates? */
52 if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
Johannes Bergae5eb022008-10-14 16:58:37 +020053 return;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020054
55 /* Counting from 0, therefore +1 */
56 if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
57 max_tx_streams =
58 ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
59 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
60 else
61 max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
62
63 /*
64 * 802.11n D5.0 20.3.5 / 20.6 says:
65 * - indices 0 to 7 and 32 are single spatial stream
66 * - 8 to 31 are multiple spatial streams using equal modulation
67 * [8..15 for two streams, 16..23 for three and 24..31 for four]
68 * - remainder are multiple spatial streams using unequal modulation
69 */
70 for (i = 0; i < max_tx_streams; i++)
Johannes Bergae5eb022008-10-14 16:58:37 +020071 ht_cap->mcs.rx_mask[i] =
72 sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
Johannes Bergd9fe60d2008-10-09 12:13:49 +020073
74 if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
75 for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
76 i < IEEE80211_HT_MCS_MASK_LEN; i++)
Johannes Bergae5eb022008-10-14 16:58:37 +020077 ht_cap->mcs.rx_mask[i] =
Johannes Bergd9fe60d2008-10-09 12:13:49 +020078 sband->ht_cap.mcs.rx_mask[i] &
Johannes Bergae5eb022008-10-14 16:58:37 +020079 ht_cap_ie->mcs.rx_mask[i];
Johannes Bergd9fe60d2008-10-09 12:13:49 +020080
81 /* handle MCS rate 32 too */
Johannes Bergae5eb022008-10-14 16:58:37 +020082 if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
83 ht_cap->mcs.rx_mask[32/8] |= 1;
84}
Johannes Bergd9fe60d2008-10-09 12:13:49 +020085
Johannes Bergae5eb022008-10-14 16:58:37 +020086/*
87 * ieee80211_enable_ht should be called only after the operating band
88 * has been determined as ht configuration depends on the hw's
89 * HT abilities for a specific band.
90 */
91u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
92 struct ieee80211_ht_info *hti,
93 u16 ap_ht_cap_flags)
94{
95 struct ieee80211_local *local = sdata->local;
96 struct ieee80211_supported_band *sband;
Sujith81cb7622009-02-12 11:38:37 +053097 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergae5eb022008-10-14 16:58:37 +020098 struct ieee80211_bss_ht_conf ht;
Sujith81cb7622009-02-12 11:38:37 +053099 struct sta_info *sta;
Johannes Bergae5eb022008-10-14 16:58:37 +0200100 u32 changed = 0;
101 bool enable_ht = true, ht_changed;
Sujith094d05d2008-12-12 11:57:43 +0530102 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200103
104 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
105
106 memset(&ht, 0, sizeof(ht));
107
108 /* HT is not supported */
109 if (!sband->ht_cap.ht_supported)
110 enable_ht = false;
111
112 /* check that channel matches the right operating channel */
113 if (local->hw.conf.channel->center_freq !=
114 ieee80211_channel_to_frequency(hti->control_chan))
115 enable_ht = false;
116
Sujith094d05d2008-12-12 11:57:43 +0530117 if (enable_ht) {
118 channel_type = NL80211_CHAN_HT20;
119
120 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
121 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
122 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
123 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
124 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
125 channel_type = NL80211_CHAN_HT40PLUS;
126 break;
127 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
128 channel_type = NL80211_CHAN_HT40MINUS;
129 break;
130 }
131 }
132 }
133
Luis R. Rodriguez285256a2008-12-23 15:58:45 -0800134 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
Johannes Berg47979382009-01-07 10:13:27 +0100135 channel_type != local->hw.conf.channel_type;
Sujith094d05d2008-12-12 11:57:43 +0530136
137 local->oper_channel_type = channel_type;
Sujith094d05d2008-12-12 11:57:43 +0530138
Johannes Berg47979382009-01-07 10:13:27 +0100139 if (ht_changed) {
140 /* channel_type change automatically detected */
141 ieee80211_hw_config(local, 0);
Sujith81cb7622009-02-12 11:38:37 +0530142
143 rcu_read_lock();
144
145 sta = sta_info_get(local, ifmgd->bssid);
146 if (sta)
147 rate_control_rate_update(local, sband, sta,
148 IEEE80211_RC_HT_CHANGED);
149
150 rcu_read_unlock();
151
Johannes Berg47979382009-01-07 10:13:27 +0100152 }
Johannes Bergae5eb022008-10-14 16:58:37 +0200153
154 /* disable HT */
155 if (!enable_ht)
156 return 0;
Sujith094d05d2008-12-12 11:57:43 +0530157
Johannes Bergae5eb022008-10-14 16:58:37 +0200158 ht.operation_mode = le16_to_cpu(hti->operation_mode);
159
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200160 /* if bss configuration changed store the new one */
Johannes Bergae5eb022008-10-14 16:58:37 +0200161 if (memcmp(&sdata->vif.bss_conf.ht, &ht, sizeof(ht))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200162 changed |= BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200163 sdata->vif.bss_conf.ht = ht;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200164 }
165
166 return changed;
Johannes Berg44d414d2008-09-08 17:44:28 +0200167}
168
Johannes Berg2dace102009-02-10 21:25:52 +0100169void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta)
Johannes Berg44d414d2008-09-08 17:44:28 +0200170{
Johannes Bergb8695a82009-02-10 21:25:46 +0100171 int i;
Johannes Berg44d414d2008-09-08 17:44:28 +0200172
Johannes Bergb8695a82009-02-10 21:25:46 +0100173 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg849b7962009-02-10 21:25:54 +0100174 __ieee80211_stop_tx_ba_session(sta, i, WLAN_BACK_INITIATOR);
175 __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
176 WLAN_REASON_QSTA_LEAVE_QBSS);
Johannes Berg44d414d2008-09-08 17:44:28 +0200177 }
Johannes Berg44d414d2008-09-08 17:44:28 +0200178}
179
Johannes Bergb8695a82009-02-10 21:25:46 +0100180void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
181 const u8 *da, u16 tid,
182 u16 initiator, u16 reason_code)
Johannes Berg44d414d2008-09-08 17:44:28 +0200183{
184 struct ieee80211_local *local = sdata->local;
Johannes Berg44d414d2008-09-08 17:44:28 +0200185 struct sk_buff *skb;
186 struct ieee80211_mgmt *mgmt;
187 u16 params;
188
189 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
190
191 if (!skb) {
192 printk(KERN_ERR "%s: failed to allocate buffer "
193 "for delba frame\n", sdata->dev->name);
194 return;
195 }
196
197 skb_reserve(skb, local->hw.extra_tx_headroom);
198 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
199 memset(mgmt, 0, 24);
200 memcpy(mgmt->da, da, ETH_ALEN);
201 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +0100202 if (sdata->vif.type == NL80211_IFTYPE_AP ||
203 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg44d414d2008-09-08 17:44:28 +0200204 memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100205 else if (sdata->vif.type == NL80211_IFTYPE_STATION)
206 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
207
Johannes Berg44d414d2008-09-08 17:44:28 +0200208 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
209 IEEE80211_STYPE_ACTION);
210
211 skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
212
213 mgmt->u.action.category = WLAN_CATEGORY_BACK;
214 mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
215 params = (u16)(initiator << 11); /* bit 11 initiator */
216 params |= (u16)(tid << 12); /* bit 15:12 TID number */
217
218 mgmt->u.action.u.delba.params = cpu_to_le16(params);
219 mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
220
Jouni Malinen1acc97b2009-01-08 13:32:07 +0200221 ieee80211_tx_skb(sdata, skb, 1);
Johannes Berg44d414d2008-09-08 17:44:28 +0200222}
223
Johannes Bergde1ede72008-09-09 14:42:50 +0200224void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
225 struct sta_info *sta,
226 struct ieee80211_mgmt *mgmt, size_t len)
227{
228 struct ieee80211_local *local = sdata->local;
229 u16 tid, params;
230 u16 initiator;
Johannes Bergde1ede72008-09-09 14:42:50 +0200231
232 params = le16_to_cpu(mgmt->u.action.u.delba.params);
233 tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
234 initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
235
236#ifdef CONFIG_MAC80211_HT_DEBUG
237 if (net_ratelimit())
Johannes Berg0c68ae262008-10-27 15:56:10 -0700238 printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n",
239 mgmt->sa, initiator ? "initiator" : "recipient", tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200240 mgmt->u.action.u.delba.reason_code);
241#endif /* CONFIG_MAC80211_HT_DEBUG */
242
243 if (initiator == WLAN_BACK_INITIATOR)
Johannes Berg17741cd2008-09-11 00:02:02 +0200244 ieee80211_sta_stop_rx_ba_session(sdata, sta->sta.addr, tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200245 WLAN_BACK_INITIATOR, 0);
246 else { /* WLAN_BACK_RECIPIENT */
247 spin_lock_bh(&sta->lock);
248 sta->ampdu_mlme.tid_state_tx[tid] =
249 HT_AGG_STATE_OPERATIONAL;
250 spin_unlock_bh(&sta->lock);
Johannes Berg17741cd2008-09-11 00:02:02 +0200251 ieee80211_stop_tx_ba_session(&local->hw, sta->sta.addr, tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200252 WLAN_BACK_RECIPIENT);
253 }
254}