1 /******************************************************************************
3 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
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.
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
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *****************************************************************************/
31 #include "iwl-agn-calib.h"
33 static int iwlagn_disable_bss(struct iwl_priv
*priv
,
34 struct iwl_rxon_context
*ctx
,
35 struct iwl_rxon_cmd
*send
)
37 __le32 old_filter
= send
->filter_flags
;
40 send
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
41 ret
= iwl_send_cmd_pdu(priv
, ctx
->rxon_cmd
, sizeof(*send
), send
);
43 send
->filter_flags
= old_filter
;
46 IWL_ERR(priv
, "Error clearing ASSOC_MSK on BSS (%d)\n", ret
);
51 static int iwlagn_disable_pan(struct iwl_priv
*priv
,
52 struct iwl_rxon_context
*ctx
,
53 struct iwl_rxon_cmd
*send
)
55 struct iwl_notification_wait disable_wait
;
56 __le32 old_filter
= send
->filter_flags
;
57 u8 old_dev_type
= send
->dev_type
;
60 iwlagn_init_notification_wait(priv
, &disable_wait
, NULL
,
61 REPLY_WIPAN_DEACTIVATION_COMPLETE
);
63 send
->filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
64 send
->dev_type
= RXON_DEV_TYPE_P2P
;
65 ret
= iwl_send_cmd_pdu(priv
, ctx
->rxon_cmd
, sizeof(*send
), send
);
67 send
->filter_flags
= old_filter
;
68 send
->dev_type
= old_dev_type
;
71 IWL_ERR(priv
, "Error disabling PAN (%d)\n", ret
);
72 iwlagn_remove_notification(priv
, &disable_wait
);
76 wait_res
= iwlagn_wait_notification(priv
, &disable_wait
, HZ
);
78 IWL_ERR(priv
, "Timed out waiting for PAN disable\n");
86 static void iwlagn_update_qos(struct iwl_priv
*priv
,
87 struct iwl_rxon_context
*ctx
)
94 ctx
->qos_data
.def_qos_parm
.qos_flags
= 0;
96 if (ctx
->qos_data
.qos_active
)
97 ctx
->qos_data
.def_qos_parm
.qos_flags
|=
98 QOS_PARAM_FLG_UPDATE_EDCA_MSK
;
101 ctx
->qos_data
.def_qos_parm
.qos_flags
|= QOS_PARAM_FLG_TGN_MSK
;
103 IWL_DEBUG_QOS(priv
, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
104 ctx
->qos_data
.qos_active
,
105 ctx
->qos_data
.def_qos_parm
.qos_flags
);
107 ret
= iwl_send_cmd_pdu(priv
, ctx
->qos_cmd
,
108 sizeof(struct iwl_qosparam_cmd
),
109 &ctx
->qos_data
.def_qos_parm
);
111 IWL_ERR(priv
, "Failed to update QoS\n");
114 static int iwlagn_update_beacon(struct iwl_priv
*priv
,
115 struct ieee80211_vif
*vif
)
117 lockdep_assert_held(&priv
->mutex
);
119 dev_kfree_skb(priv
->beacon_skb
);
120 priv
->beacon_skb
= ieee80211_beacon_get(priv
->hw
, vif
);
121 if (!priv
->beacon_skb
)
123 return iwlagn_send_beacon_cmd(priv
);
127 * iwlagn_commit_rxon - commit staging_rxon to hardware
129 * The RXON command in staging_rxon is committed to the hardware and
130 * the active_rxon structure is updated with the new data. This
131 * function correctly transitions out of the RXON_ASSOC_MSK state if
132 * a HW tune is required based on the RXON structure changes.
134 int iwlagn_commit_rxon(struct iwl_priv
*priv
, struct iwl_rxon_context
*ctx
)
136 /* cast away the const for active_rxon in this function */
137 struct iwl_rxon_cmd
*active
= (void *)&ctx
->active
;
138 bool new_assoc
= !!(ctx
->staging
.filter_flags
& RXON_FILTER_ASSOC_MSK
);
139 bool old_assoc
= !!(ctx
->active
.filter_flags
& RXON_FILTER_ASSOC_MSK
);
142 lockdep_assert_held(&priv
->mutex
);
144 if (test_bit(STATUS_EXIT_PENDING
, &priv
->status
))
147 if (!iwl_is_alive(priv
))
150 /* This function hardcodes a bunch of dual-mode assumptions */
151 BUILD_BUG_ON(NUM_IWL_RXON_CTX
!= 2);
156 /* always get timestamp with Rx frame */
157 ctx
->staging
.flags
|= RXON_FLG_TSF2HOST_MSK
;
159 if (ctx
->ctxid
== IWL_RXON_CTX_PAN
&& priv
->_agn
.hw_roc_channel
) {
160 struct ieee80211_channel
*chan
= priv
->_agn
.hw_roc_channel
;
162 iwl_set_rxon_channel(priv
, chan
, ctx
);
163 iwl_set_flags_for_band(priv
, ctx
, chan
->band
, NULL
);
164 ctx
->staging
.filter_flags
|=
165 RXON_FILTER_ASSOC_MSK
|
166 RXON_FILTER_PROMISC_MSK
|
167 RXON_FILTER_CTL2HOST_MSK
;
168 ctx
->staging
.dev_type
= RXON_DEV_TYPE_P2P
;
171 if (memcmp(&ctx
->staging
, &ctx
->active
,
172 sizeof(ctx
->staging
)) == 0)
176 if ((ctx
->vif
&& ctx
->vif
->bss_conf
.use_short_slot
) ||
177 !(ctx
->staging
.flags
& RXON_FLG_BAND_24G_MSK
))
178 ctx
->staging
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
180 ctx
->staging
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
182 ret
= iwl_check_rxon_cmd(priv
, ctx
);
184 IWL_ERR(priv
, "Invalid RXON configuration. Not committing.\n");
189 * receive commit_rxon request
190 * abort any previous channel switch if still in process
192 if (priv
->switch_rxon
.switch_in_progress
&&
193 (priv
->switch_rxon
.channel
!= ctx
->staging
.channel
)) {
194 IWL_DEBUG_11H(priv
, "abort channel switch on %d\n",
195 le16_to_cpu(priv
->switch_rxon
.channel
));
196 iwl_chswitch_done(priv
, false);
200 * If we don't need to send a full RXON, we can use
201 * iwl_rxon_assoc_cmd which is used to reconfigure filter
202 * and other flags for the current radio configuration.
204 if (!iwl_full_rxon_required(priv
, ctx
)) {
205 ret
= iwl_send_rxon_assoc(priv
, ctx
);
207 IWL_ERR(priv
, "Error setting RXON_ASSOC (%d)\n", ret
);
211 memcpy(active
, &ctx
->staging
, sizeof(*active
));
212 iwl_print_rx_config_cmd(priv
, ctx
);
216 if (priv
->cfg
->ops
->hcmd
->set_pan_params
) {
217 ret
= priv
->cfg
->ops
->hcmd
->set_pan_params(priv
);
222 iwl_set_rxon_hwcrypto(priv
, ctx
, !priv
->cfg
->mod_params
->sw_crypto
);
225 "Going to commit RXON\n"
226 " * with%s RXON_FILTER_ASSOC_MSK\n"
229 (new_assoc
? "" : "out"),
230 le16_to_cpu(ctx
->staging
.channel
),
231 ctx
->staging
.bssid_addr
);
234 * Always clear associated first, but with the correct config.
235 * This is required as for example station addition for the
236 * AP station must be done after the BSSID is set to correctly
237 * set up filters in the device.
239 if ((old_assoc
&& new_assoc
) || !new_assoc
) {
240 if (ctx
->ctxid
== IWL_RXON_CTX_BSS
)
241 ret
= iwlagn_disable_bss(priv
, ctx
, &ctx
->staging
);
243 ret
= iwlagn_disable_pan(priv
, ctx
, &ctx
->staging
);
247 memcpy(active
, &ctx
->staging
, sizeof(*active
));
250 * Un-assoc RXON clears the station table and WEP
251 * keys, so we have to restore those afterwards.
253 iwl_clear_ucode_stations(priv
, ctx
);
254 iwl_restore_stations(priv
, ctx
);
255 ret
= iwl_restore_default_wep_keys(priv
, ctx
);
257 IWL_ERR(priv
, "Failed to restore WEP keys (%d)\n", ret
);
262 /* RXON timing must be before associated RXON */
263 ret
= iwl_send_rxon_timing(priv
, ctx
);
265 IWL_ERR(priv
, "Failed to send timing (%d)!\n", ret
);
270 /* QoS info may be cleared by previous un-assoc RXON */
271 iwlagn_update_qos(priv
, ctx
);
274 * We'll run into this code path when beaconing is
275 * enabled, but then we also need to send the beacon
278 if (ctx
->vif
&& (ctx
->vif
->type
== NL80211_IFTYPE_AP
)) {
279 ret
= iwlagn_update_beacon(priv
, ctx
->vif
);
282 "Error sending required beacon (%d)!\n",
288 priv
->start_calib
= 0;
290 * Apply the new configuration.
292 * Associated RXON doesn't clear the station table in uCode,
293 * so we don't need to restore stations etc. after this.
295 ret
= iwl_send_cmd_pdu(priv
, ctx
->rxon_cmd
,
296 sizeof(struct iwl_rxon_cmd
), &ctx
->staging
);
298 IWL_ERR(priv
, "Error setting new RXON (%d)\n", ret
);
301 memcpy(active
, &ctx
->staging
, sizeof(*active
));
303 iwl_reprogram_ap_sta(priv
, ctx
);
305 /* IBSS beacon needs to be sent after setting assoc */
306 if (ctx
->vif
&& (ctx
->vif
->type
== NL80211_IFTYPE_ADHOC
))
307 if (iwlagn_update_beacon(priv
, ctx
->vif
))
308 IWL_ERR(priv
, "Error sending IBSS beacon\n");
311 iwl_print_rx_config_cmd(priv
, ctx
);
313 iwl_init_sensitivity(priv
);
316 * If we issue a new RXON command which required a tune then we must
317 * send a new TXPOWER command or we won't be able to Tx any frames.
319 * It's expected we set power here if channel is changing.
321 ret
= iwl_set_tx_power(priv
, priv
->tx_power_next
, true);
323 IWL_ERR(priv
, "Error sending TX power (%d)\n", ret
);
330 int iwlagn_mac_config(struct ieee80211_hw
*hw
, u32 changed
)
332 struct iwl_priv
*priv
= hw
->priv
;
333 struct iwl_rxon_context
*ctx
;
334 struct ieee80211_conf
*conf
= &hw
->conf
;
335 struct ieee80211_channel
*channel
= conf
->channel
;
336 const struct iwl_channel_info
*ch_info
;
338 bool ht_changed
[NUM_IWL_RXON_CTX
] = {};
340 IWL_DEBUG_MAC80211(priv
, "changed %#x", changed
);
342 mutex_lock(&priv
->mutex
);
344 if (unlikely(test_bit(STATUS_SCANNING
, &priv
->status
))) {
345 IWL_DEBUG_MAC80211(priv
, "leave - scanning\n");
349 if (!iwl_is_ready(priv
)) {
350 IWL_DEBUG_MAC80211(priv
, "leave - not ready\n");
354 if (changed
& (IEEE80211_CONF_CHANGE_SMPS
|
355 IEEE80211_CONF_CHANGE_CHANNEL
)) {
356 /* mac80211 uses static for non-HT which is what we want */
357 priv
->current_ht_config
.smps
= conf
->smps_mode
;
360 * Recalculate chain counts.
362 * If monitor mode is enabled then mac80211 will
363 * set up the SM PS mode to OFF if an HT channel is
366 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
367 for_each_context(priv
, ctx
)
368 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
, ctx
);
371 if (changed
& IEEE80211_CONF_CHANGE_CHANNEL
) {
374 ch_info
= iwl_get_channel_info(priv
, channel
->band
,
376 if (!is_channel_valid(ch_info
)) {
377 IWL_DEBUG_MAC80211(priv
, "leave - invalid channel\n");
382 spin_lock_irqsave(&priv
->lock
, flags
);
384 for_each_context(priv
, ctx
) {
385 /* Configure HT40 channels */
386 if (ctx
->ht
.enabled
!= conf_is_ht(conf
)) {
387 ctx
->ht
.enabled
= conf_is_ht(conf
);
388 ht_changed
[ctx
->ctxid
] = true;
391 if (ctx
->ht
.enabled
) {
392 if (conf_is_ht40_minus(conf
)) {
393 ctx
->ht
.extension_chan_offset
=
394 IEEE80211_HT_PARAM_CHA_SEC_BELOW
;
395 ctx
->ht
.is_40mhz
= true;
396 } else if (conf_is_ht40_plus(conf
)) {
397 ctx
->ht
.extension_chan_offset
=
398 IEEE80211_HT_PARAM_CHA_SEC_ABOVE
;
399 ctx
->ht
.is_40mhz
= true;
401 ctx
->ht
.extension_chan_offset
=
402 IEEE80211_HT_PARAM_CHA_SEC_NONE
;
403 ctx
->ht
.is_40mhz
= false;
406 ctx
->ht
.is_40mhz
= false;
409 * Default to no protection. Protection mode will
410 * later be set from BSS config in iwl_ht_conf
412 ctx
->ht
.protection
= IEEE80211_HT_OP_MODE_PROTECTION_NONE
;
414 /* if we are switching from ht to 2.4 clear flags
415 * from any ht related info since 2.4 does not
417 if (le16_to_cpu(ctx
->staging
.channel
) !=
419 ctx
->staging
.flags
= 0;
421 iwl_set_rxon_channel(priv
, channel
, ctx
);
422 iwl_set_rxon_ht(priv
, &priv
->current_ht_config
);
424 iwl_set_flags_for_band(priv
, ctx
, channel
->band
,
428 spin_unlock_irqrestore(&priv
->lock
, flags
);
430 iwl_update_bcast_stations(priv
);
433 * The list of supported rates and rate mask can be different
434 * for each band; since the band may have changed, reset
435 * the rate mask to what mac80211 lists.
440 if (changed
& (IEEE80211_CONF_CHANGE_PS
|
441 IEEE80211_CONF_CHANGE_IDLE
)) {
442 ret
= iwl_power_update_mode(priv
, false);
444 IWL_DEBUG_MAC80211(priv
, "Error setting sleep level\n");
447 if (changed
& IEEE80211_CONF_CHANGE_POWER
) {
448 IWL_DEBUG_MAC80211(priv
, "TX Power old=%d new=%d\n",
449 priv
->tx_power_user_lmt
, conf
->power_level
);
451 iwl_set_tx_power(priv
, conf
->power_level
, false);
454 for_each_context(priv
, ctx
) {
455 if (!memcmp(&ctx
->staging
, &ctx
->active
, sizeof(ctx
->staging
)))
457 iwlagn_commit_rxon(priv
, ctx
);
458 if (ht_changed
[ctx
->ctxid
])
459 iwlagn_update_qos(priv
, ctx
);
462 mutex_unlock(&priv
->mutex
);
466 static void iwlagn_check_needed_chains(struct iwl_priv
*priv
,
467 struct iwl_rxon_context
*ctx
,
468 struct ieee80211_bss_conf
*bss_conf
)
470 struct ieee80211_vif
*vif
= ctx
->vif
;
471 struct iwl_rxon_context
*tmp
;
472 struct ieee80211_sta
*sta
;
473 struct iwl_ht_config
*ht_conf
= &priv
->current_ht_config
;
474 struct ieee80211_sta_ht_cap
*ht_cap
;
477 lockdep_assert_held(&priv
->mutex
);
480 case NL80211_IFTYPE_STATION
:
482 sta
= ieee80211_find_sta(vif
, bss_conf
->bssid
);
485 * If at all, this can only happen through a race
486 * when the AP disconnects us while we're still
487 * setting up the connection, in that case mac80211
488 * will soon tell us about that.
490 need_multiple
= false;
495 ht_cap
= &sta
->ht_cap
;
497 need_multiple
= true;
500 * If the peer advertises no support for receiving 2 and 3
501 * stream MCS rates, it can't be transmitting them either.
503 if (ht_cap
->mcs
.rx_mask
[1] == 0 &&
504 ht_cap
->mcs
.rx_mask
[2] == 0) {
505 need_multiple
= false;
506 } else if (!(ht_cap
->mcs
.tx_params
&
507 IEEE80211_HT_MCS_TX_DEFINED
)) {
508 /* If it can't TX MCS at all ... */
509 need_multiple
= false;
510 } else if (ht_cap
->mcs
.tx_params
&
511 IEEE80211_HT_MCS_TX_RX_DIFF
) {
515 * But if it can receive them, it might still not
516 * be able to transmit them, which is what we need
517 * to check here -- so check the number of streams
518 * it advertises for TX (if different from RX).
521 maxstreams
= (ht_cap
->mcs
.tx_params
&
522 IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK
);
524 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
;
528 need_multiple
= false;
533 case NL80211_IFTYPE_ADHOC
:
535 need_multiple
= false;
539 need_multiple
= true;
543 ctx
->ht_need_multiple_chains
= need_multiple
;
545 if (!need_multiple
) {
546 /* check all contexts */
547 for_each_context(priv
, tmp
) {
550 if (tmp
->ht_need_multiple_chains
) {
551 need_multiple
= true;
557 ht_conf
->single_chain_sufficient
= !need_multiple
;
560 void iwlagn_bss_info_changed(struct ieee80211_hw
*hw
,
561 struct ieee80211_vif
*vif
,
562 struct ieee80211_bss_conf
*bss_conf
,
565 struct iwl_priv
*priv
= hw
->priv
;
566 struct iwl_rxon_context
*ctx
= iwl_rxon_ctx_from_vif(vif
);
570 mutex_lock(&priv
->mutex
);
572 if (unlikely(!iwl_is_ready(priv
))) {
573 IWL_DEBUG_MAC80211(priv
, "leave - not ready\n");
574 mutex_unlock(&priv
->mutex
);
578 if (unlikely(!ctx
->vif
)) {
579 IWL_DEBUG_MAC80211(priv
, "leave - vif is NULL\n");
580 mutex_unlock(&priv
->mutex
);
584 if (changes
& BSS_CHANGED_BEACON_INT
)
587 if (changes
& BSS_CHANGED_QOS
) {
588 ctx
->qos_data
.qos_active
= bss_conf
->qos
;
589 iwlagn_update_qos(priv
, ctx
);
592 ctx
->staging
.assoc_id
= cpu_to_le16(vif
->bss_conf
.aid
);
593 if (vif
->bss_conf
.use_short_preamble
)
594 ctx
->staging
.flags
|= RXON_FLG_SHORT_PREAMBLE_MSK
;
596 ctx
->staging
.flags
&= ~RXON_FLG_SHORT_PREAMBLE_MSK
;
598 if (changes
& BSS_CHANGED_ASSOC
) {
599 if (bss_conf
->assoc
) {
600 priv
->timestamp
= bss_conf
->timestamp
;
601 ctx
->staging
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
603 ctx
->staging
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
607 if (ctx
->ht
.enabled
) {
608 ctx
->ht
.protection
= bss_conf
->ht_operation_mode
&
609 IEEE80211_HT_OP_MODE_PROTECTION
;
610 ctx
->ht
.non_gf_sta_present
= !!(bss_conf
->ht_operation_mode
&
611 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT
);
612 iwlagn_check_needed_chains(priv
, ctx
, bss_conf
);
613 iwl_set_rxon_ht(priv
, &priv
->current_ht_config
);
616 if (priv
->cfg
->ops
->hcmd
->set_rxon_chain
)
617 priv
->cfg
->ops
->hcmd
->set_rxon_chain(priv
, ctx
);
619 if (bss_conf
->use_cts_prot
&& (priv
->band
!= IEEE80211_BAND_5GHZ
))
620 ctx
->staging
.flags
|= RXON_FLG_TGG_PROTECT_MSK
;
622 ctx
->staging
.flags
&= ~RXON_FLG_TGG_PROTECT_MSK
;
624 if (bss_conf
->use_cts_prot
)
625 ctx
->staging
.flags
|= RXON_FLG_SELF_CTS_EN
;
627 ctx
->staging
.flags
&= ~RXON_FLG_SELF_CTS_EN
;
629 memcpy(ctx
->staging
.bssid_addr
, bss_conf
->bssid
, ETH_ALEN
);
631 if (vif
->type
== NL80211_IFTYPE_AP
||
632 vif
->type
== NL80211_IFTYPE_ADHOC
) {
633 if (vif
->bss_conf
.enable_beacon
) {
634 ctx
->staging
.filter_flags
|= RXON_FILTER_ASSOC_MSK
;
635 priv
->beacon_ctx
= ctx
;
637 ctx
->staging
.filter_flags
&= ~RXON_FILTER_ASSOC_MSK
;
638 priv
->beacon_ctx
= NULL
;
642 if (force
|| memcmp(&ctx
->staging
, &ctx
->active
, sizeof(ctx
->staging
)))
643 iwlagn_commit_rxon(priv
, ctx
);
645 if (changes
& BSS_CHANGED_ASSOC
&& bss_conf
->assoc
) {
647 * The chain noise calibration will enable PM upon
648 * completion. If calibration has already been run
649 * then we need to enable power management here.
651 if (priv
->chain_noise_data
.state
== IWL_CHAIN_NOISE_DONE
)
652 iwl_power_update_mode(priv
, false);
654 /* Enable RX differential gain and sensitivity calibrations */
655 iwl_chain_noise_reset(priv
);
656 priv
->start_calib
= 1;
659 if (changes
& BSS_CHANGED_IBSS
) {
660 ret
= iwlagn_manage_ibss_station(priv
, vif
,
661 bss_conf
->ibss_joined
);
663 IWL_ERR(priv
, "failed to %s IBSS station %pM\n",
664 bss_conf
->ibss_joined
? "add" : "remove",
668 if (changes
& BSS_CHANGED_BEACON
&& vif
->type
== NL80211_IFTYPE_ADHOC
&&
670 if (iwlagn_update_beacon(priv
, vif
))
671 IWL_ERR(priv
, "Error sending IBSS beacon\n");
674 mutex_unlock(&priv
->mutex
);
677 void iwlagn_post_scan(struct iwl_priv
*priv
)
679 struct iwl_rxon_context
*ctx
;
682 * Since setting the RXON may have been deferred while
683 * performing the scan, fire one off if needed
685 for_each_context(priv
, ctx
)
686 if (memcmp(&ctx
->staging
, &ctx
->active
, sizeof(ctx
->staging
)))
687 iwlagn_commit_rxon(priv
, ctx
);
689 if (priv
->cfg
->ops
->hcmd
->set_pan_params
)
690 priv
->cfg
->ops
->hcmd
->set_pan_params(priv
);