iwlwifi: don't override association channel with control channel
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-4965.c
1 /******************************************************************************
2 *
3 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/version.h>
30 #include <linux/init.h>
31 #include <linux/pci.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/delay.h>
34 #include <linux/skbuff.h>
35 #include <linux/netdevice.h>
36 #include <linux/wireless.h>
37 #include <net/mac80211.h>
38 #include <linux/etherdevice.h>
39 #include <asm/unaligned.h>
40
41 #include "iwl-eeprom.h"
42 #include "iwl-dev.h"
43 #include "iwl-core.h"
44 #include "iwl-io.h"
45 #include "iwl-helpers.h"
46 #include "iwl-calib.h"
47
48 /* module parameters */
49 static struct iwl_mod_params iwl4965_mod_params = {
50 .num_of_queues = IWL49_NUM_QUEUES,
51 .enable_qos = 1,
52 .amsdu_size_8K = 1,
53 /* the rest are 0 by default */
54 };
55
56 static void iwl4965_hw_card_show_info(struct iwl_priv *priv);
57
58 #ifdef CONFIG_IWL4965_HT
59
60 static const u16 default_tid_to_tx_fifo[] = {
61 IWL_TX_FIFO_AC1,
62 IWL_TX_FIFO_AC0,
63 IWL_TX_FIFO_AC0,
64 IWL_TX_FIFO_AC1,
65 IWL_TX_FIFO_AC2,
66 IWL_TX_FIFO_AC2,
67 IWL_TX_FIFO_AC3,
68 IWL_TX_FIFO_AC3,
69 IWL_TX_FIFO_NONE,
70 IWL_TX_FIFO_NONE,
71 IWL_TX_FIFO_NONE,
72 IWL_TX_FIFO_NONE,
73 IWL_TX_FIFO_NONE,
74 IWL_TX_FIFO_NONE,
75 IWL_TX_FIFO_NONE,
76 IWL_TX_FIFO_NONE,
77 IWL_TX_FIFO_AC3
78 };
79
80 #endif /*CONFIG_IWL4965_HT */
81
82 /* check contents of special bootstrap uCode SRAM */
83 static int iwl4965_verify_bsm(struct iwl_priv *priv)
84 {
85 __le32 *image = priv->ucode_boot.v_addr;
86 u32 len = priv->ucode_boot.len;
87 u32 reg;
88 u32 val;
89
90 IWL_DEBUG_INFO("Begin verify bsm\n");
91
92 /* verify BSM SRAM contents */
93 val = iwl_read_prph(priv, BSM_WR_DWCOUNT_REG);
94 for (reg = BSM_SRAM_LOWER_BOUND;
95 reg < BSM_SRAM_LOWER_BOUND + len;
96 reg += sizeof(u32), image++) {
97 val = iwl_read_prph(priv, reg);
98 if (val != le32_to_cpu(*image)) {
99 IWL_ERROR("BSM uCode verification failed at "
100 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
101 BSM_SRAM_LOWER_BOUND,
102 reg - BSM_SRAM_LOWER_BOUND, len,
103 val, le32_to_cpu(*image));
104 return -EIO;
105 }
106 }
107
108 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
109
110 return 0;
111 }
112
113 /**
114 * iwl4965_load_bsm - Load bootstrap instructions
115 *
116 * BSM operation:
117 *
118 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
119 * in special SRAM that does not power down during RFKILL. When powering back
120 * up after power-saving sleeps (or during initial uCode load), the BSM loads
121 * the bootstrap program into the on-board processor, and starts it.
122 *
123 * The bootstrap program loads (via DMA) instructions and data for a new
124 * program from host DRAM locations indicated by the host driver in the
125 * BSM_DRAM_* registers. Once the new program is loaded, it starts
126 * automatically.
127 *
128 * When initializing the NIC, the host driver points the BSM to the
129 * "initialize" uCode image. This uCode sets up some internal data, then
130 * notifies host via "initialize alive" that it is complete.
131 *
132 * The host then replaces the BSM_DRAM_* pointer values to point to the
133 * normal runtime uCode instructions and a backup uCode data cache buffer
134 * (filled initially with starting data values for the on-board processor),
135 * then triggers the "initialize" uCode to load and launch the runtime uCode,
136 * which begins normal operation.
137 *
138 * When doing a power-save shutdown, runtime uCode saves data SRAM into
139 * the backup data cache in DRAM before SRAM is powered down.
140 *
141 * When powering back up, the BSM loads the bootstrap program. This reloads
142 * the runtime uCode instructions and the backup data cache into SRAM,
143 * and re-launches the runtime uCode from where it left off.
144 */
145 static int iwl4965_load_bsm(struct iwl_priv *priv)
146 {
147 __le32 *image = priv->ucode_boot.v_addr;
148 u32 len = priv->ucode_boot.len;
149 dma_addr_t pinst;
150 dma_addr_t pdata;
151 u32 inst_len;
152 u32 data_len;
153 int i;
154 u32 done;
155 u32 reg_offset;
156 int ret;
157
158 IWL_DEBUG_INFO("Begin load bsm\n");
159
160 /* make sure bootstrap program is no larger than BSM's SRAM size */
161 if (len > IWL_MAX_BSM_SIZE)
162 return -EINVAL;
163
164 /* Tell bootstrap uCode where to find the "Initialize" uCode
165 * in host DRAM ... host DRAM physical address bits 35:4 for 4965.
166 * NOTE: iwl4965_initialize_alive_start() will replace these values,
167 * after the "initialize" uCode has run, to point to
168 * runtime/protocol instructions and backup data cache. */
169 pinst = priv->ucode_init.p_addr >> 4;
170 pdata = priv->ucode_init_data.p_addr >> 4;
171 inst_len = priv->ucode_init.len;
172 data_len = priv->ucode_init_data.len;
173
174 ret = iwl_grab_nic_access(priv);
175 if (ret)
176 return ret;
177
178 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
179 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
180 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
181 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
182
183 /* Fill BSM memory with bootstrap instructions */
184 for (reg_offset = BSM_SRAM_LOWER_BOUND;
185 reg_offset < BSM_SRAM_LOWER_BOUND + len;
186 reg_offset += sizeof(u32), image++)
187 _iwl_write_prph(priv, reg_offset, le32_to_cpu(*image));
188
189 ret = iwl4965_verify_bsm(priv);
190 if (ret) {
191 iwl_release_nic_access(priv);
192 return ret;
193 }
194
195 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
196 iwl_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
197 iwl_write_prph(priv, BSM_WR_MEM_DST_REG, RTC_INST_LOWER_BOUND);
198 iwl_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
199
200 /* Load bootstrap code into instruction SRAM now,
201 * to prepare to load "initialize" uCode */
202 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START);
203
204 /* Wait for load of bootstrap uCode to finish */
205 for (i = 0; i < 100; i++) {
206 done = iwl_read_prph(priv, BSM_WR_CTRL_REG);
207 if (!(done & BSM_WR_CTRL_REG_BIT_START))
208 break;
209 udelay(10);
210 }
211 if (i < 100)
212 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
213 else {
214 IWL_ERROR("BSM write did not complete!\n");
215 return -EIO;
216 }
217
218 /* Enable future boot loads whenever power management unit triggers it
219 * (e.g. when powering back up after power-save shutdown) */
220 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START_EN);
221
222 iwl_release_nic_access(priv);
223
224 return 0;
225 }
226
227 static int is_fat_channel(__le32 rxon_flags)
228 {
229 return (rxon_flags & RXON_FLG_CHANNEL_MODE_PURE_40_MSK) ||
230 (rxon_flags & RXON_FLG_CHANNEL_MODE_MIXED_MSK);
231 }
232
233 int iwl4965_hwrate_to_plcp_idx(u32 rate_n_flags)
234 {
235 int idx = 0;
236
237 /* 4965 HT rate format */
238 if (rate_n_flags & RATE_MCS_HT_MSK) {
239 idx = (rate_n_flags & 0xff);
240
241 if (idx >= IWL_RATE_MIMO2_6M_PLCP)
242 idx = idx - IWL_RATE_MIMO2_6M_PLCP;
243
244 idx += IWL_FIRST_OFDM_RATE;
245 /* skip 9M not supported in ht*/
246 if (idx >= IWL_RATE_9M_INDEX)
247 idx += 1;
248 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
249 return idx;
250
251 /* 4965 legacy rate format, search for match in table */
252 } else {
253 for (idx = 0; idx < ARRAY_SIZE(iwl4965_rates); idx++)
254 if (iwl4965_rates[idx].plcp == (rate_n_flags & 0xFF))
255 return idx;
256 }
257
258 return -1;
259 }
260
261 /**
262 * translate ucode response to mac80211 tx status control values
263 */
264 void iwl4965_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
265 struct ieee80211_tx_control *control)
266 {
267 int rate_index;
268
269 control->antenna_sel_tx =
270 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
271 if (rate_n_flags & RATE_MCS_HT_MSK)
272 control->flags |= IEEE80211_TXCTL_OFDM_HT;
273 if (rate_n_flags & RATE_MCS_GF_MSK)
274 control->flags |= IEEE80211_TXCTL_GREEN_FIELD;
275 if (rate_n_flags & RATE_MCS_FAT_MSK)
276 control->flags |= IEEE80211_TXCTL_40_MHZ_WIDTH;
277 if (rate_n_flags & RATE_MCS_DUP_MSK)
278 control->flags |= IEEE80211_TXCTL_DUP_DATA;
279 if (rate_n_flags & RATE_MCS_SGI_MSK)
280 control->flags |= IEEE80211_TXCTL_SHORT_GI;
281 /* since iwl4965_hwrate_to_plcp_idx is band indifferent, we always use
282 * IEEE80211_BAND_2GHZ band as it contains all the rates */
283 rate_index = iwl4965_hwrate_to_plcp_idx(rate_n_flags);
284 if (rate_index == -1)
285 control->tx_rate = NULL;
286 else
287 control->tx_rate =
288 &priv->bands[IEEE80211_BAND_2GHZ].bitrates[rate_index];
289 }
290
291 int iwl4965_hw_rxq_stop(struct iwl_priv *priv)
292 {
293 int rc;
294 unsigned long flags;
295
296 spin_lock_irqsave(&priv->lock, flags);
297 rc = iwl_grab_nic_access(priv);
298 if (rc) {
299 spin_unlock_irqrestore(&priv->lock, flags);
300 return rc;
301 }
302
303 /* stop Rx DMA */
304 iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
305 rc = iwl_poll_direct_bit(priv, FH_MEM_RSSR_RX_STATUS_REG,
306 (1 << 24), 1000);
307 if (rc < 0)
308 IWL_ERROR("Can't stop Rx DMA.\n");
309
310 iwl_release_nic_access(priv);
311 spin_unlock_irqrestore(&priv->lock, flags);
312
313 return 0;
314 }
315
316 /*
317 * EEPROM handlers
318 */
319
320 static int iwl4965_eeprom_check_version(struct iwl_priv *priv)
321 {
322 u16 eeprom_ver;
323 u16 calib_ver;
324
325 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
326
327 calib_ver = iwl_eeprom_query16(priv, EEPROM_4965_CALIB_VERSION_OFFSET);
328
329 if (eeprom_ver < EEPROM_4965_EEPROM_VERSION ||
330 calib_ver < EEPROM_4965_TX_POWER_VERSION)
331 goto err;
332
333 return 0;
334 err:
335 IWL_ERROR("Unsuported EEPROM VER=0x%x < 0x%x CALIB=0x%x < 0x%x\n",
336 eeprom_ver, EEPROM_4965_EEPROM_VERSION,
337 calib_ver, EEPROM_4965_TX_POWER_VERSION);
338 return -EINVAL;
339
340 }
341 int iwl4965_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
342 {
343 int ret;
344 unsigned long flags;
345
346 spin_lock_irqsave(&priv->lock, flags);
347 ret = iwl_grab_nic_access(priv);
348 if (ret) {
349 spin_unlock_irqrestore(&priv->lock, flags);
350 return ret;
351 }
352
353 if (src == IWL_PWR_SRC_VAUX) {
354 u32 val;
355 ret = pci_read_config_dword(priv->pci_dev, PCI_POWER_SOURCE,
356 &val);
357
358 if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT) {
359 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
360 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
361 ~APMG_PS_CTRL_MSK_PWR_SRC);
362 }
363 } else {
364 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
365 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
366 ~APMG_PS_CTRL_MSK_PWR_SRC);
367 }
368
369 iwl_release_nic_access(priv);
370 spin_unlock_irqrestore(&priv->lock, flags);
371
372 return ret;
373 }
374
375 static int iwl4965_rx_init(struct iwl_priv *priv, struct iwl_rx_queue *rxq)
376 {
377 int ret;
378 unsigned long flags;
379 unsigned int rb_size;
380
381 spin_lock_irqsave(&priv->lock, flags);
382 ret = iwl_grab_nic_access(priv);
383 if (ret) {
384 spin_unlock_irqrestore(&priv->lock, flags);
385 return ret;
386 }
387
388 if (priv->cfg->mod_params->amsdu_size_8K)
389 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
390 else
391 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
392
393 /* Stop Rx DMA */
394 iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
395
396 /* Reset driver's Rx queue write index */
397 iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
398
399 /* Tell device where to find RBD circular buffer in DRAM */
400 iwl_write_direct32(priv, FH_RSCSR_CHNL0_RBDCB_BASE_REG,
401 rxq->dma_addr >> 8);
402
403 /* Tell device where in DRAM to update its Rx status */
404 iwl_write_direct32(priv, FH_RSCSR_CHNL0_STTS_WPTR_REG,
405 (priv->shared_phys +
406 offsetof(struct iwl4965_shared, rb_closed)) >> 4);
407
408 /* Enable Rx DMA, enable host interrupt, Rx buffer size 4k, 256 RBDs */
409 iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG,
410 FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
411 FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
412 rb_size |
413 /* 0x10 << 4 | */
414 (RX_QUEUE_SIZE_LOG <<
415 FH_RCSR_RX_CONFIG_RBDCB_SIZE_BITSHIFT));
416
417 /*
418 * iwl_write32(priv,CSR_INT_COAL_REG,0);
419 */
420
421 iwl_release_nic_access(priv);
422 spin_unlock_irqrestore(&priv->lock, flags);
423
424 return 0;
425 }
426
427 /* Tell 4965 where to find the "keep warm" buffer */
428 static int iwl4965_kw_init(struct iwl_priv *priv)
429 {
430 unsigned long flags;
431 int rc;
432
433 spin_lock_irqsave(&priv->lock, flags);
434 rc = iwl_grab_nic_access(priv);
435 if (rc)
436 goto out;
437
438 iwl_write_direct32(priv, FH_KW_MEM_ADDR_REG,
439 priv->kw.dma_addr >> 4);
440 iwl_release_nic_access(priv);
441 out:
442 spin_unlock_irqrestore(&priv->lock, flags);
443 return rc;
444 }
445
446 static int iwl4965_kw_alloc(struct iwl_priv *priv)
447 {
448 struct pci_dev *dev = priv->pci_dev;
449 struct iwl4965_kw *kw = &priv->kw;
450
451 kw->size = IWL4965_KW_SIZE; /* TBW need set somewhere else */
452 kw->v_addr = pci_alloc_consistent(dev, kw->size, &kw->dma_addr);
453 if (!kw->v_addr)
454 return -ENOMEM;
455
456 return 0;
457 }
458
459 /**
460 * iwl4965_kw_free - Free the "keep warm" buffer
461 */
462 static void iwl4965_kw_free(struct iwl_priv *priv)
463 {
464 struct pci_dev *dev = priv->pci_dev;
465 struct iwl4965_kw *kw = &priv->kw;
466
467 if (kw->v_addr) {
468 pci_free_consistent(dev, kw->size, kw->v_addr, kw->dma_addr);
469 memset(kw, 0, sizeof(*kw));
470 }
471 }
472
473 /**
474 * iwl4965_txq_ctx_reset - Reset TX queue context
475 * Destroys all DMA structures and initialise them again
476 *
477 * @param priv
478 * @return error code
479 */
480 static int iwl4965_txq_ctx_reset(struct iwl_priv *priv)
481 {
482 int rc = 0;
483 int txq_id, slots_num;
484 unsigned long flags;
485
486 iwl4965_kw_free(priv);
487
488 /* Free all tx/cmd queues and keep-warm buffer */
489 iwl4965_hw_txq_ctx_free(priv);
490
491 /* Alloc keep-warm buffer */
492 rc = iwl4965_kw_alloc(priv);
493 if (rc) {
494 IWL_ERROR("Keep Warm allocation failed");
495 goto error_kw;
496 }
497
498 spin_lock_irqsave(&priv->lock, flags);
499
500 rc = iwl_grab_nic_access(priv);
501 if (unlikely(rc)) {
502 IWL_ERROR("TX reset failed");
503 spin_unlock_irqrestore(&priv->lock, flags);
504 goto error_reset;
505 }
506
507 /* Turn off all Tx DMA channels */
508 iwl_write_prph(priv, IWL49_SCD_TXFACT, 0);
509 iwl_release_nic_access(priv);
510 spin_unlock_irqrestore(&priv->lock, flags);
511
512 /* Tell 4965 where to find the keep-warm buffer */
513 rc = iwl4965_kw_init(priv);
514 if (rc) {
515 IWL_ERROR("kw_init failed\n");
516 goto error_reset;
517 }
518
519 /* Alloc and init all (default 16) Tx queues,
520 * including the command queue (#4) */
521 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
522 slots_num = (txq_id == IWL_CMD_QUEUE_NUM) ?
523 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
524 rc = iwl4965_tx_queue_init(priv, &priv->txq[txq_id], slots_num,
525 txq_id);
526 if (rc) {
527 IWL_ERROR("Tx %d queue init failed\n", txq_id);
528 goto error;
529 }
530 }
531
532 return rc;
533
534 error:
535 iwl4965_hw_txq_ctx_free(priv);
536 error_reset:
537 iwl4965_kw_free(priv);
538 error_kw:
539 return rc;
540 }
541 static int iwl4965_apm_init(struct iwl_priv *priv)
542 {
543 unsigned long flags;
544 int ret = 0;
545
546 spin_lock_irqsave(&priv->lock, flags);
547 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
548 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
549
550 /* set "initialization complete" bit to move adapter
551 * D0U* --> D0A* state */
552 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
553
554 /* wait for clock stabilization */
555 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
556 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
557 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
558 if (ret < 0) {
559 IWL_DEBUG_INFO("Failed to init the card\n");
560 goto out;
561 }
562
563 ret = iwl_grab_nic_access(priv);
564 if (ret)
565 goto out;
566
567 /* enable DMA */
568 iwl_write_prph(priv, APMG_CLK_CTRL_REG,
569 APMG_CLK_VAL_DMA_CLK_RQT | APMG_CLK_VAL_BSM_CLK_RQT);
570
571 udelay(20);
572
573 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
574 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
575
576 iwl_release_nic_access(priv);
577 out:
578 spin_unlock_irqrestore(&priv->lock, flags);
579 return ret;
580 }
581
582
583 static void iwl4965_nic_config(struct iwl_priv *priv)
584 {
585 unsigned long flags;
586 u32 val;
587 u16 radio_cfg;
588 u8 val_link;
589
590 spin_lock_irqsave(&priv->lock, flags);
591
592 if ((priv->rev_id & 0x80) == 0x80 && (priv->rev_id & 0x7f) < 8) {
593 pci_read_config_dword(priv->pci_dev, PCI_REG_WUM8, &val);
594 /* Enable No Snoop field */
595 pci_write_config_dword(priv->pci_dev, PCI_REG_WUM8,
596 val & ~(1 << 11));
597 }
598
599 pci_read_config_byte(priv->pci_dev, PCI_LINK_CTRL, &val_link);
600
601 /* disable L1 entry -- workaround for pre-B1 */
602 pci_write_config_byte(priv->pci_dev, PCI_LINK_CTRL, val_link & ~0x02);
603
604 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
605
606 /* write radio config values to register */
607 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) == EEPROM_4965_RF_CFG_TYPE_MAX)
608 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
609 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
610 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
611 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
612
613 /* set CSR_HW_CONFIG_REG for uCode use */
614 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
615 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
616 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
617
618 priv->calib_info = (struct iwl_eeprom_calib_info *)
619 iwl_eeprom_query_addr(priv, EEPROM_4965_CALIB_TXPOWER_OFFSET);
620
621 spin_unlock_irqrestore(&priv->lock, flags);
622 }
623
624
625 int iwl4965_hw_nic_init(struct iwl_priv *priv)
626 {
627 unsigned long flags;
628 struct iwl_rx_queue *rxq = &priv->rxq;
629 int ret;
630
631 /* nic_init */
632 priv->cfg->ops->lib->apm_ops.init(priv);
633
634 spin_lock_irqsave(&priv->lock, flags);
635 iwl_write32(priv, CSR_INT_COALESCING, 512 / 32);
636 spin_unlock_irqrestore(&priv->lock, flags);
637
638 ret = priv->cfg->ops->lib->apm_ops.set_pwr_src(priv, IWL_PWR_SRC_VMAIN);
639
640 priv->cfg->ops->lib->apm_ops.config(priv);
641
642 iwl4965_hw_card_show_info(priv);
643
644 /* end nic_init */
645
646 /* Allocate the RX queue, or reset if it is already allocated */
647 if (!rxq->bd) {
648 ret = iwl_rx_queue_alloc(priv);
649 if (ret) {
650 IWL_ERROR("Unable to initialize Rx queue\n");
651 return -ENOMEM;
652 }
653 } else
654 iwl_rx_queue_reset(priv, rxq);
655
656 iwl_rx_replenish(priv);
657
658 iwl4965_rx_init(priv, rxq);
659
660 spin_lock_irqsave(&priv->lock, flags);
661
662 rxq->need_update = 1;
663 iwl_rx_queue_update_write_ptr(priv, rxq);
664
665 spin_unlock_irqrestore(&priv->lock, flags);
666
667 /* Allocate and init all Tx and Command queues */
668 ret = iwl4965_txq_ctx_reset(priv);
669 if (ret)
670 return ret;
671
672 set_bit(STATUS_INIT, &priv->status);
673
674 return 0;
675 }
676
677 int iwl4965_hw_nic_stop_master(struct iwl_priv *priv)
678 {
679 int rc = 0;
680 u32 reg_val;
681 unsigned long flags;
682
683 spin_lock_irqsave(&priv->lock, flags);
684
685 /* set stop master bit */
686 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
687
688 reg_val = iwl_read32(priv, CSR_GP_CNTRL);
689
690 if (CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE ==
691 (reg_val & CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE))
692 IWL_DEBUG_INFO("Card in power save, master is already "
693 "stopped\n");
694 else {
695 rc = iwl_poll_bit(priv, CSR_RESET,
696 CSR_RESET_REG_FLAG_MASTER_DISABLED,
697 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
698 if (rc < 0) {
699 spin_unlock_irqrestore(&priv->lock, flags);
700 return rc;
701 }
702 }
703
704 spin_unlock_irqrestore(&priv->lock, flags);
705 IWL_DEBUG_INFO("stop master\n");
706
707 return rc;
708 }
709
710 /**
711 * iwl4965_hw_txq_ctx_stop - Stop all Tx DMA channels, free Tx queue memory
712 */
713 void iwl4965_hw_txq_ctx_stop(struct iwl_priv *priv)
714 {
715
716 int txq_id;
717 unsigned long flags;
718
719 /* Stop each Tx DMA channel, and wait for it to be idle */
720 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
721 spin_lock_irqsave(&priv->lock, flags);
722 if (iwl_grab_nic_access(priv)) {
723 spin_unlock_irqrestore(&priv->lock, flags);
724 continue;
725 }
726
727 iwl_write_direct32(priv,
728 FH_TCSR_CHNL_TX_CONFIG_REG(txq_id), 0x0);
729 iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
730 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE
731 (txq_id), 200);
732 iwl_release_nic_access(priv);
733 spin_unlock_irqrestore(&priv->lock, flags);
734 }
735
736 /* Deallocate memory for all Tx queues */
737 iwl4965_hw_txq_ctx_free(priv);
738 }
739
740 int iwl4965_hw_nic_reset(struct iwl_priv *priv)
741 {
742 int rc = 0;
743 unsigned long flags;
744
745 iwl4965_hw_nic_stop_master(priv);
746
747 spin_lock_irqsave(&priv->lock, flags);
748
749 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
750
751 udelay(10);
752
753 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
754 rc = iwl_poll_bit(priv, CSR_RESET,
755 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
756 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25);
757
758 udelay(10);
759
760 rc = iwl_grab_nic_access(priv);
761 if (!rc) {
762 iwl_write_prph(priv, APMG_CLK_EN_REG,
763 APMG_CLK_VAL_DMA_CLK_RQT |
764 APMG_CLK_VAL_BSM_CLK_RQT);
765
766 udelay(10);
767
768 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
769 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
770
771 iwl_release_nic_access(priv);
772 }
773
774 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
775 wake_up_interruptible(&priv->wait_command_queue);
776
777 spin_unlock_irqrestore(&priv->lock, flags);
778
779 return rc;
780
781 }
782
783 #define REG_RECALIB_PERIOD (60)
784
785 /**
786 * iwl4965_bg_statistics_periodic - Timer callback to queue statistics
787 *
788 * This callback is provided in order to send a statistics request.
789 *
790 * This timer function is continually reset to execute within
791 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
792 * was received. We need to ensure we receive the statistics in order
793 * to update the temperature used for calibrating the TXPOWER.
794 */
795 static void iwl4965_bg_statistics_periodic(unsigned long data)
796 {
797 struct iwl_priv *priv = (struct iwl_priv *)data;
798
799 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
800 return;
801
802 iwl_send_statistics_request(priv, CMD_ASYNC);
803 }
804
805 void iwl4965_rf_kill_ct_config(struct iwl_priv *priv)
806 {
807 struct iwl4965_ct_kill_config cmd;
808 unsigned long flags;
809 int ret = 0;
810
811 spin_lock_irqsave(&priv->lock, flags);
812 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
813 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
814 spin_unlock_irqrestore(&priv->lock, flags);
815
816 cmd.critical_temperature_R =
817 cpu_to_le32(priv->hw_params.ct_kill_threshold);
818
819 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
820 sizeof(cmd), &cmd);
821 if (ret)
822 IWL_ERROR("REPLY_CT_KILL_CONFIG_CMD failed\n");
823 else
824 IWL_DEBUG_INFO("REPLY_CT_KILL_CONFIG_CMD succeeded, "
825 "critical temperature is %d\n",
826 cmd.critical_temperature_R);
827 }
828
829 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
830
831 /* Reset differential Rx gains in NIC to prepare for chain noise calibration.
832 * Called after every association, but this runs only once!
833 * ... once chain noise is calibrated the first time, it's good forever. */
834 static void iwl4965_chain_noise_reset(struct iwl_priv *priv)
835 {
836 struct iwl_chain_noise_data *data = &(priv->chain_noise_data);
837
838 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
839 struct iwl4965_calibration_cmd cmd;
840
841 memset(&cmd, 0, sizeof(cmd));
842 cmd.opCode = PHY_CALIBRATE_DIFF_GAIN_CMD;
843 cmd.diff_gain_a = 0;
844 cmd.diff_gain_b = 0;
845 cmd.diff_gain_c = 0;
846 if (iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
847 sizeof(cmd), &cmd))
848 IWL_ERROR("Could not send REPLY_PHY_CALIBRATION_CMD\n");
849 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
850 IWL_DEBUG_CALIB("Run chain_noise_calibrate\n");
851 }
852 }
853
854 static void iwl4965_gain_computation(struct iwl_priv *priv,
855 u32 *average_noise,
856 u16 min_average_noise_antenna_i,
857 u32 min_average_noise)
858 {
859 int i, ret;
860 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
861
862 data->delta_gain_code[min_average_noise_antenna_i] = 0;
863
864 for (i = 0; i < NUM_RX_CHAINS; i++) {
865 s32 delta_g = 0;
866
867 if (!(data->disconn_array[i]) &&
868 (data->delta_gain_code[i] ==
869 CHAIN_NOISE_DELTA_GAIN_INIT_VAL)) {
870 delta_g = average_noise[i] - min_average_noise;
871 data->delta_gain_code[i] = (u8)((delta_g * 10) / 15);
872 data->delta_gain_code[i] =
873 min(data->delta_gain_code[i],
874 (u8) CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
875
876 data->delta_gain_code[i] =
877 (data->delta_gain_code[i] | (1 << 2));
878 } else {
879 data->delta_gain_code[i] = 0;
880 }
881 }
882 IWL_DEBUG_CALIB("delta_gain_codes: a %d b %d c %d\n",
883 data->delta_gain_code[0],
884 data->delta_gain_code[1],
885 data->delta_gain_code[2]);
886
887 /* Differential gain gets sent to uCode only once */
888 if (!data->radio_write) {
889 struct iwl4965_calibration_cmd cmd;
890 data->radio_write = 1;
891
892 memset(&cmd, 0, sizeof(cmd));
893 cmd.opCode = PHY_CALIBRATE_DIFF_GAIN_CMD;
894 cmd.diff_gain_a = data->delta_gain_code[0];
895 cmd.diff_gain_b = data->delta_gain_code[1];
896 cmd.diff_gain_c = data->delta_gain_code[2];
897 ret = iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
898 sizeof(cmd), &cmd);
899 if (ret)
900 IWL_DEBUG_CALIB("fail sending cmd "
901 "REPLY_PHY_CALIBRATION_CMD \n");
902
903 /* TODO we might want recalculate
904 * rx_chain in rxon cmd */
905
906 /* Mark so we run this algo only once! */
907 data->state = IWL_CHAIN_NOISE_CALIBRATED;
908 }
909 data->chain_noise_a = 0;
910 data->chain_noise_b = 0;
911 data->chain_noise_c = 0;
912 data->chain_signal_a = 0;
913 data->chain_signal_b = 0;
914 data->chain_signal_c = 0;
915 data->beacon_count = 0;
916 }
917
918 static void iwl4965_bg_sensitivity_work(struct work_struct *work)
919 {
920 struct iwl_priv *priv = container_of(work, struct iwl_priv,
921 sensitivity_work);
922
923 mutex_lock(&priv->mutex);
924
925 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
926 test_bit(STATUS_SCANNING, &priv->status)) {
927 mutex_unlock(&priv->mutex);
928 return;
929 }
930
931 if (priv->start_calib) {
932 iwl_chain_noise_calibration(priv, &priv->statistics);
933
934 iwl_sensitivity_calibration(priv, &priv->statistics);
935 }
936
937 mutex_unlock(&priv->mutex);
938 return;
939 }
940 #endif /*CONFIG_IWL4965_RUN_TIME_CALIB*/
941
942 static void iwl4965_bg_txpower_work(struct work_struct *work)
943 {
944 struct iwl_priv *priv = container_of(work, struct iwl_priv,
945 txpower_work);
946
947 /* If a scan happened to start before we got here
948 * then just return; the statistics notification will
949 * kick off another scheduled work to compensate for
950 * any temperature delta we missed here. */
951 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
952 test_bit(STATUS_SCANNING, &priv->status))
953 return;
954
955 mutex_lock(&priv->mutex);
956
957 /* Regardless of if we are assocaited, we must reconfigure the
958 * TX power since frames can be sent on non-radar channels while
959 * not associated */
960 iwl4965_hw_reg_send_txpower(priv);
961
962 /* Update last_temperature to keep is_calib_needed from running
963 * when it isn't needed... */
964 priv->last_temperature = priv->temperature;
965
966 mutex_unlock(&priv->mutex);
967 }
968
969 /*
970 * Acquire priv->lock before calling this function !
971 */
972 static void iwl4965_set_wr_ptrs(struct iwl_priv *priv, int txq_id, u32 index)
973 {
974 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
975 (index & 0xff) | (txq_id << 8));
976 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(txq_id), index);
977 }
978
979 /**
980 * iwl4965_tx_queue_set_status - (optionally) start Tx/Cmd queue
981 * @tx_fifo_id: Tx DMA/FIFO channel (range 0-7) that the queue will feed
982 * @scd_retry: (1) Indicates queue will be used in aggregation mode
983 *
984 * NOTE: Acquire priv->lock before calling this function !
985 */
986 static void iwl4965_tx_queue_set_status(struct iwl_priv *priv,
987 struct iwl4965_tx_queue *txq,
988 int tx_fifo_id, int scd_retry)
989 {
990 int txq_id = txq->q.id;
991
992 /* Find out whether to activate Tx queue */
993 int active = test_bit(txq_id, &priv->txq_ctx_active_msk)?1:0;
994
995 /* Set up and activate */
996 iwl_write_prph(priv, IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
997 (active << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
998 (tx_fifo_id << IWL49_SCD_QUEUE_STTS_REG_POS_TXF) |
999 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_WSL) |
1000 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
1001 IWL49_SCD_QUEUE_STTS_REG_MSK);
1002
1003 txq->sched_retry = scd_retry;
1004
1005 IWL_DEBUG_INFO("%s %s Queue %d on AC %d\n",
1006 active ? "Activate" : "Deactivate",
1007 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
1008 }
1009
1010 static const u16 default_queue_to_tx_fifo[] = {
1011 IWL_TX_FIFO_AC3,
1012 IWL_TX_FIFO_AC2,
1013 IWL_TX_FIFO_AC1,
1014 IWL_TX_FIFO_AC0,
1015 IWL49_CMD_FIFO_NUM,
1016 IWL_TX_FIFO_HCCA_1,
1017 IWL_TX_FIFO_HCCA_2
1018 };
1019
1020 static inline void iwl4965_txq_ctx_activate(struct iwl_priv *priv, int txq_id)
1021 {
1022 set_bit(txq_id, &priv->txq_ctx_active_msk);
1023 }
1024
1025 static inline void iwl4965_txq_ctx_deactivate(struct iwl_priv *priv, int txq_id)
1026 {
1027 clear_bit(txq_id, &priv->txq_ctx_active_msk);
1028 }
1029
1030 int iwl4965_alive_notify(struct iwl_priv *priv)
1031 {
1032 u32 a;
1033 int i = 0;
1034 unsigned long flags;
1035 int ret;
1036
1037 spin_lock_irqsave(&priv->lock, flags);
1038
1039 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
1040 memset(&(priv->sensitivity_data), 0,
1041 sizeof(struct iwl_sensitivity_data));
1042 memset(&(priv->chain_noise_data), 0,
1043 sizeof(struct iwl_chain_noise_data));
1044 for (i = 0; i < NUM_RX_CHAINS; i++)
1045 priv->chain_noise_data.delta_gain_code[i] =
1046 CHAIN_NOISE_DELTA_GAIN_INIT_VAL;
1047 #endif /* CONFIG_IWL4965_RUN_TIME_CALIB*/
1048 ret = iwl_grab_nic_access(priv);
1049 if (ret) {
1050 spin_unlock_irqrestore(&priv->lock, flags);
1051 return ret;
1052 }
1053
1054 /* Clear 4965's internal Tx Scheduler data base */
1055 priv->scd_base_addr = iwl_read_prph(priv, IWL49_SCD_SRAM_BASE_ADDR);
1056 a = priv->scd_base_addr + IWL49_SCD_CONTEXT_DATA_OFFSET;
1057 for (; a < priv->scd_base_addr + IWL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
1058 iwl_write_targ_mem(priv, a, 0);
1059 for (; a < priv->scd_base_addr + IWL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
1060 iwl_write_targ_mem(priv, a, 0);
1061 for (; a < sizeof(u16) * priv->hw_params.max_txq_num; a += 4)
1062 iwl_write_targ_mem(priv, a, 0);
1063
1064 /* Tel 4965 where to find Tx byte count tables */
1065 iwl_write_prph(priv, IWL49_SCD_DRAM_BASE_ADDR,
1066 (priv->shared_phys +
1067 offsetof(struct iwl4965_shared, queues_byte_cnt_tbls)) >> 10);
1068
1069 /* Disable chain mode for all queues */
1070 iwl_write_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, 0);
1071
1072 /* Initialize each Tx queue (including the command queue) */
1073 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
1074
1075 /* TFD circular buffer read/write indexes */
1076 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(i), 0);
1077 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
1078
1079 /* Max Tx Window size for Scheduler-ACK mode */
1080 iwl_write_targ_mem(priv, priv->scd_base_addr +
1081 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i),
1082 (SCD_WIN_SIZE <<
1083 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
1084 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
1085
1086 /* Frame limit */
1087 iwl_write_targ_mem(priv, priv->scd_base_addr +
1088 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
1089 sizeof(u32),
1090 (SCD_FRAME_LIMIT <<
1091 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1092 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
1093
1094 }
1095 iwl_write_prph(priv, IWL49_SCD_INTERRUPT_MASK,
1096 (1 << priv->hw_params.max_txq_num) - 1);
1097
1098 /* Activate all Tx DMA/FIFO channels */
1099 iwl_write_prph(priv, IWL49_SCD_TXFACT,
1100 SCD_TXFACT_REG_TXFIFO_MASK(0, 7));
1101
1102 iwl4965_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
1103
1104 /* Map each Tx/cmd queue to its corresponding fifo */
1105 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
1106 int ac = default_queue_to_tx_fifo[i];
1107 iwl4965_txq_ctx_activate(priv, i);
1108 iwl4965_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
1109 }
1110
1111 iwl_release_nic_access(priv);
1112 spin_unlock_irqrestore(&priv->lock, flags);
1113
1114 /* Ask for statistics now, the uCode will send statistics notification
1115 * periodically after association */
1116 iwl_send_statistics_request(priv, CMD_ASYNC);
1117 return ret;
1118 }
1119
1120 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
1121 static struct iwl_sensitivity_ranges iwl4965_sensitivity = {
1122 .min_nrg_cck = 97,
1123 .max_nrg_cck = 0,
1124
1125 .auto_corr_min_ofdm = 85,
1126 .auto_corr_min_ofdm_mrc = 170,
1127 .auto_corr_min_ofdm_x1 = 105,
1128 .auto_corr_min_ofdm_mrc_x1 = 220,
1129
1130 .auto_corr_max_ofdm = 120,
1131 .auto_corr_max_ofdm_mrc = 210,
1132 .auto_corr_max_ofdm_x1 = 140,
1133 .auto_corr_max_ofdm_mrc_x1 = 270,
1134
1135 .auto_corr_min_cck = 125,
1136 .auto_corr_max_cck = 200,
1137 .auto_corr_min_cck_mrc = 200,
1138 .auto_corr_max_cck_mrc = 400,
1139
1140 .nrg_th_cck = 100,
1141 .nrg_th_ofdm = 100,
1142 };
1143 #endif
1144
1145 /**
1146 * iwl4965_hw_set_hw_params
1147 *
1148 * Called when initializing driver
1149 */
1150 int iwl4965_hw_set_hw_params(struct iwl_priv *priv)
1151 {
1152
1153 if ((priv->cfg->mod_params->num_of_queues > IWL49_NUM_QUEUES) ||
1154 (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) {
1155 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
1156 IWL_MIN_NUM_QUEUES, IWL49_NUM_QUEUES);
1157 return -EINVAL;
1158 }
1159
1160 priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues;
1161 priv->hw_params.sw_crypto = priv->cfg->mod_params->sw_crypto;
1162 priv->hw_params.tx_cmd_len = sizeof(struct iwl4965_tx_cmd);
1163 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
1164 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
1165 if (priv->cfg->mod_params->amsdu_size_8K)
1166 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
1167 else
1168 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
1169 priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
1170 priv->hw_params.max_stations = IWL4965_STATION_COUNT;
1171 priv->hw_params.bcast_sta_id = IWL4965_BROADCAST_ID;
1172
1173 priv->hw_params.max_data_size = IWL49_RTC_DATA_SIZE;
1174 priv->hw_params.max_inst_size = IWL49_RTC_INST_SIZE;
1175 priv->hw_params.max_bsm_size = BSM_SRAM_SIZE;
1176 priv->hw_params.fat_channel = BIT(IEEE80211_BAND_5GHZ);
1177
1178 priv->hw_params.tx_chains_num = 2;
1179 priv->hw_params.rx_chains_num = 2;
1180 priv->hw_params.valid_tx_ant = ANT_A | ANT_B;
1181 priv->hw_params.valid_rx_ant = ANT_A | ANT_B;
1182 priv->hw_params.ct_kill_threshold = CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD);
1183
1184 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
1185 priv->hw_params.sens = &iwl4965_sensitivity;
1186 #endif
1187
1188 return 0;
1189 }
1190
1191 /**
1192 * iwl4965_hw_txq_ctx_free - Free TXQ Context
1193 *
1194 * Destroy all TX DMA queues and structures
1195 */
1196 void iwl4965_hw_txq_ctx_free(struct iwl_priv *priv)
1197 {
1198 int txq_id;
1199
1200 /* Tx queues */
1201 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
1202 iwl4965_tx_queue_free(priv, &priv->txq[txq_id]);
1203
1204 /* Keep-warm buffer */
1205 iwl4965_kw_free(priv);
1206 }
1207
1208 /**
1209 * iwl4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
1210 *
1211 * Does NOT advance any TFD circular buffer read/write indexes
1212 * Does NOT free the TFD itself (which is within circular buffer)
1213 */
1214 int iwl4965_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl4965_tx_queue *txq)
1215 {
1216 struct iwl4965_tfd_frame *bd_tmp = (struct iwl4965_tfd_frame *)&txq->bd[0];
1217 struct iwl4965_tfd_frame *bd = &bd_tmp[txq->q.read_ptr];
1218 struct pci_dev *dev = priv->pci_dev;
1219 int i;
1220 int counter = 0;
1221 int index, is_odd;
1222
1223 /* Host command buffers stay mapped in memory, nothing to clean */
1224 if (txq->q.id == IWL_CMD_QUEUE_NUM)
1225 return 0;
1226
1227 /* Sanity check on number of chunks */
1228 counter = IWL_GET_BITS(*bd, num_tbs);
1229 if (counter > MAX_NUM_OF_TBS) {
1230 IWL_ERROR("Too many chunks: %i\n", counter);
1231 /* @todo issue fatal error, it is quite serious situation */
1232 return 0;
1233 }
1234
1235 /* Unmap chunks, if any.
1236 * TFD info for odd chunks is different format than for even chunks. */
1237 for (i = 0; i < counter; i++) {
1238 index = i / 2;
1239 is_odd = i & 0x1;
1240
1241 if (is_odd)
1242 pci_unmap_single(
1243 dev,
1244 IWL_GET_BITS(bd->pa[index], tb2_addr_lo16) |
1245 (IWL_GET_BITS(bd->pa[index],
1246 tb2_addr_hi20) << 16),
1247 IWL_GET_BITS(bd->pa[index], tb2_len),
1248 PCI_DMA_TODEVICE);
1249
1250 else if (i > 0)
1251 pci_unmap_single(dev,
1252 le32_to_cpu(bd->pa[index].tb1_addr),
1253 IWL_GET_BITS(bd->pa[index], tb1_len),
1254 PCI_DMA_TODEVICE);
1255
1256 /* Free SKB, if any, for this chunk */
1257 if (txq->txb[txq->q.read_ptr].skb[i]) {
1258 struct sk_buff *skb = txq->txb[txq->q.read_ptr].skb[i];
1259
1260 dev_kfree_skb(skb);
1261 txq->txb[txq->q.read_ptr].skb[i] = NULL;
1262 }
1263 }
1264 return 0;
1265 }
1266
1267 /* set card power command */
1268 static int iwl4965_set_power(struct iwl_priv *priv,
1269 void *cmd)
1270 {
1271 int ret = 0;
1272
1273 ret = iwl_send_cmd_pdu_async(priv, POWER_TABLE_CMD,
1274 sizeof(struct iwl4965_powertable_cmd),
1275 cmd, NULL);
1276 return ret;
1277 }
1278 int iwl4965_hw_reg_set_txpower(struct iwl_priv *priv, s8 power)
1279 {
1280 IWL_ERROR("TODO: Implement iwl4965_hw_reg_set_txpower!\n");
1281 return -EINVAL;
1282 }
1283
1284 static s32 iwl4965_math_div_round(s32 num, s32 denom, s32 *res)
1285 {
1286 s32 sign = 1;
1287
1288 if (num < 0) {
1289 sign = -sign;
1290 num = -num;
1291 }
1292 if (denom < 0) {
1293 sign = -sign;
1294 denom = -denom;
1295 }
1296 *res = 1;
1297 *res = ((num * 2 + denom) / (denom * 2)) * sign;
1298
1299 return 1;
1300 }
1301
1302 /**
1303 * iwl4965_get_voltage_compensation - Power supply voltage comp for txpower
1304 *
1305 * Determines power supply voltage compensation for txpower calculations.
1306 * Returns number of 1/2-dB steps to subtract from gain table index,
1307 * to compensate for difference between power supply voltage during
1308 * factory measurements, vs. current power supply voltage.
1309 *
1310 * Voltage indication is higher for lower voltage.
1311 * Lower voltage requires more gain (lower gain table index).
1312 */
1313 static s32 iwl4965_get_voltage_compensation(s32 eeprom_voltage,
1314 s32 current_voltage)
1315 {
1316 s32 comp = 0;
1317
1318 if ((TX_POWER_IWL_ILLEGAL_VOLTAGE == eeprom_voltage) ||
1319 (TX_POWER_IWL_ILLEGAL_VOLTAGE == current_voltage))
1320 return 0;
1321
1322 iwl4965_math_div_round(current_voltage - eeprom_voltage,
1323 TX_POWER_IWL_VOLTAGE_CODES_PER_03V, &comp);
1324
1325 if (current_voltage > eeprom_voltage)
1326 comp *= 2;
1327 if ((comp < -2) || (comp > 2))
1328 comp = 0;
1329
1330 return comp;
1331 }
1332
1333 static const struct iwl_channel_info *
1334 iwl4965_get_channel_txpower_info(struct iwl_priv *priv,
1335 enum ieee80211_band band, u16 channel)
1336 {
1337 const struct iwl_channel_info *ch_info;
1338
1339 ch_info = iwl_get_channel_info(priv, band, channel);
1340
1341 if (!is_channel_valid(ch_info))
1342 return NULL;
1343
1344 return ch_info;
1345 }
1346
1347 static s32 iwl4965_get_tx_atten_grp(u16 channel)
1348 {
1349 if (channel >= CALIB_IWL_TX_ATTEN_GR5_FCH &&
1350 channel <= CALIB_IWL_TX_ATTEN_GR5_LCH)
1351 return CALIB_CH_GROUP_5;
1352
1353 if (channel >= CALIB_IWL_TX_ATTEN_GR1_FCH &&
1354 channel <= CALIB_IWL_TX_ATTEN_GR1_LCH)
1355 return CALIB_CH_GROUP_1;
1356
1357 if (channel >= CALIB_IWL_TX_ATTEN_GR2_FCH &&
1358 channel <= CALIB_IWL_TX_ATTEN_GR2_LCH)
1359 return CALIB_CH_GROUP_2;
1360
1361 if (channel >= CALIB_IWL_TX_ATTEN_GR3_FCH &&
1362 channel <= CALIB_IWL_TX_ATTEN_GR3_LCH)
1363 return CALIB_CH_GROUP_3;
1364
1365 if (channel >= CALIB_IWL_TX_ATTEN_GR4_FCH &&
1366 channel <= CALIB_IWL_TX_ATTEN_GR4_LCH)
1367 return CALIB_CH_GROUP_4;
1368
1369 IWL_ERROR("Can't find txatten group for channel %d.\n", channel);
1370 return -1;
1371 }
1372
1373 static u32 iwl4965_get_sub_band(const struct iwl_priv *priv, u32 channel)
1374 {
1375 s32 b = -1;
1376
1377 for (b = 0; b < EEPROM_TX_POWER_BANDS; b++) {
1378 if (priv->calib_info->band_info[b].ch_from == 0)
1379 continue;
1380
1381 if ((channel >= priv->calib_info->band_info[b].ch_from)
1382 && (channel <= priv->calib_info->band_info[b].ch_to))
1383 break;
1384 }
1385
1386 return b;
1387 }
1388
1389 static s32 iwl4965_interpolate_value(s32 x, s32 x1, s32 y1, s32 x2, s32 y2)
1390 {
1391 s32 val;
1392
1393 if (x2 == x1)
1394 return y1;
1395 else {
1396 iwl4965_math_div_round((x2 - x) * (y1 - y2), (x2 - x1), &val);
1397 return val + y2;
1398 }
1399 }
1400
1401 /**
1402 * iwl4965_interpolate_chan - Interpolate factory measurements for one channel
1403 *
1404 * Interpolates factory measurements from the two sample channels within a
1405 * sub-band, to apply to channel of interest. Interpolation is proportional to
1406 * differences in channel frequencies, which is proportional to differences
1407 * in channel number.
1408 */
1409 static int iwl4965_interpolate_chan(struct iwl_priv *priv, u32 channel,
1410 struct iwl_eeprom_calib_ch_info *chan_info)
1411 {
1412 s32 s = -1;
1413 u32 c;
1414 u32 m;
1415 const struct iwl_eeprom_calib_measure *m1;
1416 const struct iwl_eeprom_calib_measure *m2;
1417 struct iwl_eeprom_calib_measure *omeas;
1418 u32 ch_i1;
1419 u32 ch_i2;
1420
1421 s = iwl4965_get_sub_band(priv, channel);
1422 if (s >= EEPROM_TX_POWER_BANDS) {
1423 IWL_ERROR("Tx Power can not find channel %d ", channel);
1424 return -1;
1425 }
1426
1427 ch_i1 = priv->calib_info->band_info[s].ch1.ch_num;
1428 ch_i2 = priv->calib_info->band_info[s].ch2.ch_num;
1429 chan_info->ch_num = (u8) channel;
1430
1431 IWL_DEBUG_TXPOWER("channel %d subband %d factory cal ch %d & %d\n",
1432 channel, s, ch_i1, ch_i2);
1433
1434 for (c = 0; c < EEPROM_TX_POWER_TX_CHAINS; c++) {
1435 for (m = 0; m < EEPROM_TX_POWER_MEASUREMENTS; m++) {
1436 m1 = &(priv->calib_info->band_info[s].ch1.
1437 measurements[c][m]);
1438 m2 = &(priv->calib_info->band_info[s].ch2.
1439 measurements[c][m]);
1440 omeas = &(chan_info->measurements[c][m]);
1441
1442 omeas->actual_pow =
1443 (u8) iwl4965_interpolate_value(channel, ch_i1,
1444 m1->actual_pow,
1445 ch_i2,
1446 m2->actual_pow);
1447 omeas->gain_idx =
1448 (u8) iwl4965_interpolate_value(channel, ch_i1,
1449 m1->gain_idx, ch_i2,
1450 m2->gain_idx);
1451 omeas->temperature =
1452 (u8) iwl4965_interpolate_value(channel, ch_i1,
1453 m1->temperature,
1454 ch_i2,
1455 m2->temperature);
1456 omeas->pa_det =
1457 (s8) iwl4965_interpolate_value(channel, ch_i1,
1458 m1->pa_det, ch_i2,
1459 m2->pa_det);
1460
1461 IWL_DEBUG_TXPOWER
1462 ("chain %d meas %d AP1=%d AP2=%d AP=%d\n", c, m,
1463 m1->actual_pow, m2->actual_pow, omeas->actual_pow);
1464 IWL_DEBUG_TXPOWER
1465 ("chain %d meas %d NI1=%d NI2=%d NI=%d\n", c, m,
1466 m1->gain_idx, m2->gain_idx, omeas->gain_idx);
1467 IWL_DEBUG_TXPOWER
1468 ("chain %d meas %d PA1=%d PA2=%d PA=%d\n", c, m,
1469 m1->pa_det, m2->pa_det, omeas->pa_det);
1470 IWL_DEBUG_TXPOWER
1471 ("chain %d meas %d T1=%d T2=%d T=%d\n", c, m,
1472 m1->temperature, m2->temperature,
1473 omeas->temperature);
1474 }
1475 }
1476
1477 return 0;
1478 }
1479
1480 /* bit-rate-dependent table to prevent Tx distortion, in half-dB units,
1481 * for OFDM 6, 12, 18, 24, 36, 48, 54, 60 MBit, and CCK all rates. */
1482 static s32 back_off_table[] = {
1483 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 20 MHz */
1484 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 20 MHz */
1485 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 40 MHz */
1486 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 40 MHz */
1487 10 /* CCK */
1488 };
1489
1490 /* Thermal compensation values for txpower for various frequency ranges ...
1491 * ratios from 3:1 to 4.5:1 of degrees (Celsius) per half-dB gain adjust */
1492 static struct iwl4965_txpower_comp_entry {
1493 s32 degrees_per_05db_a;
1494 s32 degrees_per_05db_a_denom;
1495 } tx_power_cmp_tble[CALIB_CH_GROUP_MAX] = {
1496 {9, 2}, /* group 0 5.2, ch 34-43 */
1497 {4, 1}, /* group 1 5.2, ch 44-70 */
1498 {4, 1}, /* group 2 5.2, ch 71-124 */
1499 {4, 1}, /* group 3 5.2, ch 125-200 */
1500 {3, 1} /* group 4 2.4, ch all */
1501 };
1502
1503 static s32 get_min_power_index(s32 rate_power_index, u32 band)
1504 {
1505 if (!band) {
1506 if ((rate_power_index & 7) <= 4)
1507 return MIN_TX_GAIN_INDEX_52GHZ_EXT;
1508 }
1509 return MIN_TX_GAIN_INDEX;
1510 }
1511
1512 struct gain_entry {
1513 u8 dsp;
1514 u8 radio;
1515 };
1516
1517 static const struct gain_entry gain_table[2][108] = {
1518 /* 5.2GHz power gain index table */
1519 {
1520 {123, 0x3F}, /* highest txpower */
1521 {117, 0x3F},
1522 {110, 0x3F},
1523 {104, 0x3F},
1524 {98, 0x3F},
1525 {110, 0x3E},
1526 {104, 0x3E},
1527 {98, 0x3E},
1528 {110, 0x3D},
1529 {104, 0x3D},
1530 {98, 0x3D},
1531 {110, 0x3C},
1532 {104, 0x3C},
1533 {98, 0x3C},
1534 {110, 0x3B},
1535 {104, 0x3B},
1536 {98, 0x3B},
1537 {110, 0x3A},
1538 {104, 0x3A},
1539 {98, 0x3A},
1540 {110, 0x39},
1541 {104, 0x39},
1542 {98, 0x39},
1543 {110, 0x38},
1544 {104, 0x38},
1545 {98, 0x38},
1546 {110, 0x37},
1547 {104, 0x37},
1548 {98, 0x37},
1549 {110, 0x36},
1550 {104, 0x36},
1551 {98, 0x36},
1552 {110, 0x35},
1553 {104, 0x35},
1554 {98, 0x35},
1555 {110, 0x34},
1556 {104, 0x34},
1557 {98, 0x34},
1558 {110, 0x33},
1559 {104, 0x33},
1560 {98, 0x33},
1561 {110, 0x32},
1562 {104, 0x32},
1563 {98, 0x32},
1564 {110, 0x31},
1565 {104, 0x31},
1566 {98, 0x31},
1567 {110, 0x30},
1568 {104, 0x30},
1569 {98, 0x30},
1570 {110, 0x25},
1571 {104, 0x25},
1572 {98, 0x25},
1573 {110, 0x24},
1574 {104, 0x24},
1575 {98, 0x24},
1576 {110, 0x23},
1577 {104, 0x23},
1578 {98, 0x23},
1579 {110, 0x22},
1580 {104, 0x18},
1581 {98, 0x18},
1582 {110, 0x17},
1583 {104, 0x17},
1584 {98, 0x17},
1585 {110, 0x16},
1586 {104, 0x16},
1587 {98, 0x16},
1588 {110, 0x15},
1589 {104, 0x15},
1590 {98, 0x15},
1591 {110, 0x14},
1592 {104, 0x14},
1593 {98, 0x14},
1594 {110, 0x13},
1595 {104, 0x13},
1596 {98, 0x13},
1597 {110, 0x12},
1598 {104, 0x08},
1599 {98, 0x08},
1600 {110, 0x07},
1601 {104, 0x07},
1602 {98, 0x07},
1603 {110, 0x06},
1604 {104, 0x06},
1605 {98, 0x06},
1606 {110, 0x05},
1607 {104, 0x05},
1608 {98, 0x05},
1609 {110, 0x04},
1610 {104, 0x04},
1611 {98, 0x04},
1612 {110, 0x03},
1613 {104, 0x03},
1614 {98, 0x03},
1615 {110, 0x02},
1616 {104, 0x02},
1617 {98, 0x02},
1618 {110, 0x01},
1619 {104, 0x01},
1620 {98, 0x01},
1621 {110, 0x00},
1622 {104, 0x00},
1623 {98, 0x00},
1624 {93, 0x00},
1625 {88, 0x00},
1626 {83, 0x00},
1627 {78, 0x00},
1628 },
1629 /* 2.4GHz power gain index table */
1630 {
1631 {110, 0x3f}, /* highest txpower */
1632 {104, 0x3f},
1633 {98, 0x3f},
1634 {110, 0x3e},
1635 {104, 0x3e},
1636 {98, 0x3e},
1637 {110, 0x3d},
1638 {104, 0x3d},
1639 {98, 0x3d},
1640 {110, 0x3c},
1641 {104, 0x3c},
1642 {98, 0x3c},
1643 {110, 0x3b},
1644 {104, 0x3b},
1645 {98, 0x3b},
1646 {110, 0x3a},
1647 {104, 0x3a},
1648 {98, 0x3a},
1649 {110, 0x39},
1650 {104, 0x39},
1651 {98, 0x39},
1652 {110, 0x38},
1653 {104, 0x38},
1654 {98, 0x38},
1655 {110, 0x37},
1656 {104, 0x37},
1657 {98, 0x37},
1658 {110, 0x36},
1659 {104, 0x36},
1660 {98, 0x36},
1661 {110, 0x35},
1662 {104, 0x35},
1663 {98, 0x35},
1664 {110, 0x34},
1665 {104, 0x34},
1666 {98, 0x34},
1667 {110, 0x33},
1668 {104, 0x33},
1669 {98, 0x33},
1670 {110, 0x32},
1671 {104, 0x32},
1672 {98, 0x32},
1673 {110, 0x31},
1674 {104, 0x31},
1675 {98, 0x31},
1676 {110, 0x30},
1677 {104, 0x30},
1678 {98, 0x30},
1679 {110, 0x6},
1680 {104, 0x6},
1681 {98, 0x6},
1682 {110, 0x5},
1683 {104, 0x5},
1684 {98, 0x5},
1685 {110, 0x4},
1686 {104, 0x4},
1687 {98, 0x4},
1688 {110, 0x3},
1689 {104, 0x3},
1690 {98, 0x3},
1691 {110, 0x2},
1692 {104, 0x2},
1693 {98, 0x2},
1694 {110, 0x1},
1695 {104, 0x1},
1696 {98, 0x1},
1697 {110, 0x0},
1698 {104, 0x0},
1699 {98, 0x0},
1700 {97, 0},
1701 {96, 0},
1702 {95, 0},
1703 {94, 0},
1704 {93, 0},
1705 {92, 0},
1706 {91, 0},
1707 {90, 0},
1708 {89, 0},
1709 {88, 0},
1710 {87, 0},
1711 {86, 0},
1712 {85, 0},
1713 {84, 0},
1714 {83, 0},
1715 {82, 0},
1716 {81, 0},
1717 {80, 0},
1718 {79, 0},
1719 {78, 0},
1720 {77, 0},
1721 {76, 0},
1722 {75, 0},
1723 {74, 0},
1724 {73, 0},
1725 {72, 0},
1726 {71, 0},
1727 {70, 0},
1728 {69, 0},
1729 {68, 0},
1730 {67, 0},
1731 {66, 0},
1732 {65, 0},
1733 {64, 0},
1734 {63, 0},
1735 {62, 0},
1736 {61, 0},
1737 {60, 0},
1738 {59, 0},
1739 }
1740 };
1741
1742 static int iwl4965_fill_txpower_tbl(struct iwl_priv *priv, u8 band, u16 channel,
1743 u8 is_fat, u8 ctrl_chan_high,
1744 struct iwl4965_tx_power_db *tx_power_tbl)
1745 {
1746 u8 saturation_power;
1747 s32 target_power;
1748 s32 user_target_power;
1749 s32 power_limit;
1750 s32 current_temp;
1751 s32 reg_limit;
1752 s32 current_regulatory;
1753 s32 txatten_grp = CALIB_CH_GROUP_MAX;
1754 int i;
1755 int c;
1756 const struct iwl_channel_info *ch_info = NULL;
1757 struct iwl_eeprom_calib_ch_info ch_eeprom_info;
1758 const struct iwl_eeprom_calib_measure *measurement;
1759 s16 voltage;
1760 s32 init_voltage;
1761 s32 voltage_compensation;
1762 s32 degrees_per_05db_num;
1763 s32 degrees_per_05db_denom;
1764 s32 factory_temp;
1765 s32 temperature_comp[2];
1766 s32 factory_gain_index[2];
1767 s32 factory_actual_pwr[2];
1768 s32 power_index;
1769
1770 /* Sanity check requested level (dBm) */
1771 if (priv->user_txpower_limit < IWL_TX_POWER_TARGET_POWER_MIN) {
1772 IWL_WARNING("Requested user TXPOWER %d below limit.\n",
1773 priv->user_txpower_limit);
1774 return -EINVAL;
1775 }
1776 if (priv->user_txpower_limit > IWL_TX_POWER_TARGET_POWER_MAX) {
1777 IWL_WARNING("Requested user TXPOWER %d above limit.\n",
1778 priv->user_txpower_limit);
1779 return -EINVAL;
1780 }
1781
1782 /* user_txpower_limit is in dBm, convert to half-dBm (half-dB units
1783 * are used for indexing into txpower table) */
1784 user_target_power = 2 * priv->user_txpower_limit;
1785
1786 /* Get current (RXON) channel, band, width */
1787 ch_info =
1788 iwl4965_get_channel_txpower_info(priv, priv->band, channel);
1789
1790 IWL_DEBUG_TXPOWER("chan %d band %d is_fat %d\n", channel, band,
1791 is_fat);
1792
1793 if (!ch_info)
1794 return -EINVAL;
1795
1796 /* get txatten group, used to select 1) thermal txpower adjustment
1797 * and 2) mimo txpower balance between Tx chains. */
1798 txatten_grp = iwl4965_get_tx_atten_grp(channel);
1799 if (txatten_grp < 0)
1800 return -EINVAL;
1801
1802 IWL_DEBUG_TXPOWER("channel %d belongs to txatten group %d\n",
1803 channel, txatten_grp);
1804
1805 if (is_fat) {
1806 if (ctrl_chan_high)
1807 channel -= 2;
1808 else
1809 channel += 2;
1810 }
1811
1812 /* hardware txpower limits ...
1813 * saturation (clipping distortion) txpowers are in half-dBm */
1814 if (band)
1815 saturation_power = priv->calib_info->saturation_power24;
1816 else
1817 saturation_power = priv->calib_info->saturation_power52;
1818
1819 if (saturation_power < IWL_TX_POWER_SATURATION_MIN ||
1820 saturation_power > IWL_TX_POWER_SATURATION_MAX) {
1821 if (band)
1822 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_24;
1823 else
1824 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_52;
1825 }
1826
1827 /* regulatory txpower limits ... reg_limit values are in half-dBm,
1828 * max_power_avg values are in dBm, convert * 2 */
1829 if (is_fat)
1830 reg_limit = ch_info->fat_max_power_avg * 2;
1831 else
1832 reg_limit = ch_info->max_power_avg * 2;
1833
1834 if ((reg_limit < IWL_TX_POWER_REGULATORY_MIN) ||
1835 (reg_limit > IWL_TX_POWER_REGULATORY_MAX)) {
1836 if (band)
1837 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_24;
1838 else
1839 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_52;
1840 }
1841
1842 /* Interpolate txpower calibration values for this channel,
1843 * based on factory calibration tests on spaced channels. */
1844 iwl4965_interpolate_chan(priv, channel, &ch_eeprom_info);
1845
1846 /* calculate tx gain adjustment based on power supply voltage */
1847 voltage = priv->calib_info->voltage;
1848 init_voltage = (s32)le32_to_cpu(priv->card_alive_init.voltage);
1849 voltage_compensation =
1850 iwl4965_get_voltage_compensation(voltage, init_voltage);
1851
1852 IWL_DEBUG_TXPOWER("curr volt %d eeprom volt %d volt comp %d\n",
1853 init_voltage,
1854 voltage, voltage_compensation);
1855
1856 /* get current temperature (Celsius) */
1857 current_temp = max(priv->temperature, IWL_TX_POWER_TEMPERATURE_MIN);
1858 current_temp = min(priv->temperature, IWL_TX_POWER_TEMPERATURE_MAX);
1859 current_temp = KELVIN_TO_CELSIUS(current_temp);
1860
1861 /* select thermal txpower adjustment params, based on channel group
1862 * (same frequency group used for mimo txatten adjustment) */
1863 degrees_per_05db_num =
1864 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a;
1865 degrees_per_05db_denom =
1866 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a_denom;
1867
1868 /* get per-chain txpower values from factory measurements */
1869 for (c = 0; c < 2; c++) {
1870 measurement = &ch_eeprom_info.measurements[c][1];
1871
1872 /* txgain adjustment (in half-dB steps) based on difference
1873 * between factory and current temperature */
1874 factory_temp = measurement->temperature;
1875 iwl4965_math_div_round((current_temp - factory_temp) *
1876 degrees_per_05db_denom,
1877 degrees_per_05db_num,
1878 &temperature_comp[c]);
1879
1880 factory_gain_index[c] = measurement->gain_idx;
1881 factory_actual_pwr[c] = measurement->actual_pow;
1882
1883 IWL_DEBUG_TXPOWER("chain = %d\n", c);
1884 IWL_DEBUG_TXPOWER("fctry tmp %d, "
1885 "curr tmp %d, comp %d steps\n",
1886 factory_temp, current_temp,
1887 temperature_comp[c]);
1888
1889 IWL_DEBUG_TXPOWER("fctry idx %d, fctry pwr %d\n",
1890 factory_gain_index[c],
1891 factory_actual_pwr[c]);
1892 }
1893
1894 /* for each of 33 bit-rates (including 1 for CCK) */
1895 for (i = 0; i < POWER_TABLE_NUM_ENTRIES; i++) {
1896 u8 is_mimo_rate;
1897 union iwl4965_tx_power_dual_stream tx_power;
1898
1899 /* for mimo, reduce each chain's txpower by half
1900 * (3dB, 6 steps), so total output power is regulatory
1901 * compliant. */
1902 if (i & 0x8) {
1903 current_regulatory = reg_limit -
1904 IWL_TX_POWER_MIMO_REGULATORY_COMPENSATION;
1905 is_mimo_rate = 1;
1906 } else {
1907 current_regulatory = reg_limit;
1908 is_mimo_rate = 0;
1909 }
1910
1911 /* find txpower limit, either hardware or regulatory */
1912 power_limit = saturation_power - back_off_table[i];
1913 if (power_limit > current_regulatory)
1914 power_limit = current_regulatory;
1915
1916 /* reduce user's txpower request if necessary
1917 * for this rate on this channel */
1918 target_power = user_target_power;
1919 if (target_power > power_limit)
1920 target_power = power_limit;
1921
1922 IWL_DEBUG_TXPOWER("rate %d sat %d reg %d usr %d tgt %d\n",
1923 i, saturation_power - back_off_table[i],
1924 current_regulatory, user_target_power,
1925 target_power);
1926
1927 /* for each of 2 Tx chains (radio transmitters) */
1928 for (c = 0; c < 2; c++) {
1929 s32 atten_value;
1930
1931 if (is_mimo_rate)
1932 atten_value =
1933 (s32)le32_to_cpu(priv->card_alive_init.
1934 tx_atten[txatten_grp][c]);
1935 else
1936 atten_value = 0;
1937
1938 /* calculate index; higher index means lower txpower */
1939 power_index = (u8) (factory_gain_index[c] -
1940 (target_power -
1941 factory_actual_pwr[c]) -
1942 temperature_comp[c] -
1943 voltage_compensation +
1944 atten_value);
1945
1946 /* IWL_DEBUG_TXPOWER("calculated txpower index %d\n",
1947 power_index); */
1948
1949 if (power_index < get_min_power_index(i, band))
1950 power_index = get_min_power_index(i, band);
1951
1952 /* adjust 5 GHz index to support negative indexes */
1953 if (!band)
1954 power_index += 9;
1955
1956 /* CCK, rate 32, reduce txpower for CCK */
1957 if (i == POWER_TABLE_CCK_ENTRY)
1958 power_index +=
1959 IWL_TX_POWER_CCK_COMPENSATION_C_STEP;
1960
1961 /* stay within the table! */
1962 if (power_index > 107) {
1963 IWL_WARNING("txpower index %d > 107\n",
1964 power_index);
1965 power_index = 107;
1966 }
1967 if (power_index < 0) {
1968 IWL_WARNING("txpower index %d < 0\n",
1969 power_index);
1970 power_index = 0;
1971 }
1972
1973 /* fill txpower command for this rate/chain */
1974 tx_power.s.radio_tx_gain[c] =
1975 gain_table[band][power_index].radio;
1976 tx_power.s.dsp_predis_atten[c] =
1977 gain_table[band][power_index].dsp;
1978
1979 IWL_DEBUG_TXPOWER("chain %d mimo %d index %d "
1980 "gain 0x%02x dsp %d\n",
1981 c, atten_value, power_index,
1982 tx_power.s.radio_tx_gain[c],
1983 tx_power.s.dsp_predis_atten[c]);
1984 }/* for each chain */
1985
1986 tx_power_tbl->power_tbl[i].dw = cpu_to_le32(tx_power.dw);
1987
1988 }/* for each rate */
1989
1990 return 0;
1991 }
1992
1993 /**
1994 * iwl4965_hw_reg_send_txpower - Configure the TXPOWER level user limit
1995 *
1996 * Uses the active RXON for channel, band, and characteristics (fat, high)
1997 * The power limit is taken from priv->user_txpower_limit.
1998 */
1999 int iwl4965_hw_reg_send_txpower(struct iwl_priv *priv)
2000 {
2001 struct iwl4965_txpowertable_cmd cmd = { 0 };
2002 int ret;
2003 u8 band = 0;
2004 u8 is_fat = 0;
2005 u8 ctrl_chan_high = 0;
2006
2007 if (test_bit(STATUS_SCANNING, &priv->status)) {
2008 /* If this gets hit a lot, switch it to a BUG() and catch
2009 * the stack trace to find out who is calling this during
2010 * a scan. */
2011 IWL_WARNING("TX Power requested while scanning!\n");
2012 return -EAGAIN;
2013 }
2014
2015 band = priv->band == IEEE80211_BAND_2GHZ;
2016
2017 is_fat = is_fat_channel(priv->active_rxon.flags);
2018
2019 if (is_fat &&
2020 (priv->active_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
2021 ctrl_chan_high = 1;
2022
2023 cmd.band = band;
2024 cmd.channel = priv->active_rxon.channel;
2025
2026 ret = iwl4965_fill_txpower_tbl(priv, band,
2027 le16_to_cpu(priv->active_rxon.channel),
2028 is_fat, ctrl_chan_high, &cmd.tx_power);
2029 if (ret)
2030 goto out;
2031
2032 ret = iwl_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, sizeof(cmd), &cmd);
2033
2034 out:
2035 return ret;
2036 }
2037
2038 static int iwl4965_send_rxon_assoc(struct iwl_priv *priv)
2039 {
2040 int ret = 0;
2041 struct iwl4965_rxon_assoc_cmd rxon_assoc;
2042 const struct iwl4965_rxon_cmd *rxon1 = &priv->staging_rxon;
2043 const struct iwl4965_rxon_cmd *rxon2 = &priv->active_rxon;
2044
2045 if ((rxon1->flags == rxon2->flags) &&
2046 (rxon1->filter_flags == rxon2->filter_flags) &&
2047 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
2048 (rxon1->ofdm_ht_single_stream_basic_rates ==
2049 rxon2->ofdm_ht_single_stream_basic_rates) &&
2050 (rxon1->ofdm_ht_dual_stream_basic_rates ==
2051 rxon2->ofdm_ht_dual_stream_basic_rates) &&
2052 (rxon1->rx_chain == rxon2->rx_chain) &&
2053 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
2054 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
2055 return 0;
2056 }
2057
2058 rxon_assoc.flags = priv->staging_rxon.flags;
2059 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
2060 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
2061 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
2062 rxon_assoc.reserved = 0;
2063 rxon_assoc.ofdm_ht_single_stream_basic_rates =
2064 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
2065 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
2066 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
2067 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
2068
2069 ret = iwl_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
2070 sizeof(rxon_assoc), &rxon_assoc, NULL);
2071 if (ret)
2072 return ret;
2073
2074 return ret;
2075 }
2076
2077
2078 int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel)
2079 {
2080 int rc;
2081 u8 band = 0;
2082 u8 is_fat = 0;
2083 u8 ctrl_chan_high = 0;
2084 struct iwl4965_channel_switch_cmd cmd = { 0 };
2085 const struct iwl_channel_info *ch_info;
2086
2087 band = priv->band == IEEE80211_BAND_2GHZ;
2088
2089 ch_info = iwl_get_channel_info(priv, priv->band, channel);
2090
2091 is_fat = is_fat_channel(priv->staging_rxon.flags);
2092
2093 if (is_fat &&
2094 (priv->active_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
2095 ctrl_chan_high = 1;
2096
2097 cmd.band = band;
2098 cmd.expect_beacon = 0;
2099 cmd.channel = cpu_to_le16(channel);
2100 cmd.rxon_flags = priv->active_rxon.flags;
2101 cmd.rxon_filter_flags = priv->active_rxon.filter_flags;
2102 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
2103 if (ch_info)
2104 cmd.expect_beacon = is_channel_radar(ch_info);
2105 else
2106 cmd.expect_beacon = 1;
2107
2108 rc = iwl4965_fill_txpower_tbl(priv, band, channel, is_fat,
2109 ctrl_chan_high, &cmd.tx_power);
2110 if (rc) {
2111 IWL_DEBUG_11H("error:%d fill txpower_tbl\n", rc);
2112 return rc;
2113 }
2114
2115 rc = iwl_send_cmd_pdu(priv, REPLY_CHANNEL_SWITCH, sizeof(cmd), &cmd);
2116 return rc;
2117 }
2118
2119 #define RTS_HCCA_RETRY_LIMIT 3
2120 #define RTS_DFAULT_RETRY_LIMIT 60
2121
2122 void iwl4965_hw_build_tx_cmd_rate(struct iwl_priv *priv,
2123 struct iwl_cmd *cmd,
2124 struct ieee80211_tx_control *ctrl,
2125 struct ieee80211_hdr *hdr, int sta_id,
2126 int is_hcca)
2127 {
2128 struct iwl4965_tx_cmd *tx = &cmd->cmd.tx;
2129 u8 rts_retry_limit = 0;
2130 u8 data_retry_limit = 0;
2131 u16 fc = le16_to_cpu(hdr->frame_control);
2132 u8 rate_plcp;
2133 u16 rate_flags = 0;
2134 int rate_idx = min(ctrl->tx_rate->hw_value & 0xffff, IWL_RATE_COUNT - 1);
2135
2136 rate_plcp = iwl4965_rates[rate_idx].plcp;
2137
2138 rts_retry_limit = (is_hcca) ?
2139 RTS_HCCA_RETRY_LIMIT : RTS_DFAULT_RETRY_LIMIT;
2140
2141 if ((rate_idx >= IWL_FIRST_CCK_RATE) && (rate_idx <= IWL_LAST_CCK_RATE))
2142 rate_flags |= RATE_MCS_CCK_MSK;
2143
2144
2145 if (ieee80211_is_probe_response(fc)) {
2146 data_retry_limit = 3;
2147 if (data_retry_limit < rts_retry_limit)
2148 rts_retry_limit = data_retry_limit;
2149 } else
2150 data_retry_limit = IWL_DEFAULT_TX_RETRY;
2151
2152 if (priv->data_retry_limit != -1)
2153 data_retry_limit = priv->data_retry_limit;
2154
2155
2156 if (ieee80211_is_data(fc)) {
2157 tx->initial_rate_index = 0;
2158 tx->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
2159 } else {
2160 switch (fc & IEEE80211_FCTL_STYPE) {
2161 case IEEE80211_STYPE_AUTH:
2162 case IEEE80211_STYPE_DEAUTH:
2163 case IEEE80211_STYPE_ASSOC_REQ:
2164 case IEEE80211_STYPE_REASSOC_REQ:
2165 if (tx->tx_flags & TX_CMD_FLG_RTS_MSK) {
2166 tx->tx_flags &= ~TX_CMD_FLG_RTS_MSK;
2167 tx->tx_flags |= TX_CMD_FLG_CTS_MSK;
2168 }
2169 break;
2170 default:
2171 break;
2172 }
2173
2174 /* Alternate between antenna A and B for successive frames */
2175 if (priv->use_ant_b_for_management_frame) {
2176 priv->use_ant_b_for_management_frame = 0;
2177 rate_flags |= RATE_MCS_ANT_B_MSK;
2178 } else {
2179 priv->use_ant_b_for_management_frame = 1;
2180 rate_flags |= RATE_MCS_ANT_A_MSK;
2181 }
2182 }
2183
2184 tx->rts_retry_limit = rts_retry_limit;
2185 tx->data_retry_limit = data_retry_limit;
2186 tx->rate_n_flags = iwl4965_hw_set_rate_n_flags(rate_plcp, rate_flags);
2187 }
2188
2189 int iwl4965_hw_get_rx_read(struct iwl_priv *priv)
2190 {
2191 struct iwl4965_shared *s = priv->shared_virt;
2192 return le32_to_cpu(s->rb_closed) & 0xFFF;
2193 }
2194
2195 int iwl4965_hw_get_temperature(struct iwl_priv *priv)
2196 {
2197 return priv->temperature;
2198 }
2199
2200 unsigned int iwl4965_hw_get_beacon_cmd(struct iwl_priv *priv,
2201 struct iwl4965_frame *frame, u8 rate)
2202 {
2203 struct iwl4965_tx_beacon_cmd *tx_beacon_cmd;
2204 unsigned int frame_size;
2205
2206 tx_beacon_cmd = &frame->u.beacon;
2207 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
2208
2209 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
2210 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
2211
2212 frame_size = iwl4965_fill_beacon_frame(priv,
2213 tx_beacon_cmd->frame,
2214 iwl4965_broadcast_addr,
2215 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
2216
2217 BUG_ON(frame_size > MAX_MPDU_SIZE);
2218 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
2219
2220 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
2221 tx_beacon_cmd->tx.rate_n_flags =
2222 iwl4965_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
2223 else
2224 tx_beacon_cmd->tx.rate_n_flags =
2225 iwl4965_hw_set_rate_n_flags(rate, 0);
2226
2227 tx_beacon_cmd->tx.tx_flags = (TX_CMD_FLG_SEQ_CTL_MSK |
2228 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK);
2229 return (sizeof(*tx_beacon_cmd) + frame_size);
2230 }
2231
2232 /*
2233 * Tell 4965 where to find circular buffer of Tx Frame Descriptors for
2234 * given Tx queue, and enable the DMA channel used for that queue.
2235 *
2236 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
2237 * channels supported in hardware.
2238 */
2239 int iwl4965_hw_tx_queue_init(struct iwl_priv *priv, struct iwl4965_tx_queue *txq)
2240 {
2241 int rc;
2242 unsigned long flags;
2243 int txq_id = txq->q.id;
2244
2245 spin_lock_irqsave(&priv->lock, flags);
2246 rc = iwl_grab_nic_access(priv);
2247 if (rc) {
2248 spin_unlock_irqrestore(&priv->lock, flags);
2249 return rc;
2250 }
2251
2252 /* Circular buffer (TFD queue in DRAM) physical base address */
2253 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
2254 txq->q.dma_addr >> 8);
2255
2256 /* Enable DMA channel, using same id as for TFD queue */
2257 iwl_write_direct32(
2258 priv, FH_TCSR_CHNL_TX_CONFIG_REG(txq_id),
2259 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
2260 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE_VAL);
2261 iwl_release_nic_access(priv);
2262 spin_unlock_irqrestore(&priv->lock, flags);
2263
2264 return 0;
2265 }
2266
2267 int iwl4965_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv, void *ptr,
2268 dma_addr_t addr, u16 len)
2269 {
2270 int index, is_odd;
2271 struct iwl4965_tfd_frame *tfd = ptr;
2272 u32 num_tbs = IWL_GET_BITS(*tfd, num_tbs);
2273
2274 /* Each TFD can point to a maximum 20 Tx buffers */
2275 if ((num_tbs >= MAX_NUM_OF_TBS) || (num_tbs < 0)) {
2276 IWL_ERROR("Error can not send more than %d chunks\n",
2277 MAX_NUM_OF_TBS);
2278 return -EINVAL;
2279 }
2280
2281 index = num_tbs / 2;
2282 is_odd = num_tbs & 0x1;
2283
2284 if (!is_odd) {
2285 tfd->pa[index].tb1_addr = cpu_to_le32(addr);
2286 IWL_SET_BITS(tfd->pa[index], tb1_addr_hi,
2287 iwl_get_dma_hi_address(addr));
2288 IWL_SET_BITS(tfd->pa[index], tb1_len, len);
2289 } else {
2290 IWL_SET_BITS(tfd->pa[index], tb2_addr_lo16,
2291 (u32) (addr & 0xffff));
2292 IWL_SET_BITS(tfd->pa[index], tb2_addr_hi20, addr >> 16);
2293 IWL_SET_BITS(tfd->pa[index], tb2_len, len);
2294 }
2295
2296 IWL_SET_BITS(*tfd, num_tbs, num_tbs + 1);
2297
2298 return 0;
2299 }
2300
2301 static void iwl4965_hw_card_show_info(struct iwl_priv *priv)
2302 {
2303 u16 hw_version = iwl_eeprom_query16(priv, EEPROM_4965_BOARD_REVISION);
2304
2305 IWL_DEBUG_INFO("4965ABGN HW Version %u.%u.%u\n",
2306 ((hw_version >> 8) & 0x0F),
2307 ((hw_version >> 8) >> 4), (hw_version & 0x00FF));
2308
2309 IWL_DEBUG_INFO("4965ABGN PBA Number %.16s\n",
2310 &priv->eeprom[EEPROM_4965_BOARD_PBA]);
2311 }
2312
2313 static int iwl4965_alloc_shared_mem(struct iwl_priv *priv)
2314 {
2315 priv->shared_virt = pci_alloc_consistent(priv->pci_dev,
2316 sizeof(struct iwl4965_shared),
2317 &priv->shared_phys);
2318 if (!priv->shared_virt)
2319 return -ENOMEM;
2320
2321 memset(priv->shared_virt, 0, sizeof(struct iwl4965_shared));
2322
2323 return 0;
2324 }
2325
2326 static void iwl4965_free_shared_mem(struct iwl_priv *priv)
2327 {
2328 if (priv->shared_virt)
2329 pci_free_consistent(priv->pci_dev,
2330 sizeof(struct iwl4965_shared),
2331 priv->shared_virt,
2332 priv->shared_phys);
2333 }
2334
2335 /**
2336 * iwl4965_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
2337 */
2338 static void iwl4965_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
2339 struct iwl4965_tx_queue *txq,
2340 u16 byte_cnt)
2341 {
2342 int len;
2343 int txq_id = txq->q.id;
2344 struct iwl4965_shared *shared_data = priv->shared_virt;
2345
2346 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
2347
2348 /* Set up byte count within first 256 entries */
2349 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
2350 tfd_offset[txq->q.write_ptr], byte_cnt, len);
2351
2352 /* If within first 64 entries, duplicate at end */
2353 if (txq->q.write_ptr < IWL49_MAX_WIN_SIZE)
2354 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
2355 tfd_offset[IWL49_QUEUE_SIZE + txq->q.write_ptr],
2356 byte_cnt, len);
2357 }
2358
2359 /**
2360 * sign_extend - Sign extend a value using specified bit as sign-bit
2361 *
2362 * Example: sign_extend(9, 3) would return -7 as bit3 of 1001b is 1
2363 * and bit0..2 is 001b which when sign extended to 1111111111111001b is -7.
2364 *
2365 * @param oper value to sign extend
2366 * @param index 0 based bit index (0<=index<32) to sign bit
2367 */
2368 static s32 sign_extend(u32 oper, int index)
2369 {
2370 u8 shift = 31 - index;
2371
2372 return (s32)(oper << shift) >> shift;
2373 }
2374
2375 /**
2376 * iwl4965_get_temperature - return the calibrated temperature (in Kelvin)
2377 * @statistics: Provides the temperature reading from the uCode
2378 *
2379 * A return of <0 indicates bogus data in the statistics
2380 */
2381 int iwl4965_get_temperature(const struct iwl_priv *priv)
2382 {
2383 s32 temperature;
2384 s32 vt;
2385 s32 R1, R2, R3;
2386 u32 R4;
2387
2388 if (test_bit(STATUS_TEMPERATURE, &priv->status) &&
2389 (priv->statistics.flag & STATISTICS_REPLY_FLG_FAT_MODE_MSK)) {
2390 IWL_DEBUG_TEMP("Running FAT temperature calibration\n");
2391 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[1]);
2392 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[1]);
2393 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[1]);
2394 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[1]);
2395 } else {
2396 IWL_DEBUG_TEMP("Running temperature calibration\n");
2397 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[0]);
2398 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[0]);
2399 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[0]);
2400 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[0]);
2401 }
2402
2403 /*
2404 * Temperature is only 23 bits, so sign extend out to 32.
2405 *
2406 * NOTE If we haven't received a statistics notification yet
2407 * with an updated temperature, use R4 provided to us in the
2408 * "initialize" ALIVE response.
2409 */
2410 if (!test_bit(STATUS_TEMPERATURE, &priv->status))
2411 vt = sign_extend(R4, 23);
2412 else
2413 vt = sign_extend(
2414 le32_to_cpu(priv->statistics.general.temperature), 23);
2415
2416 IWL_DEBUG_TEMP("Calib values R[1-3]: %d %d %d R4: %d\n",
2417 R1, R2, R3, vt);
2418
2419 if (R3 == R1) {
2420 IWL_ERROR("Calibration conflict R1 == R3\n");
2421 return -1;
2422 }
2423
2424 /* Calculate temperature in degrees Kelvin, adjust by 97%.
2425 * Add offset to center the adjustment around 0 degrees Centigrade. */
2426 temperature = TEMPERATURE_CALIB_A_VAL * (vt - R2);
2427 temperature /= (R3 - R1);
2428 temperature = (temperature * 97) / 100 +
2429 TEMPERATURE_CALIB_KELVIN_OFFSET;
2430
2431 IWL_DEBUG_TEMP("Calibrated temperature: %dK, %dC\n", temperature,
2432 KELVIN_TO_CELSIUS(temperature));
2433
2434 return temperature;
2435 }
2436
2437 /* Adjust Txpower only if temperature variance is greater than threshold. */
2438 #define IWL_TEMPERATURE_THRESHOLD 3
2439
2440 /**
2441 * iwl4965_is_temp_calib_needed - determines if new calibration is needed
2442 *
2443 * If the temperature changed has changed sufficiently, then a recalibration
2444 * is needed.
2445 *
2446 * Assumes caller will replace priv->last_temperature once calibration
2447 * executed.
2448 */
2449 static int iwl4965_is_temp_calib_needed(struct iwl_priv *priv)
2450 {
2451 int temp_diff;
2452
2453 if (!test_bit(STATUS_STATISTICS, &priv->status)) {
2454 IWL_DEBUG_TEMP("Temperature not updated -- no statistics.\n");
2455 return 0;
2456 }
2457
2458 temp_diff = priv->temperature - priv->last_temperature;
2459
2460 /* get absolute value */
2461 if (temp_diff < 0) {
2462 IWL_DEBUG_POWER("Getting cooler, delta %d, \n", temp_diff);
2463 temp_diff = -temp_diff;
2464 } else if (temp_diff == 0)
2465 IWL_DEBUG_POWER("Same temp, \n");
2466 else
2467 IWL_DEBUG_POWER("Getting warmer, delta %d, \n", temp_diff);
2468
2469 if (temp_diff < IWL_TEMPERATURE_THRESHOLD) {
2470 IWL_DEBUG_POWER("Thermal txpower calib not needed\n");
2471 return 0;
2472 }
2473
2474 IWL_DEBUG_POWER("Thermal txpower calib needed\n");
2475
2476 return 1;
2477 }
2478
2479 /* Calculate noise level, based on measurements during network silence just
2480 * before arriving beacon. This measurement can be done only if we know
2481 * exactly when to expect beacons, therefore only when we're associated. */
2482 static void iwl4965_rx_calc_noise(struct iwl_priv *priv)
2483 {
2484 struct statistics_rx_non_phy *rx_info
2485 = &(priv->statistics.rx.general);
2486 int num_active_rx = 0;
2487 int total_silence = 0;
2488 int bcn_silence_a =
2489 le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
2490 int bcn_silence_b =
2491 le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
2492 int bcn_silence_c =
2493 le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
2494
2495 if (bcn_silence_a) {
2496 total_silence += bcn_silence_a;
2497 num_active_rx++;
2498 }
2499 if (bcn_silence_b) {
2500 total_silence += bcn_silence_b;
2501 num_active_rx++;
2502 }
2503 if (bcn_silence_c) {
2504 total_silence += bcn_silence_c;
2505 num_active_rx++;
2506 }
2507
2508 /* Average among active antennas */
2509 if (num_active_rx)
2510 priv->last_rx_noise = (total_silence / num_active_rx) - 107;
2511 else
2512 priv->last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
2513
2514 IWL_DEBUG_CALIB("inband silence a %u, b %u, c %u, dBm %d\n",
2515 bcn_silence_a, bcn_silence_b, bcn_silence_c,
2516 priv->last_rx_noise);
2517 }
2518
2519 void iwl4965_hw_rx_statistics(struct iwl_priv *priv,
2520 struct iwl_rx_mem_buffer *rxb)
2521 {
2522 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
2523 int change;
2524 s32 temp;
2525
2526 IWL_DEBUG_RX("Statistics notification received (%d vs %d).\n",
2527 (int)sizeof(priv->statistics), pkt->len);
2528
2529 change = ((priv->statistics.general.temperature !=
2530 pkt->u.stats.general.temperature) ||
2531 ((priv->statistics.flag &
2532 STATISTICS_REPLY_FLG_FAT_MODE_MSK) !=
2533 (pkt->u.stats.flag & STATISTICS_REPLY_FLG_FAT_MODE_MSK)));
2534
2535 memcpy(&priv->statistics, &pkt->u.stats, sizeof(priv->statistics));
2536
2537 set_bit(STATUS_STATISTICS, &priv->status);
2538
2539 /* Reschedule the statistics timer to occur in
2540 * REG_RECALIB_PERIOD seconds to ensure we get a
2541 * thermal update even if the uCode doesn't give
2542 * us one */
2543 mod_timer(&priv->statistics_periodic, jiffies +
2544 msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
2545
2546 if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
2547 (pkt->hdr.cmd == STATISTICS_NOTIFICATION)) {
2548 iwl4965_rx_calc_noise(priv);
2549 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
2550 queue_work(priv->workqueue, &priv->sensitivity_work);
2551 #endif
2552 }
2553
2554 iwl_leds_background(priv);
2555
2556 /* If the hardware hasn't reported a change in
2557 * temperature then don't bother computing a
2558 * calibrated temperature value */
2559 if (!change)
2560 return;
2561
2562 temp = iwl4965_get_temperature(priv);
2563 if (temp < 0)
2564 return;
2565
2566 if (priv->temperature != temp) {
2567 if (priv->temperature)
2568 IWL_DEBUG_TEMP("Temperature changed "
2569 "from %dC to %dC\n",
2570 KELVIN_TO_CELSIUS(priv->temperature),
2571 KELVIN_TO_CELSIUS(temp));
2572 else
2573 IWL_DEBUG_TEMP("Temperature "
2574 "initialized to %dC\n",
2575 KELVIN_TO_CELSIUS(temp));
2576 }
2577
2578 priv->temperature = temp;
2579 set_bit(STATUS_TEMPERATURE, &priv->status);
2580
2581 if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
2582 iwl4965_is_temp_calib_needed(priv))
2583 queue_work(priv->workqueue, &priv->txpower_work);
2584 }
2585
2586 static void iwl4965_add_radiotap(struct iwl_priv *priv,
2587 struct sk_buff *skb,
2588 struct iwl4965_rx_phy_res *rx_start,
2589 struct ieee80211_rx_status *stats,
2590 u32 ampdu_status)
2591 {
2592 s8 signal = stats->ssi;
2593 s8 noise = 0;
2594 int rate = stats->rate_idx;
2595 u64 tsf = stats->mactime;
2596 __le16 antenna;
2597 __le16 phy_flags_hw = rx_start->phy_flags;
2598 struct iwl4965_rt_rx_hdr {
2599 struct ieee80211_radiotap_header rt_hdr;
2600 __le64 rt_tsf; /* TSF */
2601 u8 rt_flags; /* radiotap packet flags */
2602 u8 rt_rate; /* rate in 500kb/s */
2603 __le16 rt_channelMHz; /* channel in MHz */
2604 __le16 rt_chbitmask; /* channel bitfield */
2605 s8 rt_dbmsignal; /* signal in dBm, kluged to signed */
2606 s8 rt_dbmnoise;
2607 u8 rt_antenna; /* antenna number */
2608 } __attribute__ ((packed)) *iwl4965_rt;
2609
2610 /* TODO: We won't have enough headroom for HT frames. Fix it later. */
2611 if (skb_headroom(skb) < sizeof(*iwl4965_rt)) {
2612 if (net_ratelimit())
2613 printk(KERN_ERR "not enough headroom [%d] for "
2614 "radiotap head [%zd]\n",
2615 skb_headroom(skb), sizeof(*iwl4965_rt));
2616 return;
2617 }
2618
2619 /* put radiotap header in front of 802.11 header and data */
2620 iwl4965_rt = (void *)skb_push(skb, sizeof(*iwl4965_rt));
2621
2622 /* initialise radiotap header */
2623 iwl4965_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
2624 iwl4965_rt->rt_hdr.it_pad = 0;
2625
2626 /* total header + data */
2627 put_unaligned(cpu_to_le16(sizeof(*iwl4965_rt)),
2628 &iwl4965_rt->rt_hdr.it_len);
2629
2630 /* Indicate all the fields we add to the radiotap header */
2631 put_unaligned(cpu_to_le32((1 << IEEE80211_RADIOTAP_TSFT) |
2632 (1 << IEEE80211_RADIOTAP_FLAGS) |
2633 (1 << IEEE80211_RADIOTAP_RATE) |
2634 (1 << IEEE80211_RADIOTAP_CHANNEL) |
2635 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
2636 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
2637 (1 << IEEE80211_RADIOTAP_ANTENNA)),
2638 &iwl4965_rt->rt_hdr.it_present);
2639
2640 /* Zero the flags, we'll add to them as we go */
2641 iwl4965_rt->rt_flags = 0;
2642
2643 put_unaligned(cpu_to_le64(tsf), &iwl4965_rt->rt_tsf);
2644
2645 iwl4965_rt->rt_dbmsignal = signal;
2646 iwl4965_rt->rt_dbmnoise = noise;
2647
2648 /* Convert the channel frequency and set the flags */
2649 put_unaligned(cpu_to_le16(stats->freq), &iwl4965_rt->rt_channelMHz);
2650 if (!(phy_flags_hw & RX_RES_PHY_FLAGS_BAND_24_MSK))
2651 put_unaligned(cpu_to_le16(IEEE80211_CHAN_OFDM |
2652 IEEE80211_CHAN_5GHZ),
2653 &iwl4965_rt->rt_chbitmask);
2654 else if (phy_flags_hw & RX_RES_PHY_FLAGS_MOD_CCK_MSK)
2655 put_unaligned(cpu_to_le16(IEEE80211_CHAN_CCK |
2656 IEEE80211_CHAN_2GHZ),
2657 &iwl4965_rt->rt_chbitmask);
2658 else /* 802.11g */
2659 put_unaligned(cpu_to_le16(IEEE80211_CHAN_OFDM |
2660 IEEE80211_CHAN_2GHZ),
2661 &iwl4965_rt->rt_chbitmask);
2662
2663 if (rate == -1)
2664 iwl4965_rt->rt_rate = 0;
2665 else
2666 iwl4965_rt->rt_rate = iwl4965_rates[rate].ieee;
2667
2668 /*
2669 * "antenna number"
2670 *
2671 * It seems that the antenna field in the phy flags value
2672 * is actually a bitfield. This is undefined by radiotap,
2673 * it wants an actual antenna number but I always get "7"
2674 * for most legacy frames I receive indicating that the
2675 * same frame was received on all three RX chains.
2676 *
2677 * I think this field should be removed in favour of a
2678 * new 802.11n radiotap field "RX chains" that is defined
2679 * as a bitmask.
2680 */
2681 antenna = phy_flags_hw & RX_RES_PHY_FLAGS_ANTENNA_MSK;
2682 iwl4965_rt->rt_antenna = le16_to_cpu(antenna) >> 4;
2683
2684 /* set the preamble flag if appropriate */
2685 if (phy_flags_hw & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
2686 iwl4965_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
2687
2688 stats->flag |= RX_FLAG_RADIOTAP;
2689 }
2690
2691 static void iwl_update_rx_stats(struct iwl_priv *priv, u16 fc, u16 len)
2692 {
2693 /* 0 - mgmt, 1 - cnt, 2 - data */
2694 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
2695 priv->rx_stats[idx].cnt++;
2696 priv->rx_stats[idx].bytes += len;
2697 }
2698
2699 /*
2700 * returns non-zero if packet should be dropped
2701 */
2702 static int iwl4965_set_decrypted_flag(struct iwl_priv *priv,
2703 struct ieee80211_hdr *hdr,
2704 u32 decrypt_res,
2705 struct ieee80211_rx_status *stats)
2706 {
2707 u16 fc = le16_to_cpu(hdr->frame_control);
2708
2709 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2710 return 0;
2711
2712 if (!(fc & IEEE80211_FCTL_PROTECTED))
2713 return 0;
2714
2715 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2716 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2717 case RX_RES_STATUS_SEC_TYPE_TKIP:
2718 /* The uCode has got a bad phase 1 Key, pushes the packet.
2719 * Decryption will be done in SW. */
2720 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2721 RX_RES_STATUS_BAD_KEY_TTAK)
2722 break;
2723
2724 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2725 RX_RES_STATUS_BAD_ICV_MIC) {
2726 /* bad ICV, the packet is destroyed since the
2727 * decryption is inplace, drop it */
2728 IWL_DEBUG_RX("Packet destroyed\n");
2729 return -1;
2730 }
2731 case RX_RES_STATUS_SEC_TYPE_WEP:
2732 case RX_RES_STATUS_SEC_TYPE_CCMP:
2733 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2734 RX_RES_STATUS_DECRYPT_OK) {
2735 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2736 stats->flag |= RX_FLAG_DECRYPTED;
2737 }
2738 break;
2739
2740 default:
2741 break;
2742 }
2743 return 0;
2744 }
2745
2746 static u32 iwl4965_translate_rx_status(u32 decrypt_in)
2747 {
2748 u32 decrypt_out = 0;
2749
2750 if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
2751 RX_RES_STATUS_STATION_FOUND)
2752 decrypt_out |= (RX_RES_STATUS_STATION_FOUND |
2753 RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
2754
2755 decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK);
2756
2757 /* packet was not encrypted */
2758 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
2759 RX_RES_STATUS_SEC_TYPE_NONE)
2760 return decrypt_out;
2761
2762 /* packet was encrypted with unknown alg */
2763 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
2764 RX_RES_STATUS_SEC_TYPE_ERR)
2765 return decrypt_out;
2766
2767 /* decryption was not done in HW */
2768 if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
2769 RX_MPDU_RES_STATUS_DEC_DONE_MSK)
2770 return decrypt_out;
2771
2772 switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) {
2773
2774 case RX_RES_STATUS_SEC_TYPE_CCMP:
2775 /* alg is CCM: check MIC only */
2776 if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK))
2777 /* Bad MIC */
2778 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
2779 else
2780 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
2781
2782 break;
2783
2784 case RX_RES_STATUS_SEC_TYPE_TKIP:
2785 if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) {
2786 /* Bad TTAK */
2787 decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK;
2788 break;
2789 }
2790 /* fall through if TTAK OK */
2791 default:
2792 if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK))
2793 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
2794 else
2795 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
2796 break;
2797 };
2798
2799 IWL_DEBUG_RX("decrypt_in:0x%x decrypt_out = 0x%x\n",
2800 decrypt_in, decrypt_out);
2801
2802 return decrypt_out;
2803 }
2804
2805 static void iwl4965_handle_data_packet(struct iwl_priv *priv, int is_data,
2806 int include_phy,
2807 struct iwl_rx_mem_buffer *rxb,
2808 struct ieee80211_rx_status *stats)
2809 {
2810 struct iwl4965_rx_packet *pkt = (struct iwl4965_rx_packet *)rxb->skb->data;
2811 struct iwl4965_rx_phy_res *rx_start = (include_phy) ?
2812 (struct iwl4965_rx_phy_res *)&(pkt->u.raw[0]) : NULL;
2813 struct ieee80211_hdr *hdr;
2814 u16 len;
2815 __le32 *rx_end;
2816 unsigned int skblen;
2817 u32 ampdu_status;
2818 u32 ampdu_status_legacy;
2819
2820 if (!include_phy && priv->last_phy_res[0])
2821 rx_start = (struct iwl4965_rx_phy_res *)&priv->last_phy_res[1];
2822
2823 if (!rx_start) {
2824 IWL_ERROR("MPDU frame without a PHY data\n");
2825 return;
2826 }
2827 if (include_phy) {
2828 hdr = (struct ieee80211_hdr *)((u8 *) & rx_start[1] +
2829 rx_start->cfg_phy_cnt);
2830
2831 len = le16_to_cpu(rx_start->byte_count);
2832
2833 rx_end = (__le32 *) ((u8 *) & pkt->u.raw[0] +
2834 sizeof(struct iwl4965_rx_phy_res) +
2835 rx_start->cfg_phy_cnt + len);
2836
2837 } else {
2838 struct iwl4965_rx_mpdu_res_start *amsdu =
2839 (struct iwl4965_rx_mpdu_res_start *)pkt->u.raw;
2840
2841 hdr = (struct ieee80211_hdr *)(pkt->u.raw +
2842 sizeof(struct iwl4965_rx_mpdu_res_start));
2843 len = le16_to_cpu(amsdu->byte_count);
2844 rx_start->byte_count = amsdu->byte_count;
2845 rx_end = (__le32 *) (((u8 *) hdr) + len);
2846 }
2847 if (len > priv->hw_params.max_pkt_size || len < 16) {
2848 IWL_WARNING("byte count out of range [16,4K] : %d\n", len);
2849 return;
2850 }
2851
2852 ampdu_status = le32_to_cpu(*rx_end);
2853 skblen = ((u8 *) rx_end - (u8 *) & pkt->u.raw[0]) + sizeof(u32);
2854
2855 if (!include_phy) {
2856 /* New status scheme, need to translate */
2857 ampdu_status_legacy = ampdu_status;
2858 ampdu_status = iwl4965_translate_rx_status(ampdu_status);
2859 }
2860
2861 /* start from MAC */
2862 skb_reserve(rxb->skb, (void *)hdr - (void *)pkt);
2863 skb_put(rxb->skb, len); /* end where data ends */
2864
2865 /* We only process data packets if the interface is open */
2866 if (unlikely(!priv->is_open)) {
2867 IWL_DEBUG_DROP_LIMIT
2868 ("Dropping packet while interface is not open.\n");
2869 return;
2870 }
2871
2872 stats->flag = 0;
2873 hdr = (struct ieee80211_hdr *)rxb->skb->data;
2874
2875 /* in case of HW accelerated crypto and bad decryption, drop */
2876 if (!priv->hw_params.sw_crypto &&
2877 iwl4965_set_decrypted_flag(priv, hdr, ampdu_status, stats))
2878 return;
2879
2880 if (priv->add_radiotap)
2881 iwl4965_add_radiotap(priv, rxb->skb, rx_start, stats, ampdu_status);
2882
2883 iwl_update_rx_stats(priv, le16_to_cpu(hdr->frame_control), len);
2884 ieee80211_rx_irqsafe(priv->hw, rxb->skb, stats);
2885 priv->alloc_rxb_skb--;
2886 rxb->skb = NULL;
2887 }
2888
2889 /* Calc max signal level (dBm) among 3 possible receivers */
2890 static int iwl4965_calc_rssi(struct iwl4965_rx_phy_res *rx_resp)
2891 {
2892 /* data from PHY/DSP regarding signal strength, etc.,
2893 * contents are always there, not configurable by host. */
2894 struct iwl4965_rx_non_cfg_phy *ncphy =
2895 (struct iwl4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy;
2896 u32 agc = (le16_to_cpu(ncphy->agc_info) & IWL_AGC_DB_MASK)
2897 >> IWL_AGC_DB_POS;
2898
2899 u32 valid_antennae =
2900 (le16_to_cpu(rx_resp->phy_flags) & RX_PHY_FLAGS_ANTENNAE_MASK)
2901 >> RX_PHY_FLAGS_ANTENNAE_OFFSET;
2902 u8 max_rssi = 0;
2903 u32 i;
2904
2905 /* Find max rssi among 3 possible receivers.
2906 * These values are measured by the digital signal processor (DSP).
2907 * They should stay fairly constant even as the signal strength varies,
2908 * if the radio's automatic gain control (AGC) is working right.
2909 * AGC value (see below) will provide the "interesting" info. */
2910 for (i = 0; i < 3; i++)
2911 if (valid_antennae & (1 << i))
2912 max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
2913
2914 IWL_DEBUG_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
2915 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
2916 max_rssi, agc);
2917
2918 /* dBm = max_rssi dB - agc dB - constant.
2919 * Higher AGC (higher radio gain) means lower signal. */
2920 return (max_rssi - agc - IWL_RSSI_OFFSET);
2921 }
2922
2923 static void iwl4965_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
2924 {
2925 unsigned long flags;
2926
2927 spin_lock_irqsave(&priv->sta_lock, flags);
2928 priv->stations[sta_id].sta.station_flags &= ~STA_FLG_PWR_SAVE_MSK;
2929 priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
2930 priv->stations[sta_id].sta.sta.modify_mask = 0;
2931 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
2932 spin_unlock_irqrestore(&priv->sta_lock, flags);
2933
2934 iwl4965_send_add_station(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
2935 }
2936
2937 static void iwl4965_update_ps_mode(struct iwl_priv *priv, u16 ps_bit, u8 *addr)
2938 {
2939 /* FIXME: need locking over ps_status ??? */
2940 u8 sta_id = iwl_find_station(priv, addr);
2941
2942 if (sta_id != IWL_INVALID_STATION) {
2943 u8 sta_awake = priv->stations[sta_id].
2944 ps_status == STA_PS_STATUS_WAKE;
2945
2946 if (sta_awake && ps_bit)
2947 priv->stations[sta_id].ps_status = STA_PS_STATUS_SLEEP;
2948 else if (!sta_awake && !ps_bit) {
2949 iwl4965_sta_modify_ps_wake(priv, sta_id);
2950 priv->stations[sta_id].ps_status = STA_PS_STATUS_WAKE;
2951 }
2952 }
2953 }
2954 #ifdef CONFIG_IWLWIFI_DEBUG
2955
2956 /**
2957 * iwl4965_dbg_report_frame - dump frame to syslog during debug sessions
2958 *
2959 * You may hack this function to show different aspects of received frames,
2960 * including selective frame dumps.
2961 * group100 parameter selects whether to show 1 out of 100 good frames.
2962 *
2963 * TODO: This was originally written for 3945, need to audit for
2964 * proper operation with 4965.
2965 */
2966 static void iwl4965_dbg_report_frame(struct iwl_priv *priv,
2967 struct iwl4965_rx_packet *pkt,
2968 struct ieee80211_hdr *header, int group100)
2969 {
2970 u32 to_us;
2971 u32 print_summary = 0;
2972 u32 print_dump = 0; /* set to 1 to dump all frames' contents */
2973 u32 hundred = 0;
2974 u32 dataframe = 0;
2975 u16 fc;
2976 u16 seq_ctl;
2977 u16 channel;
2978 u16 phy_flags;
2979 int rate_sym;
2980 u16 length;
2981 u16 status;
2982 u16 bcn_tmr;
2983 u32 tsf_low;
2984 u64 tsf;
2985 u8 rssi;
2986 u8 agc;
2987 u16 sig_avg;
2988 u16 noise_diff;
2989 struct iwl4965_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt);
2990 struct iwl4965_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt);
2991 struct iwl4965_rx_frame_end *rx_end = IWL_RX_END(pkt);
2992 u8 *data = IWL_RX_DATA(pkt);
2993
2994 if (likely(!(iwl_debug_level & IWL_DL_RX)))
2995 return;
2996
2997 /* MAC header */
2998 fc = le16_to_cpu(header->frame_control);
2999 seq_ctl = le16_to_cpu(header->seq_ctrl);
3000
3001 /* metadata */
3002 channel = le16_to_cpu(rx_hdr->channel);
3003 phy_flags = le16_to_cpu(rx_hdr->phy_flags);
3004 rate_sym = rx_hdr->rate;
3005 length = le16_to_cpu(rx_hdr->len);
3006
3007 /* end-of-frame status and timestamp */
3008 status = le32_to_cpu(rx_end->status);
3009 bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp);
3010 tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff;
3011 tsf = le64_to_cpu(rx_end->timestamp);
3012
3013 /* signal statistics */
3014 rssi = rx_stats->rssi;
3015 agc = rx_stats->agc;
3016 sig_avg = le16_to_cpu(rx_stats->sig_avg);
3017 noise_diff = le16_to_cpu(rx_stats->noise_diff);
3018
3019 to_us = !compare_ether_addr(header->addr1, priv->mac_addr);
3020
3021 /* if data frame is to us and all is good,
3022 * (optionally) print summary for only 1 out of every 100 */
3023 if (to_us && (fc & ~IEEE80211_FCTL_PROTECTED) ==
3024 (IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) {
3025 dataframe = 1;
3026 if (!group100)
3027 print_summary = 1; /* print each frame */
3028 else if (priv->framecnt_to_us < 100) {
3029 priv->framecnt_to_us++;
3030 print_summary = 0;
3031 } else {
3032 priv->framecnt_to_us = 0;
3033 print_summary = 1;
3034 hundred = 1;
3035 }
3036 } else {
3037 /* print summary for all other frames */
3038 print_summary = 1;
3039 }
3040
3041 if (print_summary) {
3042 char *title;
3043 int rate_idx;
3044 u32 bitrate;
3045
3046 if (hundred)
3047 title = "100Frames";
3048 else if (fc & IEEE80211_FCTL_RETRY)
3049 title = "Retry";
3050 else if (ieee80211_is_assoc_response(fc))
3051 title = "AscRsp";
3052 else if (ieee80211_is_reassoc_response(fc))
3053 title = "RasRsp";
3054 else if (ieee80211_is_probe_response(fc)) {
3055 title = "PrbRsp";
3056 print_dump = 1; /* dump frame contents */
3057 } else if (ieee80211_is_beacon(fc)) {
3058 title = "Beacon";
3059 print_dump = 1; /* dump frame contents */
3060 } else if (ieee80211_is_atim(fc))
3061 title = "ATIM";
3062 else if (ieee80211_is_auth(fc))
3063 title = "Auth";
3064 else if (ieee80211_is_deauth(fc))
3065 title = "DeAuth";
3066 else if (ieee80211_is_disassoc(fc))
3067 title = "DisAssoc";
3068 else
3069 title = "Frame";
3070
3071 rate_idx = iwl4965_hwrate_to_plcp_idx(rate_sym);
3072 if (unlikely(rate_idx == -1))
3073 bitrate = 0;
3074 else
3075 bitrate = iwl4965_rates[rate_idx].ieee / 2;
3076
3077 /* print frame summary.
3078 * MAC addresses show just the last byte (for brevity),
3079 * but you can hack it to show more, if you'd like to. */
3080 if (dataframe)
3081 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
3082 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
3083 title, fc, header->addr1[5],
3084 length, rssi, channel, bitrate);
3085 else {
3086 /* src/dst addresses assume managed mode */
3087 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
3088 "src=0x%02x, rssi=%u, tim=%lu usec, "
3089 "phy=0x%02x, chnl=%d\n",
3090 title, fc, header->addr1[5],
3091 header->addr3[5], rssi,
3092 tsf_low - priv->scan_start_tsf,
3093 phy_flags, channel);
3094 }
3095 }
3096 if (print_dump)
3097 iwl_print_hex_dump(IWL_DL_RX, data, length);
3098 }
3099 #else
3100 static inline void iwl4965_dbg_report_frame(struct iwl_priv *priv,
3101 struct iwl4965_rx_packet *pkt,
3102 struct ieee80211_hdr *header,
3103 int group100)
3104 {
3105 }
3106 #endif
3107
3108
3109
3110 /* Called for REPLY_RX (legacy ABG frames), or
3111 * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */
3112 static void iwl4965_rx_reply_rx(struct iwl_priv *priv,
3113 struct iwl_rx_mem_buffer *rxb)
3114 {
3115 struct ieee80211_hdr *header;
3116 struct ieee80211_rx_status rx_status;
3117 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3118 /* Use phy data (Rx signal strength, etc.) contained within
3119 * this rx packet for legacy frames,
3120 * or phy data cached from REPLY_RX_PHY_CMD for HT frames. */
3121 int include_phy = (pkt->hdr.cmd == REPLY_RX);
3122 struct iwl4965_rx_phy_res *rx_start = (include_phy) ?
3123 (struct iwl4965_rx_phy_res *)&(pkt->u.raw[0]) :
3124 (struct iwl4965_rx_phy_res *)&priv->last_phy_res[1];
3125 __le32 *rx_end;
3126 unsigned int len = 0;
3127 u16 fc;
3128 u8 network_packet;
3129
3130 rx_status.mactime = le64_to_cpu(rx_start->timestamp);
3131 rx_status.freq =
3132 ieee80211_frequency_to_channel(le16_to_cpu(rx_start->channel));
3133 rx_status.band = (rx_start->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ?
3134 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
3135 rx_status.rate_idx =
3136 iwl4965_hwrate_to_plcp_idx(le32_to_cpu(rx_start->rate_n_flags));
3137 if (rx_status.band == IEEE80211_BAND_5GHZ)
3138 rx_status.rate_idx -= IWL_FIRST_OFDM_RATE;
3139
3140 rx_status.antenna = 0;
3141 rx_status.flag = 0;
3142
3143 if ((unlikely(rx_start->cfg_phy_cnt > 20))) {
3144 IWL_DEBUG_DROP("dsp size out of range [0,20]: %d/n",
3145 rx_start->cfg_phy_cnt);
3146 return;
3147 }
3148
3149 if (!include_phy) {
3150 if (priv->last_phy_res[0])
3151 rx_start = (struct iwl4965_rx_phy_res *)
3152 &priv->last_phy_res[1];
3153 else
3154 rx_start = NULL;
3155 }
3156
3157 if (!rx_start) {
3158 IWL_ERROR("MPDU frame without a PHY data\n");
3159 return;
3160 }
3161
3162 if (include_phy) {
3163 header = (struct ieee80211_hdr *)((u8 *) & rx_start[1]
3164 + rx_start->cfg_phy_cnt);
3165
3166 len = le16_to_cpu(rx_start->byte_count);
3167 rx_end = (__le32 *)(pkt->u.raw + rx_start->cfg_phy_cnt +
3168 sizeof(struct iwl4965_rx_phy_res) + len);
3169 } else {
3170 struct iwl4965_rx_mpdu_res_start *amsdu =
3171 (struct iwl4965_rx_mpdu_res_start *)pkt->u.raw;
3172
3173 header = (void *)(pkt->u.raw +
3174 sizeof(struct iwl4965_rx_mpdu_res_start));
3175 len = le16_to_cpu(amsdu->byte_count);
3176 rx_end = (__le32 *) (pkt->u.raw +
3177 sizeof(struct iwl4965_rx_mpdu_res_start) + len);
3178 }
3179
3180 if (!(*rx_end & RX_RES_STATUS_NO_CRC32_ERROR) ||
3181 !(*rx_end & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
3182 IWL_DEBUG_RX("Bad CRC or FIFO: 0x%08X.\n",
3183 le32_to_cpu(*rx_end));
3184 return;
3185 }
3186
3187 priv->ucode_beacon_time = le32_to_cpu(rx_start->beacon_time_stamp);
3188
3189 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
3190 rx_status.ssi = iwl4965_calc_rssi(rx_start);
3191
3192 /* Meaningful noise values are available only from beacon statistics,
3193 * which are gathered only when associated, and indicate noise
3194 * only for the associated network channel ...
3195 * Ignore these noise values while scanning (other channels) */
3196 if (iwl_is_associated(priv) &&
3197 !test_bit(STATUS_SCANNING, &priv->status)) {
3198 rx_status.noise = priv->last_rx_noise;
3199 rx_status.signal = iwl4965_calc_sig_qual(rx_status.ssi,
3200 rx_status.noise);
3201 } else {
3202 rx_status.noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
3203 rx_status.signal = iwl4965_calc_sig_qual(rx_status.ssi, 0);
3204 }
3205
3206 /* Reset beacon noise level if not associated. */
3207 if (!iwl_is_associated(priv))
3208 priv->last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
3209
3210 /* Set "1" to report good data frames in groups of 100 */
3211 /* FIXME: need to optimze the call: */
3212 iwl4965_dbg_report_frame(priv, pkt, header, 1);
3213
3214 IWL_DEBUG_STATS_LIMIT("Rssi %d, noise %d, qual %d, TSF %llu\n",
3215 rx_status.ssi, rx_status.noise, rx_status.signal,
3216 (unsigned long long)rx_status.mactime);
3217
3218 network_packet = iwl4965_is_network_packet(priv, header);
3219 if (network_packet) {
3220 priv->last_rx_rssi = rx_status.ssi;
3221 priv->last_beacon_time = priv->ucode_beacon_time;
3222 priv->last_tsf = le64_to_cpu(rx_start->timestamp);
3223 }
3224
3225 fc = le16_to_cpu(header->frame_control);
3226 switch (fc & IEEE80211_FCTL_FTYPE) {
3227 case IEEE80211_FTYPE_MGMT:
3228 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
3229 iwl4965_update_ps_mode(priv, fc & IEEE80211_FCTL_PM,
3230 header->addr2);
3231 iwl4965_handle_data_packet(priv, 0, include_phy, rxb, &rx_status);
3232 break;
3233
3234 case IEEE80211_FTYPE_CTL:
3235 #ifdef CONFIG_IWL4965_HT
3236 switch (fc & IEEE80211_FCTL_STYPE) {
3237 case IEEE80211_STYPE_BACK_REQ:
3238 IWL_DEBUG_HT("IEEE80211_STYPE_BACK_REQ arrived\n");
3239 iwl4965_handle_data_packet(priv, 0, include_phy,
3240 rxb, &rx_status);
3241 break;
3242 default:
3243 break;
3244 }
3245 #endif
3246 break;
3247
3248 case IEEE80211_FTYPE_DATA: {
3249 DECLARE_MAC_BUF(mac1);
3250 DECLARE_MAC_BUF(mac2);
3251 DECLARE_MAC_BUF(mac3);
3252
3253 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
3254 iwl4965_update_ps_mode(priv, fc & IEEE80211_FCTL_PM,
3255 header->addr2);
3256
3257 if (unlikely(!network_packet))
3258 IWL_DEBUG_DROP("Dropping (non network): "
3259 "%s, %s, %s\n",
3260 print_mac(mac1, header->addr1),
3261 print_mac(mac2, header->addr2),
3262 print_mac(mac3, header->addr3));
3263 else if (unlikely(iwl4965_is_duplicate_packet(priv, header)))
3264 IWL_DEBUG_DROP("Dropping (dup): %s, %s, %s\n",
3265 print_mac(mac1, header->addr1),
3266 print_mac(mac2, header->addr2),
3267 print_mac(mac3, header->addr3));
3268 else
3269 iwl4965_handle_data_packet(priv, 1, include_phy, rxb,
3270 &rx_status);
3271 break;
3272 }
3273 default:
3274 break;
3275
3276 }
3277 }
3278
3279 /* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
3280 * This will be used later in iwl4965_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
3281 static void iwl4965_rx_reply_rx_phy(struct iwl_priv *priv,
3282 struct iwl_rx_mem_buffer *rxb)
3283 {
3284 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3285 priv->last_phy_res[0] = 1;
3286 memcpy(&priv->last_phy_res[1], &(pkt->u.raw[0]),
3287 sizeof(struct iwl4965_rx_phy_res));
3288 }
3289 static void iwl4965_rx_missed_beacon_notif(struct iwl_priv *priv,
3290 struct iwl_rx_mem_buffer *rxb)
3291
3292 {
3293 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
3294 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3295 struct iwl4965_missed_beacon_notif *missed_beacon;
3296
3297 missed_beacon = &pkt->u.missed_beacon;
3298 if (le32_to_cpu(missed_beacon->consequtive_missed_beacons) > 5) {
3299 IWL_DEBUG_CALIB("missed bcn cnsq %d totl %d rcd %d expctd %d\n",
3300 le32_to_cpu(missed_beacon->consequtive_missed_beacons),
3301 le32_to_cpu(missed_beacon->total_missed_becons),
3302 le32_to_cpu(missed_beacon->num_recvd_beacons),
3303 le32_to_cpu(missed_beacon->num_expected_beacons));
3304 if (!test_bit(STATUS_SCANNING, &priv->status))
3305 iwl_init_sensitivity(priv);
3306 }
3307 #endif /*CONFIG_IWL4965_RUN_TIME_CALIB*/
3308 }
3309 #ifdef CONFIG_IWL4965_HT
3310
3311 /**
3312 * iwl4965_sta_modify_enable_tid_tx - Enable Tx for this TID in station table
3313 */
3314 static void iwl4965_sta_modify_enable_tid_tx(struct iwl_priv *priv,
3315 int sta_id, int tid)
3316 {
3317 unsigned long flags;
3318
3319 /* Remove "disable" flag, to enable Tx for this TID */
3320 spin_lock_irqsave(&priv->sta_lock, flags);
3321 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3322 priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3323 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3324 spin_unlock_irqrestore(&priv->sta_lock, flags);
3325
3326 iwl4965_send_add_station(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
3327 }
3328
3329 /**
3330 * iwl4965_tx_status_reply_compressed_ba - Update tx status from block-ack
3331 *
3332 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
3333 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
3334 */
3335 static int iwl4965_tx_status_reply_compressed_ba(struct iwl_priv *priv,
3336 struct iwl4965_ht_agg *agg,
3337 struct iwl4965_compressed_ba_resp*
3338 ba_resp)
3339
3340 {
3341 int i, sh, ack;
3342 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
3343 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
3344 u64 bitmap;
3345 int successes = 0;
3346 struct ieee80211_tx_status *tx_status;
3347
3348 if (unlikely(!agg->wait_for_ba)) {
3349 IWL_ERROR("Received BA when not expected\n");
3350 return -EINVAL;
3351 }
3352
3353 /* Mark that the expected block-ack response arrived */
3354 agg->wait_for_ba = 0;
3355 IWL_DEBUG_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
3356
3357 /* Calculate shift to align block-ack bits with our Tx window bits */
3358 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl>>4);
3359 if (sh < 0) /* tbw something is wrong with indices */
3360 sh += 0x100;
3361
3362 /* don't use 64-bit values for now */
3363 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
3364
3365 if (agg->frame_count > (64 - sh)) {
3366 IWL_DEBUG_TX_REPLY("more frames than bitmap size");
3367 return -1;
3368 }
3369
3370 /* check for success or failure according to the
3371 * transmitted bitmap and block-ack bitmap */
3372 bitmap &= agg->bitmap;
3373
3374 /* For each frame attempted in aggregation,
3375 * update driver's record of tx frame's status. */
3376 for (i = 0; i < agg->frame_count ; i++) {
3377 ack = bitmap & (1 << i);
3378 successes += !!ack;
3379 IWL_DEBUG_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
3380 ack? "ACK":"NACK", i, (agg->start_idx + i) & 0xff,
3381 agg->start_idx + i);
3382 }
3383
3384 tx_status = &priv->txq[scd_flow].txb[agg->start_idx].status;
3385 tx_status->flags = IEEE80211_TX_STATUS_ACK;
3386 tx_status->flags |= IEEE80211_TX_STATUS_AMPDU;
3387 tx_status->ampdu_ack_map = successes;
3388 tx_status->ampdu_ack_len = agg->frame_count;
3389 iwl4965_hwrate_to_tx_control(priv, agg->rate_n_flags,
3390 &tx_status->control);
3391
3392 IWL_DEBUG_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
3393
3394 return 0;
3395 }
3396
3397 /**
3398 * iwl4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
3399 */
3400 static void iwl4965_tx_queue_stop_scheduler(struct iwl_priv *priv,
3401 u16 txq_id)
3402 {
3403 /* Simply stop the queue, but don't change any configuration;
3404 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
3405 iwl_write_prph(priv,
3406 IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
3407 (0 << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
3408 (1 << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
3409 }
3410
3411 /**
3412 * txq_id must be greater than IWL_BACK_QUEUE_FIRST_ID
3413 * priv->lock must be held by the caller
3414 */
3415 static int iwl4965_tx_queue_agg_disable(struct iwl_priv *priv, u16 txq_id,
3416 u16 ssn_idx, u8 tx_fifo)
3417 {
3418 int ret = 0;
3419
3420 if (IWL_BACK_QUEUE_FIRST_ID > txq_id) {
3421 IWL_WARNING("queue number too small: %d, must be > %d\n",
3422 txq_id, IWL_BACK_QUEUE_FIRST_ID);
3423 return -EINVAL;
3424 }
3425
3426 ret = iwl_grab_nic_access(priv);
3427 if (ret)
3428 return ret;
3429
3430 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
3431
3432 iwl_clear_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
3433
3434 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
3435 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
3436 /* supposes that ssn_idx is valid (!= 0xFFF) */
3437 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
3438
3439 iwl_clear_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
3440 iwl4965_txq_ctx_deactivate(priv, txq_id);
3441 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
3442
3443 iwl_release_nic_access(priv);
3444
3445 return 0;
3446 }
3447
3448 int iwl4965_check_empty_hw_queue(struct iwl_priv *priv, int sta_id,
3449 u8 tid, int txq_id)
3450 {
3451 struct iwl4965_queue *q = &priv->txq[txq_id].q;
3452 u8 *addr = priv->stations[sta_id].sta.sta.addr;
3453 struct iwl4965_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
3454
3455 switch (priv->stations[sta_id].tid[tid].agg.state) {
3456 case IWL_EMPTYING_HW_QUEUE_DELBA:
3457 /* We are reclaiming the last packet of the */
3458 /* aggregated HW queue */
3459 if (txq_id == tid_data->agg.txq_id &&
3460 q->read_ptr == q->write_ptr) {
3461 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
3462 int tx_fifo = default_tid_to_tx_fifo[tid];
3463 IWL_DEBUG_HT("HW queue empty: continue DELBA flow\n");
3464 iwl4965_tx_queue_agg_disable(priv, txq_id,
3465 ssn, tx_fifo);
3466 tid_data->agg.state = IWL_AGG_OFF;
3467 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
3468 }
3469 break;
3470 case IWL_EMPTYING_HW_QUEUE_ADDBA:
3471 /* We are reclaiming the last packet of the queue */
3472 if (tid_data->tfds_in_queue == 0) {
3473 IWL_DEBUG_HT("HW queue empty: continue ADDBA flow\n");
3474 tid_data->agg.state = IWL_AGG_ON;
3475 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
3476 }
3477 break;
3478 }
3479 return 0;
3480 }
3481
3482 /**
3483 * iwl4965_queue_dec_wrap - Decrement queue index, wrap back to end if needed
3484 * @index -- current index
3485 * @n_bd -- total number of entries in queue (s/b power of 2)
3486 */
3487 static inline int iwl4965_queue_dec_wrap(int index, int n_bd)
3488 {
3489 return (index == 0) ? n_bd - 1 : index - 1;
3490 }
3491
3492 /**
3493 * iwl4965_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
3494 *
3495 * Handles block-acknowledge notification from device, which reports success
3496 * of frames sent via aggregation.
3497 */
3498 static void iwl4965_rx_reply_compressed_ba(struct iwl_priv *priv,
3499 struct iwl_rx_mem_buffer *rxb)
3500 {
3501 struct iwl4965_rx_packet *pkt = (void *)rxb->skb->data;
3502 struct iwl4965_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
3503 int index;
3504 struct iwl4965_tx_queue *txq = NULL;
3505 struct iwl4965_ht_agg *agg;
3506 DECLARE_MAC_BUF(mac);
3507
3508 /* "flow" corresponds to Tx queue */
3509 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
3510
3511 /* "ssn" is start of block-ack Tx window, corresponds to index
3512 * (in Tx queue's circular buffer) of first TFD/frame in window */
3513 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
3514
3515 if (scd_flow >= priv->hw_params.max_txq_num) {
3516 IWL_ERROR("BUG_ON scd_flow is bigger than number of queues");
3517 return;
3518 }
3519
3520 txq = &priv->txq[scd_flow];
3521 agg = &priv->stations[ba_resp->sta_id].tid[ba_resp->tid].agg;
3522
3523 /* Find index just before block-ack window */
3524 index = iwl4965_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
3525
3526 /* TODO: Need to get this copy more safely - now good for debug */
3527
3528 IWL_DEBUG_TX_REPLY("REPLY_COMPRESSED_BA [%d]Received from %s, "
3529 "sta_id = %d\n",
3530 agg->wait_for_ba,
3531 print_mac(mac, (u8*) &ba_resp->sta_addr_lo32),
3532 ba_resp->sta_id);
3533 IWL_DEBUG_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
3534 "%d, scd_ssn = %d\n",
3535 ba_resp->tid,
3536 ba_resp->seq_ctl,
3537 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
3538 ba_resp->scd_flow,
3539 ba_resp->scd_ssn);
3540 IWL_DEBUG_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx \n",
3541 agg->start_idx,
3542 (unsigned long long)agg->bitmap);
3543
3544 /* Update driver's record of ACK vs. not for each frame in window */
3545 iwl4965_tx_status_reply_compressed_ba(priv, agg, ba_resp);
3546
3547 /* Release all TFDs before the SSN, i.e. all TFDs in front of
3548 * block-ack window (we assume that they've been successfully
3549 * transmitted ... if not, it's too late anyway). */
3550 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
3551 /* calculate mac80211 ampdu sw queue to wake */
3552 int ampdu_q =
3553 scd_flow - IWL_BACK_QUEUE_FIRST_ID + priv->hw->queues;
3554 int freed = iwl4965_tx_queue_reclaim(priv, scd_flow, index);
3555 priv->stations[ba_resp->sta_id].
3556 tid[ba_resp->tid].tfds_in_queue -= freed;
3557 if (iwl4965_queue_space(&txq->q) > txq->q.low_mark &&
3558 priv->mac80211_registered &&
3559 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)
3560 ieee80211_wake_queue(priv->hw, ampdu_q);
3561 iwl4965_check_empty_hw_queue(priv, ba_resp->sta_id,
3562 ba_resp->tid, scd_flow);
3563 }
3564 }
3565
3566 /**
3567 * iwl4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
3568 */
3569 static int iwl4965_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
3570 u16 txq_id)
3571 {
3572 u32 tbl_dw_addr;
3573 u32 tbl_dw;
3574 u16 scd_q2ratid;
3575
3576 scd_q2ratid = ra_tid & IWL49_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
3577
3578 tbl_dw_addr = priv->scd_base_addr +
3579 IWL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
3580
3581 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
3582
3583 if (txq_id & 0x1)
3584 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
3585 else
3586 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
3587
3588 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
3589
3590 return 0;
3591 }
3592
3593
3594 /**
3595 * iwl4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
3596 *
3597 * NOTE: txq_id must be greater than IWL_BACK_QUEUE_FIRST_ID,
3598 * i.e. it must be one of the higher queues used for aggregation
3599 */
3600 static int iwl4965_tx_queue_agg_enable(struct iwl_priv *priv, int txq_id,
3601 int tx_fifo, int sta_id, int tid,
3602 u16 ssn_idx)
3603 {
3604 unsigned long flags;
3605 int rc;
3606 u16 ra_tid;
3607
3608 if (IWL_BACK_QUEUE_FIRST_ID > txq_id)
3609 IWL_WARNING("queue number too small: %d, must be > %d\n",
3610 txq_id, IWL_BACK_QUEUE_FIRST_ID);
3611
3612 ra_tid = BUILD_RAxTID(sta_id, tid);
3613
3614 /* Modify device's station table to Tx this TID */
3615 iwl4965_sta_modify_enable_tid_tx(priv, sta_id, tid);
3616
3617 spin_lock_irqsave(&priv->lock, flags);
3618 rc = iwl_grab_nic_access(priv);
3619 if (rc) {
3620 spin_unlock_irqrestore(&priv->lock, flags);
3621 return rc;
3622 }
3623
3624 /* Stop this Tx queue before configuring it */
3625 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
3626
3627 /* Map receiver-address / traffic-ID to this queue */
3628 iwl4965_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
3629
3630 /* Set this queue as a chain-building queue */
3631 iwl_set_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
3632
3633 /* Place first TFD at index corresponding to start sequence number.
3634 * Assumes that ssn_idx is valid (!= 0xFFF) */
3635 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
3636 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
3637 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
3638
3639 /* Set up Tx window size and frame limit for this queue */
3640 iwl_write_targ_mem(priv,
3641 priv->scd_base_addr + IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
3642 (SCD_WIN_SIZE << IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
3643 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
3644
3645 iwl_write_targ_mem(priv, priv->scd_base_addr +
3646 IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
3647 (SCD_FRAME_LIMIT << IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS)
3648 & IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
3649
3650 iwl_set_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
3651
3652 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
3653 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
3654
3655 iwl_release_nic_access(priv);
3656 spin_unlock_irqrestore(&priv->lock, flags);
3657
3658 return 0;
3659 }
3660
3661 #endif /* CONFIG_IWL4965_HT */
3662
3663 /**
3664 * iwl4965_add_station - Initialize a station's hardware rate table
3665 *
3666 * The uCode's station table contains a table of fallback rates
3667 * for automatic fallback during transmission.
3668 *
3669 * NOTE: This sets up a default set of values. These will be replaced later
3670 * if the driver's iwl-4965-rs rate scaling algorithm is used, instead of
3671 * rc80211_simple.
3672 *
3673 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
3674 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
3675 * which requires station table entry to exist).
3676 */
3677 void iwl4965_add_station(struct iwl_priv *priv, const u8 *addr, int is_ap)
3678 {
3679 int i, r;
3680 struct iwl_link_quality_cmd link_cmd = {
3681 .reserved1 = 0,
3682 };
3683 u16 rate_flags;
3684
3685 /* Set up the rate scaling to start at selected rate, fall back
3686 * all the way down to 1M in IEEE order, and then spin on 1M */
3687 if (is_ap)
3688 r = IWL_RATE_54M_INDEX;
3689 else if (priv->band == IEEE80211_BAND_5GHZ)
3690 r = IWL_RATE_6M_INDEX;
3691 else
3692 r = IWL_RATE_1M_INDEX;
3693
3694 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
3695 rate_flags = 0;
3696 if (r >= IWL_FIRST_CCK_RATE && r <= IWL_LAST_CCK_RATE)
3697 rate_flags |= RATE_MCS_CCK_MSK;
3698
3699 /* Use Tx antenna B only */
3700 rate_flags |= RATE_MCS_ANT_B_MSK; /*FIXME:RS*/
3701
3702 link_cmd.rs_table[i].rate_n_flags =
3703 iwl4965_hw_set_rate_n_flags(iwl4965_rates[r].plcp, rate_flags);
3704 r = iwl4965_get_prev_ieee_rate(r);
3705 }
3706
3707 link_cmd.general_params.single_stream_ant_msk = 2;
3708 link_cmd.general_params.dual_stream_ant_msk = 3;
3709 link_cmd.agg_params.agg_dis_start_th = 3;
3710 link_cmd.agg_params.agg_time_limit = cpu_to_le16(4000);
3711
3712 /* Update the rate scaling for control frame Tx to AP */
3713 link_cmd.sta_id = is_ap ? IWL_AP_ID : priv->hw_params.bcast_sta_id;
3714
3715 iwl_send_cmd_pdu_async(priv, REPLY_TX_LINK_QUALITY_CMD,
3716 sizeof(link_cmd), &link_cmd, NULL);
3717 }
3718
3719 #ifdef CONFIG_IWL4965_HT
3720
3721 static u8 iwl4965_is_channel_extension(struct iwl_priv *priv,
3722 enum ieee80211_band band,
3723 u16 channel, u8 extension_chan_offset)
3724 {
3725 const struct iwl_channel_info *ch_info;
3726
3727 ch_info = iwl_get_channel_info(priv, band, channel);
3728 if (!is_channel_valid(ch_info))
3729 return 0;
3730
3731 if (extension_chan_offset == IWL_EXT_CHANNEL_OFFSET_NONE)
3732 return 0;
3733
3734 if ((ch_info->fat_extension_channel == extension_chan_offset) ||
3735 (ch_info->fat_extension_channel == HT_IE_EXT_CHANNEL_MAX))
3736 return 1;
3737
3738 return 0;
3739 }
3740
3741 static u8 iwl4965_is_fat_tx_allowed(struct iwl_priv *priv,
3742 struct ieee80211_ht_info *sta_ht_inf)
3743 {
3744 struct iwl_ht_info *iwl_ht_conf = &priv->current_ht_config;
3745
3746 if ((!iwl_ht_conf->is_ht) ||
3747 (iwl_ht_conf->supported_chan_width != IWL_CHANNEL_WIDTH_40MHZ) ||
3748 (iwl_ht_conf->extension_chan_offset == IWL_EXT_CHANNEL_OFFSET_NONE))
3749 return 0;
3750
3751 if (sta_ht_inf) {
3752 if ((!sta_ht_inf->ht_supported) ||
3753 (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
3754 return 0;
3755 }
3756
3757 return (iwl4965_is_channel_extension(priv, priv->band,
3758 iwl_ht_conf->control_channel,
3759 iwl_ht_conf->extension_chan_offset));
3760 }
3761
3762 void iwl4965_set_rxon_ht(struct iwl_priv *priv, struct iwl_ht_info *ht_info)
3763 {
3764 struct iwl4965_rxon_cmd *rxon = &priv->staging_rxon;
3765 u32 val;
3766
3767 if (!ht_info->is_ht)
3768 return;
3769
3770 /* Set up channel bandwidth: 20 MHz only, or 20/40 mixed if fat ok */
3771 if (iwl4965_is_fat_tx_allowed(priv, NULL))
3772 rxon->flags |= RXON_FLG_CHANNEL_MODE_MIXED_MSK;
3773 else
3774 rxon->flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
3775 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
3776
3777 if (le16_to_cpu(rxon->channel) != ht_info->control_channel) {
3778 IWL_ERROR("control diff than current %d %d\n",
3779 le16_to_cpu(rxon->channel),
3780 ht_info->control_channel);
3781 WARN_ON(1);
3782 return;
3783 }
3784
3785 /* Note: control channel is opposite of extension channel */
3786 switch (ht_info->extension_chan_offset) {
3787 case IWL_EXT_CHANNEL_OFFSET_ABOVE:
3788 rxon->flags &= ~(RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK);
3789 break;
3790 case IWL_EXT_CHANNEL_OFFSET_BELOW:
3791 rxon->flags |= RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK;
3792 break;
3793 case IWL_EXT_CHANNEL_OFFSET_NONE:
3794 default:
3795 rxon->flags &= ~RXON_FLG_CHANNEL_MODE_MIXED_MSK;
3796 break;
3797 }
3798
3799 val = ht_info->ht_protection;
3800
3801 rxon->flags |= cpu_to_le32(val << RXON_FLG_HT_OPERATING_MODE_POS);
3802
3803 iwl_set_rxon_chain(priv);
3804
3805 IWL_DEBUG_ASSOC("supported HT rate 0x%X 0x%X 0x%X "
3806 "rxon flags 0x%X operation mode :0x%X "
3807 "extension channel offset 0x%x "
3808 "control chan %d\n",
3809 ht_info->supp_mcs_set[0],
3810 ht_info->supp_mcs_set[1],
3811 ht_info->supp_mcs_set[2],
3812 le32_to_cpu(rxon->flags), ht_info->ht_protection,
3813 ht_info->extension_chan_offset,
3814 ht_info->control_channel);
3815 return;
3816 }
3817
3818 void iwl4965_set_ht_add_station(struct iwl_priv *priv, u8 index,
3819 struct ieee80211_ht_info *sta_ht_inf)
3820 {
3821 __le32 sta_flags;
3822 u8 mimo_ps_mode;
3823
3824 if (!sta_ht_inf || !sta_ht_inf->ht_supported)
3825 goto done;
3826
3827 mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_MIMO_PS) >> 2;
3828
3829 sta_flags = priv->stations[index].sta.station_flags;
3830
3831 sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
3832
3833 switch (mimo_ps_mode) {
3834 case WLAN_HT_CAP_MIMO_PS_STATIC:
3835 sta_flags |= STA_FLG_MIMO_DIS_MSK;
3836 break;
3837 case WLAN_HT_CAP_MIMO_PS_DYNAMIC:
3838 sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
3839 break;
3840 case WLAN_HT_CAP_MIMO_PS_DISABLED:
3841 break;
3842 default:
3843 IWL_WARNING("Invalid MIMO PS mode %d", mimo_ps_mode);
3844 break;
3845 }
3846
3847 sta_flags |= cpu_to_le32(
3848 (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
3849
3850 sta_flags |= cpu_to_le32(
3851 (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
3852
3853 if (iwl4965_is_fat_tx_allowed(priv, sta_ht_inf))
3854 sta_flags |= STA_FLG_FAT_EN_MSK;
3855 else
3856 sta_flags &= ~STA_FLG_FAT_EN_MSK;
3857
3858 priv->stations[index].sta.station_flags = sta_flags;
3859 done:
3860 return;
3861 }
3862
3863 static int iwl4965_rx_agg_start(struct iwl_priv *priv,
3864 const u8 *addr, int tid, u16 ssn)
3865 {
3866 unsigned long flags;
3867 int sta_id;
3868
3869 sta_id = iwl_find_station(priv, addr);
3870 if (sta_id == IWL_INVALID_STATION)
3871 return -ENXIO;
3872
3873 spin_lock_irqsave(&priv->sta_lock, flags);
3874 priv->stations[sta_id].sta.station_flags_msk = 0;
3875 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
3876 priv->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
3877 priv->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3878 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3879 spin_unlock_irqrestore(&priv->sta_lock, flags);
3880
3881 return iwl4965_send_add_station(priv, &priv->stations[sta_id].sta,
3882 CMD_ASYNC);
3883 }
3884
3885 static int iwl4965_rx_agg_stop(struct iwl_priv *priv,
3886 const u8 *addr, int tid)
3887 {
3888 unsigned long flags;
3889 int sta_id;
3890
3891 sta_id = iwl_find_station(priv, addr);
3892 if (sta_id == IWL_INVALID_STATION)
3893 return -ENXIO;
3894
3895 spin_lock_irqsave(&priv->sta_lock, flags);
3896 priv->stations[sta_id].sta.station_flags_msk = 0;
3897 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
3898 priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
3899 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3900 spin_unlock_irqrestore(&priv->sta_lock, flags);
3901
3902 return iwl4965_send_add_station(priv, &priv->stations[sta_id].sta,
3903 CMD_ASYNC);
3904 }
3905
3906 /*
3907 * Find first available (lowest unused) Tx Queue, mark it "active".
3908 * Called only when finding queue for aggregation.
3909 * Should never return anything < 7, because they should already
3910 * be in use as EDCA AC (0-3), Command (4), HCCA (5, 6).
3911 */
3912 static int iwl4965_txq_ctx_activate_free(struct iwl_priv *priv)
3913 {
3914 int txq_id;
3915
3916 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
3917 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
3918 return txq_id;
3919 return -1;
3920 }
3921
3922 static int iwl4965_tx_agg_start(struct ieee80211_hw *hw, const u8 *ra,
3923 u16 tid, u16 *start_seq_num)
3924 {
3925 struct iwl_priv *priv = hw->priv;
3926 int sta_id;
3927 int tx_fifo;
3928 int txq_id;
3929 int ssn = -1;
3930 int ret = 0;
3931 unsigned long flags;
3932 struct iwl4965_tid_data *tid_data;
3933 DECLARE_MAC_BUF(mac);
3934
3935 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
3936 tx_fifo = default_tid_to_tx_fifo[tid];
3937 else
3938 return -EINVAL;
3939
3940 IWL_WARNING("%s on ra = %s tid = %d\n",
3941 __func__, print_mac(mac, ra), tid);
3942
3943 sta_id = iwl_find_station(priv, ra);
3944 if (sta_id == IWL_INVALID_STATION)
3945 return -ENXIO;
3946
3947 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
3948 IWL_ERROR("Start AGG when state is not IWL_AGG_OFF !\n");
3949 return -ENXIO;
3950 }
3951
3952 txq_id = iwl4965_txq_ctx_activate_free(priv);
3953 if (txq_id == -1)
3954 return -ENXIO;
3955
3956 spin_lock_irqsave(&priv->sta_lock, flags);
3957 tid_data = &priv->stations[sta_id].tid[tid];
3958 ssn = SEQ_TO_SN(tid_data->seq_number);
3959 tid_data->agg.txq_id = txq_id;
3960 spin_unlock_irqrestore(&priv->sta_lock, flags);
3961
3962 *start_seq_num = ssn;
3963 ret = iwl4965_tx_queue_agg_enable(priv, txq_id, tx_fifo,
3964 sta_id, tid, ssn);
3965 if (ret)
3966 return ret;
3967
3968 ret = 0;
3969 if (tid_data->tfds_in_queue == 0) {
3970 printk(KERN_ERR "HW queue is empty\n");
3971 tid_data->agg.state = IWL_AGG_ON;
3972 ieee80211_start_tx_ba_cb_irqsafe(hw, ra, tid);
3973 } else {
3974 IWL_DEBUG_HT("HW queue is NOT empty: %d packets in HW queue\n",
3975 tid_data->tfds_in_queue);
3976 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
3977 }
3978 return ret;
3979 }
3980
3981 static int iwl4965_tx_agg_stop(struct ieee80211_hw *hw, const u8 *ra, u16 tid)
3982 {
3983 struct iwl_priv *priv = hw->priv;
3984 int tx_fifo_id, txq_id, sta_id, ssn = -1;
3985 struct iwl4965_tid_data *tid_data;
3986 int ret, write_ptr, read_ptr;
3987 unsigned long flags;
3988 DECLARE_MAC_BUF(mac);
3989
3990 if (!ra) {
3991 IWL_ERROR("ra = NULL\n");
3992 return -EINVAL;
3993 }
3994
3995 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
3996 tx_fifo_id = default_tid_to_tx_fifo[tid];
3997 else
3998 return -EINVAL;
3999
4000 sta_id = iwl_find_station(priv, ra);
4001
4002 if (sta_id == IWL_INVALID_STATION)
4003 return -ENXIO;
4004
4005 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
4006 IWL_WARNING("Stopping AGG while state not IWL_AGG_ON\n");
4007
4008 tid_data = &priv->stations[sta_id].tid[tid];
4009 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
4010 txq_id = tid_data->agg.txq_id;
4011 write_ptr = priv->txq[txq_id].q.write_ptr;
4012 read_ptr = priv->txq[txq_id].q.read_ptr;
4013
4014 /* The queue is not empty */
4015 if (write_ptr != read_ptr) {
4016 IWL_DEBUG_HT("Stopping a non empty AGG HW QUEUE\n");
4017 priv->stations[sta_id].tid[tid].agg.state =
4018 IWL_EMPTYING_HW_QUEUE_DELBA;
4019 return 0;
4020 }
4021
4022 IWL_DEBUG_HT("HW queue is empty\n");
4023 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
4024
4025 spin_lock_irqsave(&priv->lock, flags);
4026 ret = iwl4965_tx_queue_agg_disable(priv, txq_id, ssn, tx_fifo_id);
4027 spin_unlock_irqrestore(&priv->lock, flags);
4028
4029 if (ret)
4030 return ret;
4031
4032 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
4033
4034 return 0;
4035 }
4036
4037 int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw,
4038 enum ieee80211_ampdu_mlme_action action,
4039 const u8 *addr, u16 tid, u16 *ssn)
4040 {
4041 struct iwl_priv *priv = hw->priv;
4042 DECLARE_MAC_BUF(mac);
4043
4044 IWL_DEBUG_HT("A-MPDU action on addr %s tid %d\n",
4045 print_mac(mac, addr), tid);
4046
4047 switch (action) {
4048 case IEEE80211_AMPDU_RX_START:
4049 IWL_DEBUG_HT("start Rx\n");
4050 return iwl4965_rx_agg_start(priv, addr, tid, *ssn);
4051 case IEEE80211_AMPDU_RX_STOP:
4052 IWL_DEBUG_HT("stop Rx\n");
4053 return iwl4965_rx_agg_stop(priv, addr, tid);
4054 case IEEE80211_AMPDU_TX_START:
4055 IWL_DEBUG_HT("start Tx\n");
4056 return iwl4965_tx_agg_start(hw, addr, tid, ssn);
4057 case IEEE80211_AMPDU_TX_STOP:
4058 IWL_DEBUG_HT("stop Tx\n");
4059 return iwl4965_tx_agg_stop(hw, addr, tid);
4060 default:
4061 IWL_DEBUG_HT("unknown\n");
4062 return -EINVAL;
4063 break;
4064 }
4065 return 0;
4066 }
4067
4068 #endif /* CONFIG_IWL4965_HT */
4069
4070 /* Set up 4965-specific Rx frame reply handlers */
4071 static void iwl4965_rx_handler_setup(struct iwl_priv *priv)
4072 {
4073 /* Legacy Rx frames */
4074 priv->rx_handlers[REPLY_RX] = iwl4965_rx_reply_rx;
4075
4076 /* High-throughput (HT) Rx frames */
4077 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl4965_rx_reply_rx_phy;
4078 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl4965_rx_reply_rx;
4079
4080 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
4081 iwl4965_rx_missed_beacon_notif;
4082
4083 #ifdef CONFIG_IWL4965_HT
4084 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl4965_rx_reply_compressed_ba;
4085 #endif /* CONFIG_IWL4965_HT */
4086 }
4087
4088 void iwl4965_hw_setup_deferred_work(struct iwl_priv *priv)
4089 {
4090 INIT_WORK(&priv->txpower_work, iwl4965_bg_txpower_work);
4091 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
4092 INIT_WORK(&priv->sensitivity_work, iwl4965_bg_sensitivity_work);
4093 #endif
4094 init_timer(&priv->statistics_periodic);
4095 priv->statistics_periodic.data = (unsigned long)priv;
4096 priv->statistics_periodic.function = iwl4965_bg_statistics_periodic;
4097 }
4098
4099 void iwl4965_hw_cancel_deferred_work(struct iwl_priv *priv)
4100 {
4101 del_timer_sync(&priv->statistics_periodic);
4102
4103 cancel_delayed_work(&priv->init_alive_start);
4104 }
4105
4106
4107 static struct iwl_hcmd_ops iwl4965_hcmd = {
4108 .rxon_assoc = iwl4965_send_rxon_assoc,
4109 };
4110
4111 static struct iwl_hcmd_utils_ops iwl4965_hcmd_utils = {
4112 .enqueue_hcmd = iwl4965_enqueue_hcmd,
4113 #ifdef CONFIG_IWL4965_RUN_TIME_CALIB
4114 .chain_noise_reset = iwl4965_chain_noise_reset,
4115 .gain_computation = iwl4965_gain_computation,
4116 #endif
4117 };
4118
4119 static struct iwl_lib_ops iwl4965_lib = {
4120 .set_hw_params = iwl4965_hw_set_hw_params,
4121 .alloc_shared_mem = iwl4965_alloc_shared_mem,
4122 .free_shared_mem = iwl4965_free_shared_mem,
4123 .txq_update_byte_cnt_tbl = iwl4965_txq_update_byte_cnt_tbl,
4124 .hw_nic_init = iwl4965_hw_nic_init,
4125 .rx_handler_setup = iwl4965_rx_handler_setup,
4126 .is_valid_rtc_data_addr = iwl4965_hw_valid_rtc_data_addr,
4127 .alive_notify = iwl4965_alive_notify,
4128 .load_ucode = iwl4965_load_bsm,
4129 .apm_ops = {
4130 .init = iwl4965_apm_init,
4131 .config = iwl4965_nic_config,
4132 .set_pwr_src = iwl4965_set_pwr_src,
4133 },
4134 .eeprom_ops = {
4135 .regulatory_bands = {
4136 EEPROM_REGULATORY_BAND_1_CHANNELS,
4137 EEPROM_REGULATORY_BAND_2_CHANNELS,
4138 EEPROM_REGULATORY_BAND_3_CHANNELS,
4139 EEPROM_REGULATORY_BAND_4_CHANNELS,
4140 EEPROM_REGULATORY_BAND_5_CHANNELS,
4141 EEPROM_4965_REGULATORY_BAND_24_FAT_CHANNELS,
4142 EEPROM_4965_REGULATORY_BAND_52_FAT_CHANNELS
4143 },
4144 .verify_signature = iwlcore_eeprom_verify_signature,
4145 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
4146 .release_semaphore = iwlcore_eeprom_release_semaphore,
4147 .check_version = iwl4965_eeprom_check_version,
4148 .query_addr = iwlcore_eeprom_query_addr,
4149 },
4150 .radio_kill_sw = iwl4965_radio_kill_sw,
4151 .set_power = iwl4965_set_power,
4152 .update_chain_flags = iwl4965_update_chain_flags,
4153 };
4154
4155 static struct iwl_ops iwl4965_ops = {
4156 .lib = &iwl4965_lib,
4157 .hcmd = &iwl4965_hcmd,
4158 .utils = &iwl4965_hcmd_utils,
4159 };
4160
4161 struct iwl_cfg iwl4965_agn_cfg = {
4162 .name = "4965AGN",
4163 .fw_name = "iwlwifi-4965" IWL4965_UCODE_API ".ucode",
4164 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
4165 .eeprom_size = IWL4965_EEPROM_IMG_SIZE,
4166 .ops = &iwl4965_ops,
4167 .mod_params = &iwl4965_mod_params,
4168 };
4169
4170 module_param_named(antenna, iwl4965_mod_params.antenna, int, 0444);
4171 MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
4172 module_param_named(disable, iwl4965_mod_params.disable, int, 0444);
4173 MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
4174 module_param_named(swcrypto, iwl4965_mod_params.sw_crypto, int, 0444);
4175 MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])\n");
4176 module_param_named(debug, iwl4965_mod_params.debug, int, 0444);
4177 MODULE_PARM_DESC(debug, "debug output mask");
4178 module_param_named(
4179 disable_hw_scan, iwl4965_mod_params.disable_hw_scan, int, 0444);
4180 MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
4181
4182 module_param_named(queues_num, iwl4965_mod_params.num_of_queues, int, 0444);
4183 MODULE_PARM_DESC(queues_num, "number of hw queues.");
4184
4185 /* QoS */
4186 module_param_named(qos_enable, iwl4965_mod_params.enable_qos, int, 0444);
4187 MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
4188 module_param_named(amsdu_size_8K, iwl4965_mod_params.amsdu_size_8K, int, 0444);
4189 MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4190
This page took 0.193665 seconds and 5 git commands to generate.