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-rfkill.h"
40 #include "iwl-power.h"
42 #include "iwl-helpers.h"
45 MODULE_DESCRIPTION("iwl core");
46 MODULE_VERSION(IWLWIFI_VERSION);
47 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
48 MODULE_LICENSE("GPL");
50 #define IWL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
51 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \
52 IWL_RATE_SISO_##s##M_PLCP, \
53 IWL_RATE_MIMO2_##s##M_PLCP,\
54 IWL_RATE_MIMO3_##s##M_PLCP,\
55 IWL_RATE_##r##M_IEEE, \
56 IWL_RATE_##ip##M_INDEX, \
57 IWL_RATE_##in##M_INDEX, \
58 IWL_RATE_##rp##M_INDEX, \
59 IWL_RATE_##rn##M_INDEX, \
60 IWL_RATE_##pp##M_INDEX, \
61 IWL_RATE_##np##M_INDEX }
63 static irqreturn_t iwl_isr(int irq, void *data);
67 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
69 * If there isn't a valid next or previous rate then INV is used which
70 * maps to IWL_RATE_INVALID
73 const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
74 IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
75 IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
76 IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
77 IWL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18), /* 11mbps */
78 IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
79 IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
80 IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
81 IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
82 IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
83 IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
84 IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
85 IWL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
86 IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
87 /* FIXME:RS: ^^ should be INV (legacy) */
89 EXPORT_SYMBOL(iwl_rates);
92 * translate ucode response to mac80211 tx status control values
94 void iwl_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
95 struct ieee80211_tx_info *info)
98 struct ieee80211_tx_rate *r = &info->control.rates[0];
100 info->antenna_sel_tx =
101 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
102 if (rate_n_flags & RATE_MCS_HT_MSK)
103 r->flags |= IEEE80211_TX_RC_MCS;
104 if (rate_n_flags & RATE_MCS_GF_MSK)
105 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
106 if (rate_n_flags & RATE_MCS_FAT_MSK)
107 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
108 if (rate_n_flags & RATE_MCS_DUP_MSK)
109 r->flags |= IEEE80211_TX_RC_DUP_DATA;
110 if (rate_n_flags & RATE_MCS_SGI_MSK)
111 r->flags |= IEEE80211_TX_RC_SHORT_GI;
112 rate_index = iwl_hwrate_to_plcp_idx(rate_n_flags);
113 if (info->band == IEEE80211_BAND_5GHZ)
114 rate_index -= IWL_FIRST_OFDM_RATE;
117 EXPORT_SYMBOL(iwl_hwrate_to_tx_control);
119 int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
124 if (rate_n_flags & RATE_MCS_HT_MSK) {
125 idx = (rate_n_flags & 0xff);
127 if (idx >= IWL_RATE_MIMO3_6M_PLCP)
128 idx = idx - IWL_RATE_MIMO3_6M_PLCP;
129 else if (idx >= IWL_RATE_MIMO2_6M_PLCP)
130 idx = idx - IWL_RATE_MIMO2_6M_PLCP;
132 idx += IWL_FIRST_OFDM_RATE;
133 /* skip 9M not supported in ht*/
134 if (idx >= IWL_RATE_9M_INDEX)
136 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
139 /* legacy rate format, search for match in table */
141 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
142 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
148 EXPORT_SYMBOL(iwl_hwrate_to_plcp_idx);
150 u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant)
154 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
155 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
156 if (priv->hw_params.valid_tx_ant & BIT(ind))
162 const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
163 EXPORT_SYMBOL(iwl_bcast_addr);
166 /* This function both allocates and initializes hw and priv. */
167 struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg,
168 struct ieee80211_ops *hw_ops)
170 struct iwl_priv *priv;
172 /* mac80211 allocates memory for this device instance, including
173 * space for this driver's private structure */
174 struct ieee80211_hw *hw =
175 ieee80211_alloc_hw(sizeof(struct iwl_priv), hw_ops);
177 printk(KERN_ERR "%s: Can not allocate network device\n",
188 EXPORT_SYMBOL(iwl_alloc_all);
190 void iwl_hw_detect(struct iwl_priv *priv)
192 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
193 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
194 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
196 EXPORT_SYMBOL(iwl_hw_detect);
198 int iwl_hw_nic_init(struct iwl_priv *priv)
201 struct iwl_rx_queue *rxq = &priv->rxq;
205 spin_lock_irqsave(&priv->lock, flags);
206 priv->cfg->ops->lib->apm_ops.init(priv);
207 iwl_write32(priv, CSR_INT_COALESCING, 512 / 32);
208 spin_unlock_irqrestore(&priv->lock, flags);
210 ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
212 priv->cfg->ops->lib->apm_ops.config(priv);
214 /* Allocate the RX queue, or reset if it is already allocated */
216 ret = iwl_rx_queue_alloc(priv);
218 IWL_ERR(priv, "Unable to initialize Rx queue\n");
222 iwl_rx_queue_reset(priv, rxq);
224 iwl_rx_replenish(priv);
226 iwl_rx_init(priv, rxq);
228 spin_lock_irqsave(&priv->lock, flags);
230 rxq->need_update = 1;
231 iwl_rx_queue_update_write_ptr(priv, rxq);
233 spin_unlock_irqrestore(&priv->lock, flags);
235 /* Allocate and init all Tx and Command queues */
236 ret = iwl_txq_ctx_reset(priv);
240 set_bit(STATUS_INIT, &priv->status);
244 EXPORT_SYMBOL(iwl_hw_nic_init);
249 void iwl_activate_qos(struct iwl_priv *priv, u8 force)
251 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
254 priv->qos_data.def_qos_parm.qos_flags = 0;
256 if (priv->qos_data.qos_cap.q_AP.queue_request &&
257 !priv->qos_data.qos_cap.q_AP.txop_request)
258 priv->qos_data.def_qos_parm.qos_flags |=
259 QOS_PARAM_FLG_TXOP_TYPE_MSK;
260 if (priv->qos_data.qos_active)
261 priv->qos_data.def_qos_parm.qos_flags |=
262 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
264 if (priv->current_ht_config.is_ht)
265 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
267 if (force || iwl_is_associated(priv)) {
268 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
269 priv->qos_data.qos_active,
270 priv->qos_data.def_qos_parm.qos_flags);
272 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
273 sizeof(struct iwl_qosparam_cmd),
274 &priv->qos_data.def_qos_parm, NULL);
277 EXPORT_SYMBOL(iwl_activate_qos);
280 * AC CWmin CW max AIFSN TXOP Limit TXOP Limit
281 * (802.11b) (802.11a/g)
282 * AC_BK 15 1023 7 0 0
283 * AC_BE 15 1023 3 0 0
284 * AC_VI 7 15 2 6.016ms 3.008ms
285 * AC_VO 3 7 2 3.264ms 1.504ms
287 void iwl_reset_qos(struct iwl_priv *priv)
292 bool is_legacy = false;
296 spin_lock_irqsave(&priv->lock, flags);
297 /* QoS always active in AP and ADHOC mode
298 * In STA mode wait for association
300 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
301 priv->iw_mode == NL80211_IFTYPE_AP)
302 priv->qos_data.qos_active = 1;
304 priv->qos_data.qos_active = 0;
306 /* check for legacy mode */
307 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
308 (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
309 (priv->iw_mode == NL80211_IFTYPE_STATION &&
310 (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
315 if (priv->qos_data.qos_active)
319 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
320 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
321 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
322 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
323 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
325 if (priv->qos_data.qos_active) {
328 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
329 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
330 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
331 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
332 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
336 priv->qos_data.def_qos_parm.ac[i].cw_min =
337 cpu_to_le16((cw_min + 1) / 2 - 1);
338 priv->qos_data.def_qos_parm.ac[i].cw_max =
340 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
342 priv->qos_data.def_qos_parm.ac[i].edca_txop =
345 priv->qos_data.def_qos_parm.ac[i].edca_txop =
347 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
351 priv->qos_data.def_qos_parm.ac[i].cw_min =
352 cpu_to_le16((cw_min + 1) / 4 - 1);
353 priv->qos_data.def_qos_parm.ac[i].cw_max =
354 cpu_to_le16((cw_min + 1) / 2 - 1);
355 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
356 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
358 priv->qos_data.def_qos_parm.ac[i].edca_txop =
361 priv->qos_data.def_qos_parm.ac[i].edca_txop =
364 for (i = 1; i < 4; i++) {
365 priv->qos_data.def_qos_parm.ac[i].cw_min =
367 priv->qos_data.def_qos_parm.ac[i].cw_max =
369 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
370 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
371 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
374 IWL_DEBUG_QOS(priv, "set QoS to default \n");
376 spin_unlock_irqrestore(&priv->lock, flags);
378 EXPORT_SYMBOL(iwl_reset_qos);
380 #define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
381 #define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
382 static void iwlcore_init_ht_hw_capab(const struct iwl_priv *priv,
383 struct ieee80211_sta_ht_cap *ht_info,
384 enum ieee80211_band band)
386 u16 max_bit_rate = 0;
387 u8 rx_chains_num = priv->hw_params.rx_chains_num;
388 u8 tx_chains_num = priv->hw_params.tx_chains_num;
391 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
393 ht_info->ht_supported = true;
395 ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
396 ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
397 ht_info->cap |= (IEEE80211_HT_CAP_SM_PS &
398 (WLAN_HT_CAP_SM_PS_DISABLED << 2));
400 max_bit_rate = MAX_BIT_RATE_20_MHZ;
401 if (priv->hw_params.fat_channel & BIT(band)) {
402 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
403 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
404 ht_info->mcs.rx_mask[4] = 0x01;
405 max_bit_rate = MAX_BIT_RATE_40_MHZ;
408 if (priv->cfg->mod_params->amsdu_size_8K)
409 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
411 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
412 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
414 ht_info->mcs.rx_mask[0] = 0xFF;
415 if (rx_chains_num >= 2)
416 ht_info->mcs.rx_mask[1] = 0xFF;
417 if (rx_chains_num >= 3)
418 ht_info->mcs.rx_mask[2] = 0xFF;
420 /* Highest supported Rx data rate */
421 max_bit_rate *= rx_chains_num;
422 WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
423 ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
425 /* Tx MCS capabilities */
426 ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
427 if (tx_chains_num != rx_chains_num) {
428 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
429 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
430 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
434 static void iwlcore_init_hw_rates(struct iwl_priv *priv,
435 struct ieee80211_rate *rates)
439 for (i = 0; i < IWL_RATE_COUNT; i++) {
440 rates[i].bitrate = iwl_rates[i].ieee * 5;
441 rates[i].hw_value = i; /* Rate scaling will work on indexes */
442 rates[i].hw_value_short = i;
444 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
446 * If CCK != 1M then set short preamble rate flag.
449 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
450 0 : IEEE80211_RATE_SHORT_PREAMBLE;
457 * iwlcore_init_geos - Initialize mac80211's geo/channel info based from eeprom
459 int iwlcore_init_geos(struct iwl_priv *priv)
461 struct iwl_channel_info *ch;
462 struct ieee80211_supported_band *sband;
463 struct ieee80211_channel *channels;
464 struct ieee80211_channel *geo_ch;
465 struct ieee80211_rate *rates;
468 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
469 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
470 IWL_DEBUG_INFO(priv, "Geography modes already initialized.\n");
471 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
475 channels = kzalloc(sizeof(struct ieee80211_channel) *
476 priv->channel_count, GFP_KERNEL);
480 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
487 /* 5.2GHz channels start after the 2.4GHz channels */
488 sband = &priv->bands[IEEE80211_BAND_5GHZ];
489 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
491 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
492 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
494 if (priv->cfg->sku & IWL_SKU_N)
495 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
496 IEEE80211_BAND_5GHZ);
498 sband = &priv->bands[IEEE80211_BAND_2GHZ];
499 sband->channels = channels;
501 sband->bitrates = rates;
502 sband->n_bitrates = IWL_RATE_COUNT;
504 if (priv->cfg->sku & IWL_SKU_N)
505 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
506 IEEE80211_BAND_2GHZ);
508 priv->ieee_channels = channels;
509 priv->ieee_rates = rates;
511 for (i = 0; i < priv->channel_count; i++) {
512 ch = &priv->channel_info[i];
514 /* FIXME: might be removed if scan is OK */
515 if (!is_channel_valid(ch))
518 if (is_channel_a_band(ch))
519 sband = &priv->bands[IEEE80211_BAND_5GHZ];
521 sband = &priv->bands[IEEE80211_BAND_2GHZ];
523 geo_ch = &sband->channels[sband->n_channels++];
525 geo_ch->center_freq =
526 ieee80211_channel_to_frequency(ch->channel);
527 geo_ch->max_power = ch->max_power_avg;
528 geo_ch->max_antenna_gain = 0xff;
529 geo_ch->hw_value = ch->channel;
531 if (is_channel_valid(ch)) {
532 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
533 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
535 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
536 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
538 if (ch->flags & EEPROM_CHANNEL_RADAR)
539 geo_ch->flags |= IEEE80211_CHAN_RADAR;
541 geo_ch->flags |= ch->fat_extension_channel;
543 if (ch->max_power_avg > priv->tx_power_channel_lmt)
544 priv->tx_power_channel_lmt = ch->max_power_avg;
546 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
549 /* Save flags for reg domain usage */
550 geo_ch->orig_flags = geo_ch->flags;
552 IWL_DEBUG_INFO(priv, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
553 ch->channel, geo_ch->center_freq,
554 is_channel_a_band(ch) ? "5.2" : "2.4",
555 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
556 "restricted" : "valid",
560 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
561 priv->cfg->sku & IWL_SKU_A) {
562 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
563 "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
564 priv->pci_dev->device,
565 priv->pci_dev->subsystem_device);
566 priv->cfg->sku &= ~IWL_SKU_A;
569 IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
570 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
571 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
573 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
577 EXPORT_SYMBOL(iwlcore_init_geos);
580 * iwlcore_free_geos - undo allocations in iwlcore_init_geos
582 void iwlcore_free_geos(struct iwl_priv *priv)
584 kfree(priv->ieee_channels);
585 kfree(priv->ieee_rates);
586 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
588 EXPORT_SYMBOL(iwlcore_free_geos);
590 static bool is_single_rx_stream(struct iwl_priv *priv)
592 return !priv->current_ht_config.is_ht ||
593 ((priv->current_ht_config.mcs.rx_mask[1] == 0) &&
594 (priv->current_ht_config.mcs.rx_mask[2] == 0));
597 static u8 iwl_is_channel_extension(struct iwl_priv *priv,
598 enum ieee80211_band band,
599 u16 channel, u8 extension_chan_offset)
601 const struct iwl_channel_info *ch_info;
603 ch_info = iwl_get_channel_info(priv, band, channel);
604 if (!is_channel_valid(ch_info))
607 if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
608 return !(ch_info->fat_extension_channel &
609 IEEE80211_CHAN_NO_HT40PLUS);
610 else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
611 return !(ch_info->fat_extension_channel &
612 IEEE80211_CHAN_NO_HT40MINUS);
617 u8 iwl_is_fat_tx_allowed(struct iwl_priv *priv,
618 struct ieee80211_sta_ht_cap *sta_ht_inf)
620 struct iwl_ht_info *iwl_ht_conf = &priv->current_ht_config;
622 if ((!iwl_ht_conf->is_ht) ||
623 (iwl_ht_conf->supported_chan_width != IWL_CHANNEL_WIDTH_40MHZ))
626 /* We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
627 * the bit will not set if it is pure 40MHz case
630 if (!sta_ht_inf->ht_supported)
634 if (iwl_ht_conf->ht_protection & IEEE80211_HT_OP_MODE_PROTECTION_20MHZ)
637 return iwl_is_channel_extension(priv, priv->band,
638 le16_to_cpu(priv->staging_rxon.channel),
639 iwl_ht_conf->extension_chan_offset);
641 EXPORT_SYMBOL(iwl_is_fat_tx_allowed);
643 void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
645 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
648 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
650 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
653 EXPORT_SYMBOL(iwl_set_rxon_hwcrypto);
656 * iwl_check_rxon_cmd - validate RXON structure is valid
658 * NOTE: This is really only useful during development and can eventually
659 * be #ifdef'd out once the driver is stable and folks aren't actively
662 int iwl_check_rxon_cmd(struct iwl_priv *priv)
666 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
668 if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
669 error |= le32_to_cpu(rxon->flags &
670 (RXON_FLG_TGJ_NARROW_BAND_MSK |
671 RXON_FLG_RADAR_DETECT_MSK));
673 IWL_WARN(priv, "check 24G fields %d | %d\n",
676 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
677 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
679 IWL_WARN(priv, "check 52 fields %d | %d\n",
681 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
683 IWL_WARN(priv, "check 52 CCK %d | %d\n",
686 error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
688 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
690 /* make sure basic rates 6Mbps and 1Mbps are supported */
691 error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
692 ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
694 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
696 error |= (le16_to_cpu(rxon->assoc_id) > 2007);
698 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
700 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
701 == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
703 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
706 error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
707 == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
709 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
712 error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
713 RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
715 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
719 IWL_WARN(priv, "Tuning to channel %d\n",
720 le16_to_cpu(rxon->channel));
723 IWL_ERR(priv, "Not a valid iwl_rxon_assoc_cmd field values\n");
728 EXPORT_SYMBOL(iwl_check_rxon_cmd);
731 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
732 * @priv: staging_rxon is compared to active_rxon
734 * If the RXON structure is changing enough to require a new tune,
735 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
736 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
738 int iwl_full_rxon_required(struct iwl_priv *priv)
741 /* These items are only settable from the full RXON command */
742 if (!(iwl_is_associated(priv)) ||
743 compare_ether_addr(priv->staging_rxon.bssid_addr,
744 priv->active_rxon.bssid_addr) ||
745 compare_ether_addr(priv->staging_rxon.node_addr,
746 priv->active_rxon.node_addr) ||
747 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
748 priv->active_rxon.wlap_bssid_addr) ||
749 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
750 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
751 (priv->staging_rxon.air_propagation !=
752 priv->active_rxon.air_propagation) ||
753 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
754 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
755 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
756 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
757 (priv->staging_rxon.ofdm_ht_triple_stream_basic_rates !=
758 priv->active_rxon.ofdm_ht_triple_stream_basic_rates) ||
759 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
762 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
763 * be updated with the RXON_ASSOC command -- however only some
764 * flag transitions are allowed using RXON_ASSOC */
766 /* Check if we are not switching bands */
767 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
768 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
771 /* Check if we are switching association toggle */
772 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
773 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
778 EXPORT_SYMBOL(iwl_full_rxon_required);
780 u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv)
786 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
787 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
789 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
791 /* Find lowest valid rate */
792 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
793 i = iwl_rates[i].next_ieee) {
794 if (rate_mask & (1 << i))
795 return iwl_rates[i].plcp;
798 /* No valid rate was found. Assign the lowest one */
799 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
800 return IWL_RATE_1M_PLCP;
802 return IWL_RATE_6M_PLCP;
804 EXPORT_SYMBOL(iwl_rate_get_lowest_plcp);
806 void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_info *ht_info)
808 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
810 if (!ht_info->is_ht) {
811 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
812 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
813 RXON_FLG_FAT_PROT_MSK |
814 RXON_FLG_HT_PROT_MSK);
818 /* FIXME: if the definition of ht_protection changed, the "translation"
819 * will be needed for rxon->flags
821 rxon->flags |= cpu_to_le32(ht_info->ht_protection << RXON_FLG_HT_OPERATING_MODE_POS);
823 /* Set up channel bandwidth:
824 * 20 MHz only, 20/40 mixed or pure 40 if fat ok */
825 /* clear the HT channel mode before set the mode */
826 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
827 RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
828 if (iwl_is_fat_tx_allowed(priv, NULL)) {
830 if (rxon->flags & RXON_FLG_FAT_PROT_MSK)
831 rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
833 /* Note: control channel is opposite of extension channel */
834 switch (ht_info->extension_chan_offset) {
835 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
836 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
837 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
839 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
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_NONE:
845 /* channel location only valid if in Mixed mode */
846 IWL_ERR(priv, "invalid extension channel offset\n");
851 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
854 if (priv->cfg->ops->hcmd->set_rxon_chain)
855 priv->cfg->ops->hcmd->set_rxon_chain(priv);
857 IWL_DEBUG_ASSOC(priv, "supported HT rate 0x%X 0x%X 0x%X "
858 "rxon flags 0x%X operation mode :0x%X "
859 "extension channel offset 0x%x\n",
860 ht_info->mcs.rx_mask[0],
861 ht_info->mcs.rx_mask[1],
862 ht_info->mcs.rx_mask[2],
863 le32_to_cpu(rxon->flags), ht_info->ht_protection,
864 ht_info->extension_chan_offset);
867 EXPORT_SYMBOL(iwl_set_rxon_ht);
869 #define IWL_NUM_RX_CHAINS_MULTIPLE 3
870 #define IWL_NUM_RX_CHAINS_SINGLE 2
871 #define IWL_NUM_IDLE_CHAINS_DUAL 2
872 #define IWL_NUM_IDLE_CHAINS_SINGLE 1
874 /* Determine how many receiver/antenna chains to use.
875 * More provides better reception via diversity. Fewer saves power.
876 * MIMO (dual stream) requires at least 2, but works better with 3.
877 * This does not determine *which* chains to use, just how many.
879 static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
881 bool is_single = is_single_rx_stream(priv);
882 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
884 /* # of Rx chains to use when expecting MIMO. */
885 if (is_single || (!is_cam && (priv->current_ht_config.sm_ps ==
886 WLAN_HT_CAP_SM_PS_STATIC)))
887 return IWL_NUM_RX_CHAINS_SINGLE;
889 return IWL_NUM_RX_CHAINS_MULTIPLE;
892 static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
895 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
896 /* # Rx chains when idling and maybe trying to save power */
897 switch (priv->current_ht_config.sm_ps) {
898 case WLAN_HT_CAP_SM_PS_STATIC:
899 case WLAN_HT_CAP_SM_PS_DYNAMIC:
900 idle_cnt = (is_cam) ? IWL_NUM_IDLE_CHAINS_DUAL :
901 IWL_NUM_IDLE_CHAINS_SINGLE;
903 case WLAN_HT_CAP_SM_PS_DISABLED:
904 idle_cnt = (is_cam) ? active_cnt : IWL_NUM_IDLE_CHAINS_SINGLE;
906 case WLAN_HT_CAP_SM_PS_INVALID:
908 IWL_ERR(priv, "invalid mimo ps mode %d\n",
909 priv->current_ht_config.sm_ps);
918 static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
921 res = (chain_bitmap & BIT(0)) >> 0;
922 res += (chain_bitmap & BIT(1)) >> 1;
923 res += (chain_bitmap & BIT(2)) >> 2;
924 res += (chain_bitmap & BIT(4)) >> 4;
929 * iwl_is_monitor_mode - Determine if interface in monitor mode
931 * priv->iw_mode is set in add_interface, but add_interface is
932 * never called for monitor mode. The only way mac80211 informs us about
933 * monitor mode is through configuring filters (call to configure_filter).
935 bool iwl_is_monitor_mode(struct iwl_priv *priv)
937 return !!(priv->staging_rxon.filter_flags & RXON_FILTER_PROMISC_MSK);
939 EXPORT_SYMBOL(iwl_is_monitor_mode);
942 * iwl_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
944 * Selects how many and which Rx receivers/antennas/chains to use.
945 * This should not be used for scan command ... it puts data in wrong place.
947 void iwl_set_rxon_chain(struct iwl_priv *priv)
949 bool is_single = is_single_rx_stream(priv);
950 bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
951 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
955 /* Tell uCode which antennas are actually connected.
956 * Before first association, we assume all antennas are connected.
957 * Just after first association, iwl_chain_noise_calibration()
958 * checks which antennas actually *are* connected. */
959 if (priv->chain_noise_data.active_chains)
960 active_chains = priv->chain_noise_data.active_chains;
962 active_chains = priv->hw_params.valid_rx_ant;
964 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
966 /* How many receivers should we use? */
967 active_rx_cnt = iwl_get_active_rx_chain_count(priv);
968 idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
971 /* correct rx chain count according hw settings
972 * and chain noise calibration
974 valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
975 if (valid_rx_cnt < active_rx_cnt)
976 active_rx_cnt = valid_rx_cnt;
978 if (valid_rx_cnt < idle_rx_cnt)
979 idle_rx_cnt = valid_rx_cnt;
981 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
982 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
984 /* copied from 'iwl_bg_request_scan()' */
985 /* Force use of chains B and C (0x6) for Rx for 4965
986 * Avoid A (0x1) because of its off-channel reception on A-band.
987 * MIMO is not used here, but value is required */
988 if (iwl_is_monitor_mode(priv) &&
989 !(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) &&
990 ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) == CSR_HW_REV_TYPE_4965)) {
991 rx_chain = ANT_ABC << RXON_RX_CHAIN_VALID_POS;
992 rx_chain |= ANT_BC << RXON_RX_CHAIN_FORCE_SEL_POS;
993 rx_chain |= ANT_ABC << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
994 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
997 priv->staging_rxon.rx_chain = cpu_to_le16(rx_chain);
999 if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
1000 priv->staging_rxon.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1002 priv->staging_rxon.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1004 IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
1005 priv->staging_rxon.rx_chain,
1006 active_rx_cnt, idle_rx_cnt);
1008 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1009 active_rx_cnt < idle_rx_cnt);
1011 EXPORT_SYMBOL(iwl_set_rxon_chain);
1014 * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON
1015 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
1016 * @channel: Any channel valid for the requested phymode
1018 * In addition to setting the staging RXON, priv->phymode is also set.
1020 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
1021 * in the staging RXON flag structure based on the phymode
1023 int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch)
1025 enum ieee80211_band band = ch->band;
1026 u16 channel = ieee80211_frequency_to_channel(ch->center_freq);
1028 if (!iwl_get_channel_info(priv, band, channel)) {
1029 IWL_DEBUG_INFO(priv, "Could not set channel to %d [%d]\n",
1034 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
1035 (priv->band == band))
1038 priv->staging_rxon.channel = cpu_to_le16(channel);
1039 if (band == IEEE80211_BAND_5GHZ)
1040 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
1042 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1046 IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
1050 EXPORT_SYMBOL(iwl_set_rxon_channel);
1052 void iwl_set_flags_for_band(struct iwl_priv *priv,
1053 enum ieee80211_band band)
1055 if (band == IEEE80211_BAND_5GHZ) {
1056 priv->staging_rxon.flags &=
1057 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1058 | RXON_FLG_CCK_MSK);
1059 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1061 /* Copied from iwl_post_associate() */
1062 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1063 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1065 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1067 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
1068 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1070 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1071 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1072 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
1075 EXPORT_SYMBOL(iwl_set_flags_for_band);
1078 * initialize rxon structure with default values from eeprom
1080 void iwl_connection_init_rx_config(struct iwl_priv *priv, int mode)
1082 const struct iwl_channel_info *ch_info;
1084 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
1087 case NL80211_IFTYPE_AP:
1088 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
1091 case NL80211_IFTYPE_STATION:
1092 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
1093 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1096 case NL80211_IFTYPE_ADHOC:
1097 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1098 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1099 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1100 RXON_FILTER_ACCEPT_GRP_MSK;
1104 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
1109 /* TODO: Figure out when short_preamble would be set and cache from
1111 if (!hw_to_local(priv->hw)->short_preamble)
1112 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1114 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1117 ch_info = iwl_get_channel_info(priv, priv->band,
1118 le16_to_cpu(priv->active_rxon.channel));
1121 ch_info = &priv->channel_info[0];
1124 * in some case A channels are all non IBSS
1125 * in this case force B/G channel
1127 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
1128 !(is_channel_ibss(ch_info)))
1129 ch_info = &priv->channel_info[0];
1131 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
1132 priv->band = ch_info->band;
1134 iwl_set_flags_for_band(priv, priv->band);
1136 priv->staging_rxon.ofdm_basic_rates =
1137 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1138 priv->staging_rxon.cck_basic_rates =
1139 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1141 /* clear both MIX and PURE40 mode flag */
1142 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
1143 RXON_FLG_CHANNEL_MODE_PURE_40);
1144 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1145 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
1146 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
1147 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
1148 priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff;
1150 EXPORT_SYMBOL(iwl_connection_init_rx_config);
1152 static void iwl_set_rate(struct iwl_priv *priv)
1154 const struct ieee80211_supported_band *hw = NULL;
1155 struct ieee80211_rate *rate;
1158 hw = iwl_get_hw_mode(priv, priv->band);
1160 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
1164 priv->active_rate = 0;
1165 priv->active_rate_basic = 0;
1167 for (i = 0; i < hw->n_bitrates; i++) {
1168 rate = &(hw->bitrates[i]);
1169 if (rate->hw_value < IWL_RATE_COUNT)
1170 priv->active_rate |= (1 << rate->hw_value);
1173 IWL_DEBUG_RATE(priv, "Set active_rate = %0x, active_rate_basic = %0x\n",
1174 priv->active_rate, priv->active_rate_basic);
1177 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
1178 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
1181 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
1182 priv->staging_rxon.cck_basic_rates =
1183 ((priv->active_rate_basic &
1184 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
1186 priv->staging_rxon.cck_basic_rates =
1187 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1189 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
1190 priv->staging_rxon.ofdm_basic_rates =
1191 ((priv->active_rate_basic &
1192 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
1193 IWL_FIRST_OFDM_RATE) & 0xFF;
1195 priv->staging_rxon.ofdm_basic_rates =
1196 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1199 void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1201 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1202 struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
1203 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
1204 IWL_DEBUG_11H(priv, "CSA notif: channel %d, status %d\n",
1205 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1206 rxon->channel = csa->channel;
1207 priv->staging_rxon.channel = csa->channel;
1209 EXPORT_SYMBOL(iwl_rx_csa);
1211 #ifdef CONFIG_IWLWIFI_DEBUG
1212 static void iwl_print_rx_config_cmd(struct iwl_priv *priv)
1214 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
1216 IWL_DEBUG_RADIO(priv, "RX CONFIG:\n");
1217 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
1218 IWL_DEBUG_RADIO(priv, "u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
1219 IWL_DEBUG_RADIO(priv, "u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
1220 IWL_DEBUG_RADIO(priv, "u32 filter_flags: 0x%08x\n",
1221 le32_to_cpu(rxon->filter_flags));
1222 IWL_DEBUG_RADIO(priv, "u8 dev_type: 0x%x\n", rxon->dev_type);
1223 IWL_DEBUG_RADIO(priv, "u8 ofdm_basic_rates: 0x%02x\n",
1224 rxon->ofdm_basic_rates);
1225 IWL_DEBUG_RADIO(priv, "u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
1226 IWL_DEBUG_RADIO(priv, "u8[6] node_addr: %pM\n", rxon->node_addr);
1227 IWL_DEBUG_RADIO(priv, "u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
1228 IWL_DEBUG_RADIO(priv, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
1233 * iwl_irq_handle_error - called for HW or SW error interrupt from card
1235 void iwl_irq_handle_error(struct iwl_priv *priv)
1237 /* Set the FW error flag -- cleared on iwl_down */
1238 set_bit(STATUS_FW_ERROR, &priv->status);
1240 /* Cancel currently queued command. */
1241 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1243 #ifdef CONFIG_IWLWIFI_DEBUG
1244 if (priv->debug_level & IWL_DL_FW_ERRORS) {
1245 iwl_dump_nic_error_log(priv);
1246 iwl_dump_nic_event_log(priv);
1247 iwl_print_rx_config_cmd(priv);
1251 wake_up_interruptible(&priv->wait_command_queue);
1253 /* Keep the restart process from trying to send host
1254 * commands by clearing the INIT status bit */
1255 clear_bit(STATUS_READY, &priv->status);
1257 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
1258 IWL_DEBUG(priv, IWL_DL_FW_ERRORS,
1259 "Restarting adapter due to uCode error.\n");
1261 if (priv->cfg->mod_params->restart_fw)
1262 queue_work(priv->workqueue, &priv->restart);
1265 EXPORT_SYMBOL(iwl_irq_handle_error);
1267 void iwl_configure_filter(struct ieee80211_hw *hw,
1268 unsigned int changed_flags,
1269 unsigned int *total_flags,
1270 int mc_count, struct dev_addr_list *mc_list)
1272 struct iwl_priv *priv = hw->priv;
1273 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
1275 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
1276 changed_flags, *total_flags);
1278 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
1279 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
1280 *filter_flags |= RXON_FILTER_PROMISC_MSK;
1282 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
1284 if (changed_flags & FIF_ALLMULTI) {
1285 if (*total_flags & FIF_ALLMULTI)
1286 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
1288 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
1290 if (changed_flags & FIF_CONTROL) {
1291 if (*total_flags & FIF_CONTROL)
1292 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
1294 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
1296 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1297 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
1298 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
1300 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
1303 /* We avoid iwl_commit_rxon here to commit the new filter flags
1304 * since mac80211 will call ieee80211_hw_config immediately.
1305 * (mc_list is not supported at this time). Otherwise, we need to
1306 * queue a background iwl_commit_rxon work.
1309 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
1310 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
1312 EXPORT_SYMBOL(iwl_configure_filter);
1314 int iwl_setup_mac(struct iwl_priv *priv)
1317 struct ieee80211_hw *hw = priv->hw;
1318 hw->rate_control_algorithm = "iwl-agn-rs";
1320 /* Tell mac80211 our characteristics */
1321 hw->flags = IEEE80211_HW_SIGNAL_DBM |
1322 IEEE80211_HW_NOISE_DBM |
1323 IEEE80211_HW_AMPDU_AGGREGATION |
1324 IEEE80211_HW_SPECTRUM_MGMT;
1325 hw->wiphy->interface_modes =
1326 BIT(NL80211_IFTYPE_STATION) |
1327 BIT(NL80211_IFTYPE_ADHOC);
1329 hw->wiphy->custom_regulatory = true;
1331 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
1332 /* we create the 802.11 header and a zero-length SSID element */
1333 hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
1335 /* Default value; 4 EDCA QOS priorities */
1338 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
1340 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
1341 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1342 &priv->bands[IEEE80211_BAND_2GHZ];
1343 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
1344 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1345 &priv->bands[IEEE80211_BAND_5GHZ];
1347 ret = ieee80211_register_hw(priv->hw);
1349 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
1352 priv->mac80211_registered = 1;
1356 EXPORT_SYMBOL(iwl_setup_mac);
1358 int iwl_set_hw_params(struct iwl_priv *priv)
1360 priv->hw_params.sw_crypto = priv->cfg->mod_params->sw_crypto;
1361 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
1362 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
1363 if (priv->cfg->mod_params->amsdu_size_8K)
1364 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
1366 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
1367 priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
1369 if (priv->cfg->mod_params->disable_11n)
1370 priv->cfg->sku &= ~IWL_SKU_N;
1372 /* Device-specific setup */
1373 return priv->cfg->ops->lib->set_hw_params(priv);
1375 EXPORT_SYMBOL(iwl_set_hw_params);
1377 int iwl_init_drv(struct iwl_priv *priv)
1381 priv->ibss_beacon = NULL;
1383 spin_lock_init(&priv->lock);
1384 spin_lock_init(&priv->sta_lock);
1385 spin_lock_init(&priv->hcmd_lock);
1387 INIT_LIST_HEAD(&priv->free_frames);
1389 mutex_init(&priv->mutex);
1391 /* Clear the driver's (not device's) station table */
1392 iwl_clear_stations_table(priv);
1394 priv->data_retry_limit = -1;
1395 priv->ieee_channels = NULL;
1396 priv->ieee_rates = NULL;
1397 priv->band = IEEE80211_BAND_2GHZ;
1399 priv->iw_mode = NL80211_IFTYPE_STATION;
1401 priv->current_ht_config.sm_ps = WLAN_HT_CAP_SM_PS_DISABLED;
1403 /* Choose which receivers/antennas to use */
1404 if (priv->cfg->ops->hcmd->set_rxon_chain)
1405 priv->cfg->ops->hcmd->set_rxon_chain(priv);
1407 iwl_init_scan_params(priv);
1409 iwl_reset_qos(priv);
1411 priv->qos_data.qos_active = 0;
1412 priv->qos_data.qos_cap.val = 0;
1414 priv->rates_mask = IWL_RATES_MASK;
1415 /* If power management is turned on, default to CAM mode */
1416 priv->power_mode = IWL_POWER_MODE_CAM;
1417 priv->tx_power_user_lmt = IWL_TX_POWER_TARGET_POWER_MAX;
1419 ret = iwl_init_channel_map(priv);
1421 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
1425 ret = iwlcore_init_geos(priv);
1427 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
1428 goto err_free_channel_map;
1430 iwlcore_init_hw_rates(priv, priv->ieee_rates);
1434 err_free_channel_map:
1435 iwl_free_channel_map(priv);
1439 EXPORT_SYMBOL(iwl_init_drv);
1441 int iwl_set_tx_power(struct iwl_priv *priv, s8 tx_power, bool force)
1444 if (tx_power < IWL_TX_POWER_TARGET_POWER_MIN) {
1445 IWL_WARN(priv, "Requested user TXPOWER %d below lower limit %d.\n",
1447 IWL_TX_POWER_TARGET_POWER_MIN);
1451 if (tx_power > IWL_TX_POWER_TARGET_POWER_MAX) {
1452 IWL_WARN(priv, "Requested user TXPOWER %d above upper limit %d.\n",
1454 IWL_TX_POWER_TARGET_POWER_MAX);
1458 if (priv->tx_power_user_lmt != tx_power)
1461 priv->tx_power_user_lmt = tx_power;
1463 /* if nic is not up don't send command */
1464 if (!iwl_is_ready_rf(priv))
1467 if (force && priv->cfg->ops->lib->send_tx_power)
1468 ret = priv->cfg->ops->lib->send_tx_power(priv);
1472 EXPORT_SYMBOL(iwl_set_tx_power);
1474 void iwl_uninit_drv(struct iwl_priv *priv)
1476 iwl_calib_free_results(priv);
1477 iwlcore_free_geos(priv);
1478 iwl_free_channel_map(priv);
1481 EXPORT_SYMBOL(iwl_uninit_drv);
1484 void iwl_disable_interrupts(struct iwl_priv *priv)
1486 clear_bit(STATUS_INT_ENABLED, &priv->status);
1488 /* disable interrupts from uCode/NIC to host */
1489 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1491 /* acknowledge/clear/reset any interrupts still pending
1492 * from uCode or flow handler (Rx/Tx DMA) */
1493 iwl_write32(priv, CSR_INT, 0xffffffff);
1494 iwl_write32(priv, CSR_FH_INT_STATUS, 0xffffffff);
1495 IWL_DEBUG_ISR(priv, "Disabled interrupts\n");
1497 EXPORT_SYMBOL(iwl_disable_interrupts);
1499 void iwl_enable_interrupts(struct iwl_priv *priv)
1501 IWL_DEBUG_ISR(priv, "Enabling interrupts\n");
1502 set_bit(STATUS_INT_ENABLED, &priv->status);
1503 iwl_write32(priv, CSR_INT_MASK, priv->inta_mask);
1505 EXPORT_SYMBOL(iwl_enable_interrupts);
1508 #define ICT_COUNT (PAGE_SIZE/sizeof(u32))
1510 /* Free dram table */
1511 void iwl_free_isr_ict(struct iwl_priv *priv)
1513 if (priv->ict_tbl_vir) {
1514 pci_free_consistent(priv->pci_dev, (sizeof(u32) * ICT_COUNT) +
1515 PAGE_SIZE, priv->ict_tbl_vir,
1517 priv->ict_tbl_vir = NULL;
1520 EXPORT_SYMBOL(iwl_free_isr_ict);
1523 /* allocate dram shared table it is a PAGE_SIZE aligned
1524 * also reset all data related to ICT table interrupt.
1526 int iwl_alloc_isr_ict(struct iwl_priv *priv)
1529 if (priv->cfg->use_isr_legacy)
1531 /* allocate shrared data table */
1532 priv->ict_tbl_vir = pci_alloc_consistent(priv->pci_dev, (sizeof(u32) *
1533 ICT_COUNT) + PAGE_SIZE,
1534 &priv->ict_tbl_dma);
1535 if (!priv->ict_tbl_vir)
1538 /* align table to PAGE_SIZE boundry */
1539 priv->aligned_ict_tbl_dma = ALIGN(priv->ict_tbl_dma, PAGE_SIZE);
1541 IWL_DEBUG_ISR(priv, "ict dma addr %Lx dma aligned %Lx diff %d\n",
1542 (unsigned long long)priv->ict_tbl_dma,
1543 (unsigned long long)priv->aligned_ict_tbl_dma,
1544 (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1546 priv->ict_tbl = priv->ict_tbl_vir +
1547 (priv->aligned_ict_tbl_dma - priv->ict_tbl_dma);
1549 IWL_DEBUG_ISR(priv, "ict vir addr %p vir aligned %p diff %d\n",
1550 priv->ict_tbl, priv->ict_tbl_vir,
1551 (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1553 /* reset table and index to all 0 */
1554 memset(priv->ict_tbl_vir,0, (sizeof(u32) * ICT_COUNT) + PAGE_SIZE);
1555 priv->ict_index = 0;
1557 /* add periodic RX interrupt */
1558 priv->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
1561 EXPORT_SYMBOL(iwl_alloc_isr_ict);
1563 /* Device is going up inform it about using ICT interrupt table,
1564 * also we need to tell the driver to start using ICT interrupt.
1566 int iwl_reset_ict(struct iwl_priv *priv)
1569 unsigned long flags;
1571 if (!priv->ict_tbl_vir)
1574 spin_lock_irqsave(&priv->lock, flags);
1575 iwl_disable_interrupts(priv);
1577 memset(&priv->ict_tbl[0],0, sizeof(u32) * ICT_COUNT);
1579 val = priv->aligned_ict_tbl_dma >> PAGE_SHIFT;
1581 val |= CSR_DRAM_INT_TBL_ENABLE;
1582 val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1584 IWL_DEBUG_ISR(priv, "CSR_DRAM_INT_TBL_REG =0x%X "
1585 "aligned dma address %Lx\n",
1586 val, (unsigned long long)priv->aligned_ict_tbl_dma);
1588 iwl_write32(priv, CSR_DRAM_INT_TBL_REG, val);
1589 priv->use_ict = true;
1590 priv->ict_index = 0;
1591 iwl_write32(priv, CSR_INT, priv->inta_mask);
1592 iwl_enable_interrupts(priv);
1593 spin_unlock_irqrestore(&priv->lock, flags);
1597 EXPORT_SYMBOL(iwl_reset_ict);
1599 /* Device is going down disable ict interrupt usage */
1600 void iwl_disable_ict(struct iwl_priv *priv)
1602 unsigned long flags;
1604 spin_lock_irqsave(&priv->lock, flags);
1605 priv->use_ict = false;
1606 spin_unlock_irqrestore(&priv->lock, flags);
1608 EXPORT_SYMBOL(iwl_disable_ict);
1610 /* interrupt handler using ict table, with this interrupt driver will
1611 * stop using INTA register to get device's interrupt, reading this register
1612 * is expensive, device will write interrupts in ICT dram table, increment
1613 * index then will fire interrupt to driver, driver will OR all ICT table
1614 * entries from current index up to table entry with 0 value. the result is
1615 * the interrupt we need to service, driver will set the entries back to 0 and
1618 irqreturn_t iwl_isr_ict(int irq, void *data)
1620 struct iwl_priv *priv = data;
1621 u32 inta, inta_mask;
1627 /* dram interrupt table not set yet,
1628 * use legacy interrupt.
1631 return iwl_isr(irq, data);
1633 spin_lock(&priv->lock);
1635 /* Disable (but don't clear!) interrupts here to avoid
1636 * back-to-back ISRs and sporadic interrupts from our NIC.
1637 * If we have something to service, the tasklet will re-enable ints.
1638 * If we *don't* have something, we'll re-enable before leaving here.
1640 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1641 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1644 /* Ignore interrupt if there's nothing in NIC to service.
1645 * This may be due to IRQ shared with another device,
1646 * or due to sporadic interrupts thrown from our NIC. */
1647 if (!priv->ict_tbl[priv->ict_index]) {
1648 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1652 /* read all entries that not 0 start with ict_index */
1653 while (priv->ict_tbl[priv->ict_index]) {
1655 val |= priv->ict_tbl[priv->ict_index];
1656 IWL_DEBUG_ISR(priv, "ICT index %d value 0x%08X\n",
1658 priv->ict_tbl[priv->ict_index]);
1659 priv->ict_tbl[priv->ict_index] = 0;
1660 priv->ict_index = iwl_queue_inc_wrap(priv->ict_index,
1665 /* We should not get this value, just ignore it. */
1666 if (val == 0xffffffff)
1669 inta = (0xff & val) | ((0xff00 & val) << 16);
1670 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
1671 inta, inta_mask, val);
1673 inta &= priv->inta_mask;
1676 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1678 tasklet_schedule(&priv->irq_tasklet);
1679 else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta) {
1680 /* Allow interrupt if was disabled by this handler and
1681 * no tasklet was schedules, We should not enable interrupt,
1682 * tasklet will enable it.
1684 iwl_enable_interrupts(priv);
1687 spin_unlock(&priv->lock);
1691 /* re-enable interrupts here since we don't have anything to service.
1692 * only Re-enable if disabled by irq.
1694 if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1695 iwl_enable_interrupts(priv);
1697 spin_unlock(&priv->lock);
1700 EXPORT_SYMBOL(iwl_isr_ict);
1703 static irqreturn_t iwl_isr(int irq, void *data)
1705 struct iwl_priv *priv = data;
1706 u32 inta, inta_mask;
1707 #ifdef CONFIG_IWLWIFI_DEBUG
1713 spin_lock(&priv->lock);
1715 /* Disable (but don't clear!) interrupts here to avoid
1716 * back-to-back ISRs and sporadic interrupts from our NIC.
1717 * If we have something to service, the tasklet will re-enable ints.
1718 * If we *don't* have something, we'll re-enable before leaving here. */
1719 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1720 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1722 /* Discover which interrupts are active/pending */
1723 inta = iwl_read32(priv, CSR_INT);
1725 /* Ignore interrupt if there's nothing in NIC to service.
1726 * This may be due to IRQ shared with another device,
1727 * or due to sporadic interrupts thrown from our NIC. */
1729 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1733 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1734 /* Hardware disappeared. It might have already raised
1736 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1740 #ifdef CONFIG_IWLWIFI_DEBUG
1741 if (priv->debug_level & (IWL_DL_ISR)) {
1742 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1743 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, "
1744 "fh 0x%08x\n", inta, inta_mask, inta_fh);
1749 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1751 tasklet_schedule(&priv->irq_tasklet);
1752 else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1753 iwl_enable_interrupts(priv);
1756 spin_unlock(&priv->lock);
1760 /* re-enable interrupts here since we don't have anything to service. */
1761 /* only Re-enable if diabled by irq and no schedules tasklet. */
1762 if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1763 iwl_enable_interrupts(priv);
1765 spin_unlock(&priv->lock);
1769 irqreturn_t iwl_isr_legacy(int irq, void *data)
1771 struct iwl_priv *priv = data;
1772 u32 inta, inta_mask;
1777 spin_lock(&priv->lock);
1779 /* Disable (but don't clear!) interrupts here to avoid
1780 * back-to-back ISRs and sporadic interrupts from our NIC.
1781 * If we have something to service, the tasklet will re-enable ints.
1782 * If we *don't* have something, we'll re-enable before leaving here. */
1783 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1784 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1786 /* Discover which interrupts are active/pending */
1787 inta = iwl_read32(priv, CSR_INT);
1788 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1790 /* Ignore interrupt if there's nothing in NIC to service.
1791 * This may be due to IRQ shared with another device,
1792 * or due to sporadic interrupts thrown from our NIC. */
1793 if (!inta && !inta_fh) {
1794 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
1798 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1799 /* Hardware disappeared. It might have already raised
1801 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1805 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1806 inta, inta_mask, inta_fh);
1808 inta &= ~CSR_INT_BIT_SCD;
1810 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1811 if (likely(inta || inta_fh))
1812 tasklet_schedule(&priv->irq_tasklet);
1815 spin_unlock(&priv->lock);
1819 /* re-enable interrupts here since we don't have anything to service. */
1820 /* only Re-enable if diabled by irq */
1821 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1822 iwl_enable_interrupts(priv);
1823 spin_unlock(&priv->lock);
1826 EXPORT_SYMBOL(iwl_isr_legacy);
1828 int iwl_send_bt_config(struct iwl_priv *priv)
1830 struct iwl_bt_cmd bt_cmd = {
1838 return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
1839 sizeof(struct iwl_bt_cmd), &bt_cmd);
1841 EXPORT_SYMBOL(iwl_send_bt_config);
1843 int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags)
1846 struct iwl_host_cmd cmd = {
1847 .id = REPLY_STATISTICS_CMD,
1848 .meta.flags = flags,
1849 .len = sizeof(stat_flags),
1850 .data = (u8 *) &stat_flags,
1852 return iwl_send_cmd(priv, &cmd);
1854 EXPORT_SYMBOL(iwl_send_statistics_request);
1857 * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host,
1858 * using sample data 100 bytes apart. If these sample points are good,
1859 * it's a pretty good bet that everything between them is good, too.
1861 static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
1868 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
1870 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
1871 /* read data comes through single port, auto-incr addr */
1872 /* NOTE: Use the debugless read so we don't flood kernel log
1873 * if IWL_DL_IO is set */
1874 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
1875 i + IWL49_RTC_INST_LOWER_BOUND);
1876 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1877 if (val != le32_to_cpu(*image)) {
1889 * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host,
1890 * looking at all data.
1892 static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image,
1900 IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
1902 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
1903 IWL49_RTC_INST_LOWER_BOUND);
1906 for (; len > 0; len -= sizeof(u32), image++) {
1907 /* read data comes through single port, auto-incr addr */
1908 /* NOTE: Use the debugless read so we don't flood kernel log
1909 * if IWL_DL_IO is set */
1910 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1911 if (val != le32_to_cpu(*image)) {
1912 IWL_ERR(priv, "uCode INST section is invalid at "
1913 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1914 save_len - len, val, le32_to_cpu(*image));
1923 IWL_DEBUG_INFO(priv,
1924 "ucode image in INSTRUCTION memory is good\n");
1930 * iwl_verify_ucode - determine which instruction image is in SRAM,
1931 * and verify its contents
1933 int iwl_verify_ucode(struct iwl_priv *priv)
1940 image = (__le32 *)priv->ucode_boot.v_addr;
1941 len = priv->ucode_boot.len;
1942 ret = iwlcore_verify_inst_sparse(priv, image, len);
1944 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
1948 /* Try initialize */
1949 image = (__le32 *)priv->ucode_init.v_addr;
1950 len = priv->ucode_init.len;
1951 ret = iwlcore_verify_inst_sparse(priv, image, len);
1953 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
1957 /* Try runtime/protocol */
1958 image = (__le32 *)priv->ucode_code.v_addr;
1959 len = priv->ucode_code.len;
1960 ret = iwlcore_verify_inst_sparse(priv, image, len);
1962 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
1966 IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
1968 /* Since nothing seems to match, show first several data entries in
1969 * instruction SRAM, so maybe visual inspection will give a clue.
1970 * Selection of bootstrap image (vs. other images) is arbitrary. */
1971 image = (__le32 *)priv->ucode_boot.v_addr;
1972 len = priv->ucode_boot.len;
1973 ret = iwl_verify_inst_full(priv, image, len);
1977 EXPORT_SYMBOL(iwl_verify_ucode);
1980 static const char *desc_lookup_text[] = {
1985 "NMI_INTERRUPT_WDG",
1989 "HW_ERROR_TUNE_LOCK",
1990 "HW_ERROR_TEMPERATURE",
1991 "ILLEGAL_CHAN_FREQ",
1994 "NMI_INTERRUPT_HOST",
1995 "NMI_INTERRUPT_ACTION_PT",
1996 "NMI_INTERRUPT_UNKNOWN",
1997 "UCODE_VERSION_MISMATCH",
1998 "HW_ERROR_ABS_LOCK",
1999 "HW_ERROR_CAL_LOCK_FAIL",
2000 "NMI_INTERRUPT_INST_ACTION_PT",
2001 "NMI_INTERRUPT_DATA_ACTION_PT",
2003 "NMI_INTERRUPT_TRM",
2004 "NMI_INTERRUPT_BREAK_POINT"
2012 static const char *desc_lookup(int i)
2014 int max = ARRAY_SIZE(desc_lookup_text) - 1;
2016 if (i < 0 || i > max)
2019 return desc_lookup_text[i];
2022 #define ERROR_START_OFFSET (1 * sizeof(u32))
2023 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
2025 void iwl_dump_nic_error_log(struct iwl_priv *priv)
2028 u32 desc, time, count, base, data1;
2029 u32 blink1, blink2, ilink1, ilink2;
2031 if (priv->ucode_type == UCODE_INIT)
2032 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
2034 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
2036 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2037 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
2041 count = iwl_read_targ_mem(priv, base);
2043 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2044 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2045 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2046 priv->status, count);
2049 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
2050 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2051 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2052 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2053 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2054 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2055 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2056 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2057 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
2059 IWL_ERR(priv, "Desc Time "
2060 "data1 data2 line\n");
2061 IWL_ERR(priv, "%-28s (#%02d) %010u 0x%08X 0x%08X %u\n",
2062 desc_lookup(desc), desc, time, data1, data2, line);
2063 IWL_ERR(priv, "blink1 blink2 ilink1 ilink2\n");
2064 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
2068 EXPORT_SYMBOL(iwl_dump_nic_error_log);
2070 #define EVENT_START_OFFSET (4 * sizeof(u32))
2073 * iwl_print_event_log - Dump error event log to syslog
2076 static void iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2077 u32 num_events, u32 mode)
2080 u32 base; /* SRAM byte address of event log header */
2081 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2082 u32 ptr; /* SRAM byte address of log data */
2083 u32 ev, time, data; /* event log data */
2085 if (num_events == 0)
2087 if (priv->ucode_type == UCODE_INIT)
2088 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2090 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2093 event_size = 2 * sizeof(u32);
2095 event_size = 3 * sizeof(u32);
2097 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2099 /* "time" is actually "data" for mode 0 (no timestamp).
2100 * place event id # at far right for easier visual parsing. */
2101 for (i = 0; i < num_events; i++) {
2102 ev = iwl_read_targ_mem(priv, ptr);
2104 time = iwl_read_targ_mem(priv, ptr);
2108 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", time, ev);
2110 data = iwl_read_targ_mem(priv, ptr);
2112 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
2118 void iwl_dump_nic_event_log(struct iwl_priv *priv)
2120 u32 base; /* SRAM byte address of event log header */
2121 u32 capacity; /* event log capacity in # entries */
2122 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2123 u32 num_wraps; /* # times uCode wrapped to top of log */
2124 u32 next_entry; /* index of next entry to be written by uCode */
2125 u32 size; /* # entries that we'll print */
2127 if (priv->ucode_type == UCODE_INIT)
2128 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
2130 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
2132 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
2133 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
2137 /* event log header */
2138 capacity = iwl_read_targ_mem(priv, base);
2139 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2140 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2141 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2143 size = num_wraps ? capacity : next_entry;
2145 /* bail out if nothing in log */
2147 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
2151 IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
2154 /* if uCode has wrapped back to top of log, start at the oldest entry,
2155 * i.e the next one that uCode would fill. */
2157 iwl_print_event_log(priv, next_entry,
2158 capacity - next_entry, mode);
2159 /* (then/else) start at top of log */
2160 iwl_print_event_log(priv, 0, next_entry, mode);
2163 EXPORT_SYMBOL(iwl_dump_nic_event_log);
2165 void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2167 struct iwl_ct_kill_config cmd;
2168 unsigned long flags;
2171 spin_lock_irqsave(&priv->lock, flags);
2172 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2173 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2174 spin_unlock_irqrestore(&priv->lock, flags);
2176 cmd.critical_temperature_R =
2177 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2179 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2182 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2184 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD succeeded, "
2185 "critical temperature is %d\n",
2186 cmd.critical_temperature_R);
2188 EXPORT_SYMBOL(iwl_rf_kill_ct_config);
2194 * Use: Sets the device's internal card state to enable, disable, or halt
2196 * When in the 'enable' state the card operates as normal.
2197 * When in the 'disable' state, the card enters into a low power mode.
2198 * When in the 'halt' state, the card is shut down and must be fully
2199 * restarted to come back on.
2201 int iwl_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
2203 struct iwl_host_cmd cmd = {
2204 .id = REPLY_CARD_STATE_CMD,
2207 .meta.flags = meta_flag,
2210 return iwl_send_cmd(priv, &cmd);
2212 EXPORT_SYMBOL(iwl_send_card_state);
2214 void iwl_radio_kill_sw_disable_radio(struct iwl_priv *priv)
2216 unsigned long flags;
2218 if (test_bit(STATUS_RF_KILL_SW, &priv->status))
2221 IWL_DEBUG_RF_KILL(priv, "Manual SW RF KILL set to: RADIO OFF\n");
2223 iwl_scan_cancel(priv);
2224 /* FIXME: This is a workaround for AP */
2225 if (priv->iw_mode != NL80211_IFTYPE_AP) {
2226 spin_lock_irqsave(&priv->lock, flags);
2227 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
2228 CSR_UCODE_SW_BIT_RFKILL);
2229 spin_unlock_irqrestore(&priv->lock, flags);
2230 /* call the host command only if no hw rf-kill set */
2231 if (!test_bit(STATUS_RF_KILL_HW, &priv->status) &&
2233 iwl_send_card_state(priv,
2234 CARD_STATE_CMD_DISABLE, 0);
2235 set_bit(STATUS_RF_KILL_SW, &priv->status);
2236 /* make sure mac80211 stop sending Tx frame */
2237 if (priv->mac80211_registered)
2238 ieee80211_stop_queues(priv->hw);
2241 EXPORT_SYMBOL(iwl_radio_kill_sw_disable_radio);
2243 int iwl_radio_kill_sw_enable_radio(struct iwl_priv *priv)
2245 unsigned long flags;
2247 if (!test_bit(STATUS_RF_KILL_SW, &priv->status))
2250 IWL_DEBUG_RF_KILL(priv, "Manual SW RF KILL set to: RADIO ON\n");
2252 spin_lock_irqsave(&priv->lock, flags);
2253 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2255 /* If the driver is up it will receive CARD_STATE_NOTIFICATION
2256 * notification where it will clear SW rfkill status.
2257 * Setting it here would break the handler. Only if the
2258 * interface is down we can set here since we don't
2259 * receive any further notification.
2262 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2263 spin_unlock_irqrestore(&priv->lock, flags);
2268 iwl_read32(priv, CSR_UCODE_DRV_GP1);
2269 spin_lock_irqsave(&priv->reg_lock, flags);
2270 if (!iwl_grab_nic_access(priv))
2271 iwl_release_nic_access(priv);
2272 spin_unlock_irqrestore(&priv->reg_lock, flags);
2274 if (test_bit(STATUS_RF_KILL_HW, &priv->status)) {
2275 IWL_DEBUG_RF_KILL(priv, "Can not turn radio back on - "
2276 "disabled by HW switch\n");
2280 /* when driver is up while rfkill is on, it wont receive
2281 * any CARD_STATE_NOTIFICATION notifications so we have to
2282 * restart it in here
2284 if (priv->is_open && !test_bit(STATUS_ALIVE, &priv->status)) {
2285 clear_bit(STATUS_RF_KILL_SW, &priv->status);
2286 if (!iwl_is_rfkill(priv))
2287 queue_work(priv->workqueue, &priv->up);
2290 /* If the driver is already loaded, it will receive
2291 * CARD_STATE_NOTIFICATION notifications and the handler will
2292 * call restart to reload the driver.
2296 EXPORT_SYMBOL(iwl_radio_kill_sw_enable_radio);
2298 void iwl_bg_rf_kill(struct work_struct *work)
2300 struct iwl_priv *priv = container_of(work, struct iwl_priv, rf_kill);
2302 wake_up_interruptible(&priv->wait_command_queue);
2304 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2307 mutex_lock(&priv->mutex);
2309 if (!iwl_is_rfkill(priv)) {
2310 IWL_DEBUG_RF_KILL(priv,
2311 "HW and/or SW RF Kill no longer active, restarting "
2313 if (!test_bit(STATUS_EXIT_PENDING, &priv->status) &&
2315 queue_work(priv->workqueue, &priv->restart);
2317 /* make sure mac80211 stop sending Tx frame */
2318 if (priv->mac80211_registered)
2319 ieee80211_stop_queues(priv->hw);
2321 if (!test_bit(STATUS_RF_KILL_HW, &priv->status))
2322 IWL_DEBUG_RF_KILL(priv, "Can not turn radio back on - "
2323 "disabled by SW switch\n");
2325 IWL_WARN(priv, "Radio Frequency Kill Switch is On:\n"
2326 "Kill switch must be turned off for "
2327 "wireless networking to work.\n");
2329 mutex_unlock(&priv->mutex);
2330 iwl_rfkill_set_hw_state(priv);
2332 EXPORT_SYMBOL(iwl_bg_rf_kill);
2334 void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
2335 struct iwl_rx_mem_buffer *rxb)
2337 #ifdef CONFIG_IWLWIFI_DEBUG
2338 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2339 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
2340 IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
2341 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2344 EXPORT_SYMBOL(iwl_rx_pm_sleep_notif);
2346 void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
2347 struct iwl_rx_mem_buffer *rxb)
2349 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2350 IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
2351 "notification for %s:\n",
2352 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
2353 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
2355 EXPORT_SYMBOL(iwl_rx_pm_debug_statistics_notif);
2357 void iwl_rx_reply_error(struct iwl_priv *priv,
2358 struct iwl_rx_mem_buffer *rxb)
2360 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2362 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
2363 "seq 0x%04X ser 0x%08X\n",
2364 le32_to_cpu(pkt->u.err_resp.error_type),
2365 get_cmd_string(pkt->u.err_resp.cmd_id),
2366 pkt->u.err_resp.cmd_id,
2367 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2368 le32_to_cpu(pkt->u.err_resp.error_info));
2370 EXPORT_SYMBOL(iwl_rx_reply_error);
2372 void iwl_clear_isr_stats(struct iwl_priv *priv)
2374 memset(&priv->isr_stats, 0, sizeof(priv->isr_stats));
2376 EXPORT_SYMBOL(iwl_clear_isr_stats);
2378 int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
2379 const struct ieee80211_tx_queue_params *params)
2381 struct iwl_priv *priv = hw->priv;
2382 unsigned long flags;
2385 IWL_DEBUG_MAC80211(priv, "enter\n");
2387 if (!iwl_is_ready_rf(priv)) {
2388 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2392 if (queue >= AC_NUM) {
2393 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
2397 q = AC_NUM - 1 - queue;
2399 spin_lock_irqsave(&priv->lock, flags);
2401 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2402 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2403 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2404 priv->qos_data.def_qos_parm.ac[q].edca_txop =
2405 cpu_to_le16((params->txop * 32));
2407 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2408 priv->qos_data.qos_active = 1;
2410 if (priv->iw_mode == NL80211_IFTYPE_AP)
2411 iwl_activate_qos(priv, 1);
2412 else if (priv->assoc_id && iwl_is_associated(priv))
2413 iwl_activate_qos(priv, 0);
2415 spin_unlock_irqrestore(&priv->lock, flags);
2417 IWL_DEBUG_MAC80211(priv, "leave\n");
2420 EXPORT_SYMBOL(iwl_mac_conf_tx);
2422 static void iwl_ht_conf(struct iwl_priv *priv,
2423 struct ieee80211_bss_conf *bss_conf)
2425 struct ieee80211_sta_ht_cap *ht_conf;
2426 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
2427 struct ieee80211_sta *sta;
2429 IWL_DEBUG_MAC80211(priv, "enter: \n");
2431 if (!iwl_conf->is_ht)
2436 * It is totally wrong to base global information on something
2437 * that is valid only when associated, alas, this driver works
2438 * that way and I don't know how to fix it.
2442 sta = ieee80211_find_sta(priv->hw, priv->bssid);
2447 ht_conf = &sta->ht_cap;
2449 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
2450 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
2451 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
2452 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
2454 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
2455 iwl_conf->max_amsdu_size =
2456 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
2458 iwl_conf->supported_chan_width =
2459 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
2462 * XXX: The HT configuration needs to be moved into iwl_mac_config()
2463 * to be done there correctly.
2466 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
2467 if (conf_is_ht40_minus(&priv->hw->conf))
2468 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2469 else if (conf_is_ht40_plus(&priv->hw->conf))
2470 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2472 /* If no above or below channel supplied disable FAT channel */
2473 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
2474 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
2475 iwl_conf->supported_chan_width = 0;
2477 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
2479 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
2481 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
2482 iwl_conf->ht_protection =
2483 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
2484 iwl_conf->non_GF_STA_present =
2485 !!(bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
2489 IWL_DEBUG_MAC80211(priv, "leave\n");
2492 #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
2493 void iwl_bss_info_changed(struct ieee80211_hw *hw,
2494 struct ieee80211_vif *vif,
2495 struct ieee80211_bss_conf *bss_conf,
2498 struct iwl_priv *priv = hw->priv;
2501 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
2503 if (!iwl_is_alive(priv))
2506 mutex_lock(&priv->mutex);
2508 if (changes & BSS_CHANGED_BEACON &&
2509 priv->iw_mode == NL80211_IFTYPE_AP) {
2510 dev_kfree_skb(priv->ibss_beacon);
2511 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
2514 if ((changes & BSS_CHANGED_BSSID) && !iwl_is_rfkill(priv)) {
2515 /* If there is currently a HW scan going on in the background
2516 * then we need to cancel it else the RXON below will fail. */
2517 if (iwl_scan_cancel_timeout(priv, 100)) {
2518 IWL_WARN(priv, "Aborted scan still in progress "
2520 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
2521 mutex_unlock(&priv->mutex);
2524 memcpy(priv->staging_rxon.bssid_addr,
2525 bss_conf->bssid, ETH_ALEN);
2527 /* TODO: Audit driver for usage of these members and see
2528 * if mac80211 deprecates them (priv->bssid looks like it
2529 * shouldn't be there, but I haven't scanned the IBSS code
2530 * to verify) - jpk */
2531 memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN);
2533 if (priv->iw_mode == NL80211_IFTYPE_AP)
2534 iwlcore_config_ap(priv);
2536 int rc = iwlcore_commit_rxon(priv);
2537 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
2538 iwl_rxon_add_station(
2539 priv, priv->active_rxon.bssid_addr, 1);
2541 } else if (!iwl_is_rfkill(priv)) {
2542 iwl_scan_cancel_timeout(priv, 100);
2543 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2544 iwlcore_commit_rxon(priv);
2547 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2548 changes & BSS_CHANGED_BEACON) {
2549 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2552 iwl_mac_beacon_update(hw, beacon);
2555 mutex_unlock(&priv->mutex);
2557 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
2558 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
2559 bss_conf->use_short_preamble);
2560 if (bss_conf->use_short_preamble)
2561 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2563 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2566 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
2567 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
2568 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
2569 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2571 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2574 if (changes & BSS_CHANGED_HT) {
2575 iwl_ht_conf(priv, bss_conf);
2577 if (priv->cfg->ops->hcmd->set_rxon_chain)
2578 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2581 if (changes & BSS_CHANGED_ASSOC) {
2582 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
2583 /* This should never happen as this function should
2584 * never be called from interrupt context. */
2585 if (WARN_ON_ONCE(in_interrupt()))
2587 if (bss_conf->assoc) {
2588 priv->assoc_id = bss_conf->aid;
2589 priv->beacon_int = bss_conf->beacon_int;
2590 priv->power_data.dtim_period = bss_conf->dtim_period;
2591 priv->timestamp = bss_conf->timestamp;
2592 priv->assoc_capability = bss_conf->assoc_capability;
2594 /* we have just associated, don't start scan too early
2595 * leave time for EAPOL exchange to complete
2597 priv->next_scan_jiffies = jiffies +
2598 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
2599 mutex_lock(&priv->mutex);
2600 priv->cfg->ops->lib->post_associate(priv);
2601 mutex_unlock(&priv->mutex);
2604 IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
2606 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
2607 IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
2608 ret = iwl_send_rxon_assoc(priv);
2610 /* Sync active_rxon with latest change. */
2611 memcpy((void *)&priv->active_rxon,
2612 &priv->staging_rxon,
2613 sizeof(struct iwl_rxon_cmd));
2615 IWL_DEBUG_MAC80211(priv, "leave\n");
2617 EXPORT_SYMBOL(iwl_bss_info_changed);
2619 int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
2621 struct iwl_priv *priv = hw->priv;
2622 unsigned long flags;
2625 IWL_DEBUG_MAC80211(priv, "enter\n");
2627 if (!iwl_is_ready_rf(priv)) {
2628 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2632 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2633 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
2637 spin_lock_irqsave(&priv->lock, flags);
2639 if (priv->ibss_beacon)
2640 dev_kfree_skb(priv->ibss_beacon);
2642 priv->ibss_beacon = skb;
2645 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
2646 priv->timestamp = le64_to_cpu(timestamp);
2648 IWL_DEBUG_MAC80211(priv, "leave\n");
2649 spin_unlock_irqrestore(&priv->lock, flags);
2651 iwl_reset_qos(priv);
2653 priv->cfg->ops->lib->post_associate(priv);
2658 EXPORT_SYMBOL(iwl_mac_beacon_update);
2660 int iwl_set_mode(struct iwl_priv *priv, int mode)
2662 if (mode == NL80211_IFTYPE_ADHOC) {
2663 const struct iwl_channel_info *ch_info;
2665 ch_info = iwl_get_channel_info(priv,
2667 le16_to_cpu(priv->staging_rxon.channel));
2669 if (!ch_info || !is_channel_ibss(ch_info)) {
2670 IWL_ERR(priv, "channel %d not IBSS channel\n",
2671 le16_to_cpu(priv->staging_rxon.channel));
2676 iwl_connection_init_rx_config(priv, mode);
2678 if (priv->cfg->ops->hcmd->set_rxon_chain)
2679 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2681 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2683 iwl_clear_stations_table(priv);
2685 /* dont commit rxon if rf-kill is on*/
2686 if (!iwl_is_ready_rf(priv))
2689 iwlcore_commit_rxon(priv);
2693 EXPORT_SYMBOL(iwl_set_mode);
2695 int iwl_mac_add_interface(struct ieee80211_hw *hw,
2696 struct ieee80211_if_init_conf *conf)
2698 struct iwl_priv *priv = hw->priv;
2699 unsigned long flags;
2701 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
2704 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
2708 spin_lock_irqsave(&priv->lock, flags);
2709 priv->vif = conf->vif;
2710 priv->iw_mode = conf->type;
2712 spin_unlock_irqrestore(&priv->lock, flags);
2714 mutex_lock(&priv->mutex);
2716 if (conf->mac_addr) {
2717 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
2718 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2721 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
2722 /* we are not ready, will run again when ready */
2723 set_bit(STATUS_MODE_PENDING, &priv->status);
2725 mutex_unlock(&priv->mutex);
2727 IWL_DEBUG_MAC80211(priv, "leave\n");
2730 EXPORT_SYMBOL(iwl_mac_add_interface);
2732 void iwl_mac_remove_interface(struct ieee80211_hw *hw,
2733 struct ieee80211_if_init_conf *conf)
2735 struct iwl_priv *priv = hw->priv;
2737 IWL_DEBUG_MAC80211(priv, "enter\n");
2739 mutex_lock(&priv->mutex);
2741 if (iwl_is_ready_rf(priv)) {
2742 iwl_scan_cancel_timeout(priv, 100);
2743 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2744 iwlcore_commit_rxon(priv);
2746 if (priv->vif == conf->vif) {
2748 memset(priv->bssid, 0, ETH_ALEN);
2750 mutex_unlock(&priv->mutex);
2752 IWL_DEBUG_MAC80211(priv, "leave\n");
2755 EXPORT_SYMBOL(iwl_mac_remove_interface);
2758 * iwl_mac_config - mac80211 config callback
2760 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2761 * be set inappropriately and the driver currently sets the hardware up to
2762 * use it whenever needed.
2764 int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
2766 struct iwl_priv *priv = hw->priv;
2767 const struct iwl_channel_info *ch_info;
2768 struct ieee80211_conf *conf = &hw->conf;
2769 unsigned long flags = 0;
2772 int scan_active = 0;
2774 mutex_lock(&priv->mutex);
2776 IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2777 conf->channel->hw_value, changed);
2779 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
2780 test_bit(STATUS_SCANNING, &priv->status))) {
2782 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
2786 /* during scanning mac80211 will delay channel setting until
2787 * scan finish with changed = 0
2789 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2793 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2794 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2795 if (!is_channel_valid(ch_info)) {
2796 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2801 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2802 !is_channel_ibss(ch_info)) {
2803 IWL_ERR(priv, "channel %d in band %d not "
2805 conf->channel->hw_value, conf->channel->band);
2810 priv->current_ht_config.is_ht = conf_is_ht(conf);
2812 spin_lock_irqsave(&priv->lock, flags);
2815 /* if we are switching from ht to 2.4 clear flags
2816 * from any ht related info since 2.4 does not
2818 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2819 priv->staging_rxon.flags = 0;
2821 iwl_set_rxon_channel(priv, conf->channel);
2823 iwl_set_flags_for_band(priv, conf->channel->band);
2824 spin_unlock_irqrestore(&priv->lock, flags);
2826 /* The list of supported rates and rate mask can be different
2827 * for each band; since the band may have changed, reset
2828 * the rate mask to what mac80211 lists */
2832 if (changed & IEEE80211_CONF_CHANGE_PS &&
2833 priv->iw_mode == NL80211_IFTYPE_STATION) {
2834 priv->power_data.power_disabled =
2835 !(conf->flags & IEEE80211_CONF_PS);
2836 ret = iwl_power_update_mode(priv, 0);
2838 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2841 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2842 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2843 priv->tx_power_user_lmt, conf->power_level);
2845 iwl_set_tx_power(priv, conf->power_level, false);
2848 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2849 if (priv->cfg->ops->hcmd->set_rxon_chain)
2850 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2852 if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
2853 if (conf->radio_enabled &&
2854 iwl_radio_kill_sw_enable_radio(priv)) {
2855 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - "
2856 "waiting for uCode\n");
2860 if (!conf->radio_enabled)
2861 iwl_radio_kill_sw_disable_radio(priv);
2864 if (!conf->radio_enabled) {
2865 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
2869 if (!iwl_is_ready(priv)) {
2870 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2877 if (memcmp(&priv->active_rxon,
2878 &priv->staging_rxon, sizeof(priv->staging_rxon)))
2879 iwlcore_commit_rxon(priv);
2881 IWL_DEBUG_INFO(priv, "Not re-sending same RXON configuration.\n");
2885 IWL_DEBUG_MAC80211(priv, "leave\n");
2886 mutex_unlock(&priv->mutex);
2889 EXPORT_SYMBOL(iwl_mac_config);
2891 int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
2892 struct ieee80211_tx_queue_stats *stats)
2894 struct iwl_priv *priv = hw->priv;
2896 struct iwl_tx_queue *txq;
2897 struct iwl_queue *q;
2898 unsigned long flags;
2900 IWL_DEBUG_MAC80211(priv, "enter\n");
2902 if (!iwl_is_ready_rf(priv)) {
2903 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2907 spin_lock_irqsave(&priv->lock, flags);
2909 for (i = 0; i < AC_NUM; i++) {
2910 txq = &priv->txq[i];
2912 avail = iwl_queue_space(q);
2914 stats[i].len = q->n_window - avail;
2915 stats[i].limit = q->n_window - q->high_mark;
2916 stats[i].count = q->n_window;
2919 spin_unlock_irqrestore(&priv->lock, flags);
2921 IWL_DEBUG_MAC80211(priv, "leave\n");
2925 EXPORT_SYMBOL(iwl_mac_get_tx_stats);
2927 void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
2929 struct iwl_priv *priv = hw->priv;
2930 unsigned long flags;
2932 mutex_lock(&priv->mutex);
2933 IWL_DEBUG_MAC80211(priv, "enter\n");
2935 spin_lock_irqsave(&priv->lock, flags);
2936 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
2937 spin_unlock_irqrestore(&priv->lock, flags);
2939 iwl_reset_qos(priv);
2941 spin_lock_irqsave(&priv->lock, flags);
2943 priv->assoc_capability = 0;
2944 priv->assoc_station_added = 0;
2946 /* new association get rid of ibss beacon skb */
2947 if (priv->ibss_beacon)
2948 dev_kfree_skb(priv->ibss_beacon);
2950 priv->ibss_beacon = NULL;
2952 priv->beacon_int = priv->vif->bss_conf.beacon_int;
2953 priv->timestamp = 0;
2954 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
2955 priv->beacon_int = 0;
2957 spin_unlock_irqrestore(&priv->lock, flags);
2959 if (!iwl_is_ready_rf(priv)) {
2960 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2961 mutex_unlock(&priv->mutex);
2965 /* we are restarting association process
2966 * clear RXON_FILTER_ASSOC_MSK bit
2968 if (priv->iw_mode != NL80211_IFTYPE_AP) {
2969 iwl_scan_cancel_timeout(priv, 100);
2970 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2971 iwlcore_commit_rxon(priv);
2974 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2975 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
2976 mutex_unlock(&priv->mutex);
2982 mutex_unlock(&priv->mutex);
2984 IWL_DEBUG_MAC80211(priv, "leave\n");
2986 EXPORT_SYMBOL(iwl_mac_reset_tsf);
2990 int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
2992 struct iwl_priv *priv = pci_get_drvdata(pdev);
2995 * This function is called when system goes into suspend state
2996 * mac80211 will call iwl_mac_stop() from the mac80211 suspend function
2997 * first but since iwl_mac_stop() has no knowledge of who the caller is,
2998 * it will not call apm_ops.stop() to stop the DMA operation.
2999 * Calling apm_ops.stop here to make sure we stop the DMA.
3001 priv->cfg->ops->lib->apm_ops.stop(priv);
3003 pci_save_state(pdev);
3004 pci_disable_device(pdev);
3005 pci_set_power_state(pdev, PCI_D3hot);
3009 EXPORT_SYMBOL(iwl_pci_suspend);
3011 int iwl_pci_resume(struct pci_dev *pdev)
3013 struct iwl_priv *priv = pci_get_drvdata(pdev);
3016 pci_set_power_state(pdev, PCI_D0);
3017 ret = pci_enable_device(pdev);
3020 pci_restore_state(pdev);
3021 iwl_enable_interrupts(priv);
3025 EXPORT_SYMBOL(iwl_pci_resume);
3027 #endif /* CONFIG_PM */