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