blob: 272bcdfe53a4e45f3bff87a126efa57bd92d08d0 [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
Shanyu Zhaof4115d42010-11-10 18:25:58 -080084static void iwlagn_update_qos(struct iwl_priv *priv,
85 struct iwl_rxon_context *ctx)
86{
87 int ret;
88
89 if (!ctx->is_active)
90 return;
91
92 ctx->qos_data.def_qos_parm.qos_flags = 0;
93
94 if (ctx->qos_data.qos_active)
95 ctx->qos_data.def_qos_parm.qos_flags |=
96 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
97
98 if (ctx->ht.enabled)
99 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
100
101 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
102 ctx->qos_data.qos_active,
103 ctx->qos_data.def_qos_parm.qos_flags);
104
105 ret = iwl_send_cmd_pdu(priv, ctx->qos_cmd,
106 sizeof(struct iwl_qosparam_cmd),
107 &ctx->qos_data.def_qos_parm);
108 if (ret)
109 IWL_ERR(priv, "Failed to update QoS\n");
110}
111
Johannes Bergbd50a8a2010-10-23 09:15:42 -0700112static int iwlagn_update_beacon(struct iwl_priv *priv,
113 struct ieee80211_vif *vif)
114{
115 lockdep_assert_held(&priv->mutex);
116
117 dev_kfree_skb(priv->beacon_skb);
118 priv->beacon_skb = ieee80211_beacon_get(priv->hw, vif);
119 if (!priv->beacon_skb)
120 return -ENOMEM;
121 return iwlagn_send_beacon_cmd(priv);
122}
123
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700124static int iwlagn_send_rxon_assoc(struct iwl_priv *priv,
125 struct iwl_rxon_context *ctx)
126{
127 int ret = 0;
Wey-Yi Guy89e746b2011-04-19 16:52:58 -0700128 struct iwl_rxon_assoc_cmd rxon_assoc;
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700129 const struct iwl_rxon_cmd *rxon1 = &ctx->staging;
130 const struct iwl_rxon_cmd *rxon2 = &ctx->active;
131
132 if ((rxon1->flags == rxon2->flags) &&
133 (rxon1->filter_flags == rxon2->filter_flags) &&
134 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
135 (rxon1->ofdm_ht_single_stream_basic_rates ==
136 rxon2->ofdm_ht_single_stream_basic_rates) &&
137 (rxon1->ofdm_ht_dual_stream_basic_rates ==
138 rxon2->ofdm_ht_dual_stream_basic_rates) &&
139 (rxon1->ofdm_ht_triple_stream_basic_rates ==
140 rxon2->ofdm_ht_triple_stream_basic_rates) &&
141 (rxon1->acquisition_data == rxon2->acquisition_data) &&
142 (rxon1->rx_chain == rxon2->rx_chain) &&
143 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
144 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
145 return 0;
146 }
147
148 rxon_assoc.flags = ctx->staging.flags;
149 rxon_assoc.filter_flags = ctx->staging.filter_flags;
150 rxon_assoc.ofdm_basic_rates = ctx->staging.ofdm_basic_rates;
151 rxon_assoc.cck_basic_rates = ctx->staging.cck_basic_rates;
152 rxon_assoc.reserved1 = 0;
153 rxon_assoc.reserved2 = 0;
154 rxon_assoc.reserved3 = 0;
155 rxon_assoc.ofdm_ht_single_stream_basic_rates =
156 ctx->staging.ofdm_ht_single_stream_basic_rates;
157 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
158 ctx->staging.ofdm_ht_dual_stream_basic_rates;
159 rxon_assoc.rx_chain_select_flags = ctx->staging.rx_chain;
160 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
161 ctx->staging.ofdm_ht_triple_stream_basic_rates;
162 rxon_assoc.acquisition_data = ctx->staging.acquisition_data;
163
164 ret = iwl_send_cmd_pdu_async(priv, ctx->rxon_assoc_cmd,
165 sizeof(rxon_assoc), &rxon_assoc, NULL);
166 if (ret)
167 return ret;
168
169 return ret;
170}
171
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700172static int iwlagn_rxon_disconn(struct iwl_priv *priv,
173 struct iwl_rxon_context *ctx)
174{
175 int ret;
176 struct iwl_rxon_cmd *active = (void *)&ctx->active;
177
178 if (ctx->ctxid == IWL_RXON_CTX_BSS)
179 ret = iwlagn_disable_bss(priv, ctx, &ctx->staging);
180 else
181 ret = iwlagn_disable_pan(priv, ctx, &ctx->staging);
182 if (ret)
183 return ret;
184
185 /*
186 * Un-assoc RXON clears the station table and WEP
187 * keys, so we have to restore those afterwards.
188 */
189 iwl_clear_ucode_stations(priv, ctx);
190 iwl_restore_stations(priv, ctx);
191 ret = iwl_restore_default_wep_keys(priv, ctx);
192 if (ret) {
193 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
194 return ret;
195 }
196
197 memcpy(active, &ctx->staging, sizeof(*active));
198 return 0;
199}
200
201static int iwlagn_rxon_connect(struct iwl_priv *priv,
202 struct iwl_rxon_context *ctx)
203{
204 int ret;
205 struct iwl_rxon_cmd *active = (void *)&ctx->active;
206
207 /* RXON timing must be before associated RXON */
208 ret = iwl_send_rxon_timing(priv, ctx);
209 if (ret) {
210 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
211 return ret;
212 }
213 /* QoS info may be cleared by previous un-assoc RXON */
214 iwlagn_update_qos(priv, ctx);
215
216 /*
217 * We'll run into this code path when beaconing is
218 * enabled, but then we also need to send the beacon
219 * to the device.
220 */
221 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_AP)) {
222 ret = iwlagn_update_beacon(priv, ctx->vif);
223 if (ret) {
224 IWL_ERR(priv,
225 "Error sending required beacon (%d)!\n",
226 ret);
227 return ret;
228 }
229 }
230
231 priv->start_calib = 0;
232 /*
233 * Apply the new configuration.
234 *
235 * Associated RXON doesn't clear the station table in uCode,
236 * so we don't need to restore stations etc. after this.
237 */
238 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
239 sizeof(struct iwl_rxon_cmd), &ctx->staging);
240 if (ret) {
241 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
242 return ret;
243 }
244 memcpy(active, &ctx->staging, sizeof(*active));
245
246 iwl_reprogram_ap_sta(priv, ctx);
247
248 /* IBSS beacon needs to be sent after setting assoc */
249 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_ADHOC))
250 if (iwlagn_update_beacon(priv, ctx->vif))
251 IWL_ERR(priv, "Error sending IBSS beacon\n");
252 iwl_init_sensitivity(priv);
253
254 /*
255 * If we issue a new RXON command which required a tune then
256 * we must send a new TXPOWER command or we won't be able to
257 * Tx any frames.
258 *
259 * It's expected we set power here if channel is changing.
260 */
261 ret = iwl_set_tx_power(priv, priv->tx_power_next, true);
262 if (ret) {
263 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
264 return ret;
265 }
266 return 0;
267}
268
Johannes Berg2295c662010-10-23 09:15:41 -0700269/**
270 * iwlagn_commit_rxon - commit staging_rxon to hardware
271 *
272 * The RXON command in staging_rxon is committed to the hardware and
273 * the active_rxon structure is updated with the new data. This
274 * function correctly transitions out of the RXON_ASSOC_MSK state if
275 * a HW tune is required based on the RXON structure changes.
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700276 *
277 * The connect/disconnect flow should be as the following:
278 *
279 * 1. make sure send RXON command with association bit unset if not connect
280 * this should include the channel and the band for the candidate
281 * to be connected to
282 * 2. Add Station before RXON association with the AP
283 * 3. RXON_timing has to send before RXON for connection
284 * 4. full RXON command - associated bit set
285 * 5. use RXON_ASSOC command to update any flags changes
Johannes Berg2295c662010-10-23 09:15:41 -0700286 */
287int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
288{
289 /* cast away the const for active_rxon in this function */
290 struct iwl_rxon_cmd *active = (void *)&ctx->active;
Johannes Berg2295c662010-10-23 09:15:41 -0700291 bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
292 int ret;
293
294 lockdep_assert_held(&priv->mutex);
295
Wey-Yi Guyadb90a02010-11-26 11:09:42 -0800296 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
297 return -EINVAL;
298
Johannes Berg2295c662010-10-23 09:15:41 -0700299 if (!iwl_is_alive(priv))
300 return -EBUSY;
301
302 /* This function hardcodes a bunch of dual-mode assumptions */
303 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
304
305 if (!ctx->is_active)
306 return 0;
307
308 /* always get timestamp with Rx frame */
309 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
310
Johannes Berg9b9190d2011-01-06 08:07:10 -0800311 if (ctx->ctxid == IWL_RXON_CTX_PAN && priv->_agn.hw_roc_channel) {
312 struct ieee80211_channel *chan = priv->_agn.hw_roc_channel;
313
314 iwl_set_rxon_channel(priv, chan, ctx);
315 iwl_set_flags_for_band(priv, ctx, chan->band, NULL);
316 ctx->staging.filter_flags |=
317 RXON_FILTER_ASSOC_MSK |
318 RXON_FILTER_PROMISC_MSK |
319 RXON_FILTER_CTL2HOST_MSK;
320 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
321 new_assoc = true;
322
323 if (memcmp(&ctx->staging, &ctx->active,
324 sizeof(ctx->staging)) == 0)
325 return 0;
326 }
327
Stanislaw Gruszka42b70a52011-05-26 17:14:22 +0200328 /*
329 * force CTS-to-self frames protection if RTS-CTS is not preferred
330 * one aggregation protection method
331 */
332 if (!(priv->cfg->ht_params &&
333 priv->cfg->ht_params->use_rts_for_aggregation))
334 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
335
Johannes Berg2295c662010-10-23 09:15:41 -0700336 if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) ||
337 !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK))
338 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
339 else
340 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
341
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700342 iwl_print_rx_config_cmd(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700343 ret = iwl_check_rxon_cmd(priv, ctx);
344 if (ret) {
345 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
346 return -EINVAL;
347 }
348
349 /*
350 * receive commit_rxon request
351 * abort any previous channel switch if still in process
352 */
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200353 if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status) &&
354 (priv->switch_channel != ctx->staging.channel)) {
Johannes Berg2295c662010-10-23 09:15:41 -0700355 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200356 le16_to_cpu(priv->switch_channel));
Johannes Berg2295c662010-10-23 09:15:41 -0700357 iwl_chswitch_done(priv, false);
358 }
359
360 /*
361 * If we don't need to send a full RXON, we can use
362 * iwl_rxon_assoc_cmd which is used to reconfigure filter
363 * and other flags for the current radio configuration.
364 */
365 if (!iwl_full_rxon_required(priv, ctx)) {
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700366 ret = iwlagn_send_rxon_assoc(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700367 if (ret) {
368 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
369 return ret;
370 }
371
372 memcpy(active, &ctx->staging, sizeof(*active));
Wey-Yi Guy43e4e0b2011-05-27 08:40:24 -0700373 /*
374 * We do not commit tx power settings while channel changing,
375 * do it now if after settings changed.
376 */
377 iwl_set_tx_power(priv, priv->tx_power_next, false);
Johannes Berg2295c662010-10-23 09:15:41 -0700378 return 0;
379 }
380
381 if (priv->cfg->ops->hcmd->set_pan_params) {
382 ret = priv->cfg->ops->hcmd->set_pan_params(priv);
383 if (ret)
384 return ret;
385 }
386
Don Fry9d143e92011-04-20 15:23:57 -0700387 iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto);
Johannes Berg2295c662010-10-23 09:15:41 -0700388
389 IWL_DEBUG_INFO(priv,
390 "Going to commit RXON\n"
391 " * with%s RXON_FILTER_ASSOC_MSK\n"
392 " * channel = %d\n"
393 " * bssid = %pM\n",
394 (new_assoc ? "" : "out"),
395 le16_to_cpu(ctx->staging.channel),
396 ctx->staging.bssid_addr);
397
398 /*
Johannes Berg52d980c2010-11-10 09:56:45 -0800399 * Always clear associated first, but with the correct config.
400 * This is required as for example station addition for the
401 * AP station must be done after the BSSID is set to correctly
402 * set up filters in the device.
Johannes Berg2295c662010-10-23 09:15:41 -0700403 */
Wey-Yi Guy3083d032011-05-06 17:06:44 -0700404 ret = iwlagn_rxon_disconn(priv, ctx);
405 if (ret)
406 return ret;
Johannes Berg2295c662010-10-23 09:15:41 -0700407
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700408 if (new_assoc)
409 return iwlagn_rxon_connect(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700410
411 return 0;
412}
413
Wey-Yi Guy0ea3eda2011-12-02 08:19:18 -0800414void iwlagn_config_ht40(struct ieee80211_conf *conf,
415 struct iwl_rxon_context *ctx)
416{
417 if (conf_is_ht40_minus(conf)) {
418 ctx->ht.extension_chan_offset =
419 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
420 ctx->ht.is_40mhz = true;
421 } else if (conf_is_ht40_plus(conf)) {
422 ctx->ht.extension_chan_offset =
423 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
424 ctx->ht.is_40mhz = true;
425 } else {
426 ctx->ht.extension_chan_offset =
427 IEEE80211_HT_PARAM_CHA_SEC_NONE;
428 ctx->ht.is_40mhz = false;
429 }
430}
431
Johannes Berg2295c662010-10-23 09:15:41 -0700432int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
433{
434 struct iwl_priv *priv = hw->priv;
435 struct iwl_rxon_context *ctx;
436 struct ieee80211_conf *conf = &hw->conf;
437 struct ieee80211_channel *channel = conf->channel;
438 const struct iwl_channel_info *ch_info;
439 int ret = 0;
440
441 IWL_DEBUG_MAC80211(priv, "changed %#x", changed);
442
443 mutex_lock(&priv->mutex);
444
Wey-Yi Guydd558f12011-11-10 06:55:04 -0800445 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
446 goto out;
447
Johannes Berg2295c662010-10-23 09:15:41 -0700448 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
449 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
450 goto out;
451 }
452
453 if (!iwl_is_ready(priv)) {
454 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
455 goto out;
456 }
457
458 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
459 IEEE80211_CONF_CHANGE_CHANNEL)) {
460 /* mac80211 uses static for non-HT which is what we want */
461 priv->current_ht_config.smps = conf->smps_mode;
462
463 /*
464 * Recalculate chain counts.
465 *
466 * If monitor mode is enabled then mac80211 will
467 * set up the SM PS mode to OFF if an HT channel is
468 * configured.
469 */
470 if (priv->cfg->ops->hcmd->set_rxon_chain)
471 for_each_context(priv, ctx)
472 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
473 }
474
475 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
476 unsigned long flags;
477
478 ch_info = iwl_get_channel_info(priv, channel->band,
479 channel->hw_value);
480 if (!is_channel_valid(ch_info)) {
481 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
482 ret = -EINVAL;
483 goto out;
484 }
485
486 spin_lock_irqsave(&priv->lock, flags);
487
488 for_each_context(priv, ctx) {
489 /* Configure HT40 channels */
Daniel Halperin7caa2312011-04-06 12:47:25 -0700490 if (ctx->ht.enabled != conf_is_ht(conf))
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800491 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800492
Johannes Berg2295c662010-10-23 09:15:41 -0700493 if (ctx->ht.enabled) {
Wey-Yi Guy0ea3eda2011-12-02 08:19:18 -0800494 /* if HT40 is used, it should not change
495 * after associated except channel switch */
Wey-Yi Guya37fd072011-12-14 08:22:36 -0800496 if (!ctx->ht.is_40mhz ||
497 !iwl_is_associated_ctx(ctx))
Wey-Yi Guy0ea3eda2011-12-02 08:19:18 -0800498 iwlagn_config_ht40(conf, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700499 } else
500 ctx->ht.is_40mhz = false;
501
502 /*
503 * Default to no protection. Protection mode will
504 * later be set from BSS config in iwl_ht_conf
505 */
506 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
507
508 /* if we are switching from ht to 2.4 clear flags
509 * from any ht related info since 2.4 does not
510 * support ht */
511 if (le16_to_cpu(ctx->staging.channel) !=
512 channel->hw_value)
513 ctx->staging.flags = 0;
514
515 iwl_set_rxon_channel(priv, channel, ctx);
516 iwl_set_rxon_ht(priv, &priv->current_ht_config);
517
518 iwl_set_flags_for_band(priv, ctx, channel->band,
519 ctx->vif);
520 }
521
522 spin_unlock_irqrestore(&priv->lock, flags);
523
524 iwl_update_bcast_stations(priv);
525
526 /*
527 * The list of supported rates and rate mask can be different
528 * for each band; since the band may have changed, reset
529 * the rate mask to what mac80211 lists.
530 */
531 iwl_set_rate(priv);
532 }
533
534 if (changed & (IEEE80211_CONF_CHANGE_PS |
535 IEEE80211_CONF_CHANGE_IDLE)) {
536 ret = iwl_power_update_mode(priv, false);
537 if (ret)
538 IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
539 }
540
541 if (changed & IEEE80211_CONF_CHANGE_POWER) {
542 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
543 priv->tx_power_user_lmt, conf->power_level);
544
545 iwl_set_tx_power(priv, conf->power_level, false);
546 }
547
548 for_each_context(priv, ctx) {
549 if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
550 continue;
551 iwlagn_commit_rxon(priv, ctx);
552 }
553 out:
554 mutex_unlock(&priv->mutex);
555 return ret;
556}
557
Johannes Berg2295c662010-10-23 09:15:41 -0700558static void iwlagn_check_needed_chains(struct iwl_priv *priv,
559 struct iwl_rxon_context *ctx,
560 struct ieee80211_bss_conf *bss_conf)
561{
562 struct ieee80211_vif *vif = ctx->vif;
563 struct iwl_rxon_context *tmp;
564 struct ieee80211_sta *sta;
565 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg850bedc2011-02-25 12:24:11 +0100566 struct ieee80211_sta_ht_cap *ht_cap;
Johannes Berg2295c662010-10-23 09:15:41 -0700567 bool need_multiple;
568
569 lockdep_assert_held(&priv->mutex);
570
571 switch (vif->type) {
572 case NL80211_IFTYPE_STATION:
573 rcu_read_lock();
574 sta = ieee80211_find_sta(vif, bss_conf->bssid);
Johannes Berg850bedc2011-02-25 12:24:11 +0100575 if (!sta) {
Johannes Berg2295c662010-10-23 09:15:41 -0700576 /*
577 * If at all, this can only happen through a race
578 * when the AP disconnects us while we're still
579 * setting up the connection, in that case mac80211
580 * will soon tell us about that.
581 */
582 need_multiple = false;
Johannes Berg850bedc2011-02-25 12:24:11 +0100583 rcu_read_unlock();
584 break;
Johannes Berg2295c662010-10-23 09:15:41 -0700585 }
Johannes Berg850bedc2011-02-25 12:24:11 +0100586
587 ht_cap = &sta->ht_cap;
588
589 need_multiple = true;
590
591 /*
592 * If the peer advertises no support for receiving 2 and 3
593 * stream MCS rates, it can't be transmitting them either.
594 */
595 if (ht_cap->mcs.rx_mask[1] == 0 &&
596 ht_cap->mcs.rx_mask[2] == 0) {
597 need_multiple = false;
598 } else if (!(ht_cap->mcs.tx_params &
599 IEEE80211_HT_MCS_TX_DEFINED)) {
600 /* If it can't TX MCS at all ... */
601 need_multiple = false;
602 } else if (ht_cap->mcs.tx_params &
603 IEEE80211_HT_MCS_TX_RX_DIFF) {
604 int maxstreams;
605
606 /*
607 * But if it can receive them, it might still not
608 * be able to transmit them, which is what we need
609 * to check here -- so check the number of streams
610 * it advertises for TX (if different from RX).
611 */
612
613 maxstreams = (ht_cap->mcs.tx_params &
614 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK);
615 maxstreams >>=
616 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
617 maxstreams += 1;
618
619 if (maxstreams <= 1)
620 need_multiple = false;
621 }
622
Johannes Berg2295c662010-10-23 09:15:41 -0700623 rcu_read_unlock();
624 break;
625 case NL80211_IFTYPE_ADHOC:
626 /* currently */
627 need_multiple = false;
628 break;
629 default:
630 /* only AP really */
631 need_multiple = true;
632 break;
633 }
634
635 ctx->ht_need_multiple_chains = need_multiple;
636
637 if (!need_multiple) {
638 /* check all contexts */
639 for_each_context(priv, tmp) {
640 if (!tmp->vif)
641 continue;
642 if (tmp->ht_need_multiple_chains) {
643 need_multiple = true;
644 break;
645 }
646 }
647 }
648
649 ht_conf->single_chain_sufficient = !need_multiple;
650}
651
652void iwlagn_bss_info_changed(struct ieee80211_hw *hw,
653 struct ieee80211_vif *vif,
654 struct ieee80211_bss_conf *bss_conf,
655 u32 changes)
656{
657 struct iwl_priv *priv = hw->priv;
658 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
659 int ret;
660 bool force = false;
661
662 mutex_lock(&priv->mutex);
663
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800664 if (unlikely(!iwl_is_ready(priv))) {
Wey-Yi Guy14a085e2010-12-14 07:38:58 -0800665 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
666 mutex_unlock(&priv->mutex);
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800667 return;
668 }
669
670 if (unlikely(!ctx->vif)) {
671 IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n");
Johannes Berg893654d2010-11-10 18:25:47 -0800672 mutex_unlock(&priv->mutex);
673 return;
674 }
675
Johannes Berg2295c662010-10-23 09:15:41 -0700676 if (changes & BSS_CHANGED_BEACON_INT)
677 force = true;
678
679 if (changes & BSS_CHANGED_QOS) {
680 ctx->qos_data.qos_active = bss_conf->qos;
681 iwlagn_update_qos(priv, ctx);
682 }
683
684 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
685 if (vif->bss_conf.use_short_preamble)
686 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
687 else
688 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
689
690 if (changes & BSS_CHANGED_ASSOC) {
691 if (bss_conf->assoc) {
Johannes Berg2295c662010-10-23 09:15:41 -0700692 priv->timestamp = bss_conf->timestamp;
693 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
694 } else {
Garen Tamrazian68b99312011-03-30 02:29:32 -0700695 /*
696 * If we disassociate while there are pending
697 * frames, just wake up the queues and let the
698 * frames "escape" ... This shouldn't really
699 * be happening to start with, but we should
700 * not get stuck in this case either since it
701 * can happen if userspace gets confused.
702 */
703 if (ctx->last_tx_rejected) {
704 ctx->last_tx_rejected = false;
705 iwl_wake_any_queue(priv, ctx);
706 }
Johannes Berg2295c662010-10-23 09:15:41 -0700707 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Berg2295c662010-10-23 09:15:41 -0700708 }
709 }
710
711 if (ctx->ht.enabled) {
712 ctx->ht.protection = bss_conf->ht_operation_mode &
713 IEEE80211_HT_OP_MODE_PROTECTION;
714 ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode &
715 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
716 iwlagn_check_needed_chains(priv, ctx, bss_conf);
Johannes Bergb2769b82010-11-10 09:56:47 -0800717 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Johannes Berg2295c662010-10-23 09:15:41 -0700718 }
719
720 if (priv->cfg->ops->hcmd->set_rxon_chain)
721 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
722
723 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
724 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
725 else
726 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
727
728 if (bss_conf->use_cts_prot)
729 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
730 else
731 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
732
733 memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN);
734
735 if (vif->type == NL80211_IFTYPE_AP ||
736 vif->type == NL80211_IFTYPE_ADHOC) {
737 if (vif->bss_conf.enable_beacon) {
738 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
739 priv->beacon_ctx = ctx;
740 } else {
741 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
742 priv->beacon_ctx = NULL;
743 }
744 }
745
746 if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
747 iwlagn_commit_rxon(priv, ctx);
748
Johannes Berg8da8e622010-11-10 09:56:46 -0800749 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) {
750 /*
751 * The chain noise calibration will enable PM upon
752 * completion. If calibration has already been run
753 * then we need to enable power management here.
754 */
755 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
756 iwl_power_update_mode(priv, false);
757
758 /* Enable RX differential gain and sensitivity calibrations */
759 iwl_chain_noise_reset(priv);
760 priv->start_calib = 1;
761 }
762
Johannes Berg2295c662010-10-23 09:15:41 -0700763 if (changes & BSS_CHANGED_IBSS) {
764 ret = iwlagn_manage_ibss_station(priv, vif,
765 bss_conf->ibss_joined);
766 if (ret)
767 IWL_ERR(priv, "failed to %s IBSS station %pM\n",
768 bss_conf->ibss_joined ? "add" : "remove",
769 bss_conf->bssid);
770 }
771
Johannes Bergbd50a8a2010-10-23 09:15:42 -0700772 if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC &&
773 priv->beacon_ctx) {
774 if (iwlagn_update_beacon(priv, vif))
775 IWL_ERR(priv, "Error sending IBSS beacon\n");
776 }
777
Johannes Berg2295c662010-10-23 09:15:41 -0700778 mutex_unlock(&priv->mutex);
779}
Johannes Bergae79d232010-11-10 09:56:38 -0800780
781void iwlagn_post_scan(struct iwl_priv *priv)
782{
783 struct iwl_rxon_context *ctx;
784
785 /*
786 * Since setting the RXON may have been deferred while
787 * performing the scan, fire one off if needed
788 */
789 for_each_context(priv, ctx)
790 if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
791 iwlagn_commit_rxon(priv, ctx);
792
793 if (priv->cfg->ops->hcmd->set_pan_params)
794 priv->cfg->ops->hcmd->set_pan_params(priv);
795}