1 /******************************************************************************
5 * Copyright(c) 2008 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 * Tomas Winkler <tomas.winkler@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/version.h>
32 #include <net/mac80211.h>
34 struct iwl_priv; /* FIXME: remove */
35 #include "iwl-debug.h"
36 #include "iwl-eeprom.h"
37 #include "iwl-dev.h" /* FIXME: remove */
40 #include "iwl-rfkill.h"
41 #include "iwl-power.h"
44 MODULE_DESCRIPTION("iwl core");
45 MODULE_VERSION(IWLWIFI_VERSION);
46 MODULE_AUTHOR(DRV_COPYRIGHT);
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 }
64 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
66 * If there isn't a valid next or previous rate then INV is used which
67 * maps to IWL_RATE_INVALID
70 const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
71 IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
72 IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
73 IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
74 IWL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18), /* 11mbps */
75 IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
76 IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
77 IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
78 IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
79 IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
80 IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
81 IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
82 IWL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
83 IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
84 /* FIXME:RS: ^^ should be INV (legacy) */
86 EXPORT_SYMBOL(iwl_rates);
89 const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
90 EXPORT_SYMBOL(iwl_bcast_addr);
93 /* This function both allocates and initializes hw and priv. */
94 struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg,
95 struct ieee80211_ops *hw_ops)
97 struct iwl_priv *priv;
99 /* mac80211 allocates memory for this device instance, including
100 * space for this driver's private structure */
101 struct ieee80211_hw *hw =
102 ieee80211_alloc_hw(sizeof(struct iwl_priv), hw_ops);
104 IWL_ERROR("Can not allocate network device\n");
114 EXPORT_SYMBOL(iwl_alloc_all);
116 void iwl_hw_detect(struct iwl_priv *priv)
118 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
119 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
120 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
122 EXPORT_SYMBOL(iwl_hw_detect);
124 /* Tell nic where to find the "keep warm" buffer */
125 int iwl_kw_init(struct iwl_priv *priv)
130 spin_lock_irqsave(&priv->lock, flags);
131 ret = iwl_grab_nic_access(priv);
135 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG,
136 priv->kw.dma_addr >> 4);
137 iwl_release_nic_access(priv);
139 spin_unlock_irqrestore(&priv->lock, flags);
143 int iwl_kw_alloc(struct iwl_priv *priv)
145 struct pci_dev *dev = priv->pci_dev;
146 struct iwl_kw *kw = &priv->kw;
148 kw->size = IWL_KW_SIZE;
149 kw->v_addr = pci_alloc_consistent(dev, kw->size, &kw->dma_addr);
157 * iwl_kw_free - Free the "keep warm" buffer
159 void iwl_kw_free(struct iwl_priv *priv)
161 struct pci_dev *dev = priv->pci_dev;
162 struct iwl_kw *kw = &priv->kw;
165 pci_free_consistent(dev, kw->size, kw->v_addr, kw->dma_addr);
166 memset(kw, 0, sizeof(*kw));
170 int iwl_hw_nic_init(struct iwl_priv *priv)
173 struct iwl_rx_queue *rxq = &priv->rxq;
177 spin_lock_irqsave(&priv->lock, flags);
178 priv->cfg->ops->lib->apm_ops.init(priv);
179 iwl_write32(priv, CSR_INT_COALESCING, 512 / 32);
180 spin_unlock_irqrestore(&priv->lock, flags);
182 ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
184 priv->cfg->ops->lib->apm_ops.config(priv);
186 /* Allocate the RX queue, or reset if it is already allocated */
188 ret = iwl_rx_queue_alloc(priv);
190 IWL_ERROR("Unable to initialize Rx queue\n");
194 iwl_rx_queue_reset(priv, rxq);
196 iwl_rx_replenish(priv);
198 iwl_rx_init(priv, rxq);
200 spin_lock_irqsave(&priv->lock, flags);
202 rxq->need_update = 1;
203 iwl_rx_queue_update_write_ptr(priv, rxq);
205 spin_unlock_irqrestore(&priv->lock, flags);
207 /* Allocate and init all Tx and Command queues */
208 ret = iwl_txq_ctx_reset(priv);
212 set_bit(STATUS_INIT, &priv->status);
216 EXPORT_SYMBOL(iwl_hw_nic_init);
219 * iwlcore_clear_stations_table - Clear the driver's station table
221 * NOTE: This does not clear or otherwise alter the device's station table.
223 void iwlcore_clear_stations_table(struct iwl_priv *priv)
227 spin_lock_irqsave(&priv->sta_lock, flags);
229 priv->num_stations = 0;
230 memset(priv->stations, 0, sizeof(priv->stations));
232 spin_unlock_irqrestore(&priv->sta_lock, flags);
234 EXPORT_SYMBOL(iwlcore_clear_stations_table);
236 void iwl_reset_qos(struct iwl_priv *priv)
245 spin_lock_irqsave(&priv->lock, flags);
246 priv->qos_data.qos_active = 0;
248 if (priv->iw_mode == IEEE80211_IF_TYPE_IBSS) {
249 if (priv->qos_data.qos_enable)
250 priv->qos_data.qos_active = 1;
251 if (!(priv->active_rate & 0xfff0)) {
255 } else if (priv->iw_mode == IEEE80211_IF_TYPE_AP) {
256 if (priv->qos_data.qos_enable)
257 priv->qos_data.qos_active = 1;
258 } else if (!(priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK)) {
263 if (priv->qos_data.qos_active)
266 priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
267 priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
268 priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
269 priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
270 priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
272 if (priv->qos_data.qos_active) {
274 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
275 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
276 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
277 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
278 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
281 priv->qos_data.def_qos_parm.ac[i].cw_min =
282 cpu_to_le16((cw_min + 1) / 2 - 1);
283 priv->qos_data.def_qos_parm.ac[i].cw_max =
285 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
287 priv->qos_data.def_qos_parm.ac[i].edca_txop =
290 priv->qos_data.def_qos_parm.ac[i].edca_txop =
292 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
295 priv->qos_data.def_qos_parm.ac[i].cw_min =
296 cpu_to_le16((cw_min + 1) / 4 - 1);
297 priv->qos_data.def_qos_parm.ac[i].cw_max =
298 cpu_to_le16((cw_max + 1) / 2 - 1);
299 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
300 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
302 priv->qos_data.def_qos_parm.ac[i].edca_txop =
305 priv->qos_data.def_qos_parm.ac[i].edca_txop =
308 for (i = 1; i < 4; i++) {
309 priv->qos_data.def_qos_parm.ac[i].cw_min =
311 priv->qos_data.def_qos_parm.ac[i].cw_max =
313 priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
314 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
315 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
318 IWL_DEBUG_QOS("set QoS to default \n");
320 spin_unlock_irqrestore(&priv->lock, flags);
322 EXPORT_SYMBOL(iwl_reset_qos);
324 #ifdef CONFIG_IWL4965_HT
325 #define MAX_BIT_RATE_40_MHZ 0x96; /* 150 Mbps */
326 #define MAX_BIT_RATE_20_MHZ 0x48; /* 72 Mbps */
327 static void iwlcore_init_ht_hw_capab(const struct iwl_priv *priv,
328 struct ieee80211_ht_info *ht_info,
329 enum ieee80211_band band)
331 u16 max_bit_rate = 0;
332 u8 rx_chains_num = priv->hw_params.rx_chains_num;
333 u8 tx_chains_num = priv->hw_params.tx_chains_num;
336 memset(ht_info->supp_mcs_set, 0, 16);
338 ht_info->ht_supported = 1;
340 ht_info->cap |= (u16)IEEE80211_HT_CAP_GRN_FLD;
341 ht_info->cap |= (u16)IEEE80211_HT_CAP_SGI_20;
342 ht_info->cap |= (u16)(IEEE80211_HT_CAP_MIMO_PS &
343 (IWL_MIMO_PS_NONE << 2));
345 max_bit_rate = MAX_BIT_RATE_20_MHZ;
346 if (priv->hw_params.fat_channel & BIT(band)) {
347 ht_info->cap |= (u16)IEEE80211_HT_CAP_SUP_WIDTH;
348 ht_info->cap |= (u16)IEEE80211_HT_CAP_SGI_40;
349 ht_info->supp_mcs_set[4] = 0x01;
350 max_bit_rate = MAX_BIT_RATE_40_MHZ;
353 if (priv->cfg->mod_params->amsdu_size_8K)
354 ht_info->cap |= (u16)IEEE80211_HT_CAP_MAX_AMSDU;
356 ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
357 ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
359 ht_info->supp_mcs_set[0] = 0xFF;
360 if (rx_chains_num >= 2)
361 ht_info->supp_mcs_set[1] = 0xFF;
362 if (rx_chains_num >= 3)
363 ht_info->supp_mcs_set[2] = 0xFF;
365 /* Highest supported Rx data rate */
366 max_bit_rate *= rx_chains_num;
367 ht_info->supp_mcs_set[10] = (u8)(max_bit_rate & 0x00FF);
368 ht_info->supp_mcs_set[11] = (u8)((max_bit_rate & 0xFF00) >> 8);
370 /* Tx MCS capabilities */
371 ht_info->supp_mcs_set[12] = IEEE80211_HT_CAP_MCS_TX_DEFINED;
372 if (tx_chains_num != rx_chains_num) {
373 ht_info->supp_mcs_set[12] |= IEEE80211_HT_CAP_MCS_TX_RX_DIFF;
374 ht_info->supp_mcs_set[12] |= ((tx_chains_num - 1) << 2);
378 static inline void iwlcore_init_ht_hw_capab(const struct iwl_priv *priv,
379 struct ieee80211_ht_info *ht_info,
380 enum ieee80211_band band)
383 #endif /* CONFIG_IWL4965_HT */
385 static void iwlcore_init_hw_rates(struct iwl_priv *priv,
386 struct ieee80211_rate *rates)
390 for (i = 0; i < IWL_RATE_COUNT; i++) {
391 rates[i].bitrate = iwl_rates[i].ieee * 5;
392 rates[i].hw_value = i; /* Rate scaling will work on indexes */
393 rates[i].hw_value_short = i;
395 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
397 * If CCK != 1M then set short preamble rate flag.
400 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
401 0 : IEEE80211_RATE_SHORT_PREAMBLE;
407 * iwlcore_init_geos - Initialize mac80211's geo/channel info based from eeprom
409 static int iwlcore_init_geos(struct iwl_priv *priv)
411 struct iwl_channel_info *ch;
412 struct ieee80211_supported_band *sband;
413 struct ieee80211_channel *channels;
414 struct ieee80211_channel *geo_ch;
415 struct ieee80211_rate *rates;
418 if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
419 priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
420 IWL_DEBUG_INFO("Geography modes already initialized.\n");
421 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
425 channels = kzalloc(sizeof(struct ieee80211_channel) *
426 priv->channel_count, GFP_KERNEL);
430 rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
437 /* 5.2GHz channels start after the 2.4GHz channels */
438 sband = &priv->bands[IEEE80211_BAND_5GHZ];
439 sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
441 sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
442 sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
444 iwlcore_init_ht_hw_capab(priv, &sband->ht_info, IEEE80211_BAND_5GHZ);
446 sband = &priv->bands[IEEE80211_BAND_2GHZ];
447 sband->channels = channels;
449 sband->bitrates = rates;
450 sband->n_bitrates = IWL_RATE_COUNT;
452 iwlcore_init_ht_hw_capab(priv, &sband->ht_info, IEEE80211_BAND_2GHZ);
454 priv->ieee_channels = channels;
455 priv->ieee_rates = rates;
457 iwlcore_init_hw_rates(priv, rates);
459 for (i = 0; i < priv->channel_count; i++) {
460 ch = &priv->channel_info[i];
462 /* FIXME: might be removed if scan is OK */
463 if (!is_channel_valid(ch))
466 if (is_channel_a_band(ch))
467 sband = &priv->bands[IEEE80211_BAND_5GHZ];
469 sband = &priv->bands[IEEE80211_BAND_2GHZ];
471 geo_ch = &sband->channels[sband->n_channels++];
473 geo_ch->center_freq =
474 ieee80211_channel_to_frequency(ch->channel);
475 geo_ch->max_power = ch->max_power_avg;
476 geo_ch->max_antenna_gain = 0xff;
477 geo_ch->hw_value = ch->channel;
479 if (is_channel_valid(ch)) {
480 if (!(ch->flags & EEPROM_CHANNEL_IBSS))
481 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
483 if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
484 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
486 if (ch->flags & EEPROM_CHANNEL_RADAR)
487 geo_ch->flags |= IEEE80211_CHAN_RADAR;
489 if (ch->max_power_avg > priv->max_channel_txpower_limit)
490 priv->max_channel_txpower_limit =
493 geo_ch->flags |= IEEE80211_CHAN_DISABLED;
496 /* Save flags for reg domain usage */
497 geo_ch->orig_flags = geo_ch->flags;
499 IWL_DEBUG_INFO("Channel %d Freq=%d[%sGHz] %s flag=0%X\n",
500 ch->channel, geo_ch->center_freq,
501 is_channel_a_band(ch) ? "5.2" : "2.4",
502 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
503 "restricted" : "valid",
507 if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
508 priv->cfg->sku & IWL_SKU_A) {
509 printk(KERN_INFO DRV_NAME
510 ": Incorrectly detected BG card as ABG. Please send "
511 "your PCI ID 0x%04X:0x%04X to maintainer.\n",
512 priv->pci_dev->device, priv->pci_dev->subsystem_device);
513 priv->cfg->sku &= ~IWL_SKU_A;
516 printk(KERN_INFO DRV_NAME
517 ": Tunable channels: %d 802.11bg, %d 802.11a channels\n",
518 priv->bands[IEEE80211_BAND_2GHZ].n_channels,
519 priv->bands[IEEE80211_BAND_5GHZ].n_channels);
522 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
528 * iwlcore_free_geos - undo allocations in iwlcore_init_geos
530 static void iwlcore_free_geos(struct iwl_priv *priv)
532 kfree(priv->ieee_channels);
533 kfree(priv->ieee_rates);
534 clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
537 #ifdef CONFIG_IWL4965_HT
538 static u8 is_single_rx_stream(struct iwl_priv *priv)
540 return !priv->current_ht_config.is_ht ||
541 ((priv->current_ht_config.supp_mcs_set[1] == 0) &&
542 (priv->current_ht_config.supp_mcs_set[2] == 0)) ||
543 priv->ps_mode == IWL_MIMO_PS_STATIC;
545 static u8 iwl_is_channel_extension(struct iwl_priv *priv,
546 enum ieee80211_band band,
547 u16 channel, u8 extension_chan_offset)
549 const struct iwl_channel_info *ch_info;
551 ch_info = iwl_get_channel_info(priv, band, channel);
552 if (!is_channel_valid(ch_info))
555 if (extension_chan_offset == IWL_EXT_CHANNEL_OFFSET_NONE)
558 if ((ch_info->fat_extension_channel == extension_chan_offset) ||
559 (ch_info->fat_extension_channel == HT_IE_EXT_CHANNEL_MAX))
565 u8 iwl_is_fat_tx_allowed(struct iwl_priv *priv,
566 struct ieee80211_ht_info *sta_ht_inf)
568 struct iwl_ht_info *iwl_ht_conf = &priv->current_ht_config;
570 if ((!iwl_ht_conf->is_ht) ||
571 (iwl_ht_conf->supported_chan_width != IWL_CHANNEL_WIDTH_40MHZ) ||
572 (iwl_ht_conf->extension_chan_offset == IWL_EXT_CHANNEL_OFFSET_NONE))
576 if ((!sta_ht_inf->ht_supported) ||
577 (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
581 return iwl_is_channel_extension(priv, priv->band,
582 iwl_ht_conf->control_channel,
583 iwl_ht_conf->extension_chan_offset);
585 EXPORT_SYMBOL(iwl_is_fat_tx_allowed);
587 void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_info *ht_info)
589 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
595 /* Set up channel bandwidth: 20 MHz only, or 20/40 mixed if fat ok */
596 if (iwl_is_fat_tx_allowed(priv, NULL))
597 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED_MSK;
599 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
600 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
602 if (le16_to_cpu(rxon->channel) != ht_info->control_channel) {
603 IWL_DEBUG_ASSOC("control diff than current %d %d\n",
604 le16_to_cpu(rxon->channel),
605 ht_info->control_channel);
606 rxon->channel = cpu_to_le16(ht_info->control_channel);
610 /* Note: control channel is opposite of extension channel */
611 switch (ht_info->extension_chan_offset) {
612 case IWL_EXT_CHANNEL_OFFSET_ABOVE:
613 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
615 case IWL_EXT_CHANNEL_OFFSET_BELOW:
616 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
618 case IWL_EXT_CHANNEL_OFFSET_NONE:
620 rxon->flags &= ~RXON_FLG_CHANNEL_MODE_MIXED_MSK;
624 val = ht_info->ht_protection;
626 rxon->flags |= cpu_to_le32(val << RXON_FLG_HT_OPERATING_MODE_POS);
628 iwl_set_rxon_chain(priv);
630 IWL_DEBUG_ASSOC("supported HT rate 0x%X 0x%X 0x%X "
631 "rxon flags 0x%X operation mode :0x%X "
632 "extension channel offset 0x%x "
634 ht_info->supp_mcs_set[0],
635 ht_info->supp_mcs_set[1],
636 ht_info->supp_mcs_set[2],
637 le32_to_cpu(rxon->flags), ht_info->ht_protection,
638 ht_info->extension_chan_offset,
639 ht_info->control_channel);
642 EXPORT_SYMBOL(iwl_set_rxon_ht);
645 static inline u8 is_single_rx_stream(struct iwl_priv *priv)
649 #endif /*CONFIG_IWL4965_HT */
652 * Determine how many receiver/antenna chains to use.
653 * More provides better reception via diversity. Fewer saves power.
654 * MIMO (dual stream) requires at least 2, but works better with 3.
655 * This does not determine *which* chains to use, just how many.
657 static int iwlcore_get_rx_chain_counter(struct iwl_priv *priv,
658 u8 *idle_state, u8 *rx_state)
660 u8 is_single = is_single_rx_stream(priv);
661 u8 is_cam = test_bit(STATUS_POWER_PMI, &priv->status) ? 0 : 1;
663 /* # of Rx chains to use when expecting MIMO. */
664 if (is_single || (!is_cam && (priv->ps_mode == IWL_MIMO_PS_STATIC)))
669 /* # Rx chains when idling and maybe trying to save power */
670 switch (priv->ps_mode) {
671 case IWL_MIMO_PS_STATIC:
672 case IWL_MIMO_PS_DYNAMIC:
673 *idle_state = (is_cam) ? 2 : 1;
675 case IWL_MIMO_PS_NONE:
676 *idle_state = (is_cam) ? *rx_state : 1;
687 * iwl_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
689 * Selects how many and which Rx receivers/antennas/chains to use.
690 * This should not be used for scan command ... it puts data in wrong place.
692 void iwl_set_rxon_chain(struct iwl_priv *priv)
694 u8 is_single = is_single_rx_stream(priv);
695 u8 idle_state, rx_state;
697 priv->staging_rxon.rx_chain = 0;
698 rx_state = idle_state = 3;
700 /* Tell uCode which antennas are actually connected.
701 * Before first association, we assume all antennas are connected.
702 * Just after first association, iwl_chain_noise_calibration()
703 * checks which antennas actually *are* connected. */
704 priv->staging_rxon.rx_chain |=
705 cpu_to_le16(priv->hw_params.valid_rx_ant <<
706 RXON_RX_CHAIN_VALID_POS);
708 /* How many receivers should we use? */
709 iwlcore_get_rx_chain_counter(priv, &idle_state, &rx_state);
710 priv->staging_rxon.rx_chain |=
711 cpu_to_le16(rx_state << RXON_RX_CHAIN_MIMO_CNT_POS);
712 priv->staging_rxon.rx_chain |=
713 cpu_to_le16(idle_state << RXON_RX_CHAIN_CNT_POS);
715 if (!is_single && (rx_state >= 2) &&
716 !test_bit(STATUS_POWER_PMI, &priv->status))
717 priv->staging_rxon.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
719 priv->staging_rxon.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
721 IWL_DEBUG_ASSOC("rx chain %X\n", priv->staging_rxon.rx_chain);
723 EXPORT_SYMBOL(iwl_set_rxon_chain);
726 * iwlcore_set_rxon_channel - Set the phymode and channel values in staging RXON
727 * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
728 * @channel: Any channel valid for the requested phymode
730 * In addition to setting the staging RXON, priv->phymode is also set.
732 * NOTE: Does not commit to the hardware; it sets appropriate bit fields
733 * in the staging RXON flag structure based on the phymode
735 int iwl_set_rxon_channel(struct iwl_priv *priv,
736 enum ieee80211_band band,
739 if (!iwl_get_channel_info(priv, band, channel)) {
740 IWL_DEBUG_INFO("Could not set channel to %d [%d]\n",
745 if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
746 (priv->band == band))
749 priv->staging_rxon.channel = cpu_to_le16(channel);
750 if (band == IEEE80211_BAND_5GHZ)
751 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
753 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
757 IWL_DEBUG_INFO("Staging channel set to %d [%d]\n", channel, band);
761 EXPORT_SYMBOL(iwl_set_rxon_channel);
763 int iwl_setup_mac(struct iwl_priv *priv)
766 struct ieee80211_hw *hw = priv->hw;
767 hw->rate_control_algorithm = "iwl-4965-rs";
769 /* Tell mac80211 our characteristics */
770 hw->flags = IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE |
771 IEEE80211_HW_SIGNAL_DBM |
772 IEEE80211_HW_NOISE_DBM;
773 /* Default value; 4 EDCA QOS priorities */
775 #ifdef CONFIG_IWL4965_HT
776 /* Enhanced value; more queues, to support 11n aggregation */
777 hw->ampdu_queues = 12;
778 #endif /* CONFIG_IWL4965_HT */
780 hw->conf.beacon_int = 100;
782 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
783 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
784 &priv->bands[IEEE80211_BAND_2GHZ];
785 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
786 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
787 &priv->bands[IEEE80211_BAND_5GHZ];
789 ret = ieee80211_register_hw(priv->hw);
791 IWL_ERROR("Failed to register hw (error %d)\n", ret);
794 priv->mac80211_registered = 1;
798 EXPORT_SYMBOL(iwl_setup_mac);
801 int iwl_init_drv(struct iwl_priv *priv)
806 priv->retry_rate = 1;
807 priv->ibss_beacon = NULL;
809 spin_lock_init(&priv->lock);
810 spin_lock_init(&priv->power_data.lock);
811 spin_lock_init(&priv->sta_lock);
812 spin_lock_init(&priv->hcmd_lock);
813 spin_lock_init(&priv->lq_mngr.lock);
815 for (i = 0; i < IWL_IBSS_MAC_HASH_SIZE; i++)
816 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
818 INIT_LIST_HEAD(&priv->free_frames);
820 mutex_init(&priv->mutex);
822 /* Clear the driver's (not device's) station table */
823 iwlcore_clear_stations_table(priv);
825 priv->data_retry_limit = -1;
826 priv->ieee_channels = NULL;
827 priv->ieee_rates = NULL;
828 priv->band = IEEE80211_BAND_2GHZ;
830 priv->iw_mode = IEEE80211_IF_TYPE_STA;
832 priv->use_ant_b_for_management_frame = 1; /* start with ant B */
833 priv->ps_mode = IWL_MIMO_PS_NONE;
835 /* Choose which receivers/antennas to use */
836 iwl_set_rxon_chain(priv);
838 if (priv->cfg->mod_params->enable_qos)
839 priv->qos_data.qos_enable = 1;
843 priv->qos_data.qos_active = 0;
844 priv->qos_data.qos_cap.val = 0;
846 iwl_set_rxon_channel(priv, IEEE80211_BAND_2GHZ, 6);
848 priv->rates_mask = IWL_RATES_MASK;
849 /* If power management is turned on, default to AC mode */
850 priv->power_mode = IWL_POWER_AC;
851 priv->user_txpower_limit = IWL_DEFAULT_TX_POWER;
853 ret = iwl_init_channel_map(priv);
855 IWL_ERROR("initializing regulatory failed: %d\n", ret);
859 ret = iwlcore_init_geos(priv);
861 IWL_ERROR("initializing geos failed: %d\n", ret);
862 goto err_free_channel_map;
867 err_free_channel_map:
868 iwl_free_channel_map(priv);
872 EXPORT_SYMBOL(iwl_init_drv);
874 void iwl_free_calib_results(struct iwl_priv *priv)
876 kfree(priv->calib_results.lo_res);
877 priv->calib_results.lo_res = NULL;
878 priv->calib_results.lo_res_len = 0;
880 kfree(priv->calib_results.tx_iq_res);
881 priv->calib_results.tx_iq_res = NULL;
882 priv->calib_results.tx_iq_res_len = 0;
884 kfree(priv->calib_results.tx_iq_perd_res);
885 priv->calib_results.tx_iq_perd_res = NULL;
886 priv->calib_results.tx_iq_perd_res_len = 0;
888 EXPORT_SYMBOL(iwl_free_calib_results);
890 void iwl_uninit_drv(struct iwl_priv *priv)
892 iwl_free_calib_results(priv);
893 iwlcore_free_geos(priv);
894 iwl_free_channel_map(priv);
896 EXPORT_SYMBOL(iwl_uninit_drv);
898 /* Low level driver call this function to update iwlcore with
901 int iwlcore_low_level_notify(struct iwl_priv *priv,
902 enum iwlcore_card_notify notify)
906 case IWLCORE_INIT_EVT:
907 ret = iwl_rfkill_init(priv);
909 IWL_ERROR("Unable to initialize RFKILL system. "
910 "Ignoring error: %d\n", ret);
911 iwl_power_initialize(priv);
913 case IWLCORE_START_EVT:
914 iwl_power_update_mode(priv, 1);
916 case IWLCORE_STOP_EVT:
918 case IWLCORE_REMOVE_EVT:
919 iwl_rfkill_unregister(priv);
925 EXPORT_SYMBOL(iwlcore_low_level_notify);
927 int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags)
930 struct iwl_host_cmd cmd = {
931 .id = REPLY_STATISTICS_CMD,
933 .len = sizeof(stat_flags),
934 .data = (u8 *) &stat_flags,
936 return iwl_send_cmd(priv, &cmd);
938 EXPORT_SYMBOL(iwl_send_statistics_request);
941 * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host,
942 * using sample data 100 bytes apart. If these sample points are good,
943 * it's a pretty good bet that everything between them is good, too.
945 static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
952 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
954 ret = iwl_grab_nic_access(priv);
958 for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
959 /* read data comes through single port, auto-incr addr */
960 /* NOTE: Use the debugless read so we don't flood kernel log
961 * if IWL_DL_IO is set */
962 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
963 i + RTC_INST_LOWER_BOUND);
964 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
965 if (val != le32_to_cpu(*image)) {
973 iwl_release_nic_access(priv);
979 * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host,
980 * looking at all data.
982 static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image,
990 IWL_DEBUG_INFO("ucode inst image size is %u\n", len);
992 ret = iwl_grab_nic_access(priv);
996 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, RTC_INST_LOWER_BOUND);
999 for (; len > 0; len -= sizeof(u32), image++) {
1000 /* read data comes through single port, auto-incr addr */
1001 /* NOTE: Use the debugless read so we don't flood kernel log
1002 * if IWL_DL_IO is set */
1003 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
1004 if (val != le32_to_cpu(*image)) {
1005 IWL_ERROR("uCode INST section is invalid at "
1006 "offset 0x%x, is 0x%x, s/b 0x%x\n",
1007 save_len - len, val, le32_to_cpu(*image));
1015 iwl_release_nic_access(priv);
1019 ("ucode image in INSTRUCTION memory is good\n");
1025 * iwl_verify_ucode - determine which instruction image is in SRAM,
1026 * and verify its contents
1028 int iwl_verify_ucode(struct iwl_priv *priv)
1035 image = (__le32 *)priv->ucode_boot.v_addr;
1036 len = priv->ucode_boot.len;
1037 ret = iwlcore_verify_inst_sparse(priv, image, len);
1039 IWL_DEBUG_INFO("Bootstrap uCode is good in inst SRAM\n");
1043 /* Try initialize */
1044 image = (__le32 *)priv->ucode_init.v_addr;
1045 len = priv->ucode_init.len;
1046 ret = iwlcore_verify_inst_sparse(priv, image, len);
1048 IWL_DEBUG_INFO("Initialize uCode is good in inst SRAM\n");
1052 /* Try runtime/protocol */
1053 image = (__le32 *)priv->ucode_code.v_addr;
1054 len = priv->ucode_code.len;
1055 ret = iwlcore_verify_inst_sparse(priv, image, len);
1057 IWL_DEBUG_INFO("Runtime uCode is good in inst SRAM\n");
1061 IWL_ERROR("NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
1063 /* Since nothing seems to match, show first several data entries in
1064 * instruction SRAM, so maybe visual inspection will give a clue.
1065 * Selection of bootstrap image (vs. other images) is arbitrary. */
1066 image = (__le32 *)priv->ucode_boot.v_addr;
1067 len = priv->ucode_boot.len;
1068 ret = iwl_verify_inst_full(priv, image, len);
1072 EXPORT_SYMBOL(iwl_verify_ucode);
1075 static const char *desc_lookup(int i)
1083 return "BAD_CHECKSUM";
1085 return "NMI_INTERRUPT";
1089 return "FATAL_ERROR";
1095 #define ERROR_START_OFFSET (1 * sizeof(u32))
1096 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
1098 void iwl_dump_nic_error_log(struct iwl_priv *priv)
1101 u32 desc, time, count, base, data1;
1102 u32 blink1, blink2, ilink1, ilink2;
1105 if (priv->ucode_type == UCODE_INIT)
1106 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
1108 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1110 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
1111 IWL_ERROR("Not valid error log pointer 0x%08X\n", base);
1115 ret = iwl_grab_nic_access(priv);
1117 IWL_WARNING("Can not read from adapter at this time.\n");
1121 count = iwl_read_targ_mem(priv, base);
1123 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
1124 IWL_ERROR("Start IWL Error Log Dump:\n");
1125 IWL_ERROR("Status: 0x%08lX, count: %d\n", priv->status, count);
1128 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
1129 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
1130 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
1131 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
1132 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
1133 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
1134 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
1135 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
1136 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
1138 IWL_ERROR("Desc Time "
1139 "data1 data2 line\n");
1140 IWL_ERROR("%-13s (#%d) %010u 0x%08X 0x%08X %u\n",
1141 desc_lookup(desc), desc, time, data1, data2, line);
1142 IWL_ERROR("blink1 blink2 ilink1 ilink2\n");
1143 IWL_ERROR("0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
1146 iwl_release_nic_access(priv);
1148 EXPORT_SYMBOL(iwl_dump_nic_error_log);
1150 #define EVENT_START_OFFSET (4 * sizeof(u32))
1153 * iwl_print_event_log - Dump error event log to syslog
1155 * NOTE: Must be called with iwl4965_grab_nic_access() already obtained!
1157 void iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
1158 u32 num_events, u32 mode)
1161 u32 base; /* SRAM byte address of event log header */
1162 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1163 u32 ptr; /* SRAM byte address of log data */
1164 u32 ev, time, data; /* event log data */
1166 if (num_events == 0)
1168 if (priv->ucode_type == UCODE_INIT)
1169 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1171 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1174 event_size = 2 * sizeof(u32);
1176 event_size = 3 * sizeof(u32);
1178 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1180 /* "time" is actually "data" for mode 0 (no timestamp).
1181 * place event id # at far right for easier visual parsing. */
1182 for (i = 0; i < num_events; i++) {
1183 ev = iwl_read_targ_mem(priv, ptr);
1185 time = iwl_read_targ_mem(priv, ptr);
1188 IWL_ERROR("0x%08x\t%04u\n", time, ev); /* data, ev */
1190 data = iwl_read_targ_mem(priv, ptr);
1192 IWL_ERROR("%010u\t0x%08x\t%04u\n", time, data, ev);
1196 EXPORT_SYMBOL(iwl_print_event_log);
1199 void iwl_dump_nic_event_log(struct iwl_priv *priv)
1202 u32 base; /* SRAM byte address of event log header */
1203 u32 capacity; /* event log capacity in # entries */
1204 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
1205 u32 num_wraps; /* # times uCode wrapped to top of log */
1206 u32 next_entry; /* index of next entry to be written by uCode */
1207 u32 size; /* # entries that we'll print */
1209 if (priv->ucode_type == UCODE_INIT)
1210 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1212 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1214 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
1215 IWL_ERROR("Invalid event log pointer 0x%08X\n", base);
1219 ret = iwl_grab_nic_access(priv);
1221 IWL_WARNING("Can not read from adapter at this time.\n");
1225 /* event log header */
1226 capacity = iwl_read_targ_mem(priv, base);
1227 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1228 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1229 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
1231 size = num_wraps ? capacity : next_entry;
1233 /* bail out if nothing in log */
1235 IWL_ERROR("Start IWL Event Log Dump: nothing in log\n");
1236 iwl_release_nic_access(priv);
1240 IWL_ERROR("Start IWL Event Log Dump: display count %d, wraps %d\n",
1243 /* if uCode has wrapped back to top of log, start at the oldest entry,
1244 * i.e the next one that uCode would fill. */
1246 iwl_print_event_log(priv, next_entry,
1247 capacity - next_entry, mode);
1248 /* (then/else) start at top of log */
1249 iwl_print_event_log(priv, 0, next_entry, mode);
1251 iwl_release_nic_access(priv);
1253 EXPORT_SYMBOL(iwl_dump_nic_event_log);