]>
Commit | Line | Data |
---|---|---|
2295c66b JB |
1 | /****************************************************************************** |
2 | * | |
901069c7 | 3 | * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved. |
2295c66b JB |
4 | * |
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 <[email protected]> | |
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" | |
68b99311 | 32 | #include "iwl-helpers.h" |
bdfbf092 | 33 | #include "iwl-trans.h" |
48f20d35 | 34 | #include "iwl-shared.h" |
2295c66b JB |
35 | |
36 | static int iwlagn_disable_bss(struct iwl_priv *priv, | |
37 | struct iwl_rxon_context *ctx, | |
38 | struct iwl_rxon_cmd *send) | |
39 | { | |
40 | __le32 old_filter = send->filter_flags; | |
41 | int ret; | |
42 | ||
43 | send->filter_flags &= ~RXON_FILTER_ASSOC_MSK; | |
e6bb4c9c | 44 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, |
e419d62d | 45 | CMD_SYNC, sizeof(*send), send); |
2295c66b JB |
46 | |
47 | send->filter_flags = old_filter; | |
48 | ||
49 | if (ret) | |
50 | IWL_ERR(priv, "Error clearing ASSOC_MSK on BSS (%d)\n", ret); | |
51 | ||
52 | return ret; | |
53 | } | |
54 | ||
55 | static int iwlagn_disable_pan(struct iwl_priv *priv, | |
56 | struct iwl_rxon_context *ctx, | |
57 | struct iwl_rxon_cmd *send) | |
58 | { | |
311dce71 | 59 | struct iwl_notification_wait disable_wait; |
2295c66b JB |
60 | __le32 old_filter = send->filter_flags; |
61 | u8 old_dev_type = send->dev_type; | |
62 | int ret; | |
63 | ||
09f18afe JB |
64 | iwlagn_init_notification_wait(priv, &disable_wait, |
65 | REPLY_WIPAN_DEACTIVATION_COMPLETE, | |
66 | NULL, NULL); | |
311dce71 | 67 | |
2295c66b JB |
68 | send->filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
69 | send->dev_type = RXON_DEV_TYPE_P2P; | |
e6bb4c9c | 70 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, |
e419d62d | 71 | CMD_SYNC, sizeof(*send), send); |
2295c66b JB |
72 | |
73 | send->filter_flags = old_filter; | |
74 | send->dev_type = old_dev_type; | |
75 | ||
311dce71 | 76 | if (ret) { |
2295c66b | 77 | IWL_ERR(priv, "Error disabling PAN (%d)\n", ret); |
311dce71 JB |
78 | iwlagn_remove_notification(priv, &disable_wait); |
79 | } else { | |
a8674a1e JB |
80 | ret = iwlagn_wait_notification(priv, &disable_wait, HZ); |
81 | if (ret) | |
311dce71 JB |
82 | IWL_ERR(priv, "Timed out waiting for PAN disable\n"); |
83 | } | |
2295c66b JB |
84 | |
85 | return ret; | |
86 | } | |
87 | ||
2b9253d2 JB |
88 | static int iwlagn_disconn_pan(struct iwl_priv *priv, |
89 | struct iwl_rxon_context *ctx, | |
90 | struct iwl_rxon_cmd *send) | |
91 | { | |
92 | __le32 old_filter = send->filter_flags; | |
93 | int ret; | |
94 | ||
95 | send->filter_flags &= ~RXON_FILTER_ASSOC_MSK; | |
e6bb4c9c | 96 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, CMD_SYNC, |
e419d62d | 97 | sizeof(*send), send); |
2b9253d2 JB |
98 | |
99 | send->filter_flags = old_filter; | |
100 | ||
101 | return ret; | |
102 | } | |
103 | ||
f4115d46 SZ |
104 | static void iwlagn_update_qos(struct iwl_priv *priv, |
105 | struct iwl_rxon_context *ctx) | |
106 | { | |
107 | int ret; | |
108 | ||
109 | if (!ctx->is_active) | |
110 | return; | |
111 | ||
112 | ctx->qos_data.def_qos_parm.qos_flags = 0; | |
113 | ||
114 | if (ctx->qos_data.qos_active) | |
115 | ctx->qos_data.def_qos_parm.qos_flags |= | |
116 | QOS_PARAM_FLG_UPDATE_EDCA_MSK; | |
117 | ||
118 | if (ctx->ht.enabled) | |
119 | ctx->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK; | |
120 | ||
121 | IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n", | |
122 | ctx->qos_data.qos_active, | |
123 | ctx->qos_data.def_qos_parm.qos_flags); | |
124 | ||
e6bb4c9c | 125 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->qos_cmd, CMD_SYNC, |
f4115d46 SZ |
126 | sizeof(struct iwl_qosparam_cmd), |
127 | &ctx->qos_data.def_qos_parm); | |
128 | if (ret) | |
129 | IWL_ERR(priv, "Failed to update QoS\n"); | |
130 | } | |
131 | ||
bd50a8ab JB |
132 | static int iwlagn_update_beacon(struct iwl_priv *priv, |
133 | struct ieee80211_vif *vif) | |
134 | { | |
6ac2f839 | 135 | lockdep_assert_held(&priv->shrd->mutex); |
bd50a8ab JB |
136 | |
137 | dev_kfree_skb(priv->beacon_skb); | |
138 | priv->beacon_skb = ieee80211_beacon_get(priv->hw, vif); | |
139 | if (!priv->beacon_skb) | |
140 | return -ENOMEM; | |
141 | return iwlagn_send_beacon_cmd(priv); | |
142 | } | |
143 | ||
c3f6e9cf WYG |
144 | static int iwlagn_send_rxon_assoc(struct iwl_priv *priv, |
145 | struct iwl_rxon_context *ctx) | |
146 | { | |
147 | int ret = 0; | |
89e746b2 | 148 | struct iwl_rxon_assoc_cmd rxon_assoc; |
c3f6e9cf WYG |
149 | const struct iwl_rxon_cmd *rxon1 = &ctx->staging; |
150 | const struct iwl_rxon_cmd *rxon2 = &ctx->active; | |
151 | ||
152 | if ((rxon1->flags == rxon2->flags) && | |
153 | (rxon1->filter_flags == rxon2->filter_flags) && | |
154 | (rxon1->cck_basic_rates == rxon2->cck_basic_rates) && | |
155 | (rxon1->ofdm_ht_single_stream_basic_rates == | |
156 | rxon2->ofdm_ht_single_stream_basic_rates) && | |
157 | (rxon1->ofdm_ht_dual_stream_basic_rates == | |
158 | rxon2->ofdm_ht_dual_stream_basic_rates) && | |
159 | (rxon1->ofdm_ht_triple_stream_basic_rates == | |
160 | rxon2->ofdm_ht_triple_stream_basic_rates) && | |
161 | (rxon1->acquisition_data == rxon2->acquisition_data) && | |
162 | (rxon1->rx_chain == rxon2->rx_chain) && | |
163 | (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) { | |
164 | IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n"); | |
165 | return 0; | |
166 | } | |
167 | ||
168 | rxon_assoc.flags = ctx->staging.flags; | |
169 | rxon_assoc.filter_flags = ctx->staging.filter_flags; | |
170 | rxon_assoc.ofdm_basic_rates = ctx->staging.ofdm_basic_rates; | |
171 | rxon_assoc.cck_basic_rates = ctx->staging.cck_basic_rates; | |
172 | rxon_assoc.reserved1 = 0; | |
173 | rxon_assoc.reserved2 = 0; | |
174 | rxon_assoc.reserved3 = 0; | |
175 | rxon_assoc.ofdm_ht_single_stream_basic_rates = | |
176 | ctx->staging.ofdm_ht_single_stream_basic_rates; | |
177 | rxon_assoc.ofdm_ht_dual_stream_basic_rates = | |
178 | ctx->staging.ofdm_ht_dual_stream_basic_rates; | |
179 | rxon_assoc.rx_chain_select_flags = ctx->staging.rx_chain; | |
180 | rxon_assoc.ofdm_ht_triple_stream_basic_rates = | |
181 | ctx->staging.ofdm_ht_triple_stream_basic_rates; | |
182 | rxon_assoc.acquisition_data = ctx->staging.acquisition_data; | |
183 | ||
e6bb4c9c | 184 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_assoc_cmd, |
e419d62d | 185 | CMD_ASYNC, sizeof(rxon_assoc), &rxon_assoc); |
c3f6e9cf WYG |
186 | return ret; |
187 | } | |
188 | ||
c1821c95 WYG |
189 | static int iwlagn_rxon_disconn(struct iwl_priv *priv, |
190 | struct iwl_rxon_context *ctx) | |
191 | { | |
192 | int ret; | |
193 | struct iwl_rxon_cmd *active = (void *)&ctx->active; | |
194 | ||
2b9253d2 | 195 | if (ctx->ctxid == IWL_RXON_CTX_BSS) { |
c1821c95 | 196 | ret = iwlagn_disable_bss(priv, ctx, &ctx->staging); |
2b9253d2 | 197 | } else { |
c1821c95 | 198 | ret = iwlagn_disable_pan(priv, ctx, &ctx->staging); |
2b9253d2 JB |
199 | if (ret) |
200 | return ret; | |
201 | if (ctx->vif) { | |
202 | ret = iwl_send_rxon_timing(priv, ctx); | |
203 | if (ret) { | |
204 | IWL_ERR(priv, "Failed to send timing (%d)!\n", ret); | |
205 | return ret; | |
206 | } | |
207 | ret = iwlagn_disconn_pan(priv, ctx, &ctx->staging); | |
208 | } | |
209 | } | |
c1821c95 WYG |
210 | if (ret) |
211 | return ret; | |
212 | ||
213 | /* | |
214 | * Un-assoc RXON clears the station table and WEP | |
215 | * keys, so we have to restore those afterwards. | |
216 | */ | |
217 | iwl_clear_ucode_stations(priv, ctx); | |
f775aa06 JB |
218 | /* update -- might need P2P now */ |
219 | iwl_update_bcast_station(priv, ctx); | |
c1821c95 WYG |
220 | iwl_restore_stations(priv, ctx); |
221 | ret = iwl_restore_default_wep_keys(priv, ctx); | |
222 | if (ret) { | |
223 | IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret); | |
224 | return ret; | |
225 | } | |
226 | ||
227 | memcpy(active, &ctx->staging, sizeof(*active)); | |
228 | return 0; | |
229 | } | |
230 | ||
231 | static int iwlagn_rxon_connect(struct iwl_priv *priv, | |
232 | struct iwl_rxon_context *ctx) | |
233 | { | |
234 | int ret; | |
235 | struct iwl_rxon_cmd *active = (void *)&ctx->active; | |
236 | ||
237 | /* RXON timing must be before associated RXON */ | |
2b9253d2 JB |
238 | if (ctx->ctxid == IWL_RXON_CTX_BSS) { |
239 | ret = iwl_send_rxon_timing(priv, ctx); | |
240 | if (ret) { | |
241 | IWL_ERR(priv, "Failed to send timing (%d)!\n", ret); | |
242 | return ret; | |
243 | } | |
c1821c95 WYG |
244 | } |
245 | /* QoS info may be cleared by previous un-assoc RXON */ | |
246 | iwlagn_update_qos(priv, ctx); | |
247 | ||
248 | /* | |
249 | * We'll run into this code path when beaconing is | |
250 | * enabled, but then we also need to send the beacon | |
251 | * to the device. | |
252 | */ | |
253 | if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_AP)) { | |
254 | ret = iwlagn_update_beacon(priv, ctx->vif); | |
255 | if (ret) { | |
256 | IWL_ERR(priv, | |
257 | "Error sending required beacon (%d)!\n", | |
258 | ret); | |
259 | return ret; | |
260 | } | |
261 | } | |
262 | ||
263 | priv->start_calib = 0; | |
264 | /* | |
265 | * Apply the new configuration. | |
266 | * | |
267 | * Associated RXON doesn't clear the station table in uCode, | |
268 | * so we don't need to restore stations etc. after this. | |
269 | */ | |
e6bb4c9c | 270 | ret = iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_cmd, CMD_SYNC, |
c1821c95 WYG |
271 | sizeof(struct iwl_rxon_cmd), &ctx->staging); |
272 | if (ret) { | |
273 | IWL_ERR(priv, "Error setting new RXON (%d)\n", ret); | |
274 | return ret; | |
275 | } | |
276 | memcpy(active, &ctx->staging, sizeof(*active)); | |
277 | ||
278 | iwl_reprogram_ap_sta(priv, ctx); | |
279 | ||
280 | /* IBSS beacon needs to be sent after setting assoc */ | |
281 | if (ctx->vif && (ctx->vif->type == NL80211_IFTYPE_ADHOC)) | |
282 | if (iwlagn_update_beacon(priv, ctx->vif)) | |
283 | IWL_ERR(priv, "Error sending IBSS beacon\n"); | |
284 | iwl_init_sensitivity(priv); | |
285 | ||
286 | /* | |
287 | * If we issue a new RXON command which required a tune then | |
288 | * we must send a new TXPOWER command or we won't be able to | |
289 | * Tx any frames. | |
290 | * | |
291 | * It's expected we set power here if channel is changing. | |
292 | */ | |
293 | ret = iwl_set_tx_power(priv, priv->tx_power_next, true); | |
294 | if (ret) { | |
295 | IWL_ERR(priv, "Error sending TX power (%d)\n", ret); | |
296 | return ret; | |
297 | } | |
15b3f3b0 WYG |
298 | |
299 | if ((ctx->vif && ctx->vif->type == NL80211_IFTYPE_STATION) && | |
300 | priv->cfg->ht_params->smps_mode) | |
301 | ieee80211_request_smps(ctx->vif, | |
302 | priv->cfg->ht_params->smps_mode); | |
303 | ||
c1821c95 WYG |
304 | return 0; |
305 | } | |
306 | ||
e505c433 WYG |
307 | int iwlagn_set_pan_params(struct iwl_priv *priv) |
308 | { | |
309 | struct iwl_wipan_params_cmd cmd; | |
310 | struct iwl_rxon_context *ctx_bss, *ctx_pan; | |
311 | int slot0 = 300, slot1 = 0; | |
312 | int ret; | |
313 | ||
314 | if (priv->valid_contexts == BIT(IWL_RXON_CTX_BSS)) | |
315 | return 0; | |
316 | ||
317 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); | |
318 | ||
6ac2f839 | 319 | lockdep_assert_held(&priv->shrd->mutex); |
e505c433 WYG |
320 | |
321 | ctx_bss = &priv->contexts[IWL_RXON_CTX_BSS]; | |
322 | ctx_pan = &priv->contexts[IWL_RXON_CTX_PAN]; | |
323 | ||
324 | /* | |
325 | * If the PAN context is inactive, then we don't need | |
326 | * to update the PAN parameters, the last thing we'll | |
327 | * have done before it goes inactive is making the PAN | |
328 | * parameters be WLAN-only. | |
329 | */ | |
330 | if (!ctx_pan->is_active) | |
331 | return 0; | |
332 | ||
333 | memset(&cmd, 0, sizeof(cmd)); | |
334 | ||
335 | /* only 2 slots are currently allowed */ | |
336 | cmd.num_slots = 2; | |
337 | ||
338 | cmd.slots[0].type = 0; /* BSS */ | |
339 | cmd.slots[1].type = 1; /* PAN */ | |
340 | ||
c6baf7fb | 341 | if (priv->hw_roc_setup) { |
e505c433 | 342 | /* both contexts must be used for this to happen */ |
c6baf7fb JB |
343 | slot1 = IWL_MIN_SLOT_TIME; |
344 | slot0 = 3000; | |
e505c433 | 345 | } else if (ctx_bss->vif && ctx_pan->vif) { |
bbb05cb5 | 346 | int bcnint = ctx_pan->beacon_int; |
e505c433 WYG |
347 | int dtim = ctx_pan->vif->bss_conf.dtim_period ?: 1; |
348 | ||
349 | /* should be set, but seems unused?? */ | |
350 | cmd.flags |= cpu_to_le16(IWL_WIPAN_PARAMS_FLG_SLOTTED_MODE); | |
351 | ||
352 | if (ctx_pan->vif->type == NL80211_IFTYPE_AP && | |
353 | bcnint && | |
bbb05cb5 | 354 | bcnint != ctx_bss->beacon_int) { |
e505c433 WYG |
355 | IWL_ERR(priv, |
356 | "beacon intervals don't match (%d, %d)\n", | |
bbb05cb5 | 357 | ctx_bss->beacon_int, ctx_pan->beacon_int); |
e505c433 WYG |
358 | } else |
359 | bcnint = max_t(int, bcnint, | |
bbb05cb5 | 360 | ctx_bss->beacon_int); |
e505c433 WYG |
361 | if (!bcnint) |
362 | bcnint = DEFAULT_BEACON_INTERVAL; | |
363 | slot0 = bcnint / 2; | |
364 | slot1 = bcnint - slot0; | |
365 | ||
63013ae3 | 366 | if (test_bit(STATUS_SCAN_HW, &priv->shrd->status) || |
e505c433 WYG |
367 | (!ctx_bss->vif->bss_conf.idle && |
368 | !ctx_bss->vif->bss_conf.assoc)) { | |
369 | slot0 = dtim * bcnint * 3 - IWL_MIN_SLOT_TIME; | |
370 | slot1 = IWL_MIN_SLOT_TIME; | |
371 | } else if (!ctx_pan->vif->bss_conf.idle && | |
372 | !ctx_pan->vif->bss_conf.assoc) { | |
373 | slot1 = bcnint * 3 - IWL_MIN_SLOT_TIME; | |
374 | slot0 = IWL_MIN_SLOT_TIME; | |
375 | } | |
376 | } else if (ctx_pan->vif) { | |
377 | slot0 = 0; | |
378 | slot1 = max_t(int, 1, ctx_pan->vif->bss_conf.dtim_period) * | |
bbb05cb5 | 379 | ctx_pan->beacon_int; |
e505c433 WYG |
380 | slot1 = max_t(int, DEFAULT_BEACON_INTERVAL, slot1); |
381 | ||
63013ae3 | 382 | if (test_bit(STATUS_SCAN_HW, &priv->shrd->status)) { |
e505c433 WYG |
383 | slot0 = slot1 * 3 - IWL_MIN_SLOT_TIME; |
384 | slot1 = IWL_MIN_SLOT_TIME; | |
385 | } | |
386 | } | |
387 | ||
388 | cmd.slots[0].width = cpu_to_le16(slot0); | |
389 | cmd.slots[1].width = cpu_to_le16(slot1); | |
390 | ||
e6bb4c9c | 391 | ret = iwl_trans_send_cmd_pdu(trans(priv), REPLY_WIPAN_PARAMS, CMD_SYNC, |
e505c433 WYG |
392 | sizeof(cmd), &cmd); |
393 | if (ret) | |
394 | IWL_ERR(priv, "Error setting PAN parameters (%d)\n", ret); | |
395 | ||
396 | return ret; | |
397 | } | |
398 | ||
2295c66b JB |
399 | /** |
400 | * iwlagn_commit_rxon - commit staging_rxon to hardware | |
401 | * | |
402 | * The RXON command in staging_rxon is committed to the hardware and | |
403 | * the active_rxon structure is updated with the new data. This | |
404 | * function correctly transitions out of the RXON_ASSOC_MSK state if | |
405 | * a HW tune is required based on the RXON structure changes. | |
c1821c95 WYG |
406 | * |
407 | * The connect/disconnect flow should be as the following: | |
408 | * | |
409 | * 1. make sure send RXON command with association bit unset if not connect | |
410 | * this should include the channel and the band for the candidate | |
411 | * to be connected to | |
412 | * 2. Add Station before RXON association with the AP | |
413 | * 3. RXON_timing has to send before RXON for connection | |
414 | * 4. full RXON command - associated bit set | |
415 | * 5. use RXON_ASSOC command to update any flags changes | |
2295c66b JB |
416 | */ |
417 | int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx) | |
418 | { | |
419 | /* cast away the const for active_rxon in this function */ | |
420 | struct iwl_rxon_cmd *active = (void *)&ctx->active; | |
2295c66b JB |
421 | bool new_assoc = !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK); |
422 | int ret; | |
423 | ||
6ac2f839 | 424 | lockdep_assert_held(&priv->shrd->mutex); |
2295c66b | 425 | |
63013ae3 | 426 | if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) |
adb90a00 WYG |
427 | return -EINVAL; |
428 | ||
845a9c0d | 429 | if (!iwl_is_alive(priv->shrd)) |
2295c66b JB |
430 | return -EBUSY; |
431 | ||
432 | /* This function hardcodes a bunch of dual-mode assumptions */ | |
433 | BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2); | |
434 | ||
435 | if (!ctx->is_active) | |
436 | return 0; | |
437 | ||
438 | /* always get timestamp with Rx frame */ | |
439 | ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK; | |
440 | ||
42b70a5f SG |
441 | /* |
442 | * force CTS-to-self frames protection if RTS-CTS is not preferred | |
443 | * one aggregation protection method | |
444 | */ | |
445 | if (!(priv->cfg->ht_params && | |
446 | priv->cfg->ht_params->use_rts_for_aggregation)) | |
447 | ctx->staging.flags |= RXON_FLG_SELF_CTS_EN; | |
448 | ||
2295c66b JB |
449 | if ((ctx->vif && ctx->vif->bss_conf.use_short_slot) || |
450 | !(ctx->staging.flags & RXON_FLG_BAND_24G_MSK)) | |
451 | ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK; | |
452 | else | |
453 | ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK; | |
454 | ||
c1821c95 | 455 | iwl_print_rx_config_cmd(priv, ctx); |
2295c66b JB |
456 | ret = iwl_check_rxon_cmd(priv, ctx); |
457 | if (ret) { | |
458 | IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n"); | |
459 | return -EINVAL; | |
460 | } | |
461 | ||
462 | /* | |
463 | * receive commit_rxon request | |
464 | * abort any previous channel switch if still in process | |
465 | */ | |
63013ae3 | 466 | if (test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status) && |
6f213ff1 | 467 | (priv->switch_channel != ctx->staging.channel)) { |
2295c66b | 468 | IWL_DEBUG_11H(priv, "abort channel switch on %d\n", |
6f213ff1 | 469 | le16_to_cpu(priv->switch_channel)); |
2295c66b JB |
470 | iwl_chswitch_done(priv, false); |
471 | } | |
472 | ||
473 | /* | |
474 | * If we don't need to send a full RXON, we can use | |
475 | * iwl_rxon_assoc_cmd which is used to reconfigure filter | |
476 | * and other flags for the current radio configuration. | |
477 | */ | |
478 | if (!iwl_full_rxon_required(priv, ctx)) { | |
c3f6e9cf | 479 | ret = iwlagn_send_rxon_assoc(priv, ctx); |
2295c66b JB |
480 | if (ret) { |
481 | IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret); | |
482 | return ret; | |
483 | } | |
484 | ||
485 | memcpy(active, &ctx->staging, sizeof(*active)); | |
891db881 WYG |
486 | /* |
487 | * We do not commit tx power settings while channel changing, | |
488 | * do it now if after settings changed. | |
489 | */ | |
490 | iwl_set_tx_power(priv, priv->tx_power_next, false); | |
15b3f3b0 WYG |
491 | |
492 | /* make sure we are in the right PS state */ | |
493 | iwl_power_update_mode(priv, true); | |
494 | ||
2295c66b JB |
495 | return 0; |
496 | } | |
497 | ||
9d143e9a | 498 | iwl_set_rxon_hwcrypto(priv, ctx, !iwlagn_mod_params.sw_crypto); |
2295c66b JB |
499 | |
500 | IWL_DEBUG_INFO(priv, | |
501 | "Going to commit RXON\n" | |
502 | " * with%s RXON_FILTER_ASSOC_MSK\n" | |
503 | " * channel = %d\n" | |
504 | " * bssid = %pM\n", | |
505 | (new_assoc ? "" : "out"), | |
506 | le16_to_cpu(ctx->staging.channel), | |
507 | ctx->staging.bssid_addr); | |
508 | ||
509 | /* | |
52d980c0 JB |
510 | * Always clear associated first, but with the correct config. |
511 | * This is required as for example station addition for the | |
512 | * AP station must be done after the BSSID is set to correctly | |
513 | * set up filters in the device. | |
2295c66b | 514 | */ |
3083d03c WYG |
515 | ret = iwlagn_rxon_disconn(priv, ctx); |
516 | if (ret) | |
517 | return ret; | |
2295c66b | 518 | |
e3f10cea WYG |
519 | ret = iwlagn_set_pan_params(priv); |
520 | if (ret) | |
521 | return ret; | |
2b9253d2 | 522 | |
c1821c95 WYG |
523 | if (new_assoc) |
524 | return iwlagn_rxon_connect(priv, ctx); | |
2295c66b JB |
525 | |
526 | return 0; | |
527 | } | |
528 | ||
529 | int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed) | |
530 | { | |
531 | struct iwl_priv *priv = hw->priv; | |
532 | struct iwl_rxon_context *ctx; | |
533 | struct ieee80211_conf *conf = &hw->conf; | |
534 | struct ieee80211_channel *channel = conf->channel; | |
535 | const struct iwl_channel_info *ch_info; | |
536 | int ret = 0; | |
537 | ||
538 | IWL_DEBUG_MAC80211(priv, "changed %#x", changed); | |
539 | ||
6ac2f839 | 540 | mutex_lock(&priv->shrd->mutex); |
2295c66b | 541 | |
63013ae3 | 542 | if (unlikely(test_bit(STATUS_SCANNING, &priv->shrd->status))) { |
2295c66b JB |
543 | IWL_DEBUG_MAC80211(priv, "leave - scanning\n"); |
544 | goto out; | |
545 | } | |
546 | ||
845a9c0d | 547 | if (!iwl_is_ready(priv->shrd)) { |
2295c66b JB |
548 | IWL_DEBUG_MAC80211(priv, "leave - not ready\n"); |
549 | goto out; | |
550 | } | |
551 | ||
552 | if (changed & (IEEE80211_CONF_CHANGE_SMPS | | |
553 | IEEE80211_CONF_CHANGE_CHANNEL)) { | |
554 | /* mac80211 uses static for non-HT which is what we want */ | |
555 | priv->current_ht_config.smps = conf->smps_mode; | |
556 | ||
557 | /* | |
558 | * Recalculate chain counts. | |
559 | * | |
560 | * If monitor mode is enabled then mac80211 will | |
561 | * set up the SM PS mode to OFF if an HT channel is | |
562 | * configured. | |
563 | */ | |
e3f10cea WYG |
564 | for_each_context(priv, ctx) |
565 | iwlagn_set_rxon_chain(priv, ctx); | |
2295c66b JB |
566 | } |
567 | ||
568 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { | |
569 | unsigned long flags; | |
570 | ||
571 | ch_info = iwl_get_channel_info(priv, channel->band, | |
572 | channel->hw_value); | |
573 | if (!is_channel_valid(ch_info)) { | |
574 | IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n"); | |
575 | ret = -EINVAL; | |
576 | goto out; | |
577 | } | |
578 | ||
10b15e6f | 579 | spin_lock_irqsave(&priv->shrd->lock, flags); |
2295c66b JB |
580 | |
581 | for_each_context(priv, ctx) { | |
582 | /* Configure HT40 channels */ | |
7caa2316 | 583 | if (ctx->ht.enabled != conf_is_ht(conf)) |
35a6eb36 | 584 | ctx->ht.enabled = conf_is_ht(conf); |
35a6eb36 | 585 | |
2295c66b JB |
586 | if (ctx->ht.enabled) { |
587 | if (conf_is_ht40_minus(conf)) { | |
588 | ctx->ht.extension_chan_offset = | |
589 | IEEE80211_HT_PARAM_CHA_SEC_BELOW; | |
590 | ctx->ht.is_40mhz = true; | |
591 | } else if (conf_is_ht40_plus(conf)) { | |
592 | ctx->ht.extension_chan_offset = | |
593 | IEEE80211_HT_PARAM_CHA_SEC_ABOVE; | |
594 | ctx->ht.is_40mhz = true; | |
595 | } else { | |
596 | ctx->ht.extension_chan_offset = | |
597 | IEEE80211_HT_PARAM_CHA_SEC_NONE; | |
598 | ctx->ht.is_40mhz = false; | |
599 | } | |
600 | } else | |
601 | ctx->ht.is_40mhz = false; | |
602 | ||
603 | /* | |
604 | * Default to no protection. Protection mode will | |
605 | * later be set from BSS config in iwl_ht_conf | |
606 | */ | |
607 | ctx->ht.protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE; | |
608 | ||
609 | /* if we are switching from ht to 2.4 clear flags | |
610 | * from any ht related info since 2.4 does not | |
611 | * support ht */ | |
612 | if (le16_to_cpu(ctx->staging.channel) != | |
613 | channel->hw_value) | |
614 | ctx->staging.flags = 0; | |
615 | ||
616 | iwl_set_rxon_channel(priv, channel, ctx); | |
617 | iwl_set_rxon_ht(priv, &priv->current_ht_config); | |
618 | ||
619 | iwl_set_flags_for_band(priv, ctx, channel->band, | |
620 | ctx->vif); | |
621 | } | |
622 | ||
10b15e6f | 623 | spin_unlock_irqrestore(&priv->shrd->lock, flags); |
2295c66b JB |
624 | |
625 | iwl_update_bcast_stations(priv); | |
626 | ||
627 | /* | |
628 | * The list of supported rates and rate mask can be different | |
629 | * for each band; since the band may have changed, reset | |
630 | * the rate mask to what mac80211 lists. | |
631 | */ | |
632 | iwl_set_rate(priv); | |
633 | } | |
634 | ||
635 | if (changed & (IEEE80211_CONF_CHANGE_PS | | |
636 | IEEE80211_CONF_CHANGE_IDLE)) { | |
637 | ret = iwl_power_update_mode(priv, false); | |
638 | if (ret) | |
639 | IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n"); | |
640 | } | |
641 | ||
642 | if (changed & IEEE80211_CONF_CHANGE_POWER) { | |
643 | IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n", | |
644 | priv->tx_power_user_lmt, conf->power_level); | |
645 | ||
646 | iwl_set_tx_power(priv, conf->power_level, false); | |
647 | } | |
648 | ||
649 | for_each_context(priv, ctx) { | |
650 | if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging))) | |
651 | continue; | |
652 | iwlagn_commit_rxon(priv, ctx); | |
653 | } | |
654 | out: | |
6ac2f839 | 655 | mutex_unlock(&priv->shrd->mutex); |
2295c66b JB |
656 | return ret; |
657 | } | |
658 | ||
2295c66b JB |
659 | static void iwlagn_check_needed_chains(struct iwl_priv *priv, |
660 | struct iwl_rxon_context *ctx, | |
661 | struct ieee80211_bss_conf *bss_conf) | |
662 | { | |
663 | struct ieee80211_vif *vif = ctx->vif; | |
664 | struct iwl_rxon_context *tmp; | |
665 | struct ieee80211_sta *sta; | |
666 | struct iwl_ht_config *ht_conf = &priv->current_ht_config; | |
850bedcc | 667 | struct ieee80211_sta_ht_cap *ht_cap; |
2295c66b JB |
668 | bool need_multiple; |
669 | ||
6ac2f839 | 670 | lockdep_assert_held(&priv->shrd->mutex); |
2295c66b JB |
671 | |
672 | switch (vif->type) { | |
673 | case NL80211_IFTYPE_STATION: | |
674 | rcu_read_lock(); | |
675 | sta = ieee80211_find_sta(vif, bss_conf->bssid); | |
850bedcc | 676 | if (!sta) { |
2295c66b JB |
677 | /* |
678 | * If at all, this can only happen through a race | |
679 | * when the AP disconnects us while we're still | |
680 | * setting up the connection, in that case mac80211 | |
681 | * will soon tell us about that. | |
682 | */ | |
683 | need_multiple = false; | |
850bedcc JB |
684 | rcu_read_unlock(); |
685 | break; | |
686 | } | |
687 | ||
688 | ht_cap = &sta->ht_cap; | |
689 | ||
690 | need_multiple = true; | |
691 | ||
692 | /* | |
693 | * If the peer advertises no support for receiving 2 and 3 | |
694 | * stream MCS rates, it can't be transmitting them either. | |
695 | */ | |
696 | if (ht_cap->mcs.rx_mask[1] == 0 && | |
697 | ht_cap->mcs.rx_mask[2] == 0) { | |
698 | need_multiple = false; | |
699 | } else if (!(ht_cap->mcs.tx_params & | |
700 | IEEE80211_HT_MCS_TX_DEFINED)) { | |
701 | /* If it can't TX MCS at all ... */ | |
702 | need_multiple = false; | |
703 | } else if (ht_cap->mcs.tx_params & | |
704 | IEEE80211_HT_MCS_TX_RX_DIFF) { | |
705 | int maxstreams; | |
706 | ||
707 | /* | |
708 | * But if it can receive them, it might still not | |
709 | * be able to transmit them, which is what we need | |
710 | * to check here -- so check the number of streams | |
711 | * it advertises for TX (if different from RX). | |
712 | */ | |
713 | ||
714 | maxstreams = (ht_cap->mcs.tx_params & | |
715 | IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK); | |
716 | maxstreams >>= | |
717 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; | |
718 | maxstreams += 1; | |
719 | ||
720 | if (maxstreams <= 1) | |
721 | need_multiple = false; | |
2295c66b | 722 | } |
850bedcc | 723 | |
2295c66b JB |
724 | rcu_read_unlock(); |
725 | break; | |
726 | case NL80211_IFTYPE_ADHOC: | |
727 | /* currently */ | |
728 | need_multiple = false; | |
729 | break; | |
730 | default: | |
731 | /* only AP really */ | |
732 | need_multiple = true; | |
733 | break; | |
734 | } | |
735 | ||
736 | ctx->ht_need_multiple_chains = need_multiple; | |
737 | ||
738 | if (!need_multiple) { | |
739 | /* check all contexts */ | |
740 | for_each_context(priv, tmp) { | |
741 | if (!tmp->vif) | |
742 | continue; | |
743 | if (tmp->ht_need_multiple_chains) { | |
744 | need_multiple = true; | |
745 | break; | |
746 | } | |
747 | } | |
748 | } | |
749 | ||
750 | ht_conf->single_chain_sufficient = !need_multiple; | |
751 | } | |
752 | ||
5c3d29fc DF |
753 | static void iwlagn_chain_noise_reset(struct iwl_priv *priv) |
754 | { | |
755 | struct iwl_chain_noise_data *data = &priv->chain_noise_data; | |
756 | int ret; | |
757 | ||
758 | if ((data->state == IWL_CHAIN_NOISE_ALIVE) && | |
759 | iwl_is_any_associated(priv)) { | |
760 | struct iwl_calib_chain_noise_reset_cmd cmd; | |
761 | ||
762 | /* clear data for chain noise calibration algorithm */ | |
763 | data->chain_noise_a = 0; | |
764 | data->chain_noise_b = 0; | |
765 | data->chain_noise_c = 0; | |
766 | data->chain_signal_a = 0; | |
767 | data->chain_signal_b = 0; | |
768 | data->chain_signal_c = 0; | |
769 | data->beacon_count = 0; | |
770 | ||
771 | memset(&cmd, 0, sizeof(cmd)); | |
772 | iwl_set_calib_hdr(&cmd.hdr, | |
898ed67b | 773 | priv->phy_calib_chain_noise_reset_cmd); |
e6bb4c9c | 774 | ret = iwl_trans_send_cmd_pdu(trans(priv), |
5c3d29fc DF |
775 | REPLY_PHY_CALIBRATION_CMD, |
776 | CMD_SYNC, sizeof(cmd), &cmd); | |
777 | if (ret) | |
778 | IWL_ERR(priv, | |
779 | "Could not send REPLY_PHY_CALIBRATION_CMD\n"); | |
780 | data->state = IWL_CHAIN_NOISE_ACCUMULATE; | |
781 | IWL_DEBUG_CALIB(priv, "Run chain_noise_calibrate\n"); | |
782 | } | |
783 | } | |
784 | ||
2295c66b JB |
785 | void iwlagn_bss_info_changed(struct ieee80211_hw *hw, |
786 | struct ieee80211_vif *vif, | |
787 | struct ieee80211_bss_conf *bss_conf, | |
788 | u32 changes) | |
789 | { | |
790 | struct iwl_priv *priv = hw->priv; | |
791 | struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); | |
792 | int ret; | |
793 | bool force = false; | |
794 | ||
6ac2f839 | 795 | mutex_lock(&priv->shrd->mutex); |
2295c66b | 796 | |
845a9c0d | 797 | if (unlikely(!iwl_is_ready(priv->shrd))) { |
14a085e7 | 798 | IWL_DEBUG_MAC80211(priv, "leave - not ready\n"); |
6ac2f839 | 799 | mutex_unlock(&priv->shrd->mutex); |
ae0b693c SZ |
800 | return; |
801 | } | |
802 | ||
803 | if (unlikely(!ctx->vif)) { | |
804 | IWL_DEBUG_MAC80211(priv, "leave - vif is NULL\n"); | |
6ac2f839 | 805 | mutex_unlock(&priv->shrd->mutex); |
893654de JB |
806 | return; |
807 | } | |
808 | ||
2295c66b JB |
809 | if (changes & BSS_CHANGED_BEACON_INT) |
810 | force = true; | |
811 | ||
812 | if (changes & BSS_CHANGED_QOS) { | |
813 | ctx->qos_data.qos_active = bss_conf->qos; | |
814 | iwlagn_update_qos(priv, ctx); | |
815 | } | |
816 | ||
817 | ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid); | |
818 | if (vif->bss_conf.use_short_preamble) | |
819 | ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK; | |
820 | else | |
821 | ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK; | |
822 | ||
823 | if (changes & BSS_CHANGED_ASSOC) { | |
824 | if (bss_conf->assoc) { | |
2295c66b JB |
825 | priv->timestamp = bss_conf->timestamp; |
826 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; | |
827 | } else { | |
68b99311 GT |
828 | /* |
829 | * If we disassociate while there are pending | |
830 | * frames, just wake up the queues and let the | |
831 | * frames "escape" ... This shouldn't really | |
832 | * be happening to start with, but we should | |
833 | * not get stuck in this case either since it | |
834 | * can happen if userspace gets confused. | |
835 | */ | |
836 | if (ctx->last_tx_rejected) { | |
837 | ctx->last_tx_rejected = false; | |
e13c0c59 EG |
838 | iwl_trans_wake_any_queue(trans(priv), |
839 | ctx->ctxid); | |
68b99311 | 840 | } |
2295c66b | 841 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; |
c8ac61cf JB |
842 | |
843 | if (ctx->ctxid == IWL_RXON_CTX_BSS) | |
844 | priv->have_rekey_data = false; | |
2295c66b | 845 | } |
207ecc5e MV |
846 | |
847 | iwlagn_bt_coex_rssi_monitor(priv); | |
2295c66b JB |
848 | } |
849 | ||
850 | if (ctx->ht.enabled) { | |
851 | ctx->ht.protection = bss_conf->ht_operation_mode & | |
852 | IEEE80211_HT_OP_MODE_PROTECTION; | |
853 | ctx->ht.non_gf_sta_present = !!(bss_conf->ht_operation_mode & | |
854 | IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT); | |
855 | iwlagn_check_needed_chains(priv, ctx, bss_conf); | |
b2769b84 | 856 | iwl_set_rxon_ht(priv, &priv->current_ht_config); |
2295c66b JB |
857 | } |
858 | ||
e3f10cea | 859 | iwlagn_set_rxon_chain(priv, ctx); |
2295c66b JB |
860 | |
861 | if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ)) | |
862 | ctx->staging.flags |= RXON_FLG_TGG_PROTECT_MSK; | |
863 | else | |
864 | ctx->staging.flags &= ~RXON_FLG_TGG_PROTECT_MSK; | |
865 | ||
866 | if (bss_conf->use_cts_prot) | |
867 | ctx->staging.flags |= RXON_FLG_SELF_CTS_EN; | |
868 | else | |
869 | ctx->staging.flags &= ~RXON_FLG_SELF_CTS_EN; | |
870 | ||
871 | memcpy(ctx->staging.bssid_addr, bss_conf->bssid, ETH_ALEN); | |
872 | ||
873 | if (vif->type == NL80211_IFTYPE_AP || | |
874 | vif->type == NL80211_IFTYPE_ADHOC) { | |
875 | if (vif->bss_conf.enable_beacon) { | |
876 | ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK; | |
877 | priv->beacon_ctx = ctx; | |
878 | } else { | |
879 | ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK; | |
880 | priv->beacon_ctx = NULL; | |
881 | } | |
882 | } | |
883 | ||
884 | if (force || memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging))) | |
885 | iwlagn_commit_rxon(priv, ctx); | |
886 | ||
8da8e628 JB |
887 | if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc) { |
888 | /* | |
889 | * The chain noise calibration will enable PM upon | |
890 | * completion. If calibration has already been run | |
891 | * then we need to enable power management here. | |
892 | */ | |
893 | if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE) | |
894 | iwl_power_update_mode(priv, false); | |
895 | ||
896 | /* Enable RX differential gain and sensitivity calibrations */ | |
5c3d29fc DF |
897 | if (!priv->disable_chain_noise_cal) |
898 | iwlagn_chain_noise_reset(priv); | |
8da8e628 JB |
899 | priv->start_calib = 1; |
900 | } | |
901 | ||
2295c66b JB |
902 | if (changes & BSS_CHANGED_IBSS) { |
903 | ret = iwlagn_manage_ibss_station(priv, vif, | |
904 | bss_conf->ibss_joined); | |
905 | if (ret) | |
906 | IWL_ERR(priv, "failed to %s IBSS station %pM\n", | |
907 | bss_conf->ibss_joined ? "add" : "remove", | |
908 | bss_conf->bssid); | |
909 | } | |
910 | ||
bd50a8ab JB |
911 | if (changes & BSS_CHANGED_BEACON && vif->type == NL80211_IFTYPE_ADHOC && |
912 | priv->beacon_ctx) { | |
913 | if (iwlagn_update_beacon(priv, vif)) | |
914 | IWL_ERR(priv, "Error sending IBSS beacon\n"); | |
915 | } | |
916 | ||
6ac2f839 | 917 | mutex_unlock(&priv->shrd->mutex); |
2295c66b | 918 | } |
ae79d23d JB |
919 | |
920 | void iwlagn_post_scan(struct iwl_priv *priv) | |
921 | { | |
922 | struct iwl_rxon_context *ctx; | |
923 | ||
c2b821d7 WYG |
924 | /* |
925 | * We do not commit power settings while scan is pending, | |
926 | * do it now if the settings changed. | |
927 | */ | |
928 | iwl_power_set_mode(priv, &priv->power_data.sleep_cmd_next, false); | |
929 | iwl_set_tx_power(priv, priv->tx_power_next, false); | |
930 | ||
ae79d23d JB |
931 | /* |
932 | * Since setting the RXON may have been deferred while | |
933 | * performing the scan, fire one off if needed | |
934 | */ | |
935 | for_each_context(priv, ctx) | |
936 | if (memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging))) | |
937 | iwlagn_commit_rxon(priv, ctx); | |
938 | ||
e3f10cea | 939 | iwlagn_set_pan_params(priv); |
ae79d23d | 940 | } |