blob: afb2f202afb93e8ab0d9c0fcf05124438f08db5f [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 }
294 return 0;
295}
296
Johannes Berg2295c662010-10-23 09:15:41 -0700297/**
298 * iwlagn_commit_rxon - commit staging_rxon to hardware
299 *
300 * The RXON command in staging_rxon is committed to the hardware and
301 * the active_rxon structure is updated with the new data. This
302 * function correctly transitions out of the RXON_ASSOC_MSK state if
303 * a HW tune is required based on the RXON structure changes.
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700304 *
305 * The connect/disconnect flow should be as the following:
306 *
307 * 1. make sure send RXON command with association bit unset if not connect
308 * this should include the channel and the band for the candidate
309 * to be connected to
310 * 2. Add Station before RXON association with the AP
311 * 3. RXON_timing has to send before RXON for connection
312 * 4. full RXON command - associated bit set
313 * 5. use RXON_ASSOC command to update any flags changes
Johannes Berg2295c662010-10-23 09:15:41 -0700314 */
315int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
316{
317 /* cast away the const for active_rxon in this function */
318 struct iwl_rxon_cmd *active = (void *)&ctx->active;
Johannes Berg2295c662010-10-23 09:15:41 -0700319 bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
320 int ret;
321
322 lockdep_assert_held(&priv->mutex);
323
Wey-Yi Guyadb90a02010-11-26 11:09:42 -0800324 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
325 return -EINVAL;
326
Johannes Berg2295c662010-10-23 09:15:41 -0700327 if (!iwl_is_alive(priv))
328 return -EBUSY;
329
330 /* This function hardcodes a bunch of dual-mode assumptions */
331 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
332
333 if (!ctx->is_active)
334 return 0;
335
336 /* always get timestamp with Rx frame */
337 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
338
Johannes Berg9b9190d2011-01-06 08:07:10 -0800339 if (ctx->ctxid == IWL_RXON_CTX_PAN && priv->_agn.hw_roc_channel) {
340 struct ieee80211_channel *chan = priv->_agn.hw_roc_channel;
341
342 iwl_set_rxon_channel(priv, chan, ctx);
343 iwl_set_flags_for_band(priv, ctx, chan->band, NULL);
344 ctx->staging.filter_flags |=
345 RXON_FILTER_ASSOC_MSK |
346 RXON_FILTER_PROMISC_MSK |
347 RXON_FILTER_CTL2HOST_MSK;
348 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
349 new_assoc = true;
350
351 if (memcmp(&ctx->staging, &ctx->active,
352 sizeof(ctx->staging)) == 0)
353 return 0;
354 }
355
Johannes Berg2295c662010-10-23 09:15:41 -0700356 if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) ||
357 !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK))
358 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
359 else
360 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
361
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700362 iwl_print_rx_config_cmd(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700363 ret = iwl_check_rxon_cmd(priv, ctx);
364 if (ret) {
365 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
366 return -EINVAL;
367 }
368
369 /*
370 * receive commit_rxon request
371 * abort any previous channel switch if still in process
372 */
373 if (priv->switch_rxon.switch_in_progress &&
374 (priv->switch_rxon.channel != ctx->staging.channel)) {
375 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
376 le16_to_cpu(priv->switch_rxon.channel));
377 iwl_chswitch_done(priv, false);
378 }
379
380 /*
381 * If we don't need to send a full RXON, we can use
382 * iwl_rxon_assoc_cmd which is used to reconfigure filter
383 * and other flags for the current radio configuration.
384 */
385 if (!iwl_full_rxon_required(priv, ctx)) {
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700386 ret = iwlagn_send_rxon_assoc(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700387 if (ret) {
388 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
389 return ret;
390 }
391
392 memcpy(active, &ctx->staging, sizeof(*active));
Wey-Yi Guy891db882011-05-27 08:40:24 -0700393 /*
394 * We do not commit tx power settings while channel changing,
395 * do it now if after settings changed.
396 */
397 iwl_set_tx_power(priv, priv->tx_power_next, false);
Johannes Berg2295c662010-10-23 09:15:41 -0700398 return 0;
399 }
400
Don Fry9d143e92011-04-20 15:23:57 -0700401 iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto);
Johannes Berg2295c662010-10-23 09:15:41 -0700402
403 IWL_DEBUG_INFO(priv,
404 "Going to commit RXON\n"
405 " * with%s RXON_FILTER_ASSOC_MSK\n"
406 " * channel = %d\n"
407 " * bssid = %pM\n",
408 (new_assoc ? "" : "out"),
409 le16_to_cpu(ctx->staging.channel),
410 ctx->staging.bssid_addr);
411
412 /*
Johannes Berg52d980c2010-11-10 09:56:45 -0800413 * Always clear associated first, but with the correct config.
414 * This is required as for example station addition for the
415 * AP station must be done after the BSSID is set to correctly
416 * set up filters in the device.
Johannes Berg2295c662010-10-23 09:15:41 -0700417 */
Wey-Yi Guy3083d032011-05-06 17:06:44 -0700418 ret = iwlagn_rxon_disconn(priv, ctx);
419 if (ret)
420 return ret;
Johannes Berg2295c662010-10-23 09:15:41 -0700421
Johannes Berg2b9253d2011-05-27 08:40:26 -0700422 if (priv->cfg->ops->hcmd->set_pan_params) {
423 ret = priv->cfg->ops->hcmd->set_pan_params(priv);
424 if (ret)
425 return ret;
426 }
427
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700428 if (new_assoc)
429 return iwlagn_rxon_connect(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700430
431 return 0;
432}
433
434int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
435{
436 struct iwl_priv *priv = hw->priv;
437 struct iwl_rxon_context *ctx;
438 struct ieee80211_conf *conf = &hw->conf;
439 struct ieee80211_channel *channel = conf->channel;
440 const struct iwl_channel_info *ch_info;
441 int ret = 0;
442
443 IWL_DEBUG_MAC80211(priv, "changed %#x", changed);
444
445 mutex_lock(&priv->mutex);
446
447 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
448 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
449 goto out;
450 }
451
452 if (!iwl_is_ready(priv)) {
453 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
454 goto out;
455 }
456
457 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
458 IEEE80211_CONF_CHANGE_CHANNEL)) {
459 /* mac80211 uses static for non-HT which is what we want */
460 priv->current_ht_config.smps = conf->smps_mode;
461
462 /*
463 * Recalculate chain counts.
464 *
465 * If monitor mode is enabled then mac80211 will
466 * set up the SM PS mode to OFF if an HT channel is
467 * configured.
468 */
469 if (priv->cfg->ops->hcmd->set_rxon_chain)
470 for_each_context(priv, ctx)
471 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
472 }
473
474 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
475 unsigned long flags;
476
477 ch_info = iwl_get_channel_info(priv, channel->band,
478 channel->hw_value);
479 if (!is_channel_valid(ch_info)) {
480 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
481 ret = -EINVAL;
482 goto out;
483 }
484
485 spin_lock_irqsave(&priv->lock, flags);
486
487 for_each_context(priv, ctx) {
488 /* Configure HT40 channels */
Daniel Halperin7caa2312011-04-06 12:47:25 -0700489 if (ctx->ht.enabled != conf_is_ht(conf))
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800490 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800491
Johannes Berg2295c662010-10-23 09:15:41 -0700492 if (ctx->ht.enabled) {
493 if (conf_is_ht40_minus(conf)) {
494 ctx->ht.extension_chan_offset =
495 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
496 ctx->ht.is_40mhz = true;
497 } else if (conf_is_ht40_plus(conf)) {
498 ctx->ht.extension_chan_offset =
499 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
500 ctx->ht.is_40mhz = true;
501 } else {
502 ctx->ht.extension_chan_offset =
503 IEEE80211_HT_PARAM_CHA_SEC_NONE;
504 ctx->ht.is_40mhz = false;
505 }
506 } else
507 ctx->ht.is_40mhz = false;
508
509 /*
510 * Default to no protection. Protection mode will
511 * later be set from BSS config in iwl_ht_conf
512 */
513 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
514
515 /* if we are switching from ht to 2.4 clear flags
516 * from any ht related info since 2.4 does not
517 * support ht */
518 if (le16_to_cpu(ctx->staging.channel) !=
519 channel->hw_value)
520 ctx->staging.flags = 0;
521
522 iwl_set_rxon_channel(priv, channel, ctx);
523 iwl_set_rxon_ht(priv, &priv->current_ht_config);
524
525 iwl_set_flags_for_band(priv, ctx, channel->band,
526 ctx->vif);
527 }
528
529 spin_unlock_irqrestore(&priv->lock, flags);
530
531 iwl_update_bcast_stations(priv);
532
533 /*
534 * The list of supported rates and rate mask can be different
535 * for each band; since the band may have changed, reset
536 * the rate mask to what mac80211 lists.
537 */
538 iwl_set_rate(priv);
539 }
540
541 if (changed & (IEEE80211_CONF_CHANGE_PS |
542 IEEE80211_CONF_CHANGE_IDLE)) {
543 ret = iwl_power_update_mode(priv, false);
544 if (ret)
545 IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
546 }
547
548 if (changed & IEEE80211_CONF_CHANGE_POWER) {
549 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
550 priv->tx_power_user_lmt, conf->power_level);
551
552 iwl_set_tx_power(priv, conf->power_level, false);
553 }
554
555 for_each_context(priv, ctx) {
556 if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
557 continue;
558 iwlagn_commit_rxon(priv, ctx);
559 }
560 out:
561 mutex_unlock(&priv->mutex);
562 return ret;
563}
564
Johannes Berg2295c662010-10-23 09:15:41 -0700565static void iwlagn_check_needed_chains(struct iwl_priv *priv,
566 struct iwl_rxon_context *ctx,
567 struct ieee80211_bss_conf *bss_conf)
568{
569 struct ieee80211_vif *vif = ctx->vif;
570 struct iwl_rxon_context *tmp;
571 struct ieee80211_sta *sta;
572 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg850bedc2011-02-25 12:24:11 +0100573 struct ieee80211_sta_ht_cap *ht_cap;
Johannes Berg2295c662010-10-23 09:15:41 -0700574 bool need_multiple;
575
576 lockdep_assert_held(&priv->mutex);
577
578 switch (vif->type) {
579 case NL80211_IFTYPE_STATION:
580 rcu_read_lock();
581 sta = ieee80211_find_sta(vif, bss_conf->bssid);
Johannes Berg850bedc2011-02-25 12:24:11 +0100582 if (!sta) {
Johannes Berg2295c662010-10-23 09:15:41 -0700583 /*
584 * If at all, this can only happen through a race
585 * when the AP disconnects us while we're still
586 * setting up the connection, in that case mac80211
587 * will soon tell us about that.
588 */
589 need_multiple = false;
Johannes Berg850bedc2011-02-25 12:24:11 +0100590 rcu_read_unlock();
591 break;
Johannes Berg2295c662010-10-23 09:15:41 -0700592 }
Johannes Berg850bedc2011-02-25 12:24:11 +0100593
594 ht_cap = &sta->ht_cap;
595
596 need_multiple = true;
597
598 /*
599 * If the peer advertises no support for receiving 2 and 3
600 * stream MCS rates, it can't be transmitting them either.
601 */
602 if (ht_cap->mcs.rx_mask[1] == 0 &&
603 ht_cap->mcs.rx_mask[2] == 0) {
604 need_multiple = false;
605 } else if (!(ht_cap->mcs.tx_params &
606 IEEE80211_HT_MCS_TX_DEFINED)) {
607 /* If it can't TX MCS at all ... */
608 need_multiple = false;
609 } else if (ht_cap->mcs.tx_params &
610 IEEE80211_HT_MCS_TX_RX_DIFF) {
611 int maxstreams;
612
613 /*
614 * But if it can receive them, it might still not
615 * be able to transmit them, which is what we need
616 * to check here -- so check the number of streams
617 * it advertises for TX (if different from RX).
618 */
619
620 maxstreams = (ht_cap->mcs.tx_params &
621 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK);
622 maxstreams >>=
623 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
624 maxstreams += 1;
625
626 if (maxstreams <= 1)
627 need_multiple = false;
628 }
629
Johannes Berg2295c662010-10-23 09:15:41 -0700630 rcu_read_unlock();
631 break;
632 case NL80211_IFTYPE_ADHOC:
633 /* currently */
634 need_multiple = false;
635 break;
636 default:
637 /* only AP really */
638 need_multiple = true;
639 break;
640 }
641
642 ctx->ht_need_multiple_chains = need_multiple;
643
644 if (!need_multiple) {
645 /* check all contexts */
646 for_each_context(priv, tmp) {
647 if (!tmp->vif)
648 continue;
649 if (tmp->ht_need_multiple_chains) {
650 need_multiple = true;
651 break;
652 }
653 }
654 }
655
656 ht_conf->single_chain_sufficient = !need_multiple;
657}
658
659void iwlagn_bss_info_changed(struct ieee80211_hw *hw,
660 struct ieee80211_vif *vif,
661 struct ieee80211_bss_conf *bss_conf,
662 u32 changes)
663{
664 struct iwl_priv *priv = hw->priv;
665 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
666 int ret;
667 bool force = false;
668
669 mutex_lock(&priv->mutex);
670
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800671 if (unlikely(!iwl_is_ready(priv))) {
Wey-Yi Guy14a085e2010-12-14 07:38:58 -0800672 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
673 mutex_unlock(&priv->mutex);
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800674 return;
675 }
676
677 if (unlikely(!ctx->vif)) {
678 IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n");
Johannes Berg893654d2010-11-10 18:25:47 -0800679 mutex_unlock(&priv->mutex);
680 return;
681 }
682
Johannes Berg2295c662010-10-23 09:15:41 -0700683 if (changes & BSS_CHANGED_BEACON_INT)
684 force = true;
685
686 if (changes & BSS_CHANGED_QOS) {
687 ctx->qos_data.qos_active = bss_conf->qos;
688 iwlagn_update_qos(priv, ctx);
689 }
690
691 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
692 if (vif->bss_conf.use_short_preamble)
693 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
694 else
695 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
696
697 if (changes & BSS_CHANGED_ASSOC) {
698 if (bss_conf->assoc) {
Johannes Berg2295c662010-10-23 09:15:41 -0700699 priv->timestamp = bss_conf->timestamp;
700 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
701 } else {
Garen Tamrazian68b99312011-03-30 02:29:32 -0700702 /*
703 * If we disassociate while there are pending
704 * frames, just wake up the queues and let the
705 * frames "escape" ... This shouldn't really
706 * be happening to start with, but we should
707 * not get stuck in this case either since it
708 * can happen if userspace gets confused.
709 */
710 if (ctx->last_tx_rejected) {
711 ctx->last_tx_rejected = false;
712 iwl_wake_any_queue(priv, ctx);
713 }
Johannes Berg2295c662010-10-23 09:15:41 -0700714 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Berg2295c662010-10-23 09:15:41 -0700715 }
716 }
717
718 if (ctx->ht.enabled) {
719 ctx->ht.protection = bss_conf->ht_operation_mode &
720 IEEE80211_HT_OP_MODE_PROTECTION;
721 ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode &
722 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
723 iwlagn_check_needed_chains(priv, ctx, bss_conf);
Johannes Bergb2769b82010-11-10 09:56:47 -0800724 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Johannes Berg2295c662010-10-23 09:15:41 -0700725 }
726
727 if (priv->cfg->ops->hcmd->set_rxon_chain)
728 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
729
730 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
731 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
732 else
733 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
734
735 if (bss_conf->use_cts_prot)
736 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
737 else
738 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
739
740 memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN);
741
742 if (vif->type == NL80211_IFTYPE_AP ||
743 vif->type == NL80211_IFTYPE_ADHOC) {
744 if (vif->bss_conf.enable_beacon) {
745 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
746 priv->beacon_ctx = ctx;
747 } else {
748 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
749 priv->beacon_ctx = NULL;
750 }
751 }
752
753 if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
754 iwlagn_commit_rxon(priv, ctx);
755
Johannes Berg8da8e622010-11-10 09:56:46 -0800756 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) {
757 /*
758 * The chain noise calibration will enable PM upon
759 * completion. If calibration has already been run
760 * then we need to enable power management here.
761 */
762 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
763 iwl_power_update_mode(priv, false);
764
765 /* Enable RX differential gain and sensitivity calibrations */
766 iwl_chain_noise_reset(priv);
767 priv->start_calib = 1;
768 }
769
Johannes Berg2295c662010-10-23 09:15:41 -0700770 if (changes & BSS_CHANGED_IBSS) {
771 ret = iwlagn_manage_ibss_station(priv, vif,
772 bss_conf->ibss_joined);
773 if (ret)
774 IWL_ERR(priv, "failed to %s IBSS station %pM\n",
775 bss_conf->ibss_joined ? "add" : "remove",
776 bss_conf->bssid);
777 }
778
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700779 if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC &&
780 priv->beacon_ctx) {
781 if (iwlagn_update_beacon(priv, vif))
782 IWL_ERR(priv, "Error sending IBSS beacon\n");
783 }
784
Johannes Berg2295c662010-10-23 09:15:41 -0700785 mutex_unlock(&priv->mutex);
786}
Johannes Bergae79d232010-11-10 09:56:38 -0800787
788void iwlagn_post_scan(struct iwl_priv *priv)
789{
790 struct iwl_rxon_context *ctx;
791
792 /*
793 * Since setting the RXON may have been deferred while
794 * performing the scan, fire one off if needed
795 */
796 for_each_context(priv, ctx)
797 if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
798 iwlagn_commit_rxon(priv, ctx);
799
800 if (priv->cfg->ops->hcmd->set_pan_params)
801 priv->cfg->ops->hcmd->set_pan_params(priv);
802}