iwlwifi: check short GI support per-station rather than globally
[pandora-kernel.git] / drivers / net / wireless / iwlwifi / iwl-core.c
1 /******************************************************************************
2  *
3  * GPL LICENSE SUMMARY
4  *
5  * Copyright(c) 2008 - 2009 Intel Corporation. All rights reserved.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of version 2 of the GNU General Public License as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19  * USA
20  *
21  * The full GNU General Public License is included in this distribution
22  * in the file called LICENSE.GPL.
23  *
24  * Contact Information:
25  *  Intel Linux Wireless <ilw@linux.intel.com>
26  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27  *****************************************************************************/
28
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/etherdevice.h>
32 #include <net/mac80211.h>
33
34 #include "iwl-eeprom.h"
35 #include "iwl-dev.h" /* FIXME: remove */
36 #include "iwl-debug.h"
37 #include "iwl-core.h"
38 #include "iwl-io.h"
39 #include "iwl-power.h"
40 #include "iwl-sta.h"
41 #include "iwl-helpers.h"
42
43
44 MODULE_DESCRIPTION("iwl core");
45 MODULE_VERSION(IWLWIFI_VERSION);
46 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
47 MODULE_LICENSE("GPL");
48
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 }
61
62 u32 iwl_debug_level;
63 EXPORT_SYMBOL(iwl_debug_level);
64
65 static irqreturn_t iwl_isr(int irq, void *data);
66
67 /*
68  * Parameter order:
69  *   rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
70  *
71  * If there isn't a valid next or previous rate then INV is used which
72  * maps to IWL_RATE_INVALID
73  *
74  */
75 const struct iwl_rate_info iwl_rates[IWL_RATE_COUNT] = {
76         IWL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2),    /*  1mbps */
77         IWL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5),          /*  2mbps */
78         IWL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11),        /*5.5mbps */
79         IWL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18),      /* 11mbps */
80         IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11),        /*  6mbps */
81         IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11),       /*  9mbps */
82         IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18),   /* 12mbps */
83         IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24),   /* 18mbps */
84         IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36),   /* 24mbps */
85         IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48),   /* 36mbps */
86         IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54),   /* 48mbps */
87         IWL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
88         IWL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
89         /* FIXME:RS:          ^^    should be INV (legacy) */
90 };
91 EXPORT_SYMBOL(iwl_rates);
92
93 /**
94  * translate ucode response to mac80211 tx status control values
95  */
96 void iwl_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
97                                   struct ieee80211_tx_info *info)
98 {
99         int rate_index;
100         struct ieee80211_tx_rate *r = &info->control.rates[0];
101
102         info->antenna_sel_tx =
103                 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
104         if (rate_n_flags & RATE_MCS_HT_MSK)
105                 r->flags |= IEEE80211_TX_RC_MCS;
106         if (rate_n_flags & RATE_MCS_GF_MSK)
107                 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
108         if (rate_n_flags & RATE_MCS_HT40_MSK)
109                 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
110         if (rate_n_flags & RATE_MCS_DUP_MSK)
111                 r->flags |= IEEE80211_TX_RC_DUP_DATA;
112         if (rate_n_flags & RATE_MCS_SGI_MSK)
113                 r->flags |= IEEE80211_TX_RC_SHORT_GI;
114         rate_index = iwl_hwrate_to_plcp_idx(rate_n_flags);
115         if (info->band == IEEE80211_BAND_5GHZ)
116                 rate_index -= IWL_FIRST_OFDM_RATE;
117         r->idx = rate_index;
118 }
119 EXPORT_SYMBOL(iwl_hwrate_to_tx_control);
120
121 int iwl_hwrate_to_plcp_idx(u32 rate_n_flags)
122 {
123         int idx = 0;
124
125         /* HT rate format */
126         if (rate_n_flags & RATE_MCS_HT_MSK) {
127                 idx = (rate_n_flags & 0xff);
128
129                 if (idx >= IWL_RATE_MIMO3_6M_PLCP)
130                         idx = idx - IWL_RATE_MIMO3_6M_PLCP;
131                 else if (idx >= IWL_RATE_MIMO2_6M_PLCP)
132                         idx = idx - IWL_RATE_MIMO2_6M_PLCP;
133
134                 idx += IWL_FIRST_OFDM_RATE;
135                 /* skip 9M not supported in ht*/
136                 if (idx >= IWL_RATE_9M_INDEX)
137                         idx += 1;
138                 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
139                         return idx;
140
141         /* legacy rate format, search for match in table */
142         } else {
143                 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
144                         if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
145                                 return idx;
146         }
147
148         return -1;
149 }
150 EXPORT_SYMBOL(iwl_hwrate_to_plcp_idx);
151
152 u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant)
153 {
154         int i;
155         u8 ind = ant;
156         for (i = 0; i < RATE_ANT_NUM - 1; i++) {
157                 ind = (ind + 1) < RATE_ANT_NUM ?  ind + 1 : 0;
158                 if (priv->hw_params.valid_tx_ant & BIT(ind))
159                         return ind;
160         }
161         return ant;
162 }
163
164 const u8 iwl_bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
165 EXPORT_SYMBOL(iwl_bcast_addr);
166
167
168 /* This function both allocates and initializes hw and priv. */
169 struct ieee80211_hw *iwl_alloc_all(struct iwl_cfg *cfg,
170                 struct ieee80211_ops *hw_ops)
171 {
172         struct iwl_priv *priv;
173
174         /* mac80211 allocates memory for this device instance, including
175          *   space for this driver's private structure */
176         struct ieee80211_hw *hw =
177                 ieee80211_alloc_hw(sizeof(struct iwl_priv), hw_ops);
178         if (hw == NULL) {
179                 printk(KERN_ERR "%s: Can not allocate network device\n",
180                        cfg->name);
181                 goto out;
182         }
183
184         priv = hw->priv;
185         priv->hw = hw;
186
187 out:
188         return hw;
189 }
190 EXPORT_SYMBOL(iwl_alloc_all);
191
192 void iwl_hw_detect(struct iwl_priv *priv)
193 {
194         priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
195         priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
196         pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
197 }
198 EXPORT_SYMBOL(iwl_hw_detect);
199
200 int iwl_hw_nic_init(struct iwl_priv *priv)
201 {
202         unsigned long flags;
203         struct iwl_rx_queue *rxq = &priv->rxq;
204         int ret;
205
206         /* nic_init */
207         spin_lock_irqsave(&priv->lock, flags);
208         priv->cfg->ops->lib->apm_ops.init(priv);
209         iwl_write32(priv, CSR_INT_COALESCING, 512 / 32);
210         spin_unlock_irqrestore(&priv->lock, flags);
211
212         ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
213
214         priv->cfg->ops->lib->apm_ops.config(priv);
215
216         /* Allocate the RX queue, or reset if it is already allocated */
217         if (!rxq->bd) {
218                 ret = iwl_rx_queue_alloc(priv);
219                 if (ret) {
220                         IWL_ERR(priv, "Unable to initialize Rx queue\n");
221                         return -ENOMEM;
222                 }
223         } else
224                 iwl_rx_queue_reset(priv, rxq);
225
226         iwl_rx_replenish(priv);
227
228         iwl_rx_init(priv, rxq);
229
230         spin_lock_irqsave(&priv->lock, flags);
231
232         rxq->need_update = 1;
233         iwl_rx_queue_update_write_ptr(priv, rxq);
234
235         spin_unlock_irqrestore(&priv->lock, flags);
236
237         /* Allocate and init all Tx and Command queues */
238         ret = iwl_txq_ctx_reset(priv);
239         if (ret)
240                 return ret;
241
242         set_bit(STATUS_INIT, &priv->status);
243
244         return 0;
245 }
246 EXPORT_SYMBOL(iwl_hw_nic_init);
247
248 /*
249  * QoS  support
250 */
251 void iwl_activate_qos(struct iwl_priv *priv, u8 force)
252 {
253         if (test_bit(STATUS_EXIT_PENDING, &priv->status))
254                 return;
255
256         priv->qos_data.def_qos_parm.qos_flags = 0;
257
258         if (priv->qos_data.qos_cap.q_AP.queue_request &&
259             !priv->qos_data.qos_cap.q_AP.txop_request)
260                 priv->qos_data.def_qos_parm.qos_flags |=
261                         QOS_PARAM_FLG_TXOP_TYPE_MSK;
262         if (priv->qos_data.qos_active)
263                 priv->qos_data.def_qos_parm.qos_flags |=
264                         QOS_PARAM_FLG_UPDATE_EDCA_MSK;
265
266         if (priv->current_ht_config.is_ht)
267                 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
268
269         if (force || iwl_is_associated(priv)) {
270                 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
271                                 priv->qos_data.qos_active,
272                                 priv->qos_data.def_qos_parm.qos_flags);
273
274                 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
275                                        sizeof(struct iwl_qosparam_cmd),
276                                        &priv->qos_data.def_qos_parm, NULL);
277         }
278 }
279 EXPORT_SYMBOL(iwl_activate_qos);
280
281 /*
282  * AC        CWmin         CW max      AIFSN      TXOP Limit    TXOP Limit
283  *                                              (802.11b)      (802.11a/g)
284  * AC_BK      15            1023        7           0               0
285  * AC_BE      15            1023        3           0               0
286  * AC_VI       7              15        2          6.016ms       3.008ms
287  * AC_VO       3               7        2          3.264ms       1.504ms
288  */
289 void iwl_reset_qos(struct iwl_priv *priv)
290 {
291         u16 cw_min = 15;
292         u16 cw_max = 1023;
293         u8 aifs = 2;
294         bool is_legacy = false;
295         unsigned long flags;
296         int i;
297
298         spin_lock_irqsave(&priv->lock, flags);
299         /* QoS always active in AP and ADHOC mode
300          * In STA mode wait for association
301          */
302         if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
303             priv->iw_mode == NL80211_IFTYPE_AP)
304                 priv->qos_data.qos_active = 1;
305         else
306                 priv->qos_data.qos_active = 0;
307
308         /* check for legacy mode */
309         if ((priv->iw_mode == NL80211_IFTYPE_ADHOC &&
310             (priv->active_rate & IWL_OFDM_RATES_MASK) == 0) ||
311             (priv->iw_mode == NL80211_IFTYPE_STATION &&
312             (priv->staging_rxon.flags & RXON_FLG_SHORT_SLOT_MSK) == 0)) {
313                 cw_min = 31;
314                 is_legacy = 1;
315         }
316
317         if (priv->qos_data.qos_active)
318                 aifs = 3;
319
320         /* AC_BE */
321         priv->qos_data.def_qos_parm.ac[0].cw_min = cpu_to_le16(cw_min);
322         priv->qos_data.def_qos_parm.ac[0].cw_max = cpu_to_le16(cw_max);
323         priv->qos_data.def_qos_parm.ac[0].aifsn = aifs;
324         priv->qos_data.def_qos_parm.ac[0].edca_txop = 0;
325         priv->qos_data.def_qos_parm.ac[0].reserved1 = 0;
326
327         if (priv->qos_data.qos_active) {
328                 /* AC_BK */
329                 i = 1;
330                 priv->qos_data.def_qos_parm.ac[i].cw_min = cpu_to_le16(cw_min);
331                 priv->qos_data.def_qos_parm.ac[i].cw_max = cpu_to_le16(cw_max);
332                 priv->qos_data.def_qos_parm.ac[i].aifsn = 7;
333                 priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
334                 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
335
336                 /* AC_VI */
337                 i = 2;
338                 priv->qos_data.def_qos_parm.ac[i].cw_min =
339                         cpu_to_le16((cw_min + 1) / 2 - 1);
340                 priv->qos_data.def_qos_parm.ac[i].cw_max =
341                         cpu_to_le16(cw_min);
342                 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
343                 if (is_legacy)
344                         priv->qos_data.def_qos_parm.ac[i].edca_txop =
345                                 cpu_to_le16(6016);
346                 else
347                         priv->qos_data.def_qos_parm.ac[i].edca_txop =
348                                 cpu_to_le16(3008);
349                 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
350
351                 /* AC_VO */
352                 i = 3;
353                 priv->qos_data.def_qos_parm.ac[i].cw_min =
354                         cpu_to_le16((cw_min + 1) / 4 - 1);
355                 priv->qos_data.def_qos_parm.ac[i].cw_max =
356                         cpu_to_le16((cw_min + 1) / 2 - 1);
357                 priv->qos_data.def_qos_parm.ac[i].aifsn = 2;
358                 priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
359                 if (is_legacy)
360                         priv->qos_data.def_qos_parm.ac[i].edca_txop =
361                                 cpu_to_le16(3264);
362                 else
363                         priv->qos_data.def_qos_parm.ac[i].edca_txop =
364                                 cpu_to_le16(1504);
365         } else {
366                 for (i = 1; i < 4; i++) {
367                         priv->qos_data.def_qos_parm.ac[i].cw_min =
368                                 cpu_to_le16(cw_min);
369                         priv->qos_data.def_qos_parm.ac[i].cw_max =
370                                 cpu_to_le16(cw_max);
371                         priv->qos_data.def_qos_parm.ac[i].aifsn = aifs;
372                         priv->qos_data.def_qos_parm.ac[i].edca_txop = 0;
373                         priv->qos_data.def_qos_parm.ac[i].reserved1 = 0;
374                 }
375         }
376         IWL_DEBUG_QOS(priv, "set QoS to default \n");
377
378         spin_unlock_irqrestore(&priv->lock, flags);
379 }
380 EXPORT_SYMBOL(iwl_reset_qos);
381
382 #define MAX_BIT_RATE_40_MHZ 150 /* Mbps */
383 #define MAX_BIT_RATE_20_MHZ 72 /* Mbps */
384 static void iwlcore_init_ht_hw_capab(const struct iwl_priv *priv,
385                               struct ieee80211_sta_ht_cap *ht_info,
386                               enum ieee80211_band band)
387 {
388         u16 max_bit_rate = 0;
389         u8 rx_chains_num = priv->hw_params.rx_chains_num;
390         u8 tx_chains_num = priv->hw_params.tx_chains_num;
391
392         ht_info->cap = 0;
393         memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
394
395         ht_info->ht_supported = true;
396
397         ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
398         ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
399         ht_info->cap |= (IEEE80211_HT_CAP_SM_PS &
400                              (WLAN_HT_CAP_SM_PS_DISABLED << 2));
401
402         max_bit_rate = MAX_BIT_RATE_20_MHZ;
403         if (priv->hw_params.ht40_channel & BIT(band)) {
404                 ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
405                 ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
406                 ht_info->mcs.rx_mask[4] = 0x01;
407                 max_bit_rate = MAX_BIT_RATE_40_MHZ;
408         }
409
410         if (priv->cfg->mod_params->amsdu_size_8K)
411                 ht_info->cap |= IEEE80211_HT_CAP_MAX_AMSDU;
412
413         ht_info->ampdu_factor = CFG_HT_RX_AMPDU_FACTOR_DEF;
414         ht_info->ampdu_density = CFG_HT_MPDU_DENSITY_DEF;
415
416         ht_info->mcs.rx_mask[0] = 0xFF;
417         if (rx_chains_num >= 2)
418                 ht_info->mcs.rx_mask[1] = 0xFF;
419         if (rx_chains_num >= 3)
420                 ht_info->mcs.rx_mask[2] = 0xFF;
421
422         /* Highest supported Rx data rate */
423         max_bit_rate *= rx_chains_num;
424         WARN_ON(max_bit_rate & ~IEEE80211_HT_MCS_RX_HIGHEST_MASK);
425         ht_info->mcs.rx_highest = cpu_to_le16(max_bit_rate);
426
427         /* Tx MCS capabilities */
428         ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
429         if (tx_chains_num != rx_chains_num) {
430                 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
431                 ht_info->mcs.tx_params |= ((tx_chains_num - 1) <<
432                                 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
433         }
434 }
435
436 static void iwlcore_init_hw_rates(struct iwl_priv *priv,
437                               struct ieee80211_rate *rates)
438 {
439         int i;
440
441         for (i = 0; i < IWL_RATE_COUNT; i++) {
442                 rates[i].bitrate = iwl_rates[i].ieee * 5;
443                 rates[i].hw_value = i; /* Rate scaling will work on indexes */
444                 rates[i].hw_value_short = i;
445                 rates[i].flags = 0;
446                 if ((i > IWL_LAST_OFDM_RATE) || (i < IWL_FIRST_OFDM_RATE)) {
447                         /*
448                          * If CCK != 1M then set short preamble rate flag.
449                          */
450                         rates[i].flags |=
451                                 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
452                                         0 : IEEE80211_RATE_SHORT_PREAMBLE;
453                 }
454         }
455 }
456
457
458 /**
459  * iwlcore_init_geos - Initialize mac80211's geo/channel info based from eeprom
460  */
461 int iwlcore_init_geos(struct iwl_priv *priv)
462 {
463         struct iwl_channel_info *ch;
464         struct ieee80211_supported_band *sband;
465         struct ieee80211_channel *channels;
466         struct ieee80211_channel *geo_ch;
467         struct ieee80211_rate *rates;
468         int i = 0;
469
470         if (priv->bands[IEEE80211_BAND_2GHZ].n_bitrates ||
471             priv->bands[IEEE80211_BAND_5GHZ].n_bitrates) {
472                 IWL_DEBUG_INFO(priv, "Geography modes already initialized.\n");
473                 set_bit(STATUS_GEO_CONFIGURED, &priv->status);
474                 return 0;
475         }
476
477         channels = kzalloc(sizeof(struct ieee80211_channel) *
478                            priv->channel_count, GFP_KERNEL);
479         if (!channels)
480                 return -ENOMEM;
481
482         rates = kzalloc((sizeof(struct ieee80211_rate) * (IWL_RATE_COUNT + 1)),
483                         GFP_KERNEL);
484         if (!rates) {
485                 kfree(channels);
486                 return -ENOMEM;
487         }
488
489         /* 5.2GHz channels start after the 2.4GHz channels */
490         sband = &priv->bands[IEEE80211_BAND_5GHZ];
491         sband->channels = &channels[ARRAY_SIZE(iwl_eeprom_band_1)];
492         /* just OFDM */
493         sband->bitrates = &rates[IWL_FIRST_OFDM_RATE];
494         sband->n_bitrates = IWL_RATE_COUNT - IWL_FIRST_OFDM_RATE;
495
496         if (priv->cfg->sku & IWL_SKU_N)
497                 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
498                                          IEEE80211_BAND_5GHZ);
499
500         sband = &priv->bands[IEEE80211_BAND_2GHZ];
501         sband->channels = channels;
502         /* OFDM & CCK */
503         sband->bitrates = rates;
504         sband->n_bitrates = IWL_RATE_COUNT;
505
506         if (priv->cfg->sku & IWL_SKU_N)
507                 iwlcore_init_ht_hw_capab(priv, &sband->ht_cap,
508                                          IEEE80211_BAND_2GHZ);
509
510         priv->ieee_channels = channels;
511         priv->ieee_rates = rates;
512
513         for (i = 0;  i < priv->channel_count; i++) {
514                 ch = &priv->channel_info[i];
515
516                 /* FIXME: might be removed if scan is OK */
517                 if (!is_channel_valid(ch))
518                         continue;
519
520                 if (is_channel_a_band(ch))
521                         sband =  &priv->bands[IEEE80211_BAND_5GHZ];
522                 else
523                         sband =  &priv->bands[IEEE80211_BAND_2GHZ];
524
525                 geo_ch = &sband->channels[sband->n_channels++];
526
527                 geo_ch->center_freq =
528                                 ieee80211_channel_to_frequency(ch->channel);
529                 geo_ch->max_power = ch->max_power_avg;
530                 geo_ch->max_antenna_gain = 0xff;
531                 geo_ch->hw_value = ch->channel;
532
533                 if (is_channel_valid(ch)) {
534                         if (!(ch->flags & EEPROM_CHANNEL_IBSS))
535                                 geo_ch->flags |= IEEE80211_CHAN_NO_IBSS;
536
537                         if (!(ch->flags & EEPROM_CHANNEL_ACTIVE))
538                                 geo_ch->flags |= IEEE80211_CHAN_PASSIVE_SCAN;
539
540                         if (ch->flags & EEPROM_CHANNEL_RADAR)
541                                 geo_ch->flags |= IEEE80211_CHAN_RADAR;
542
543                         geo_ch->flags |= ch->ht40_extension_channel;
544
545                         if (ch->max_power_avg > priv->tx_power_channel_lmt)
546                                 priv->tx_power_channel_lmt = ch->max_power_avg;
547                 } else {
548                         geo_ch->flags |= IEEE80211_CHAN_DISABLED;
549                 }
550
551                 IWL_DEBUG_INFO(priv, "Channel %d Freq=%d[%sGHz] %s flag=0x%X\n",
552                                 ch->channel, geo_ch->center_freq,
553                                 is_channel_a_band(ch) ?  "5.2" : "2.4",
554                                 geo_ch->flags & IEEE80211_CHAN_DISABLED ?
555                                 "restricted" : "valid",
556                                  geo_ch->flags);
557         }
558
559         if ((priv->bands[IEEE80211_BAND_5GHZ].n_channels == 0) &&
560              priv->cfg->sku & IWL_SKU_A) {
561                 IWL_INFO(priv, "Incorrectly detected BG card as ABG. "
562                         "Please send your PCI ID 0x%04X:0x%04X to maintainer.\n",
563                            priv->pci_dev->device,
564                            priv->pci_dev->subsystem_device);
565                 priv->cfg->sku &= ~IWL_SKU_A;
566         }
567
568         IWL_INFO(priv, "Tunable channels: %d 802.11bg, %d 802.11a channels\n",
569                    priv->bands[IEEE80211_BAND_2GHZ].n_channels,
570                    priv->bands[IEEE80211_BAND_5GHZ].n_channels);
571
572         set_bit(STATUS_GEO_CONFIGURED, &priv->status);
573
574         return 0;
575 }
576 EXPORT_SYMBOL(iwlcore_init_geos);
577
578 /*
579  * iwlcore_free_geos - undo allocations in iwlcore_init_geos
580  */
581 void iwlcore_free_geos(struct iwl_priv *priv)
582 {
583         kfree(priv->ieee_channels);
584         kfree(priv->ieee_rates);
585         clear_bit(STATUS_GEO_CONFIGURED, &priv->status);
586 }
587 EXPORT_SYMBOL(iwlcore_free_geos);
588
589 static bool is_single_rx_stream(struct iwl_priv *priv)
590 {
591         return !priv->current_ht_config.is_ht ||
592                ((priv->current_ht_config.mcs.rx_mask[1] == 0) &&
593                 (priv->current_ht_config.mcs.rx_mask[2] == 0));
594 }
595
596 static u8 iwl_is_channel_extension(struct iwl_priv *priv,
597                                    enum ieee80211_band band,
598                                    u16 channel, u8 extension_chan_offset)
599 {
600         const struct iwl_channel_info *ch_info;
601
602         ch_info = iwl_get_channel_info(priv, band, channel);
603         if (!is_channel_valid(ch_info))
604                 return 0;
605
606         if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_ABOVE)
607                 return !(ch_info->ht40_extension_channel &
608                                         IEEE80211_CHAN_NO_HT40PLUS);
609         else if (extension_chan_offset == IEEE80211_HT_PARAM_CHA_SEC_BELOW)
610                 return !(ch_info->ht40_extension_channel &
611                                         IEEE80211_CHAN_NO_HT40MINUS);
612
613         return 0;
614 }
615
616 u8 iwl_is_ht40_tx_allowed(struct iwl_priv *priv,
617                          struct ieee80211_sta_ht_cap *sta_ht_inf)
618 {
619         struct iwl_ht_info *iwl_ht_conf = &priv->current_ht_config;
620
621         if ((!iwl_ht_conf->is_ht) ||
622             (iwl_ht_conf->supported_chan_width != IWL_CHANNEL_WIDTH_40MHZ))
623                 return 0;
624
625         /* We do not check for IEEE80211_HT_CAP_SUP_WIDTH_20_40
626          * the bit will not set if it is pure 40MHz case
627          */
628         if (sta_ht_inf) {
629                 if (!sta_ht_inf->ht_supported)
630                         return 0;
631         }
632 #ifdef CONFIG_IWLWIFI_DEBUG
633         if (priv->disable_ht40)
634                 return 0;
635 #endif
636         return iwl_is_channel_extension(priv, priv->band,
637                         le16_to_cpu(priv->staging_rxon.channel),
638                         iwl_ht_conf->extension_chan_offset);
639 }
640 EXPORT_SYMBOL(iwl_is_ht40_tx_allowed);
641
642 static u16 iwl_adjust_beacon_interval(u16 beacon_val, u16 max_beacon_val)
643 {
644         u16 new_val = 0;
645         u16 beacon_factor = 0;
646
647         beacon_factor = (beacon_val + max_beacon_val) / max_beacon_val;
648         new_val = beacon_val / beacon_factor;
649
650         if (!new_val)
651                 new_val = max_beacon_val;
652
653         return new_val;
654 }
655
656 void iwl_setup_rxon_timing(struct iwl_priv *priv)
657 {
658         u64 tsf;
659         s32 interval_tm, rem;
660         unsigned long flags;
661         struct ieee80211_conf *conf = NULL;
662         u16 beacon_int;
663
664         conf = ieee80211_get_hw_conf(priv->hw);
665
666         spin_lock_irqsave(&priv->lock, flags);
667         priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
668         priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
669
670         if (priv->iw_mode == NL80211_IFTYPE_STATION) {
671                 beacon_int = priv->beacon_int;
672                 priv->rxon_timing.atim_window = 0;
673         } else {
674                 beacon_int = priv->vif->bss_conf.beacon_int;
675
676                 /* TODO: we need to get atim_window from upper stack
677                  * for now we set to 0 */
678                 priv->rxon_timing.atim_window = 0;
679         }
680
681         beacon_int = iwl_adjust_beacon_interval(beacon_int,
682                                 priv->hw_params.max_beacon_itrvl * 1024);
683         priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
684
685         tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
686         interval_tm = beacon_int * 1024;
687         rem = do_div(tsf, interval_tm);
688         priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
689
690         spin_unlock_irqrestore(&priv->lock, flags);
691         IWL_DEBUG_ASSOC(priv,
692                         "beacon interval %d beacon timer %d beacon tim %d\n",
693                         le16_to_cpu(priv->rxon_timing.beacon_interval),
694                         le32_to_cpu(priv->rxon_timing.beacon_init_val),
695                         le16_to_cpu(priv->rxon_timing.atim_window));
696 }
697 EXPORT_SYMBOL(iwl_setup_rxon_timing);
698
699 void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
700 {
701         struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
702
703         if (hw_decrypt)
704                 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
705         else
706                 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
707
708 }
709 EXPORT_SYMBOL(iwl_set_rxon_hwcrypto);
710
711 /**
712  * iwl_check_rxon_cmd - validate RXON structure is valid
713  *
714  * NOTE:  This is really only useful during development and can eventually
715  * be #ifdef'd out once the driver is stable and folks aren't actively
716  * making changes
717  */
718 int iwl_check_rxon_cmd(struct iwl_priv *priv)
719 {
720         int error = 0;
721         int counter = 1;
722         struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
723
724         if (rxon->flags & RXON_FLG_BAND_24G_MSK) {
725                 error |= le32_to_cpu(rxon->flags &
726                                 (RXON_FLG_TGJ_NARROW_BAND_MSK |
727                                  RXON_FLG_RADAR_DETECT_MSK));
728                 if (error)
729                         IWL_WARN(priv, "check 24G fields %d | %d\n",
730                                     counter++, error);
731         } else {
732                 error |= (rxon->flags & RXON_FLG_SHORT_SLOT_MSK) ?
733                                 0 : le32_to_cpu(RXON_FLG_SHORT_SLOT_MSK);
734                 if (error)
735                         IWL_WARN(priv, "check 52 fields %d | %d\n",
736                                     counter++, error);
737                 error |= le32_to_cpu(rxon->flags & RXON_FLG_CCK_MSK);
738                 if (error)
739                         IWL_WARN(priv, "check 52 CCK %d | %d\n",
740                                     counter++, error);
741         }
742         error |= (rxon->node_addr[0] | rxon->bssid_addr[0]) & 0x1;
743         if (error)
744                 IWL_WARN(priv, "check mac addr %d | %d\n", counter++, error);
745
746         /* make sure basic rates 6Mbps and 1Mbps are supported */
747         error |= (((rxon->ofdm_basic_rates & IWL_RATE_6M_MASK) == 0) &&
748                   ((rxon->cck_basic_rates & IWL_RATE_1M_MASK) == 0));
749         if (error)
750                 IWL_WARN(priv, "check basic rate %d | %d\n", counter++, error);
751
752         error |= (le16_to_cpu(rxon->assoc_id) > 2007);
753         if (error)
754                 IWL_WARN(priv, "check assoc id %d | %d\n", counter++, error);
755
756         error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK))
757                         == (RXON_FLG_CCK_MSK | RXON_FLG_SHORT_SLOT_MSK));
758         if (error)
759                 IWL_WARN(priv, "check CCK and short slot %d | %d\n",
760                             counter++, error);
761
762         error |= ((rxon->flags & (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK))
763                         == (RXON_FLG_CCK_MSK | RXON_FLG_AUTO_DETECT_MSK));
764         if (error)
765                 IWL_WARN(priv, "check CCK & auto detect %d | %d\n",
766                             counter++, error);
767
768         error |= ((rxon->flags & (RXON_FLG_AUTO_DETECT_MSK |
769                         RXON_FLG_TGG_PROTECT_MSK)) == RXON_FLG_TGG_PROTECT_MSK);
770         if (error)
771                 IWL_WARN(priv, "check TGG and auto detect %d | %d\n",
772                             counter++, error);
773
774         if (error)
775                 IWL_WARN(priv, "Tuning to channel %d\n",
776                             le16_to_cpu(rxon->channel));
777
778         if (error) {
779                 IWL_ERR(priv, "Not a valid iwl_rxon_assoc_cmd field values\n");
780                 return -1;
781         }
782         return 0;
783 }
784 EXPORT_SYMBOL(iwl_check_rxon_cmd);
785
786 /**
787  * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
788  * @priv: staging_rxon is compared to active_rxon
789  *
790  * If the RXON structure is changing enough to require a new tune,
791  * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
792  * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
793  */
794 int iwl_full_rxon_required(struct iwl_priv *priv)
795 {
796
797         /* These items are only settable from the full RXON command */
798         if (!(iwl_is_associated(priv)) ||
799             compare_ether_addr(priv->staging_rxon.bssid_addr,
800                                priv->active_rxon.bssid_addr) ||
801             compare_ether_addr(priv->staging_rxon.node_addr,
802                                priv->active_rxon.node_addr) ||
803             compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
804                                priv->active_rxon.wlap_bssid_addr) ||
805             (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
806             (priv->staging_rxon.channel != priv->active_rxon.channel) ||
807             (priv->staging_rxon.air_propagation !=
808              priv->active_rxon.air_propagation) ||
809             (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
810              priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
811             (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
812              priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
813             (priv->staging_rxon.ofdm_ht_triple_stream_basic_rates !=
814              priv->active_rxon.ofdm_ht_triple_stream_basic_rates) ||
815             (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
816                 return 1;
817
818         /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
819          * be updated with the RXON_ASSOC command -- however only some
820          * flag transitions are allowed using RXON_ASSOC */
821
822         /* Check if we are not switching bands */
823         if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
824             (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
825                 return 1;
826
827         /* Check if we are switching association toggle */
828         if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
829                 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
830                 return 1;
831
832         return 0;
833 }
834 EXPORT_SYMBOL(iwl_full_rxon_required);
835
836 u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv)
837 {
838         int i;
839         int rate_mask;
840
841         /* Set rate mask*/
842         if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
843                 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
844         else
845                 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
846
847         /* Find lowest valid rate */
848         for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
849                                         i = iwl_rates[i].next_ieee) {
850                 if (rate_mask & (1 << i))
851                         return iwl_rates[i].plcp;
852         }
853
854         /* No valid rate was found. Assign the lowest one */
855         if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
856                 return IWL_RATE_1M_PLCP;
857         else
858                 return IWL_RATE_6M_PLCP;
859 }
860 EXPORT_SYMBOL(iwl_rate_get_lowest_plcp);
861
862 void iwl_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_info *ht_info)
863 {
864         struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
865
866         if (!ht_info->is_ht) {
867                 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
868                         RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK |
869                         RXON_FLG_HT40_PROT_MSK |
870                         RXON_FLG_HT_PROT_MSK);
871                 return;
872         }
873
874         /* FIXME: if the definition of ht_protection changed, the "translation"
875          * will be needed for rxon->flags
876          */
877         rxon->flags |= cpu_to_le32(ht_info->ht_protection << RXON_FLG_HT_OPERATING_MODE_POS);
878
879         /* Set up channel bandwidth:
880          * 20 MHz only, 20/40 mixed or pure 40 if ht40 ok */
881         /* clear the HT channel mode before set the mode */
882         rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MSK |
883                          RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
884         if (iwl_is_ht40_tx_allowed(priv, NULL)) {
885                 /* pure ht40 */
886                 if (ht_info->ht_protection == IEEE80211_HT_OP_MODE_PROTECTION_20MHZ) {
887                         rxon->flags |= RXON_FLG_CHANNEL_MODE_PURE_40;
888                         /* Note: control channel is opposite of extension channel */
889                         switch (ht_info->extension_chan_offset) {
890                         case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
891                                 rxon->flags &= ~RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
892                                 break;
893                         case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
894                                 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
895                                 break;
896                         }
897                 } else {
898                         /* Note: control channel is opposite of extension channel */
899                         switch (ht_info->extension_chan_offset) {
900                         case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
901                                 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
902                                 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
903                                 break;
904                         case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
905                                 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
906                                 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED;
907                                 break;
908                         case IEEE80211_HT_PARAM_CHA_SEC_NONE:
909                         default:
910                                 /* channel location only valid if in Mixed mode */
911                                 IWL_ERR(priv, "invalid extension channel offset\n");
912                                 break;
913                         }
914                 }
915         } else {
916                 rxon->flags |= RXON_FLG_CHANNEL_MODE_LEGACY;
917         }
918
919         if (priv->cfg->ops->hcmd->set_rxon_chain)
920                 priv->cfg->ops->hcmd->set_rxon_chain(priv);
921
922         IWL_DEBUG_ASSOC(priv, "supported HT rate 0x%X 0x%X 0x%X "
923                         "rxon flags 0x%X operation mode :0x%X "
924                         "extension channel offset 0x%x\n",
925                         ht_info->mcs.rx_mask[0],
926                         ht_info->mcs.rx_mask[1],
927                         ht_info->mcs.rx_mask[2],
928                         le32_to_cpu(rxon->flags), ht_info->ht_protection,
929                         ht_info->extension_chan_offset);
930         return;
931 }
932 EXPORT_SYMBOL(iwl_set_rxon_ht);
933
934 #define IWL_NUM_RX_CHAINS_MULTIPLE      3
935 #define IWL_NUM_RX_CHAINS_SINGLE        2
936 #define IWL_NUM_IDLE_CHAINS_DUAL        2
937 #define IWL_NUM_IDLE_CHAINS_SINGLE      1
938
939 /* Determine how many receiver/antenna chains to use.
940  * More provides better reception via diversity.  Fewer saves power.
941  * MIMO (dual stream) requires at least 2, but works better with 3.
942  * This does not determine *which* chains to use, just how many.
943  */
944 static int iwl_get_active_rx_chain_count(struct iwl_priv *priv)
945 {
946         bool is_single = is_single_rx_stream(priv);
947         bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
948
949         /* # of Rx chains to use when expecting MIMO. */
950         if (is_single || (!is_cam && (priv->current_ht_config.sm_ps ==
951                                                  WLAN_HT_CAP_SM_PS_STATIC)))
952                 return IWL_NUM_RX_CHAINS_SINGLE;
953         else
954                 return IWL_NUM_RX_CHAINS_MULTIPLE;
955 }
956
957 static int iwl_get_idle_rx_chain_count(struct iwl_priv *priv, int active_cnt)
958 {
959         int idle_cnt;
960         bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
961         /* # Rx chains when idling and maybe trying to save power */
962         switch (priv->current_ht_config.sm_ps) {
963         case WLAN_HT_CAP_SM_PS_STATIC:
964         case WLAN_HT_CAP_SM_PS_DYNAMIC:
965                 idle_cnt = (is_cam) ? IWL_NUM_IDLE_CHAINS_DUAL :
966                                         IWL_NUM_IDLE_CHAINS_SINGLE;
967                 break;
968         case WLAN_HT_CAP_SM_PS_DISABLED:
969                 idle_cnt = (is_cam) ? active_cnt : IWL_NUM_IDLE_CHAINS_SINGLE;
970                 break;
971         case WLAN_HT_CAP_SM_PS_INVALID:
972         default:
973                 IWL_ERR(priv, "invalid mimo ps mode %d\n",
974                            priv->current_ht_config.sm_ps);
975                 WARN_ON(1);
976                 idle_cnt = -1;
977                 break;
978         }
979         return idle_cnt;
980 }
981
982 /* up to 4 chains */
983 static u8 iwl_count_chain_bitmap(u32 chain_bitmap)
984 {
985         u8 res;
986         res = (chain_bitmap & BIT(0)) >> 0;
987         res += (chain_bitmap & BIT(1)) >> 1;
988         res += (chain_bitmap & BIT(2)) >> 2;
989         res += (chain_bitmap & BIT(4)) >> 4;
990         return res;
991 }
992
993 /**
994  * iwl_is_monitor_mode - Determine if interface in monitor mode
995  *
996  * priv->iw_mode is set in add_interface, but add_interface is
997  * never called for monitor mode. The only way mac80211 informs us about
998  * monitor mode is through configuring filters (call to configure_filter).
999  */
1000 bool iwl_is_monitor_mode(struct iwl_priv *priv)
1001 {
1002         return !!(priv->staging_rxon.filter_flags & RXON_FILTER_PROMISC_MSK);
1003 }
1004 EXPORT_SYMBOL(iwl_is_monitor_mode);
1005
1006 /**
1007  * iwl_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
1008  *
1009  * Selects how many and which Rx receivers/antennas/chains to use.
1010  * This should not be used for scan command ... it puts data in wrong place.
1011  */
1012 void iwl_set_rxon_chain(struct iwl_priv *priv)
1013 {
1014         bool is_single = is_single_rx_stream(priv);
1015         bool is_cam = !test_bit(STATUS_POWER_PMI, &priv->status);
1016         u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
1017         u32 active_chains;
1018         u16 rx_chain;
1019
1020         /* Tell uCode which antennas are actually connected.
1021          * Before first association, we assume all antennas are connected.
1022          * Just after first association, iwl_chain_noise_calibration()
1023          *    checks which antennas actually *are* connected. */
1024          if (priv->chain_noise_data.active_chains)
1025                 active_chains = priv->chain_noise_data.active_chains;
1026         else
1027                 active_chains = priv->hw_params.valid_rx_ant;
1028
1029         rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
1030
1031         /* How many receivers should we use? */
1032         active_rx_cnt = iwl_get_active_rx_chain_count(priv);
1033         idle_rx_cnt = iwl_get_idle_rx_chain_count(priv, active_rx_cnt);
1034
1035
1036         /* correct rx chain count according hw settings
1037          * and chain noise calibration
1038          */
1039         valid_rx_cnt = iwl_count_chain_bitmap(active_chains);
1040         if (valid_rx_cnt < active_rx_cnt)
1041                 active_rx_cnt = valid_rx_cnt;
1042
1043         if (valid_rx_cnt < idle_rx_cnt)
1044                 idle_rx_cnt = valid_rx_cnt;
1045
1046         rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
1047         rx_chain |= idle_rx_cnt  << RXON_RX_CHAIN_CNT_POS;
1048
1049         /* copied from 'iwl_bg_request_scan()' */
1050         /* Force use of chains B and C (0x6) for Rx for 4965
1051          * Avoid A (0x1) because of its off-channel reception on A-band.
1052          * MIMO is not used here, but value is required */
1053         if (iwl_is_monitor_mode(priv) &&
1054             !(priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) &&
1055             ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) == CSR_HW_REV_TYPE_4965)) {
1056                 rx_chain = ANT_ABC << RXON_RX_CHAIN_VALID_POS;
1057                 rx_chain |= ANT_BC << RXON_RX_CHAIN_FORCE_SEL_POS;
1058                 rx_chain |= ANT_ABC << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
1059                 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
1060         }
1061
1062         priv->staging_rxon.rx_chain = cpu_to_le16(rx_chain);
1063
1064         if (!is_single && (active_rx_cnt >= IWL_NUM_RX_CHAINS_SINGLE) && is_cam)
1065                 priv->staging_rxon.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1066         else
1067                 priv->staging_rxon.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1068
1069         IWL_DEBUG_ASSOC(priv, "rx_chain=0x%X active=%d idle=%d\n",
1070                         priv->staging_rxon.rx_chain,
1071                         active_rx_cnt, idle_rx_cnt);
1072
1073         WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1074                 active_rx_cnt < idle_rx_cnt);
1075 }
1076 EXPORT_SYMBOL(iwl_set_rxon_chain);
1077
1078 /**
1079  * iwl_set_rxon_channel - Set the phymode and channel values in staging RXON
1080  * @phymode: MODE_IEEE80211A sets to 5.2GHz; all else set to 2.4GHz
1081  * @channel: Any channel valid for the requested phymode
1082
1083  * In addition to setting the staging RXON, priv->phymode is also set.
1084  *
1085  * NOTE:  Does not commit to the hardware; it sets appropriate bit fields
1086  * in the staging RXON flag structure based on the phymode
1087  */
1088 int iwl_set_rxon_channel(struct iwl_priv *priv, struct ieee80211_channel *ch)
1089 {
1090         enum ieee80211_band band = ch->band;
1091         u16 channel = ieee80211_frequency_to_channel(ch->center_freq);
1092
1093         if (!iwl_get_channel_info(priv, band, channel)) {
1094                 IWL_DEBUG_INFO(priv, "Could not set channel to %d [%d]\n",
1095                                channel, band);
1096                 return -EINVAL;
1097         }
1098
1099         if ((le16_to_cpu(priv->staging_rxon.channel) == channel) &&
1100             (priv->band == band))
1101                 return 0;
1102
1103         priv->staging_rxon.channel = cpu_to_le16(channel);
1104         if (band == IEEE80211_BAND_5GHZ)
1105                 priv->staging_rxon.flags &= ~RXON_FLG_BAND_24G_MSK;
1106         else
1107                 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1108
1109         priv->band = band;
1110
1111         IWL_DEBUG_INFO(priv, "Staging channel set to %d [%d]\n", channel, band);
1112
1113         return 0;
1114 }
1115 EXPORT_SYMBOL(iwl_set_rxon_channel);
1116
1117 void iwl_set_flags_for_band(struct iwl_priv *priv,
1118                             enum ieee80211_band band)
1119 {
1120         if (band == IEEE80211_BAND_5GHZ) {
1121                 priv->staging_rxon.flags &=
1122                     ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
1123                       | RXON_FLG_CCK_MSK);
1124                 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1125         } else {
1126                 /* Copied from iwl_post_associate() */
1127                 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1128                         priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1129                 else
1130                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1131
1132                 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
1133                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1134
1135                 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
1136                 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
1137                 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
1138         }
1139 }
1140
1141 /*
1142  * initialize rxon structure with default values from eeprom
1143  */
1144 void iwl_connection_init_rx_config(struct iwl_priv *priv, int mode)
1145 {
1146         const struct iwl_channel_info *ch_info;
1147
1148         memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
1149
1150         switch (mode) {
1151         case NL80211_IFTYPE_AP:
1152                 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
1153                 break;
1154
1155         case NL80211_IFTYPE_STATION:
1156                 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
1157                 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
1158                 break;
1159
1160         case NL80211_IFTYPE_ADHOC:
1161                 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
1162                 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
1163                 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
1164                                                   RXON_FILTER_ACCEPT_GRP_MSK;
1165                 break;
1166
1167         default:
1168                 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
1169                 break;
1170         }
1171
1172 #if 0
1173         /* TODO:  Figure out when short_preamble would be set and cache from
1174          * that */
1175         if (!hw_to_local(priv->hw)->short_preamble)
1176                 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1177         else
1178                 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1179 #endif
1180
1181         ch_info = iwl_get_channel_info(priv, priv->band,
1182                                        le16_to_cpu(priv->active_rxon.channel));
1183
1184         if (!ch_info)
1185                 ch_info = &priv->channel_info[0];
1186
1187         /*
1188          * in some case A channels are all non IBSS
1189          * in this case force B/G channel
1190          */
1191         if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
1192             !(is_channel_ibss(ch_info)))
1193                 ch_info = &priv->channel_info[0];
1194
1195         priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
1196         priv->band = ch_info->band;
1197
1198         iwl_set_flags_for_band(priv, priv->band);
1199
1200         priv->staging_rxon.ofdm_basic_rates =
1201             (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1202         priv->staging_rxon.cck_basic_rates =
1203             (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1204
1205         /* clear both MIX and PURE40 mode flag */
1206         priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED |
1207                                         RXON_FLG_CHANNEL_MODE_PURE_40);
1208         memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1209         memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
1210         priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
1211         priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
1212         priv->staging_rxon.ofdm_ht_triple_stream_basic_rates = 0xff;
1213 }
1214 EXPORT_SYMBOL(iwl_connection_init_rx_config);
1215
1216 static void iwl_set_rate(struct iwl_priv *priv)
1217 {
1218         const struct ieee80211_supported_band *hw = NULL;
1219         struct ieee80211_rate *rate;
1220         int i;
1221
1222         hw = iwl_get_hw_mode(priv, priv->band);
1223         if (!hw) {
1224                 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
1225                 return;
1226         }
1227
1228         priv->active_rate = 0;
1229         priv->active_rate_basic = 0;
1230
1231         for (i = 0; i < hw->n_bitrates; i++) {
1232                 rate = &(hw->bitrates[i]);
1233                 if (rate->hw_value < IWL_RATE_COUNT)
1234                         priv->active_rate |= (1 << rate->hw_value);
1235         }
1236
1237         IWL_DEBUG_RATE(priv, "Set active_rate = %0x, active_rate_basic = %0x\n",
1238                        priv->active_rate, priv->active_rate_basic);
1239
1240         /*
1241          * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
1242          * otherwise set it to the default of all CCK rates and 6, 12, 24 for
1243          * OFDM
1244          */
1245         if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
1246                 priv->staging_rxon.cck_basic_rates =
1247                     ((priv->active_rate_basic &
1248                       IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
1249         else
1250                 priv->staging_rxon.cck_basic_rates =
1251                     (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
1252
1253         if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
1254                 priv->staging_rxon.ofdm_basic_rates =
1255                     ((priv->active_rate_basic &
1256                       (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
1257                       IWL_FIRST_OFDM_RATE) & 0xFF;
1258         else
1259                 priv->staging_rxon.ofdm_basic_rates =
1260                    (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
1261 }
1262
1263 void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
1264 {
1265         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1266         struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
1267         struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
1268         IWL_DEBUG_11H(priv, "CSA notif: channel %d, status %d\n",
1269                       le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1270         rxon->channel = csa->channel;
1271         priv->staging_rxon.channel = csa->channel;
1272 }
1273 EXPORT_SYMBOL(iwl_rx_csa);
1274
1275 #ifdef CONFIG_IWLWIFI_DEBUG
1276 static void iwl_print_rx_config_cmd(struct iwl_priv *priv)
1277 {
1278         struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
1279
1280         IWL_DEBUG_RADIO(priv, "RX CONFIG:\n");
1281         iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
1282         IWL_DEBUG_RADIO(priv, "u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
1283         IWL_DEBUG_RADIO(priv, "u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
1284         IWL_DEBUG_RADIO(priv, "u32 filter_flags: 0x%08x\n",
1285                         le32_to_cpu(rxon->filter_flags));
1286         IWL_DEBUG_RADIO(priv, "u8 dev_type: 0x%x\n", rxon->dev_type);
1287         IWL_DEBUG_RADIO(priv, "u8 ofdm_basic_rates: 0x%02x\n",
1288                         rxon->ofdm_basic_rates);
1289         IWL_DEBUG_RADIO(priv, "u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
1290         IWL_DEBUG_RADIO(priv, "u8[6] node_addr: %pM\n", rxon->node_addr);
1291         IWL_DEBUG_RADIO(priv, "u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
1292         IWL_DEBUG_RADIO(priv, "u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
1293 }
1294
1295 static const char *desc_lookup_text[] = {
1296         "OK",
1297         "FAIL",
1298         "BAD_PARAM",
1299         "BAD_CHECKSUM",
1300         "NMI_INTERRUPT_WDG",
1301         "SYSASSERT",
1302         "FATAL_ERROR",
1303         "BAD_COMMAND",
1304         "HW_ERROR_TUNE_LOCK",
1305         "HW_ERROR_TEMPERATURE",
1306         "ILLEGAL_CHAN_FREQ",
1307         "VCC_NOT_STABLE",
1308         "FH_ERROR",
1309         "NMI_INTERRUPT_HOST",
1310         "NMI_INTERRUPT_ACTION_PT",
1311         "NMI_INTERRUPT_UNKNOWN",
1312         "UCODE_VERSION_MISMATCH",
1313         "HW_ERROR_ABS_LOCK",
1314         "HW_ERROR_CAL_LOCK_FAIL",
1315         "NMI_INTERRUPT_INST_ACTION_PT",
1316         "NMI_INTERRUPT_DATA_ACTION_PT",
1317         "NMI_TRM_HW_ER",
1318         "NMI_INTERRUPT_TRM",
1319         "NMI_INTERRUPT_BREAK_POINT"
1320         "DEBUG_0",
1321         "DEBUG_1",
1322         "DEBUG_2",
1323         "DEBUG_3",
1324         "UNKNOWN"
1325 };
1326
1327 static const char *desc_lookup(int i)
1328 {
1329         int max = ARRAY_SIZE(desc_lookup_text) - 1;
1330
1331         if (i < 0 || i > max)
1332                 i = max;
1333
1334         return desc_lookup_text[i];
1335 }
1336
1337 #define ERROR_START_OFFSET  (1 * sizeof(u32))
1338 #define ERROR_ELEM_SIZE     (7 * sizeof(u32))
1339
1340 static void iwl_dump_nic_error_log(struct iwl_priv *priv)
1341 {
1342         u32 data2, line;
1343         u32 desc, time, count, base, data1;
1344         u32 blink1, blink2, ilink1, ilink2;
1345
1346         if (priv->ucode_type == UCODE_INIT)
1347                 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
1348         else
1349                 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
1350
1351         if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
1352                 IWL_ERR(priv, "Not valid error log pointer 0x%08X\n", base);
1353                 return;
1354         }
1355
1356         count = iwl_read_targ_mem(priv, base);
1357
1358         if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
1359                 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
1360                 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
1361                         priv->status, count);
1362         }
1363
1364         desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
1365         blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
1366         blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
1367         ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
1368         ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
1369         data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
1370         data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
1371         line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
1372         time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
1373
1374         IWL_ERR(priv, "Desc                               Time       "
1375                 "data1      data2      line\n");
1376         IWL_ERR(priv, "%-28s (#%02d) %010u 0x%08X 0x%08X %u\n",
1377                 desc_lookup(desc), desc, time, data1, data2, line);
1378         IWL_ERR(priv, "blink1  blink2  ilink1  ilink2\n");
1379         IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X\n", blink1, blink2,
1380                 ilink1, ilink2);
1381
1382 }
1383
1384 #define EVENT_START_OFFSET  (4 * sizeof(u32))
1385
1386 /**
1387  * iwl_print_event_log - Dump error event log to syslog
1388  *
1389  */
1390 static void iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
1391                                 u32 num_events, u32 mode)
1392 {
1393         u32 i;
1394         u32 base;       /* SRAM byte address of event log header */
1395         u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
1396         u32 ptr;        /* SRAM byte address of log data */
1397         u32 ev, time, data; /* event log data */
1398
1399         if (num_events == 0)
1400                 return;
1401         if (priv->ucode_type == UCODE_INIT)
1402                 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1403         else
1404                 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1405
1406         if (mode == 0)
1407                 event_size = 2 * sizeof(u32);
1408         else
1409                 event_size = 3 * sizeof(u32);
1410
1411         ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
1412
1413         /* "time" is actually "data" for mode 0 (no timestamp).
1414         * place event id # at far right for easier visual parsing. */
1415         for (i = 0; i < num_events; i++) {
1416                 ev = iwl_read_targ_mem(priv, ptr);
1417                 ptr += sizeof(u32);
1418                 time = iwl_read_targ_mem(priv, ptr);
1419                 ptr += sizeof(u32);
1420                 if (mode == 0) {
1421                         /* data, ev */
1422                         IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n", time, ev);
1423                 } else {
1424                         data = iwl_read_targ_mem(priv, ptr);
1425                         ptr += sizeof(u32);
1426                         IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
1427                                         time, data, ev);
1428                 }
1429         }
1430 }
1431
1432 void iwl_dump_nic_event_log(struct iwl_priv *priv)
1433 {
1434         u32 base;       /* SRAM byte address of event log header */
1435         u32 capacity;   /* event log capacity in # entries */
1436         u32 mode;       /* 0 - no timestamp, 1 - timestamp recorded */
1437         u32 num_wraps;  /* # times uCode wrapped to top of log */
1438         u32 next_entry; /* index of next entry to be written by uCode */
1439         u32 size;       /* # entries that we'll print */
1440
1441         if (priv->ucode_type == UCODE_INIT)
1442                 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
1443         else
1444                 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
1445
1446         if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
1447                 IWL_ERR(priv, "Invalid event log pointer 0x%08X\n", base);
1448                 return;
1449         }
1450
1451         /* event log header */
1452         capacity = iwl_read_targ_mem(priv, base);
1453         mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
1454         num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
1455         next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
1456
1457         size = num_wraps ? capacity : next_entry;
1458
1459         /* bail out if nothing in log */
1460         if (size == 0) {
1461                 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
1462                 return;
1463         }
1464
1465         IWL_ERR(priv, "Start IWL Event Log Dump: display count %d, wraps %d\n",
1466                         size, num_wraps);
1467
1468         /* if uCode has wrapped back to top of log, start at the oldest entry,
1469          * i.e the next one that uCode would fill. */
1470         if (num_wraps)
1471                 iwl_print_event_log(priv, next_entry,
1472                                         capacity - next_entry, mode);
1473         /* (then/else) start at top of log */
1474         iwl_print_event_log(priv, 0, next_entry, mode);
1475
1476 }
1477 #endif
1478 /**
1479  * iwl_irq_handle_error - called for HW or SW error interrupt from card
1480  */
1481 void iwl_irq_handle_error(struct iwl_priv *priv)
1482 {
1483         /* Set the FW error flag -- cleared on iwl_down */
1484         set_bit(STATUS_FW_ERROR, &priv->status);
1485
1486         /* Cancel currently queued command. */
1487         clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1488
1489 #ifdef CONFIG_IWLWIFI_DEBUG
1490         if (iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) {
1491                 iwl_dump_nic_error_log(priv);
1492                 iwl_dump_nic_event_log(priv);
1493                 iwl_print_rx_config_cmd(priv);
1494         }
1495 #endif
1496
1497         wake_up_interruptible(&priv->wait_command_queue);
1498
1499         /* Keep the restart process from trying to send host
1500          * commands by clearing the INIT status bit */
1501         clear_bit(STATUS_READY, &priv->status);
1502
1503         if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
1504                 IWL_DEBUG(priv, IWL_DL_FW_ERRORS,
1505                           "Restarting adapter due to uCode error.\n");
1506
1507                 if (priv->cfg->mod_params->restart_fw)
1508                         queue_work(priv->workqueue, &priv->restart);
1509         }
1510 }
1511 EXPORT_SYMBOL(iwl_irq_handle_error);
1512
1513 void iwl_configure_filter(struct ieee80211_hw *hw,
1514                           unsigned int changed_flags,
1515                           unsigned int *total_flags,
1516                           int mc_count, struct dev_addr_list *mc_list)
1517 {
1518         struct iwl_priv *priv = hw->priv;
1519         __le32 *filter_flags = &priv->staging_rxon.filter_flags;
1520
1521         IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
1522                         changed_flags, *total_flags);
1523
1524         if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
1525                 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
1526                         *filter_flags |= RXON_FILTER_PROMISC_MSK;
1527                 else
1528                         *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
1529         }
1530         if (changed_flags & FIF_ALLMULTI) {
1531                 if (*total_flags & FIF_ALLMULTI)
1532                         *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
1533                 else
1534                         *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
1535         }
1536         if (changed_flags & FIF_CONTROL) {
1537                 if (*total_flags & FIF_CONTROL)
1538                         *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
1539                 else
1540                         *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
1541         }
1542         if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
1543                 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
1544                         *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
1545                 else
1546                         *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
1547         }
1548
1549         /* We avoid iwl_commit_rxon here to commit the new filter flags
1550          * since mac80211 will call ieee80211_hw_config immediately.
1551          * (mc_list is not supported at this time). Otherwise, we need to
1552          * queue a background iwl_commit_rxon work.
1553          */
1554
1555         *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
1556                         FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
1557 }
1558 EXPORT_SYMBOL(iwl_configure_filter);
1559
1560 int iwl_setup_mac(struct iwl_priv *priv)
1561 {
1562         int ret;
1563         struct ieee80211_hw *hw = priv->hw;
1564         hw->rate_control_algorithm = "iwl-agn-rs";
1565
1566         /* Tell mac80211 our characteristics */
1567         hw->flags = IEEE80211_HW_SIGNAL_DBM |
1568                     IEEE80211_HW_NOISE_DBM |
1569                     IEEE80211_HW_AMPDU_AGGREGATION |
1570                     IEEE80211_HW_SPECTRUM_MGMT |
1571                     IEEE80211_HW_SUPPORTS_PS |
1572                     IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
1573         hw->wiphy->interface_modes =
1574                 BIT(NL80211_IFTYPE_STATION) |
1575                 BIT(NL80211_IFTYPE_ADHOC);
1576
1577         hw->wiphy->custom_regulatory = true;
1578
1579         /* Firmware does not support this */
1580         hw->wiphy->disable_beacon_hints = true;
1581
1582         hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
1583         /* we create the 802.11 header and a zero-length SSID element */
1584         hw->wiphy->max_scan_ie_len = IWL_MAX_PROBE_REQUEST - 24 - 2;
1585
1586         /* Default value; 4 EDCA QOS priorities */
1587         hw->queues = 4;
1588
1589         hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
1590
1591         if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
1592                 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
1593                         &priv->bands[IEEE80211_BAND_2GHZ];
1594         if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
1595                 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
1596                         &priv->bands[IEEE80211_BAND_5GHZ];
1597
1598         ret = ieee80211_register_hw(priv->hw);
1599         if (ret) {
1600                 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
1601                 return ret;
1602         }
1603         priv->mac80211_registered = 1;
1604
1605         return 0;
1606 }
1607 EXPORT_SYMBOL(iwl_setup_mac);
1608
1609 int iwl_set_hw_params(struct iwl_priv *priv)
1610 {
1611         priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
1612         priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
1613         if (priv->cfg->mod_params->amsdu_size_8K)
1614                 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
1615         else
1616                 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
1617         priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
1618
1619         priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
1620
1621         if (priv->cfg->mod_params->disable_11n)
1622                 priv->cfg->sku &= ~IWL_SKU_N;
1623
1624         /* Device-specific setup */
1625         return priv->cfg->ops->lib->set_hw_params(priv);
1626 }
1627 EXPORT_SYMBOL(iwl_set_hw_params);
1628
1629 int iwl_init_drv(struct iwl_priv *priv)
1630 {
1631         int ret;
1632
1633         priv->ibss_beacon = NULL;
1634
1635         spin_lock_init(&priv->lock);
1636         spin_lock_init(&priv->sta_lock);
1637         spin_lock_init(&priv->hcmd_lock);
1638
1639         INIT_LIST_HEAD(&priv->free_frames);
1640
1641         mutex_init(&priv->mutex);
1642
1643         /* Clear the driver's (not device's) station table */
1644         iwl_clear_stations_table(priv);
1645
1646         priv->data_retry_limit = -1;
1647         priv->ieee_channels = NULL;
1648         priv->ieee_rates = NULL;
1649         priv->band = IEEE80211_BAND_2GHZ;
1650
1651         priv->iw_mode = NL80211_IFTYPE_STATION;
1652
1653         priv->current_ht_config.sm_ps = WLAN_HT_CAP_SM_PS_DISABLED;
1654
1655         /* Choose which receivers/antennas to use */
1656         if (priv->cfg->ops->hcmd->set_rxon_chain)
1657                 priv->cfg->ops->hcmd->set_rxon_chain(priv);
1658
1659         iwl_init_scan_params(priv);
1660
1661         iwl_reset_qos(priv);
1662
1663         priv->qos_data.qos_active = 0;
1664         priv->qos_data.qos_cap.val = 0;
1665
1666         priv->rates_mask = IWL_RATES_MASK;
1667         priv->tx_power_user_lmt = IWL_TX_POWER_TARGET_POWER_MAX;
1668
1669         ret = iwl_init_channel_map(priv);
1670         if (ret) {
1671                 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
1672                 goto err;
1673         }
1674
1675         ret = iwlcore_init_geos(priv);
1676         if (ret) {
1677                 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
1678                 goto err_free_channel_map;
1679         }
1680         iwlcore_init_hw_rates(priv, priv->ieee_rates);
1681
1682         return 0;
1683
1684 err_free_channel_map:
1685         iwl_free_channel_map(priv);
1686 err:
1687         return ret;
1688 }
1689 EXPORT_SYMBOL(iwl_init_drv);
1690
1691 int iwl_set_tx_power(struct iwl_priv *priv, s8 tx_power, bool force)
1692 {
1693         int ret = 0;
1694         if (tx_power < IWL_TX_POWER_TARGET_POWER_MIN) {
1695                 IWL_WARN(priv, "Requested user TXPOWER %d below lower limit %d.\n",
1696                          tx_power,
1697                          IWL_TX_POWER_TARGET_POWER_MIN);
1698                 return -EINVAL;
1699         }
1700
1701         if (tx_power > IWL_TX_POWER_TARGET_POWER_MAX) {
1702                 IWL_WARN(priv, "Requested user TXPOWER %d above upper limit %d.\n",
1703                          tx_power,
1704                          IWL_TX_POWER_TARGET_POWER_MAX);
1705                 return -EINVAL;
1706         }
1707
1708         if (priv->tx_power_user_lmt != tx_power)
1709                 force = true;
1710
1711         priv->tx_power_user_lmt = tx_power;
1712
1713         /* if nic is not up don't send command */
1714         if (!iwl_is_ready_rf(priv))
1715                 return ret;
1716
1717         if (force && priv->cfg->ops->lib->send_tx_power)
1718                 ret = priv->cfg->ops->lib->send_tx_power(priv);
1719
1720         return ret;
1721 }
1722 EXPORT_SYMBOL(iwl_set_tx_power);
1723
1724 void iwl_uninit_drv(struct iwl_priv *priv)
1725 {
1726         iwl_calib_free_results(priv);
1727         iwlcore_free_geos(priv);
1728         iwl_free_channel_map(priv);
1729         kfree(priv->scan);
1730 }
1731 EXPORT_SYMBOL(iwl_uninit_drv);
1732
1733 #define ICT_COUNT (PAGE_SIZE/sizeof(u32))
1734
1735 /* Free dram table */
1736 void iwl_free_isr_ict(struct iwl_priv *priv)
1737 {
1738         if (priv->ict_tbl_vir) {
1739                 pci_free_consistent(priv->pci_dev, (sizeof(u32) * ICT_COUNT) +
1740                                         PAGE_SIZE, priv->ict_tbl_vir,
1741                                         priv->ict_tbl_dma);
1742                 priv->ict_tbl_vir = NULL;
1743         }
1744 }
1745 EXPORT_SYMBOL(iwl_free_isr_ict);
1746
1747
1748 /* allocate dram shared table it is a PAGE_SIZE aligned
1749  * also reset all data related to ICT table interrupt.
1750  */
1751 int iwl_alloc_isr_ict(struct iwl_priv *priv)
1752 {
1753
1754         if (priv->cfg->use_isr_legacy)
1755                 return 0;
1756         /* allocate shrared data table */
1757         priv->ict_tbl_vir = pci_alloc_consistent(priv->pci_dev, (sizeof(u32) *
1758                                                   ICT_COUNT) + PAGE_SIZE,
1759                                                   &priv->ict_tbl_dma);
1760         if (!priv->ict_tbl_vir)
1761                 return -ENOMEM;
1762
1763         /* align table to PAGE_SIZE boundry */
1764         priv->aligned_ict_tbl_dma = ALIGN(priv->ict_tbl_dma, PAGE_SIZE);
1765
1766         IWL_DEBUG_ISR(priv, "ict dma addr %Lx dma aligned %Lx diff %d\n",
1767                              (unsigned long long)priv->ict_tbl_dma,
1768                              (unsigned long long)priv->aligned_ict_tbl_dma,
1769                         (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1770
1771         priv->ict_tbl =  priv->ict_tbl_vir +
1772                           (priv->aligned_ict_tbl_dma - priv->ict_tbl_dma);
1773
1774         IWL_DEBUG_ISR(priv, "ict vir addr %p vir aligned %p diff %d\n",
1775                              priv->ict_tbl, priv->ict_tbl_vir,
1776                         (int)(priv->aligned_ict_tbl_dma - priv->ict_tbl_dma));
1777
1778         /* reset table and index to all 0 */
1779         memset(priv->ict_tbl_vir,0, (sizeof(u32) * ICT_COUNT) + PAGE_SIZE);
1780         priv->ict_index = 0;
1781
1782         /* add periodic RX interrupt */
1783         priv->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
1784         return 0;
1785 }
1786 EXPORT_SYMBOL(iwl_alloc_isr_ict);
1787
1788 /* Device is going up inform it about using ICT interrupt table,
1789  * also we need to tell the driver to start using ICT interrupt.
1790  */
1791 int iwl_reset_ict(struct iwl_priv *priv)
1792 {
1793         u32 val;
1794         unsigned long flags;
1795
1796         if (!priv->ict_tbl_vir)
1797                 return 0;
1798
1799         spin_lock_irqsave(&priv->lock, flags);
1800         iwl_disable_interrupts(priv);
1801
1802         memset(&priv->ict_tbl[0],0, sizeof(u32) * ICT_COUNT);
1803
1804         val = priv->aligned_ict_tbl_dma >> PAGE_SHIFT;
1805
1806         val |= CSR_DRAM_INT_TBL_ENABLE;
1807         val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1808
1809         IWL_DEBUG_ISR(priv, "CSR_DRAM_INT_TBL_REG =0x%X "
1810                         "aligned dma address %Lx\n",
1811                         val, (unsigned long long)priv->aligned_ict_tbl_dma);
1812
1813         iwl_write32(priv, CSR_DRAM_INT_TBL_REG, val);
1814         priv->use_ict = true;
1815         priv->ict_index = 0;
1816         iwl_write32(priv, CSR_INT, priv->inta_mask);
1817         iwl_enable_interrupts(priv);
1818         spin_unlock_irqrestore(&priv->lock, flags);
1819
1820         return 0;
1821 }
1822 EXPORT_SYMBOL(iwl_reset_ict);
1823
1824 /* Device is going down disable ict interrupt usage */
1825 void iwl_disable_ict(struct iwl_priv *priv)
1826 {
1827         unsigned long flags;
1828
1829         spin_lock_irqsave(&priv->lock, flags);
1830         priv->use_ict = false;
1831         spin_unlock_irqrestore(&priv->lock, flags);
1832 }
1833 EXPORT_SYMBOL(iwl_disable_ict);
1834
1835 /* interrupt handler using ict table, with this interrupt driver will
1836  * stop using INTA register to get device's interrupt, reading this register
1837  * is expensive, device will write interrupts in ICT dram table, increment
1838  * index then will fire interrupt to driver, driver will OR all ICT table
1839  * entries from current index up to table entry with 0 value. the result is
1840  * the interrupt we need to service, driver will set the entries back to 0 and
1841  * set index.
1842  */
1843 irqreturn_t iwl_isr_ict(int irq, void *data)
1844 {
1845         struct iwl_priv *priv = data;
1846         u32 inta, inta_mask;
1847         u32 val = 0;
1848
1849         if (!priv)
1850                 return IRQ_NONE;
1851
1852         /* dram interrupt table not set yet,
1853          * use legacy interrupt.
1854          */
1855         if (!priv->use_ict)
1856                 return iwl_isr(irq, data);
1857
1858         spin_lock(&priv->lock);
1859
1860         /* Disable (but don't clear!) interrupts here to avoid
1861          * back-to-back ISRs and sporadic interrupts from our NIC.
1862          * If we have something to service, the tasklet will re-enable ints.
1863          * If we *don't* have something, we'll re-enable before leaving here.
1864          */
1865         inta_mask = iwl_read32(priv, CSR_INT_MASK);  /* just for debug */
1866         iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1867
1868
1869         /* Ignore interrupt if there's nothing in NIC to service.
1870          * This may be due to IRQ shared with another device,
1871          * or due to sporadic interrupts thrown from our NIC. */
1872         if (!priv->ict_tbl[priv->ict_index]) {
1873                 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1874                 goto none;
1875         }
1876
1877         /* read all entries that not 0 start with ict_index */
1878         while (priv->ict_tbl[priv->ict_index]) {
1879
1880                 val |= priv->ict_tbl[priv->ict_index];
1881                 IWL_DEBUG_ISR(priv, "ICT index %d value 0x%08X\n",
1882                                         priv->ict_index,
1883                                         priv->ict_tbl[priv->ict_index]);
1884                 priv->ict_tbl[priv->ict_index] = 0;
1885                 priv->ict_index = iwl_queue_inc_wrap(priv->ict_index,
1886                                                                 ICT_COUNT);
1887
1888         }
1889
1890         /* We should not get this value, just ignore it. */
1891         if (val == 0xffffffff)
1892                 val = 0;
1893
1894         inta = (0xff & val) | ((0xff00 & val) << 16);
1895         IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
1896                         inta, inta_mask, val);
1897
1898         inta &= priv->inta_mask;
1899         priv->inta |= inta;
1900
1901         /* iwl_irq_tasklet() will service interrupts and re-enable them */
1902         if (likely(inta))
1903                 tasklet_schedule(&priv->irq_tasklet);
1904         else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta) {
1905                 /* Allow interrupt if was disabled by this handler and
1906                  * no tasklet was schedules, We should not enable interrupt,
1907                  * tasklet will enable it.
1908                  */
1909                 iwl_enable_interrupts(priv);
1910         }
1911
1912         spin_unlock(&priv->lock);
1913         return IRQ_HANDLED;
1914
1915  none:
1916         /* re-enable interrupts here since we don't have anything to service.
1917          * only Re-enable if disabled by irq.
1918          */
1919         if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1920                 iwl_enable_interrupts(priv);
1921
1922         spin_unlock(&priv->lock);
1923         return IRQ_NONE;
1924 }
1925 EXPORT_SYMBOL(iwl_isr_ict);
1926
1927
1928 static irqreturn_t iwl_isr(int irq, void *data)
1929 {
1930         struct iwl_priv *priv = data;
1931         u32 inta, inta_mask;
1932 #ifdef CONFIG_IWLWIFI_DEBUG
1933         u32 inta_fh;
1934 #endif
1935         if (!priv)
1936                 return IRQ_NONE;
1937
1938         spin_lock(&priv->lock);
1939
1940         /* Disable (but don't clear!) interrupts here to avoid
1941          *    back-to-back ISRs and sporadic interrupts from our NIC.
1942          * If we have something to service, the tasklet will re-enable ints.
1943          * If we *don't* have something, we'll re-enable before leaving here. */
1944         inta_mask = iwl_read32(priv, CSR_INT_MASK);  /* just for debug */
1945         iwl_write32(priv, CSR_INT_MASK, 0x00000000);
1946
1947         /* Discover which interrupts are active/pending */
1948         inta = iwl_read32(priv, CSR_INT);
1949
1950         /* Ignore interrupt if there's nothing in NIC to service.
1951          * This may be due to IRQ shared with another device,
1952          * or due to sporadic interrupts thrown from our NIC. */
1953         if (!inta) {
1954                 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0\n");
1955                 goto none;
1956         }
1957
1958         if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1959                 /* Hardware disappeared. It might have already raised
1960                  * an interrupt */
1961                 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
1962                 goto unplugged;
1963         }
1964
1965 #ifdef CONFIG_IWLWIFI_DEBUG
1966         if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
1967                 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1968                 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, "
1969                               "fh 0x%08x\n", inta, inta_mask, inta_fh);
1970         }
1971 #endif
1972
1973         priv->inta |= inta;
1974         /* iwl_irq_tasklet() will service interrupts and re-enable them */
1975         if (likely(inta))
1976                 tasklet_schedule(&priv->irq_tasklet);
1977         else if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1978                 iwl_enable_interrupts(priv);
1979
1980  unplugged:
1981         spin_unlock(&priv->lock);
1982         return IRQ_HANDLED;
1983
1984  none:
1985         /* re-enable interrupts here since we don't have anything to service. */
1986         /* only Re-enable if diabled by irq  and no schedules tasklet. */
1987         if (test_bit(STATUS_INT_ENABLED, &priv->status) && !priv->inta)
1988                 iwl_enable_interrupts(priv);
1989
1990         spin_unlock(&priv->lock);
1991         return IRQ_NONE;
1992 }
1993
1994 irqreturn_t iwl_isr_legacy(int irq, void *data)
1995 {
1996         struct iwl_priv *priv = data;
1997         u32 inta, inta_mask;
1998         u32 inta_fh;
1999         if (!priv)
2000                 return IRQ_NONE;
2001
2002         spin_lock(&priv->lock);
2003
2004         /* Disable (but don't clear!) interrupts here to avoid
2005          *    back-to-back ISRs and sporadic interrupts from our NIC.
2006          * If we have something to service, the tasklet will re-enable ints.
2007          * If we *don't* have something, we'll re-enable before leaving here. */
2008         inta_mask = iwl_read32(priv, CSR_INT_MASK);  /* just for debug */
2009         iwl_write32(priv, CSR_INT_MASK, 0x00000000);
2010
2011         /* Discover which interrupts are active/pending */
2012         inta = iwl_read32(priv, CSR_INT);
2013         inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
2014
2015         /* Ignore interrupt if there's nothing in NIC to service.
2016          * This may be due to IRQ shared with another device,
2017          * or due to sporadic interrupts thrown from our NIC. */
2018         if (!inta && !inta_fh) {
2019                 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
2020                 goto none;
2021         }
2022
2023         if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
2024                 /* Hardware disappeared. It might have already raised
2025                  * an interrupt */
2026                 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
2027                 goto unplugged;
2028         }
2029
2030         IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
2031                       inta, inta_mask, inta_fh);
2032
2033         inta &= ~CSR_INT_BIT_SCD;
2034
2035         /* iwl_irq_tasklet() will service interrupts and re-enable them */
2036         if (likely(inta || inta_fh))
2037                 tasklet_schedule(&priv->irq_tasklet);
2038
2039  unplugged:
2040         spin_unlock(&priv->lock);
2041         return IRQ_HANDLED;
2042
2043  none:
2044         /* re-enable interrupts here since we don't have anything to service. */
2045         /* only Re-enable if diabled by irq */
2046         if (test_bit(STATUS_INT_ENABLED, &priv->status))
2047                 iwl_enable_interrupts(priv);
2048         spin_unlock(&priv->lock);
2049         return IRQ_NONE;
2050 }
2051 EXPORT_SYMBOL(iwl_isr_legacy);
2052
2053 int iwl_send_bt_config(struct iwl_priv *priv)
2054 {
2055         struct iwl_bt_cmd bt_cmd = {
2056                 .flags = 3,
2057                 .lead_time = 0xAA,
2058                 .max_kill = 1,
2059                 .kill_ack_mask = 0,
2060                 .kill_cts_mask = 0,
2061         };
2062
2063         return iwl_send_cmd_pdu(priv, REPLY_BT_CONFIG,
2064                                 sizeof(struct iwl_bt_cmd), &bt_cmd);
2065 }
2066 EXPORT_SYMBOL(iwl_send_bt_config);
2067
2068 int iwl_send_statistics_request(struct iwl_priv *priv, u8 flags)
2069 {
2070         u32 stat_flags = 0;
2071         struct iwl_host_cmd cmd = {
2072                 .id = REPLY_STATISTICS_CMD,
2073                 .flags = flags,
2074                 .len = sizeof(stat_flags),
2075                 .data = (u8 *) &stat_flags,
2076         };
2077         return iwl_send_cmd(priv, &cmd);
2078 }
2079 EXPORT_SYMBOL(iwl_send_statistics_request);
2080
2081 /**
2082  * iwl_verify_inst_sparse - verify runtime uCode image in card vs. host,
2083  *   using sample data 100 bytes apart.  If these sample points are good,
2084  *   it's a pretty good bet that everything between them is good, too.
2085  */
2086 static int iwlcore_verify_inst_sparse(struct iwl_priv *priv, __le32 *image, u32 len)
2087 {
2088         u32 val;
2089         int ret = 0;
2090         u32 errcnt = 0;
2091         u32 i;
2092
2093         IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
2094
2095         for (i = 0; i < len; i += 100, image += 100/sizeof(u32)) {
2096                 /* read data comes through single port, auto-incr addr */
2097                 /* NOTE: Use the debugless read so we don't flood kernel log
2098                  * if IWL_DL_IO is set */
2099                 iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
2100                         i + IWL49_RTC_INST_LOWER_BOUND);
2101                 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2102                 if (val != le32_to_cpu(*image)) {
2103                         ret = -EIO;
2104                         errcnt++;
2105                         if (errcnt >= 3)
2106                                 break;
2107                 }
2108         }
2109
2110         return ret;
2111 }
2112
2113 /**
2114  * iwlcore_verify_inst_full - verify runtime uCode image in card vs. host,
2115  *     looking at all data.
2116  */
2117 static int iwl_verify_inst_full(struct iwl_priv *priv, __le32 *image,
2118                                  u32 len)
2119 {
2120         u32 val;
2121         u32 save_len = len;
2122         int ret = 0;
2123         u32 errcnt;
2124
2125         IWL_DEBUG_INFO(priv, "ucode inst image size is %u\n", len);
2126
2127         iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR,
2128                            IWL49_RTC_INST_LOWER_BOUND);
2129
2130         errcnt = 0;
2131         for (; len > 0; len -= sizeof(u32), image++) {
2132                 /* read data comes through single port, auto-incr addr */
2133                 /* NOTE: Use the debugless read so we don't flood kernel log
2134                  * if IWL_DL_IO is set */
2135                 val = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2136                 if (val != le32_to_cpu(*image)) {
2137                         IWL_ERR(priv, "uCode INST section is invalid at "
2138                                   "offset 0x%x, is 0x%x, s/b 0x%x\n",
2139                                   save_len - len, val, le32_to_cpu(*image));
2140                         ret = -EIO;
2141                         errcnt++;
2142                         if (errcnt >= 20)
2143                                 break;
2144                 }
2145         }
2146
2147         if (!errcnt)
2148                 IWL_DEBUG_INFO(priv,
2149                     "ucode image in INSTRUCTION memory is good\n");
2150
2151         return ret;
2152 }
2153
2154 /**
2155  * iwl_verify_ucode - determine which instruction image is in SRAM,
2156  *    and verify its contents
2157  */
2158 int iwl_verify_ucode(struct iwl_priv *priv)
2159 {
2160         __le32 *image;
2161         u32 len;
2162         int ret;
2163
2164         /* Try bootstrap */
2165         image = (__le32 *)priv->ucode_boot.v_addr;
2166         len = priv->ucode_boot.len;
2167         ret = iwlcore_verify_inst_sparse(priv, image, len);
2168         if (!ret) {
2169                 IWL_DEBUG_INFO(priv, "Bootstrap uCode is good in inst SRAM\n");
2170                 return 0;
2171         }
2172
2173         /* Try initialize */
2174         image = (__le32 *)priv->ucode_init.v_addr;
2175         len = priv->ucode_init.len;
2176         ret = iwlcore_verify_inst_sparse(priv, image, len);
2177         if (!ret) {
2178                 IWL_DEBUG_INFO(priv, "Initialize uCode is good in inst SRAM\n");
2179                 return 0;
2180         }
2181
2182         /* Try runtime/protocol */
2183         image = (__le32 *)priv->ucode_code.v_addr;
2184         len = priv->ucode_code.len;
2185         ret = iwlcore_verify_inst_sparse(priv, image, len);
2186         if (!ret) {
2187                 IWL_DEBUG_INFO(priv, "Runtime uCode is good in inst SRAM\n");
2188                 return 0;
2189         }
2190
2191         IWL_ERR(priv, "NO VALID UCODE IMAGE IN INSTRUCTION SRAM!!\n");
2192
2193         /* Since nothing seems to match, show first several data entries in
2194          * instruction SRAM, so maybe visual inspection will give a clue.
2195          * Selection of bootstrap image (vs. other images) is arbitrary. */
2196         image = (__le32 *)priv->ucode_boot.v_addr;
2197         len = priv->ucode_boot.len;
2198         ret = iwl_verify_inst_full(priv, image, len);
2199
2200         return ret;
2201 }
2202 EXPORT_SYMBOL(iwl_verify_ucode);
2203
2204
2205 void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2206 {
2207         struct iwl_ct_kill_config cmd;
2208         struct iwl_ct_kill_throttling_config adv_cmd;
2209         unsigned long flags;
2210         int ret = 0;
2211
2212         spin_lock_irqsave(&priv->lock, flags);
2213         iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2214                     CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2215         spin_unlock_irqrestore(&priv->lock, flags);
2216         priv->thermal_throttle.ct_kill_toggle = false;
2217
2218         switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
2219         case CSR_HW_REV_TYPE_1000:
2220         case CSR_HW_REV_TYPE_6x00:
2221         case CSR_HW_REV_TYPE_6x50:
2222                 adv_cmd.critical_temperature_enter =
2223                         cpu_to_le32(priv->hw_params.ct_kill_threshold);
2224                 adv_cmd.critical_temperature_exit =
2225                         cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2226
2227                 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2228                                        sizeof(adv_cmd), &adv_cmd);
2229                 if (ret)
2230                         IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2231                 else
2232                         IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2233                                         "succeeded, "
2234                                         "critical temperature enter is %d,"
2235                                         "exit is %d\n",
2236                                        priv->hw_params.ct_kill_threshold,
2237                                        priv->hw_params.ct_kill_exit_threshold);
2238                 break;
2239         default:
2240                 cmd.critical_temperature_R =
2241                         cpu_to_le32(priv->hw_params.ct_kill_threshold);
2242
2243                 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2244                                        sizeof(cmd), &cmd);
2245                 if (ret)
2246                         IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2247                 else
2248                         IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2249                                         "succeeded, "
2250                                         "critical temperature is %d\n",
2251                                         priv->hw_params.ct_kill_threshold);
2252                 break;
2253         }
2254 }
2255 EXPORT_SYMBOL(iwl_rf_kill_ct_config);
2256
2257
2258 /*
2259  * CARD_STATE_CMD
2260  *
2261  * Use: Sets the device's internal card state to enable, disable, or halt
2262  *
2263  * When in the 'enable' state the card operates as normal.
2264  * When in the 'disable' state, the card enters into a low power mode.
2265  * When in the 'halt' state, the card is shut down and must be fully
2266  * restarted to come back on.
2267  */
2268 int iwl_send_card_state(struct iwl_priv *priv, u32 flags, u8 meta_flag)
2269 {
2270         struct iwl_host_cmd cmd = {
2271                 .id = REPLY_CARD_STATE_CMD,
2272                 .len = sizeof(u32),
2273                 .data = &flags,
2274                 .flags = meta_flag,
2275         };
2276
2277         return iwl_send_cmd(priv, &cmd);
2278 }
2279
2280 void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
2281                            struct iwl_rx_mem_buffer *rxb)
2282 {
2283 #ifdef CONFIG_IWLWIFI_DEBUG
2284         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2285         struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
2286         IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
2287                      sleep->pm_sleep_mode, sleep->pm_wakeup_src);
2288 #endif
2289 }
2290 EXPORT_SYMBOL(iwl_rx_pm_sleep_notif);
2291
2292 void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
2293                                       struct iwl_rx_mem_buffer *rxb)
2294 {
2295         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2296         IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
2297                         "notification for %s:\n",
2298                         le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
2299         iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
2300 }
2301 EXPORT_SYMBOL(iwl_rx_pm_debug_statistics_notif);
2302
2303 void iwl_rx_reply_error(struct iwl_priv *priv,
2304                         struct iwl_rx_mem_buffer *rxb)
2305 {
2306         struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
2307
2308         IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
2309                 "seq 0x%04X ser 0x%08X\n",
2310                 le32_to_cpu(pkt->u.err_resp.error_type),
2311                 get_cmd_string(pkt->u.err_resp.cmd_id),
2312                 pkt->u.err_resp.cmd_id,
2313                 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
2314                 le32_to_cpu(pkt->u.err_resp.error_info));
2315 }
2316 EXPORT_SYMBOL(iwl_rx_reply_error);
2317
2318 void iwl_clear_isr_stats(struct iwl_priv *priv)
2319 {
2320         memset(&priv->isr_stats, 0, sizeof(priv->isr_stats));
2321 }
2322
2323 int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
2324                            const struct ieee80211_tx_queue_params *params)
2325 {
2326         struct iwl_priv *priv = hw->priv;
2327         unsigned long flags;
2328         int q;
2329
2330         IWL_DEBUG_MAC80211(priv, "enter\n");
2331
2332         if (!iwl_is_ready_rf(priv)) {
2333                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2334                 return -EIO;
2335         }
2336
2337         if (queue >= AC_NUM) {
2338                 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
2339                 return 0;
2340         }
2341
2342         q = AC_NUM - 1 - queue;
2343
2344         spin_lock_irqsave(&priv->lock, flags);
2345
2346         priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2347         priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2348         priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2349         priv->qos_data.def_qos_parm.ac[q].edca_txop =
2350                         cpu_to_le16((params->txop * 32));
2351
2352         priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2353         priv->qos_data.qos_active = 1;
2354
2355         if (priv->iw_mode == NL80211_IFTYPE_AP)
2356                 iwl_activate_qos(priv, 1);
2357         else if (priv->assoc_id && iwl_is_associated(priv))
2358                 iwl_activate_qos(priv, 0);
2359
2360         spin_unlock_irqrestore(&priv->lock, flags);
2361
2362         IWL_DEBUG_MAC80211(priv, "leave\n");
2363         return 0;
2364 }
2365 EXPORT_SYMBOL(iwl_mac_conf_tx);
2366
2367 static void iwl_ht_conf(struct iwl_priv *priv,
2368                             struct ieee80211_bss_conf *bss_conf)
2369 {
2370         struct ieee80211_sta_ht_cap *ht_conf;
2371         struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
2372         struct ieee80211_sta *sta;
2373
2374         IWL_DEBUG_MAC80211(priv, "enter: \n");
2375
2376         if (!iwl_conf->is_ht)
2377                 return;
2378
2379
2380         /*
2381          * It is totally wrong to base global information on something
2382          * that is valid only when associated, alas, this driver works
2383          * that way and I don't know how to fix it.
2384          */
2385
2386         rcu_read_lock();
2387         sta = ieee80211_find_sta(priv->hw, priv->bssid);
2388         if (!sta) {
2389                 rcu_read_unlock();
2390                 return;
2391         }
2392         ht_conf = &sta->ht_cap;
2393
2394         iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
2395
2396         iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
2397
2398         memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
2399
2400         iwl_conf->ht_protection =
2401                 bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
2402         iwl_conf->non_GF_STA_present =
2403                 !!(bss_conf->ht_operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
2404
2405         rcu_read_unlock();
2406
2407         IWL_DEBUG_MAC80211(priv, "leave\n");
2408 }
2409
2410 #define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
2411 void iwl_bss_info_changed(struct ieee80211_hw *hw,
2412                           struct ieee80211_vif *vif,
2413                           struct ieee80211_bss_conf *bss_conf,
2414                           u32 changes)
2415 {
2416         struct iwl_priv *priv = hw->priv;
2417         int ret;
2418
2419         IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
2420
2421         if (!iwl_is_alive(priv))
2422                 return;
2423
2424         mutex_lock(&priv->mutex);
2425
2426         if (changes & BSS_CHANGED_BEACON &&
2427             priv->iw_mode == NL80211_IFTYPE_AP) {
2428                 dev_kfree_skb(priv->ibss_beacon);
2429                 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
2430         }
2431
2432         if (changes & BSS_CHANGED_BEACON_INT) {
2433                 priv->beacon_int = bss_conf->beacon_int;
2434                 /* TODO: in AP mode, do something to make this take effect */
2435         }
2436
2437         if (changes & BSS_CHANGED_BSSID) {
2438                 IWL_DEBUG_MAC80211(priv, "BSSID %pM\n", bss_conf->bssid);
2439
2440                 /*
2441                  * If there is currently a HW scan going on in the
2442                  * background then we need to cancel it else the RXON
2443                  * below/in post_associate will fail.
2444                  */
2445                 if (iwl_scan_cancel_timeout(priv, 100)) {
2446                         IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
2447                         IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
2448                         mutex_unlock(&priv->mutex);
2449                         return;
2450                 }
2451
2452                 /* mac80211 only sets assoc when in STATION mode */
2453                 if (priv->iw_mode == NL80211_IFTYPE_ADHOC ||
2454                     bss_conf->assoc) {
2455                         memcpy(priv->staging_rxon.bssid_addr,
2456                                bss_conf->bssid, ETH_ALEN);
2457
2458                         /* currently needed in a few places */
2459                         memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN);
2460                 } else {
2461                         priv->staging_rxon.filter_flags &=
2462                                 ~RXON_FILTER_ASSOC_MSK;
2463                 }
2464
2465         }
2466
2467         /*
2468          * This needs to be after setting the BSSID in case
2469          * mac80211 decides to do both changes at once because
2470          * it will invoke post_associate.
2471          */
2472         if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2473             changes & BSS_CHANGED_BEACON) {
2474                 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2475
2476                 if (beacon)
2477                         iwl_mac_beacon_update(hw, beacon);
2478         }
2479
2480         if (changes & BSS_CHANGED_ERP_PREAMBLE) {
2481                 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
2482                                    bss_conf->use_short_preamble);
2483                 if (bss_conf->use_short_preamble)
2484                         priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2485                 else
2486                         priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2487         }
2488
2489         if (changes & BSS_CHANGED_ERP_CTS_PROT) {
2490                 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
2491                 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
2492                         priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2493                 else
2494                         priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2495         }
2496
2497         if (changes & BSS_CHANGED_BASIC_RATES) {
2498                 /* XXX use this information
2499                  *
2500                  * To do that, remove code from iwl_set_rate() and put something
2501                  * like this here:
2502                  *
2503                 if (A-band)
2504                         priv->staging_rxon.ofdm_basic_rates =
2505                                 bss_conf->basic_rates;
2506                 else
2507                         priv->staging_rxon.ofdm_basic_rates =
2508                                 bss_conf->basic_rates >> 4;
2509                         priv->staging_rxon.cck_basic_rates =
2510                                 bss_conf->basic_rates & 0xF;
2511                  */
2512         }
2513
2514         if (changes & BSS_CHANGED_HT) {
2515                 iwl_ht_conf(priv, bss_conf);
2516
2517                 if (priv->cfg->ops->hcmd->set_rxon_chain)
2518                         priv->cfg->ops->hcmd->set_rxon_chain(priv);
2519         }
2520
2521         if (changes & BSS_CHANGED_ASSOC) {
2522                 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
2523                 if (bss_conf->assoc) {
2524                         priv->assoc_id = bss_conf->aid;
2525                         priv->beacon_int = bss_conf->beacon_int;
2526                         priv->timestamp = bss_conf->timestamp;
2527                         priv->assoc_capability = bss_conf->assoc_capability;
2528
2529                         /*
2530                          * We have just associated, don't start scan too early
2531                          * leave time for EAPOL exchange to complete.
2532                          *
2533                          * XXX: do this in mac80211
2534                          */
2535                         priv->next_scan_jiffies = jiffies +
2536                                         IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
2537                         if (!iwl_is_rfkill(priv))
2538                                 priv->cfg->ops->lib->post_associate(priv);
2539                 } else
2540                         priv->assoc_id = 0;
2541
2542         }
2543
2544         if (changes && iwl_is_associated(priv) && priv->assoc_id) {
2545                 IWL_DEBUG_MAC80211(priv, "Changes (%#x) while associated\n",
2546                                    changes);
2547                 ret = iwl_send_rxon_assoc(priv);
2548                 if (!ret) {
2549                         /* Sync active_rxon with latest change. */
2550                         memcpy((void *)&priv->active_rxon,
2551                                 &priv->staging_rxon,
2552                                 sizeof(struct iwl_rxon_cmd));
2553                 }
2554         }
2555
2556         mutex_unlock(&priv->mutex);
2557
2558         IWL_DEBUG_MAC80211(priv, "leave\n");
2559 }
2560 EXPORT_SYMBOL(iwl_bss_info_changed);
2561
2562 int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
2563 {
2564         struct iwl_priv *priv = hw->priv;
2565         unsigned long flags;
2566         __le64 timestamp;
2567
2568         IWL_DEBUG_MAC80211(priv, "enter\n");
2569
2570         if (!iwl_is_ready_rf(priv)) {
2571                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2572                 return -EIO;
2573         }
2574
2575         if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2576                 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
2577                 return -EIO;
2578         }
2579
2580         spin_lock_irqsave(&priv->lock, flags);
2581
2582         if (priv->ibss_beacon)
2583                 dev_kfree_skb(priv->ibss_beacon);
2584
2585         priv->ibss_beacon = skb;
2586
2587         priv->assoc_id = 0;
2588         timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
2589         priv->timestamp = le64_to_cpu(timestamp);
2590
2591         IWL_DEBUG_MAC80211(priv, "leave\n");
2592         spin_unlock_irqrestore(&priv->lock, flags);
2593
2594         iwl_reset_qos(priv);
2595
2596         priv->cfg->ops->lib->post_associate(priv);
2597
2598
2599         return 0;
2600 }
2601 EXPORT_SYMBOL(iwl_mac_beacon_update);
2602
2603 int iwl_set_mode(struct iwl_priv *priv, int mode)
2604 {
2605         if (mode == NL80211_IFTYPE_ADHOC) {
2606                 const struct iwl_channel_info *ch_info;
2607
2608                 ch_info = iwl_get_channel_info(priv,
2609                         priv->band,
2610                         le16_to_cpu(priv->staging_rxon.channel));
2611
2612                 if (!ch_info || !is_channel_ibss(ch_info)) {
2613                         IWL_ERR(priv, "channel %d not IBSS channel\n",
2614                                   le16_to_cpu(priv->staging_rxon.channel));
2615                         return -EINVAL;
2616                 }
2617         }
2618
2619         iwl_connection_init_rx_config(priv, mode);
2620
2621         if (priv->cfg->ops->hcmd->set_rxon_chain)
2622                 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2623
2624         memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2625
2626         iwl_clear_stations_table(priv);
2627
2628         /* dont commit rxon if rf-kill is on*/
2629         if (!iwl_is_ready_rf(priv))
2630                 return -EAGAIN;
2631
2632         iwlcore_commit_rxon(priv);
2633
2634         return 0;
2635 }
2636 EXPORT_SYMBOL(iwl_set_mode);
2637
2638 int iwl_mac_add_interface(struct ieee80211_hw *hw,
2639                                  struct ieee80211_if_init_conf *conf)
2640 {
2641         struct iwl_priv *priv = hw->priv;
2642         unsigned long flags;
2643
2644         IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
2645
2646         if (priv->vif) {
2647                 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
2648                 return -EOPNOTSUPP;
2649         }
2650
2651         spin_lock_irqsave(&priv->lock, flags);
2652         priv->vif = conf->vif;
2653         priv->iw_mode = conf->type;
2654
2655         spin_unlock_irqrestore(&priv->lock, flags);
2656
2657         mutex_lock(&priv->mutex);
2658
2659         if (conf->mac_addr) {
2660                 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
2661                 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2662         }
2663
2664         if (iwl_set_mode(priv, conf->type) == -EAGAIN)
2665                 /* we are not ready, will run again when ready */
2666                 set_bit(STATUS_MODE_PENDING, &priv->status);
2667
2668         mutex_unlock(&priv->mutex);
2669
2670         IWL_DEBUG_MAC80211(priv, "leave\n");
2671         return 0;
2672 }
2673 EXPORT_SYMBOL(iwl_mac_add_interface);
2674
2675 void iwl_mac_remove_interface(struct ieee80211_hw *hw,
2676                                      struct ieee80211_if_init_conf *conf)
2677 {
2678         struct iwl_priv *priv = hw->priv;
2679
2680         IWL_DEBUG_MAC80211(priv, "enter\n");
2681
2682         mutex_lock(&priv->mutex);
2683
2684         if (iwl_is_ready_rf(priv)) {
2685                 iwl_scan_cancel_timeout(priv, 100);
2686                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2687                 iwlcore_commit_rxon(priv);
2688         }
2689         if (priv->vif == conf->vif) {
2690                 priv->vif = NULL;
2691                 memset(priv->bssid, 0, ETH_ALEN);
2692         }
2693         mutex_unlock(&priv->mutex);
2694
2695         IWL_DEBUG_MAC80211(priv, "leave\n");
2696
2697 }
2698 EXPORT_SYMBOL(iwl_mac_remove_interface);
2699
2700 /**
2701  * iwl_mac_config - mac80211 config callback
2702  *
2703  * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2704  * be set inappropriately and the driver currently sets the hardware up to
2705  * use it whenever needed.
2706  */
2707 int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
2708 {
2709         struct iwl_priv *priv = hw->priv;
2710         const struct iwl_channel_info *ch_info;
2711         struct ieee80211_conf *conf = &hw->conf;
2712         struct iwl_ht_info *ht_conf = &priv->current_ht_config;
2713         unsigned long flags = 0;
2714         int ret = 0;
2715         u16 ch;
2716         int scan_active = 0;
2717
2718         mutex_lock(&priv->mutex);
2719
2720         IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2721                                         conf->channel->hw_value, changed);
2722
2723         if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
2724                         test_bit(STATUS_SCANNING, &priv->status))) {
2725                 scan_active = 1;
2726                 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
2727         }
2728
2729
2730         /* during scanning mac80211 will delay channel setting until
2731          * scan finish with changed = 0
2732          */
2733         if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2734                 if (scan_active)
2735                         goto set_ch_out;
2736
2737                 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2738                 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2739                 if (!is_channel_valid(ch_info)) {
2740                         IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2741                         ret = -EINVAL;
2742                         goto set_ch_out;
2743                 }
2744
2745                 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2746                         !is_channel_ibss(ch_info)) {
2747                         IWL_ERR(priv, "channel %d in band %d not "
2748                                 "IBSS channel\n",
2749                                 conf->channel->hw_value, conf->channel->band);
2750                         ret = -EINVAL;
2751                         goto set_ch_out;
2752                 }
2753
2754                 spin_lock_irqsave(&priv->lock, flags);
2755
2756                 /* Configure HT40 channels */
2757                 ht_conf->is_ht = conf_is_ht(conf);
2758                 if (ht_conf->is_ht) {
2759                         if (conf_is_ht40_minus(conf)) {
2760                                 ht_conf->extension_chan_offset =
2761                                         IEEE80211_HT_PARAM_CHA_SEC_BELOW;
2762                                 ht_conf->supported_chan_width =
2763                                         IWL_CHANNEL_WIDTH_40MHZ;
2764                         } else if (conf_is_ht40_plus(conf)) {
2765                                 ht_conf->extension_chan_offset =
2766                                         IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
2767                                 ht_conf->supported_chan_width =
2768                                         IWL_CHANNEL_WIDTH_40MHZ;
2769                         } else {
2770                                 ht_conf->extension_chan_offset =
2771                                         IEEE80211_HT_PARAM_CHA_SEC_NONE;
2772                                 ht_conf->supported_chan_width =
2773                                         IWL_CHANNEL_WIDTH_20MHZ;
2774                         }
2775                 } else
2776                         ht_conf->supported_chan_width = IWL_CHANNEL_WIDTH_20MHZ;
2777                 /* Default to no protection. Protection mode will later be set
2778                  * from BSS config in iwl_ht_conf */
2779                 ht_conf->ht_protection = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
2780
2781                 /* if we are switching from ht to 2.4 clear flags
2782                  * from any ht related info since 2.4 does not
2783                  * support ht */
2784                 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2785                         priv->staging_rxon.flags = 0;
2786
2787                 iwl_set_rxon_channel(priv, conf->channel);
2788
2789                 iwl_set_flags_for_band(priv, conf->channel->band);
2790                 spin_unlock_irqrestore(&priv->lock, flags);
2791  set_ch_out:
2792                 /* The list of supported rates and rate mask can be different
2793                  * for each band; since the band may have changed, reset
2794                  * the rate mask to what mac80211 lists */
2795                 iwl_set_rate(priv);
2796         }
2797
2798         if (changed & IEEE80211_CONF_CHANGE_PS) {
2799                 ret = iwl_power_update_mode(priv, false);
2800                 if (ret)
2801                         IWL_DEBUG_MAC80211(priv, "Error setting sleep level\n");
2802         }
2803
2804         if (changed & IEEE80211_CONF_CHANGE_POWER) {
2805                 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2806                         priv->tx_power_user_lmt, conf->power_level);
2807
2808                 iwl_set_tx_power(priv, conf->power_level, false);
2809         }
2810
2811         /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2812         if (priv->cfg->ops->hcmd->set_rxon_chain)
2813                 priv->cfg->ops->hcmd->set_rxon_chain(priv);
2814
2815         if (!iwl_is_ready(priv)) {
2816                 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2817                 goto out;
2818         }
2819
2820         if (scan_active)
2821                 goto out;
2822
2823         if (memcmp(&priv->active_rxon,
2824                    &priv->staging_rxon, sizeof(priv->staging_rxon)))
2825                 iwlcore_commit_rxon(priv);
2826         else
2827                 IWL_DEBUG_INFO(priv, "Not re-sending same RXON configuration.\n");
2828
2829
2830 out:
2831         IWL_DEBUG_MAC80211(priv, "leave\n");
2832         mutex_unlock(&priv->mutex);
2833         return ret;
2834 }
2835 EXPORT_SYMBOL(iwl_mac_config);
2836
2837 int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
2838                          struct ieee80211_tx_queue_stats *stats)
2839 {
2840         struct iwl_priv *priv = hw->priv;
2841         int i, avail;
2842         struct iwl_tx_queue *txq;
2843         struct iwl_queue *q;
2844         unsigned long flags;
2845
2846         IWL_DEBUG_MAC80211(priv, "enter\n");
2847
2848         if (!iwl_is_ready_rf(priv)) {
2849                 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
2850                 return -EIO;
2851         }
2852
2853         spin_lock_irqsave(&priv->lock, flags);
2854
2855         for (i = 0; i < AC_NUM; i++) {
2856                 txq = &priv->txq[i];
2857                 q = &txq->q;
2858                 avail = iwl_queue_space(q);
2859
2860                 stats[i].len = q->n_window - avail;
2861                 stats[i].limit = q->n_window - q->high_mark;
2862                 stats[i].count = q->n_window;
2863
2864         }
2865         spin_unlock_irqrestore(&priv->lock, flags);
2866
2867         IWL_DEBUG_MAC80211(priv, "leave\n");
2868
2869         return 0;
2870 }
2871 EXPORT_SYMBOL(iwl_mac_get_tx_stats);
2872
2873 void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
2874 {
2875         struct iwl_priv *priv = hw->priv;
2876         unsigned long flags;
2877
2878         mutex_lock(&priv->mutex);
2879         IWL_DEBUG_MAC80211(priv, "enter\n");
2880
2881         spin_lock_irqsave(&priv->lock, flags);
2882         memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
2883         spin_unlock_irqrestore(&priv->lock, flags);
2884
2885         iwl_reset_qos(priv);
2886
2887         spin_lock_irqsave(&priv->lock, flags);
2888         priv->assoc_id = 0;
2889         priv->assoc_capability = 0;
2890         priv->assoc_station_added = 0;
2891
2892         /* new association get rid of ibss beacon skb */
2893         if (priv->ibss_beacon)
2894                 dev_kfree_skb(priv->ibss_beacon);
2895
2896         priv->ibss_beacon = NULL;
2897
2898         priv->beacon_int = priv->vif->bss_conf.beacon_int;
2899         priv->timestamp = 0;
2900         if ((priv->iw_mode == NL80211_IFTYPE_STATION))
2901                 priv->beacon_int = 0;
2902
2903         spin_unlock_irqrestore(&priv->lock, flags);
2904
2905         if (!iwl_is_ready_rf(priv)) {
2906                 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
2907                 mutex_unlock(&priv->mutex);
2908                 return;
2909         }
2910
2911         /* we are restarting association process
2912          * clear RXON_FILTER_ASSOC_MSK bit
2913          */
2914         if (priv->iw_mode != NL80211_IFTYPE_AP) {
2915                 iwl_scan_cancel_timeout(priv, 100);
2916                 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2917                 iwlcore_commit_rxon(priv);
2918         }
2919
2920         if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
2921                 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
2922                 mutex_unlock(&priv->mutex);
2923                 return;
2924         }
2925
2926         iwl_set_rate(priv);
2927
2928         mutex_unlock(&priv->mutex);
2929
2930         IWL_DEBUG_MAC80211(priv, "leave\n");
2931 }
2932 EXPORT_SYMBOL(iwl_mac_reset_tsf);
2933
2934 #ifdef CONFIG_IWLWIFI_DEBUGFS
2935
2936 #define IWL_TRAFFIC_DUMP_SIZE   (IWL_TRAFFIC_ENTRY_SIZE * IWL_TRAFFIC_ENTRIES)
2937
2938 void iwl_reset_traffic_log(struct iwl_priv *priv)
2939 {
2940         priv->tx_traffic_idx = 0;
2941         priv->rx_traffic_idx = 0;
2942         if (priv->tx_traffic)
2943                 memset(priv->tx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
2944         if (priv->rx_traffic)
2945                 memset(priv->rx_traffic, 0, IWL_TRAFFIC_DUMP_SIZE);
2946 }
2947
2948 int iwl_alloc_traffic_mem(struct iwl_priv *priv)
2949 {
2950         u32 traffic_size = IWL_TRAFFIC_DUMP_SIZE;
2951
2952         if (iwl_debug_level & IWL_DL_TX) {
2953                 if (!priv->tx_traffic) {
2954                         priv->tx_traffic =
2955                                 kzalloc(traffic_size, GFP_KERNEL);
2956                         if (!priv->tx_traffic)
2957                                 return -ENOMEM;
2958                 }
2959         }
2960         if (iwl_debug_level & IWL_DL_RX) {
2961                 if (!priv->rx_traffic) {
2962                         priv->rx_traffic =
2963                                 kzalloc(traffic_size, GFP_KERNEL);
2964                         if (!priv->rx_traffic)
2965                                 return -ENOMEM;
2966                 }
2967         }
2968         iwl_reset_traffic_log(priv);
2969         return 0;
2970 }
2971 EXPORT_SYMBOL(iwl_alloc_traffic_mem);
2972
2973 void iwl_free_traffic_mem(struct iwl_priv *priv)
2974 {
2975         kfree(priv->tx_traffic);
2976         priv->tx_traffic = NULL;
2977
2978         kfree(priv->rx_traffic);
2979         priv->rx_traffic = NULL;
2980 }
2981 EXPORT_SYMBOL(iwl_free_traffic_mem);
2982
2983 void iwl_dbg_log_tx_data_frame(struct iwl_priv *priv,
2984                       u16 length, struct ieee80211_hdr *header)
2985 {
2986         __le16 fc;
2987         u16 len;
2988
2989         if (likely(!(iwl_debug_level & IWL_DL_TX)))
2990                 return;
2991
2992         if (!priv->tx_traffic)
2993                 return;
2994
2995         fc = header->frame_control;
2996         if (ieee80211_is_data(fc)) {
2997                 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
2998                        ? IWL_TRAFFIC_ENTRY_SIZE : length;
2999                 memcpy((priv->tx_traffic +
3000                        (priv->tx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
3001                        header, len);
3002                 priv->tx_traffic_idx =
3003                         (priv->tx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
3004         }
3005 }
3006 EXPORT_SYMBOL(iwl_dbg_log_tx_data_frame);
3007
3008 void iwl_dbg_log_rx_data_frame(struct iwl_priv *priv,
3009                       u16 length, struct ieee80211_hdr *header)
3010 {
3011         __le16 fc;
3012         u16 len;
3013
3014         if (likely(!(iwl_debug_level & IWL_DL_RX)))
3015                 return;
3016
3017         if (!priv->rx_traffic)
3018                 return;
3019
3020         fc = header->frame_control;
3021         if (ieee80211_is_data(fc)) {
3022                 len = (length > IWL_TRAFFIC_ENTRY_SIZE)
3023                        ? IWL_TRAFFIC_ENTRY_SIZE : length;
3024                 memcpy((priv->rx_traffic +
3025                        (priv->rx_traffic_idx * IWL_TRAFFIC_ENTRY_SIZE)),
3026                        header, len);
3027                 priv->rx_traffic_idx =
3028                         (priv->rx_traffic_idx + 1) % IWL_TRAFFIC_ENTRIES;
3029         }
3030 }
3031 EXPORT_SYMBOL(iwl_dbg_log_rx_data_frame);
3032
3033 const char *get_mgmt_string(int cmd)
3034 {
3035         switch (cmd) {
3036                 IWL_CMD(MANAGEMENT_ASSOC_REQ);
3037                 IWL_CMD(MANAGEMENT_ASSOC_RESP);
3038                 IWL_CMD(MANAGEMENT_REASSOC_REQ);
3039                 IWL_CMD(MANAGEMENT_REASSOC_RESP);
3040                 IWL_CMD(MANAGEMENT_PROBE_REQ);
3041                 IWL_CMD(MANAGEMENT_PROBE_RESP);
3042                 IWL_CMD(MANAGEMENT_BEACON);
3043                 IWL_CMD(MANAGEMENT_ATIM);
3044                 IWL_CMD(MANAGEMENT_DISASSOC);
3045                 IWL_CMD(MANAGEMENT_AUTH);
3046                 IWL_CMD(MANAGEMENT_DEAUTH);
3047                 IWL_CMD(MANAGEMENT_ACTION);
3048         default:
3049                 return "UNKNOWN";
3050
3051         }
3052 }
3053
3054 const char *get_ctrl_string(int cmd)
3055 {
3056         switch (cmd) {
3057                 IWL_CMD(CONTROL_BACK_REQ);
3058                 IWL_CMD(CONTROL_BACK);
3059                 IWL_CMD(CONTROL_PSPOLL);
3060                 IWL_CMD(CONTROL_RTS);
3061                 IWL_CMD(CONTROL_CTS);
3062                 IWL_CMD(CONTROL_ACK);
3063                 IWL_CMD(CONTROL_CFEND);
3064                 IWL_CMD(CONTROL_CFENDACK);
3065         default:
3066                 return "UNKNOWN";
3067
3068         }
3069 }
3070
3071 void iwl_clear_tx_stats(struct iwl_priv *priv)
3072 {
3073         memset(&priv->tx_stats, 0, sizeof(struct traffic_stats));
3074
3075 }
3076
3077 void iwl_clear_rx_stats(struct iwl_priv *priv)
3078 {
3079         memset(&priv->rx_stats, 0, sizeof(struct traffic_stats));
3080 }
3081
3082 /*
3083  * if CONFIG_IWLWIFI_DEBUGFS defined, iwl_update_stats function will
3084  * record all the MGMT, CTRL and DATA pkt for both TX and Rx pass.
3085  * Use debugFs to display the rx/rx_statistics
3086  * if CONFIG_IWLWIFI_DEBUGFS not being defined, then no MGMT and CTRL
3087  * information will be recorded, but DATA pkt still will be recorded
3088  * for the reason of iwl_led.c need to control the led blinking based on
3089  * number of tx and rx data.
3090  *
3091  */
3092 void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len)
3093 {
3094         struct traffic_stats    *stats;
3095
3096         if (is_tx)
3097                 stats = &priv->tx_stats;
3098         else
3099                 stats = &priv->rx_stats;
3100
3101         if (ieee80211_is_mgmt(fc)) {
3102                 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
3103                 case cpu_to_le16(IEEE80211_STYPE_ASSOC_REQ):
3104                         stats->mgmt[MANAGEMENT_ASSOC_REQ]++;
3105                         break;
3106                 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3107                         stats->mgmt[MANAGEMENT_ASSOC_RESP]++;
3108                         break;
3109                 case cpu_to_le16(IEEE80211_STYPE_REASSOC_REQ):
3110                         stats->mgmt[MANAGEMENT_REASSOC_REQ]++;
3111                         break;
3112                 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
3113                         stats->mgmt[MANAGEMENT_REASSOC_RESP]++;
3114                         break;
3115                 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
3116                         stats->mgmt[MANAGEMENT_PROBE_REQ]++;
3117                         break;
3118                 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3119                         stats->mgmt[MANAGEMENT_PROBE_RESP]++;
3120                         break;
3121                 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3122                         stats->mgmt[MANAGEMENT_BEACON]++;
3123                         break;
3124                 case cpu_to_le16(IEEE80211_STYPE_ATIM):
3125                         stats->mgmt[MANAGEMENT_ATIM]++;
3126                         break;
3127                 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
3128                         stats->mgmt[MANAGEMENT_DISASSOC]++;
3129                         break;
3130                 case cpu_to_le16(IEEE80211_STYPE_AUTH):
3131                         stats->mgmt[MANAGEMENT_AUTH]++;
3132                         break;
3133                 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3134                         stats->mgmt[MANAGEMENT_DEAUTH]++;
3135                         break;
3136                 case cpu_to_le16(IEEE80211_STYPE_ACTION):
3137                         stats->mgmt[MANAGEMENT_ACTION]++;
3138                         break;
3139                 }
3140         } else if (ieee80211_is_ctl(fc)) {
3141                 switch (fc & cpu_to_le16(IEEE80211_FCTL_STYPE)) {
3142                 case cpu_to_le16(IEEE80211_STYPE_BACK_REQ):
3143                         stats->ctrl[CONTROL_BACK_REQ]++;
3144                         break;
3145                 case cpu_to_le16(IEEE80211_STYPE_BACK):
3146                         stats->ctrl[CONTROL_BACK]++;
3147                         break;
3148                 case cpu_to_le16(IEEE80211_STYPE_PSPOLL):
3149                         stats->ctrl[CONTROL_PSPOLL]++;
3150                         break;
3151                 case cpu_to_le16(IEEE80211_STYPE_RTS):
3152                         stats->ctrl[CONTROL_RTS]++;
3153                         break;
3154                 case cpu_to_le16(IEEE80211_STYPE_CTS):
3155                         stats->ctrl[CONTROL_CTS]++;
3156                         break;
3157                 case cpu_to_le16(IEEE80211_STYPE_ACK):
3158                         stats->ctrl[CONTROL_ACK]++;
3159                         break;
3160                 case cpu_to_le16(IEEE80211_STYPE_CFEND):
3161                         stats->ctrl[CONTROL_CFEND]++;
3162                         break;
3163                 case cpu_to_le16(IEEE80211_STYPE_CFENDACK):
3164                         stats->ctrl[CONTROL_CFENDACK]++;
3165                         break;
3166                 }
3167         } else {
3168                 /* data */
3169                 stats->data_cnt++;
3170                 stats->data_bytes += len;
3171         }
3172 }
3173 EXPORT_SYMBOL(iwl_update_stats);
3174 #endif
3175
3176 #ifdef CONFIG_PM
3177
3178 int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
3179 {
3180         struct iwl_priv *priv = pci_get_drvdata(pdev);
3181
3182         /*
3183          * This function is called when system goes into suspend state
3184          * mac80211 will call iwl_mac_stop() from the mac80211 suspend function
3185          * first but since iwl_mac_stop() has no knowledge of who the caller is,
3186          * it will not call apm_ops.stop() to stop the DMA operation.
3187          * Calling apm_ops.stop here to make sure we stop the DMA.
3188          */
3189         priv->cfg->ops->lib->apm_ops.stop(priv);
3190
3191         pci_save_state(pdev);
3192         pci_disable_device(pdev);
3193         pci_set_power_state(pdev, PCI_D3hot);
3194
3195         return 0;
3196 }
3197 EXPORT_SYMBOL(iwl_pci_suspend);
3198
3199 int iwl_pci_resume(struct pci_dev *pdev)
3200 {
3201         struct iwl_priv *priv = pci_get_drvdata(pdev);
3202         int ret;
3203
3204         pci_set_power_state(pdev, PCI_D0);
3205         ret = pci_enable_device(pdev);
3206         if (ret)
3207                 return ret;
3208         pci_restore_state(pdev);
3209         iwl_enable_interrupts(priv);
3210
3211         return 0;
3212 }
3213 EXPORT_SYMBOL(iwl_pci_resume);
3214
3215 #endif /* CONFIG_PM */