blob: 994fb21a0a8789b93bbc075f91a09851d26d86da [file] [log] [blame]
Johannes Berg2295c662010-10-23 09:15:41 -07001/******************************************************************************
2 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -08003 * Copyright(c) 2003 - 2012 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
Meenakshi Venkataraman55620922012-03-15 13:27:02 -070027#include <linux/etherdevice.h>
Johannes Berg2295c662010-10-23 09:15:41 -070028#include "iwl-dev.h"
29#include "iwl-agn.h"
Johannes Berg2295c662010-10-23 09:15:41 -070030#include "iwl-core.h"
31#include "iwl-agn-calib.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070032#include "iwl-trans.h"
Emmanuel Grumbach48f20d32011-08-25 23:10:36 -070033#include "iwl-shared.h"
Johannes Berg2295c662010-10-23 09:15:41 -070034
Meenakshi Venkataraman47042ac2012-03-13 17:07:48 -070035/*
36 * initialize rxon structure with default values from eeprom
37 */
38void iwl_connection_init_rx_config(struct iwl_priv *priv,
39 struct iwl_rxon_context *ctx)
40{
41 const struct iwl_channel_info *ch_info;
42
43 memset(&ctx->staging, 0, sizeof(ctx->staging));
44
45 if (!ctx->vif) {
46 ctx->staging.dev_type = ctx->unused_devtype;
47 } else
48 switch (ctx->vif->type) {
49 case NL80211_IFTYPE_AP:
50 ctx->staging.dev_type = ctx->ap_devtype;
51 break;
52
53 case NL80211_IFTYPE_STATION:
54 ctx->staging.dev_type = ctx->station_devtype;
55 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
56 break;
57
58 case NL80211_IFTYPE_ADHOC:
59 ctx->staging.dev_type = ctx->ibss_devtype;
60 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
61 ctx->staging.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
62 RXON_FILTER_ACCEPT_GRP_MSK;
63 break;
64
65 default:
66 IWL_ERR(priv, "Unsupported interface type %d\n",
67 ctx->vif->type);
68 break;
69 }
70
71#if 0
72 /* TODO: Figure out when short_preamble would be set and cache from
73 * that */
74 if (!hw_to_local(priv->hw)->short_preamble)
75 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
76 else
77 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
78#endif
79
80 ch_info = iwl_get_channel_info(priv, priv->band,
81 le16_to_cpu(ctx->active.channel));
82
83 if (!ch_info)
84 ch_info = &priv->channel_info[0];
85
86 ctx->staging.channel = cpu_to_le16(ch_info->channel);
87 priv->band = ch_info->band;
88
89 iwl_set_flags_for_band(priv, ctx, priv->band, ctx->vif);
90
91 ctx->staging.ofdm_basic_rates =
92 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
93 ctx->staging.cck_basic_rates =
94 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
95
96 /* clear both MIX and PURE40 mode flag */
97 ctx->staging.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
98 RXON_FLG_CHANNEL_MODE_PURE_40);
99 if (ctx->vif)
100 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
101
102 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
103 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
104 ctx->staging.ofdm_ht_triple_stream_basic_rates = 0xff;
105}
106
Johannes Berg2295c662010-10-23 09:15:41 -0700107static int iwlagn_disable_bss(struct iwl_priv *priv,
108 struct iwl_rxon_context *ctx,
109 struct iwl_rxon_cmd *send)
110{
111 __le32 old_filter = send->filter_flags;
112 int ret;
113
114 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Berge10a0532012-03-06 13:30:39 -0800115 ret = iwl_dvm_send_cmd_pdu(priv, ctx->rxon_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700116 CMD_SYNC, sizeof(*send), send);
Johannes Berg2295c662010-10-23 09:15:41 -0700117
118 send->filter_flags = old_filter;
119
120 if (ret)
Todd Previteb36b1102011-11-10 06:55:02 -0800121 IWL_DEBUG_QUIET_RFKILL(priv,
122 "Error clearing ASSOC_MSK on BSS (%d)\n", ret);
Johannes Berg2295c662010-10-23 09:15:41 -0700123
124 return ret;
125}
126
127static int iwlagn_disable_pan(struct iwl_priv *priv,
128 struct iwl_rxon_context *ctx,
129 struct iwl_rxon_cmd *send)
130{
Johannes Berg311dce72011-01-04 16:22:01 -0800131 struct iwl_notification_wait disable_wait;
Johannes Berg2295c662010-10-23 09:15:41 -0700132 __le32 old_filter = send->filter_flags;
133 u8 old_dev_type = send->dev_type;
134 int ret;
Johannes Bergdb662d42012-03-15 13:26:44 -0700135 static const u8 deactivate_cmd[] = {
136 REPLY_WIPAN_DEACTIVATION_COMPLETE
137 };
Johannes Berg2295c662010-10-23 09:15:41 -0700138
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800139 iwl_init_notification_wait(&priv->notif_wait, &disable_wait,
Johannes Bergdb662d42012-03-15 13:26:44 -0700140 deactivate_cmd, ARRAY_SIZE(deactivate_cmd),
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800141 NULL, NULL);
Johannes Berg311dce72011-01-04 16:22:01 -0800142
Johannes Berg2295c662010-10-23 09:15:41 -0700143 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
144 send->dev_type = RXON_DEV_TYPE_P2P;
Johannes Berge10a0532012-03-06 13:30:39 -0800145 ret = iwl_dvm_send_cmd_pdu(priv, ctx->rxon_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700146 CMD_SYNC, sizeof(*send), send);
Johannes Berg2295c662010-10-23 09:15:41 -0700147
148 send->filter_flags = old_filter;
149 send->dev_type = old_dev_type;
150
Johannes Berg311dce72011-01-04 16:22:01 -0800151 if (ret) {
Johannes Berg2295c662010-10-23 09:15:41 -0700152 IWL_ERR(priv, "Error disabling PAN (%d)\n", ret);
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800153 iwl_remove_notification(&priv->notif_wait, &disable_wait);
Johannes Berg311dce72011-01-04 16:22:01 -0800154 } else {
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800155 ret = iwl_wait_notification(&priv->notif_wait,
156 &disable_wait, HZ);
Johannes Berga8674a12011-04-13 03:14:48 -0700157 if (ret)
Johannes Berg311dce72011-01-04 16:22:01 -0800158 IWL_ERR(priv, "Timed out waiting for PAN disable\n");
159 }
Johannes Berg2295c662010-10-23 09:15:41 -0700160
161 return ret;
162}
163
Johannes Berg2b9253d2011-05-27 08:40:26 -0700164static int iwlagn_disconn_pan(struct iwl_priv *priv,
165 struct iwl_rxon_context *ctx,
166 struct iwl_rxon_cmd *send)
167{
168 __le32 old_filter = send->filter_flags;
169 int ret;
170
171 send->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Berge10a0532012-03-06 13:30:39 -0800172 ret = iwl_dvm_send_cmd_pdu(priv, ctx->rxon_cmd, CMD_SYNC,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700173 sizeof(*send), send);
Johannes Berg2b9253d2011-05-27 08:40:26 -0700174
175 send->filter_flags = old_filter;
176
177 return ret;
178}
179
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800180static void iwlagn_update_qos(struct iwl_priv *priv,
181 struct iwl_rxon_context *ctx)
182{
183 int ret;
184
185 if (!ctx->is_active)
186 return;
187
188 ctx->qos_data.def_qos_parm.qos_flags = 0;
189
190 if (ctx->qos_data.qos_active)
191 ctx->qos_data.def_qos_parm.qos_flags |=
192 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
193
194 if (ctx->ht.enabled)
195 ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
196
Emmanuel Grumbach0dcf50c2011-11-10 06:55:23 -0800197 IWL_DEBUG_INFO(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800198 ctx->qos_data.qos_active,
199 ctx->qos_data.def_qos_parm.qos_flags);
200
Johannes Berge10a0532012-03-06 13:30:39 -0800201 ret = iwl_dvm_send_cmd_pdu(priv, ctx->qos_cmd, CMD_SYNC,
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800202 sizeof(struct iwl_qosparam_cmd),
203 &ctx->qos_data.def_qos_parm);
204 if (ret)
Todd Previteb36b1102011-11-10 06:55:02 -0800205 IWL_DEBUG_QUIET_RFKILL(priv, "Failed to update QoS\n");
Shanyu Zhaof4115d42010-11-10 18:25:58 -0800206}
207
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700208static int iwlagn_update_beacon(struct iwl_priv *priv,
209 struct ieee80211_vif *vif)
210{
Johannes Bergb1eea292012-03-06 13:30:42 -0800211 lockdep_assert_held(&priv->mutex);
Johannes Bergbd50a8ab2010-10-23 09:15:42 -0700212
213 dev_kfree_skb(priv->beacon_skb);
214 priv->beacon_skb = ieee80211_beacon_get(priv->hw, vif);
215 if (!priv->beacon_skb)
216 return -ENOMEM;
217 return iwlagn_send_beacon_cmd(priv);
218}
219
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700220static int iwlagn_send_rxon_assoc(struct iwl_priv *priv,
221 struct iwl_rxon_context *ctx)
222{
223 int ret = 0;
Wey-Yi Guy89e746b2011-04-19 16:52:58 -0700224 struct iwl_rxon_assoc_cmd rxon_assoc;
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700225 const struct iwl_rxon_cmd *rxon1 = &ctx->staging;
226 const struct iwl_rxon_cmd *rxon2 = &ctx->active;
227
228 if ((rxon1->flags == rxon2->flags) &&
229 (rxon1->filter_flags == rxon2->filter_flags) &&
230 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
231 (rxon1->ofdm_ht_single_stream_basic_rates ==
232 rxon2->ofdm_ht_single_stream_basic_rates) &&
233 (rxon1->ofdm_ht_dual_stream_basic_rates ==
234 rxon2->ofdm_ht_dual_stream_basic_rates) &&
235 (rxon1->ofdm_ht_triple_stream_basic_rates ==
236 rxon2->ofdm_ht_triple_stream_basic_rates) &&
237 (rxon1->acquisition_data == rxon2->acquisition_data) &&
238 (rxon1->rx_chain == rxon2->rx_chain) &&
239 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
240 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
241 return 0;
242 }
243
244 rxon_assoc.flags = ctx->staging.flags;
245 rxon_assoc.filter_flags = ctx->staging.filter_flags;
246 rxon_assoc.ofdm_basic_rates = ctx->staging.ofdm_basic_rates;
247 rxon_assoc.cck_basic_rates = ctx->staging.cck_basic_rates;
248 rxon_assoc.reserved1 = 0;
249 rxon_assoc.reserved2 = 0;
250 rxon_assoc.reserved3 = 0;
251 rxon_assoc.ofdm_ht_single_stream_basic_rates =
252 ctx->staging.ofdm_ht_single_stream_basic_rates;
253 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
254 ctx->staging.ofdm_ht_dual_stream_basic_rates;
255 rxon_assoc.rx_chain_select_flags = ctx->staging.rx_chain;
256 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
257 ctx->staging.ofdm_ht_triple_stream_basic_rates;
258 rxon_assoc.acquisition_data = ctx->staging.acquisition_data;
259
Johannes Berge10a0532012-03-06 13:30:39 -0800260 ret = iwl_dvm_send_cmd_pdu(priv, ctx->rxon_assoc_cmd,
Emmanuel Grumbache419d622011-07-08 08:46:14 -0700261 CMD_ASYNC, sizeof(rxon_assoc), &rxon_assoc);
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700262 return ret;
263}
264
Meenakshi Venkataramandff96c12012-03-15 13:26:59 -0700265static u16 iwl_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
266{
267 u16 new_val;
268 u16 beacon_factor;
269
270 /*
271 * If mac80211 hasn't given us a beacon interval, program
272 * the default into the device (not checking this here
273 * would cause the adjustment below to return the maximum
274 * value, which may break PAN.)
275 */
276 if (!beacon_val)
277 return DEFAULT_BEACON_INTERVAL;
278
279 /*
280 * If the beacon interval we obtained from the peer
281 * is too large, we'll have to wake up more often
282 * (and in IBSS case, we'll beacon too much)
283 *
284 * For example, if max_beacon_val is 4096, and the
285 * requested beacon interval is 7000, we'll have to
286 * use 3500 to be able to wake up on the beacons.
287 *
288 * This could badly influence beacon detection stats.
289 */
290
291 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
292 new_val = beacon_val / beacon_factor;
293
294 if (!new_val)
295 new_val = max_beacon_val;
296
297 return new_val;
298}
299
300static int iwl_send_rxon_timing(struct iwl_priv *priv,
301 struct iwl_rxon_context *ctx)
302{
303 u64 tsf;
304 s32 interval_tm, rem;
305 struct ieee80211_conf *conf = NULL;
306 u16 beacon_int;
307 struct ieee80211_vif *vif = ctx->vif;
308
309 conf = &priv->hw->conf;
310
311 lockdep_assert_held(&priv->mutex);
312
313 memset(&ctx->timing, 0, sizeof(struct iwl_rxon_time_cmd));
314
315 ctx->timing.timestamp = cpu_to_le64(priv->timestamp);
316 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
317
318 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
319
320 /*
321 * TODO: For IBSS we need to get atim_window from mac80211,
322 * for now just always use 0
323 */
324 ctx->timing.atim_window = 0;
325
326 if (ctx->ctxid == IWL_RXON_CTX_PAN &&
327 (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION) &&
328 iwl_is_associated(priv, IWL_RXON_CTX_BSS) &&
329 priv->contexts[IWL_RXON_CTX_BSS].vif &&
330 priv->contexts[IWL_RXON_CTX_BSS].vif->bss_conf.beacon_int) {
331 ctx->timing.beacon_interval =
332 priv->contexts[IWL_RXON_CTX_BSS].timing.beacon_interval;
333 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
334 } else if (ctx->ctxid == IWL_RXON_CTX_BSS &&
335 iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
336 priv->contexts[IWL_RXON_CTX_PAN].vif &&
337 priv->contexts[IWL_RXON_CTX_PAN].vif->bss_conf.beacon_int &&
338 (!iwl_is_associated_ctx(ctx) || !ctx->vif ||
339 !ctx->vif->bss_conf.beacon_int)) {
340 ctx->timing.beacon_interval =
341 priv->contexts[IWL_RXON_CTX_PAN].timing.beacon_interval;
342 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
343 } else {
344 beacon_int = iwl_adjust_beacon_interval(beacon_int,
345 IWL_MAX_UCODE_BEACON_INTERVAL * TIME_UNIT);
346 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
347 }
348
349 ctx->beacon_int = beacon_int;
350
351 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
352 interval_tm = beacon_int * TIME_UNIT;
353 rem = do_div(tsf, interval_tm);
354 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
355
356 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ?: 1) : 1;
357
358 IWL_DEBUG_ASSOC(priv,
359 "beacon interval %d beacon timer %d beacon tim %d\n",
360 le16_to_cpu(ctx->timing.beacon_interval),
361 le32_to_cpu(ctx->timing.beacon_init_val),
362 le16_to_cpu(ctx->timing.atim_window));
363
364 return iwl_dvm_send_cmd_pdu(priv, ctx->rxon_timing_cmd,
365 CMD_SYNC, sizeof(ctx->timing), &ctx->timing);
366}
367
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700368static int iwlagn_rxon_disconn(struct iwl_priv *priv,
369 struct iwl_rxon_context *ctx)
370{
371 int ret;
372 struct iwl_rxon_cmd *active = (void *)&ctx->active;
373
Johannes Berg2b9253d2011-05-27 08:40:26 -0700374 if (ctx->ctxid == IWL_RXON_CTX_BSS) {
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700375 ret = iwlagn_disable_bss(priv, ctx, &ctx->staging);
Johannes Berg2b9253d2011-05-27 08:40:26 -0700376 } else {
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700377 ret = iwlagn_disable_pan(priv, ctx, &ctx->staging);
Johannes Berg2b9253d2011-05-27 08:40:26 -0700378 if (ret)
379 return ret;
380 if (ctx->vif) {
381 ret = iwl_send_rxon_timing(priv, ctx);
382 if (ret) {
383 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
384 return ret;
385 }
386 ret = iwlagn_disconn_pan(priv, ctx, &ctx->staging);
387 }
388 }
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700389 if (ret)
390 return ret;
391
392 /*
393 * Un-assoc RXON clears the station table and WEP
394 * keys, so we have to restore those afterwards.
395 */
396 iwl_clear_ucode_stations(priv, ctx);
Johannes Bergf775aa06d2011-06-22 06:34:09 -0700397 /* update -- might need P2P now */
398 iwl_update_bcast_station(priv, ctx);
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700399 iwl_restore_stations(priv, ctx);
400 ret = iwl_restore_default_wep_keys(priv, ctx);
401 if (ret) {
402 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
403 return ret;
404 }
405
406 memcpy(active, &ctx->staging, sizeof(*active));
407 return 0;
408}
409
410static int iwlagn_rxon_connect(struct iwl_priv *priv,
411 struct iwl_rxon_context *ctx)
412{
413 int ret;
414 struct iwl_rxon_cmd *active = (void *)&ctx->active;
415
416 /* RXON timing must be before associated RXON */
Johannes Berg2b9253d2011-05-27 08:40:26 -0700417 if (ctx->ctxid == IWL_RXON_CTX_BSS) {
418 ret = iwl_send_rxon_timing(priv, ctx);
419 if (ret) {
420 IWL_ERR(priv, "Failed to send timing (%d)!\n", ret);
421 return ret;
422 }
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700423 }
424 /* QoS info may be cleared by previous un-assoc RXON */
425 iwlagn_update_qos(priv, ctx);
426
427 /*
428 * We'll run into this code path when beaconing is
429 * enabled, but then we also need to send the beacon
430 * to the device.
431 */
432 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_AP)) {
433 ret = iwlagn_update_beacon(priv, ctx->vif);
434 if (ret) {
435 IWL_ERR(priv,
436 "Error sending required beacon (%d)!\n",
437 ret);
438 return ret;
439 }
440 }
441
442 priv->start_calib = 0;
443 /*
444 * Apply the new configuration.
445 *
446 * Associated RXON doesn't clear the station table in uCode,
447 * so we don't need to restore stations etc. after this.
448 */
Johannes Berge10a0532012-03-06 13:30:39 -0800449 ret = iwl_dvm_send_cmd_pdu(priv, ctx->rxon_cmd, CMD_SYNC,
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700450 sizeof(struct iwl_rxon_cmd), &ctx->staging);
451 if (ret) {
452 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
453 return ret;
454 }
455 memcpy(active, &ctx->staging, sizeof(*active));
456
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700457 /* IBSS beacon needs to be sent after setting assoc */
458 if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_ADHOC))
459 if (iwlagn_update_beacon(priv, ctx->vif))
460 IWL_ERR(priv, "Error sending IBSS beacon\n");
461 iwl_init_sensitivity(priv);
462
463 /*
464 * If we issue a new RXON command which required a tune then
465 * we must send a new TXPOWER command or we won't be able to
466 * Tx any frames.
467 *
468 * It's expected we set power here if channel is changing.
469 */
470 ret = iwl_set_tx_power(priv, priv->tx_power_next, true);
471 if (ret) {
472 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
473 return ret;
474 }
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700475
Stanislaw Gruszka107ef972011-10-12 10:16:35 +0200476 if (ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION &&
Don Fry38622412011-12-16 07:07:36 -0800477 cfg(priv)->ht_params && cfg(priv)->ht_params->smps_mode)
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700478 ieee80211_request_smps(ctx->vif,
Don Fry38622412011-12-16 07:07:36 -0800479 cfg(priv)->ht_params->smps_mode);
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700480
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700481 return 0;
482}
483
Wey-Yi Guye505c432011-07-07 08:27:41 -0700484int iwlagn_set_pan_params(struct iwl_priv *priv)
485{
486 struct iwl_wipan_params_cmd cmd;
487 struct iwl_rxon_context *ctx_bss, *ctx_pan;
488 int slot0 = 300, slot1 = 0;
489 int ret;
490
Johannes Berga18f61b2012-03-15 13:26:53 -0700491 if (priv->valid_contexts == BIT(IWL_RXON_CTX_BSS))
Wey-Yi Guye505c432011-07-07 08:27:41 -0700492 return 0;
493
494 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
495
Johannes Bergb1eea292012-03-06 13:30:42 -0800496 lockdep_assert_held(&priv->mutex);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700497
498 ctx_bss = &priv->contexts[IWL_RXON_CTX_BSS];
499 ctx_pan = &priv->contexts[IWL_RXON_CTX_PAN];
500
501 /*
502 * If the PAN context is inactive, then we don't need
503 * to update the PAN parameters, the last thing we'll
504 * have done before it goes inactive is making the PAN
505 * parameters be WLAN-only.
506 */
507 if (!ctx_pan->is_active)
508 return 0;
509
510 memset(&cmd, 0, sizeof(cmd));
511
512 /* only 2 slots are currently allowed */
513 cmd.num_slots = 2;
514
515 cmd.slots[0].type = 0; /* BSS */
516 cmd.slots[1].type = 1; /* PAN */
517
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700518 if (priv->hw_roc_setup) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700519 /* both contexts must be used for this to happen */
Johannes Bergc6baf7f2011-07-23 10:24:47 -0700520 slot1 = IWL_MIN_SLOT_TIME;
521 slot0 = 3000;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700522 } else if (ctx_bss->vif && ctx_pan->vif) {
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700523 int bcnint = ctx_pan->beacon_int;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700524 int dtim = ctx_pan->vif->bss_conf.dtim_period ?: 1;
525
526 /* should be set, but seems unused?? */
527 cmd.flags |= cpu_to_le16(IWL_WIPAN_PARAMS_FLG_SLOTTED_MODE);
528
529 if (ctx_pan->vif->type == NL80211_IFTYPE_AP &&
530 bcnint &&
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700531 bcnint != ctx_bss->beacon_int) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700532 IWL_ERR(priv,
533 "beacon intervals don't match (%d, %d)\n",
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700534 ctx_bss->beacon_int, ctx_pan->beacon_int);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700535 } else
536 bcnint = max_t(int, bcnint,
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700537 ctx_bss->beacon_int);
Wey-Yi Guye505c432011-07-07 08:27:41 -0700538 if (!bcnint)
539 bcnint = DEFAULT_BEACON_INTERVAL;
540 slot0 = bcnint / 2;
541 slot1 = bcnint - slot0;
542
Don Fry83626402012-03-07 09:52:37 -0800543 if (test_bit(STATUS_SCAN_HW, &priv->status) ||
Wey-Yi Guye505c432011-07-07 08:27:41 -0700544 (!ctx_bss->vif->bss_conf.idle &&
545 !ctx_bss->vif->bss_conf.assoc)) {
546 slot0 = dtim * bcnint * 3 - IWL_MIN_SLOT_TIME;
547 slot1 = IWL_MIN_SLOT_TIME;
548 } else if (!ctx_pan->vif->bss_conf.idle &&
549 !ctx_pan->vif->bss_conf.assoc) {
Johannes Berg325a7dd2011-09-22 15:14:55 -0700550 slot1 = dtim * bcnint * 3 - IWL_MIN_SLOT_TIME;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700551 slot0 = IWL_MIN_SLOT_TIME;
552 }
553 } else if (ctx_pan->vif) {
554 slot0 = 0;
555 slot1 = max_t(int, 1, ctx_pan->vif->bss_conf.dtim_period) *
Johannes Bergbbb05cb2011-07-18 01:59:22 -0700556 ctx_pan->beacon_int;
Wey-Yi Guye505c432011-07-07 08:27:41 -0700557 slot1 = max_t(int, DEFAULT_BEACON_INTERVAL, slot1);
558
Don Fry83626402012-03-07 09:52:37 -0800559 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Wey-Yi Guye505c432011-07-07 08:27:41 -0700560 slot0 = slot1 * 3 - IWL_MIN_SLOT_TIME;
561 slot1 = IWL_MIN_SLOT_TIME;
562 }
563 }
564
565 cmd.slots[0].width = cpu_to_le16(slot0);
566 cmd.slots[1].width = cpu_to_le16(slot1);
567
Johannes Berge10a0532012-03-06 13:30:39 -0800568 ret = iwl_dvm_send_cmd_pdu(priv, REPLY_WIPAN_PARAMS, CMD_SYNC,
Wey-Yi Guye505c432011-07-07 08:27:41 -0700569 sizeof(cmd), &cmd);
570 if (ret)
571 IWL_ERR(priv, "Error setting PAN parameters (%d)\n", ret);
572
573 return ret;
574}
575
Meenakshi Venkataramandd641732012-03-13 16:25:38 -0700576static void _iwl_set_rxon_ht(struct iwl_priv *priv,
577 struct iwl_ht_config *ht_conf,
578 struct iwl_rxon_context *ctx)
579{
580 struct iwl_rxon_cmd *rxon = &ctx->staging;
581
582 if (!ctx->ht.enabled) {
583 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
584 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
585 RXON_FLG_HT40_PROT_MSK |
586 RXON_FLG_HT_PROT_MSK);
587 return;
588 }
589
590 /* FIXME: if the definition of ht.protection changed, the "translation"
591 * will be needed for rxon->flags
592 */
593 rxon->flags |= cpu_to_le32(ctx->ht.protection <<
594 RXON_FLG_HT_OPERATING_MODE_POS);
595
596 /* Set up channel bandwidth:
597 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
598 /* clear the HT channel mode before set the mode */
599 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
600 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
601 if (iwl_is_ht40_tx_allowed(priv, ctx, NULL)) {
602 /* pure ht40 */
603 if (ctx->ht.protection ==
604 IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
605 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
606 /*
607 * Note: control channel is opposite of extension
608 * channel
609 */
610 switch (ctx->ht.extension_chan_offset) {
611 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
612 rxon->flags &=
613 ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
614 break;
615 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
616 rxon->flags |=
617 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
618 break;
619 }
620 } else {
621 /*
622 * Note: control channel is opposite of extension
623 * channel
624 */
625 switch (ctx->ht.extension_chan_offset) {
626 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
627 rxon->flags &=
628 ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
629 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
630 break;
631 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
632 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
633 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
634 break;
635 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
636 default:
637 /*
638 * channel location only valid if in Mixed
639 * mode
640 */
641 IWL_ERR(priv,
642 "invalid extension channel offset\n");
643 break;
644 }
645 }
646 } else {
647 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
648 }
649
650 iwlagn_set_rxon_chain(priv, ctx);
651
652 IWL_DEBUG_ASSOC(priv, "rxon flags 0x%X operation mode :0x%X "
653 "extension channel offset 0x%x\n",
654 le32_to_cpu(rxon->flags), ctx->ht.protection,
655 ctx->ht.extension_chan_offset);
656}
657
658void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_config *ht_conf)
659{
660 struct iwl_rxon_context *ctx;
661
662 for_each_context(priv, ctx)
663 _iwl_set_rxon_ht(priv, ht_conf, ctx);
664}
665
Meenakshi Venkataramanfedfa872012-03-13 16:31:34 -0700666/**
667 * iwl_set_rxon_channel - Set the band and channel values in staging RXON
668 * @ch: requested channel as a pointer to struct ieee80211_channel
669
670 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
671 * in the staging RXON flag structure based on the ch->band
672 */
673void iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch,
674 struct iwl_rxon_context *ctx)
675{
676 enum ieee80211_band band = ch->band;
677 u16 channel = ch->hw_value;
678
679 if ((le16_to_cpu(ctx->staging.channel) == channel) &&
680 (priv->band == band))
681 return;
682
683 ctx->staging.channel = cpu_to_le16(channel);
684 if (band == IEEE80211_BAND_5GHZ)
685 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
686 else
687 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
688
689 priv->band = band;
690
691 IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
692
693}
694
Meenakshi Venkataraman50319f72012-03-13 16:45:00 -0700695void iwl_set_flags_for_band(struct iwl_priv *priv,
696 struct iwl_rxon_context *ctx,
697 enum ieee80211_band band,
698 struct ieee80211_vif *vif)
699{
700 if (band == IEEE80211_BAND_5GHZ) {
701 ctx->staging.flags &=
702 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
703 | RXON_FLG_CCK_MSK);
704 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
705 } else {
706 /* Copied from iwl_post_associate() */
707 if (vif && vif->bss_conf.use_short_slot)
708 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
709 else
710 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
711
712 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
713 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
714 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
715 }
716}
717
Meenakshi Venkataraman354a4532012-03-15 13:27:00 -0700718static void iwl_set_rxon_hwcrypto(struct iwl_priv *priv,
719 struct iwl_rxon_context *ctx, int hw_decrypt)
720{
721 struct iwl_rxon_cmd *rxon = &ctx->staging;
722
723 if (hw_decrypt)
724 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
725 else
726 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
727
728}
729
Meenakshi Venkataraman8931b572012-03-15 13:27:01 -0700730/* validate RXON structure is valid */
731static int iwl_check_rxon_cmd(struct iwl_priv *priv,
732 struct iwl_rxon_context *ctx)
733{
734 struct iwl_rxon_cmd *rxon = &ctx->staging;
735 u32 errors = 0;
736
737 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
738 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
739 IWL_WARN(priv, "check 2.4G: wrong narrow\n");
740 errors |= BIT(0);
741 }
742 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
743 IWL_WARN(priv, "check 2.4G: wrong radar\n");
744 errors |= BIT(1);
745 }
746 } else {
747 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
748 IWL_WARN(priv, "check 5.2G: not short slot!\n");
749 errors |= BIT(2);
750 }
751 if (rxon->flags & RXON_FLG_CCK_MSK) {
752 IWL_WARN(priv, "check 5.2G: CCK!\n");
753 errors |= BIT(3);
754 }
755 }
756 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
757 IWL_WARN(priv, "mac/bssid mcast!\n");
758 errors |= BIT(4);
759 }
760
761 /* make sure basic rates 6Mbps and 1Mbps are supported */
762 if ((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0 &&
763 (rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0) {
764 IWL_WARN(priv, "neither 1 nor 6 are basic\n");
765 errors |= BIT(5);
766 }
767
768 if (le16_to_cpu(rxon->assoc_id) > 2007) {
769 IWL_WARN(priv, "aid > 2007\n");
770 errors |= BIT(6);
771 }
772
773 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
774 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
775 IWL_WARN(priv, "CCK and short slot\n");
776 errors |= BIT(7);
777 }
778
779 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
780 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
781 IWL_WARN(priv, "CCK and auto detect");
782 errors |= BIT(8);
783 }
784
785 if ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
786 RXON_FLG_TGG_PROTECT_MSK)) ==
787 RXON_FLG_TGG_PROTECT_MSK) {
788 IWL_WARN(priv, "TGg but no auto-detect\n");
789 errors |= BIT(9);
790 }
791
792 if (rxon->channel == 0) {
793 IWL_WARN(priv, "zero channel is invalid\n");
794 errors |= BIT(10);
795 }
796
797 WARN(errors, "Invalid RXON (%#x), channel %d",
798 errors, le16_to_cpu(rxon->channel));
799
800 return errors ? -EINVAL : 0;
801}
802
Johannes Berg2295c662010-10-23 09:15:41 -0700803/**
Meenakshi Venkataraman55620922012-03-15 13:27:02 -0700804 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
805 * @priv: staging_rxon is compared to active_rxon
806 *
807 * If the RXON structure is changing enough to require a new tune,
808 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
809 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
810 */
811static int iwl_full_rxon_required(struct iwl_priv *priv,
812 struct iwl_rxon_context *ctx)
813{
814 const struct iwl_rxon_cmd *staging = &ctx->staging;
815 const struct iwl_rxon_cmd *active = &ctx->active;
816
817#define CHK(cond) \
818 if ((cond)) { \
819 IWL_DEBUG_INFO(priv, "need full RXON - " #cond "\n"); \
820 return 1; \
821 }
822
823#define CHK_NEQ(c1, c2) \
824 if ((c1) != (c2)) { \
825 IWL_DEBUG_INFO(priv, "need full RXON - " \
826 #c1 " != " #c2 " - %d != %d\n", \
827 (c1), (c2)); \
828 return 1; \
829 }
830
831 /* These items are only settable from the full RXON command */
832 CHK(!iwl_is_associated_ctx(ctx));
833 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
834 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
835 CHK(compare_ether_addr(staging->wlap_bssid_addr,
836 active->wlap_bssid_addr));
837 CHK_NEQ(staging->dev_type, active->dev_type);
838 CHK_NEQ(staging->channel, active->channel);
839 CHK_NEQ(staging->air_propagation, active->air_propagation);
840 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
841 active->ofdm_ht_single_stream_basic_rates);
842 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
843 active->ofdm_ht_dual_stream_basic_rates);
844 CHK_NEQ(staging->ofdm_ht_triple_stream_basic_rates,
845 active->ofdm_ht_triple_stream_basic_rates);
846 CHK_NEQ(staging->assoc_id, active->assoc_id);
847
848 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
849 * be updated with the RXON_ASSOC command -- however only some
850 * flag transitions are allowed using RXON_ASSOC */
851
852 /* Check if we are not switching bands */
853 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
854 active->flags & RXON_FLG_BAND_24G_MSK);
855
856 /* Check if we are switching association toggle */
857 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
858 active->filter_flags & RXON_FILTER_ASSOC_MSK);
859
860#undef CHK
861#undef CHK_NEQ
862
863 return 0;
864}
865
866/**
Johannes Berg2295c662010-10-23 09:15:41 -0700867 * iwlagn_commit_rxon - commit staging_rxon to hardware
868 *
869 * The RXON command in staging_rxon is committed to the hardware and
870 * the active_rxon structure is updated with the new data. This
871 * function correctly transitions out of the RXON_ASSOC_MSK state if
872 * a HW tune is required based on the RXON structure changes.
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700873 *
874 * The connect/disconnect flow should be as the following:
875 *
876 * 1. make sure send RXON command with association bit unset if not connect
877 * this should include the channel and the band for the candidate
878 * to be connected to
879 * 2. Add Station before RXON association with the AP
880 * 3. RXON_timing has to send before RXON for connection
881 * 4. full RXON command - associated bit set
882 * 5. use RXON_ASSOC command to update any flags changes
Johannes Berg2295c662010-10-23 09:15:41 -0700883 */
884int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
885{
886 /* cast away the const for active_rxon in this function */
887 struct iwl_rxon_cmd *active = (void *)&ctx->active;
Johannes Berg2295c662010-10-23 09:15:41 -0700888 bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
889 int ret;
890
Johannes Bergb1eea292012-03-06 13:30:42 -0800891 lockdep_assert_held(&priv->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -0700892
Don Fry83626402012-03-07 09:52:37 -0800893 if (!iwl_is_alive(priv))
Johannes Berg2295c662010-10-23 09:15:41 -0700894 return -EBUSY;
895
896 /* This function hardcodes a bunch of dual-mode assumptions */
897 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
898
899 if (!ctx->is_active)
900 return 0;
901
902 /* always get timestamp with Rx frame */
903 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
904
Stanislaw Gruszka42b70a52011-05-26 17:14:22 +0200905 /*
906 * force CTS-to-self frames protection if RTS-CTS is not preferred
907 * one aggregation protection method
908 */
Johannes Berg9e295112012-04-09 17:46:55 -0700909 if (!priv->hw_params.use_rts_for_aggregation)
Stanislaw Gruszka42b70a52011-05-26 17:14:22 +0200910 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
911
Johannes Berg2295c662010-10-23 09:15:41 -0700912 if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) ||
913 !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK))
914 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
915 else
916 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
917
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700918 iwl_print_rx_config_cmd(priv, ctx->ctxid);
Johannes Berg2295c662010-10-23 09:15:41 -0700919 ret = iwl_check_rxon_cmd(priv, ctx);
920 if (ret) {
921 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
922 return -EINVAL;
923 }
924
925 /*
926 * receive commit_rxon request
927 * abort any previous channel switch if still in process
928 */
Don Fry83626402012-03-07 09:52:37 -0800929 if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status) &&
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200930 (priv->switch_channel != ctx->staging.channel)) {
Johannes Berg2295c662010-10-23 09:15:41 -0700931 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
Stanislaw Gruszka6f213ff2011-06-02 18:17:15 +0200932 le16_to_cpu(priv->switch_channel));
Johannes Berg2295c662010-10-23 09:15:41 -0700933 iwl_chswitch_done(priv, false);
934 }
935
936 /*
937 * If we don't need to send a full RXON, we can use
938 * iwl_rxon_assoc_cmd which is used to reconfigure filter
939 * and other flags for the current radio configuration.
940 */
941 if (!iwl_full_rxon_required(priv, ctx)) {
Wey-Yi Guyc3f6e9c2011-04-19 16:52:57 -0700942 ret = iwlagn_send_rxon_assoc(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700943 if (ret) {
944 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
945 return ret;
946 }
947
948 memcpy(active, &ctx->staging, sizeof(*active));
Wey-Yi Guy891db882011-05-27 08:40:24 -0700949 /*
950 * We do not commit tx power settings while channel changing,
951 * do it now if after settings changed.
952 */
953 iwl_set_tx_power(priv, priv->tx_power_next, false);
Wey-Yi Guy15b3f3b2011-06-03 07:54:13 -0700954
955 /* make sure we are in the right PS state */
956 iwl_power_update_mode(priv, true);
957
Johannes Berg2295c662010-10-23 09:15:41 -0700958 return 0;
959 }
960
Don Fry9d143e92011-04-20 15:23:57 -0700961 iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto);
Johannes Berg2295c662010-10-23 09:15:41 -0700962
963 IWL_DEBUG_INFO(priv,
964 "Going to commit RXON\n"
965 " * with%s RXON_FILTER_ASSOC_MSK\n"
966 " * channel = %d\n"
967 " * bssid = %pM\n",
968 (new_assoc ? "" : "out"),
969 le16_to_cpu(ctx->staging.channel),
970 ctx->staging.bssid_addr);
971
972 /*
Johannes Berg52d980c2010-11-10 09:56:45 -0800973 * Always clear associated first, but with the correct config.
974 * This is required as for example station addition for the
975 * AP station must be done after the BSSID is set to correctly
976 * set up filters in the device.
Johannes Berg2295c662010-10-23 09:15:41 -0700977 */
Wey-Yi Guy3083d032011-05-06 17:06:44 -0700978 ret = iwlagn_rxon_disconn(priv, ctx);
979 if (ret)
980 return ret;
Johannes Berg2295c662010-10-23 09:15:41 -0700981
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -0700982 ret = iwlagn_set_pan_params(priv);
983 if (ret)
984 return ret;
Johannes Berg2b9253d2011-05-27 08:40:26 -0700985
Wey-Yi Guyc1821c92011-04-19 16:52:59 -0700986 if (new_assoc)
987 return iwlagn_rxon_connect(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -0700988
989 return 0;
990}
991
Wey-Yi Guy34a5b4b2011-12-02 08:19:18 -0800992void iwlagn_config_ht40(struct ieee80211_conf *conf,
993 struct iwl_rxon_context *ctx)
994{
995 if (conf_is_ht40_minus(conf)) {
996 ctx->ht.extension_chan_offset =
997 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
998 ctx->ht.is_40mhz = true;
999 } else if (conf_is_ht40_plus(conf)) {
1000 ctx->ht.extension_chan_offset =
1001 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
1002 ctx->ht.is_40mhz = true;
1003 } else {
1004 ctx->ht.extension_chan_offset =
1005 IEEE80211_HT_PARAM_CHA_SEC_NONE;
1006 ctx->ht.is_40mhz = false;
1007 }
1008}
1009
Johannes Berg2295c662010-10-23 09:15:41 -07001010int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
1011{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001012 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Berg2295c662010-10-23 09:15:41 -07001013 struct iwl_rxon_context *ctx;
1014 struct ieee80211_conf *conf = &hw->conf;
1015 struct ieee80211_channel *channel = conf->channel;
1016 const struct iwl_channel_info *ch_info;
1017 int ret = 0;
1018
Johannes Berg0ca24da2012-03-15 13:26:46 -07001019 IWL_DEBUG_MAC80211(priv, "enter: changed %#x\n", changed);
Johannes Berg2295c662010-10-23 09:15:41 -07001020
Johannes Bergb1eea292012-03-06 13:30:42 -08001021 mutex_lock(&priv->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -07001022
Don Fry83626402012-03-07 09:52:37 -08001023 if (unlikely(test_bit(STATUS_SCANNING, &priv->status))) {
Johannes Berg2295c662010-10-23 09:15:41 -07001024 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
1025 goto out;
1026 }
1027
Don Fry83626402012-03-07 09:52:37 -08001028 if (!iwl_is_ready(priv)) {
Johannes Berg2295c662010-10-23 09:15:41 -07001029 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
1030 goto out;
1031 }
1032
1033 if (changed & (IEEE80211_CONF_CHANGE_SMPS |
1034 IEEE80211_CONF_CHANGE_CHANNEL)) {
1035 /* mac80211 uses static for non-HT which is what we want */
1036 priv->current_ht_config.smps = conf->smps_mode;
1037
1038 /*
1039 * Recalculate chain counts.
1040 *
1041 * If monitor mode is enabled then mac80211 will
1042 * set up the SM PS mode to OFF if an HT channel is
1043 * configured.
1044 */
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -07001045 for_each_context(priv, ctx)
1046 iwlagn_set_rxon_chain(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -07001047 }
1048
1049 if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
Johannes Berg2295c662010-10-23 09:15:41 -07001050 ch_info = iwl_get_channel_info(priv, channel->band,
1051 channel->hw_value);
1052 if (!is_channel_valid(ch_info)) {
1053 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
1054 ret = -EINVAL;
1055 goto out;
1056 }
1057
Johannes Berg2295c662010-10-23 09:15:41 -07001058 for_each_context(priv, ctx) {
1059 /* Configure HT40 channels */
Daniel Halperin7caa2312011-04-06 12:47:25 -07001060 if (ctx->ht.enabled != conf_is_ht(conf))
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -08001061 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy35a6eb32010-11-10 09:56:43 -08001062
Johannes Berg2295c662010-10-23 09:15:41 -07001063 if (ctx->ht.enabled) {
Wey-Yi Guy34a5b4b2011-12-02 08:19:18 -08001064 /* if HT40 is used, it should not change
1065 * after associated except channel switch */
Wey-Yi Guy78feb352011-12-14 08:22:36 -08001066 if (!ctx->ht.is_40mhz ||
1067 !iwl_is_associated_ctx(ctx))
Wey-Yi Guy34a5b4b2011-12-02 08:19:18 -08001068 iwlagn_config_ht40(conf, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -07001069 } else
1070 ctx->ht.is_40mhz = false;
1071
1072 /*
1073 * Default to no protection. Protection mode will
1074 * later be set from BSS config in iwl_ht_conf
1075 */
1076 ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
1077
1078 /* if we are switching from ht to 2.4 clear flags
1079 * from any ht related info since 2.4 does not
1080 * support ht */
1081 if (le16_to_cpu(ctx->staging.channel) !=
1082 channel->hw_value)
1083 ctx->staging.flags = 0;
1084
1085 iwl_set_rxon_channel(priv, channel, ctx);
1086 iwl_set_rxon_ht(priv, &priv->current_ht_config);
1087
1088 iwl_set_flags_for_band(priv, ctx, channel->band,
1089 ctx->vif);
1090 }
1091
Johannes Berg2295c662010-10-23 09:15:41 -07001092 iwl_update_bcast_stations(priv);
1093
1094 /*
1095 * The list of supported rates and rate mask can be different
1096 * for each band; since the band may have changed, reset
1097 * the rate mask to what mac80211 lists.
1098 */
1099 iwl_set_rate(priv);
1100 }
1101
1102 if (changed & (IEEE80211_CONF_CHANGE_PS |
1103 IEEE80211_CONF_CHANGE_IDLE)) {
1104 ret = iwl_power_update_mode(priv, false);
1105 if (ret)
1106 IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
1107 }
1108
1109 if (changed & IEEE80211_CONF_CHANGE_POWER) {
1110 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
1111 priv->tx_power_user_lmt, conf->power_level);
1112
1113 iwl_set_tx_power(priv, conf->power_level, false);
1114 }
1115
1116 for_each_context(priv, ctx) {
1117 if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
1118 continue;
1119 iwlagn_commit_rxon(priv, ctx);
1120 }
1121 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001122 mutex_unlock(&priv->mutex);
Wey-Yi Guy770c72c2011-10-10 07:27:10 -07001123 IWL_DEBUG_MAC80211(priv, "leave\n");
1124
Johannes Berg2295c662010-10-23 09:15:41 -07001125 return ret;
1126}
1127
Johannes Berg2295c662010-10-23 09:15:41 -07001128static void iwlagn_check_needed_chains(struct iwl_priv *priv,
1129 struct iwl_rxon_context *ctx,
1130 struct ieee80211_bss_conf *bss_conf)
1131{
1132 struct ieee80211_vif *vif = ctx->vif;
1133 struct iwl_rxon_context *tmp;
1134 struct ieee80211_sta *sta;
1135 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg850bedc2011-02-25 12:24:11 +01001136 struct ieee80211_sta_ht_cap *ht_cap;
Johannes Berg2295c662010-10-23 09:15:41 -07001137 bool need_multiple;
1138
Johannes Bergb1eea292012-03-06 13:30:42 -08001139 lockdep_assert_held(&priv->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -07001140
1141 switch (vif->type) {
1142 case NL80211_IFTYPE_STATION:
1143 rcu_read_lock();
1144 sta = ieee80211_find_sta(vif, bss_conf->bssid);
Johannes Berg850bedc2011-02-25 12:24:11 +01001145 if (!sta) {
Johannes Berg2295c662010-10-23 09:15:41 -07001146 /*
1147 * If at all, this can only happen through a race
1148 * when the AP disconnects us while we're still
1149 * setting up the connection, in that case mac80211
1150 * will soon tell us about that.
1151 */
1152 need_multiple = false;
Johannes Berg850bedc2011-02-25 12:24:11 +01001153 rcu_read_unlock();
1154 break;
Johannes Berg2295c662010-10-23 09:15:41 -07001155 }
Johannes Berg850bedc2011-02-25 12:24:11 +01001156
1157 ht_cap = &sta->ht_cap;
1158
1159 need_multiple = true;
1160
1161 /*
1162 * If the peer advertises no support for receiving 2 and 3
1163 * stream MCS rates, it can't be transmitting them either.
1164 */
1165 if (ht_cap->mcs.rx_mask[1] == 0 &&
1166 ht_cap->mcs.rx_mask[2] == 0) {
1167 need_multiple = false;
1168 } else if (!(ht_cap->mcs.tx_params &
1169 IEEE80211_HT_MCS_TX_DEFINED)) {
1170 /* If it can't TX MCS at all ... */
1171 need_multiple = false;
1172 } else if (ht_cap->mcs.tx_params &
1173 IEEE80211_HT_MCS_TX_RX_DIFF) {
1174 int maxstreams;
1175
1176 /*
1177 * But if it can receive them, it might still not
1178 * be able to transmit them, which is what we need
1179 * to check here -- so check the number of streams
1180 * it advertises for TX (if different from RX).
1181 */
1182
1183 maxstreams = (ht_cap->mcs.tx_params &
1184 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK);
1185 maxstreams >>=
1186 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT;
1187 maxstreams += 1;
1188
1189 if (maxstreams <= 1)
1190 need_multiple = false;
1191 }
1192
Johannes Berg2295c662010-10-23 09:15:41 -07001193 rcu_read_unlock();
1194 break;
1195 case NL80211_IFTYPE_ADHOC:
1196 /* currently */
1197 need_multiple = false;
1198 break;
1199 default:
1200 /* only AP really */
1201 need_multiple = true;
1202 break;
1203 }
1204
1205 ctx->ht_need_multiple_chains = need_multiple;
1206
1207 if (!need_multiple) {
1208 /* check all contexts */
1209 for_each_context(priv, tmp) {
1210 if (!tmp->vif)
1211 continue;
1212 if (tmp->ht_need_multiple_chains) {
1213 need_multiple = true;
1214 break;
1215 }
1216 }
1217 }
1218
1219 ht_conf->single_chain_sufficient = !need_multiple;
1220}
1221
Don Fry5c3d29f2011-07-08 08:46:29 -07001222static void iwlagn_chain_noise_reset(struct iwl_priv *priv)
1223{
1224 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
1225 int ret;
1226
1227 if ((data->state == IWL_CHAIN_NOISE_ALIVE) &&
1228 iwl_is_any_associated(priv)) {
1229 struct iwl_calib_chain_noise_reset_cmd cmd;
1230
1231 /* clear data for chain noise calibration algorithm */
1232 data->chain_noise_a = 0;
1233 data->chain_noise_b = 0;
1234 data->chain_noise_c = 0;
1235 data->chain_signal_a = 0;
1236 data->chain_signal_b = 0;
1237 data->chain_signal_c = 0;
1238 data->beacon_count = 0;
1239
1240 memset(&cmd, 0, sizeof(cmd));
1241 iwl_set_calib_hdr(&cmd.hdr,
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001242 priv->phy_calib_chain_noise_reset_cmd);
Johannes Berge10a0532012-03-06 13:30:39 -08001243 ret = iwl_dvm_send_cmd_pdu(priv,
Don Fry5c3d29f2011-07-08 08:46:29 -07001244 REPLY_PHY_CALIBRATION_CMD,
1245 CMD_SYNC, sizeof(cmd), &cmd);
1246 if (ret)
1247 IWL_ERR(priv,
1248 "Could not send REPLY_PHY_CALIBRATION_CMD\n");
1249 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
1250 IWL_DEBUG_CALIB(priv, "Run chain_noise_calibrate\n");
1251 }
1252}
1253
Johannes Berg2295c662010-10-23 09:15:41 -07001254void iwlagn_bss_info_changed(struct ieee80211_hw *hw,
1255 struct ieee80211_vif *vif,
1256 struct ieee80211_bss_conf *bss_conf,
1257 u32 changes)
1258{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001259 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Berg2295c662010-10-23 09:15:41 -07001260 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1261 int ret;
1262 bool force = false;
1263
Johannes Bergb1eea292012-03-06 13:30:42 -08001264 mutex_lock(&priv->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -07001265
Don Fry83626402012-03-07 09:52:37 -08001266 if (unlikely(!iwl_is_ready(priv))) {
Wey-Yi Guy14a085e2010-12-14 07:38:58 -08001267 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001268 mutex_unlock(&priv->mutex);
Shanyu Zhaoae0b6932010-12-02 11:02:28 -08001269 return;
1270 }
1271
1272 if (unlikely(!ctx->vif)) {
1273 IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001274 mutex_unlock(&priv->mutex);
Johannes Berg893654d2010-11-10 18:25:47 -08001275 return;
1276 }
1277
Johannes Berg2295c662010-10-23 09:15:41 -07001278 if (changes & BSS_CHANGED_BEACON_INT)
1279 force = true;
1280
1281 if (changes & BSS_CHANGED_QOS) {
1282 ctx->qos_data.qos_active = bss_conf->qos;
1283 iwlagn_update_qos(priv, ctx);
1284 }
1285
1286 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
1287 if (vif->bss_conf.use_short_preamble)
1288 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1289 else
1290 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1291
1292 if (changes & BSS_CHANGED_ASSOC) {
1293 if (bss_conf->assoc) {
Johannes Berge9ac0742012-03-13 14:29:30 +01001294 priv->timestamp = bss_conf->last_tsf;
Johannes Berg2295c662010-10-23 09:15:41 -07001295 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
1296 } else {
Garen Tamrazian68b99312011-03-30 02:29:32 -07001297 /*
1298 * If we disassociate while there are pending
1299 * frames, just wake up the queues and let the
1300 * frames "escape" ... This shouldn't really
1301 * be happening to start with, but we should
1302 * not get stuck in this case either since it
1303 * can happen if userspace gets confused.
1304 */
Johannes Berge755f882012-03-07 09:52:16 -08001305 iwlagn_lift_passive_no_rx(priv);
1306
Johannes Berg2295c662010-10-23 09:15:41 -07001307 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Johannes Bergc8ac61c2011-07-15 13:23:45 -07001308
1309 if (ctx->ctxid == IWL_RXON_CTX_BSS)
1310 priv->have_rekey_data = false;
Johannes Berg2295c662010-10-23 09:15:41 -07001311 }
Meenakshi Venkataraman207ecc52011-07-08 08:46:23 -07001312
1313 iwlagn_bt_coex_rssi_monitor(priv);
Johannes Berg2295c662010-10-23 09:15:41 -07001314 }
1315
1316 if (ctx->ht.enabled) {
1317 ctx->ht.protection = bss_conf->ht_operation_mode &
1318 IEEE80211_HT_OP_MODE_PROTECTION;
1319 ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode &
1320 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
1321 iwlagn_check_needed_chains(priv, ctx, bss_conf);
Johannes Bergb2769b82010-11-10 09:56:47 -08001322 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Johannes Berg2295c662010-10-23 09:15:41 -07001323 }
1324
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -07001325 iwlagn_set_rxon_chain(priv, ctx);
Johannes Berg2295c662010-10-23 09:15:41 -07001326
1327 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
1328 ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK;
1329 else
1330 ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
1331
1332 if (bss_conf->use_cts_prot)
1333 ctx->staging.flags |= RXON_FLG_SELF_CTS_EN;
1334 else
1335 ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN;
1336
1337 memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN);
1338
1339 if (vif->type == NL80211_IFTYPE_AP ||
1340 vif->type == NL80211_IFTYPE_ADHOC) {
1341 if (vif->bss_conf.enable_beacon) {
1342 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
1343 priv->beacon_ctx = ctx;
1344 } else {
1345 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1346 priv->beacon_ctx = NULL;
1347 }
1348 }
1349
Meenakshi Venkataraman758f5552012-02-08 12:04:41 -08001350 /*
1351 * If the ucode decides to do beacon filtering before
1352 * association, it will lose beacons that are needed
1353 * before sending frames out on passive channels. This
1354 * causes association failures on those channels. Enable
1355 * receiving beacons in such cases.
1356 */
1357
1358 if (vif->type == NL80211_IFTYPE_STATION) {
1359 if (!bss_conf->assoc)
1360 ctx->staging.filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
1361 else
1362 ctx->staging.filter_flags &=
1363 ~RXON_FILTER_BCON_AWARE_MSK;
1364 }
1365
Johannes Berg2295c662010-10-23 09:15:41 -07001366 if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
1367 iwlagn_commit_rxon(priv, ctx);
1368
Johannes Berg8da8e622010-11-10 09:56:46 -08001369 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) {
1370 /*
1371 * The chain noise calibration will enable PM upon
1372 * completion. If calibration has already been run
1373 * then we need to enable power management here.
1374 */
1375 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
1376 iwl_power_update_mode(priv, false);
1377
1378 /* Enable RX differential gain and sensitivity calibrations */
Don Fry5c3d29f2011-07-08 08:46:29 -07001379 if (!priv->disable_chain_noise_cal)
1380 iwlagn_chain_noise_reset(priv);
Johannes Berg8da8e622010-11-10 09:56:46 -08001381 priv->start_calib = 1;
1382 }
1383
Johannes Berg2295c662010-10-23 09:15:41 -07001384 if (changes & BSS_CHANGED_IBSS) {
1385 ret = iwlagn_manage_ibss_station(priv, vif,
1386 bss_conf->ibss_joined);
1387 if (ret)
1388 IWL_ERR(priv, "failed to %s IBSS station %pM\n",
1389 bss_conf->ibss_joined ? "add" : "remove",
1390 bss_conf->bssid);
1391 }
1392
Johannes Bergbd50a8ab2010-10-23 09:15:42 -07001393 if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC &&
1394 priv->beacon_ctx) {
1395 if (iwlagn_update_beacon(priv, vif))
1396 IWL_ERR(priv, "Error sending IBSS beacon\n");
1397 }
1398
Johannes Bergb1eea292012-03-06 13:30:42 -08001399 mutex_unlock(&priv->mutex);
Johannes Berg2295c662010-10-23 09:15:41 -07001400}
Johannes Bergae79d232010-11-10 09:56:38 -08001401
1402void iwlagn_post_scan(struct iwl_priv *priv)
1403{
1404 struct iwl_rxon_context *ctx;
1405
1406 /*
Wey-Yi Guyc2b821d2011-06-03 07:54:14 -07001407 * We do not commit power settings while scan is pending,
1408 * do it now if the settings changed.
1409 */
1410 iwl_power_set_mode(priv, &priv->power_data.sleep_cmd_next, false);
1411 iwl_set_tx_power(priv, priv->tx_power_next, false);
1412
1413 /*
Johannes Bergae79d232010-11-10 09:56:38 -08001414 * Since setting the RXON may have been deferred while
1415 * performing the scan, fire one off if needed
1416 */
1417 for_each_context(priv, ctx)
1418 if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
1419 iwlagn_commit_rxon(priv, ctx);
1420
Wey-Yi Guye3f10ce2011-07-01 07:59:26 -07001421 iwlagn_set_pan_params(priv);
Johannes Bergae79d232010-11-10 09:56:38 -08001422}