blob: a49a8a5828bfb7c23dc186d0d5cf75f94c19ec37 [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"
Johannes Berg44d414d2008-09-08 17:44:28 +020020
Johannes Bergae5eb022008-10-14 16:58:37 +020021void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_supported_band *sband,
22 struct ieee80211_ht_cap *ht_cap_ie,
Johannes Bergd9fe60d2008-10-09 12:13:49 +020023 struct ieee80211_sta_ht_cap *ht_cap)
Johannes Berg44d414d2008-09-08 17:44:28 +020024{
Johannes Bergae5eb022008-10-14 16:58:37 +020025 u8 ampdu_info, tx_mcs_set_cap;
26 int i, max_tx_streams;
Johannes Berg44d414d2008-09-08 17:44:28 +020027
Johannes Bergd9fe60d2008-10-09 12:13:49 +020028 BUG_ON(!ht_cap);
Johannes Berg44d414d2008-09-08 17:44:28 +020029
Johannes Bergd9fe60d2008-10-09 12:13:49 +020030 memset(ht_cap, 0, sizeof(*ht_cap));
Johannes Berg44d414d2008-09-08 17:44:28 +020031
Johannes Bergae5eb022008-10-14 16:58:37 +020032 if (!ht_cap_ie)
33 return;
Johannes Berg44d414d2008-09-08 17:44:28 +020034
Johannes Bergae5eb022008-10-14 16:58:37 +020035 ht_cap->ht_supported = true;
Johannes Berg44d414d2008-09-08 17:44:28 +020036
Sujithf16f33d2008-11-14 16:27:53 +053037 ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) & sband->ht_cap.cap;
Johannes Bergae5eb022008-10-14 16:58:37 +020038 ht_cap->cap &= ~IEEE80211_HT_CAP_SM_PS;
39 ht_cap->cap |= sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS;
Johannes Berg44d414d2008-09-08 17:44:28 +020040
Johannes Bergae5eb022008-10-14 16:58:37 +020041 ampdu_info = ht_cap_ie->ampdu_params_info;
42 ht_cap->ampdu_factor =
43 ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
44 ht_cap->ampdu_density =
45 (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020046
47 /* own MCS TX capabilities */
48 tx_mcs_set_cap = sband->ht_cap.mcs.tx_params;
49
Johannes Bergd9fe60d2008-10-09 12:13:49 +020050 /* can we TX with MCS rates? */
51 if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
Johannes Bergae5eb022008-10-14 16:58:37 +020052 return;
Johannes Bergd9fe60d2008-10-09 12:13:49 +020053
54 /* Counting from 0, therefore +1 */
55 if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
56 max_tx_streams =
57 ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
58 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
59 else
60 max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
61
62 /*
63 * 802.11n D5.0 20.3.5 / 20.6 says:
64 * - indices 0 to 7 and 32 are single spatial stream
65 * - 8 to 31 are multiple spatial streams using equal modulation
66 * [8..15 for two streams, 16..23 for three and 24..31 for four]
67 * - remainder are multiple spatial streams using unequal modulation
68 */
69 for (i = 0; i < max_tx_streams; i++)
Johannes Bergae5eb022008-10-14 16:58:37 +020070 ht_cap->mcs.rx_mask[i] =
71 sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
Johannes Bergd9fe60d2008-10-09 12:13:49 +020072
73 if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
74 for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
75 i < IEEE80211_HT_MCS_MASK_LEN; i++)
Johannes Bergae5eb022008-10-14 16:58:37 +020076 ht_cap->mcs.rx_mask[i] =
Johannes Bergd9fe60d2008-10-09 12:13:49 +020077 sband->ht_cap.mcs.rx_mask[i] &
Johannes Bergae5eb022008-10-14 16:58:37 +020078 ht_cap_ie->mcs.rx_mask[i];
Johannes Bergd9fe60d2008-10-09 12:13:49 +020079
80 /* handle MCS rate 32 too */
Johannes Bergae5eb022008-10-14 16:58:37 +020081 if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
82 ht_cap->mcs.rx_mask[32/8] |= 1;
83}
Johannes Bergd9fe60d2008-10-09 12:13:49 +020084
Johannes Bergae5eb022008-10-14 16:58:37 +020085/*
86 * ieee80211_enable_ht should be called only after the operating band
87 * has been determined as ht configuration depends on the hw's
88 * HT abilities for a specific band.
89 */
90u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
91 struct ieee80211_ht_info *hti,
92 u16 ap_ht_cap_flags)
93{
94 struct ieee80211_local *local = sdata->local;
95 struct ieee80211_supported_band *sband;
96 struct ieee80211_bss_ht_conf ht;
97 u32 changed = 0;
98 bool enable_ht = true, ht_changed;
Sujith094d05d2008-12-12 11:57:43 +053099 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200100
101 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
102
103 memset(&ht, 0, sizeof(ht));
104
105 /* HT is not supported */
106 if (!sband->ht_cap.ht_supported)
107 enable_ht = false;
108
109 /* check that channel matches the right operating channel */
110 if (local->hw.conf.channel->center_freq !=
111 ieee80211_channel_to_frequency(hti->control_chan))
112 enable_ht = false;
113
Sujith094d05d2008-12-12 11:57:43 +0530114 if (enable_ht) {
115 channel_type = NL80211_CHAN_HT20;
116
117 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
118 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
119 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
120 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
121 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
122 channel_type = NL80211_CHAN_HT40PLUS;
123 break;
124 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
125 channel_type = NL80211_CHAN_HT40MINUS;
126 break;
127 }
128 }
129 }
130
Luis R. Rodriguez285256a2008-12-23 15:58:45 -0800131 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
Johannes Berg47979382009-01-07 10:13:27 +0100132 channel_type != local->hw.conf.channel_type;
Sujith094d05d2008-12-12 11:57:43 +0530133
134 local->oper_channel_type = channel_type;
Sujith094d05d2008-12-12 11:57:43 +0530135
Johannes Berg47979382009-01-07 10:13:27 +0100136 if (ht_changed) {
137 /* channel_type change automatically detected */
138 ieee80211_hw_config(local, 0);
139 }
Johannes Bergae5eb022008-10-14 16:58:37 +0200140
141 /* disable HT */
142 if (!enable_ht)
143 return 0;
Sujith094d05d2008-12-12 11:57:43 +0530144
Johannes Bergae5eb022008-10-14 16:58:37 +0200145 ht.operation_mode = le16_to_cpu(hti->operation_mode);
146
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200147 /* if bss configuration changed store the new one */
Johannes Bergae5eb022008-10-14 16:58:37 +0200148 if (memcmp(&sdata->vif.bss_conf.ht, &ht, sizeof(ht))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200149 changed |= BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200150 sdata->vif.bss_conf.ht = ht;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200151 }
152
153 return changed;
Johannes Berg44d414d2008-09-08 17:44:28 +0200154}
155
Johannes Bergb8695a82009-02-10 21:25:46 +0100156void ieee80211_sta_tear_down_BA_sessions(struct ieee80211_sub_if_data *sdata, u8 *addr)
Johannes Berg44d414d2008-09-08 17:44:28 +0200157{
158 struct ieee80211_local *local = sdata->local;
Johannes Bergb8695a82009-02-10 21:25:46 +0100159 int i;
Johannes Berg44d414d2008-09-08 17:44:28 +0200160
Johannes Bergb8695a82009-02-10 21:25:46 +0100161 for (i = 0; i < STA_TID_NUM; i++) {
162 ieee80211_stop_tx_ba_session(&local->hw, addr, i,
163 WLAN_BACK_INITIATOR);
164 ieee80211_sta_stop_rx_ba_session(sdata, addr, i,
165 WLAN_BACK_RECIPIENT,
166 WLAN_REASON_QSTA_LEAVE_QBSS);
Johannes Berg44d414d2008-09-08 17:44:28 +0200167 }
Johannes Berg44d414d2008-09-08 17:44:28 +0200168}
169
Johannes Bergb8695a82009-02-10 21:25:46 +0100170void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
171 const u8 *da, u16 tid,
172 u16 initiator, u16 reason_code)
Johannes Berg44d414d2008-09-08 17:44:28 +0200173{
174 struct ieee80211_local *local = sdata->local;
175 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
176 struct sk_buff *skb;
177 struct ieee80211_mgmt *mgmt;
178 u16 params;
179
180 skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
181
182 if (!skb) {
183 printk(KERN_ERR "%s: failed to allocate buffer "
184 "for delba frame\n", sdata->dev->name);
185 return;
186 }
187
188 skb_reserve(skb, local->hw.extra_tx_headroom);
189 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
190 memset(mgmt, 0, 24);
191 memcpy(mgmt->da, da, ETH_ALEN);
192 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg8abd3f92009-02-10 21:25:47 +0100193 if (sdata->vif.type == NL80211_IFTYPE_AP ||
194 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg44d414d2008-09-08 17:44:28 +0200195 memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN);
196 else
197 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
198 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
199 IEEE80211_STYPE_ACTION);
200
201 skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
202
203 mgmt->u.action.category = WLAN_CATEGORY_BACK;
204 mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
205 params = (u16)(initiator << 11); /* bit 11 initiator */
206 params |= (u16)(tid << 12); /* bit 15:12 TID number */
207
208 mgmt->u.action.u.delba.params = cpu_to_le16(params);
209 mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
210
Jouni Malinen1acc97b2009-01-08 13:32:07 +0200211 ieee80211_tx_skb(sdata, skb, 1);
Johannes Berg44d414d2008-09-08 17:44:28 +0200212}
213
Johannes Bergde1ede72008-09-09 14:42:50 +0200214void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
215 struct sta_info *sta,
216 struct ieee80211_mgmt *mgmt, size_t len)
217{
218 struct ieee80211_local *local = sdata->local;
219 u16 tid, params;
220 u16 initiator;
Johannes Bergde1ede72008-09-09 14:42:50 +0200221
222 params = le16_to_cpu(mgmt->u.action.u.delba.params);
223 tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
224 initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
225
226#ifdef CONFIG_MAC80211_HT_DEBUG
227 if (net_ratelimit())
Johannes Berg0c68ae262008-10-27 15:56:10 -0700228 printk(KERN_DEBUG "delba from %pM (%s) tid %d reason code %d\n",
229 mgmt->sa, initiator ? "initiator" : "recipient", tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200230 mgmt->u.action.u.delba.reason_code);
231#endif /* CONFIG_MAC80211_HT_DEBUG */
232
233 if (initiator == WLAN_BACK_INITIATOR)
Johannes Berg17741cd2008-09-11 00:02:02 +0200234 ieee80211_sta_stop_rx_ba_session(sdata, sta->sta.addr, tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200235 WLAN_BACK_INITIATOR, 0);
236 else { /* WLAN_BACK_RECIPIENT */
237 spin_lock_bh(&sta->lock);
238 sta->ampdu_mlme.tid_state_tx[tid] =
239 HT_AGG_STATE_OPERATIONAL;
240 spin_unlock_bh(&sta->lock);
Johannes Berg17741cd2008-09-11 00:02:02 +0200241 ieee80211_stop_tx_ba_session(&local->hw, sta->sta.addr, tid,
Johannes Bergde1ede72008-09-09 14:42:50 +0200242 WLAN_BACK_RECIPIENT);
243 }
244}