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