blob: 58a381c01c89c9a367c7b592d65a49eb02457be0 [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"
Johannes Berg2295c662010-10-23 09:15:41 -070029#include "iwl-core.h"
30#include "iwl-agn-calib.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070031#include "iwl-trans.h"
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070032#include "iwl-shared.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;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070042 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070043 CMD_SYNC, sizeof(*send), send);
Johannes Berg2295c662010-10-23 09:15:41 -070044
45 send->filter_flags = old_filter;
46
47 if (ret)
48 IWL_ERR(priv, "Error clearing ASSOC_MSK on BSS (%d)\n", ret);
49
50 return ret;
51}
52
53static int iwlagn_disable_pan(struct iwl_priv *priv,
54 struct iwl_rxon_context *ctx,
55 struct iwl_rxon_cmd *send)
56{
Johannes Berg311dce72011-01-04 16:22:01 -080057 struct iwl_notification_wait disable_wait;
Johannes Berg2295c662010-10-23 09:15:41 -070058 __le32 old_filter = send->filter_flags;
59 u8 old_dev_type = send->dev_type;
60 int ret;
61
Johannes Berg09f18af2011-04-13 03:14:47 -070062 iwlagn_init_notification_wait(priv, &disable_wait,
63 REPLY_WIPAN_DEACTIVATION_COMPLETE,
64 NULL, NULL);
Johannes Berg311dce72011-01-04 16:22:01 -080065
Johannes Berg2295c662010-10-23 09:15:41 -070066 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
67 send->dev_type = RXON_DEV_TYPE_P2P;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070068 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070069 CMD_SYNC, sizeof(*send), send);
Johannes Berg2295c662010-10-23 09:15:41 -070070
71 send->filter_flags = old_filter;
72 send->dev_type = old_dev_type;
73
Johannes Berg311dce72011-01-04 16:22:01 -080074 if (ret) {
Johannes Berg2295c662010-10-23 09:15:41 -070075 IWL_ERR(priv, "Error disabling PAN (%d)\n", ret);
Johannes Berg311dce72011-01-04 16:22:01 -080076 iwlagn_remove_notification(priv, &disable_wait);
77 } else {
Johannes Berga8674a12011-04-13 03:14:48 -070078 ret = iwlagn_wait_notification(priv, &disable_wait, HZ);
79 if (ret)
Johannes Berg311dce72011-01-04 16:22:01 -080080 IWL_ERR(priv, "Timed out waiting for PAN disable\n");
81 }
Johannes Berg2295c662010-10-23 09:15:41 -070082
83 return ret;
84}
85
Johannes Berg2b9253d2011-05-27 08:40:26 -070086static int iwlagn_disconn_pan(struct iwl_priv *priv,
87 struct iwl_rxon_context *ctx,
88 struct iwl_rxon_cmd *send)
89{
90 __le32 old_filter = send->filter_flags;
91 int ret;
92
93 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -070094 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, CMD_SYNC,
Emmanuel Grumbache419d622011-07-08 08:46:14 -070095 sizeof(*send), send);
Johannes Berg2b9253d2011-05-27 08:40:26 -070096
97 send->filter_flags = old_filter;
98
99 return ret;
100}
101
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800102static void iwlagn_update_qos(struct iwl_priv *priv,
103 struct iwl_rxon_context *ctx)
104{
105 int ret;
106
107 if (!ctx->is_active)
108 return;
109
110 ctx->qos_data.def_qos_parm.qos_flags = 0;
111
112 if (ctx->qos_data.qos_active)
113 ctx->qos_data.def_qos_parm.qos_flags |=
114 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
115
116 if (ctx->ht.enabled)
117 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
118
119 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
120 ctx->qos_data.qos_active,
121 ctx->qos_data.def_qos_parm.qos_flags);
122
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700123 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->qos_cmd, CMD_SYNC,
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800124 sizeof(struct iwl_qosparam_cmd),
125 &ctx->qos_data.def_qos_parm);
126 if (ret)
127 IWL_ERR(priv, "Failed to update QoS\n");
128}
129
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700130static int iwlagn_update_beacon(struct iwl_priv *priv,
131 struct ieee80211_vif *vif)
132{
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700133 lockdep_assert_held(&priv->shrd->mutex);
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700134
135 dev_kfree_skb(priv->beacon_skb);
136 priv->beacon_skb = ieee80211_beacon_get(priv->hw, vif);
137 if (!priv->beacon_skb)
138 return -ENOMEM;
139 return iwlagn_send_beacon_cmd(priv);
140}
141
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700142static int iwlagn_send_rxon_assoc(struct iwl_priv *priv,
143 struct iwl_rxon_context *ctx)
144{
145 int ret = 0;
Wey-Yi Guy89e746b2011-04-19 16:52:58 -0700146 struct iwl_rxon_assoc_cmd rxon_assoc;
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700147 const struct iwl_rxon_cmd *rxon1 = &ctx->staging;
148 const struct iwl_rxon_cmd *rxon2 = &ctx->active;
149
150 if ((rxon1->flags == rxon2->flags) &&
151 (rxon1->filter_flags == rxon2->filter_flags) &&
152 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
153 (rxon1->ofdm_ht_single_stream_basic_rates ==
154 rxon2->ofdm_ht_single_stream_basic_rates) &&
155 (rxon1->ofdm_ht_dual_stream_basic_rates ==
156 rxon2->ofdm_ht_dual_stream_basic_rates) &&
157 (rxon1->ofdm_ht_triple_stream_basic_rates ==
158 rxon2->ofdm_ht_triple_stream_basic_rates) &&
159 (rxon1->acquisition_data == rxon2->acquisition_data) &&
160 (rxon1->rx_chain == rxon2->rx_chain) &&
161 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
162 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
163 return 0;
164 }
165
166 rxon_assoc.flags = ctx->staging.flags;
167 rxon_assoc.filter_flags = ctx->staging.filter_flags;
168 rxon_assoc.ofdm_basic_rates = ctx->staging.ofdm_basic_rates;
169 rxon_assoc.cck_basic_rates = ctx->staging.cck_basic_rates;
170 rxon_assoc.reserved1 = 0;
171 rxon_assoc.reserved2 = 0;
172 rxon_assoc.reserved3 = 0;
173 rxon_assoc.ofdm_ht_single_stream_basic_rates =
174 ctx->staging.ofdm_ht_single_stream_basic_rates;
175 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
176 ctx->staging.ofdm_ht_dual_stream_basic_rates;
177 rxon_assoc.rx_chain_select_flags = ctx->staging.rx_chain;
178 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
179 ctx->staging.ofdm_ht_triple_stream_basic_rates;
180 rxon_assoc.acquisition_data = ctx->staging.acquisition_data;
181
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700182 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_assoc_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700183 CMD_ASYNC, sizeof(rxon_assoc), &rxon_assoc);
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700184 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);
Johannes Bergf775aa06d2011-06-22 06:34:09 -0700216 /* update -- might need P2P now */
217 iwl_update_bcast_station(priv, ctx);
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700218 iwl_restore_stations(priv, ctx);
219 ret = iwl_restore_default_wep_keys(priv, ctx);
220 if (ret) {
221 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
222 return ret;
223 }
224
225 memcpy(active, &ctx->staging, sizeof(*active));
226 return 0;
227}
228
229static int iwlagn_rxon_connect(struct iwl_priv *priv,
230 struct iwl_rxon_context *ctx)
231{
232 int ret;
233 struct iwl_rxon_cmd *active = (void *)&ctx->active;
234
235 /* RXON timing must be before associated RXON */
Johannes Berg2b9253d2011-05-27 08:40:26 -0700236 if (ctx->ctxid == IWL_RXON_CTX_BSS) {
237 ret = iwl_send_rxon_timing(priv, ctx);
238 if (ret) {
239 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
240 return ret;
241 }
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700242 }
243 /* QoS info may be cleared by previous un-assoc RXON */
244 iwlagn_update_qos(priv, ctx);
245
246 /*
247 * We'll run into this code path when beaconing is
248 * enabled, but then we also need to send the beacon
249 * to the device.
250 */
251 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_AP)) {
252 ret = iwlagn_update_beacon(priv, ctx->vif);
253 if (ret) {
254 IWL_ERR(priv,
255 "Error sending required beacon (%d)!\n",
256 ret);
257 return ret;
258 }
259 }
260
261 priv->start_calib = 0;
262 /*
263 * Apply the new configuration.
264 *
265 * Associated RXON doesn't clear the station table in uCode,
266 * so we don't need to restore stations etc. after this.
267 */
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700268 ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, CMD_SYNC,
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700269 sizeof(struct iwl_rxon_cmd), &ctx->staging);
270 if (ret) {
271 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
272 return ret;
273 }
274 memcpy(active, &ctx->staging, sizeof(*active));
275
276 iwl_reprogram_ap_sta(priv, ctx);
277
278 /* IBSS beacon needs to be sent after setting assoc */
279 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_ADHOC))
280 if (iwlagn_update_beacon(priv, ctx->vif))
281 IWL_ERR(priv, "Error sending IBSS beacon\n");
282 iwl_init_sensitivity(priv);
283
284 /*
285 * If we issue a new RXON command which required a tune then
286 * we must send a new TXPOWER command or we won't be able to
287 * Tx any frames.
288 *
289 * It's expected we set power here if channel is changing.
290 */
291 ret = iwl_set_tx_power(priv, priv->tx_power_next, true);
292 if (ret) {
293 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
294 return ret;
295 }
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700296
Stanislaw Gruszka107ef972011-10-12 10:16:35 +0200297 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
298 priv->cfg->ht_params && priv->cfg->ht_params->smps_mode)
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700299 ieee80211_request_smps(ctx->vif,
300 priv->cfg->ht_params->smps_mode);
301
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700302 return 0;
303}
304
Wey-Yi Guye505c432011-07-07 08:27:41 -0700305int iwlagn_set_pan_params(struct iwl_priv *priv)
306{
307 struct iwl_wipan_params_cmd cmd;
308 struct iwl_rxon_context *ctx_bss, *ctx_pan;
309 int slot0 = 300, slot1 = 0;
310 int ret;
311
Emmanuel Grumbach7a10e3e42011-09-06 09:31:21 -0700312 if (priv->shrd->valid_contexts == BIT(IWL_RXON_CTX_BSS))
Wey-Yi Guye505c432011-07-07 08:27:41 -0700313 return 0;
314
315 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
316
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700317 lockdep_assert_held(&priv->shrd->mutex);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700318
319 ctx_bss = &priv->contexts[IWL_RXON_CTX_BSS];
320 ctx_pan = &priv->contexts[IWL_RXON_CTX_PAN];
321
322 /*
323 * If the PAN context is inactive, then we don't need
324 * to update the PAN parameters, the last thing we'll
325 * have done before it goes inactive is making the PAN
326 * parameters be WLAN-only.
327 */
328 if (!ctx_pan->is_active)
329 return 0;
330
331 memset(&cmd, 0, sizeof(cmd));
332
333 /* only 2 slots are currently allowed */
334 cmd.num_slots = 2;
335
336 cmd.slots[0].type = 0; /* BSS */
337 cmd.slots[1].type = 1; /* PAN */
338
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700339 if (priv->hw_roc_setup) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700340 /* both contexts must be used for this to happen */
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700341 slot1 = IWL_MIN_SLOT_TIME;
342 slot0 = 3000;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700343 } else if (ctx_bss->vif && ctx_pan->vif) {
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700344 int bcnint = ctx_pan->beacon_int;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700345 int dtim = ctx_pan->vif->bss_conf.dtim_period ?: 1;
346
347 /* should be set, but seems unused?? */
348 cmd.flags |= cpu_to_le16(IWL_WIPAN_PARAMS_FLG_SLOTTED_MODE);
349
350 if (ctx_pan->vif->type == NL80211_IFTYPE_AP &&
351 bcnint &&
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700352 bcnint != ctx_bss->beacon_int) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700353 IWL_ERR(priv,
354 "beacon intervals don't match (%d, %d)\n",
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700355 ctx_bss->beacon_int, ctx_pan->beacon_int);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700356 } else
357 bcnint = max_t(int, bcnint,
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700358 ctx_bss->beacon_int);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700359 if (!bcnint)
360 bcnint = DEFAULT_BEACON_INTERVAL;
361 slot0 = bcnint / 2;
362 slot1 = bcnint - slot0;
363
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700364 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status) ||
Wey-Yi Guye505c432011-07-07 08:27:41 -0700365 (!ctx_bss->vif->bss_conf.idle &&
366 !ctx_bss->vif->bss_conf.assoc)) {
367 slot0 = dtim * bcnint * 3 - IWL_MIN_SLOT_TIME;
368 slot1 = IWL_MIN_SLOT_TIME;
369 } else if (!ctx_pan->vif->bss_conf.idle &&
370 !ctx_pan->vif->bss_conf.assoc) {
Johannes Berg325a7dd2011-09-22 15:14:55 -0700371 slot1 = dtim * bcnint * 3 - IWL_MIN_SLOT_TIME;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700372 slot0 = IWL_MIN_SLOT_TIME;
373 }
374 } else if (ctx_pan->vif) {
375 slot0 = 0;
376 slot1 = max_t(int, 1, ctx_pan->vif->bss_conf.dtim_period) *
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700377 ctx_pan->beacon_int;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700378 slot1 = max_t(int, DEFAULT_BEACON_INTERVAL, slot1);
379
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700380 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status)) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700381 slot0 = slot1 * 3 - IWL_MIN_SLOT_TIME;
382 slot1 = IWL_MIN_SLOT_TIME;
383 }
384 }
385
386 cmd.slots[0].width = cpu_to_le16(slot0);
387 cmd.slots[1].width = cpu_to_le16(slot1);
388
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700389 ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_WIPAN_PARAMS, CMD_SYNC,
Wey-Yi Guye505c432011-07-07 08:27:41 -0700390 sizeof(cmd), &cmd);
391 if (ret)
392 IWL_ERR(priv, "Error setting PAN parameters (%d)\n", ret);
393
394 return ret;
395}
396
Johannes Berg2295c662010-10-23 09:15:41 -0700397/**
398 * iwlagn_commit_rxon - commit staging_rxon to hardware
399 *
400 * The RXON command in staging_rxon is committed to the hardware and
401 * the active_rxon structure is updated with the new data. This
402 * function correctly transitions out of the RXON_ASSOC_MSK state if
403 * a HW tune is required based on the RXON structure changes.
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700404 *
405 * The connect/disconnect flow should be as the following:
406 *
407 * 1. make sure send RXON command with association bit unset if not connect
408 * this should include the channel and the band for the candidate
409 * to be connected to
410 * 2. Add Station before RXON association with the AP
411 * 3. RXON_timing has to send before RXON for connection
412 * 4. full RXON command - associated bit set
413 * 5. use RXON_ASSOC command to update any flags changes
Johannes Berg2295c662010-10-23 09:15:41 -0700414 */
415int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
416{
417 /* cast away the const for active_rxon in this function */
418 struct iwl_rxon_cmd *active = (void *)&ctx->active;
Johannes Berg2295c662010-10-23 09:15:41 -0700419 bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
420 int ret;
421
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700422 lockdep_assert_held(&priv->shrd->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700423
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700424 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
Wey-Yi Guyadb90a02010-11-26 11:09:42 -0800425 return -EINVAL;
426
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700427 if (!iwl_is_alive(priv->shrd))
Johannes Berg2295c662010-10-23 09:15:41 -0700428 return -EBUSY;
429
430 /* This function hardcodes a bunch of dual-mode assumptions */
431 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
432
433 if (!ctx->is_active)
434 return 0;
435
Johannes Bergdebcf732011-08-25 23:13:56 -0700436 /* override BSSID if necessary due to preauth */
437 if (ctx->preauth_bssid)
438 memcpy(ctx->staging.bssid_addr, ctx->bssid, ETH_ALEN);
439
Johannes Berg2295c662010-10-23 09:15:41 -0700440 /* always get timestamp with Rx frame */
441 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
442
Stanislaw Gruszka42b70a52011-05-26 17:14:22 +0200443 /*
444 * force CTS-to-self frames protection if RTS-CTS is not preferred
445 * one aggregation protection method
446 */
447 if (!(priv->cfg->ht_params &&
448 priv->cfg->ht_params->use_rts_for_aggregation))
449 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
450
Johannes Berg2295c662010-10-23 09:15:41 -0700451 if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) ||
452 !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK))
453 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
454 else
455 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
456
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700457 iwl_print_rx_config_cmd(priv, ctx->ctxid);
Johannes Berg2295c662010-10-23 09:15:41 -0700458 ret = iwl_check_rxon_cmd(priv, ctx);
459 if (ret) {
460 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
461 return -EINVAL;
462 }
463
464 /*
465 * receive commit_rxon request
466 * abort any previous channel switch if still in process
467 */
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700468 if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status) &&
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200469 (priv->switch_channel != ctx->staging.channel)) {
Johannes Berg2295c662010-10-23 09:15:41 -0700470 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200471 le16_to_cpu(priv->switch_channel));
Johannes Berg2295c662010-10-23 09:15:41 -0700472 iwl_chswitch_done(priv, false);
473 }
474
475 /*
476 * If we don't need to send a full RXON, we can use
477 * iwl_rxon_assoc_cmd which is used to reconfigure filter
478 * and other flags for the current radio configuration.
479 */
480 if (!iwl_full_rxon_required(priv, ctx)) {
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700481 ret = iwlagn_send_rxon_assoc(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700482 if (ret) {
483 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
484 return ret;
485 }
486
487 memcpy(active, &ctx->staging, sizeof(*active));
Wey-Yi Guy891db882011-05-27 08:40:24 -0700488 /*
489 * We do not commit tx power settings while channel changing,
490 * do it now if after settings changed.
491 */
492 iwl_set_tx_power(priv, priv->tx_power_next, false);
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700493
494 /* make sure we are in the right PS state */
495 iwl_power_update_mode(priv, true);
496
Johannes Berg2295c662010-10-23 09:15:41 -0700497 return 0;
498 }
499
Don Fry9d143e92011-04-20 15:23:57 -0700500 iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto);
Johannes Berg2295c662010-10-23 09:15:41 -0700501
502 IWL_DEBUG_INFO(priv,
503 "Going to commit RXON\n"
504 " * with%s RXON_FILTER_ASSOC_MSK\n"
505 " * channel = %d\n"
506 " * bssid = %pM\n",
507 (new_assoc ? "" : "out"),
508 le16_to_cpu(ctx->staging.channel),
509 ctx->staging.bssid_addr);
510
511 /*
Johannes Berg52d980c2010-11-10 09:56:45 -0800512 * Always clear associated first, but with the correct config.
513 * This is required as for example station addition for the
514 * AP station must be done after the BSSID is set to correctly
515 * set up filters in the device.
Johannes Berg2295c662010-10-23 09:15:41 -0700516 */
Wey-Yi Guy3083d032011-05-06 17:06:44 -0700517 ret = iwlagn_rxon_disconn(priv, ctx);
518 if (ret)
519 return ret;
Johannes Berg2295c662010-10-23 09:15:41 -0700520
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700521 ret = iwlagn_set_pan_params(priv);
522 if (ret)
523 return ret;
Johannes Berg2b9253d2011-05-27 08:40:26 -0700524
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700525 if (new_assoc)
526 return iwlagn_rxon_connect(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700527
528 return 0;
529}
530
531int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
532{
533 struct iwl_priv *priv = hw->priv;
534 struct iwl_rxon_context *ctx;
535 struct ieee80211_conf *conf = &hw->conf;
536 struct ieee80211_channel *channel = conf->channel;
537 const struct iwl_channel_info *ch_info;
538 int ret = 0;
539
Wey-Yi Guy770c72c2011-10-10 07:27:10 -0700540 IWL_DEBUG_MAC80211(priv, "enter: changed %#x", changed);
Johannes Berg2295c662010-10-23 09:15:41 -0700541
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700542 mutex_lock(&priv->shrd->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700543
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700544 if (unlikely(test_bit(STATUS_SCANNING, &priv->shrd->status))) {
Johannes Berg2295c662010-10-23 09:15:41 -0700545 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
546 goto out;
547 }
548
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700549 if (!iwl_is_ready(priv->shrd)) {
Johannes Berg2295c662010-10-23 09:15:41 -0700550 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
551 goto out;
552 }
553
554 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
555 IEEE80211_CONF_CHANGE_CHANNEL)) {
556 /* mac80211 uses static for non-HT which is what we want */
557 priv->current_ht_config.smps = conf->smps_mode;
558
559 /*
560 * Recalculate chain counts.
561 *
562 * If monitor mode is enabled then mac80211 will
563 * set up the SM PS mode to OFF if an HT channel is
564 * configured.
565 */
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700566 for_each_context(priv, ctx)
567 iwlagn_set_rxon_chain(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700568 }
569
570 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
571 unsigned long flags;
572
573 ch_info = iwl_get_channel_info(priv, channel->band,
574 channel->hw_value);
575 if (!is_channel_valid(ch_info)) {
576 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
577 ret = -EINVAL;
578 goto out;
579 }
580
Emmanuel Grumbach10b15e62011-08-25 23:10:43 -0700581 spin_lock_irqsave(&priv->shrd->lock, flags);
Johannes Berg2295c662010-10-23 09:15:41 -0700582
583 for_each_context(priv, ctx) {
584 /* Configure HT40 channels */
Daniel Halperin7caa2312011-04-06 12:47:25 -0700585 if (ctx->ht.enabled != conf_is_ht(conf))
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800586 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -0800587
Johannes Berg2295c662010-10-23 09:15:41 -0700588 if (ctx->ht.enabled) {
589 if (conf_is_ht40_minus(conf)) {
590 ctx->ht.extension_chan_offset =
591 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
592 ctx->ht.is_40mhz = true;
593 } else if (conf_is_ht40_plus(conf)) {
594 ctx->ht.extension_chan_offset =
595 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
596 ctx->ht.is_40mhz = true;
597 } else {
598 ctx->ht.extension_chan_offset =
599 IEEE80211_HT_PARAM_CHA_SEC_NONE;
600 ctx->ht.is_40mhz = false;
601 }
602 } else
603 ctx->ht.is_40mhz = false;
604
605 /*
606 * Default to no protection. Protection mode will
607 * later be set from BSS config in iwl_ht_conf
608 */
609 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
610
611 /* if we are switching from ht to 2.4 clear flags
612 * from any ht related info since 2.4 does not
613 * support ht */
614 if (le16_to_cpu(ctx->staging.channel) !=
615 channel->hw_value)
616 ctx->staging.flags = 0;
617
618 iwl_set_rxon_channel(priv, channel, ctx);
619 iwl_set_rxon_ht(priv, &priv->current_ht_config);
620
621 iwl_set_flags_for_band(priv, ctx, channel->band,
622 ctx->vif);
623 }
624
Emmanuel Grumbach10b15e62011-08-25 23:10:43 -0700625 spin_unlock_irqrestore(&priv->shrd->lock, flags);
Johannes Berg2295c662010-10-23 09:15:41 -0700626
627 iwl_update_bcast_stations(priv);
628
629 /*
630 * The list of supported rates and rate mask can be different
631 * for each band; since the band may have changed, reset
632 * the rate mask to what mac80211 lists.
633 */
634 iwl_set_rate(priv);
635 }
636
637 if (changed & (IEEE80211_CONF_CHANGE_PS |
638 IEEE80211_CONF_CHANGE_IDLE)) {
639 ret = iwl_power_update_mode(priv, false);
640 if (ret)
641 IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
642 }
643
644 if (changed & IEEE80211_CONF_CHANGE_POWER) {
645 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
646 priv->tx_power_user_lmt, conf->power_level);
647
648 iwl_set_tx_power(priv, conf->power_level, false);
649 }
650
651 for_each_context(priv, ctx) {
652 if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
653 continue;
654 iwlagn_commit_rxon(priv, ctx);
655 }
656 out:
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700657 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guy770c72c2011-10-10 07:27:10 -0700658 IWL_DEBUG_MAC80211(priv, "leave\n");
659
Johannes Berg2295c662010-10-23 09:15:41 -0700660 return ret;
661}
662
Johannes Berg2295c662010-10-23 09:15:41 -0700663static void iwlagn_check_needed_chains(struct iwl_priv *priv,
664 struct iwl_rxon_context *ctx,
665 struct ieee80211_bss_conf *bss_conf)
666{
667 struct ieee80211_vif *vif = ctx->vif;
668 struct iwl_rxon_context *tmp;
669 struct ieee80211_sta *sta;
670 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg850bedc2011-02-25 12:24:11 +0100671 struct ieee80211_sta_ht_cap *ht_cap;
Johannes Berg2295c662010-10-23 09:15:41 -0700672 bool need_multiple;
673
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700674 lockdep_assert_held(&priv->shrd->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700675
676 switch (vif->type) {
677 case NL80211_IFTYPE_STATION:
678 rcu_read_lock();
679 sta = ieee80211_find_sta(vif, bss_conf->bssid);
Johannes Berg850bedc2011-02-25 12:24:11 +0100680 if (!sta) {
Johannes Berg2295c662010-10-23 09:15:41 -0700681 /*
682 * If at all, this can only happen through a race
683 * when the AP disconnects us while we're still
684 * setting up the connection, in that case mac80211
685 * will soon tell us about that.
686 */
687 need_multiple = false;
Johannes Berg850bedc2011-02-25 12:24:11 +0100688 rcu_read_unlock();
689 break;
Johannes Berg2295c662010-10-23 09:15:41 -0700690 }
Johannes Berg850bedc2011-02-25 12:24:11 +0100691
692 ht_cap = &sta->ht_cap;
693
694 need_multiple = true;
695
696 /*
697 * If the peer advertises no support for receiving 2 and 3
698 * stream MCS rates, it can't be transmitting them either.
699 */
700 if (ht_cap->mcs.rx_mask[1] == 0 &&
701 ht_cap->mcs.rx_mask[2] == 0) {
702 need_multiple = false;
703 } else if (!(ht_cap->mcs.tx_params &
704 IEEE80211_HT_MCS_TX_DEFINED)) {
705 /* If it can't TX MCS at all ... */
706 need_multiple = false;
707 } else if (ht_cap->mcs.tx_params &
708 IEEE80211_HT_MCS_TX_RX_DIFF) {
709 int maxstreams;
710
711 /*
712 * But if it can receive them, it might still not
713 * be able to transmit them, which is what we need
714 * to check here -- so check the number of streams
715 * it advertises for TX (if different from RX).
716 */
717
718 maxstreams = (ht_cap->mcs.tx_params &
719 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK);
720 maxstreams >>=
721 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
722 maxstreams += 1;
723
724 if (maxstreams <= 1)
725 need_multiple = false;
726 }
727
Johannes Berg2295c662010-10-23 09:15:41 -0700728 rcu_read_unlock();
729 break;
730 case NL80211_IFTYPE_ADHOC:
731 /* currently */
732 need_multiple = false;
733 break;
734 default:
735 /* only AP really */
736 need_multiple = true;
737 break;
738 }
739
740 ctx->ht_need_multiple_chains = need_multiple;
741
742 if (!need_multiple) {
743 /* check all contexts */
744 for_each_context(priv, tmp) {
745 if (!tmp->vif)
746 continue;
747 if (tmp->ht_need_multiple_chains) {
748 need_multiple = true;
749 break;
750 }
751 }
752 }
753
754 ht_conf->single_chain_sufficient = !need_multiple;
755}
756
Don Fry5c3d29f2011-07-08 08:46:29 -0700757static void iwlagn_chain_noise_reset(struct iwl_priv *priv)
758{
759 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
760 int ret;
761
762 if ((data->state == IWL_CHAIN_NOISE_ALIVE) &&
763 iwl_is_any_associated(priv)) {
764 struct iwl_calib_chain_noise_reset_cmd cmd;
765
766 /* clear data for chain noise calibration algorithm */
767 data->chain_noise_a = 0;
768 data->chain_noise_b = 0;
769 data->chain_noise_c = 0;
770 data->chain_signal_a = 0;
771 data->chain_signal_b = 0;
772 data->chain_signal_c = 0;
773 data->beacon_count = 0;
774
775 memset(&cmd, 0, sizeof(cmd));
776 iwl_set_calib_hdr(&cmd.hdr,
Wey-Yi Guy898ed672011-07-13 08:38:57 -0700777 priv->phy_calib_chain_noise_reset_cmd);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700778 ret = iwl_trans_send_cmd_pdu(trans(priv),
Don Fry5c3d29f2011-07-08 08:46:29 -0700779 REPLY_PHY_CALIBRATION_CMD,
780 CMD_SYNC, sizeof(cmd), &cmd);
781 if (ret)
782 IWL_ERR(priv,
783 "Could not send REPLY_PHY_CALIBRATION_CMD\n");
784 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
785 IWL_DEBUG_CALIB(priv, "Run chain_noise_calibrate\n");
786 }
787}
788
Johannes Berg2295c662010-10-23 09:15:41 -0700789void iwlagn_bss_info_changed(struct ieee80211_hw *hw,
790 struct ieee80211_vif *vif,
791 struct ieee80211_bss_conf *bss_conf,
792 u32 changes)
793{
794 struct iwl_priv *priv = hw->priv;
795 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
796 int ret;
797 bool force = false;
798
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700799 mutex_lock(&priv->shrd->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700800
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700801 if (unlikely(!iwl_is_ready(priv->shrd))) {
Wey-Yi Guy14a085e2010-12-14 07:38:58 -0800802 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700803 mutex_unlock(&priv->shrd->mutex);
Shanyu Zhaoae0b6932010-12-02 11:02:28 -0800804 return;
805 }
806
807 if (unlikely(!ctx->vif)) {
808 IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n");
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700809 mutex_unlock(&priv->shrd->mutex);
Johannes Berg893654d2010-11-10 18:25:47 -0800810 return;
811 }
812
Johannes Berg2295c662010-10-23 09:15:41 -0700813 if (changes & BSS_CHANGED_BEACON_INT)
814 force = true;
815
816 if (changes & BSS_CHANGED_QOS) {
817 ctx->qos_data.qos_active = bss_conf->qos;
818 iwlagn_update_qos(priv, ctx);
819 }
820
821 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
822 if (vif->bss_conf.use_short_preamble)
823 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
824 else
825 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
826
827 if (changes & BSS_CHANGED_ASSOC) {
828 if (bss_conf->assoc) {
Johannes Berg2295c662010-10-23 09:15:41 -0700829 priv->timestamp = bss_conf->timestamp;
830 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
831 } else {
Garen Tamrazian68b99312011-03-30 02:29:32 -0700832 /*
833 * If we disassociate while there are pending
834 * frames, just wake up the queues and let the
835 * frames "escape" ... This shouldn't really
836 * be happening to start with, but we should
837 * not get stuck in this case either since it
838 * can happen if userspace gets confused.
839 */
840 if (ctx->last_tx_rejected) {
841 ctx->last_tx_rejected = false;
Emmanuel Grumbache13c0c52011-08-25 23:11:24 -0700842 iwl_trans_wake_any_queue(trans(priv),
843 ctx->ctxid);
Garen Tamrazian68b99312011-03-30 02:29:32 -0700844 }
Johannes Berg2295c662010-10-23 09:15:41 -0700845 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700846
847 if (ctx->ctxid == IWL_RXON_CTX_BSS)
848 priv->have_rekey_data = false;
Johannes Berg2295c662010-10-23 09:15:41 -0700849 }
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -0700850
851 iwlagn_bt_coex_rssi_monitor(priv);
Johannes Berg2295c662010-10-23 09:15:41 -0700852 }
853
854 if (ctx->ht.enabled) {
855 ctx->ht.protection = bss_conf->ht_operation_mode &
856 IEEE80211_HT_OP_MODE_PROTECTION;
857 ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode &
858 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
859 iwlagn_check_needed_chains(priv, ctx, bss_conf);
Johannes Bergb2769b82010-11-10 09:56:47 -0800860 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Johannes Berg2295c662010-10-23 09:15:41 -0700861 }
862
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700863 iwlagn_set_rxon_chain(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700864
865 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
866 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
867 else
868 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
869
870 if (bss_conf->use_cts_prot)
871 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
872 else
873 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
874
875 memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN);
876
877 if (vif->type == NL80211_IFTYPE_AP ||
878 vif->type == NL80211_IFTYPE_ADHOC) {
879 if (vif->bss_conf.enable_beacon) {
880 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
881 priv->beacon_ctx = ctx;
882 } else {
883 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
884 priv->beacon_ctx = NULL;
885 }
886 }
887
888 if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
889 iwlagn_commit_rxon(priv, ctx);
890
Johannes Berg8da8e622010-11-10 09:56:46 -0800891 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) {
892 /*
893 * The chain noise calibration will enable PM upon
894 * completion. If calibration has already been run
895 * then we need to enable power management here.
896 */
897 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
898 iwl_power_update_mode(priv, false);
899
900 /* Enable RX differential gain and sensitivity calibrations */
Don Fry5c3d29f2011-07-08 08:46:29 -0700901 if (!priv->disable_chain_noise_cal)
902 iwlagn_chain_noise_reset(priv);
Johannes Berg8da8e622010-11-10 09:56:46 -0800903 priv->start_calib = 1;
Johannes Bergdebcf732011-08-25 23:13:56 -0700904 WARN_ON(ctx->preauth_bssid);
Johannes Berg8da8e622010-11-10 09:56:46 -0800905 }
906
Johannes Berg2295c662010-10-23 09:15:41 -0700907 if (changes & BSS_CHANGED_IBSS) {
908 ret = iwlagn_manage_ibss_station(priv, vif,
909 bss_conf->ibss_joined);
910 if (ret)
911 IWL_ERR(priv, "failed to %s IBSS station %pM\n",
912 bss_conf->ibss_joined ? "add" : "remove",
913 bss_conf->bssid);
914 }
915
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700916 if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC &&
917 priv->beacon_ctx) {
918 if (iwlagn_update_beacon(priv, vif))
919 IWL_ERR(priv, "Error sending IBSS beacon\n");
920 }
921
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700922 mutex_unlock(&priv->shrd->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700923}
Johannes Bergae79d232010-11-10 09:56:38 -0800924
925void iwlagn_post_scan(struct iwl_priv *priv)
926{
927 struct iwl_rxon_context *ctx;
928
929 /*
Wey-Yi Guyc2b821d2011-06-03 07:54:14 -0700930 * We do not commit power settings while scan is pending,
931 * do it now if the settings changed.
932 */
933 iwl_power_set_mode(priv, &priv->power_data.sleep_cmd_next, false);
934 iwl_set_tx_power(priv, priv->tx_power_next, false);
935
936 /*
Johannes Bergae79d232010-11-10 09:56:38 -0800937 * Since setting the RXON may have been deferred while
938 * performing the scan, fire one off if needed
939 */
940 for_each_context(priv, ctx)
941 if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
942 iwlagn_commit_rxon(priv, ctx);
943
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700944 iwlagn_set_pan_params(priv);
Johannes Bergae79d232010-11-10 09:56:38 -0800945}