1 /******************************************************************************
5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/etherdevice.h>
32 #include <linux/sched.h>
33 #include <linux/slab.h>
34 #include <net/mac80211.h>
36 #include "iwl-eeprom.h"
37 #include "iwl-debug.h"
40 #include "iwl-power.h"
42 #include "iwl-shared.h"
44 #include "iwl-trans.h"
46 const u8 iwl_bcast_addr
[ETH_ALEN
] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
48 #define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
49 #define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
50 static void iwl_init_ht_hw_capab(const struct iwl_priv
*priv
,
51 struct ieee80211_sta_ht_cap
*ht_info
,
52 enum ieee80211_band band
)
55 u8 rx_chains_num
= hw_params(priv
).rx_chains_num
;
56 u8 tx_chains_num
= hw_params(priv
).tx_chains_num
;
59 memset(&ht_info
->mcs
, 0, sizeof(ht_info
->mcs
));
61 ht_info
->ht_supported
= true;
63 if (cfg(priv
)->ht_params
&&
64 cfg(priv
)->ht_params
->ht_greenfield_support
)
65 ht_info
->cap
|= IEEE80211_HT_CAP_GRN_FLD
;
66 ht_info
->cap
|= IEEE80211_HT_CAP_SGI_20
;
67 max_bit_rate
= MAX_BIT_RATE_20_MHZ
;
68 if (hw_params(priv
).ht40_channel
& BIT(band
)) {
69 ht_info
->cap
|= IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
70 ht_info
->cap
|= IEEE80211_HT_CAP_SGI_40
;
71 ht_info
->mcs
.rx_mask
[4] = 0x01;
72 max_bit_rate
= MAX_BIT_RATE_40_MHZ
;
75 if (iwlagn_mod_params
.amsdu_size_8K
)
76 ht_info
->cap
|= IEEE80211_HT_CAP_MAX_AMSDU
;
78 ht_info
->ampdu_factor
= CFG_HT_RX_AMPDU_FACTOR_DEF
;
79 ht_info
->ampdu_density
= CFG_HT_MPDU_DENSITY_DEF
;
81 ht_info
->mcs
.rx_mask
[0] = 0xFF;
82 if (rx_chains_num
>= 2)
83 ht_info
->mcs
.rx_mask
[1] = 0xFF;
84 if (rx_chains_num
>= 3)
85 ht_info
->mcs
.rx_mask
[2] = 0xFF;
87 /* Highest supported Rx data rate */
88 max_bit_rate
*= rx_chains_num
;
89 WARN_ON(max_bit_rate
& ~IEEE80211_HT_MCS_RX_HIGHEST_MASK
);
90 ht_info
->mcs
.rx_highest
= cpu_to_le16(max_bit_rate
);
92 /* Tx MCS capabilities */
93 ht_info
->mcs
.tx_params
= IEEE80211_HT_MCS_TX_DEFINED
;
94 if (tx_chains_num
!= rx_chains_num
) {
95 ht_info
->mcs
.tx_params
|= IEEE80211_HT_MCS_TX_RX_DIFF
;
96 ht_info
->mcs
.tx_params
|= ((tx_chains_num
- 1) <<
97 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT
);
102 * iwl_init_geos - Initialize mac80211's geo/channel info based from eeprom
104 int iwl_init_geos(struct iwl_priv
*priv
)
106 struct iwl_channel_info
*ch
;
107 struct ieee80211_supported_band
*sband
;
108 struct ieee80211_channel
*channels
;
109 struct ieee80211_channel
*geo_ch
;
110 struct ieee80211_rate
*rates
;
112 s8 max_tx_power
= IWLAGN_TX_POWER_TARGET_POWER_MIN
;
114 if (priv
->bands
[IEEE80211_BAND_2GHZ
].n_bitrates
||
115 priv
->bands
[IEEE80211_BAND_5GHZ
].n_bitrates
) {
116 IWL_DEBUG_INFO(priv
, "Geography modes already initialized.\n");
117 set_bit(STATUS_GEO_CONFIGURED
, &priv
->shrd
->status
);
121 channels
= kcalloc(priv
->channel_count
,
122 sizeof(struct ieee80211_channel
), GFP_KERNEL
);
126 rates
= kcalloc(IWL_RATE_COUNT_LEGACY
, sizeof(struct ieee80211_rate
),
133 /* 5.2GHz channels start after the 2.4GHz channels */
134 sband
= &priv
->bands
[IEEE80211_BAND_5GHZ
];
135 sband
->channels
= &channels
[ARRAY_SIZE(iwl_eeprom_band_1
)];
137 sband
->bitrates
= &rates
[IWL_FIRST_OFDM_RATE
];
138 sband
->n_bitrates
= IWL_RATE_COUNT_LEGACY
- IWL_FIRST_OFDM_RATE
;
140 if (cfg(priv
)->sku
& EEPROM_SKU_CAP_11N_ENABLE
)
141 iwl_init_ht_hw_capab(priv
, &sband
->ht_cap
,
142 IEEE80211_BAND_5GHZ
);
144 sband
= &priv
->bands
[IEEE80211_BAND_2GHZ
];
145 sband
->channels
= channels
;
147 sband
->bitrates
= rates
;
148 sband
->n_bitrates
= IWL_RATE_COUNT_LEGACY
;
150 if (cfg(priv
)->sku
& EEPROM_SKU_CAP_11N_ENABLE
)
151 iwl_init_ht_hw_capab(priv
, &sband
->ht_cap
,
152 IEEE80211_BAND_2GHZ
);
154 priv
->ieee_channels
= channels
;
155 priv
->ieee_rates
= rates
;
157 for (i
= 0; i
< priv
->channel_count
; i
++) {
158 ch
= &priv
->channel_info
[i
];
160 /* FIXME: might be removed if scan is OK */
161 if (!is_channel_valid(ch
))
164 sband
= &priv
->bands
[ch
->band
];
166 geo_ch
= &sband
->channels
[sband
->n_channels
++];
168 geo_ch
->center_freq
=
169 ieee80211_channel_to_frequency(ch
->channel
, ch
->band
);
170 geo_ch
->max_power
= ch
->max_power_avg
;
171 geo_ch
->max_antenna_gain
= 0xff;
172 geo_ch
->hw_value
= ch
->channel
;
174 if (is_channel_valid(ch
)) {
175 if (!(ch
->flags
& EEPROM_CHANNEL_IBSS
))
176 geo_ch
->flags
|= IEEE80211_CHAN_NO_IBSS
;
178 if (!(ch
->flags
& EEPROM_CHANNEL_ACTIVE
))
179 geo_ch
->flags
|= IEEE80211_CHAN_PASSIVE_SCAN
;
181 if (ch
->flags
& EEPROM_CHANNEL_RADAR
)
182 geo_ch
->flags
|= IEEE80211_CHAN_RADAR
;
184 geo_ch
->flags
|= ch
->ht40_extension_channel
;
186 if (ch
->max_power_avg
> max_tx_power
)
187 max_tx_power
= ch
->max_power_avg
;
189 geo_ch
->flags
|= IEEE80211_CHAN_DISABLED
;
192 IWL_DEBUG_INFO(priv
, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
193 ch
->channel
, geo_ch
->center_freq
,
194 is_channel_a_band(ch
) ? "5.2" : "2.4",
195 geo_ch
->flags
& IEEE80211_CHAN_DISABLED
?
196 "restricted" : "valid",
200 priv
->tx_power_device_lmt
= max_tx_power
;
201 priv
->tx_power_user_lmt
= max_tx_power
;
202 priv
->tx_power_next
= max_tx_power
;
204 if ((priv
->bands
[IEEE80211_BAND_5GHZ
].n_channels
== 0) &&
205 cfg(priv
)->sku
& EEPROM_SKU_CAP_BAND_52GHZ
) {
207 bus_get_hw_id_string(bus(priv
), buf
, sizeof(buf
));
208 IWL_INFO(priv
, "Incorrectly detected BG card as ABG. "
209 "Please send your %s to maintainer.\n", buf
);
210 cfg(priv
)->sku
&= ~EEPROM_SKU_CAP_BAND_52GHZ
;
213 IWL_INFO(priv
, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
214 priv
->bands
[IEEE80211_BAND_2GHZ
].n_channels
,
215 priv
->bands
[IEEE80211_BAND_5GHZ
].n_channels
);
217 set_bit(STATUS_GEO_CONFIGURED
, &priv
->shrd
->status
);
223 * iwl_free_geos - undo allocations in iwl_init_geos
225 void iwl_free_geos(struct iwl_priv
*priv
)
227 kfree(priv
->ieee_channels
);
228 kfree(priv
->ieee_rates
);
229 clear_bit(STATUS_GEO_CONFIGURED
, &priv
->shrd
->status
);
232 static bool iwl_is_channel_extension(struct iwl_priv
*priv
,
233 enum ieee80211_band band
,
234 u16 channel
, u8 extension_chan_offset
)
236 const struct iwl_channel_info
*ch_info
;
238 ch_info
= iwl_get_channel_info(priv
, band
, channel
);
239 if (!is_channel_valid(ch_info
))
242 if (extension_chan_offset
== IEEE80211_HT_PARAM_CHA_SEC_ABOVE
)
243 return !(ch_info
->ht40_extension_channel
&
244 IEEE80211_CHAN_NO_HT40PLUS
);
245 else if (extension_chan_offset
== IEEE80211_HT_PARAM_CHA_SEC_BELOW
)
246 return !(ch_info
->ht40_extension_channel
&
247 IEEE80211_CHAN_NO_HT40MINUS
);
252 bool iwl_is_ht40_tx_allowed(struct iwl_priv
*priv
,
253 struct iwl_rxon_context
*ctx
,
254 struct ieee80211_sta_ht_cap
*ht_cap
)
256 if (!ctx
->ht
.enabled
|| !ctx
->ht
.is_40mhz
)
260 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
261 * the bit will not set if it is pure 40MHz case
263 if (ht_cap
&& !ht_cap
->ht_supported
)
266 #ifdef CONFIG_IWLWIFI_DEBUGFS
267 if (priv
->disable_ht40
)
271 return iwl_is_channel_extension(priv
, priv
->band
,
272 le16_to_cpu(ctx
->staging
.channel
),
273 ctx
->ht
.extension_chan_offset
);
276 static u16
iwl_adjust_beacon_interval(u16 beacon_val
, u16 max_beacon_val
)
282 * If mac80211 hasn't given us a beacon interval, program
283 * the default into the device (not checking this here
284 * would cause the adjustment below to return the maximum
285 * value, which may break PAN.)
288 return DEFAULT_BEACON_INTERVAL
;
291 * If the beacon interval we obtained from the peer
292 * is too large, we'll have to wake up more often
293 * (and in IBSS case, we'll beacon too much)
295 * For example, if max_beacon_val is 4096, and the
296 * requested beacon interval is 7000, we'll have to
297 * use 3500 to be able to wake up on the beacons.
299 * This could badly influence beacon detection stats.
302 beacon_factor
= (beacon_val
+ max_beacon_val
) / max_beacon_val
;
303 new_val
= beacon_val
/ beacon_factor
;
306 new_val
= max_beacon_val
;
311 int iwl_send_rxon_timing(struct iwl_priv
*priv
, struct iwl_rxon_context
*ctx
)
314 s32 interval_tm
, rem
;
315 struct ieee80211_conf
*conf
= NULL
;
317 struct ieee80211_vif
*vif
= ctx
->vif
;
319 conf
= &priv
->hw
->conf
;
321 lockdep_assert_held(&priv
->shrd
->mutex
);
323 memset(&ctx
->timing
, 0, sizeof(struct iwl_rxon_time_cmd
));
325 ctx
->timing
.timestamp
= cpu_to_le64(priv
->timestamp
);
326 ctx
->timing
.listen_interval
= cpu_to_le16(conf
->listen_interval
);
328 beacon_int
= vif
? vif
->bss_conf
.beacon_int
: 0;
331 * TODO: For IBSS we need to get atim_window from mac80211,
332 * for now just always use 0
334 ctx
->timing
.atim_window
= 0;
336 if (ctx
->ctxid
== IWL_RXON_CTX_PAN
&&
337 (!ctx
->vif
|| ctx
->vif
->type
!= NL80211_IFTYPE_STATION
) &&
338 iwl_is_associated(priv
, IWL_RXON_CTX_BSS
) &&
339 priv
->contexts
[IWL_RXON_CTX_BSS
].vif
&&
340 priv
->contexts
[IWL_RXON_CTX_BSS
].vif
->bss_conf
.beacon_int
) {
341 ctx
->timing
.beacon_interval
=
342 priv
->contexts
[IWL_RXON_CTX_BSS
].timing
.beacon_interval
;
343 beacon_int
= le16_to_cpu(ctx
->timing
.beacon_interval
);
344 } else if (ctx
->ctxid
== IWL_RXON_CTX_BSS
&&
345 iwl_is_associated(priv
, IWL_RXON_CTX_PAN
) &&
346 priv
->contexts
[IWL_RXON_CTX_PAN
].vif
&&
347 priv
->contexts
[IWL_RXON_CTX_PAN
].vif
->bss_conf
.beacon_int
&&
348 (!iwl_is_associated_ctx(ctx
) || !ctx
->vif
||
349 !ctx
->vif
->bss_conf
.beacon_int
)) {
350 ctx
->timing
.beacon_interval
=
351 priv
->contexts
[IWL_RXON_CTX_PAN
].timing
.beacon_interval
;
352 beacon_int
= le16_to_cpu(ctx
->timing
.beacon_interval
);
354 beacon_int
= iwl_adjust_beacon_interval(beacon_int
,
355 IWL_MAX_UCODE_BEACON_INTERVAL
* TIME_UNIT
);
356 ctx
->timing
.beacon_interval
= cpu_to_le16(beacon_int
);
359 ctx
->beacon_int
= beacon_int
;
361 tsf
= priv
->timestamp
; /* tsf is modifed by do_div: copy it */
362 interval_tm
= beacon_int
* TIME_UNIT
;
363 rem
= do_div(tsf
, interval_tm
);
364 ctx
->timing
.beacon_init_val
= cpu_to_le32(interval_tm
- rem
);
366 ctx
->timing
.dtim_period
= vif
? (vif
->bss_conf
.dtim_period
?: 1) : 1;
368 IWL_DEBUG_ASSOC(priv
,
369 "beacon interval %d beacon timer %d beacon tim %d\n",
370 le16_to_cpu(ctx
->timing
.beacon_interval
),
371 le32_to_cpu(ctx
->timing
.beacon_init_val
),
372 le16_to_cpu(ctx
->timing
.atim_window
));
374 return iwl_trans_send_cmd_pdu(trans(priv
), ctx
->rxon_timing_cmd
,
375 CMD_SYNC
, sizeof(ctx
->timing
), &ctx
->timing
);
378 void iwl_set_rxon_hwcrypto(struct iwl_priv
*priv
, struct iwl_rxon_context
*ctx
,
381 struct iwl_rxon_cmd
*rxon
= &ctx
->staging
;
384 rxon
->filter_flags
&= ~RXON_FILTER_DIS_DECRYPT_MSK
;
386 rxon
->filter_flags
|= RXON_FILTER_DIS_DECRYPT_MSK
;
390 /* validate RXON structure is valid */
391 int iwl_check_rxon_cmd(struct iwl_priv
*priv
, struct iwl_rxon_context
*ctx
)
393 struct iwl_rxon_cmd
*rxon
= &ctx
->staging
;
396 if (rxon
->flags
& RXON_FLG_BAND_24G_MSK
) {
397 if (rxon
->flags
& RXON_FLG_TGJ_NARROW_BAND_MSK
) {
398 IWL_WARN(priv
, "check 2.4G: wrong narrow\n");
401 if (rxon
->flags
& RXON_FLG_RADAR_DETECT_MSK
) {
402 IWL_WARN(priv
, "check 2.4G: wrong radar\n");
406 if (!(rxon
->flags
& RXON_FLG_SHORT_SLOT_MSK
)) {
407 IWL_WARN(priv
, "check 5.2G: not short slot!\n");
410 if (rxon
->flags
& RXON_FLG_CCK_MSK
) {
411 IWL_WARN(priv
, "check 5.2G: CCK!\n");
415 if ((rxon
->node_addr
[0] | rxon
->bssid_addr
[0]) & 0x1) {
416 IWL_WARN(priv
, "mac/bssid mcast!\n");
420 /* make sure basic rates 6Mbps and 1Mbps are supported */
421 if ((rxon
->ofdm_basic_rates
& IWL_RATE_6M_MASK
) == 0 &&
422 (rxon
->cck_basic_rates
& IWL_RATE_1M_MASK
) == 0) {
423 IWL_WARN(priv
, "neither 1 nor 6 are basic\n");
427 if (le16_to_cpu(rxon
->assoc_id
) > 2007) {
428 IWL_WARN(priv
, "aid > 2007\n");
432 if ((rxon
->flags
& (RXON_FLG_CCK_MSK
| RXON_FLG_SHORT_SLOT_MSK
))
433 == (RXON_FLG_CCK_MSK
| RXON_FLG_SHORT_SLOT_MSK
)) {
434 IWL_WARN(priv
, "CCK and short slot\n");
438 if ((rxon
->flags
& (RXON_FLG_CCK_MSK
| RXON_FLG_AUTO_DETECT_MSK
))
439 == (RXON_FLG_CCK_MSK
| RXON_FLG_AUTO_DETECT_MSK
)) {
440 IWL_WARN(priv
, "CCK and auto detect");
444 if ((rxon
->flags
& (RXON_FLG_AUTO_DETECT_MSK
|
445 RXON_FLG_TGG_PROTECT_MSK
)) ==
446 RXON_FLG_TGG_PROTECT_MSK
) {
447 IWL_WARN(priv
, "TGg but no auto-detect\n");
451 if (rxon
->channel
== 0) {
452 IWL_WARN(priv
, "zero channel is invalid\n");
456 WARN(errors
, "Invalid RXON (%#x), channel %d",
457 errors
, le16_to_cpu(rxon
->channel
));
459 return errors
? -EINVAL
: 0;
463 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
464 * @priv: staging_rxon is compared to active_rxon
466 * If the RXON structure is changing enough to require a new tune,
467 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
468 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
470 int iwl_full_rxon_required(struct iwl_priv
*priv
,
471 struct iwl_rxon_context
*ctx
)
473 const struct iwl_rxon_cmd
*staging
= &ctx
->staging
;
474 const struct iwl_rxon_cmd
*active
= &ctx
->active
;
478 IWL_DEBUG_INFO(priv, "need full RXON - " #cond "\n"); \
482 #define CHK_NEQ(c1, c2) \
483 if ((c1) != (c2)) { \
484 IWL_DEBUG_INFO(priv, "need full RXON - " \
485 #c1 " != " #c2 " - %d != %d\n", \
490 /* These items are only settable from the full RXON command */
491 CHK(!iwl_is_associated_ctx(ctx
));
492 CHK(compare_ether_addr(staging
->bssid_addr
, active
->bssid_addr
));
493 CHK(compare_ether_addr(staging
->node_addr
, active
->node_addr
));
494 CHK(compare_ether_addr(staging
->wlap_bssid_addr
,
495 active
->wlap_bssid_addr
));
496 CHK_NEQ(staging
->dev_type
, active
->dev_type
);
497 CHK_NEQ(staging
->channel
, active
->channel
);
498 CHK_NEQ(staging
->air_propagation
, active
->air_propagation
);
499 CHK_NEQ(staging
->ofdm_ht_single_stream_basic_rates
,
500 active
->ofdm_ht_single_stream_basic_rates
);
501 CHK_NEQ(staging
->ofdm_ht_dual_stream_basic_rates
,
502 active
->ofdm_ht_dual_stream_basic_rates
);
503 CHK_NEQ(staging
->ofdm_ht_triple_stream_basic_rates
,
504 active
->ofdm_ht_triple_stream_basic_rates
);
505 CHK_NEQ(staging
->assoc_id
, active
->assoc_id
);
507 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
508 * be updated with the RXON_ASSOC command -- however only some
509 * flag transitions are allowed using RXON_ASSOC */
511 /* Check if we are not switching bands */
512 CHK_NEQ(staging
->flags
& RXON_FLG_BAND_24G_MSK
,
513 active
->flags
& RXON_FLG_BAND_24G_MSK
);
515 /* Check if we are switching association toggle */
516 CHK_NEQ(staging
->filter_flags
& RXON_FILTER_ASSOC_MSK
,
517 active
->filter_flags
& RXON_FILTER_ASSOC_MSK
);
525 static void _iwl_set_rxon_ht(struct iwl_priv
*priv
,
526 struct iwl_ht_config
*ht_conf
,
527 struct iwl_rxon_context
*ctx
)
529 struct iwl_rxon_cmd
*rxon
= &ctx
->staging
;
531 if (!ctx
->ht
.enabled
) {
532 rxon
->flags
&= ~(RXON_FLG_CHANNEL_MODE_MSK
|
533 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
|
534 RXON_FLG_HT40_PROT_MSK
|
535 RXON_FLG_HT_PROT_MSK
);
539 /* FIXME: if the definition of ht.protection changed, the "translation"
540 * will be needed for rxon->flags
542 rxon
->flags
|= cpu_to_le32(ctx
->ht
.protection
<< RXON_FLG_HT_OPERATING_MODE_POS
);
544 /* Set up channel bandwidth:
545 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
546 /* clear the HT channel mode before set the mode */
547 rxon
->flags
&= ~(RXON_FLG_CHANNEL_MODE_MSK
|
548 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
);
549 if (iwl_is_ht40_tx_allowed(priv
, ctx
, NULL
)) {
551 if (ctx
->ht
.protection
== IEEE80211_HT_OP_MODE_PROTECTION_20MHZ
) {
552 rxon
->flags
|= RXON_FLG_CHANNEL_MODE_PURE_40
;
553 /* Note: control channel is opposite of extension channel */
554 switch (ctx
->ht
.extension_chan_offset
) {
555 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE
:
556 rxon
->flags
&= ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
;
558 case IEEE80211_HT_PARAM_CHA_SEC_BELOW
:
559 rxon
->flags
|= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
;
563 /* Note: control channel is opposite of extension channel */
564 switch (ctx
->ht
.extension_chan_offset
) {
565 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE
:
566 rxon
->flags
&= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
);
567 rxon
->flags
|= RXON_FLG_CHANNEL_MODE_MIXED
;
569 case IEEE80211_HT_PARAM_CHA_SEC_BELOW
:
570 rxon
->flags
|= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK
;
571 rxon
->flags
|= RXON_FLG_CHANNEL_MODE_MIXED
;
573 case IEEE80211_HT_PARAM_CHA_SEC_NONE
:
575 /* channel location only valid if in Mixed mode */
576 IWL_ERR(priv
, "invalid extension channel offset\n");
581 rxon
->flags
|= RXON_FLG_CHANNEL_MODE_LEGACY
;
584 iwlagn_set_rxon_chain(priv
, ctx
);
586 IWL_DEBUG_ASSOC(priv
, "rxon flags 0x%X operation mode :0x%X "
587 "extension channel offset 0x%x\n",
588 le32_to_cpu(rxon
->flags
), ctx
->ht
.protection
,
589 ctx
->ht
.extension_chan_offset
);
592 void iwl_set_rxon_ht(struct iwl_priv
*priv
, struct iwl_ht_config
*ht_conf
)
594 struct iwl_rxon_context
*ctx
;
596 for_each_context(priv
, ctx
)
597 _iwl_set_rxon_ht(priv
, ht_conf
, ctx
);
600 /* Return valid, unused, channel for a passive scan to reset the RF */
601 u8
iwl_get_single_channel_number(struct iwl_priv
*priv
,
602 enum ieee80211_band band
)
604 const struct iwl_channel_info
*ch_info
;
608 struct iwl_rxon_context
*ctx
;
610 if (band
== IEEE80211_BAND_5GHZ
) {
612 max
= priv
->channel_count
;
618 for (i
= min
; i
< max
; i
++) {
621 for_each_context(priv
, ctx
) {
622 busy
= priv
->channel_info
[i
].channel
==
623 le16_to_cpu(ctx
->staging
.channel
);
631 channel
= priv
->channel_info
[i
].channel
;
632 ch_info
= iwl_get_channel_info(priv
, band
, channel
);
633 if (is_channel_valid(ch_info
))
641 * iwl_set_rxon_channel - Set the band and channel values in staging RXON
642 * @ch: requested channel as a pointer to struct ieee80211_channel
644 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
645 * in the staging RXON flag structure based on the ch->band
647 int iwl_set_rxon_channel(struct iwl_priv
*priv
, struct ieee80211_channel
*ch
,
648 struct iwl_rxon_context
*ctx
)
650 enum ieee80211_band band
= ch
->band
;
651 u16 channel
= ch
->hw_value
;
653 if ((le16_to_cpu(ctx
->staging
.channel
) == channel
) &&
654 (priv
->band
== band
))
657 ctx
->staging
.channel
= cpu_to_le16(channel
);
658 if (band
== IEEE80211_BAND_5GHZ
)
659 ctx
->staging
.flags
&= ~RXON_FLG_BAND_24G_MSK
;
661 ctx
->staging
.flags
|= RXON_FLG_BAND_24G_MSK
;
665 IWL_DEBUG_INFO(priv
, "Staging channel set to %d [%d]\n", channel
, band
);
670 void iwl_set_flags_for_band(struct iwl_priv
*priv
,
671 struct iwl_rxon_context
*ctx
,
672 enum ieee80211_band band
,
673 struct ieee80211_vif
*vif
)
675 if (band
== IEEE80211_BAND_5GHZ
) {
676 ctx
->staging
.flags
&=
677 ~(RXON_FLG_BAND_24G_MSK
| RXON_FLG_AUTO_DETECT_MSK
679 ctx
->staging
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
681 /* Copied from iwl_post_associate() */
682 if (vif
&& vif
->bss_conf
.use_short_slot
)
683 ctx
->staging
.flags
|= RXON_FLG_SHORT_SLOT_MSK
;
685 ctx
->staging
.flags
&= ~RXON_FLG_SHORT_SLOT_MSK
;
687 ctx
->staging
.flags
|= RXON_FLG_BAND_24G_MSK
;
688 ctx
->staging
.flags
|= RXON_FLG_AUTO_DETECT_MSK
;
689 ctx
->staging
.flags
&= ~RXON_FLG_CCK_MSK
;
694 * initialize rxon structure with default values from eeprom
696 void iwl_connection_init_rx_config(struct iwl_priv
*priv
,
697 struct iwl_rxon_context
*ctx
)
699 const struct iwl_channel_info
*ch_info
;
701 memset(&ctx
->staging
, 0, sizeof(ctx
->staging
));
704 ctx
->staging
.dev_type
= ctx
->unused_devtype
;
705 } else switch (ctx
->vif
->type
) {
706 case NL80211_IFTYPE_AP
:
707 ctx
->staging
.dev_type
= ctx
->ap_devtype
;
710 case NL80211_IFTYPE_STATION
:
711 ctx
->staging
.dev_type
= ctx
->station_devtype
;
712 ctx
->staging
.filter_flags
= RXON_FILTER_ACCEPT_GRP_MSK
;
715 case NL80211_IFTYPE_ADHOC
:
716 ctx
->staging
.dev_type
= ctx
->ibss_devtype
;
717 ctx
->staging
.flags
= RXON_FLG_SHORT_PREAMBLE_MSK
;
718 ctx
->staging
.filter_flags
= RXON_FILTER_BCON_AWARE_MSK
|
719 RXON_FILTER_ACCEPT_GRP_MSK
;
723 IWL_ERR(priv
, "Unsupported interface type %d\n",
729 /* TODO: Figure out when short_preamble would be set and cache from
731 if (!hw_to_local(priv
->hw
)->short_preamble
)
732 ctx
->staging
.flags
&= ~RXON_FLG_SHORT_PREAMBLE_MSK
;
734 ctx
->staging
.flags
|= RXON_FLG_SHORT_PREAMBLE_MSK
;
737 ch_info
= iwl_get_channel_info(priv
, priv
->band
,
738 le16_to_cpu(ctx
->active
.channel
));
741 ch_info
= &priv
->channel_info
[0];
743 ctx
->staging
.channel
= cpu_to_le16(ch_info
->channel
);
744 priv
->band
= ch_info
->band
;
746 iwl_set_flags_for_band(priv
, ctx
, priv
->band
, ctx
->vif
);
748 ctx
->staging
.ofdm_basic_rates
=
749 (IWL_OFDM_RATES_MASK
>> IWL_FIRST_OFDM_RATE
) & 0xFF;
750 ctx
->staging
.cck_basic_rates
=
751 (IWL_CCK_RATES_MASK
>> IWL_FIRST_CCK_RATE
) & 0xF;
753 /* clear both MIX and PURE40 mode flag */
754 ctx
->staging
.flags
&= ~(RXON_FLG_CHANNEL_MODE_MIXED
|
755 RXON_FLG_CHANNEL_MODE_PURE_40
);
757 memcpy(ctx
->staging
.node_addr
, ctx
->vif
->addr
, ETH_ALEN
);
759 ctx
->staging
.ofdm_ht_single_stream_basic_rates
= 0xff;
760 ctx
->staging
.ofdm_ht_dual_stream_basic_rates
= 0xff;
761 ctx
->staging
.ofdm_ht_triple_stream_basic_rates
= 0xff;
764 void iwl_set_rate(struct iwl_priv
*priv
)
766 const struct ieee80211_supported_band
*hw
= NULL
;
767 struct ieee80211_rate
*rate
;
768 struct iwl_rxon_context
*ctx
;
771 hw
= iwl_get_hw_mode(priv
, priv
->band
);
773 IWL_ERR(priv
, "Failed to set rate: unable to get hw mode\n");
777 priv
->active_rate
= 0;
779 for (i
= 0; i
< hw
->n_bitrates
; i
++) {
780 rate
= &(hw
->bitrates
[i
]);
781 if (rate
->hw_value
< IWL_RATE_COUNT_LEGACY
)
782 priv
->active_rate
|= (1 << rate
->hw_value
);
785 IWL_DEBUG_RATE(priv
, "Set active_rate = %0x\n", priv
->active_rate
);
787 for_each_context(priv
, ctx
) {
788 ctx
->staging
.cck_basic_rates
=
789 (IWL_CCK_BASIC_RATES_MASK
>> IWL_FIRST_CCK_RATE
) & 0xF;
791 ctx
->staging
.ofdm_basic_rates
=
792 (IWL_OFDM_BASIC_RATES_MASK
>> IWL_FIRST_OFDM_RATE
) & 0xFF;
796 void iwl_chswitch_done(struct iwl_priv
*priv
, bool is_success
)
800 * See iwlagn_mac_channel_switch.
802 struct iwl_rxon_context
*ctx
= &priv
->contexts
[IWL_RXON_CTX_BSS
];
804 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
807 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING
,
808 &priv
->shrd
->status
))
809 ieee80211_chswitch_done(ctx
->vif
, is_success
);
812 #ifdef CONFIG_IWLWIFI_DEBUG
813 void iwl_print_rx_config_cmd(struct iwl_priv
*priv
,
814 enum iwl_rxon_context_id ctxid
)
816 struct iwl_rxon_context
*ctx
= &priv
->contexts
[ctxid
];
817 struct iwl_rxon_cmd
*rxon
= &ctx
->staging
;
819 IWL_DEBUG_RADIO(priv
, "RX CONFIG:\n");
820 iwl_print_hex_dump(priv
, IWL_DL_RADIO
, (u8
*) rxon
, sizeof(*rxon
));
821 IWL_DEBUG_RADIO(priv
, "u16 channel: 0x%x\n", le16_to_cpu(rxon
->channel
));
822 IWL_DEBUG_RADIO(priv
, "u32 flags: 0x%08X\n", le32_to_cpu(rxon
->flags
));
823 IWL_DEBUG_RADIO(priv
, "u32 filter_flags: 0x%08x\n",
824 le32_to_cpu(rxon
->filter_flags
));
825 IWL_DEBUG_RADIO(priv
, "u8 dev_type: 0x%x\n", rxon
->dev_type
);
826 IWL_DEBUG_RADIO(priv
, "u8 ofdm_basic_rates: 0x%02x\n",
827 rxon
->ofdm_basic_rates
);
828 IWL_DEBUG_RADIO(priv
, "u8 cck_basic_rates: 0x%02x\n", rxon
->cck_basic_rates
);
829 IWL_DEBUG_RADIO(priv
, "u8[6] node_addr: %pM\n", rxon
->node_addr
);
830 IWL_DEBUG_RADIO(priv
, "u8[6] bssid_addr: %pM\n", rxon
->bssid_addr
);
831 IWL_DEBUG_RADIO(priv
, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon
->assoc_id
));
835 void iwlagn_fw_error(struct iwl_priv
*priv
, bool ondemand
)
837 unsigned int reload_msec
;
838 unsigned long reload_jiffies
;
840 /* Set the FW error flag -- cleared on iwl_down */
841 set_bit(STATUS_FW_ERROR
, &priv
->shrd
->status
);
843 /* Cancel currently queued command. */
844 clear_bit(STATUS_HCMD_ACTIVE
, &priv
->shrd
->status
);
846 iwl_abort_notification_waits(priv
->shrd
);
848 /* Keep the restart process from trying to send host
849 * commands by clearing the ready bit */
850 clear_bit(STATUS_READY
, &priv
->shrd
->status
);
852 wake_up(&priv
->shrd
->wait_command_queue
);
856 * If firmware keep reloading, then it indicate something
857 * serious wrong and firmware having problem to recover
858 * from it. Instead of keep trying which will fill the syslog
859 * and hang the system, let's just stop it
861 reload_jiffies
= jiffies
;
862 reload_msec
= jiffies_to_msecs((long) reload_jiffies
-
863 (long) priv
->reload_jiffies
);
864 priv
->reload_jiffies
= reload_jiffies
;
865 if (reload_msec
<= IWL_MIN_RELOAD_DURATION
) {
866 priv
->reload_count
++;
867 if (priv
->reload_count
>= IWL_MAX_CONTINUE_RELOAD_CNT
) {
868 IWL_ERR(priv
, "BUG_ON, Stop restarting\n");
872 priv
->reload_count
= 0;
875 if (!test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
)) {
876 if (iwlagn_mod_params
.restart_fw
) {
877 IWL_DEBUG_FW_ERRORS(priv
,
878 "Restarting adapter due to uCode error.\n");
879 queue_work(priv
->shrd
->workqueue
, &priv
->restart
);
881 IWL_DEBUG_FW_ERRORS(priv
,
882 "Detected FW error, but not restarting\n");
886 static int iwl_apm_stop_master(struct iwl_priv
*priv
)
890 /* stop device's busmaster DMA activity */
891 iwl_set_bit(bus(priv
), CSR_RESET
, CSR_RESET_REG_FLAG_STOP_MASTER
);
893 ret
= iwl_poll_bit(bus(priv
), CSR_RESET
,
894 CSR_RESET_REG_FLAG_MASTER_DISABLED
,
895 CSR_RESET_REG_FLAG_MASTER_DISABLED
, 100);
897 IWL_WARN(priv
, "Master Disable Timed Out, 100 usec\n");
899 IWL_DEBUG_INFO(priv
, "stop master\n");
904 void iwl_apm_stop(struct iwl_priv
*priv
)
906 IWL_DEBUG_INFO(priv
, "Stop card, put in low power state\n");
908 clear_bit(STATUS_DEVICE_ENABLED
, &priv
->shrd
->status
);
910 /* Stop device's DMA activity */
911 iwl_apm_stop_master(priv
);
913 /* Reset the entire device */
914 iwl_set_bit(bus(priv
), CSR_RESET
, CSR_RESET_REG_FLAG_SW_RESET
);
919 * Clear "initialization complete" bit to move adapter from
920 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
922 iwl_clear_bit(bus(priv
), CSR_GP_CNTRL
, CSR_GP_CNTRL_REG_FLAG_INIT_DONE
);
927 * Start up NIC's basic functionality after it has been reset
928 * (e.g. after platform boot, or shutdown via iwl_apm_stop())
929 * NOTE: This does not load uCode nor start the embedded processor
931 int iwl_apm_init(struct iwl_priv
*priv
)
934 IWL_DEBUG_INFO(priv
, "Init card's basic functions\n");
937 * Use "set_bit" below rather than "write", to preserve any hardware
938 * bits already set by default after reset.
941 /* Disable L0S exit timer (platform NMI Work/Around) */
942 iwl_set_bit(bus(priv
), CSR_GIO_CHICKEN_BITS
,
943 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER
);
946 * Disable L0s without affecting L1;
947 * don't wait for ICH L0s (ICH bug W/A)
949 iwl_set_bit(bus(priv
), CSR_GIO_CHICKEN_BITS
,
950 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX
);
952 /* Set FH wait threshold to maximum (HW error during stress W/A) */
953 iwl_set_bit(bus(priv
), CSR_DBG_HPET_MEM_REG
, CSR_DBG_HPET_MEM_REG_VAL
);
956 * Enable HAP INTA (interrupt from management bus) to
957 * wake device's PCI Express link L1a -> L0s
959 iwl_set_bit(bus(priv
), CSR_HW_IF_CONFIG_REG
,
960 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A
);
962 bus_apm_config(bus(priv
));
964 /* Configure analog phase-lock-loop before activating to D0A */
965 if (cfg(priv
)->base_params
->pll_cfg_val
)
966 iwl_set_bit(bus(priv
), CSR_ANA_PLL_CFG
,
967 cfg(priv
)->base_params
->pll_cfg_val
);
970 * Set "initialization complete" bit to move adapter from
971 * D0U* --> D0A* (powered-up active) state.
973 iwl_set_bit(bus(priv
), CSR_GP_CNTRL
, CSR_GP_CNTRL_REG_FLAG_INIT_DONE
);
976 * Wait for clock stabilization; once stabilized, access to
977 * device-internal resources is supported, e.g. iwl_write_prph()
978 * and accesses to uCode SRAM.
980 ret
= iwl_poll_bit(bus(priv
), CSR_GP_CNTRL
,
981 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY
,
982 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY
, 25000);
984 IWL_DEBUG_INFO(priv
, "Failed to init the card\n");
989 * Enable DMA clock and wait for it to stabilize.
991 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
992 * do not disable clocks. This preserves any hardware bits already
993 * set by default in "CLK_CTRL_REG" after reset.
995 iwl_write_prph(bus(priv
), APMG_CLK_EN_REG
, APMG_CLK_VAL_DMA_CLK_RQT
);
998 /* Disable L1-Active */
999 iwl_set_bits_prph(bus(priv
), APMG_PCIDEV_STT_REG
,
1000 APMG_PCIDEV_STT_VAL_L1_ACT_DIS
);
1002 set_bit(STATUS_DEVICE_ENABLED
, &priv
->shrd
->status
);
1009 int iwl_set_tx_power(struct iwl_priv
*priv
, s8 tx_power
, bool force
)
1014 struct iwl_rxon_context
*ctx
= &priv
->contexts
[IWL_RXON_CTX_BSS
];
1016 lockdep_assert_held(&priv
->shrd
->mutex
);
1018 if (priv
->tx_power_user_lmt
== tx_power
&& !force
)
1021 if (tx_power
< IWLAGN_TX_POWER_TARGET_POWER_MIN
) {
1023 "Requested user TXPOWER %d below lower limit %d.\n",
1025 IWLAGN_TX_POWER_TARGET_POWER_MIN
);
1029 if (tx_power
> priv
->tx_power_device_lmt
) {
1031 "Requested user TXPOWER %d above upper limit %d.\n",
1032 tx_power
, priv
->tx_power_device_lmt
);
1036 if (!iwl_is_ready_rf(priv
->shrd
))
1039 /* scan complete and commit_rxon use tx_power_next value,
1040 * it always need to be updated for newest request */
1041 priv
->tx_power_next
= tx_power
;
1043 /* do not set tx power when scanning or channel changing */
1044 defer
= test_bit(STATUS_SCANNING
, &priv
->shrd
->status
) ||
1045 memcmp(&ctx
->active
, &ctx
->staging
, sizeof(ctx
->staging
));
1046 if (defer
&& !force
) {
1047 IWL_DEBUG_INFO(priv
, "Deferring tx power set\n");
1051 prev_tx_power
= priv
->tx_power_user_lmt
;
1052 priv
->tx_power_user_lmt
= tx_power
;
1054 ret
= iwlagn_send_tx_power(priv
);
1056 /* if fail to set tx_power, restore the orig. tx power */
1058 priv
->tx_power_user_lmt
= prev_tx_power
;
1059 priv
->tx_power_next
= prev_tx_power
;
1064 void iwl_send_bt_config(struct iwl_priv
*priv
)
1066 struct iwl_bt_cmd bt_cmd
= {
1067 .lead_time
= BT_LEAD_TIME_DEF
,
1068 .max_kill
= BT_MAX_KILL_DEF
,
1073 if (!iwlagn_mod_params
.bt_coex_active
)
1074 bt_cmd
.flags
= BT_COEX_DISABLE
;
1076 bt_cmd
.flags
= BT_COEX_ENABLE
;
1078 priv
->bt_enable_flag
= bt_cmd
.flags
;
1079 IWL_DEBUG_INFO(priv
, "BT coex %s\n",
1080 (bt_cmd
.flags
== BT_COEX_DISABLE
) ? "disable" : "active");
1082 if (iwl_trans_send_cmd_pdu(trans(priv
), REPLY_BT_CONFIG
,
1083 CMD_SYNC
, sizeof(struct iwl_bt_cmd
), &bt_cmd
))
1084 IWL_ERR(priv
, "failed to send BT Coex Config\n");
1087 int iwl_send_statistics_request(struct iwl_priv
*priv
, u8 flags
, bool clear
)
1089 struct iwl_statistics_cmd statistics_cmd
= {
1090 .configuration_flags
=
1091 clear
? IWL_STATS_CONF_CLEAR_STATS
: 0,
1094 if (flags
& CMD_ASYNC
)
1095 return iwl_trans_send_cmd_pdu(trans(priv
), REPLY_STATISTICS_CMD
,
1097 sizeof(struct iwl_statistics_cmd
),
1100 return iwl_trans_send_cmd_pdu(trans(priv
), REPLY_STATISTICS_CMD
,
1102 sizeof(struct iwl_statistics_cmd
),
1109 #ifdef CONFIG_IWLWIFI_DEBUGFS
1111 #define IWL_TRAFFIC_DUMP_SIZE (IWL_TRAFFIC_ENTRY_SIZE * IWL_TRAFFIC_ENTRIES)
1113 void iwl_reset_traffic_log(struct iwl_priv
*priv
)
1115 priv
->tx_traffic_idx
= 0;
1116 priv
->rx_traffic_idx
= 0;
1117 if (priv
->tx_traffic
)
1118 memset(priv
->tx_traffic
, 0, IWL_TRAFFIC_DUMP_SIZE
);
1119 if (priv
->rx_traffic
)
1120 memset(priv
->rx_traffic
, 0, IWL_TRAFFIC_DUMP_SIZE
);
1123 int iwl_alloc_traffic_mem(struct iwl_priv
*priv
)
1125 u32 traffic_size
= IWL_TRAFFIC_DUMP_SIZE
;
1127 if (iwl_get_debug_level(priv
->shrd
) & IWL_DL_TX
) {
1128 if (!priv
->tx_traffic
) {
1130 kzalloc(traffic_size
, GFP_KERNEL
);
1131 if (!priv
->tx_traffic
)
1135 if (iwl_get_debug_level(priv
->shrd
) & IWL_DL_RX
) {
1136 if (!priv
->rx_traffic
) {
1138 kzalloc(traffic_size
, GFP_KERNEL
);
1139 if (!priv
->rx_traffic
)
1143 iwl_reset_traffic_log(priv
);
1147 void iwl_free_traffic_mem(struct iwl_priv
*priv
)
1149 kfree(priv
->tx_traffic
);
1150 priv
->tx_traffic
= NULL
;
1152 kfree(priv
->rx_traffic
);
1153 priv
->rx_traffic
= NULL
;
1156 void iwl_dbg_log_tx_data_frame(struct iwl_priv
*priv
,
1157 u16 length
, struct ieee80211_hdr
*header
)
1162 if (likely(!(iwl_get_debug_level(priv
->shrd
) & IWL_DL_TX
)))
1165 if (!priv
->tx_traffic
)
1168 fc
= header
->frame_control
;
1169 if (ieee80211_is_data(fc
)) {
1170 len
= (length
> IWL_TRAFFIC_ENTRY_SIZE
)
1171 ? IWL_TRAFFIC_ENTRY_SIZE
: length
;
1172 memcpy((priv
->tx_traffic
+
1173 (priv
->tx_traffic_idx
* IWL_TRAFFIC_ENTRY_SIZE
)),
1175 priv
->tx_traffic_idx
=
1176 (priv
->tx_traffic_idx
+ 1) % IWL_TRAFFIC_ENTRIES
;
1180 void iwl_dbg_log_rx_data_frame(struct iwl_priv
*priv
,
1181 u16 length
, struct ieee80211_hdr
*header
)
1186 if (likely(!(iwl_get_debug_level(priv
->shrd
) & IWL_DL_RX
)))
1189 if (!priv
->rx_traffic
)
1192 fc
= header
->frame_control
;
1193 if (ieee80211_is_data(fc
)) {
1194 len
= (length
> IWL_TRAFFIC_ENTRY_SIZE
)
1195 ? IWL_TRAFFIC_ENTRY_SIZE
: length
;
1196 memcpy((priv
->rx_traffic
+
1197 (priv
->rx_traffic_idx
* IWL_TRAFFIC_ENTRY_SIZE
)),
1199 priv
->rx_traffic_idx
=
1200 (priv
->rx_traffic_idx
+ 1) % IWL_TRAFFIC_ENTRIES
;
1204 const char *get_mgmt_string(int cmd
)
1207 IWL_CMD(MANAGEMENT_ASSOC_REQ
);
1208 IWL_CMD(MANAGEMENT_ASSOC_RESP
);
1209 IWL_CMD(MANAGEMENT_REASSOC_REQ
);
1210 IWL_CMD(MANAGEMENT_REASSOC_RESP
);
1211 IWL_CMD(MANAGEMENT_PROBE_REQ
);
1212 IWL_CMD(MANAGEMENT_PROBE_RESP
);
1213 IWL_CMD(MANAGEMENT_BEACON
);
1214 IWL_CMD(MANAGEMENT_ATIM
);
1215 IWL_CMD(MANAGEMENT_DISASSOC
);
1216 IWL_CMD(MANAGEMENT_AUTH
);
1217 IWL_CMD(MANAGEMENT_DEAUTH
);
1218 IWL_CMD(MANAGEMENT_ACTION
);
1225 const char *get_ctrl_string(int cmd
)
1228 IWL_CMD(CONTROL_BACK_REQ
);
1229 IWL_CMD(CONTROL_BACK
);
1230 IWL_CMD(CONTROL_PSPOLL
);
1231 IWL_CMD(CONTROL_RTS
);
1232 IWL_CMD(CONTROL_CTS
);
1233 IWL_CMD(CONTROL_ACK
);
1234 IWL_CMD(CONTROL_CFEND
);
1235 IWL_CMD(CONTROL_CFENDACK
);
1242 void iwl_clear_traffic_stats(struct iwl_priv
*priv
)
1244 memset(&priv
->tx_stats
, 0, sizeof(struct traffic_stats
));
1245 memset(&priv
->rx_stats
, 0, sizeof(struct traffic_stats
));
1249 * if CONFIG_IWLWIFI_DEBUGFS defined, iwl_update_stats function will
1250 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass.
1251 * Use debugFs to display the rx/rx_statistics
1252 * if CONFIG_IWLWIFI_DEBUGFS not being defined, then no MGMT and CTRL
1253 * information will be recorded, but DATA pkt still will be recorded
1254 * for the reason of iwl_led.c need to control the led blinking based on
1255 * number of tx and rx data.
1258 void iwl_update_stats(struct iwl_priv
*priv
, bool is_tx
, __le16 fc
, u16 len
)
1260 struct traffic_stats
*stats
;
1263 stats
= &priv
->tx_stats
;
1265 stats
= &priv
->rx_stats
;
1267 if (ieee80211_is_mgmt(fc
)) {
1268 switch (fc
& cpu_to_le16(IEEE80211_FCTL_STYPE
)) {
1269 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ
):
1270 stats
->mgmt
[MANAGEMENT_ASSOC_REQ
]++;
1272 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP
):
1273 stats
->mgmt
[MANAGEMENT_ASSOC_RESP
]++;
1275 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ
):
1276 stats
->mgmt
[MANAGEMENT_REASSOC_REQ
]++;
1278 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP
):
1279 stats
->mgmt
[MANAGEMENT_REASSOC_RESP
]++;
1281 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ
):
1282 stats
->mgmt
[MANAGEMENT_PROBE_REQ
]++;
1284 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP
):
1285 stats
->mgmt
[MANAGEMENT_PROBE_RESP
]++;
1287 case cpu_to_le16(IEEE80211_STYPE_BEACON
):
1288 stats
->mgmt
[MANAGEMENT_BEACON
]++;
1290 case cpu_to_le16(IEEE80211_STYPE_ATIM
):
1291 stats
->mgmt
[MANAGEMENT_ATIM
]++;
1293 case cpu_to_le16(IEEE80211_STYPE_DISASSOC
):
1294 stats
->mgmt
[MANAGEMENT_DISASSOC
]++;
1296 case cpu_to_le16(IEEE80211_STYPE_AUTH
):
1297 stats
->mgmt
[MANAGEMENT_AUTH
]++;
1299 case cpu_to_le16(IEEE80211_STYPE_DEAUTH
):
1300 stats
->mgmt
[MANAGEMENT_DEAUTH
]++;
1302 case cpu_to_le16(IEEE80211_STYPE_ACTION
):
1303 stats
->mgmt
[MANAGEMENT_ACTION
]++;
1306 } else if (ieee80211_is_ctl(fc
)) {
1307 switch (fc
& cpu_to_le16(IEEE80211_FCTL_STYPE
)) {
1308 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ
):
1309 stats
->ctrl
[CONTROL_BACK_REQ
]++;
1311 case cpu_to_le16(IEEE80211_STYPE_BACK
):
1312 stats
->ctrl
[CONTROL_BACK
]++;
1314 case cpu_to_le16(IEEE80211_STYPE_PSPOLL
):
1315 stats
->ctrl
[CONTROL_PSPOLL
]++;
1317 case cpu_to_le16(IEEE80211_STYPE_RTS
):
1318 stats
->ctrl
[CONTROL_RTS
]++;
1320 case cpu_to_le16(IEEE80211_STYPE_CTS
):
1321 stats
->ctrl
[CONTROL_CTS
]++;
1323 case cpu_to_le16(IEEE80211_STYPE_ACK
):
1324 stats
->ctrl
[CONTROL_ACK
]++;
1326 case cpu_to_le16(IEEE80211_STYPE_CFEND
):
1327 stats
->ctrl
[CONTROL_CFEND
]++;
1329 case cpu_to_le16(IEEE80211_STYPE_CFENDACK
):
1330 stats
->ctrl
[CONTROL_CFENDACK
]++;
1336 stats
->data_bytes
+= len
;
1341 static void iwl_force_rf_reset(struct iwl_priv
*priv
)
1343 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
1346 if (!iwl_is_any_associated(priv
)) {
1347 IWL_DEBUG_SCAN(priv
, "force reset rejected: not associated\n");
1351 * There is no easy and better way to force reset the radio,
1352 * the only known method is switching channel which will force to
1353 * reset and tune the radio.
1354 * Use internal short scan (single channel) operation to should
1355 * achieve this objective.
1356 * Driver should reset the radio when number of consecutive missed
1357 * beacon, or any other uCode error condition detected.
1359 IWL_DEBUG_INFO(priv
, "perform radio reset.\n");
1360 iwl_internal_short_hw_scan(priv
);
1364 int iwl_force_reset(struct iwl_priv
*priv
, int mode
, bool external
)
1366 struct iwl_force_reset
*force_reset
;
1368 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
1371 if (mode
>= IWL_MAX_FORCE_RESET
) {
1372 IWL_DEBUG_INFO(priv
, "invalid reset request.\n");
1375 force_reset
= &priv
->force_reset
[mode
];
1376 force_reset
->reset_request_count
++;
1378 if (force_reset
->last_force_reset_jiffies
&&
1379 time_after(force_reset
->last_force_reset_jiffies
+
1380 force_reset
->reset_duration
, jiffies
)) {
1381 IWL_DEBUG_INFO(priv
, "force reset rejected\n");
1382 force_reset
->reset_reject_count
++;
1386 force_reset
->reset_success_count
++;
1387 force_reset
->last_force_reset_jiffies
= jiffies
;
1388 IWL_DEBUG_INFO(priv
, "perform force reset (%d)\n", mode
);
1391 iwl_force_rf_reset(priv
);
1395 * if the request is from external(ex: debugfs),
1396 * then always perform the request in regardless the module
1398 * if the request is from internal (uCode error or driver
1399 * detect failure), then fw_restart module parameter
1400 * need to be check before performing firmware reload
1402 if (!external
&& !iwlagn_mod_params
.restart_fw
) {
1403 IWL_DEBUG_INFO(priv
, "Cancel firmware reload based on "
1404 "module parameter setting\n");
1407 IWL_ERR(priv
, "On demand firmware reload\n");
1408 iwlagn_fw_error(priv
, true);
1415 int iwl_cmd_echo_test(struct iwl_priv
*priv
)
1418 struct iwl_host_cmd cmd
= {
1424 ret
= iwl_trans_send_cmd(trans(priv
), &cmd
);
1426 IWL_ERR(priv
, "echo testing fail: 0X%x\n", ret
);
1428 IWL_DEBUG_INFO(priv
, "echo testing pass\n");
1432 static inline int iwl_check_stuck_queue(struct iwl_priv
*priv
, int txq
)
1434 if (iwl_trans_check_stuck_queue(trans(priv
), txq
)) {
1436 ret
= iwl_force_reset(priv
, IWL_FW_RESET
, false);
1437 return (ret
== -EAGAIN
) ? 0 : 1;
1443 * Making watchdog tick be a quarter of timeout assure we will
1444 * discover the queue hung between timeout and 1.25*timeout
1446 #define IWL_WD_TICK(timeout) ((timeout) / 4)
1449 * Watchdog timer callback, we check each tx queue for stuck, if if hung
1450 * we reset the firmware. If everything is fine just rearm the timer.
1452 void iwl_bg_watchdog(unsigned long data
)
1454 struct iwl_priv
*priv
= (struct iwl_priv
*)data
;
1456 unsigned long timeout
;
1458 if (test_bit(STATUS_EXIT_PENDING
, &priv
->shrd
->status
))
1461 if (iwl_is_rfkill(priv
->shrd
))
1464 timeout
= cfg(priv
)->base_params
->wd_timeout
;
1468 /* monitor and check for stuck queues */
1469 for (cnt
= 0; cnt
< hw_params(priv
).max_txq_num
; cnt
++)
1470 if (iwl_check_stuck_queue(priv
, cnt
))
1473 mod_timer(&priv
->watchdog
, jiffies
+
1474 msecs_to_jiffies(IWL_WD_TICK(timeout
)));
1477 void iwl_setup_watchdog(struct iwl_priv
*priv
)
1479 unsigned int timeout
= cfg(priv
)->base_params
->wd_timeout
;
1481 if (!iwlagn_mod_params
.wd_disable
) {
1482 /* use system default */
1483 if (timeout
&& !cfg(priv
)->base_params
->wd_disable
)
1484 mod_timer(&priv
->watchdog
,
1486 msecs_to_jiffies(IWL_WD_TICK(timeout
)));
1488 del_timer(&priv
->watchdog
);
1490 /* module parameter overwrite default configuration */
1491 if (timeout
&& iwlagn_mod_params
.wd_disable
== 2)
1492 mod_timer(&priv
->watchdog
,
1494 msecs_to_jiffies(IWL_WD_TICK(timeout
)));
1496 del_timer(&priv
->watchdog
);
1501 * iwl_beacon_time_mask_low - mask of lower 32 bit of beacon time
1502 * @priv -- pointer to iwl_priv data structure
1503 * @tsf_bits -- number of bits need to shift for masking)
1505 static inline u32
iwl_beacon_time_mask_low(struct iwl_priv
*priv
,
1508 return (1 << tsf_bits
) - 1;
1512 * iwl_beacon_time_mask_high - mask of higher 32 bit of beacon time
1513 * @priv -- pointer to iwl_priv data structure
1514 * @tsf_bits -- number of bits need to shift for masking)
1516 static inline u32
iwl_beacon_time_mask_high(struct iwl_priv
*priv
,
1519 return ((1 << (32 - tsf_bits
)) - 1) << tsf_bits
;
1523 * extended beacon time format
1524 * time in usec will be changed into a 32-bit value in extended:internal format
1525 * the extended part is the beacon counts
1526 * the internal part is the time in usec within one beacon interval
1528 u32
iwl_usecs_to_beacons(struct iwl_priv
*priv
, u32 usec
, u32 beacon_interval
)
1532 u32 interval
= beacon_interval
* TIME_UNIT
;
1534 if (!interval
|| !usec
)
1537 quot
= (usec
/ interval
) &
1538 (iwl_beacon_time_mask_high(priv
, IWLAGN_EXT_BEACON_TIME_POS
) >>
1539 IWLAGN_EXT_BEACON_TIME_POS
);
1540 rem
= (usec
% interval
) & iwl_beacon_time_mask_low(priv
,
1541 IWLAGN_EXT_BEACON_TIME_POS
);
1543 return (quot
<< IWLAGN_EXT_BEACON_TIME_POS
) + rem
;
1546 /* base is usually what we get from ucode with each received frame,
1547 * the same as HW timer counter counting down
1549 __le32
iwl_add_beacon_time(struct iwl_priv
*priv
, u32 base
,
1550 u32 addon
, u32 beacon_interval
)
1552 u32 base_low
= base
& iwl_beacon_time_mask_low(priv
,
1553 IWLAGN_EXT_BEACON_TIME_POS
);
1554 u32 addon_low
= addon
& iwl_beacon_time_mask_low(priv
,
1555 IWLAGN_EXT_BEACON_TIME_POS
);
1556 u32 interval
= beacon_interval
* TIME_UNIT
;
1557 u32 res
= (base
& iwl_beacon_time_mask_high(priv
,
1558 IWLAGN_EXT_BEACON_TIME_POS
)) +
1559 (addon
& iwl_beacon_time_mask_high(priv
,
1560 IWLAGN_EXT_BEACON_TIME_POS
));
1562 if (base_low
> addon_low
)
1563 res
+= base_low
- addon_low
;
1564 else if (base_low
< addon_low
) {
1565 res
+= interval
+ base_low
- addon_low
;
1566 res
+= (1 << IWLAGN_EXT_BEACON_TIME_POS
);
1568 res
+= (1 << IWLAGN_EXT_BEACON_TIME_POS
);
1570 return cpu_to_le32(res
);
1573 void iwl_set_hw_rfkill_state(struct iwl_priv
*priv
, bool state
)
1575 wiphy_rfkill_set_hw_state(priv
->hw
->wiphy
, state
);
1578 void iwl_nic_config(struct iwl_priv
*priv
)
1580 cfg(priv
)->lib
->nic_config(priv
);
1583 void iwl_free_skb(struct iwl_priv
*priv
, struct sk_buff
*skb
)
1585 struct ieee80211_tx_info
*info
;
1587 info
= IEEE80211_SKB_CB(skb
);
1588 kmem_cache_free(priv
->tx_cmd_pool
, (info
->driver_data
[1]));
1589 dev_kfree_skb_any(skb
);
1592 void iwl_stop_sw_queue(struct iwl_priv
*priv
, u8 ac
)
1594 ieee80211_stop_queue(priv
->hw
, ac
);
1597 void iwl_wake_sw_queue(struct iwl_priv
*priv
, u8 ac
)
1599 ieee80211_wake_queue(priv
->hw
, ac
);