1 /******************************************************************************
5 * Copyright(c) 2008 - 2009 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 <net/mac80211.h>
34 #include "iwl-eeprom.h"
35 #include "iwl-dev.h" /* FIXME: remove */
36 #include "iwl-debug.h"
39 #include "iwl-power.h"
41 #include "iwl-helpers.h"
44 MODULE_DESCRIPTION("iwl core");
45 MODULE_VERSION(IWLWIFI_VERSION);
46 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
47 MODULE_LICENSE("GPL");
49 #define IWL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
50 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \
51 IWL_RATE_SISO_##s##M_PLCP, \
52 IWL_RATE_MIMO2_##s##M_PLCP,\
53 IWL_RATE_MIMO3_##s##M_PLCP,\
54 IWL_RATE_##r##M_IEEE, \
55 IWL_RATE_##ip##M_INDEX, \
56 IWL_RATE_##in##M_INDEX, \
57 IWL_RATE_##rp##M_INDEX, \
58 IWL_RATE_##rn##M_INDEX, \
59 IWL_RATE_##pp##M_INDEX, \
60 IWL_RATE_##np##M_INDEX }
62 static irqreturn_t iwl_isr(int irq, void *data);
66 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
68 * If there isn't a valid next or previous rate then INV is used which
69 * maps to IWL_RATE_INVALID
72 const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
73 IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
74 IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
75 IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
76 IWL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18), /* 11mbps */
77 IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
78 IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
79 IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
80 IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
81 IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
82 IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
83 IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
84 IWL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
85 IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
86 /* FIXME:RS: ^^ should be INV (legacy) */
88 EXPORT_SYMBOL(iwl_rates);
91 * translate ucode response to mac80211 tx status control values
93 void iwl_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
94 struct ieee80211_tx_info *info)
97 struct ieee80211_tx_rate *r = &info->control.rates[0];
99 info->antenna_sel_tx =
100 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
101 if (rate_n_flags & RATE_MCS_HT_MSK)
102 r->flags |= IEEE80211_TX_RC_MCS;
103 if (rate_n_flags & RATE_MCS_GF_MSK)
104 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
105 if (rate_n_flags & RATE_MCS_FAT_MSK)
106 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
107 if (rate_n_flags & RATE_MCS_DUP_MSK)
108 r->flags |= IEEE80211_TX_RC_DUP_DATA;
109 if (rate_n_flags & RATE_MCS_SGI_MSK)
110 r->flags |= IEEE80211_TX_RC_SHORT_GI;
111 rate_index = iwl_hwrate_to_plcp_idx(rate_n_flags);
112 if (info->band == IEEE80211_BAND_5GHZ)
113 rate_index -= IWL_FIRST_OFDM_RATE;
116 EXPORT_SYMBOL(iwl_hwrate_to_tx_control);
118 int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
123 if (rate_n_flags & RATE_MCS_HT_MSK) {
124 idx = (rate_n_flags & 0xff);
126 if (idx >= IWL_RATE_MIMO3_6M_PLCP)
127 idx = idx - IWL_RATE_MIMO3_6M_PLCP;
128 else if (idx >= IWL_RATE_MIMO2_6M_PLCP)
129 idx = idx - IWL_RATE_MIMO2_6M_PLCP;
131 idx += IWL_FIRST_OFDM_RATE;
132 /* skip 9M not supported in ht*/
133 if (idx >= IWL_RATE_9M_INDEX)
135 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
138 /* legacy rate format, search for match in table */
140 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
141 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
147 EXPORT_SYMBOL(iwl_hwrate_to_plcp_idx);
149 u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant)
153 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
154 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
155 if (priv->hw_params.valid_tx_ant & BIT(ind))
161 const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
162 EXPORT_SYMBOL(iwl_bcast_addr);
165 /* This function both allocates and initializes hw and priv. */
166 struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg,
167 struct ieee80211_ops *hw_ops)
169 struct iwl_priv *priv;
171 /* mac80211 allocates memory for this device instance, including
172 * space for this driver's private structure */
173 struct ieee80211_hw *hw =
174 ieee80211_alloc_hw(sizeof(struct iwl_priv), hw_ops);
176 printk(KERN_ERR "%s: Can not allocate network device\n",
187 EXPORT_SYMBOL(iwl_alloc_all);
189 void iwl_hw_detect(struct iwl_priv *priv)
191 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
192 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
193 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
195 EXPORT_SYMBOL(iwl_hw_detect);
197 int iwl_hw_nic_init(struct iwl_priv *priv)
200 struct iwl_rx_queue *rxq = &priv->rxq;
204 spin_lock_irqsave(&priv->lock, flags);
205 priv->cfg->ops->lib->apm_ops.init(priv);
206 iwl_write32(priv, CSR_INT_COALESCING, 512 / 32);
207 spin_unlock_irqrestore(&priv->lock, flags);
209 ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
211 priv->cfg->ops->lib->apm_ops.config(priv);
213 /* Allocate the RX queue, or reset if it is already allocated */
215 ret = iwl_rx_queue_alloc(priv);
217 IWL_ERR(priv, "Unable to initialize Rx queue\n");
221 iwl_rx_queue_reset(priv, rxq);
223 iwl_rx_replenish(priv);
225 iwl_rx_init(priv, rxq);
227 spin_lock_irqsave(&priv->lock, flags);
229 rxq->need_update = 1;
230 iwl_rx_queue_update_write_ptr(priv, rxq);
232 spin_unlock_irqrestore(&priv->lock, flags);
234 /* Allocate and init all Tx and Command queues */
235 ret = iwl_txq_ctx_reset(priv);
239 set_bit(STATUS_INIT, &priv->status);
243 EXPORT_SYMBOL(iwl_hw_nic_init);
248 void iwl_activate_qos(struct iwl_priv *priv, u8 force)
250 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
253 priv->qos_data.def_qos_parm.qos_flags = 0;
255 if (priv->qos_data.qos_cap.q_AP.queue_request &&
256 !priv->qos_data.qos_cap.q_AP.txop_request)
257 priv->qos_data.def_qos_parm.qos_flags |=
258 QOS_PARAM_FLG_TXOP_TYPE_MSK;
259 if (priv->qos_data.qos_active)
260 priv->qos_data.def_qos_parm.qos_flags |=
261 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
263 if (priv->current_ht_config.is_ht)
264 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
266 if (force || iwl_is_associated(priv)) {
267 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
268 priv->qos_data.qos_active,
269 priv->qos_data.def_qos_parm.qos_flags);
271 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
272 sizeof(struct iwl_qosparam_cmd),
273 &priv->qos_data.def_qos_parm, NULL);
276 EXPORT_SYMBOL(iwl_activate_qos);
279 * AC CWmin CW max AIFSN TXOP Limit TXOP Limit
280 * (802.11b) (802.11a/g)
281 * AC_BK 15 1023 7 0 0
282 * AC_BE 15 1023 3 0 0
283 * AC_VI 7 15 2 6.016ms 3.008ms
284 * AC_VO 3 7 2 3.264ms 1.504ms
286 void iwl_reset_qos(struct iwl_priv *priv)
291 bool is_legacy = false;
295 spin_lock_irqsave(&priv->lock, flags);
296 /* QoS always active in AP and ADHOC mode
297 * In STA mode wait for association
299 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
300 priv->iw_mode == NL80211_IFTYPE_AP)
301 priv->qos_data.qos_active = 1;
303 priv->qos_data.qos_active = 0;
305 /* check for legacy mode */
306 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
307 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
308 (priv->iw_mode == NL80211_IFTYPE_STATION &&
309 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
314 if (priv->qos_data.qos_active)
318 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
319 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
320 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
321 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
322 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
324 if (priv->qos_data.qos_active) {
327 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
328 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
329 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
330 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
331 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
335 priv->qos_data.def_qos_parm.ac[i].cw_min =
336 cpu_to_le16((cw_min + 1) / 2 - 1);
337 priv->qos_data.def_qos_parm.ac[i].cw_max =
339 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
341 priv->qos_data.def_qos_parm.ac[i].edca_txop =
344 priv->qos_data.def_qos_parm.ac[i].edca_txop =
346 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
350 priv->qos_data.def_qos_parm.ac[i].cw_min =
351 cpu_to_le16((cw_min + 1) / 4 - 1);
352 priv->qos_data.def_qos_parm.ac[i].cw_max =
353 cpu_to_le16((cw_min + 1) / 2 - 1);
354 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
355 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
357 priv->qos_data.def_qos_parm.ac[i].edca_txop =
360 priv->qos_data.def_qos_parm.ac[i].edca_txop =
363 for (i = 1; i < 4; i++) {
364 priv->qos_data.def_qos_parm.ac[i].cw_min =
366 priv->qos_data.def_qos_parm.ac[i].cw_max =
368 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
369 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
370 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
373 IWL_DEBUG_QOS(priv, "set QoS to default \n");
375 spin_unlock_irqrestore(&priv->lock, flags);
377 EXPORT_SYMBOL(iwl_reset_qos);
379 #define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
380 #define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
381 static void iwlcore_init_ht_hw_capab(const struct iwl_priv *priv,
382 struct ieee80211_sta_ht_cap *ht_info,
383 enum ieee80211_band band)
385 u16 max_bit_rate = 0;
386 u8 rx_chains_num = priv->hw_params.rx_chains_num;
387 u8 tx_chains_num = priv->hw_params.tx_chains_num;
390 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
392 ht_info->ht_supported = true;
394 ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
395 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
396 ht_info->cap |= (IEEE80211_HT_CAP_SM_PS &
397 (WLAN_HT_CAP_SM_PS_DISABLED << 2));
399 max_bit_rate = MAX_BIT_RATE_20_MHZ;
400 if (priv->hw_params.fat_channel & BIT(band)) {
401 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
402 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
403 ht_info->mcs.rx_mask[4] = 0x01;
404 max_bit_rate = MAX_BIT_RATE_40_MHZ;
407 if (priv->cfg->mod_params->amsdu_size_8K)
408 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
410 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
411 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
413 ht_info->mcs.rx_mask[0] = 0xFF;
414 if (rx_chains_num >= 2)
415 ht_info->mcs.rx_mask[1] = 0xFF;
416 if (rx_chains_num >= 3)
417 ht_info->mcs.rx_mask[2] = 0xFF;
419 /* Highest supported Rx data rate */
420 max_bit_rate *= rx_chains_num;
421 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
422 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
424 /* Tx MCS capabilities */
425 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
426 if (tx_chains_num != rx_chains_num) {
427 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
428 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
429 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
433 static void iwlcore_init_hw_rates(struct iwl_priv *priv,
434 struct ieee80211_rate *rates)
438 for (i = 0; i < IWL_RATE_COUNT; i++) {
439 rates[i].bitrate = iwl_rates[i].ieee * 5;
440 rates[i].hw_value = i; /* Rate scaling will work on indexes */
441 rates[i].hw_value_short = i;
443 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
445 * If CCK != 1M then set short preamble rate flag.
448 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
449 0 : IEEE80211_RATE_SHORT_PREAMBLE;
456 * iwlcore_init_geos - Initialize mac80211's geo/channel info based from eeprom
458 int iwlcore_init_geos(struct iwl_priv *priv)
460 struct iwl_channel_info *ch;
461 struct ieee80211_supported_band *sband;
462 struct ieee80211_channel *channels;
463 struct ieee80211_channel *geo_ch;
464 struct ieee80211_rate *rates;
467 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
468 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
469 IWL_DEBUG_INFO(priv, "Geography modes already initialized.\n");
470 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
474 channels = kzalloc(sizeof(struct ieee80211_channel) *
475 priv->channel_count, GFP_KERNEL);
479 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
486 /* 5.2GHz channels start after the 2.4GHz channels */
487 sband = &priv->bands[IEEE80211_BAND_5GHZ];
488 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
490 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
491 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
493 if (priv->cfg->sku & IWL_SKU_N)
494 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
495 IEEE80211_BAND_5GHZ);
497 sband = &priv->bands[IEEE80211_BAND_2GHZ];
498 sband->channels = channels;
500 sband->bitrates = rates;
501 sband->n_bitrates = IWL_RATE_COUNT;
503 if (priv->cfg->sku & IWL_SKU_N)
504 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
505 IEEE80211_BAND_2GHZ);
507 priv->ieee_channels = channels;
508 priv->ieee_rates = rates;
510 for (i = 0; i < priv->channel_count; i++) {
511 ch = &priv->channel_info[i];
513 /* FIXME: might be removed if scan is OK */
514 if (!is_channel_valid(ch))
517 if (is_channel_a_band(ch))
518 sband = &priv->bands[IEEE80211_BAND_5GHZ];
520 sband = &priv->bands[IEEE80211_BAND_2GHZ];
522 geo_ch = &sband->channels[sband->n_channels++];
524 geo_ch->center_freq =
525 ieee80211_channel_to_frequency(ch->channel);
526 geo_ch->max_power = ch->max_power_avg;
527 geo_ch->max_antenna_gain = 0xff;
528 geo_ch->hw_value = ch->channel;
530 if (is_channel_valid(ch)) {
531 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
532 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
534 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
535 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
537 if (ch->flags & EEPROM_CHANNEL_RADAR)
538 geo_ch->flags |= IEEE80211_CHAN_RADAR;
540 geo_ch->flags |= ch->fat_extension_channel;
542 if (ch->max_power_avg > priv->tx_power_channel_lmt)
543 priv->tx_power_channel_lmt = ch->max_power_avg;
545 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
548 /* Save flags for reg domain usage */
549 geo_ch->orig_flags = geo_ch->flags;
551 IWL_DEBUG_INFO(priv, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
552 ch->channel, geo_ch->center_freq,
553 is_channel_a_band(ch) ? "5.2" : "2.4",
554 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
555 "restricted" : "valid",
559 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
560 priv->cfg->sku & IWL_SKU_A) {
561 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
562 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
563 priv->pci_dev->device,
564 priv->pci_dev->subsystem_device);
565 priv->cfg->sku &= ~IWL_SKU_A;
568 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
569 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
570 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
572 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
576 EXPORT_SYMBOL(iwlcore_init_geos);
579 * iwlcore_free_geos - undo allocations in iwlcore_init_geos
581 void iwlcore_free_geos(struct iwl_priv *priv)
583 kfree(priv->ieee_channels);
584 kfree(priv->ieee_rates);
585 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
587 EXPORT_SYMBOL(iwlcore_free_geos);
589 static bool is_single_rx_stream(struct iwl_priv *priv)
591 return !priv->current_ht_config.is_ht ||
592 ((priv->current_ht_config.mcs.rx_mask[1] == 0) &&
593 (priv->current_ht_config.mcs.rx_mask[2] == 0));
596 static u8 iwl_is_channel_extension(struct iwl_priv *priv,
597 enum ieee80211_band band,
598 u16 channel, u8 extension_chan_offset)
600 const struct iwl_channel_info *ch_info;
602 ch_info = iwl_get_channel_info(priv, band, channel);
603 if (!is_channel_valid(ch_info))
606 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
607 return !(ch_info->fat_extension_channel &
608 IEEE80211_CHAN_NO_HT40PLUS);
609 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
610 return !(ch_info->fat_extension_channel &
611 IEEE80211_CHAN_NO_HT40MINUS);
616 u8 iwl_is_fat_tx_allowed(struct iwl_priv *priv,
617 struct ieee80211_sta_ht_cap *sta_ht_inf)
619 struct iwl_ht_info *iwl_ht_conf = &priv->current_ht_config;
621 if ((!iwl_ht_conf->is_ht) ||
622 (iwl_ht_conf->supported_chan_width != IWL_CHANNEL_WIDTH_40MHZ))
625 /* We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
626 * the bit will not set if it is pure 40MHz case
629 if (!sta_ht_inf->ht_supported)
632 return iwl_is_channel_extension(priv, priv->band,
633 le16_to_cpu(priv->staging_rxon.channel),
634 iwl_ht_conf->extension_chan_offset);
636 EXPORT_SYMBOL(iwl_is_fat_tx_allowed);
638 void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
640 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
643 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
645 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
648 EXPORT_SYMBOL(iwl_set_rxon_hwcrypto);
651 * iwl_check_rxon_cmd - validate RXON structure is valid
653 * NOTE: This is really only useful during development and can eventually
654 * be #ifdef'd out once the driver is stable and folks aren't actively
657 int iwl_check_rxon_cmd(struct iwl_priv *priv)
661 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
663 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
664 error |= le32_to_cpu(rxon->flags &
665 (RXON_FLG_TGJ_NARROW_BAND_MSK |
666 RXON_FLG_RADAR_DETECT_MSK));
668 IWL_WARN(priv, "check 24G fields %d | %d\n",
671 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
672 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
674 IWL_WARN(priv, "check 52 fields %d | %d\n",
676 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
678 IWL_WARN(priv, "check 52 CCK %d | %d\n",
681 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
683 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
685 /* make sure basic rates 6Mbps and 1Mbps are supported */
686 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
687 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
689 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
691 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
693 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
695 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
696 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
698 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
701 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
702 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
704 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
707 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
708 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
710 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
714 IWL_WARN(priv, "Tuning to channel %d\n",
715 le16_to_cpu(rxon->channel));
718 IWL_ERR(priv, "Not a valid iwl_rxon_assoc_cmd field values\n");
723 EXPORT_SYMBOL(iwl_check_rxon_cmd);
726 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
727 * @priv: staging_rxon is compared to active_rxon
729 * If the RXON structure is changing enough to require a new tune,
730 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
731 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
733 int iwl_full_rxon_required(struct iwl_priv *priv)
736 /* These items are only settable from the full RXON command */
737 if (!(iwl_is_associated(priv)) ||
738 compare_ether_addr(priv->staging_rxon.bssid_addr,
739 priv->active_rxon.bssid_addr) ||
740 compare_ether_addr(priv->staging_rxon.node_addr,
741 priv->active_rxon.node_addr) ||
742 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
743 priv->active_rxon.wlap_bssid_addr) ||
744 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
745 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
746 (priv->staging_rxon.air_propagation !=
747 priv->active_rxon.air_propagation) ||
748 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
749 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
750 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
751 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
752 (priv->staging_rxon.ofdm_ht_triple_stream_basic_rates !=
753 priv->active_rxon.ofdm_ht_triple_stream_basic_rates) ||
754 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
757 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
758 * be updated with the RXON_ASSOC command -- however only some
759 * flag transitions are allowed using RXON_ASSOC */
761 /* Check if we are not switching bands */
762 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
763 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
766 /* Check if we are switching association toggle */
767 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
768 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
773 EXPORT_SYMBOL(iwl_full_rxon_required);
775 u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv)
781 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
782 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
784 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
786 /* Find lowest valid rate */
787 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
788 i = iwl_rates[i].next_ieee) {
789 if (rate_mask & (1 << i))
790 return iwl_rates[i].plcp;
793 /* No valid rate was found. Assign the lowest one */
794 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
795 return IWL_RATE_1M_PLCP;
797 return IWL_RATE_6M_PLCP;
799 EXPORT_SYMBOL(iwl_rate_get_lowest_plcp);
801 void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_info *ht_info)
803 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
805 if (!ht_info->is_ht) {
806 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
807 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
808 RXON_FLG_FAT_PROT_MSK |
809 RXON_FLG_HT_PROT_MSK);
813 /* FIXME: if the definition of ht_protection changed, the "translation"
814 * will be needed for rxon->flags
816 rxon->flags |= cpu_to_le32(ht_info->ht_protection << RXON_FLG_HT_OPERATING_MODE_POS);
818 /* Set up channel bandwidth:
819 * 20 MHz only, 20/40 mixed or pure 40 if fat ok */
820 /* clear the HT channel mode before set the mode */
821 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
822 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
823 if (iwl_is_fat_tx_allowed(priv, NULL)) {
825 if (ht_info->ht_protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
826 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
827 /* Note: control channel is opposite of extension channel */
828 switch (ht_info->extension_chan_offset) {
829 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
830 rxon->flags &= ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
832 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
833 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
837 /* Note: control channel is opposite of extension channel */
838 switch (ht_info->extension_chan_offset) {
839 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
840 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
841 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
843 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
844 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
845 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
847 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
849 /* channel location only valid if in Mixed mode */
850 IWL_ERR(priv, "invalid extension channel offset\n");
855 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
858 if (priv->cfg->ops->hcmd->set_rxon_chain)
859 priv->cfg->ops->hcmd->set_rxon_chain(priv);
861 IWL_DEBUG_ASSOC(priv, "supported HT rate 0x%X 0x%X 0x%X "
862 "rxon flags 0x%X operation mode :0x%X "
863 "extension channel offset 0x%x\n",
864 ht_info->mcs.rx_mask[0],
865 ht_info->mcs.rx_mask[1],
866 ht_info->mcs.rx_mask[2],
867 le32_to_cpu(rxon->flags), ht_info->ht_protection,
868 ht_info->extension_chan_offset);
871 EXPORT_SYMBOL(iwl_set_rxon_ht);
873 #define IWL_NUM_RX_CHAINS_MULTIPLE 3
874 #define IWL_NUM_RX_CHAINS_SINGLE 2
875 #define IWL_NUM_IDLE_CHAINS_DUAL 2
876 #define IWL_NUM_IDLE_CHAINS_SINGLE 1
878 /* Determine how many receiver/antenna chains to use.
879 * More provides better reception via diversity. Fewer saves power.
880 * MIMO (dual stream) requires at least 2, but works better with 3.
881 * This does not determine *which* chains to use, just how many.
883 static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
885 bool is_single = is_single_rx_stream(priv);
886 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
888 /* # of Rx chains to use when expecting MIMO. */
889 if (is_single || (!is_cam && (priv->current_ht_config.sm_ps ==
890 WLAN_HT_CAP_SM_PS_STATIC)))
891 return IWL_NUM_RX_CHAINS_SINGLE;
893 return IWL_NUM_RX_CHAINS_MULTIPLE;
896 static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
899 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
900 /* # Rx chains when idling and maybe trying to save power */
901 switch (priv->current_ht_config.sm_ps) {
902 case WLAN_HT_CAP_SM_PS_STATIC:
903 case WLAN_HT_CAP_SM_PS_DYNAMIC:
904 idle_cnt = (is_cam) ? IWL_NUM_IDLE_CHAINS_DUAL :
905 IWL_NUM_IDLE_CHAINS_SINGLE;
907 case WLAN_HT_CAP_SM_PS_DISABLED:
908 idle_cnt = (is_cam) ? active_cnt : IWL_NUM_IDLE_CHAINS_SINGLE;
910 case WLAN_HT_CAP_SM_PS_INVALID:
912 IWL_ERR(priv, "invalid mimo ps mode %d\n",
913 priv->current_ht_config.sm_ps);
922 static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
925 res = (chain_bitmap & BIT(0)) >> 0;
926 res += (chain_bitmap & BIT(1)) >> 1;
927 res += (chain_bitmap & BIT(2)) >> 2;
928 res += (chain_bitmap & BIT(4)) >> 4;
933 * iwl_is_monitor_mode - Determine if interface in monitor mode
935 * priv->iw_mode is set in add_interface, but add_interface is
936 * never called for monitor mode. The only way mac80211 informs us about
937 * monitor mode is through configuring filters (call to configure_filter).
939 bool iwl_is_monitor_mode(struct iwl_priv *priv)
941 return !!(priv->staging_rxon.filter_flags & RXON_FILTER_PROMISC_MSK);
943 EXPORT_SYMBOL(iwl_is_monitor_mode);
946 * iwl_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
948 * Selects how many and which Rx receivers/antennas/chains to use.
949 * This should not be used for scan command ... it puts data in wrong place.
951 void iwl_set_rxon_chain(struct iwl_priv *priv)
953 bool is_single = is_single_rx_stream(priv);
954 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
955 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
959 /* Tell uCode which antennas are actually connected.
960 * Before first association, we assume all antennas are connected.
961 * Just after first association, iwl_chain_noise_calibration()
962 * checks which antennas actually *are* connected. */
963 if (priv->chain_noise_data.active_chains)
964 active_chains = priv->chain_noise_data.active_chains;
966 active_chains = priv->hw_params.valid_rx_ant;
968 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
970 /* How many receivers should we use? */
971 active_rx_cnt = iwl_get_active_rx_chain_count(priv);
972 idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
975 /* correct rx chain count according hw settings
976 * and chain noise calibration
978 valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
979 if (valid_rx_cnt < active_rx_cnt)
980 active_rx_cnt = valid_rx_cnt;
982 if (valid_rx_cnt < idle_rx_cnt)
983 idle_rx_cnt = valid_rx_cnt;
985 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
986 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
988 /* copied from 'iwl_bg_request_scan()' */
989 /* Force use of chains B and C (0x6) for Rx for 4965
990 * Avoid A (0x1) because of its off-channel reception on A-band.
991 * MIMO is not used here, but value is required */
992 if (iwl_is_monitor_mode(priv) &&
993 !(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) &&
994 ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) == CSR_HW_REV_TYPE_4965)) {
995 rx_chain = ANT_ABC << RXON_RX_CHAIN_VALID_POS;
996 rx_chain |= ANT_BC << RXON_RX_CHAIN_FORCE_SEL_POS;
997 rx_chain |= ANT_ABC << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
998 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
1001 priv->staging_rxon.rx_chain = cpu_to_le16(rx_chain);
1003 if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
1004 priv->staging_rxon.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1006 priv->staging_rxon.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1008 IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
1009 priv->staging_rxon.rx_chain,
1010 active_rx_cnt, idle_rx_cnt);
1012 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1013 active_rx_cnt < idle_rx_cnt);
1015 EXPORT_SYMBOL(iwl_set_rxon_chain);
1018 * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON
1019 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
1020 * @channel: Any channel valid for the requested phymode
1022 * In addition to setting the staging RXON, priv->phymode is also set.
1024 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
1025 * in the staging RXON flag structure based on the phymode
1027 int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch)
1029 enum ieee80211_band band = ch->band;
1030 u16 channel = ieee80211_frequency_to_channel(ch->center_freq);
1032 if (!iwl_get_channel_info(priv, band, channel)) {
1033 IWL_DEBUG_INFO(priv, "Could not set channel to %d [%d]\n",
1038 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
1039 (priv->band == band))
1042 priv->staging_rxon.channel = cpu_to_le16(channel);
1043 if (band == IEEE80211_BAND_5GHZ)
1044 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
1046 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1050 IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
1054 EXPORT_SYMBOL(iwl_set_rxon_channel);
1056 void iwl_set_flags_for_band(struct iwl_priv *priv,
1057 enum ieee80211_band band)
1059 if (band == IEEE80211_BAND_5GHZ) {
1060 priv->staging_rxon.flags &=
1061 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1062 | RXON_FLG_CCK_MSK);
1063 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1065 /* Copied from iwl_post_associate() */
1066 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1067 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1069 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1071 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
1072 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1074 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1075 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1076 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
1079 EXPORT_SYMBOL(iwl_set_flags_for_band);
1082 * initialize rxon structure with default values from eeprom
1084 void iwl_connection_init_rx_config(struct iwl_priv *priv, int mode)
1086 const struct iwl_channel_info *ch_info;
1088 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
1091 case NL80211_IFTYPE_AP:
1092 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
1095 case NL80211_IFTYPE_STATION:
1096 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
1097 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1100 case NL80211_IFTYPE_ADHOC:
1101 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1102 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1103 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1104 RXON_FILTER_ACCEPT_GRP_MSK;
1108 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
1113 /* TODO: Figure out when short_preamble would be set and cache from
1115 if (!hw_to_local(priv->hw)->short_preamble)
1116 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1118 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1121 ch_info = iwl_get_channel_info(priv, priv->band,
1122 le16_to_cpu(priv->active_rxon.channel));
1125 ch_info = &priv->channel_info[0];
1128 * in some case A channels are all non IBSS
1129 * in this case force B/G channel
1131 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
1132 !(is_channel_ibss(ch_info)))
1133 ch_info = &priv->channel_info[0];
1135 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
1136 priv->band = ch_info->band;
1138 iwl_set_flags_for_band(priv, priv->band);
1140 priv->staging_rxon.ofdm_basic_rates =
1141 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1142 priv->staging_rxon.cck_basic_rates =
1143 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1145 /* clear both MIX and PURE40 mode flag */
1146 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
1147 RXON_FLG_CHANNEL_MODE_PURE_40);
1148 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1149 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
1150 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
1151 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
1152 priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff;
1154 EXPORT_SYMBOL(iwl_connection_init_rx_config);
1156 static void iwl_set_rate(struct iwl_priv *priv)
1158 const struct ieee80211_supported_band *hw = NULL;
1159 struct ieee80211_rate *rate;
1162 hw = iwl_get_hw_mode(priv, priv->band);
1164 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
1168 priv->active_rate = 0;
1169 priv->active_rate_basic = 0;
1171 for (i = 0; i < hw->n_bitrates; i++) {
1172 rate = &(hw->bitrates[i]);
1173 if (rate->hw_value < IWL_RATE_COUNT)
1174 priv->active_rate |= (1 << rate->hw_value);
1177 IWL_DEBUG_RATE(priv, "Set active_rate = %0x, active_rate_basic = %0x\n",
1178 priv->active_rate, priv->active_rate_basic);
1181 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
1182 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
1185 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
1186 priv->staging_rxon.cck_basic_rates =
1187 ((priv->active_rate_basic &
1188 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
1190 priv->staging_rxon.cck_basic_rates =
1191 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1193 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
1194 priv->staging_rxon.ofdm_basic_rates =
1195 ((priv->active_rate_basic &
1196 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
1197 IWL_FIRST_OFDM_RATE) & 0xFF;
1199 priv->staging_rxon.ofdm_basic_rates =
1200 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1203 void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1205 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1206 struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
1207 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
1208 IWL_DEBUG_11H(priv, "CSA notif: channel %d, status %d\n",
1209 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1210 rxon->channel = csa->channel;
1211 priv->staging_rxon.channel = csa->channel;
1213 EXPORT_SYMBOL(iwl_rx_csa);
1215 #ifdef CONFIG_IWLWIFI_DEBUG
1216 static void iwl_print_rx_config_cmd(struct iwl_priv *priv)
1218 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
1220 IWL_DEBUG_RADIO(priv, "RX CONFIG:\n");
1221 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
1222 IWL_DEBUG_RADIO(priv, "u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
1223 IWL_DEBUG_RADIO(priv, "u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
1224 IWL_DEBUG_RADIO(priv, "u32 filter_flags: 0x%08x\n",
1225 le32_to_cpu(rxon->filter_flags));
1226 IWL_DEBUG_RADIO(priv, "u8 dev_type: 0x%x\n", rxon->dev_type);
1227 IWL_DEBUG_RADIO(priv, "u8 ofdm_basic_rates: 0x%02x\n",
1228 rxon->ofdm_basic_rates);
1229 IWL_DEBUG_RADIO(priv, "u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
1230 IWL_DEBUG_RADIO(priv, "u8[6] node_addr: %pM\n", rxon->node_addr);
1231 IWL_DEBUG_RADIO(priv, "u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
1232 IWL_DEBUG_RADIO(priv, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
1237 * iwl_irq_handle_error - called for HW or SW error interrupt from card
1239 void iwl_irq_handle_error(struct iwl_priv *priv)
1241 /* Set the FW error flag -- cleared on iwl_down */
1242 set_bit(STATUS_FW_ERROR, &priv->status);
1244 /* Cancel currently queued command. */
1245 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1247 #ifdef CONFIG_IWLWIFI_DEBUG
1248 if (priv->debug_level & IWL_DL_FW_ERRORS) {
1249 iwl_dump_nic_error_log(priv);
1250 iwl_dump_nic_event_log(priv);
1251 iwl_print_rx_config_cmd(priv);
1255 wake_up_interruptible(&priv->wait_command_queue);
1257 /* Keep the restart process from trying to send host
1258 * commands by clearing the INIT status bit */
1259 clear_bit(STATUS_READY, &priv->status);
1261 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
1262 IWL_DEBUG(priv, IWL_DL_FW_ERRORS,
1263 "Restarting adapter due to uCode error.\n");
1265 if (priv->cfg->mod_params->restart_fw)
1266 queue_work(priv->workqueue, &priv->restart);
1269 EXPORT_SYMBOL(iwl_irq_handle_error);
1271 void iwl_configure_filter(struct ieee80211_hw *hw,
1272 unsigned int changed_flags,
1273 unsigned int *total_flags,
1274 int mc_count, struct dev_addr_list *mc_list)
1276 struct iwl_priv *priv = hw->priv;
1277 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
1279 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
1280 changed_flags, *total_flags);
1282 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
1283 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
1284 *filter_flags |= RXON_FILTER_PROMISC_MSK;
1286 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
1288 if (changed_flags & FIF_ALLMULTI) {
1289 if (*total_flags & FIF_ALLMULTI)
1290 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
1292 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
1294 if (changed_flags & FIF_CONTROL) {
1295 if (*total_flags & FIF_CONTROL)
1296 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
1298 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
1300 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1301 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
1302 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
1304 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
1307 /* We avoid iwl_commit_rxon here to commit the new filter flags
1308 * since mac80211 will call ieee80211_hw_config immediately.
1309 * (mc_list is not supported at this time). Otherwise, we need to
1310 * queue a background iwl_commit_rxon work.
1313 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
1314 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
1316 EXPORT_SYMBOL(iwl_configure_filter);
1318 int iwl_setup_mac(struct iwl_priv *priv)
1321 struct ieee80211_hw *hw = priv->hw;
1322 hw->rate_control_algorithm = "iwl-agn-rs";
1324 /* Tell mac80211 our characteristics */
1325 hw->flags = IEEE80211_HW_SIGNAL_DBM |
1326 IEEE80211_HW_NOISE_DBM |
1327 IEEE80211_HW_AMPDU_AGGREGATION |
1328 IEEE80211_HW_SPECTRUM_MGMT;
1329 hw->wiphy->interface_modes =
1330 BIT(NL80211_IFTYPE_STATION) |
1331 BIT(NL80211_IFTYPE_ADHOC);
1333 hw->wiphy->custom_regulatory = true;
1335 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
1336 /* we create the 802.11 header and a zero-length SSID element */
1337 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
1339 /* Default value; 4 EDCA QOS priorities */
1342 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
1344 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
1345 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1346 &priv->bands[IEEE80211_BAND_2GHZ];
1347 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
1348 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1349 &priv->bands[IEEE80211_BAND_5GHZ];
1351 ret = ieee80211_register_hw(priv->hw);
1353 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
1356 priv->mac80211_registered = 1;
1360 EXPORT_SYMBOL(iwl_setup_mac);
1362 int iwl_set_hw_params(struct iwl_priv *priv)
1364 priv->hw_params.sw_crypto = priv->cfg->mod_params->sw_crypto;
1365 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
1366 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
1367 if (priv->cfg->mod_params->amsdu_size_8K)
1368 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
1370 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
1371 priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
1373 if (priv->cfg->mod_params->disable_11n)
1374 priv->cfg->sku &= ~IWL_SKU_N;
1376 /* Device-specific setup */
1377 return priv->cfg->ops->lib->set_hw_params(priv);
1379 EXPORT_SYMBOL(iwl_set_hw_params);
1381 int iwl_init_drv(struct iwl_priv *priv)
1385 priv->ibss_beacon = NULL;
1387 spin_lock_init(&priv->lock);
1388 spin_lock_init(&priv->sta_lock);
1389 spin_lock_init(&priv->hcmd_lock);
1391 INIT_LIST_HEAD(&priv->free_frames);
1393 mutex_init(&priv->mutex);
1395 /* Clear the driver's (not device's) station table */
1396 iwl_clear_stations_table(priv);
1398 priv->data_retry_limit = -1;
1399 priv->ieee_channels = NULL;
1400 priv->ieee_rates = NULL;
1401 priv->band = IEEE80211_BAND_2GHZ;
1403 priv->iw_mode = NL80211_IFTYPE_STATION;
1405 priv->current_ht_config.sm_ps = WLAN_HT_CAP_SM_PS_DISABLED;
1407 /* Choose which receivers/antennas to use */
1408 if (priv->cfg->ops->hcmd->set_rxon_chain)
1409 priv->cfg->ops->hcmd->set_rxon_chain(priv);
1411 iwl_init_scan_params(priv);
1413 iwl_reset_qos(priv);
1415 priv->qos_data.qos_active = 0;
1416 priv->qos_data.qos_cap.val = 0;
1418 priv->rates_mask = IWL_RATES_MASK;
1419 /* If power management is turned on, default to CAM mode */
1420 priv->power_mode = IWL_POWER_MODE_CAM;
1421 priv->tx_power_user_lmt = IWL_TX_POWER_TARGET_POWER_MAX;
1423 ret = iwl_init_channel_map(priv);
1425 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
1429 ret = iwlcore_init_geos(priv);
1431 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
1432 goto err_free_channel_map;
1434 iwlcore_init_hw_rates(priv, priv->ieee_rates);
1438 err_free_channel_map:
1439 iwl_free_channel_map(priv);
1443 EXPORT_SYMBOL(iwl_init_drv);
1445 int iwl_set_tx_power(struct iwl_priv *priv, s8 tx_power, bool force)
1448 if (tx_power < IWL_TX_POWER_TARGET_POWER_MIN) {
1449 IWL_WARN(priv, "Requested user TXPOWER %d below lower limit %d.\n",
1451 IWL_TX_POWER_TARGET_POWER_MIN);
1455 if (tx_power > IWL_TX_POWER_TARGET_POWER_MAX) {
1456 IWL_WARN(priv, "Requested user TXPOWER %d above upper limit %d.\n",
1458 IWL_TX_POWER_TARGET_POWER_MAX);
1462 if (priv->tx_power_user_lmt != tx_power)
1465 priv->tx_power_user_lmt = tx_power;
1467 /* if nic is not up don't send command */
1468 if (!iwl_is_ready_rf(priv))
1471 if (force && priv->cfg->ops->lib->send_tx_power)
1472 ret = priv->cfg->ops->lib->send_tx_power(priv);
1476 EXPORT_SYMBOL(iwl_set_tx_power);
1478 void iwl_uninit_drv(struct iwl_priv *priv)
1480 iwl_calib_free_results(priv);
1481 iwlcore_free_geos(priv);
1482 iwl_free_channel_map(priv);
1485 EXPORT_SYMBOL(iwl_uninit_drv);
1488 void iwl_disable_interrupts(struct iwl_priv *priv)
1490 clear_bit(STATUS_INT_ENABLED, &priv->status);
1492 /* disable interrupts from uCode/NIC to host */
1493 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1495 /* acknowledge/clear/reset any interrupts still pending
1496 * from uCode or flow handler (Rx/Tx DMA) */
1497 iwl_write32(priv, CSR_INT, 0xffffffff);
1498 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
1499 IWL_DEBUG_ISR(priv, "Disabled interrupts\n");
1501 EXPORT_SYMBOL(iwl_disable_interrupts);
1503 void iwl_enable_interrupts(struct iwl_priv *priv)
1505 IWL_DEBUG_ISR(priv, "Enabling interrupts\n");
1506 set_bit(STATUS_INT_ENABLED, &priv->status);
1507 iwl_write32(priv, CSR_INT_MASK, priv->inta_mask);
1509 EXPORT_SYMBOL(iwl_enable_interrupts);
1512 #define ICT_COUNT (PAGE_SIZE/sizeof(u32))
1514 /* Free dram table */
1515 void iwl_free_isr_ict(struct iwl_priv *priv)
1517 if (priv->ict_tbl_vir) {
1518 pci_free_consistent(priv->pci_dev, (sizeof(u32) * ICT_COUNT) +
1519 PAGE_SIZE, priv->ict_tbl_vir,
1521 priv->ict_tbl_vir = NULL;
1524 EXPORT_SYMBOL(iwl_free_isr_ict);
1527 /* allocate dram shared table it is a PAGE_SIZE aligned
1528 * also reset all data related to ICT table interrupt.
1530 int iwl_alloc_isr_ict(struct iwl_priv *priv)
1533 if (priv->cfg->use_isr_legacy)
1535 /* allocate shrared data table */
1536 priv->ict_tbl_vir = pci_alloc_consistent(priv->pci_dev, (sizeof(u32) *
1537 ICT_COUNT) + PAGE_SIZE,
1538 &priv->ict_tbl_dma);
1539 if (!priv->ict_tbl_vir)
1542 /* align table to PAGE_SIZE boundry */
1543 priv->aligned_ict_tbl_dma = ALIGN(priv->ict_tbl_dma, PAGE_SIZE);
1545 IWL_DEBUG_ISR(priv, "ict dma addr %Lx dma aligned %Lx diff %d\n",
1546 (unsigned long long)priv->ict_tbl_dma,
1547 (unsigned long long)priv->aligned_ict_tbl_dma,
1548 (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1550 priv->ict_tbl = priv->ict_tbl_vir +
1551 (priv->aligned_ict_tbl_dma - priv->ict_tbl_dma);
1553 IWL_DEBUG_ISR(priv, "ict vir addr %p vir aligned %p diff %d\n",
1554 priv->ict_tbl, priv->ict_tbl_vir,
1555 (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1557 /* reset table and index to all 0 */
1558 memset(priv->ict_tbl_vir,0, (sizeof(u32) * ICT_COUNT) + PAGE_SIZE);
1559 priv->ict_index = 0;
1561 /* add periodic RX interrupt */
1562 priv->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
1565 EXPORT_SYMBOL(iwl_alloc_isr_ict);
1567 /* Device is going up inform it about using ICT interrupt table,
1568 * also we need to tell the driver to start using ICT interrupt.
1570 int iwl_reset_ict(struct iwl_priv *priv)
1573 unsigned long flags;
1575 if (!priv->ict_tbl_vir)
1578 spin_lock_irqsave(&priv->lock, flags);
1579 iwl_disable_interrupts(priv);
1581 memset(&priv->ict_tbl[0],0, sizeof(u32) * ICT_COUNT);
1583 val = priv->aligned_ict_tbl_dma >> PAGE_SHIFT;
1585 val |= CSR_DRAM_INT_TBL_ENABLE;
1586 val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1588 IWL_DEBUG_ISR(priv, "CSR_DRAM_INT_TBL_REG =0x%X "
1589 "aligned dma address %Lx\n",
1590 val, (unsigned long long)priv->aligned_ict_tbl_dma);
1592 iwl_write32(priv, CSR_DRAM_INT_TBL_REG, val);
1593 priv->use_ict = true;
1594 priv->ict_index = 0;
1595 iwl_write32(priv, CSR_INT, priv->inta_mask);
1596 iwl_enable_interrupts(priv);
1597 spin_unlock_irqrestore(&priv->lock, flags);
1601 EXPORT_SYMBOL(iwl_reset_ict);
1603 /* Device is going down disable ict interrupt usage */
1604 void iwl_disable_ict(struct iwl_priv *priv)
1606 unsigned long flags;
1608 spin_lock_irqsave(&priv->lock, flags);
1609 priv->use_ict = false;
1610 spin_unlock_irqrestore(&priv->lock, flags);
1612 EXPORT_SYMBOL(iwl_disable_ict);
1614 /* interrupt handler using ict table, with this interrupt driver will
1615 * stop using INTA register to get device's interrupt, reading this register
1616 * is expensive, device will write interrupts in ICT dram table, increment
1617 * index then will fire interrupt to driver, driver will OR all ICT table
1618 * entries from current index up to table entry with 0 value. the result is
1619 * the interrupt we need to service, driver will set the entries back to 0 and
1622 irqreturn_t iwl_isr_ict(int irq, void *data)
1624 struct iwl_priv *priv = data;
1625 u32 inta, inta_mask;
1631 /* dram interrupt table not set yet,
1632 * use legacy interrupt.
1635 return iwl_isr(irq, data);
1637 spin_lock(&priv->lock);
1639 /* Disable (but don't clear!) interrupts here to avoid
1640 * back-to-back ISRs and sporadic interrupts from our NIC.
1641 * If we have something to service, the tasklet will re-enable ints.
1642 * If we *don't* have something, we'll re-enable before leaving here.
1644 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1645 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1648 /* Ignore interrupt if there's nothing in NIC to service.
1649 * This may be due to IRQ shared with another device,
1650 * or due to sporadic interrupts thrown from our NIC. */
1651 if (!priv->ict_tbl[priv->ict_index]) {
1652 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1656 /* read all entries that not 0 start with ict_index */
1657 while (priv->ict_tbl[priv->ict_index]) {
1659 val |= priv->ict_tbl[priv->ict_index];
1660 IWL_DEBUG_ISR(priv, "ICT index %d value 0x%08X\n",
1662 priv->ict_tbl[priv->ict_index]);
1663 priv->ict_tbl[priv->ict_index] = 0;
1664 priv->ict_index = iwl_queue_inc_wrap(priv->ict_index,
1669 /* We should not get this value, just ignore it. */
1670 if (val == 0xffffffff)
1673 inta = (0xff & val) | ((0xff00 & val) << 16);
1674 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
1675 inta, inta_mask, val);
1677 inta &= priv->inta_mask;
1680 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1682 tasklet_schedule(&priv->irq_tasklet);
1683 else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta) {
1684 /* Allow interrupt if was disabled by this handler and
1685 * no tasklet was schedules, We should not enable interrupt,
1686 * tasklet will enable it.
1688 iwl_enable_interrupts(priv);
1691 spin_unlock(&priv->lock);
1695 /* re-enable interrupts here since we don't have anything to service.
1696 * only Re-enable if disabled by irq.
1698 if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1699 iwl_enable_interrupts(priv);
1701 spin_unlock(&priv->lock);
1704 EXPORT_SYMBOL(iwl_isr_ict);
1707 static irqreturn_t iwl_isr(int irq, void *data)
1709 struct iwl_priv *priv = data;
1710 u32 inta, inta_mask;
1711 #ifdef CONFIG_IWLWIFI_DEBUG
1717 spin_lock(&priv->lock);
1719 /* Disable (but don't clear!) interrupts here to avoid
1720 * back-to-back ISRs and sporadic interrupts from our NIC.
1721 * If we have something to service, the tasklet will re-enable ints.
1722 * If we *don't* have something, we'll re-enable before leaving here. */
1723 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1724 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1726 /* Discover which interrupts are active/pending */
1727 inta = iwl_read32(priv, CSR_INT);
1729 /* Ignore interrupt if there's nothing in NIC to service.
1730 * This may be due to IRQ shared with another device,
1731 * or due to sporadic interrupts thrown from our NIC. */
1733 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1737 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1738 /* Hardware disappeared. It might have already raised
1740 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1744 #ifdef CONFIG_IWLWIFI_DEBUG
1745 if (priv->debug_level & (IWL_DL_ISR)) {
1746 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1747 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, "
1748 "fh 0x%08x\n", inta, inta_mask, inta_fh);
1753 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1755 tasklet_schedule(&priv->irq_tasklet);
1756 else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1757 iwl_enable_interrupts(priv);
1760 spin_unlock(&priv->lock);
1764 /* re-enable interrupts here since we don't have anything to service. */
1765 /* only Re-enable if diabled by irq and no schedules tasklet. */
1766 if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1767 iwl_enable_interrupts(priv);
1769 spin_unlock(&priv->lock);
1773 irqreturn_t iwl_isr_legacy(int irq, void *data)
1775 struct iwl_priv *priv = data;
1776 u32 inta, inta_mask;
1781 spin_lock(&priv->lock);
1783 /* Disable (but don't clear!) interrupts here to avoid
1784 * back-to-back ISRs and sporadic interrupts from our NIC.
1785 * If we have something to service, the tasklet will re-enable ints.
1786 * If we *don't* have something, we'll re-enable before leaving here. */
1787 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1788 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1790 /* Discover which interrupts are active/pending */
1791 inta = iwl_read32(priv, CSR_INT);
1792 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1794 /* Ignore interrupt if there's nothing in NIC to service.
1795 * This may be due to IRQ shared with another device,
1796 * or due to sporadic interrupts thrown from our NIC. */
1797 if (!inta && !inta_fh) {
1798 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
1802 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1803 /* Hardware disappeared. It might have already raised
1805 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1809 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1810 inta, inta_mask, inta_fh);
1812 inta &= ~CSR_INT_BIT_SCD;
1814 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1815 if (likely(inta || inta_fh))
1816 tasklet_schedule(&priv->irq_tasklet);
1819 spin_unlock(&priv->lock);
1823 /* re-enable interrupts here since we don't have anything to service. */
1824 /* only Re-enable if diabled by irq */
1825 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1826 iwl_enable_interrupts(priv);
1827 spin_unlock(&priv->lock);
1830 EXPORT_SYMBOL(iwl_isr_legacy);
1832 int iwl_send_bt_config(struct iwl_priv *priv)
1834 struct iwl_bt_cmd bt_cmd = {
1842 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1843 sizeof(struct iwl_bt_cmd), &bt_cmd);
1845 EXPORT_SYMBOL(iwl_send_bt_config);
1847 int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags)
1850 struct iwl_host_cmd cmd = {
1851 .id = REPLY_STATISTICS_CMD,
1852 .meta.flags = flags,
1853 .len = sizeof(stat_flags),
1854 .data = (u8 *) &stat_flags,
1856 return iwl_send_cmd(priv, &cmd);
1858 EXPORT_SYMBOL(iwl_send_statistics_request);
1861 * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host,
1862 * using sample data 100 bytes apart. If these sample points are good,
1863 * it's a pretty good bet that everything between them is good, too.
1865 static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
1872 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
1874 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1875 /* read data comes through single port, auto-incr addr */
1876 /* NOTE: Use the debugless read so we don't flood kernel log
1877 * if IWL_DL_IO is set */
1878 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
1879 i + IWL49_RTC_INST_LOWER_BOUND);
1880 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1881 if (val != le32_to_cpu(*image)) {
1893 * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host,
1894 * looking at all data.
1896 static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image,
1904 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
1906 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
1907 IWL49_RTC_INST_LOWER_BOUND);
1910 for (; len > 0; len -= sizeof(u32), image++) {
1911 /* read data comes through single port, auto-incr addr */
1912 /* NOTE: Use the debugless read so we don't flood kernel log
1913 * if IWL_DL_IO is set */
1914 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1915 if (val != le32_to_cpu(*image)) {
1916 IWL_ERR(priv, "uCode INST section is invalid at "
1917 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1918 save_len - len, val, le32_to_cpu(*image));
1927 IWL_DEBUG_INFO(priv,
1928 "ucode image in INSTRUCTION memory is good\n");
1934 * iwl_verify_ucode - determine which instruction image is in SRAM,
1935 * and verify its contents
1937 int iwl_verify_ucode(struct iwl_priv *priv)
1944 image = (__le32 *)priv->ucode_boot.v_addr;
1945 len = priv->ucode_boot.len;
1946 ret = iwlcore_verify_inst_sparse(priv, image, len);
1948 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
1952 /* Try initialize */
1953 image = (__le32 *)priv->ucode_init.v_addr;
1954 len = priv->ucode_init.len;
1955 ret = iwlcore_verify_inst_sparse(priv, image, len);
1957 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
1961 /* Try runtime/protocol */
1962 image = (__le32 *)priv->ucode_code.v_addr;
1963 len = priv->ucode_code.len;
1964 ret = iwlcore_verify_inst_sparse(priv, image, len);
1966 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
1970 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
1972 /* Since nothing seems to match, show first several data entries in
1973 * instruction SRAM, so maybe visual inspection will give a clue.
1974 * Selection of bootstrap image (vs. other images) is arbitrary. */
1975 image = (__le32 *)priv->ucode_boot.v_addr;
1976 len = priv->ucode_boot.len;
1977 ret = iwl_verify_inst_full(priv, image, len);
1981 EXPORT_SYMBOL(iwl_verify_ucode);
1984 static const char *desc_lookup_text[] = {
1989 "NMI_INTERRUPT_WDG",
1993 "HW_ERROR_TUNE_LOCK",
1994 "HW_ERROR_TEMPERATURE",
1995 "ILLEGAL_CHAN_FREQ",
1998 "NMI_INTERRUPT_HOST",
1999 "NMI_INTERRUPT_ACTION_PT",
2000 "NMI_INTERRUPT_UNKNOWN",
2001 "UCODE_VERSION_MISMATCH",
2002 "HW_ERROR_ABS_LOCK",
2003 "HW_ERROR_CAL_LOCK_FAIL",
2004 "NMI_INTERRUPT_INST_ACTION_PT",
2005 "NMI_INTERRUPT_DATA_ACTION_PT",
2007 "NMI_INTERRUPT_TRM",
2008 "NMI_INTERRUPT_BREAK_POINT"
2016 static const char *desc_lookup(int i)
2018 int max = ARRAY_SIZE(desc_lookup_text) - 1;
2020 if (i < 0 || i > max)
2023 return desc_lookup_text[i];
2026 #define ERROR_START_OFFSET (1 * sizeof(u32))
2027 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
2029 void iwl_dump_nic_error_log(struct iwl_priv *priv)
2032 u32 desc, time, count, base, data1;
2033 u32 blink1, blink2, ilink1, ilink2;
2035 if (priv->ucode_type == UCODE_INIT)
2036 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
2038 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
2040 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2041 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
2045 count = iwl_read_targ_mem(priv, base);
2047 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2048 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2049 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2050 priv->status, count);
2053 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
2054 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2055 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2056 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2057 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2058 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2059 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2060 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2061 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
2063 IWL_ERR(priv, "Desc Time "
2064 "data1 data2 line\n");
2065 IWL_ERR(priv, "%-28s (#%02d) %010u 0x%08X 0x%08X %u\n",
2066 desc_lookup(desc), desc, time, data1, data2, line);
2067 IWL_ERR(priv, "blink1 blink2 ilink1 ilink2\n");
2068 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
2072 EXPORT_SYMBOL(iwl_dump_nic_error_log);
2074 #define EVENT_START_OFFSET (4 * sizeof(u32))
2077 * iwl_print_event_log - Dump error event log to syslog
2080 static void iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2081 u32 num_events, u32 mode)
2084 u32 base; /* SRAM byte address of event log header */
2085 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2086 u32 ptr; /* SRAM byte address of log data */
2087 u32 ev, time, data; /* event log data */
2089 if (num_events == 0)
2091 if (priv->ucode_type == UCODE_INIT)
2092 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2094 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2097 event_size = 2 * sizeof(u32);
2099 event_size = 3 * sizeof(u32);
2101 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2103 /* "time" is actually "data" for mode 0 (no timestamp).
2104 * place event id # at far right for easier visual parsing. */
2105 for (i = 0; i < num_events; i++) {
2106 ev = iwl_read_targ_mem(priv, ptr);
2108 time = iwl_read_targ_mem(priv, ptr);
2112 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", time, ev);
2114 data = iwl_read_targ_mem(priv, ptr);
2116 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
2122 void iwl_dump_nic_event_log(struct iwl_priv *priv)
2124 u32 base; /* SRAM byte address of event log header */
2125 u32 capacity; /* event log capacity in # entries */
2126 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2127 u32 num_wraps; /* # times uCode wrapped to top of log */
2128 u32 next_entry; /* index of next entry to be written by uCode */
2129 u32 size; /* # entries that we'll print */
2131 if (priv->ucode_type == UCODE_INIT)
2132 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2134 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2136 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2137 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
2141 /* event log header */
2142 capacity = iwl_read_targ_mem(priv, base);
2143 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2144 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2145 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2147 size = num_wraps ? capacity : next_entry;
2149 /* bail out if nothing in log */
2151 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
2155 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
2158 /* if uCode has wrapped back to top of log, start at the oldest entry,
2159 * i.e the next one that uCode would fill. */
2161 iwl_print_event_log(priv, next_entry,
2162 capacity - next_entry, mode);
2163 /* (then/else) start at top of log */
2164 iwl_print_event_log(priv, 0, next_entry, mode);
2167 EXPORT_SYMBOL(iwl_dump_nic_event_log);
2169 void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2171 struct iwl_ct_kill_config cmd;
2172 unsigned long flags;
2175 spin_lock_irqsave(&priv->lock, flags);
2176 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2177 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2178 spin_unlock_irqrestore(&priv->lock, flags);
2180 cmd.critical_temperature_R =
2181 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2183 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2186 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2188 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD succeeded, "
2189 "critical temperature is %d\n",
2190 cmd.critical_temperature_R);
2192 EXPORT_SYMBOL(iwl_rf_kill_ct_config);
2198 * Use: Sets the device's internal card state to enable, disable, or halt
2200 * When in the 'enable' state the card operates as normal.
2201 * When in the 'disable' state, the card enters into a low power mode.
2202 * When in the 'halt' state, the card is shut down and must be fully
2203 * restarted to come back on.
2205 int iwl_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
2207 struct iwl_host_cmd cmd = {
2208 .id = REPLY_CARD_STATE_CMD,
2211 .meta.flags = meta_flag,
2214 return iwl_send_cmd(priv, &cmd);
2216 EXPORT_SYMBOL(iwl_send_card_state);
2218 void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
2219 struct iwl_rx_mem_buffer *rxb)
2221 #ifdef CONFIG_IWLWIFI_DEBUG
2222 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2223 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
2224 IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
2225 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2228 EXPORT_SYMBOL(iwl_rx_pm_sleep_notif);
2230 void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
2231 struct iwl_rx_mem_buffer *rxb)
2233 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2234 IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
2235 "notification for %s:\n",
2236 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
2237 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
2239 EXPORT_SYMBOL(iwl_rx_pm_debug_statistics_notif);
2241 void iwl_rx_reply_error(struct iwl_priv *priv,
2242 struct iwl_rx_mem_buffer *rxb)
2244 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2246 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
2247 "seq 0x%04X ser 0x%08X\n",
2248 le32_to_cpu(pkt->u.err_resp.error_type),
2249 get_cmd_string(pkt->u.err_resp.cmd_id),
2250 pkt->u.err_resp.cmd_id,
2251 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2252 le32_to_cpu(pkt->u.err_resp.error_info));
2254 EXPORT_SYMBOL(iwl_rx_reply_error);
2256 void iwl_clear_isr_stats(struct iwl_priv *priv)
2258 memset(&priv->isr_stats, 0, sizeof(priv->isr_stats));
2260 EXPORT_SYMBOL(iwl_clear_isr_stats);
2262 int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
2263 const struct ieee80211_tx_queue_params *params)
2265 struct iwl_priv *priv = hw->priv;
2266 unsigned long flags;
2269 IWL_DEBUG_MAC80211(priv, "enter\n");
2271 if (!iwl_is_ready_rf(priv)) {
2272 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2276 if (queue >= AC_NUM) {
2277 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
2281 q = AC_NUM - 1 - queue;
2283 spin_lock_irqsave(&priv->lock, flags);
2285 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2286 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2287 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2288 priv->qos_data.def_qos_parm.ac[q].edca_txop =
2289 cpu_to_le16((params->txop * 32));
2291 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2292 priv->qos_data.qos_active = 1;
2294 if (priv->iw_mode == NL80211_IFTYPE_AP)
2295 iwl_activate_qos(priv, 1);
2296 else if (priv->assoc_id && iwl_is_associated(priv))
2297 iwl_activate_qos(priv, 0);
2299 spin_unlock_irqrestore(&priv->lock, flags);
2301 IWL_DEBUG_MAC80211(priv, "leave\n");
2304 EXPORT_SYMBOL(iwl_mac_conf_tx);
2306 static void iwl_ht_conf(struct iwl_priv *priv,
2307 struct ieee80211_bss_conf *bss_conf)
2309 struct ieee80211_sta_ht_cap *ht_conf;
2310 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
2311 struct ieee80211_sta *sta;
2313 IWL_DEBUG_MAC80211(priv, "enter: \n");
2315 if (!iwl_conf->is_ht)
2320 * It is totally wrong to base global information on something
2321 * that is valid only when associated, alas, this driver works
2322 * that way and I don't know how to fix it.
2326 sta = ieee80211_find_sta(priv->hw, priv->bssid);
2331 ht_conf = &sta->ht_cap;
2333 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
2334 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
2335 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
2336 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
2338 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
2339 iwl_conf->max_amsdu_size =
2340 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
2342 iwl_conf->supported_chan_width =
2343 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
2346 * XXX: The HT configuration needs to be moved into iwl_mac_config()
2347 * to be done there correctly.
2350 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
2351 if (conf_is_ht40_minus(&priv->hw->conf))
2352 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2353 else if (conf_is_ht40_plus(&priv->hw->conf))
2354 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2356 /* If no above or below channel supplied disable FAT channel */
2357 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
2358 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
2359 iwl_conf->supported_chan_width = 0;
2361 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
2363 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
2365 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
2366 iwl_conf->ht_protection =
2367 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
2368 iwl_conf->non_GF_STA_present =
2369 !!(bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
2373 IWL_DEBUG_MAC80211(priv, "leave\n");
2376 #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
2377 void iwl_bss_info_changed(struct ieee80211_hw *hw,
2378 struct ieee80211_vif *vif,
2379 struct ieee80211_bss_conf *bss_conf,
2382 struct iwl_priv *priv = hw->priv;
2385 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
2387 if (!iwl_is_alive(priv))
2390 mutex_lock(&priv->mutex);
2392 if (changes & BSS_CHANGED_BEACON &&
2393 priv->iw_mode == NL80211_IFTYPE_AP) {
2394 dev_kfree_skb(priv->ibss_beacon);
2395 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
2398 if (changes & BSS_CHANGED_BEACON_INT) {
2399 priv->beacon_int = bss_conf->beacon_int;
2400 /* TODO: in AP mode, do something to make this take effect */
2403 if (changes & BSS_CHANGED_BSSID) {
2404 IWL_DEBUG_MAC80211(priv, "BSSID %pM\n", bss_conf->bssid);
2407 * If there is currently a HW scan going on in the
2408 * background then we need to cancel it else the RXON
2409 * below/in post_associate will fail.
2411 if (iwl_scan_cancel_timeout(priv, 100)) {
2412 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
2413 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
2414 mutex_unlock(&priv->mutex);
2418 /* mac80211 only sets assoc when in STATION mode */
2419 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
2421 memcpy(priv->staging_rxon.bssid_addr,
2422 bss_conf->bssid, ETH_ALEN);
2424 /* currently needed in a few places */
2425 memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN);
2427 priv->staging_rxon.filter_flags &=
2428 ~RXON_FILTER_ASSOC_MSK;
2434 * This needs to be after setting the BSSID in case
2435 * mac80211 decides to do both changes at once because
2436 * it will invoke post_associate.
2438 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2439 changes & BSS_CHANGED_BEACON) {
2440 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2443 iwl_mac_beacon_update(hw, beacon);
2446 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
2447 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
2448 bss_conf->use_short_preamble);
2449 if (bss_conf->use_short_preamble)
2450 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2452 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2455 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
2456 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
2457 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
2458 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2460 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2463 if (changes & BSS_CHANGED_BASIC_RATES) {
2464 /* XXX use this information
2466 * To do that, remove code from iwl_set_rate() and put something
2470 priv->staging_rxon.ofdm_basic_rates =
2471 bss_conf->basic_rates;
2473 priv->staging_rxon.ofdm_basic_rates =
2474 bss_conf->basic_rates >> 4;
2475 priv->staging_rxon.cck_basic_rates =
2476 bss_conf->basic_rates & 0xF;
2480 if (changes & BSS_CHANGED_HT) {
2481 iwl_ht_conf(priv, bss_conf);
2483 if (priv->cfg->ops->hcmd->set_rxon_chain)
2484 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2487 if (changes & BSS_CHANGED_ASSOC) {
2488 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
2489 if (bss_conf->assoc) {
2490 priv->assoc_id = bss_conf->aid;
2491 priv->beacon_int = bss_conf->beacon_int;
2492 priv->power_data.dtim_period = bss_conf->dtim_period;
2493 priv->timestamp = bss_conf->timestamp;
2494 priv->assoc_capability = bss_conf->assoc_capability;
2497 * We have just associated, don't start scan too early
2498 * leave time for EAPOL exchange to complete.
2500 * XXX: do this in mac80211
2502 priv->next_scan_jiffies = jiffies +
2503 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
2504 if (!iwl_is_rfkill(priv))
2505 priv->cfg->ops->lib->post_associate(priv);
2511 if (changes && iwl_is_associated(priv) && priv->assoc_id) {
2512 IWL_DEBUG_MAC80211(priv, "Changes (%#x) while associated\n",
2514 ret = iwl_send_rxon_assoc(priv);
2516 /* Sync active_rxon with latest change. */
2517 memcpy((void *)&priv->active_rxon,
2518 &priv->staging_rxon,
2519 sizeof(struct iwl_rxon_cmd));
2523 mutex_unlock(&priv->mutex);
2525 IWL_DEBUG_MAC80211(priv, "leave\n");
2527 EXPORT_SYMBOL(iwl_bss_info_changed);
2529 int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
2531 struct iwl_priv *priv = hw->priv;
2532 unsigned long flags;
2535 IWL_DEBUG_MAC80211(priv, "enter\n");
2537 if (!iwl_is_ready_rf(priv)) {
2538 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2542 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2543 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
2547 spin_lock_irqsave(&priv->lock, flags);
2549 if (priv->ibss_beacon)
2550 dev_kfree_skb(priv->ibss_beacon);
2552 priv->ibss_beacon = skb;
2555 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
2556 priv->timestamp = le64_to_cpu(timestamp);
2558 IWL_DEBUG_MAC80211(priv, "leave\n");
2559 spin_unlock_irqrestore(&priv->lock, flags);
2561 iwl_reset_qos(priv);
2563 priv->cfg->ops->lib->post_associate(priv);
2568 EXPORT_SYMBOL(iwl_mac_beacon_update);
2570 int iwl_set_mode(struct iwl_priv *priv, int mode)
2572 if (mode == NL80211_IFTYPE_ADHOC) {
2573 const struct iwl_channel_info *ch_info;
2575 ch_info = iwl_get_channel_info(priv,
2577 le16_to_cpu(priv->staging_rxon.channel));
2579 if (!ch_info || !is_channel_ibss(ch_info)) {
2580 IWL_ERR(priv, "channel %d not IBSS channel\n",
2581 le16_to_cpu(priv->staging_rxon.channel));
2586 iwl_connection_init_rx_config(priv, mode);
2588 if (priv->cfg->ops->hcmd->set_rxon_chain)
2589 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2591 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2593 iwl_clear_stations_table(priv);
2595 /* dont commit rxon if rf-kill is on*/
2596 if (!iwl_is_ready_rf(priv))
2599 iwlcore_commit_rxon(priv);
2603 EXPORT_SYMBOL(iwl_set_mode);
2605 int iwl_mac_add_interface(struct ieee80211_hw *hw,
2606 struct ieee80211_if_init_conf *conf)
2608 struct iwl_priv *priv = hw->priv;
2609 unsigned long flags;
2611 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
2614 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
2618 spin_lock_irqsave(&priv->lock, flags);
2619 priv->vif = conf->vif;
2620 priv->iw_mode = conf->type;
2622 spin_unlock_irqrestore(&priv->lock, flags);
2624 mutex_lock(&priv->mutex);
2626 if (conf->mac_addr) {
2627 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
2628 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2631 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
2632 /* we are not ready, will run again when ready */
2633 set_bit(STATUS_MODE_PENDING, &priv->status);
2635 mutex_unlock(&priv->mutex);
2637 IWL_DEBUG_MAC80211(priv, "leave\n");
2640 EXPORT_SYMBOL(iwl_mac_add_interface);
2642 void iwl_mac_remove_interface(struct ieee80211_hw *hw,
2643 struct ieee80211_if_init_conf *conf)
2645 struct iwl_priv *priv = hw->priv;
2647 IWL_DEBUG_MAC80211(priv, "enter\n");
2649 mutex_lock(&priv->mutex);
2651 if (iwl_is_ready_rf(priv)) {
2652 iwl_scan_cancel_timeout(priv, 100);
2653 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2654 iwlcore_commit_rxon(priv);
2656 if (priv->vif == conf->vif) {
2658 memset(priv->bssid, 0, ETH_ALEN);
2660 mutex_unlock(&priv->mutex);
2662 IWL_DEBUG_MAC80211(priv, "leave\n");
2665 EXPORT_SYMBOL(iwl_mac_remove_interface);
2668 * iwl_mac_config - mac80211 config callback
2670 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2671 * be set inappropriately and the driver currently sets the hardware up to
2672 * use it whenever needed.
2674 int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
2676 struct iwl_priv *priv = hw->priv;
2677 const struct iwl_channel_info *ch_info;
2678 struct ieee80211_conf *conf = &hw->conf;
2679 unsigned long flags = 0;
2682 int scan_active = 0;
2684 mutex_lock(&priv->mutex);
2686 IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2687 conf->channel->hw_value, changed);
2689 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
2690 test_bit(STATUS_SCANNING, &priv->status))) {
2692 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
2696 /* during scanning mac80211 will delay channel setting until
2697 * scan finish with changed = 0
2699 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2703 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2704 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2705 if (!is_channel_valid(ch_info)) {
2706 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2711 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2712 !is_channel_ibss(ch_info)) {
2713 IWL_ERR(priv, "channel %d in band %d not "
2715 conf->channel->hw_value, conf->channel->band);
2720 priv->current_ht_config.is_ht = conf_is_ht(conf);
2722 spin_lock_irqsave(&priv->lock, flags);
2725 /* if we are switching from ht to 2.4 clear flags
2726 * from any ht related info since 2.4 does not
2728 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2729 priv->staging_rxon.flags = 0;
2731 iwl_set_rxon_channel(priv, conf->channel);
2733 iwl_set_flags_for_band(priv, conf->channel->band);
2734 spin_unlock_irqrestore(&priv->lock, flags);
2736 /* The list of supported rates and rate mask can be different
2737 * for each band; since the band may have changed, reset
2738 * the rate mask to what mac80211 lists */
2742 if (changed & IEEE80211_CONF_CHANGE_PS &&
2743 priv->iw_mode == NL80211_IFTYPE_STATION) {
2744 priv->power_data.power_disabled =
2745 !(conf->flags & IEEE80211_CONF_PS);
2746 ret = iwl_power_update_mode(priv, 0);
2748 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2751 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2752 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2753 priv->tx_power_user_lmt, conf->power_level);
2755 iwl_set_tx_power(priv, conf->power_level, false);
2758 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2759 if (priv->cfg->ops->hcmd->set_rxon_chain)
2760 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2762 if (!iwl_is_ready(priv)) {
2763 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2770 if (memcmp(&priv->active_rxon,
2771 &priv->staging_rxon, sizeof(priv->staging_rxon)))
2772 iwlcore_commit_rxon(priv);
2774 IWL_DEBUG_INFO(priv, "Not re-sending same RXON configuration.\n");
2778 IWL_DEBUG_MAC80211(priv, "leave\n");
2779 mutex_unlock(&priv->mutex);
2782 EXPORT_SYMBOL(iwl_mac_config);
2784 int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
2785 struct ieee80211_tx_queue_stats *stats)
2787 struct iwl_priv *priv = hw->priv;
2789 struct iwl_tx_queue *txq;
2790 struct iwl_queue *q;
2791 unsigned long flags;
2793 IWL_DEBUG_MAC80211(priv, "enter\n");
2795 if (!iwl_is_ready_rf(priv)) {
2796 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2800 spin_lock_irqsave(&priv->lock, flags);
2802 for (i = 0; i < AC_NUM; i++) {
2803 txq = &priv->txq[i];
2805 avail = iwl_queue_space(q);
2807 stats[i].len = q->n_window - avail;
2808 stats[i].limit = q->n_window - q->high_mark;
2809 stats[i].count = q->n_window;
2812 spin_unlock_irqrestore(&priv->lock, flags);
2814 IWL_DEBUG_MAC80211(priv, "leave\n");
2818 EXPORT_SYMBOL(iwl_mac_get_tx_stats);
2820 void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
2822 struct iwl_priv *priv = hw->priv;
2823 unsigned long flags;
2825 mutex_lock(&priv->mutex);
2826 IWL_DEBUG_MAC80211(priv, "enter\n");
2828 spin_lock_irqsave(&priv->lock, flags);
2829 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
2830 spin_unlock_irqrestore(&priv->lock, flags);
2832 iwl_reset_qos(priv);
2834 spin_lock_irqsave(&priv->lock, flags);
2836 priv->assoc_capability = 0;
2837 priv->assoc_station_added = 0;
2839 /* new association get rid of ibss beacon skb */
2840 if (priv->ibss_beacon)
2841 dev_kfree_skb(priv->ibss_beacon);
2843 priv->ibss_beacon = NULL;
2845 priv->beacon_int = priv->vif->bss_conf.beacon_int;
2846 priv->timestamp = 0;
2847 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
2848 priv->beacon_int = 0;
2850 spin_unlock_irqrestore(&priv->lock, flags);
2852 if (!iwl_is_ready_rf(priv)) {
2853 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2854 mutex_unlock(&priv->mutex);
2858 /* we are restarting association process
2859 * clear RXON_FILTER_ASSOC_MSK bit
2861 if (priv->iw_mode != NL80211_IFTYPE_AP) {
2862 iwl_scan_cancel_timeout(priv, 100);
2863 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2864 iwlcore_commit_rxon(priv);
2867 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2868 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
2869 mutex_unlock(&priv->mutex);
2875 mutex_unlock(&priv->mutex);
2877 IWL_DEBUG_MAC80211(priv, "leave\n");
2879 EXPORT_SYMBOL(iwl_mac_reset_tsf);
2883 int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2885 struct iwl_priv *priv = pci_get_drvdata(pdev);
2888 * This function is called when system goes into suspend state
2889 * mac80211 will call iwl_mac_stop() from the mac80211 suspend function
2890 * first but since iwl_mac_stop() has no knowledge of who the caller is,
2891 * it will not call apm_ops.stop() to stop the DMA operation.
2892 * Calling apm_ops.stop here to make sure we stop the DMA.
2894 priv->cfg->ops->lib->apm_ops.stop(priv);
2896 pci_save_state(pdev);
2897 pci_disable_device(pdev);
2898 pci_set_power_state(pdev, PCI_D3hot);
2902 EXPORT_SYMBOL(iwl_pci_suspend);
2904 int iwl_pci_resume(struct pci_dev *pdev)
2906 struct iwl_priv *priv = pci_get_drvdata(pdev);
2909 pci_set_power_state(pdev, PCI_D0);
2910 ret = pci_enable_device(pdev);
2913 pci_restore_state(pdev);
2914 iwl_enable_interrupts(priv);
2918 EXPORT_SYMBOL(iwl_pci_resume);
2920 #endif /* CONFIG_PM */