iwlwifi: move ucode_type from iwl_priv to iwl_shared
[linux-2.6-block.git] / drivers / net / wireless / iwlwifi / iwl-core.c
CommitLineData
df48c323 1/******************************************************************************
df48c323
TW
2 *
3 * GPL LICENSE SUMMARY
4 *
901069c7 5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
df48c323
TW
6 *
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.
10 *
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.
15 *
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,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
759ef89f 25 * Intel Linux Wireless <ilw@linux.intel.com>
df48c323
TW
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28
29#include <linux/kernel.h>
30#include <linux/module.h>
8ccde88a 31#include <linux/etherdevice.h>
d43c36dc 32#include <linux/sched.h>
5a0e3ad6 33#include <linux/slab.h>
1d0a082d 34#include <net/mac80211.h>
df48c323 35
6bc913bd 36#include "iwl-eeprom.h"
19335774 37#include "iwl-debug.h"
df48c323 38#include "iwl-core.h"
b661c819 39#include "iwl-io.h"
5da4b55f 40#include "iwl-power.h"
c6baf7fb 41#include "iwl-agn.h"
48f20d35 42#include "iwl-shared.h"
9d143e9a 43#include "iwl-agn.h"
bdfbf092 44#include "iwl-trans.h"
df48c323 45
57bd1bea 46const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
57bd1bea 47
d9fe60de
JB
48#define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
49#define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
b39488a9 50static void iwl_init_ht_hw_capab(const struct iwl_priv *priv,
d9fe60de 51 struct ieee80211_sta_ht_cap *ht_info,
c7de35cd
RR
52 enum ieee80211_band band)
53{
39130df3 54 u16 max_bit_rate = 0;
d6189124
EG
55 u8 rx_chains_num = hw_params(priv).rx_chains_num;
56 u8 tx_chains_num = hw_params(priv).tx_chains_num;
39130df3 57
c7de35cd 58 ht_info->cap = 0;
d9fe60de 59 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
c7de35cd 60
d9fe60de 61 ht_info->ht_supported = true;
c7de35cd 62
7cb1b088
WYG
63 if (priv->cfg->ht_params &&
64 priv->cfg->ht_params->ht_greenfield_support)
b261793d 65 ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
d9fe60de 66 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
39130df3 67 max_bit_rate = MAX_BIT_RATE_20_MHZ;
d6189124 68 if (hw_params(priv).ht40_channel & BIT(band)) {
d9fe60de
JB
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;
39130df3 72 max_bit_rate = MAX_BIT_RATE_40_MHZ;
c7de35cd 73 }
c7de35cd 74
9d143e9a 75 if (iwlagn_mod_params.amsdu_size_8K)
d9fe60de 76 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
c7de35cd
RR
77
78 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
7cb1b088
WYG
79 if (priv->cfg->bt_params && priv->cfg->bt_params->ampdu_factor)
80 ht_info->ampdu_factor = priv->cfg->bt_params->ampdu_factor;
c7de35cd 81 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
7cb1b088
WYG
82 if (priv->cfg->bt_params && priv->cfg->bt_params->ampdu_density)
83 ht_info->ampdu_density = priv->cfg->bt_params->ampdu_density;
c7de35cd 84
d9fe60de 85 ht_info->mcs.rx_mask[0] = 0xFF;
39130df3 86 if (rx_chains_num >= 2)
d9fe60de 87 ht_info->mcs.rx_mask[1] = 0xFF;
39130df3 88 if (rx_chains_num >= 3)
d9fe60de 89 ht_info->mcs.rx_mask[2] = 0xFF;
39130df3
RR
90
91 /* Highest supported Rx data rate */
92 max_bit_rate *= rx_chains_num;
d9fe60de
JB
93 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
94 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
39130df3
RR
95
96 /* Tx MCS capabilities */
d9fe60de 97 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
39130df3 98 if (tx_chains_num != rx_chains_num) {
d9fe60de
JB
99 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
100 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
101 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
39130df3 102 }
c7de35cd 103}
c7de35cd 104
c7de35cd 105/**
b39488a9 106 * iwl_init_geos - Initialize mac80211's geo/channel info based from eeprom
c7de35cd 107 */
b39488a9 108int iwl_init_geos(struct iwl_priv *priv)
c7de35cd
RR
109{
110 struct iwl_channel_info *ch;
111 struct ieee80211_supported_band *sband;
112 struct ieee80211_channel *channels;
113 struct ieee80211_channel *geo_ch;
114 struct ieee80211_rate *rates;
115 int i = 0;
75d80cad 116 s8 max_tx_power = IWLAGN_TX_POWER_TARGET_POWER_MIN;
c7de35cd
RR
117
118 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
119 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
e1623446 120 IWL_DEBUG_INFO(priv, "Geography modes already initialized.\n");
63013ae3 121 set_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
c7de35cd
RR
122 return 0;
123 }
124
7f90dce1
EG
125 channels = kcalloc(priv->channel_count,
126 sizeof(struct ieee80211_channel), GFP_KERNEL);
c7de35cd
RR
127 if (!channels)
128 return -ENOMEM;
129
7f90dce1 130 rates = kcalloc(IWL_RATE_COUNT_LEGACY, sizeof(struct ieee80211_rate),
c7de35cd
RR
131 GFP_KERNEL);
132 if (!rates) {
133 kfree(channels);
134 return -ENOMEM;
135 }
136
137 /* 5.2GHz channels start after the 2.4GHz channels */
138 sband = &priv->bands[IEEE80211_BAND_5GHZ];
139 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
140 /* just OFDM */
141 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
5027309b 142 sband->n_bitrates = IWL_RATE_COUNT_LEGACY - IWL_FIRST_OFDM_RATE;
c7de35cd 143
88950758 144 if (priv->cfg->sku & EEPROM_SKU_CAP_11N_ENABLE)
b39488a9 145 iwl_init_ht_hw_capab(priv, &sband->ht_cap,
49779293 146 IEEE80211_BAND_5GHZ);
c7de35cd
RR
147
148 sband = &priv->bands[IEEE80211_BAND_2GHZ];
149 sband->channels = channels;
150 /* OFDM & CCK */
151 sband->bitrates = rates;
5027309b 152 sband->n_bitrates = IWL_RATE_COUNT_LEGACY;
c7de35cd 153
88950758 154 if (priv->cfg->sku & EEPROM_SKU_CAP_11N_ENABLE)
b39488a9 155 iwl_init_ht_hw_capab(priv, &sband->ht_cap,
49779293 156 IEEE80211_BAND_2GHZ);
c7de35cd
RR
157
158 priv->ieee_channels = channels;
159 priv->ieee_rates = rates;
160
c7de35cd
RR
161 for (i = 0; i < priv->channel_count; i++) {
162 ch = &priv->channel_info[i];
163
164 /* FIXME: might be removed if scan is OK */
165 if (!is_channel_valid(ch))
166 continue;
167
5a3a0352 168 sband = &priv->bands[ch->band];
c7de35cd
RR
169
170 geo_ch = &sband->channels[sband->n_channels++];
171
172 geo_ch->center_freq =
5a3a0352 173 ieee80211_channel_to_frequency(ch->channel, ch->band);
c7de35cd
RR
174 geo_ch->max_power = ch->max_power_avg;
175 geo_ch->max_antenna_gain = 0xff;
176 geo_ch->hw_value = ch->channel;
177
178 if (is_channel_valid(ch)) {
179 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
180 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
181
182 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
183 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
184
185 if (ch->flags & EEPROM_CHANNEL_RADAR)
186 geo_ch->flags |= IEEE80211_CHAN_RADAR;
187
7aafef1c 188 geo_ch->flags |= ch->ht40_extension_channel;
4d38c2e8 189
75d80cad
SG
190 if (ch->max_power_avg > max_tx_power)
191 max_tx_power = ch->max_power_avg;
c7de35cd
RR
192 } else {
193 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
194 }
195
e1623446 196 IWL_DEBUG_INFO(priv, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
c7de35cd
RR
197 ch->channel, geo_ch->center_freq,
198 is_channel_a_band(ch) ? "5.2" : "2.4",
199 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
200 "restricted" : "valid",
201 geo_ch->flags);
202 }
203
75d80cad
SG
204 priv->tx_power_device_lmt = max_tx_power;
205 priv->tx_power_user_lmt = max_tx_power;
206 priv->tx_power_next = max_tx_power;
207
c7de35cd 208 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
88950758 209 priv->cfg->sku & EEPROM_SKU_CAP_BAND_52GHZ) {
19707bac 210 char buf[32];
26bfc0cf 211 bus_get_hw_id(bus(priv), buf, sizeof(buf));
978785a3 212 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
19707bac 213 "Please send your %s to maintainer.\n", buf);
88950758 214 priv->cfg->sku &= ~EEPROM_SKU_CAP_BAND_52GHZ;
c7de35cd
RR
215 }
216
978785a3 217 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
a3139c59
SO
218 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
219 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
c7de35cd 220
63013ae3 221 set_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
c7de35cd
RR
222
223 return 0;
224}
225
226/*
b39488a9 227 * iwl_free_geos - undo allocations in iwl_init_geos
c7de35cd 228 */
b39488a9 229void iwl_free_geos(struct iwl_priv *priv)
c7de35cd
RR
230{
231 kfree(priv->ieee_channels);
232 kfree(priv->ieee_rates);
63013ae3 233 clear_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status);
c7de35cd 234}
c7de35cd 235
7e6a5886
JB
236static bool iwl_is_channel_extension(struct iwl_priv *priv,
237 enum ieee80211_band band,
238 u16 channel, u8 extension_chan_offset)
47c5196e
TW
239{
240 const struct iwl_channel_info *ch_info;
241
242 ch_info = iwl_get_channel_info(priv, band, channel);
243 if (!is_channel_valid(ch_info))
7e6a5886 244 return false;
47c5196e 245
d9fe60de 246 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
7aafef1c 247 return !(ch_info->ht40_extension_channel &
689da1b3 248 IEEE80211_CHAN_NO_HT40PLUS);
d9fe60de 249 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
7aafef1c 250 return !(ch_info->ht40_extension_channel &
689da1b3 251 IEEE80211_CHAN_NO_HT40MINUS);
47c5196e 252
7e6a5886 253 return false;
47c5196e
TW
254}
255
7e6a5886
JB
256bool iwl_is_ht40_tx_allowed(struct iwl_priv *priv,
257 struct iwl_rxon_context *ctx,
258 struct ieee80211_sta_ht_cap *ht_cap)
47c5196e 259{
7e6a5886
JB
260 if (!ctx->ht.enabled || !ctx->ht.is_40mhz)
261 return false;
47c5196e 262
7e6a5886
JB
263 /*
264 * We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
a2b0f02e
WYG
265 * the bit will not set if it is pure 40MHz case
266 */
7e6a5886
JB
267 if (ht_cap && !ht_cap->ht_supported)
268 return false;
269
d73e4923 270#ifdef CONFIG_IWLWIFI_DEBUGFS
1e4247d4 271 if (priv->disable_ht40)
7e6a5886 272 return false;
1e4247d4 273#endif
7e6a5886 274
611d3eb7 275 return iwl_is_channel_extension(priv, priv->band,
246ed355 276 le16_to_cpu(ctx->staging.channel),
7e6a5886 277 ctx->ht.extension_chan_offset);
47c5196e 278}
47c5196e 279
2c2f3b33
TW
280static u16 iwl_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
281{
ea196fdb
JB
282 u16 new_val;
283 u16 beacon_factor;
284
285 /*
286 * If mac80211 hasn't given us a beacon interval, program
287 * the default into the device (not checking this here
288 * would cause the adjustment below to return the maximum
289 * value, which may break PAN.)
290 */
291 if (!beacon_val)
292 return DEFAULT_BEACON_INTERVAL;
293
294 /*
295 * If the beacon interval we obtained from the peer
296 * is too large, we'll have to wake up more often
297 * (and in IBSS case, we'll beacon too much)
298 *
299 * For example, if max_beacon_val is 4096, and the
300 * requested beacon interval is 7000, we'll have to
301 * use 3500 to be able to wake up on the beacons.
302 *
303 * This could badly influence beacon detection stats.
304 */
2c2f3b33
TW
305
306 beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
307 new_val = beacon_val / beacon_factor;
308
309 if (!new_val)
310 new_val = max_beacon_val;
311
312 return new_val;
313}
314
47313e34 315int iwl_send_rxon_timing(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
2c2f3b33
TW
316{
317 u64 tsf;
318 s32 interval_tm, rem;
2c2f3b33
TW
319 struct ieee80211_conf *conf = NULL;
320 u16 beacon_int;
47313e34 321 struct ieee80211_vif *vif = ctx->vif;
2c2f3b33 322
8c222544 323 conf = &priv->hw->conf;
2c2f3b33 324
6ac2f839 325 lockdep_assert_held(&priv->shrd->mutex);
948f5a2f 326
246ed355 327 memset(&ctx->timing, 0, sizeof(struct iwl_rxon_time_cmd));
948f5a2f 328
246ed355
JB
329 ctx->timing.timestamp = cpu_to_le64(priv->timestamp);
330 ctx->timing.listen_interval = cpu_to_le16(conf->listen_interval);
2c2f3b33 331
47313e34 332 beacon_int = vif ? vif->bss_conf.beacon_int : 0;
2c2f3b33 333
47313e34
JB
334 /*
335 * TODO: For IBSS we need to get atim_window from mac80211,
336 * for now just always use 0
337 */
338 ctx->timing.atim_window = 0;
2c2f3b33 339
bde4530e 340 if (ctx->ctxid == IWL_RXON_CTX_PAN &&
f1f270b2
JB
341 (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION) &&
342 iwl_is_associated(priv, IWL_RXON_CTX_BSS) &&
343 priv->contexts[IWL_RXON_CTX_BSS].vif &&
344 priv->contexts[IWL_RXON_CTX_BSS].vif->bss_conf.beacon_int) {
bde4530e
JB
345 ctx->timing.beacon_interval =
346 priv->contexts[IWL_RXON_CTX_BSS].timing.beacon_interval;
347 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
f1f270b2
JB
348 } else if (ctx->ctxid == IWL_RXON_CTX_BSS &&
349 iwl_is_associated(priv, IWL_RXON_CTX_PAN) &&
350 priv->contexts[IWL_RXON_CTX_PAN].vif &&
351 priv->contexts[IWL_RXON_CTX_PAN].vif->bss_conf.beacon_int &&
352 (!iwl_is_associated_ctx(ctx) || !ctx->vif ||
353 !ctx->vif->bss_conf.beacon_int)) {
354 ctx->timing.beacon_interval =
355 priv->contexts[IWL_RXON_CTX_PAN].timing.beacon_interval;
356 beacon_int = le16_to_cpu(ctx->timing.beacon_interval);
bde4530e
JB
357 } else {
358 beacon_int = iwl_adjust_beacon_interval(beacon_int,
ab9e212e 359 IWL_MAX_UCODE_BEACON_INTERVAL * TIME_UNIT);
bde4530e
JB
360 ctx->timing.beacon_interval = cpu_to_le16(beacon_int);
361 }
2c2f3b33 362
bbb05cb5
JB
363 ctx->beacon_int = beacon_int;
364
2c2f3b33 365 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
f8525e55 366 interval_tm = beacon_int * TIME_UNIT;
2c2f3b33 367 rem = do_div(tsf, interval_tm);
246ed355 368 ctx->timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
2c2f3b33 369
47313e34 370 ctx->timing.dtim_period = vif ? (vif->bss_conf.dtim_period ?: 1) : 1;
2491fa42 371
2c2f3b33
TW
372 IWL_DEBUG_ASSOC(priv,
373 "beacon interval %d beacon timer %d beacon tim %d\n",
246ed355
JB
374 le16_to_cpu(ctx->timing.beacon_interval),
375 le32_to_cpu(ctx->timing.beacon_init_val),
376 le16_to_cpu(ctx->timing.atim_window));
948f5a2f 377
e6bb4c9c 378 return iwl_trans_send_cmd_pdu(trans(priv), ctx->rxon_timing_cmd,
e419d62d 379 CMD_SYNC, sizeof(ctx->timing), &ctx->timing);
2c2f3b33 380}
2c2f3b33 381
246ed355
JB
382void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, struct iwl_rxon_context *ctx,
383 int hw_decrypt)
8ccde88a 384{
246ed355 385 struct iwl_rxon_cmd *rxon = &ctx->staging;
8ccde88a
SO
386
387 if (hw_decrypt)
388 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
389 else
390 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
391
392}
8ccde88a 393
dacefedb 394/* validate RXON structure is valid */
246ed355 395int iwl_check_rxon_cmd(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
8ccde88a 396{
246ed355 397 struct iwl_rxon_cmd *rxon = &ctx->staging;
c914ac26 398 u32 errors = 0;
8ccde88a
SO
399
400 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
dacefedb
JB
401 if (rxon->flags & RXON_FLG_TGJ_NARROW_BAND_MSK) {
402 IWL_WARN(priv, "check 2.4G: wrong narrow\n");
c914ac26 403 errors |= BIT(0);
dacefedb
JB
404 }
405 if (rxon->flags & RXON_FLG_RADAR_DETECT_MSK) {
406 IWL_WARN(priv, "check 2.4G: wrong radar\n");
c914ac26 407 errors |= BIT(1);
dacefedb 408 }
8ccde88a 409 } else {
dacefedb
JB
410 if (!(rxon->flags & RXON_FLG_SHORT_SLOT_MSK)) {
411 IWL_WARN(priv, "check 5.2G: not short slot!\n");
c914ac26 412 errors |= BIT(2);
dacefedb
JB
413 }
414 if (rxon->flags & RXON_FLG_CCK_MSK) {
415 IWL_WARN(priv, "check 5.2G: CCK!\n");
c914ac26 416 errors |= BIT(3);
dacefedb
JB
417 }
418 }
419 if ((rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1) {
420 IWL_WARN(priv, "mac/bssid mcast!\n");
c914ac26 421 errors |= BIT(4);
8ccde88a 422 }
8ccde88a
SO
423
424 /* make sure basic rates 6Mbps and 1Mbps are supported */
dacefedb
JB
425 if ((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0 &&
426 (rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0) {
427 IWL_WARN(priv, "neither 1 nor 6 are basic\n");
c914ac26 428 errors |= BIT(5);
dacefedb 429 }
8ccde88a 430
dacefedb
JB
431 if (le16_to_cpu(rxon->assoc_id) > 2007) {
432 IWL_WARN(priv, "aid > 2007\n");
c914ac26 433 errors |= BIT(6);
dacefedb 434 }
8ccde88a 435
dacefedb
JB
436 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
437 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK)) {
438 IWL_WARN(priv, "CCK and short slot\n");
c914ac26 439 errors |= BIT(7);
dacefedb 440 }
8ccde88a 441
dacefedb
JB
442 if ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
443 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK)) {
444 IWL_WARN(priv, "CCK and auto detect");
c914ac26 445 errors |= BIT(8);
dacefedb 446 }
8ccde88a 447
dacefedb
JB
448 if ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
449 RXON_FLG_TGG_PROTECT_MSK)) ==
450 RXON_FLG_TGG_PROTECT_MSK) {
451 IWL_WARN(priv, "TGg but no auto-detect\n");
c914ac26 452 errors |= BIT(9);
dacefedb 453 }
8ccde88a 454
c914ac26
JB
455 if (rxon->channel == 0) {
456 IWL_WARN(priv, "zero channel is invalid\n");
457 errors |= BIT(10);
8ccde88a 458 }
c914ac26
JB
459
460 WARN(errors, "Invalid RXON (%#x), channel %d",
461 errors, le16_to_cpu(rxon->channel));
462
463 return errors ? -EINVAL : 0;
8ccde88a 464}
8ccde88a
SO
465
466/**
467 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
468 * @priv: staging_rxon is compared to active_rxon
469 *
470 * If the RXON structure is changing enough to require a new tune,
471 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
472 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
473 */
246ed355
JB
474int iwl_full_rxon_required(struct iwl_priv *priv,
475 struct iwl_rxon_context *ctx)
8ccde88a 476{
246ed355
JB
477 const struct iwl_rxon_cmd *staging = &ctx->staging;
478 const struct iwl_rxon_cmd *active = &ctx->active;
479
480#define CHK(cond) \
481 if ((cond)) { \
482 IWL_DEBUG_INFO(priv, "need full RXON - " #cond "\n"); \
483 return 1; \
484 }
485
486#define CHK_NEQ(c1, c2) \
487 if ((c1) != (c2)) { \
488 IWL_DEBUG_INFO(priv, "need full RXON - " \
489 #c1 " != " #c2 " - %d != %d\n", \
490 (c1), (c2)); \
491 return 1; \
492 }
8ccde88a
SO
493
494 /* These items are only settable from the full RXON command */
246ed355
JB
495 CHK(!iwl_is_associated_ctx(ctx));
496 CHK(compare_ether_addr(staging->bssid_addr, active->bssid_addr));
497 CHK(compare_ether_addr(staging->node_addr, active->node_addr));
498 CHK(compare_ether_addr(staging->wlap_bssid_addr,
499 active->wlap_bssid_addr));
500 CHK_NEQ(staging->dev_type, active->dev_type);
501 CHK_NEQ(staging->channel, active->channel);
502 CHK_NEQ(staging->air_propagation, active->air_propagation);
503 CHK_NEQ(staging->ofdm_ht_single_stream_basic_rates,
504 active->ofdm_ht_single_stream_basic_rates);
505 CHK_NEQ(staging->ofdm_ht_dual_stream_basic_rates,
506 active->ofdm_ht_dual_stream_basic_rates);
507 CHK_NEQ(staging->ofdm_ht_triple_stream_basic_rates,
508 active->ofdm_ht_triple_stream_basic_rates);
509 CHK_NEQ(staging->assoc_id, active->assoc_id);
8ccde88a
SO
510
511 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
512 * be updated with the RXON_ASSOC command -- however only some
513 * flag transitions are allowed using RXON_ASSOC */
514
515 /* Check if we are not switching bands */
246ed355
JB
516 CHK_NEQ(staging->flags & RXON_FLG_BAND_24G_MSK,
517 active->flags & RXON_FLG_BAND_24G_MSK);
8ccde88a
SO
518
519 /* Check if we are switching association toggle */
246ed355
JB
520 CHK_NEQ(staging->filter_flags & RXON_FILTER_ASSOC_MSK,
521 active->filter_flags & RXON_FILTER_ASSOC_MSK);
522
523#undef CHK
524#undef CHK_NEQ
8ccde88a
SO
525
526 return 0;
527}
8ccde88a 528
246ed355
JB
529static void _iwl_set_rxon_ht(struct iwl_priv *priv,
530 struct iwl_ht_config *ht_conf,
531 struct iwl_rxon_context *ctx)
47c5196e 532{
246ed355 533 struct iwl_rxon_cmd *rxon = &ctx->staging;
47c5196e 534
7e6a5886 535 if (!ctx->ht.enabled) {
a2b0f02e 536 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
42eb7c64 537 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
7aafef1c 538 RXON_FLG_HT40_PROT_MSK |
42eb7c64 539 RXON_FLG_HT_PROT_MSK);
47c5196e 540 return;
42eb7c64 541 }
47c5196e 542
7e6a5886 543 /* FIXME: if the definition of ht.protection changed, the "translation"
a2b0f02e
WYG
544 * will be needed for rxon->flags
545 */
7e6a5886 546 rxon->flags |= cpu_to_le32(ctx->ht.protection << RXON_FLG_HT_OPERATING_MODE_POS);
a2b0f02e
WYG
547
548 /* Set up channel bandwidth:
7aafef1c 549 * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
a2b0f02e
WYG
550 /* clear the HT channel mode before set the mode */
551 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
552 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
7e6a5886 553 if (iwl_is_ht40_tx_allowed(priv, ctx, NULL)) {
7aafef1c 554 /* pure ht40 */
7e6a5886 555 if (ctx->ht.protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
a2b0f02e 556 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
508b08e7 557 /* Note: control channel is opposite of extension channel */
7e6a5886 558 switch (ctx->ht.extension_chan_offset) {
508b08e7
WYG
559 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
560 rxon->flags &= ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
561 break;
562 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
563 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
564 break;
565 }
566 } else {
a2b0f02e 567 /* Note: control channel is opposite of extension channel */
7e6a5886 568 switch (ctx->ht.extension_chan_offset) {
a2b0f02e
WYG
569 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
570 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
571 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
572 break;
573 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
574 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
575 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
576 break;
577 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
578 default:
579 /* channel location only valid if in Mixed mode */
580 IWL_ERR(priv, "invalid extension channel offset\n");
581 break;
582 }
583 }
584 } else {
585 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
47c5196e
TW
586 }
587
e3f10cea 588 iwlagn_set_rxon_chain(priv, ctx);
47c5196e 589
02bb1bea 590 IWL_DEBUG_ASSOC(priv, "rxon flags 0x%X operation mode :0x%X "
ae5eb026 591 "extension channel offset 0x%x\n",
7e6a5886
JB
592 le32_to_cpu(rxon->flags), ctx->ht.protection,
593 ctx->ht.extension_chan_offset);
47c5196e 594}
246ed355
JB
595
596void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_config *ht_conf)
597{
598 struct iwl_rxon_context *ctx;
599
600 for_each_context(priv, ctx)
601 _iwl_set_rxon_ht(priv, ht_conf, ctx);
602}
47c5196e 603
246ed355 604/* Return valid, unused, channel for a passive scan to reset the RF */
14023641 605u8 iwl_get_single_channel_number(struct iwl_priv *priv,
246ed355 606 enum ieee80211_band band)
14023641
AK
607{
608 const struct iwl_channel_info *ch_info;
609 int i;
610 u8 channel = 0;
246ed355
JB
611 u8 min, max;
612 struct iwl_rxon_context *ctx;
14023641 613
14023641 614 if (band == IEEE80211_BAND_5GHZ) {
246ed355
JB
615 min = 14;
616 max = priv->channel_count;
14023641 617 } else {
246ed355
JB
618 min = 0;
619 max = 14;
620 }
621
622 for (i = min; i < max; i++) {
623 bool busy = false;
624
625 for_each_context(priv, ctx) {
626 busy = priv->channel_info[i].channel ==
627 le16_to_cpu(ctx->staging.channel);
628 if (busy)
629 break;
14023641 630 }
246ed355
JB
631
632 if (busy)
633 continue;
634
635 channel = priv->channel_info[i].channel;
636 ch_info = iwl_get_channel_info(priv, band, channel);
637 if (is_channel_valid(ch_info))
638 break;
14023641
AK
639 }
640
641 return channel;
642}
14023641 643
bf85ea4f 644/**
3edb5fd6
SZ
645 * iwl_set_rxon_channel - Set the band and channel values in staging RXON
646 * @ch: requested channel as a pointer to struct ieee80211_channel
bf85ea4f 647
bf85ea4f 648 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
3edb5fd6 649 * in the staging RXON flag structure based on the ch->band
bf85ea4f 650 */
246ed355
JB
651int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch,
652 struct iwl_rxon_context *ctx)
bf85ea4f 653{
17e72782 654 enum ieee80211_band band = ch->band;
81e95430 655 u16 channel = ch->hw_value;
17e72782 656
246ed355 657 if ((le16_to_cpu(ctx->staging.channel) == channel) &&
bf85ea4f
AK
658 (priv->band == band))
659 return 0;
660
246ed355 661 ctx->staging.channel = cpu_to_le16(channel);
bf85ea4f 662 if (band == IEEE80211_BAND_5GHZ)
246ed355 663 ctx->staging.flags &= ~RXON_FLG_BAND_24G_MSK;
bf85ea4f 664 else
246ed355 665 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
bf85ea4f
AK
666
667 priv->band = band;
668
e1623446 669 IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
bf85ea4f
AK
670
671 return 0;
672}
bf85ea4f 673
79d07325 674void iwl_set_flags_for_band(struct iwl_priv *priv,
246ed355 675 struct iwl_rxon_context *ctx,
79d07325
WYG
676 enum ieee80211_band band,
677 struct ieee80211_vif *vif)
8ccde88a
SO
678{
679 if (band == IEEE80211_BAND_5GHZ) {
246ed355 680 ctx->staging.flags &=
8ccde88a
SO
681 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
682 | RXON_FLG_CCK_MSK);
246ed355 683 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
8ccde88a
SO
684 } else {
685 /* Copied from iwl_post_associate() */
c213d745 686 if (vif && vif->bss_conf.use_short_slot)
246ed355 687 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
8ccde88a 688 else
246ed355 689 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
8ccde88a 690
246ed355
JB
691 ctx->staging.flags |= RXON_FLG_BAND_24G_MSK;
692 ctx->staging.flags |= RXON_FLG_AUTO_DETECT_MSK;
693 ctx->staging.flags &= ~RXON_FLG_CCK_MSK;
8ccde88a
SO
694 }
695}
8ccde88a
SO
696
697/*
698 * initialize rxon structure with default values from eeprom
699 */
1dda6d28 700void iwl_connection_init_rx_config(struct iwl_priv *priv,
d0fe478c 701 struct iwl_rxon_context *ctx)
8ccde88a
SO
702{
703 const struct iwl_channel_info *ch_info;
704
246ed355 705 memset(&ctx->staging, 0, sizeof(ctx->staging));
8ccde88a 706
d0fe478c
JB
707 if (!ctx->vif) {
708 ctx->staging.dev_type = ctx->unused_devtype;
709 } else switch (ctx->vif->type) {
8ccde88a 710 case NL80211_IFTYPE_AP:
d0fe478c 711 ctx->staging.dev_type = ctx->ap_devtype;
8ccde88a
SO
712 break;
713
714 case NL80211_IFTYPE_STATION:
d0fe478c 715 ctx->staging.dev_type = ctx->station_devtype;
246ed355 716 ctx->staging.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
8ccde88a
SO
717 break;
718
719 case NL80211_IFTYPE_ADHOC:
d0fe478c 720 ctx->staging.dev_type = ctx->ibss_devtype;
246ed355
JB
721 ctx->staging.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
722 ctx->staging.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
8ccde88a
SO
723 RXON_FILTER_ACCEPT_GRP_MSK;
724 break;
725
8ccde88a 726 default:
d0fe478c
JB
727 IWL_ERR(priv, "Unsupported interface type %d\n",
728 ctx->vif->type);
8ccde88a
SO
729 break;
730 }
731
732#if 0
733 /* TODO: Figure out when short_preamble would be set and cache from
734 * that */
735 if (!hw_to_local(priv->hw)->short_preamble)
246ed355 736 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
8ccde88a 737 else
246ed355 738 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
8ccde88a
SO
739#endif
740
741 ch_info = iwl_get_channel_info(priv, priv->band,
246ed355 742 le16_to_cpu(ctx->active.channel));
8ccde88a
SO
743
744 if (!ch_info)
745 ch_info = &priv->channel_info[0];
746
246ed355 747 ctx->staging.channel = cpu_to_le16(ch_info->channel);
8ccde88a
SO
748 priv->band = ch_info->band;
749
d0fe478c 750 iwl_set_flags_for_band(priv, ctx, priv->band, ctx->vif);
8ccde88a 751
246ed355 752 ctx->staging.ofdm_basic_rates =
8ccde88a 753 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
246ed355 754 ctx->staging.cck_basic_rates =
8ccde88a
SO
755 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
756
a2b0f02e 757 /* clear both MIX and PURE40 mode flag */
246ed355 758 ctx->staging.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
a2b0f02e 759 RXON_FLG_CHANNEL_MODE_PURE_40);
d0fe478c
JB
760 if (ctx->vif)
761 memcpy(ctx->staging.node_addr, ctx->vif->addr, ETH_ALEN);
7684c408 762
246ed355
JB
763 ctx->staging.ofdm_ht_single_stream_basic_rates = 0xff;
764 ctx->staging.ofdm_ht_dual_stream_basic_rates = 0xff;
765 ctx->staging.ofdm_ht_triple_stream_basic_rates = 0xff;
8ccde88a 766}
8ccde88a 767
79d07325 768void iwl_set_rate(struct iwl_priv *priv)
8ccde88a
SO
769{
770 const struct ieee80211_supported_band *hw = NULL;
771 struct ieee80211_rate *rate;
246ed355 772 struct iwl_rxon_context *ctx;
8ccde88a
SO
773 int i;
774
775 hw = iwl_get_hw_mode(priv, priv->band);
776 if (!hw) {
777 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
778 return;
779 }
780
781 priv->active_rate = 0;
8ccde88a
SO
782
783 for (i = 0; i < hw->n_bitrates; i++) {
784 rate = &(hw->bitrates[i]);
5027309b 785 if (rate->hw_value < IWL_RATE_COUNT_LEGACY)
8ccde88a
SO
786 priv->active_rate |= (1 << rate->hw_value);
787 }
788
4a02886b 789 IWL_DEBUG_RATE(priv, "Set active_rate = %0x\n", priv->active_rate);
8ccde88a 790
246ed355
JB
791 for_each_context(priv, ctx) {
792 ctx->staging.cck_basic_rates =
793 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
4a02886b 794
246ed355
JB
795 ctx->staging.ofdm_basic_rates =
796 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
797 }
8ccde88a 798}
79d07325
WYG
799
800void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
801{
8bd413e6
JB
802 /*
803 * MULTI-FIXME
ade4c649 804 * See iwlagn_mac_channel_switch.
8bd413e6
JB
805 */
806 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
807
63013ae3 808 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
79d07325
WYG
809 return;
810
63013ae3
EG
811 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING,
812 &priv->shrd->status))
8bd413e6 813 ieee80211_chswitch_done(ctx->vif, is_success);
79d07325 814}
8ccde88a 815
8ccde88a 816#ifdef CONFIG_IWLWIFI_DEBUG
14991a9d
EG
817void iwl_print_rx_config_cmd(struct iwl_priv *priv,
818 enum iwl_rxon_context_id ctxid)
8ccde88a 819{
522376d2 820 struct iwl_rxon_context *ctx = &priv->contexts[ctxid];
246ed355 821 struct iwl_rxon_cmd *rxon = &ctx->staging;
8ccde88a 822
e1623446 823 IWL_DEBUG_RADIO(priv, "RX CONFIG:\n");
3d816c77 824 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
e1623446
TW
825 IWL_DEBUG_RADIO(priv, "u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
826 IWL_DEBUG_RADIO(priv, "u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
827 IWL_DEBUG_RADIO(priv, "u32 filter_flags: 0x%08x\n",
8ccde88a 828 le32_to_cpu(rxon->filter_flags));
e1623446
TW
829 IWL_DEBUG_RADIO(priv, "u8 dev_type: 0x%x\n", rxon->dev_type);
830 IWL_DEBUG_RADIO(priv, "u8 ofdm_basic_rates: 0x%02x\n",
8ccde88a 831 rxon->ofdm_basic_rates);
e1623446
TW
832 IWL_DEBUG_RADIO(priv, "u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
833 IWL_DEBUG_RADIO(priv, "u8[6] node_addr: %pM\n", rxon->node_addr);
834 IWL_DEBUG_RADIO(priv, "u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
835 IWL_DEBUG_RADIO(priv, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
8ccde88a 836}
6686d17e 837#endif
e649437f 838
e74fe233
JB
839static void iwlagn_abort_notification_waits(struct iwl_priv *priv)
840{
841 unsigned long flags;
842 struct iwl_notification_wait *wait_entry;
843
898ed67b
WYG
844 spin_lock_irqsave(&priv->notif_wait_lock, flags);
845 list_for_each_entry(wait_entry, &priv->notif_waits, list)
e74fe233 846 wait_entry->aborted = true;
898ed67b 847 spin_unlock_irqrestore(&priv->notif_wait_lock, flags);
e74fe233 848
898ed67b 849 wake_up_all(&priv->notif_waitq);
e74fe233
JB
850}
851
e649437f 852void iwlagn_fw_error(struct iwl_priv *priv, bool ondemand)
8ccde88a 853{
491bc292
WYG
854 unsigned int reload_msec;
855 unsigned long reload_jiffies;
856
8ccde88a 857 /* Set the FW error flag -- cleared on iwl_down */
63013ae3 858 set_bit(STATUS_FW_ERROR, &priv->shrd->status);
8ccde88a
SO
859
860 /* Cancel currently queued command. */
63013ae3 861 clear_bit(STATUS_HCMD_ACTIVE, &priv->shrd->status);
8ccde88a 862
e74fe233
JB
863 iwlagn_abort_notification_waits(priv);
864
e649437f
JB
865 /* Keep the restart process from trying to send host
866 * commands by clearing the ready bit */
63013ae3 867 clear_bit(STATUS_READY, &priv->shrd->status);
e649437f 868
effd4d9a 869 wake_up(&priv->shrd->wait_command_queue);
e649437f
JB
870
871 if (!ondemand) {
872 /*
873 * If firmware keep reloading, then it indicate something
874 * serious wrong and firmware having problem to recover
875 * from it. Instead of keep trying which will fill the syslog
876 * and hang the system, let's just stop it
877 */
878 reload_jiffies = jiffies;
879 reload_msec = jiffies_to_msecs((long) reload_jiffies -
880 (long) priv->reload_jiffies);
881 priv->reload_jiffies = reload_jiffies;
882 if (reload_msec <= IWL_MIN_RELOAD_DURATION) {
883 priv->reload_count++;
884 if (priv->reload_count >= IWL_MAX_CONTINUE_RELOAD_CNT) {
885 IWL_ERR(priv, "BUG_ON, Stop restarting\n");
886 return;
887 }
888 } else
889 priv->reload_count = 0;
890 }
891
63013ae3 892 if (!test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) {
9d143e9a 893 if (iwlagn_mod_params.restart_fw) {
9ca06f0a 894 IWL_DEBUG_FW_ERRORS(priv,
e649437f 895 "Restarting adapter due to uCode error.\n");
74e28e44 896 queue_work(priv->shrd->workqueue, &priv->restart);
e649437f 897 } else
9ca06f0a 898 IWL_DEBUG_FW_ERRORS(priv,
e649437f
JB
899 "Detected FW error, but not restarting\n");
900 }
901}
902
f8e200de 903static int iwl_apm_stop_master(struct iwl_priv *priv)
d68b603c 904{
5220af0c 905 int ret = 0;
d68b603c 906
5220af0c 907 /* stop device's busmaster DMA activity */
83ed9015 908 iwl_set_bit(bus(priv), CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
d68b603c 909
83ed9015
EG
910 ret = iwl_poll_bit(bus(priv), CSR_RESET,
911 CSR_RESET_REG_FLAG_MASTER_DISABLED,
d68b603c 912 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
5220af0c
BC
913 if (ret)
914 IWL_WARN(priv, "Master Disable Timed Out, 100 usec\n");
d68b603c 915
d68b603c
AK
916 IWL_DEBUG_INFO(priv, "stop master\n");
917
5220af0c 918 return ret;
d68b603c 919}
d68b603c
AK
920
921void iwl_apm_stop(struct iwl_priv *priv)
922{
fadb3582
BC
923 IWL_DEBUG_INFO(priv, "Stop card, put in low power state\n");
924
63013ae3 925 clear_bit(STATUS_DEVICE_ENABLED, &priv->shrd->status);
9d39e5ba 926
5220af0c 927 /* Stop device's DMA activity */
d68b603c
AK
928 iwl_apm_stop_master(priv);
929
5220af0c 930 /* Reset the entire device */
83ed9015 931 iwl_set_bit(bus(priv), CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
d68b603c
AK
932
933 udelay(10);
5220af0c
BC
934
935 /*
936 * Clear "initialization complete" bit to move adapter from
937 * D0A* (powered-up Active) --> D0U* (Uninitialized) state.
938 */
83ed9015 939 iwl_clear_bit(bus(priv), CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
d68b603c 940}
d68b603c 941
fadb3582
BC
942
943/*
944 * Start up NIC's basic functionality after it has been reset
945 * (e.g. after platform boot, or shutdown via iwl_apm_stop())
946 * NOTE: This does not load uCode nor start the embedded processor
947 */
948int iwl_apm_init(struct iwl_priv *priv)
949{
950 int ret = 0;
fadb3582
BC
951 IWL_DEBUG_INFO(priv, "Init card's basic functions\n");
952
953 /*
954 * Use "set_bit" below rather than "write", to preserve any hardware
955 * bits already set by default after reset.
956 */
957
958 /* Disable L0S exit timer (platform NMI Work/Around) */
83ed9015 959 iwl_set_bit(bus(priv), CSR_GIO_CHICKEN_BITS,
fadb3582
BC
960 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
961
962 /*
963 * Disable L0s without affecting L1;
964 * don't wait for ICH L0s (ICH bug W/A)
965 */
83ed9015 966 iwl_set_bit(bus(priv), CSR_GIO_CHICKEN_BITS,
fadb3582
BC
967 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
968
969 /* Set FH wait threshold to maximum (HW error during stress W/A) */
83ed9015 970 iwl_set_bit(bus(priv), CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
fadb3582
BC
971
972 /*
973 * Enable HAP INTA (interrupt from management bus) to
974 * wake device's PCI Express link L1a -> L0s
fadb3582 975 */
83ed9015 976 iwl_set_bit(bus(priv), CSR_HW_IF_CONFIG_REG,
fadb3582
BC
977 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
978
26bfc0cf 979 bus_apm_config(bus(priv));
fadb3582
BC
980
981 /* Configure analog phase-lock-loop before activating to D0A */
7cb1b088 982 if (priv->cfg->base_params->pll_cfg_val)
83ed9015 983 iwl_set_bit(bus(priv), CSR_ANA_PLL_CFG,
7cb1b088 984 priv->cfg->base_params->pll_cfg_val);
fadb3582
BC
985
986 /*
987 * Set "initialization complete" bit to move adapter from
988 * D0U* --> D0A* (powered-up active) state.
989 */
83ed9015 990 iwl_set_bit(bus(priv), CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
fadb3582
BC
991
992 /*
993 * Wait for clock stabilization; once stabilized, access to
994 * device-internal resources is supported, e.g. iwl_write_prph()
995 * and accesses to uCode SRAM.
996 */
83ed9015 997 ret = iwl_poll_bit(bus(priv), CSR_GP_CNTRL,
fadb3582
BC
998 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
999 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
1000 if (ret < 0) {
1001 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
1002 goto out;
1003 }
1004
1005 /*
917b6777 1006 * Enable DMA clock and wait for it to stabilize.
fadb3582
BC
1007 *
1008 * Write to "CLK_EN_REG"; "1" bits enable clocks, while "0" bits
1009 * do not disable clocks. This preserves any hardware bits already
1010 * set by default in "CLK_CTRL_REG" after reset.
1011 */
83ed9015 1012 iwl_write_prph(bus(priv), APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
fadb3582
BC
1013 udelay(20);
1014
1015 /* Disable L1-Active */
83ed9015 1016 iwl_set_bits_prph(bus(priv), APMG_PCIDEV_STT_REG,
fadb3582
BC
1017 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
1018
63013ae3 1019 set_bit(STATUS_DEVICE_ENABLED, &priv->shrd->status);
9d39e5ba 1020
fadb3582
BC
1021out:
1022 return ret;
1023}
fadb3582
BC
1024
1025
630fe9b6
TW
1026int iwl_set_tx_power(struct iwl_priv *priv, s8 tx_power, bool force)
1027{
a25a66ac
SG
1028 int ret;
1029 s8 prev_tx_power;
f844a709
SG
1030 bool defer;
1031 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
a25a66ac 1032
6ac2f839 1033 lockdep_assert_held(&priv->shrd->mutex);
a25a66ac
SG
1034
1035 if (priv->tx_power_user_lmt == tx_power && !force)
1036 return 0;
1037
b744cb79
WYG
1038 if (tx_power < IWLAGN_TX_POWER_TARGET_POWER_MIN) {
1039 IWL_WARN(priv,
1040 "Requested user TXPOWER %d below lower limit %d.\n",
daf518de 1041 tx_power,
b744cb79 1042 IWLAGN_TX_POWER_TARGET_POWER_MIN);
630fe9b6
TW
1043 return -EINVAL;
1044 }
1045
dc1b0973 1046 if (tx_power > priv->tx_power_device_lmt) {
08f2d58d
WYG
1047 IWL_WARN(priv,
1048 "Requested user TXPOWER %d above upper limit %d.\n",
dc1b0973 1049 tx_power, priv->tx_power_device_lmt);
630fe9b6
TW
1050 return -EINVAL;
1051 }
1052
845a9c0d 1053 if (!iwl_is_ready_rf(priv->shrd))
a25a66ac 1054 return -EIO;
630fe9b6 1055
f844a709
SG
1056 /* scan complete and commit_rxon use tx_power_next value,
1057 * it always need to be updated for newest request */
a25a66ac 1058 priv->tx_power_next = tx_power;
f844a709
SG
1059
1060 /* do not set tx power when scanning or channel changing */
63013ae3 1061 defer = test_bit(STATUS_SCANNING, &priv->shrd->status) ||
f844a709
SG
1062 memcmp(&ctx->active, &ctx->staging, sizeof(ctx->staging));
1063 if (defer && !force) {
1064 IWL_DEBUG_INFO(priv, "Deferring tx power set\n");
a25a66ac 1065 return 0;
5eadd94b 1066 }
630fe9b6 1067
a25a66ac
SG
1068 prev_tx_power = priv->tx_power_user_lmt;
1069 priv->tx_power_user_lmt = tx_power;
1070
5beaaf37 1071 ret = iwlagn_send_tx_power(priv);
a25a66ac
SG
1072
1073 /* if fail to set tx_power, restore the orig. tx power */
1074 if (ret) {
1075 priv->tx_power_user_lmt = prev_tx_power;
1076 priv->tx_power_next = prev_tx_power;
1077 }
630fe9b6
TW
1078 return ret;
1079}
630fe9b6 1080
65b52bde 1081void iwl_send_bt_config(struct iwl_priv *priv)
17f841cd
SO
1082{
1083 struct iwl_bt_cmd bt_cmd = {
456d0f76
WYG
1084 .lead_time = BT_LEAD_TIME_DEF,
1085 .max_kill = BT_MAX_KILL_DEF,
17f841cd
SO
1086 .kill_ack_mask = 0,
1087 .kill_cts_mask = 0,
1088 };
1089
b60eec9b 1090 if (!iwlagn_mod_params.bt_coex_active)
06702a73
WYG
1091 bt_cmd.flags = BT_COEX_DISABLE;
1092 else
1093 bt_cmd.flags = BT_COEX_ENABLE;
1094
f21dd005 1095 priv->bt_enable_flag = bt_cmd.flags;
06702a73
WYG
1096 IWL_DEBUG_INFO(priv, "BT coex %s\n",
1097 (bt_cmd.flags == BT_COEX_DISABLE) ? "disable" : "active");
1098
e6bb4c9c 1099 if (iwl_trans_send_cmd_pdu(trans(priv), REPLY_BT_CONFIG,
e419d62d 1100 CMD_SYNC, sizeof(struct iwl_bt_cmd), &bt_cmd))
65b52bde 1101 IWL_ERR(priv, "failed to send BT Coex Config\n");
17f841cd 1102}
17f841cd 1103
ef8d5529 1104int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags, bool clear)
49ea8596 1105{
ef8d5529
WYG
1106 struct iwl_statistics_cmd statistics_cmd = {
1107 .configuration_flags =
1108 clear ? IWL_STATS_CONF_CLEAR_STATS : 0,
49ea8596 1109 };
ef8d5529
WYG
1110
1111 if (flags & CMD_ASYNC)
e6bb4c9c 1112 return iwl_trans_send_cmd_pdu(trans(priv), REPLY_STATISTICS_CMD,
e419d62d 1113 CMD_ASYNC,
ef8d5529 1114 sizeof(struct iwl_statistics_cmd),
e419d62d 1115 &statistics_cmd);
ef8d5529 1116 else
e6bb4c9c 1117 return iwl_trans_send_cmd_pdu(trans(priv), REPLY_STATISTICS_CMD,
e419d62d 1118 CMD_SYNC,
ef8d5529
WYG
1119 sizeof(struct iwl_statistics_cmd),
1120 &statistics_cmd);
49ea8596 1121}
7e8c519e 1122
488829f1 1123
727882d6 1124
d8052319 1125
20594eb0
WYG
1126#ifdef CONFIG_IWLWIFI_DEBUGFS
1127
1128#define IWL_TRAFFIC_DUMP_SIZE (IWL_TRAFFIC_ENTRY_SIZE * IWL_TRAFFIC_ENTRIES)
1129
1130void iwl_reset_traffic_log(struct iwl_priv *priv)
1131{
1132 priv->tx_traffic_idx = 0;
1133 priv->rx_traffic_idx = 0;
1134 if (priv->tx_traffic)
1135 memset(priv->tx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
1136 if (priv->rx_traffic)
1137 memset(priv->rx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
1138}
1139
1140int iwl_alloc_traffic_mem(struct iwl_priv *priv)
1141{
1142 u32 traffic_size = IWL_TRAFFIC_DUMP_SIZE;
1143
8f470ce3 1144 if (iwl_get_debug_level(priv->shrd) & IWL_DL_TX) {
20594eb0
WYG
1145 if (!priv->tx_traffic) {
1146 priv->tx_traffic =
1147 kzalloc(traffic_size, GFP_KERNEL);
1148 if (!priv->tx_traffic)
1149 return -ENOMEM;
1150 }
1151 }
8f470ce3 1152 if (iwl_get_debug_level(priv->shrd) & IWL_DL_RX) {
20594eb0
WYG
1153 if (!priv->rx_traffic) {
1154 priv->rx_traffic =
1155 kzalloc(traffic_size, GFP_KERNEL);
1156 if (!priv->rx_traffic)
1157 return -ENOMEM;
1158 }
1159 }
1160 iwl_reset_traffic_log(priv);
1161 return 0;
1162}
20594eb0
WYG
1163
1164void iwl_free_traffic_mem(struct iwl_priv *priv)
1165{
1166 kfree(priv->tx_traffic);
1167 priv->tx_traffic = NULL;
1168
1169 kfree(priv->rx_traffic);
1170 priv->rx_traffic = NULL;
1171}
20594eb0
WYG
1172
1173void iwl_dbg_log_tx_data_frame(struct iwl_priv *priv,
1174 u16 length, struct ieee80211_hdr *header)
1175{
1176 __le16 fc;
1177 u16 len;
1178
8f470ce3 1179 if (likely(!(iwl_get_debug_level(priv->shrd) & IWL_DL_TX)))
20594eb0
WYG
1180 return;
1181
1182 if (!priv->tx_traffic)
1183 return;
1184
1185 fc = header->frame_control;
1186 if (ieee80211_is_data(fc)) {
1187 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
1188 ? IWL_TRAFFIC_ENTRY_SIZE : length;
1189 memcpy((priv->tx_traffic +
1190 (priv->tx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
1191 header, len);
1192 priv->tx_traffic_idx =
1193 (priv->tx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
1194 }
1195}
20594eb0
WYG
1196
1197void iwl_dbg_log_rx_data_frame(struct iwl_priv *priv,
1198 u16 length, struct ieee80211_hdr *header)
1199{
1200 __le16 fc;
1201 u16 len;
1202
8f470ce3 1203 if (likely(!(iwl_get_debug_level(priv->shrd) & IWL_DL_RX)))
20594eb0
WYG
1204 return;
1205
1206 if (!priv->rx_traffic)
1207 return;
1208
1209 fc = header->frame_control;
1210 if (ieee80211_is_data(fc)) {
1211 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
1212 ? IWL_TRAFFIC_ENTRY_SIZE : length;
1213 memcpy((priv->rx_traffic +
1214 (priv->rx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
1215 header, len);
1216 priv->rx_traffic_idx =
1217 (priv->rx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
1218 }
1219}
22fdf3c9
WYG
1220
1221const char *get_mgmt_string(int cmd)
1222{
1223 switch (cmd) {
1224 IWL_CMD(MANAGEMENT_ASSOC_REQ);
1225 IWL_CMD(MANAGEMENT_ASSOC_RESP);
1226 IWL_CMD(MANAGEMENT_REASSOC_REQ);
1227 IWL_CMD(MANAGEMENT_REASSOC_RESP);
1228 IWL_CMD(MANAGEMENT_PROBE_REQ);
1229 IWL_CMD(MANAGEMENT_PROBE_RESP);
1230 IWL_CMD(MANAGEMENT_BEACON);
1231 IWL_CMD(MANAGEMENT_ATIM);
1232 IWL_CMD(MANAGEMENT_DISASSOC);
1233 IWL_CMD(MANAGEMENT_AUTH);
1234 IWL_CMD(MANAGEMENT_DEAUTH);
1235 IWL_CMD(MANAGEMENT_ACTION);
1236 default:
1237 return "UNKNOWN";
1238
1239 }
1240}
1241
1242const char *get_ctrl_string(int cmd)
1243{
1244 switch (cmd) {
1245 IWL_CMD(CONTROL_BACK_REQ);
1246 IWL_CMD(CONTROL_BACK);
1247 IWL_CMD(CONTROL_PSPOLL);
1248 IWL_CMD(CONTROL_RTS);
1249 IWL_CMD(CONTROL_CTS);
1250 IWL_CMD(CONTROL_ACK);
1251 IWL_CMD(CONTROL_CFEND);
1252 IWL_CMD(CONTROL_CFENDACK);
1253 default:
1254 return "UNKNOWN";
1255
1256 }
1257}
1258
7163b8a4 1259void iwl_clear_traffic_stats(struct iwl_priv *priv)
22fdf3c9
WYG
1260{
1261 memset(&priv->tx_stats, 0, sizeof(struct traffic_stats));
22fdf3c9
WYG
1262 memset(&priv->rx_stats, 0, sizeof(struct traffic_stats));
1263}
1264
1265/*
1266 * if CONFIG_IWLWIFI_DEBUGFS defined, iwl_update_stats function will
1267 * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass.
1268 * Use debugFs to display the rx/rx_statistics
1269 * if CONFIG_IWLWIFI_DEBUGFS not being defined, then no MGMT and CTRL
1270 * information will be recorded, but DATA pkt still will be recorded
1271 * for the reason of iwl_led.c need to control the led blinking based on
1272 * number of tx and rx data.
1273 *
1274 */
1275void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len)
1276{
1277 struct traffic_stats *stats;
1278
1279 if (is_tx)
1280 stats = &priv->tx_stats;
1281 else
1282 stats = &priv->rx_stats;
1283
1284 if (ieee80211_is_mgmt(fc)) {
1285 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1286 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
1287 stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
1288 break;
1289 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
1290 stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
1291 break;
1292 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
1293 stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
1294 break;
1295 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
1296 stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
1297 break;
1298 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
1299 stats->mgmt[MANAGEMENT_PROBE_REQ]++;
1300 break;
1301 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
1302 stats->mgmt[MANAGEMENT_PROBE_RESP]++;
1303 break;
1304 case cpu_to_le16(IEEE80211_STYPE_BEACON):
1305 stats->mgmt[MANAGEMENT_BEACON]++;
1306 break;
1307 case cpu_to_le16(IEEE80211_STYPE_ATIM):
1308 stats->mgmt[MANAGEMENT_ATIM]++;
1309 break;
1310 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
1311 stats->mgmt[MANAGEMENT_DISASSOC]++;
1312 break;
1313 case cpu_to_le16(IEEE80211_STYPE_AUTH):
1314 stats->mgmt[MANAGEMENT_AUTH]++;
1315 break;
1316 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
1317 stats->mgmt[MANAGEMENT_DEAUTH]++;
1318 break;
1319 case cpu_to_le16(IEEE80211_STYPE_ACTION):
1320 stats->mgmt[MANAGEMENT_ACTION]++;
1321 break;
1322 }
1323 } else if (ieee80211_is_ctl(fc)) {
1324 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
1325 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
1326 stats->ctrl[CONTROL_BACK_REQ]++;
1327 break;
1328 case cpu_to_le16(IEEE80211_STYPE_BACK):
1329 stats->ctrl[CONTROL_BACK]++;
1330 break;
1331 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
1332 stats->ctrl[CONTROL_PSPOLL]++;
1333 break;
1334 case cpu_to_le16(IEEE80211_STYPE_RTS):
1335 stats->ctrl[CONTROL_RTS]++;
1336 break;
1337 case cpu_to_le16(IEEE80211_STYPE_CTS):
1338 stats->ctrl[CONTROL_CTS]++;
1339 break;
1340 case cpu_to_le16(IEEE80211_STYPE_ACK):
1341 stats->ctrl[CONTROL_ACK]++;
1342 break;
1343 case cpu_to_le16(IEEE80211_STYPE_CFEND):
1344 stats->ctrl[CONTROL_CFEND]++;
1345 break;
1346 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
1347 stats->ctrl[CONTROL_CFENDACK]++;
1348 break;
1349 }
1350 } else {
1351 /* data */
1352 stats->data_cnt++;
1353 stats->data_bytes += len;
1354 }
1355}
20594eb0
WYG
1356#endif
1357
a93e7973 1358static void iwl_force_rf_reset(struct iwl_priv *priv)
afbdd69a 1359{
63013ae3 1360 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
afbdd69a
WYG
1361 return;
1362
246ed355 1363 if (!iwl_is_any_associated(priv)) {
afbdd69a
WYG
1364 IWL_DEBUG_SCAN(priv, "force reset rejected: not associated\n");
1365 return;
1366 }
1367 /*
1368 * There is no easy and better way to force reset the radio,
1369 * the only known method is switching channel which will force to
1370 * reset and tune the radio.
1371 * Use internal short scan (single channel) operation to should
1372 * achieve this objective.
1373 * Driver should reset the radio when number of consecutive missed
1374 * beacon, or any other uCode error condition detected.
1375 */
1376 IWL_DEBUG_INFO(priv, "perform radio reset.\n");
1377 iwl_internal_short_hw_scan(priv);
afbdd69a 1378}
a93e7973 1379
a93e7973 1380
c04f9f22 1381int iwl_force_reset(struct iwl_priv *priv, int mode, bool external)
a93e7973 1382{
8a472da4
WYG
1383 struct iwl_force_reset *force_reset;
1384
63013ae3 1385 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
a93e7973
WYG
1386 return -EINVAL;
1387
8a472da4
WYG
1388 if (mode >= IWL_MAX_FORCE_RESET) {
1389 IWL_DEBUG_INFO(priv, "invalid reset request.\n");
1390 return -EINVAL;
1391 }
1392 force_reset = &priv->force_reset[mode];
1393 force_reset->reset_request_count++;
c04f9f22
WYG
1394 if (!external) {
1395 if (force_reset->last_force_reset_jiffies &&
1396 time_after(force_reset->last_force_reset_jiffies +
1397 force_reset->reset_duration, jiffies)) {
1398 IWL_DEBUG_INFO(priv, "force reset rejected\n");
1399 force_reset->reset_reject_count++;
1400 return -EAGAIN;
1401 }
a93e7973 1402 }
8a472da4
WYG
1403 force_reset->reset_success_count++;
1404 force_reset->last_force_reset_jiffies = jiffies;
a93e7973 1405 IWL_DEBUG_INFO(priv, "perform force reset (%d)\n", mode);
a93e7973
WYG
1406 switch (mode) {
1407 case IWL_RF_RESET:
1408 iwl_force_rf_reset(priv);
1409 break;
1410 case IWL_FW_RESET:
c04f9f22
WYG
1411 /*
1412 * if the request is from external(ex: debugfs),
1413 * then always perform the request in regardless the module
1414 * parameter setting
1415 * if the request is from internal (uCode error or driver
1416 * detect failure), then fw_restart module parameter
1417 * need to be check before performing firmware reload
1418 */
9d143e9a 1419 if (!external && !iwlagn_mod_params.restart_fw) {
c04f9f22
WYG
1420 IWL_DEBUG_INFO(priv, "Cancel firmware reload based on "
1421 "module parameter setting\n");
1422 break;
1423 }
a93e7973 1424 IWL_ERR(priv, "On demand firmware reload\n");
e649437f 1425 iwlagn_fw_error(priv, true);
a93e7973 1426 break;
a93e7973 1427 }
a93e7973
WYG
1428 return 0;
1429}
b74e31a9 1430
d4daaea6 1431
317d09f7
WYG
1432int iwl_cmd_echo_test(struct iwl_priv *priv)
1433{
7e4005cc 1434 int ret;
317d09f7
WYG
1435 struct iwl_host_cmd cmd = {
1436 .id = REPLY_ECHO,
89db3b97 1437 .len = { 0 },
317d09f7
WYG
1438 .flags = CMD_SYNC,
1439 };
1440
7e4005cc
WYG
1441 ret = iwl_trans_send_cmd(trans(priv), &cmd);
1442 if (ret)
1443 IWL_ERR(priv, "echo testing fail: 0X%x\n", ret);
1444 else
1445 IWL_DEBUG_INFO(priv, "echo testing pass\n");
1446 return ret;
317d09f7
WYG
1447}
1448
f22be624 1449static inline int iwl_check_stuck_queue(struct iwl_priv *priv, int txq)
b74e31a9 1450{
f22be624 1451 if (iwl_trans_check_stuck_queue(trans(priv), txq)) {
317d09f7 1452 int ret;
317d09f7 1453 ret = iwl_force_reset(priv, IWL_FW_RESET, false);
22de94de 1454 return (ret == -EAGAIN) ? 0 : 1;
b74e31a9
WYG
1455 }
1456 return 0;
1457}
1458
22de94de
SG
1459/*
1460 * Making watchdog tick be a quarter of timeout assure we will
1461 * discover the queue hung between timeout and 1.25*timeout
1462 */
1463#define IWL_WD_TICK(timeout) ((timeout) / 4)
1464
1465/*
1466 * Watchdog timer callback, we check each tx queue for stuck, if if hung
1467 * we reset the firmware. If everything is fine just rearm the timer.
1468 */
1469void iwl_bg_watchdog(unsigned long data)
b74e31a9
WYG
1470{
1471 struct iwl_priv *priv = (struct iwl_priv *)data;
1472 int cnt;
22de94de 1473 unsigned long timeout;
b74e31a9 1474
63013ae3 1475 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
b74e31a9
WYG
1476 return;
1477
46e7741e
WYG
1478 if (iwl_is_rfkill(priv->shrd))
1479 return;
1480
22de94de
SG
1481 timeout = priv->cfg->base_params->wd_timeout;
1482 if (timeout == 0)
1483 return;
1484
b74e31a9 1485 /* monitor and check for stuck cmd queue */
cefeaa5f 1486 if (iwl_check_stuck_queue(priv, priv->shrd->cmd_queue))
b74e31a9
WYG
1487 return;
1488
1489 /* monitor and check for other stuck queues */
246ed355 1490 if (iwl_is_any_associated(priv)) {
d6189124 1491 for (cnt = 0; cnt < hw_params(priv).max_txq_num; cnt++) {
b74e31a9 1492 /* skip as we already checked the command queue */
cefeaa5f 1493 if (cnt == priv->shrd->cmd_queue)
b74e31a9
WYG
1494 continue;
1495 if (iwl_check_stuck_queue(priv, cnt))
1496 return;
1497 }
1498 }
22de94de
SG
1499
1500 mod_timer(&priv->watchdog, jiffies +
1501 msecs_to_jiffies(IWL_WD_TICK(timeout)));
b74e31a9 1502}
22de94de
SG
1503
1504void iwl_setup_watchdog(struct iwl_priv *priv)
1505{
1506 unsigned int timeout = priv->cfg->base_params->wd_timeout;
afbdd69a 1507
9995ffe5
WYG
1508 if (!iwlagn_mod_params.wd_disable) {
1509 /* use system default */
1510 if (timeout && !priv->cfg->base_params->wd_disable)
1511 mod_timer(&priv->watchdog,
1512 jiffies +
1513 msecs_to_jiffies(IWL_WD_TICK(timeout)));
1514 else
1515 del_timer(&priv->watchdog);
1516 } else {
1517 /* module parameter overwrite default configuration */
1518 if (timeout && iwlagn_mod_params.wd_disable == 2)
1519 mod_timer(&priv->watchdog,
1520 jiffies +
1521 msecs_to_jiffies(IWL_WD_TICK(timeout)));
1522 else
1523 del_timer(&priv->watchdog);
1524 }
22de94de 1525}
a0ee74cf 1526
8c222544
EG
1527/**
1528 * iwl_beacon_time_mask_low - mask of lower 32 bit of beacon time
1529 * @priv -- pointer to iwl_priv data structure
1530 * @tsf_bits -- number of bits need to shift for masking)
1531 */
1532static inline u32 iwl_beacon_time_mask_low(struct iwl_priv *priv,
1533 u16 tsf_bits)
1534{
1535 return (1 << tsf_bits) - 1;
1536}
1537
1538/**
1539 * iwl_beacon_time_mask_high - mask of higher 32 bit of beacon time
1540 * @priv -- pointer to iwl_priv data structure
1541 * @tsf_bits -- number of bits need to shift for masking)
1542 */
1543static inline u32 iwl_beacon_time_mask_high(struct iwl_priv *priv,
1544 u16 tsf_bits)
1545{
1546 return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
1547}
1548
a0ee74cf
WYG
1549/*
1550 * extended beacon time format
1551 * time in usec will be changed into a 32-bit value in extended:internal format
1552 * the extended part is the beacon counts
1553 * the internal part is the time in usec within one beacon interval
1554 */
1555u32 iwl_usecs_to_beacons(struct iwl_priv *priv, u32 usec, u32 beacon_interval)
1556{
1557 u32 quot;
1558 u32 rem;
1559 u32 interval = beacon_interval * TIME_UNIT;
1560
1561 if (!interval || !usec)
1562 return 0;
1563
1564 quot = (usec / interval) &
403ba56a
DF
1565 (iwl_beacon_time_mask_high(priv, IWLAGN_EXT_BEACON_TIME_POS) >>
1566 IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf 1567 rem = (usec % interval) & iwl_beacon_time_mask_low(priv,
403ba56a 1568 IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf 1569
403ba56a 1570 return (quot << IWLAGN_EXT_BEACON_TIME_POS) + rem;
a0ee74cf 1571}
a0ee74cf
WYG
1572
1573/* base is usually what we get from ucode with each received frame,
1574 * the same as HW timer counter counting down
1575 */
1576__le32 iwl_add_beacon_time(struct iwl_priv *priv, u32 base,
1577 u32 addon, u32 beacon_interval)
1578{
1579 u32 base_low = base & iwl_beacon_time_mask_low(priv,
403ba56a 1580 IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf 1581 u32 addon_low = addon & iwl_beacon_time_mask_low(priv,
403ba56a 1582 IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf
WYG
1583 u32 interval = beacon_interval * TIME_UNIT;
1584 u32 res = (base & iwl_beacon_time_mask_high(priv,
403ba56a 1585 IWLAGN_EXT_BEACON_TIME_POS)) +
a0ee74cf 1586 (addon & iwl_beacon_time_mask_high(priv,
403ba56a 1587 IWLAGN_EXT_BEACON_TIME_POS));
a0ee74cf
WYG
1588
1589 if (base_low > addon_low)
1590 res += base_low - addon_low;
1591 else if (base_low < addon_low) {
1592 res += interval + base_low - addon_low;
403ba56a 1593 res += (1 << IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf 1594 } else
403ba56a 1595 res += (1 << IWLAGN_EXT_BEACON_TIME_POS);
a0ee74cf
WYG
1596
1597 return cpu_to_le32(res);
1598}
a0ee74cf 1599
464021ff
EG
1600void iwl_start_tx_ba_trans_ready(struct iwl_priv *priv,
1601 enum iwl_rxon_context_id ctx,
288712a6
EG
1602 u8 sta_id, u8 tid)
1603{
427977ab 1604 struct ieee80211_vif *vif;
288712a6
EG
1605 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1606
464021ff
EG
1607 if (ctx == NUM_IWL_RXON_CTX)
1608 ctx = priv->stations[sta_id].ctxid;
1609 vif = priv->contexts[ctx].vif;
1610
288712a6
EG
1611 ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid);
1612}
464021ff
EG
1613
1614void iwl_stop_tx_ba_trans_ready(struct iwl_priv *priv,
1615 enum iwl_rxon_context_id ctx,
1616 u8 sta_id, u8 tid)
1617{
1618 struct ieee80211_vif *vif;
1619 u8 *addr = priv->stations[sta_id].sta.sta.addr;
1620
1621 if (ctx == NUM_IWL_RXON_CTX)
1622 ctx = priv->stations[sta_id].ctxid;
1623 vif = priv->contexts[ctx].vif;
1624
1625 ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid);
1626}
3e10caeb
EG
1627
1628void iwl_set_hw_rfkill_state(struct iwl_priv *priv, bool state)
1629{
1630 wiphy_rfkill_set_hw_state(priv->hw->wiphy, state);
1631}
7a10e3e4
EG
1632
1633void iwl_nic_config(struct iwl_priv *priv)
1634{
1635 priv->cfg->lib->nic_config(priv);
1636
1637}
909e9b23
EG
1638
1639void iwl_free_skb(struct iwl_priv *priv, struct sk_buff *skb)
1640{
1641 struct ieee80211_tx_info *info;
1642
1643 info = IEEE80211_SKB_CB(skb);
1644 kmem_cache_free(priv->tx_cmd_pool, (info->driver_data[1]));
1645 dev_kfree_skb_any(skb);
1646}
859cfb0a
EG
1647
1648void iwl_stop_sw_queue(struct iwl_priv *priv, u8 ac)
1649{
1650 ieee80211_stop_queue(priv->hw, ac);
1651}
1652
1653void iwl_wake_sw_queue(struct iwl_priv *priv, u8 ac)
1654{
1655 ieee80211_wake_queue(priv->hw, ac);
1656}