blob: 18e690087283719ded3642fb6d13409904befd46 [file] [log] [blame]
Johannes Berg2295c662010-10-23 09:15:41 -07001/******************************************************************************
2 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07003 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
Johannes Berg2295c662010-10-23 09:15:41 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#include "iwl-dev.h"
28#include "iwl-agn.h"
29#include "iwl-sta.h"
30#include "iwl-core.h"
31#include "iwl-agn-calib.h"
Garen Tamrazian68b99312011-03-30 02:29:32 -070032#include "iwl-helpers.h"
Johannes Berg2295c662010-10-23 09:15:41 -070033
34static int iwlagn_disable_bss(struct iwl_priv *priv,
35 struct iwl_rxon_context *ctx,
36 struct iwl_rxon_cmd *send)
37{
38 __le32 old_filter = send->filter_flags;
39 int ret;
40
41 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
42 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, sizeof(*send), send);
43
44 send->filter_flags = old_filter;
45
46 if (ret)
47 IWL_ERR(priv, "Error clearing ASSOC_MSK on BSS (%d)\n", ret);
48
49 return ret;
50}
51
52static int iwlagn_disable_pan(struct iwl_priv *priv,
53 struct iwl_rxon_context *ctx,
54 struct iwl_rxon_cmd *send)
55{
Johannes Berg311dce72011-01-04 16:22:01 -080056 struct iwl_notification_wait disable_wait;
Johannes Berg2295c662010-10-23 09:15:41 -070057 __le32 old_filter = send->filter_flags;
58 u8 old_dev_type = send->dev_type;
59 int ret;
60
Johannes Berg09f18af2011-04-13 03:14:47 -070061 iwlagn_init_notification_wait(priv, &disable_wait,
62 REPLY_WIPAN_DEACTIVATION_COMPLETE,
63 NULL, NULL);
Johannes Berg311dce72011-01-04 16:22:01 -080064
Johannes Berg2295c662010-10-23 09:15:41 -070065 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
66 send->dev_type = RXON_DEV_TYPE_P2P;
67 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, sizeof(*send), send);
68
69 send->filter_flags = old_filter;
70 send->dev_type = old_dev_type;
71
Johannes Berg311dce72011-01-04 16:22:01 -080072 if (ret) {
Johannes Berg2295c662010-10-23 09:15:41 -070073 IWL_ERR(priv, "Error disabling PAN (%d)\n", ret);
Johannes Berg311dce72011-01-04 16:22:01 -080074 iwlagn_remove_notification(priv, &disable_wait);
75 } else {
Johannes Berga8674a12011-04-13 03:14:48 -070076 ret = iwlagn_wait_notification(priv, &disable_wait, HZ);
77 if (ret)
Johannes Berg311dce72011-01-04 16:22:01 -080078 IWL_ERR(priv, "Timed out waiting for PAN disable\n");
79 }
Johannes Berg2295c662010-10-23 09:15:41 -070080
81 return ret;
82}
83
Johannes Berg2b9253d2011-05-27 08:40:26 -070084static int iwlagn_disconn_pan(struct iwl_priv *priv,
85 struct iwl_rxon_context *ctx,
86 struct iwl_rxon_cmd *send)
87{
88 __le32 old_filter = send->filter_flags;
89 int ret;
90
91 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
92 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd, sizeof(*send), send);
93
94 send->filter_flags = old_filter;
95
96 return ret;
97}
98
Shanyu Zhaof4115d42010-11-10 18:25:58 -080099static void iwlagn_update_qos(struct iwl_priv *priv,
100 struct iwl_rxon_context *ctx)
101{
102 int ret;
103
104 if (!ctx->is_active)
105 return;
106
107 ctx->qos_data.def_qos_parm.qos_flags = 0;
108
109 if (ctx->qos_data.qos_active)
110 ctx->qos_data.def_qos_parm.qos_flags |=
111 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
112
113 if (ctx->ht.enabled)
114 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
115
116 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
117 ctx->qos_data.qos_active,
118 ctx->qos_data.def_qos_parm.qos_flags);
119
120 ret = iwl_send_cmd_pdu(priv, ctx->qos_cmd,
121 sizeof(struct iwl_qosparam_cmd),
122 &ctx->qos_data.def_qos_parm);
123 if (ret)
124 IWL_ERR(priv, "Failed to update QoS\n");
125}
126
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700127static int iwlagn_update_beacon(struct iwl_priv *priv,
128 struct ieee80211_vif *vif)
129{
130 lockdep_assert_held(&priv->mutex);
131
132 dev_kfree_skb(priv->beacon_skb);
133 priv->beacon_skb = ieee80211_beacon_get(priv->hw, vif);
134 if (!priv->beacon_skb)
135 return -ENOMEM;
136 return iwlagn_send_beacon_cmd(priv);
137}
138
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700139static int iwlagn_send_rxon_assoc(struct iwl_priv *priv,
140 struct iwl_rxon_context *ctx)
141{
142 int ret = 0;
Wey-Yi Guy89e746b2011-04-19 16:52:58 -0700143 struct iwl_rxon_assoc_cmd rxon_assoc;
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700144 const struct iwl_rxon_cmd *rxon1 = &ctx->staging;
145 const struct iwl_rxon_cmd *rxon2 = &ctx->active;
146
147 if ((rxon1->flags == rxon2->flags) &&
148 (rxon1->filter_flags == rxon2->filter_flags) &&
149 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
150 (rxon1->ofdm_ht_single_stream_basic_rates ==
151 rxon2->ofdm_ht_single_stream_basic_rates) &&
152 (rxon1->ofdm_ht_dual_stream_basic_rates ==
153 rxon2->ofdm_ht_dual_stream_basic_rates) &&
154 (rxon1->ofdm_ht_triple_stream_basic_rates ==
155 rxon2->ofdm_ht_triple_stream_basic_rates) &&
156 (rxon1->acquisition_data == rxon2->acquisition_data) &&
157 (rxon1->rx_chain == rxon2->rx_chain) &&
158 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
159 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
160 return 0;
161 }
162
163 rxon_assoc.flags = ctx->staging.flags;
164 rxon_assoc.filter_flags = ctx->staging.filter_flags;
165 rxon_assoc.ofdm_basic_rates = ctx->staging.ofdm_basic_rates;
166 rxon_assoc.cck_basic_rates = ctx->staging.cck_basic_rates;
167 rxon_assoc.reserved1 = 0;
168 rxon_assoc.reserved2 = 0;
169 rxon_assoc.reserved3 = 0;
170 rxon_assoc.ofdm_ht_single_stream_basic_rates =
171 ctx->staging.ofdm_ht_single_stream_basic_rates;
172 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
173 ctx->staging.ofdm_ht_dual_stream_basic_rates;
174 rxon_assoc.rx_chain_select_flags = ctx->staging.rx_chain;
175 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
176 ctx->staging.ofdm_ht_triple_stream_basic_rates;
177 rxon_assoc.acquisition_data = ctx->staging.acquisition_data;
178
179 ret = iwl_send_cmd_pdu_async(priv, ctx->rxon_assoc_cmd,
180 sizeof(rxon_assoc), &rxon_assoc, NULL);
181 if (ret)
182 return ret;
183
184 return ret;
185}
186
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700187static int iwlagn_rxon_disconn(struct iwl_priv *priv,
188 struct iwl_rxon_context *ctx)
189{
190 int ret;
191 struct iwl_rxon_cmd *active = (void *)&ctx->active;
192
Johannes Berg2b9253d2011-05-27 08:40:26 -0700193 if (ctx->ctxid == IWL_RXON_CTX_BSS) {
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700194 ret = iwlagn_disable_bss(priv, ctx, &ctx->staging);
Johannes Berg2b9253d2011-05-27 08:40:26 -0700195 } else {
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700196 ret = iwlagn_disable_pan(priv, ctx, &ctx->staging);
Johannes Berg2b9253d2011-05-27 08:40:26 -0700197 if (ret)
198 return ret;
199 if (ctx->vif) {
200 ret = iwl_send_rxon_timing(priv, ctx);
201 if (ret) {
202 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
203 return ret;
204 }
205 ret = iwlagn_disconn_pan(priv, ctx, &ctx->staging);
206 }
207 }
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700208 if (ret)
209 return ret;
210
211 /*
212 * Un-assoc RXON clears the station table and WEP
213 * keys, so we have to restore those afterwards.
214 */
215 iwl_clear_ucode_stations(priv, ctx);
216 iwl_restore_stations(priv, ctx);
217 ret = iwl_restore_default_wep_keys(priv, ctx);
218 if (ret) {
219 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
220 return ret;
221 }
222
223 memcpy(active, &ctx->staging, sizeof(*active));
224 return 0;
225}
226
227static int iwlagn_rxon_connect(struct iwl_priv *priv,
228 struct iwl_rxon_context *ctx)
229{
230 int ret;
231 struct iwl_rxon_cmd *active = (void *)&ctx->active;
232
233 /* RXON timing must be before associated RXON */
Johannes Berg2b9253d2011-05-27 08:40:26 -0700234 if (ctx->ctxid == IWL_RXON_CTX_BSS) {
235 ret = iwl_send_rxon_timing(priv, ctx);
236 if (ret) {
237 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
238 return ret;
239 }
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700240 }
241 /* QoS info may be cleared by previous un-assoc RXON */
242 iwlagn_update_qos(priv, ctx);
243
244 /*
245 * We'll run into this code path when beaconing is
246 * enabled, but then we also need to send the beacon
247 * to the device.
248 */
249 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_AP)) {
250 ret = iwlagn_update_beacon(priv, ctx->vif);
251 if (ret) {
252 IWL_ERR(priv,
253 "Error sending required beacon (%d)!\n",
254 ret);
255 return ret;
256 }
257 }
258
259 priv->start_calib = 0;
260 /*
261 * Apply the new configuration.
262 *
263 * Associated RXON doesn't clear the station table in uCode,
264 * so we don't need to restore stations etc. after this.
265 */
266 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
267 sizeof(struct iwl_rxon_cmd), &ctx->staging);
268 if (ret) {
269 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
270 return ret;
271 }
272 memcpy(active, &ctx->staging, sizeof(*active));
273
274 iwl_reprogram_ap_sta(priv, ctx);
275
276 /* IBSS beacon needs to be sent after setting assoc */
277 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_ADHOC))
278 if (iwlagn_update_beacon(priv, ctx->vif))
279 IWL_ERR(priv, "Error sending IBSS beacon\n");
280 iwl_init_sensitivity(priv);
281
282 /*
283 * If we issue a new RXON command which required a tune then
284 * we must send a new TXPOWER command or we won't be able to
285 * Tx any frames.
286 *
287 * It's expected we set power here if channel is changing.
288 */
289 ret = iwl_set_tx_power(priv, priv->tx_power_next, true);
290 if (ret) {
291 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
292 return ret;
293 }
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700294
295 if ((ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION) &&
296 priv->cfg->ht_params->smps_mode)
297 ieee80211_request_smps(ctx->vif,
298 priv->cfg->ht_params->smps_mode);
299
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700300 return 0;
301}
302
Johannes Berg2295c662010-10-23 09:15:41 -0700303/**
304 * iwlagn_commit_rxon - commit staging_rxon to hardware
305 *
306 * The RXON command in staging_rxon is committed to the hardware and
307 * the active_rxon structure is updated with the new data. This
308 * function correctly transitions out of the RXON_ASSOC_MSK state if
309 * a HW tune is required based on the RXON structure changes.
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700310 *
311 * The connect/disconnect flow should be as the following:
312 *
313 * 1. make sure send RXON command with association bit unset if not connect
314 * this should include the channel and the band for the candidate
315 * to be connected to
316 * 2. Add Station before RXON association with the AP
317 * 3. RXON_timing has to send before RXON for connection
318 * 4. full RXON command - associated bit set
319 * 5. use RXON_ASSOC command to update any flags changes
Johannes Berg2295c662010-10-23 09:15:41 -0700320 */
321int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
322{
323 /* cast away the const for active_rxon in this function */
324 struct iwl_rxon_cmd *active = (void *)&ctx->active;
Johannes Berg2295c662010-10-23 09:15:41 -0700325 bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
326 int ret;
327
328 lockdep_assert_held(&priv->mutex);
329
Wey-Yi Guyadb90a02010-11-26 11:09:42 -0800330 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
331 return -EINVAL;
332
Johannes Berg2295c662010-10-23 09:15:41 -0700333 if (!iwl_is_alive(priv))
334 return -EBUSY;
335
336 /* This function hardcodes a bunch of dual-mode assumptions */
337 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
338
339 if (!ctx->is_active)
340 return 0;
341
342 /* always get timestamp with Rx frame */
343 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
344
Johannes Berg9b9190d2011-01-06 08:07:10 -0800345 if (ctx->ctxid == IWL_RXON_CTX_PAN && priv->_agn.hw_roc_channel) {
346 struct ieee80211_channel *chan = priv->_agn.hw_roc_channel;
347
348 iwl_set_rxon_channel(priv, chan, ctx);
349 iwl_set_flags_for_band(priv, ctx, chan->band, NULL);
350 ctx->staging.filter_flags |=
351 RXON_FILTER_ASSOC_MSK |
352 RXON_FILTER_PROMISC_MSK |
353 RXON_FILTER_CTL2HOST_MSK;
354 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
355 new_assoc = true;
356
357 if (memcmp(&ctx->staging, &ctx->active,
358 sizeof(ctx->staging)) == 0)
359 return 0;
360 }
361
Johannes Berg2295c662010-10-23 09:15:41 -0700362 if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) ||
363 !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK))
364 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
365 else
366 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
367
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700368 iwl_print_rx_config_cmd(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700369 ret = iwl_check_rxon_cmd(priv, ctx);
370 if (ret) {
371 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
372 return -EINVAL;
373 }
374
375 /*
376 * receive commit_rxon request
377 * abort any previous channel switch if still in process
378 */
379 if (priv->switch_rxon.switch_in_progress &&
380 (priv->switch_rxon.channel != ctx->staging.channel)) {
381 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
382 le16_to_cpu(priv->switch_rxon.channel));
383 iwl_chswitch_done(priv, false);
384 }
385
386 /*
387 * If we don't need to send a full RXON, we can use
388 * iwl_rxon_assoc_cmd which is used to reconfigure filter
389 * and other flags for the current radio configuration.
390 */
391 if (!iwl_full_rxon_required(priv, ctx)) {
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700392 ret = iwlagn_send_rxon_assoc(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700393 if (ret) {
394 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
395 return ret;
396 }
397
398 memcpy(active, &ctx->staging, sizeof(*active));
Wey-Yi Guy891db882011-05-27 08:40:24 -0700399 /*
400 * We do not commit tx power settings while channel changing,
401 * do it now if after settings changed.
402 */
403 iwl_set_tx_power(priv, priv->tx_power_next, false);
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700404
405 /* make sure we are in the right PS state */
406 iwl_power_update_mode(priv, true);
407
Johannes Berg2295c662010-10-23 09:15:41 -0700408 return 0;
409 }
410
Don Fry9d143e92011-04-20 15:23:57 -0700411 iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto);
Johannes Berg2295c662010-10-23 09:15:41 -0700412
413 IWL_DEBUG_INFO(priv,
414 "Going to commit RXON\n"
415 " * with%s RXON_FILTER_ASSOC_MSK\n"
416 " * channel = %d\n"
417 " * bssid = %pM\n",
418 (new_assoc ? "" : "out"),
419 le16_to_cpu(ctx->staging.channel),
420 ctx->staging.bssid_addr);
421
422 /*
Johannes Berg52d980c2010-11-10 09:56:45 -0800423 * Always clear associated first, but with the correct config.
424 * This is required as for example station addition for the
425 * AP station must be done after the BSSID is set to correctly
426 * set up filters in the device.
Johannes Berg2295c662010-10-23 09:15:41 -0700427 */
Wey-Yi Guy3083d032011-05-06 17:06:44 -0700428 ret = iwlagn_rxon_disconn(priv, ctx);
429 if (ret)
430 return ret;
Johannes Berg2295c662010-10-23 09:15:41 -0700431
Johannes Berg2b9253d2011-05-27 08:40:26 -0700432 if (priv->cfg->ops->hcmd->set_pan_params) {
433 ret = priv->cfg->ops->hcmd->set_pan_params(priv);
434 if (ret)
435 return ret;
436 }
437
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700438 if (new_assoc)
439 return iwlagn_rxon_connect(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700440
441 return 0;
442}
443
444int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
445{
446 struct iwl_priv *priv = hw->priv;
447 struct iwl_rxon_context *ctx;
448 struct ieee80211_conf *conf = &hw->conf;
449 struct ieee80211_channel *channel = conf->channel;
450 const struct iwl_channel_info *ch_info;
451 int ret = 0;
452
453 IWL_DEBUG_MAC80211(priv, "changed %#x", changed);
454
455 mutex_lock(&priv->mutex);
456
457 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
458 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
459 goto out;
460 }
461
462 if (!iwl_is_ready(priv)) {
463 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
464 goto out;
465 }
466
467 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
468 IEEE80211_CONF_CHANGE_CHANNEL)) {
469 /* mac80211 uses static for non-HT which is what we want */
470 priv->current_ht_config.smps = conf->smps_mode;
471
472 /*
473 * Recalculate chain counts.
474 *
475 * If monitor mode is enabled then mac80211 will
476 * set up the SM PS mode to OFF if an HT channel is
477 * configured.
478 */
479 if (priv->cfg->ops->hcmd->set_rxon_chain)
480 for_each_context(priv, ctx)
481 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
482 }
483
484 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
485 unsigned long flags;
486
487 ch_info = iwl_get_channel_info(priv, channel->band,
488 channel->hw_value);
489 if (!is_channel_valid(ch_info)) {
490 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
491 ret = -EINVAL;
492 goto out;
493 }
494
495 spin_lock_irqsave(&priv->lock, flags);
496
497 for_each_context(priv, ctx) {
498 /* Configure HT40 channels */
Daniel Halperin7caa2312011-04-06 12:47:25 -0700499 if (ctx->ht.enabled != conf_is_ht(conf))
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800500 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800501
Johannes Berg2295c662010-10-23 09:15:41 -0700502 if (ctx->ht.enabled) {
503 if (conf_is_ht40_minus(conf)) {
504 ctx->ht.extension_chan_offset =
505 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
506 ctx->ht.is_40mhz = true;
507 } else if (conf_is_ht40_plus(conf)) {
508 ctx->ht.extension_chan_offset =
509 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
510 ctx->ht.is_40mhz = true;
511 } else {
512 ctx->ht.extension_chan_offset =
513 IEEE80211_HT_PARAM_CHA_SEC_NONE;
514 ctx->ht.is_40mhz = false;
515 }
516 } else
517 ctx->ht.is_40mhz = false;
518
519 /*
520 * Default to no protection. Protection mode will
521 * later be set from BSS config in iwl_ht_conf
522 */
523 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
524
525 /* if we are switching from ht to 2.4 clear flags
526 * from any ht related info since 2.4 does not
527 * support ht */
528 if (le16_to_cpu(ctx->staging.channel) !=
529 channel->hw_value)
530 ctx->staging.flags = 0;
531
532 iwl_set_rxon_channel(priv, channel, ctx);
533 iwl_set_rxon_ht(priv, &priv->current_ht_config);
534
535 iwl_set_flags_for_band(priv, ctx, channel->band,
536 ctx->vif);
537 }
538
539 spin_unlock_irqrestore(&priv->lock, flags);
540
541 iwl_update_bcast_stations(priv);
542
543 /*
544 * The list of supported rates and rate mask can be different
545 * for each band; since the band may have changed, reset
546 * the rate mask to what mac80211 lists.
547 */
548 iwl_set_rate(priv);
549 }
550
551 if (changed & (IEEE80211_CONF_CHANGE_PS |
552 IEEE80211_CONF_CHANGE_IDLE)) {
553 ret = iwl_power_update_mode(priv, false);
554 if (ret)
555 IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
556 }
557
558 if (changed & IEEE80211_CONF_CHANGE_POWER) {
559 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
560 priv->tx_power_user_lmt, conf->power_level);
561
562 iwl_set_tx_power(priv, conf->power_level, false);
563 }
564
565 for_each_context(priv, ctx) {
566 if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
567 continue;
568 iwlagn_commit_rxon(priv, ctx);
569 }
570 out:
571 mutex_unlock(&priv->mutex);
572 return ret;
573}
574
Johannes Berg2295c662010-10-23 09:15:41 -0700575static void iwlagn_check_needed_chains(struct iwl_priv *priv,
576 struct iwl_rxon_context *ctx,
577 struct ieee80211_bss_conf *bss_conf)
578{
579 struct ieee80211_vif *vif = ctx->vif;
580 struct iwl_rxon_context *tmp;
581 struct ieee80211_sta *sta;
582 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg850bedc2011-02-25 12:24:11 +0100583 struct ieee80211_sta_ht_cap *ht_cap;
Johannes Berg2295c662010-10-23 09:15:41 -0700584 bool need_multiple;
585
586 lockdep_assert_held(&priv->mutex);
587
588 switch (vif->type) {
589 case NL80211_IFTYPE_STATION:
590 rcu_read_lock();
591 sta = ieee80211_find_sta(vif, bss_conf->bssid);
Johannes Berg850bedc2011-02-25 12:24:11 +0100592 if (!sta) {
Johannes Berg2295c662010-10-23 09:15:41 -0700593 /*
594 * If at all, this can only happen through a race
595 * when the AP disconnects us while we're still
596 * setting up the connection, in that case mac80211
597 * will soon tell us about that.
598 */
599 need_multiple = false;
Johannes Berg850bedc2011-02-25 12:24:11 +0100600 rcu_read_unlock();
601 break;
Johannes Berg2295c662010-10-23 09:15:41 -0700602 }
Johannes Berg850bedc2011-02-25 12:24:11 +0100603
604 ht_cap = &sta->ht_cap;
605
606 need_multiple = true;
607
608 /*
609 * If the peer advertises no support for receiving 2 and 3
610 * stream MCS rates, it can't be transmitting them either.
611 */
612 if (ht_cap->mcs.rx_mask[1] == 0 &&
613 ht_cap->mcs.rx_mask[2] == 0) {
614 need_multiple = false;
615 } else if (!(ht_cap->mcs.tx_params &
616 IEEE80211_HT_MCS_TX_DEFINED)) {
617 /* If it can't TX MCS at all ... */
618 need_multiple = false;
619 } else if (ht_cap->mcs.tx_params &
620 IEEE80211_HT_MCS_TX_RX_DIFF) {
621 int maxstreams;
622
623 /*
624 * But if it can receive them, it might still not
625 * be able to transmit them, which is what we need
626 * to check here -- so check the number of streams
627 * it advertises for TX (if different from RX).
628 */
629
630 maxstreams = (ht_cap->mcs.tx_params &
631 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK);
632 maxstreams >>=
633 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
634 maxstreams += 1;
635
636 if (maxstreams <= 1)
637 need_multiple = false;
638 }
639
Johannes Berg2295c662010-10-23 09:15:41 -0700640 rcu_read_unlock();
641 break;
642 case NL80211_IFTYPE_ADHOC:
643 /* currently */
644 need_multiple = false;
645 break;
646 default:
647 /* only AP really */
648 need_multiple = true;
649 break;
650 }
651
652 ctx->ht_need_multiple_chains = need_multiple;
653
654 if (!need_multiple) {
655 /* check all contexts */
656 for_each_context(priv, tmp) {
657 if (!tmp->vif)
658 continue;
659 if (tmp->ht_need_multiple_chains) {
660 need_multiple = true;
661 break;
662 }
663 }
664 }
665
666 ht_conf->single_chain_sufficient = !need_multiple;
667}
668
669void iwlagn_bss_info_changed(struct ieee80211_hw *hw,
670 struct ieee80211_vif *vif,
671 struct ieee80211_bss_conf *bss_conf,
672 u32 changes)
673{
674 struct iwl_priv *priv = hw->priv;
675 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
676 int ret;
677 bool force = false;
678
679 mutex_lock(&priv->mutex);
680
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800681 if (unlikely(!iwl_is_ready(priv))) {
Wey-Yi Guy14a085e2010-12-14 07:38:58 -0800682 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
683 mutex_unlock(&priv->mutex);
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800684 return;
685 }
686
687 if (unlikely(!ctx->vif)) {
688 IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n");
Johannes Berg893654d2010-11-10 18:25:47 -0800689 mutex_unlock(&priv->mutex);
690 return;
691 }
692
Johannes Berg2295c662010-10-23 09:15:41 -0700693 if (changes & BSS_CHANGED_BEACON_INT)
694 force = true;
695
696 if (changes & BSS_CHANGED_QOS) {
697 ctx->qos_data.qos_active = bss_conf->qos;
698 iwlagn_update_qos(priv, ctx);
699 }
700
701 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
702 if (vif->bss_conf.use_short_preamble)
703 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
704 else
705 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
706
707 if (changes & BSS_CHANGED_ASSOC) {
708 if (bss_conf->assoc) {
Johannes Berg2295c662010-10-23 09:15:41 -0700709 priv->timestamp = bss_conf->timestamp;
710 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
711 } else {
Garen Tamrazian68b99312011-03-30 02:29:32 -0700712 /*
713 * If we disassociate while there are pending
714 * frames, just wake up the queues and let the
715 * frames "escape" ... This shouldn't really
716 * be happening to start with, but we should
717 * not get stuck in this case either since it
718 * can happen if userspace gets confused.
719 */
720 if (ctx->last_tx_rejected) {
721 ctx->last_tx_rejected = false;
722 iwl_wake_any_queue(priv, ctx);
723 }
Johannes Berg2295c662010-10-23 09:15:41 -0700724 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Berg2295c662010-10-23 09:15:41 -0700725 }
726 }
727
728 if (ctx->ht.enabled) {
729 ctx->ht.protection = bss_conf->ht_operation_mode &
730 IEEE80211_HT_OP_MODE_PROTECTION;
731 ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode &
732 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
733 iwlagn_check_needed_chains(priv, ctx, bss_conf);
Johannes Bergb2769b82010-11-10 09:56:47 -0800734 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Johannes Berg2295c662010-10-23 09:15:41 -0700735 }
736
737 if (priv->cfg->ops->hcmd->set_rxon_chain)
738 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
739
740 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
741 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
742 else
743 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
744
745 if (bss_conf->use_cts_prot)
746 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
747 else
748 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
749
750 memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN);
751
752 if (vif->type == NL80211_IFTYPE_AP ||
753 vif->type == NL80211_IFTYPE_ADHOC) {
754 if (vif->bss_conf.enable_beacon) {
755 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
756 priv->beacon_ctx = ctx;
757 } else {
758 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
759 priv->beacon_ctx = NULL;
760 }
761 }
762
763 if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
764 iwlagn_commit_rxon(priv, ctx);
765
Johannes Berg8da8e622010-11-10 09:56:46 -0800766 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) {
767 /*
768 * The chain noise calibration will enable PM upon
769 * completion. If calibration has already been run
770 * then we need to enable power management here.
771 */
772 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
773 iwl_power_update_mode(priv, false);
774
775 /* Enable RX differential gain and sensitivity calibrations */
776 iwl_chain_noise_reset(priv);
777 priv->start_calib = 1;
778 }
779
Johannes Berg2295c662010-10-23 09:15:41 -0700780 if (changes & BSS_CHANGED_IBSS) {
781 ret = iwlagn_manage_ibss_station(priv, vif,
782 bss_conf->ibss_joined);
783 if (ret)
784 IWL_ERR(priv, "failed to %s IBSS station %pM\n",
785 bss_conf->ibss_joined ? "add" : "remove",
786 bss_conf->bssid);
787 }
788
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700789 if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC &&
790 priv->beacon_ctx) {
791 if (iwlagn_update_beacon(priv, vif))
792 IWL_ERR(priv, "Error sending IBSS beacon\n");
793 }
794
Johannes Berg2295c662010-10-23 09:15:41 -0700795 mutex_unlock(&priv->mutex);
796}
Johannes Bergae79d232010-11-10 09:56:38 -0800797
798void iwlagn_post_scan(struct iwl_priv *priv)
799{
800 struct iwl_rxon_context *ctx;
801
802 /*
Wey-Yi Guyc2b821d2011-06-03 07:54:14 -0700803 * We do not commit power settings while scan is pending,
804 * do it now if the settings changed.
805 */
806 iwl_power_set_mode(priv, &priv->power_data.sleep_cmd_next, false);
807 iwl_set_tx_power(priv, priv->tx_power_next, false);
808
809 /*
Johannes Bergae79d232010-11-10 09:56:38 -0800810 * Since setting the RXON may have been deferred while
811 * performing the scan, fire one off if needed
812 */
813 for_each_context(priv, ctx)
814 if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
815 iwlagn_commit_rxon(priv, ctx);
816
817 if (priv->cfg->ops->hcmd->set_pan_params)
818 priv->cfg->ops->hcmd->set_pan_params(priv);
819}