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