]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/wireless/iwlegacy/4965-mac.c
iwlegacy: get rid of rxon_assoc_cmd
[karo-tx-linux.git] / drivers / net / wireless / iwlegacy / 4965-mac.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
4  *
5  * Portions of this file are derived from the ipw3945 project, as well
6  * as portions of the ieee80211 subsystem header files.
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of version 2 of the GNU General Public License as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20  *
21  * The full GNU General Public License is included in this distribution in the
22  * file called LICENSE.
23  *
24  * Contact Information:
25  *  Intel Linux Wireless <ilw@linux.intel.com>
26  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27  *
28  *****************************************************************************/
29
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/pci.h>
36 #include <linux/pci-aspm.h>
37 #include <linux/slab.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/delay.h>
40 #include <linux/sched.h>
41 #include <linux/skbuff.h>
42 #include <linux/netdevice.h>
43 #include <linux/firmware.h>
44 #include <linux/etherdevice.h>
45 #include <linux/if_arp.h>
46
47 #include <net/mac80211.h>
48
49 #include <asm/div64.h>
50
51 #define DRV_NAME        "iwl4965"
52
53 #include "common.h"
54 #include "4965.h"
55
56 /******************************************************************************
57  *
58  * module boiler plate
59  *
60  ******************************************************************************/
61
62 /*
63  * module name, copyright, version, etc.
64  */
65 #define DRV_DESCRIPTION "Intel(R) Wireless WiFi 4965 driver for Linux"
66
67 #ifdef CONFIG_IWLEGACY_DEBUG
68 #define VD "d"
69 #else
70 #define VD
71 #endif
72
73 #define DRV_VERSION     IWLWIFI_VERSION VD
74
75 MODULE_DESCRIPTION(DRV_DESCRIPTION);
76 MODULE_VERSION(DRV_VERSION);
77 MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
78 MODULE_LICENSE("GPL");
79 MODULE_ALIAS("iwl4965");
80
81 void
82 il4965_check_abort_status(struct il_priv *il, u8 frame_count, u32 status)
83 {
84         if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) {
85                 IL_ERR("Tx flush command to flush out all frames\n");
86                 if (!test_bit(S_EXIT_PENDING, &il->status))
87                         queue_work(il->workqueue, &il->tx_flush);
88         }
89 }
90
91 /*
92  * EEPROM
93  */
94 struct il_mod_params il4965_mod_params = {
95         .amsdu_size_8K = 1,
96         .restart_fw = 1,
97         /* the rest are 0 by default */
98 };
99
100 void
101 il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq)
102 {
103         unsigned long flags;
104         int i;
105         spin_lock_irqsave(&rxq->lock, flags);
106         INIT_LIST_HEAD(&rxq->rx_free);
107         INIT_LIST_HEAD(&rxq->rx_used);
108         /* Fill the rx_used queue with _all_ of the Rx buffers */
109         for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
110                 /* In the reset function, these buffers may have been allocated
111                  * to an SKB, so we need to unmap and free potential storage */
112                 if (rxq->pool[i].page != NULL) {
113                         pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
114                                        PAGE_SIZE << il->hw_params.rx_page_order,
115                                        PCI_DMA_FROMDEVICE);
116                         __il_free_pages(il, rxq->pool[i].page);
117                         rxq->pool[i].page = NULL;
118                 }
119                 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
120         }
121
122         for (i = 0; i < RX_QUEUE_SIZE; i++)
123                 rxq->queue[i] = NULL;
124
125         /* Set us so that we have processed and used all buffers, but have
126          * not restocked the Rx queue with fresh buffers */
127         rxq->read = rxq->write = 0;
128         rxq->write_actual = 0;
129         rxq->free_count = 0;
130         spin_unlock_irqrestore(&rxq->lock, flags);
131 }
132
133 int
134 il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq)
135 {
136         u32 rb_size;
137         const u32 rfdnlog = RX_QUEUE_SIZE_LOG;  /* 256 RBDs */
138         u32 rb_timeout = 0;
139
140         if (il->cfg->mod_params->amsdu_size_8K)
141                 rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
142         else
143                 rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
144
145         /* Stop Rx DMA */
146         il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0);
147
148         /* Reset driver's Rx queue write idx */
149         il_wr(il, FH49_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
150
151         /* Tell device where to find RBD circular buffer in DRAM */
152         il_wr(il, FH49_RSCSR_CHNL0_RBDCB_BASE_REG, (u32) (rxq->bd_dma >> 8));
153
154         /* Tell device where in DRAM to update its Rx status */
155         il_wr(il, FH49_RSCSR_CHNL0_STTS_WPTR_REG, rxq->rb_stts_dma >> 4);
156
157         /* Enable Rx DMA
158          * Direct rx interrupts to hosts
159          * Rx buffer size 4 or 8k
160          * RB timeout 0x10
161          * 256 RBDs
162          */
163         il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG,
164               FH49_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
165               FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
166               FH49_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK |
167               rb_size |
168               (rb_timeout << FH49_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS) |
169               (rfdnlog << FH49_RCSR_RX_CONFIG_RBDCB_SIZE_POS));
170
171         /* Set interrupt coalescing timer to default (2048 usecs) */
172         il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_TIMEOUT_DEF);
173
174         return 0;
175 }
176
177 static void
178 il4965_set_pwr_vmain(struct il_priv *il)
179 {
180 /*
181  * (for documentation purposes)
182  * to set power to V_AUX, do:
183
184                 if (pci_pme_capable(il->pci_dev, PCI_D3cold))
185                         il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
186                                                APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
187                                                ~APMG_PS_CTRL_MSK_PWR_SRC);
188  */
189
190         il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
191                               APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
192                               ~APMG_PS_CTRL_MSK_PWR_SRC);
193 }
194
195 int
196 il4965_hw_nic_init(struct il_priv *il)
197 {
198         unsigned long flags;
199         struct il_rx_queue *rxq = &il->rxq;
200         int ret;
201
202         /* nic_init */
203         spin_lock_irqsave(&il->lock, flags);
204         il->cfg->ops->lib->apm_ops.init(il);
205
206         /* Set interrupt coalescing calibration timer to default (512 usecs) */
207         il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_CALIB_TIMEOUT_DEF);
208
209         spin_unlock_irqrestore(&il->lock, flags);
210
211         il4965_set_pwr_vmain(il);
212
213         il->cfg->ops->lib->apm_ops.config(il);
214
215         /* Allocate the RX queue, or reset if it is already allocated */
216         if (!rxq->bd) {
217                 ret = il_rx_queue_alloc(il);
218                 if (ret) {
219                         IL_ERR("Unable to initialize Rx queue\n");
220                         return -ENOMEM;
221                 }
222         } else
223                 il4965_rx_queue_reset(il, rxq);
224
225         il4965_rx_replenish(il);
226
227         il4965_rx_init(il, rxq);
228
229         spin_lock_irqsave(&il->lock, flags);
230
231         rxq->need_update = 1;
232         il_rx_queue_update_write_ptr(il, rxq);
233
234         spin_unlock_irqrestore(&il->lock, flags);
235
236         /* Allocate or reset and init all Tx and Command queues */
237         if (!il->txq) {
238                 ret = il4965_txq_ctx_alloc(il);
239                 if (ret)
240                         return ret;
241         } else
242                 il4965_txq_ctx_reset(il);
243
244         set_bit(S_INIT, &il->status);
245
246         return 0;
247 }
248
249 /**
250  * il4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
251  */
252 static inline __le32
253 il4965_dma_addr2rbd_ptr(struct il_priv *il, dma_addr_t dma_addr)
254 {
255         return cpu_to_le32((u32) (dma_addr >> 8));
256 }
257
258 /**
259  * il4965_rx_queue_restock - refill RX queue from pre-allocated pool
260  *
261  * If there are slots in the RX queue that need to be restocked,
262  * and we have free pre-allocated buffers, fill the ranks as much
263  * as we can, pulling from rx_free.
264  *
265  * This moves the 'write' idx forward to catch up with 'processed', and
266  * also updates the memory address in the firmware to reference the new
267  * target buffer.
268  */
269 void
270 il4965_rx_queue_restock(struct il_priv *il)
271 {
272         struct il_rx_queue *rxq = &il->rxq;
273         struct list_head *element;
274         struct il_rx_buf *rxb;
275         unsigned long flags;
276
277         spin_lock_irqsave(&rxq->lock, flags);
278         while (il_rx_queue_space(rxq) > 0 && rxq->free_count) {
279                 /* The overwritten rxb must be a used one */
280                 rxb = rxq->queue[rxq->write];
281                 BUG_ON(rxb && rxb->page);
282
283                 /* Get next free Rx buffer, remove from free list */
284                 element = rxq->rx_free.next;
285                 rxb = list_entry(element, struct il_rx_buf, list);
286                 list_del(element);
287
288                 /* Point to Rx buffer via next RBD in circular buffer */
289                 rxq->bd[rxq->write] =
290                     il4965_dma_addr2rbd_ptr(il, rxb->page_dma);
291                 rxq->queue[rxq->write] = rxb;
292                 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
293                 rxq->free_count--;
294         }
295         spin_unlock_irqrestore(&rxq->lock, flags);
296         /* If the pre-allocated buffer pool is dropping low, schedule to
297          * refill it */
298         if (rxq->free_count <= RX_LOW_WATERMARK)
299                 queue_work(il->workqueue, &il->rx_replenish);
300
301         /* If we've added more space for the firmware to place data, tell it.
302          * Increment device's write pointer in multiples of 8. */
303         if (rxq->write_actual != (rxq->write & ~0x7)) {
304                 spin_lock_irqsave(&rxq->lock, flags);
305                 rxq->need_update = 1;
306                 spin_unlock_irqrestore(&rxq->lock, flags);
307                 il_rx_queue_update_write_ptr(il, rxq);
308         }
309 }
310
311 /**
312  * il4965_rx_replenish - Move all used packet from rx_used to rx_free
313  *
314  * When moving to rx_free an SKB is allocated for the slot.
315  *
316  * Also restock the Rx queue via il_rx_queue_restock.
317  * This is called as a scheduled work item (except for during initialization)
318  */
319 static void
320 il4965_rx_allocate(struct il_priv *il, gfp_t priority)
321 {
322         struct il_rx_queue *rxq = &il->rxq;
323         struct list_head *element;
324         struct il_rx_buf *rxb;
325         struct page *page;
326         unsigned long flags;
327         gfp_t gfp_mask = priority;
328
329         while (1) {
330                 spin_lock_irqsave(&rxq->lock, flags);
331                 if (list_empty(&rxq->rx_used)) {
332                         spin_unlock_irqrestore(&rxq->lock, flags);
333                         return;
334                 }
335                 spin_unlock_irqrestore(&rxq->lock, flags);
336
337                 if (rxq->free_count > RX_LOW_WATERMARK)
338                         gfp_mask |= __GFP_NOWARN;
339
340                 if (il->hw_params.rx_page_order > 0)
341                         gfp_mask |= __GFP_COMP;
342
343                 /* Alloc a new receive buffer */
344                 page = alloc_pages(gfp_mask, il->hw_params.rx_page_order);
345                 if (!page) {
346                         if (net_ratelimit())
347                                 D_INFO("alloc_pages failed, " "order: %d\n",
348                                        il->hw_params.rx_page_order);
349
350                         if (rxq->free_count <= RX_LOW_WATERMARK &&
351                             net_ratelimit())
352                                 IL_ERR("Failed to alloc_pages with %s. "
353                                        "Only %u free buffers remaining.\n",
354                                        priority ==
355                                        GFP_ATOMIC ? "GFP_ATOMIC" : "GFP_KERNEL",
356                                        rxq->free_count);
357                         /* We don't reschedule replenish work here -- we will
358                          * call the restock method and if it still needs
359                          * more buffers it will schedule replenish */
360                         return;
361                 }
362
363                 spin_lock_irqsave(&rxq->lock, flags);
364
365                 if (list_empty(&rxq->rx_used)) {
366                         spin_unlock_irqrestore(&rxq->lock, flags);
367                         __free_pages(page, il->hw_params.rx_page_order);
368                         return;
369                 }
370                 element = rxq->rx_used.next;
371                 rxb = list_entry(element, struct il_rx_buf, list);
372                 list_del(element);
373
374                 spin_unlock_irqrestore(&rxq->lock, flags);
375
376                 BUG_ON(rxb->page);
377                 rxb->page = page;
378                 /* Get physical address of the RB */
379                 rxb->page_dma =
380                     pci_map_page(il->pci_dev, page, 0,
381                                  PAGE_SIZE << il->hw_params.rx_page_order,
382                                  PCI_DMA_FROMDEVICE);
383                 /* dma address must be no more than 36 bits */
384                 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
385                 /* and also 256 byte aligned! */
386                 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
387
388                 spin_lock_irqsave(&rxq->lock, flags);
389
390                 list_add_tail(&rxb->list, &rxq->rx_free);
391                 rxq->free_count++;
392                 il->alloc_rxb_page++;
393
394                 spin_unlock_irqrestore(&rxq->lock, flags);
395         }
396 }
397
398 void
399 il4965_rx_replenish(struct il_priv *il)
400 {
401         unsigned long flags;
402
403         il4965_rx_allocate(il, GFP_KERNEL);
404
405         spin_lock_irqsave(&il->lock, flags);
406         il4965_rx_queue_restock(il);
407         spin_unlock_irqrestore(&il->lock, flags);
408 }
409
410 void
411 il4965_rx_replenish_now(struct il_priv *il)
412 {
413         il4965_rx_allocate(il, GFP_ATOMIC);
414
415         il4965_rx_queue_restock(il);
416 }
417
418 /* Assumes that the skb field of the buffers in 'pool' is kept accurate.
419  * If an SKB has been detached, the POOL needs to have its SKB set to NULL
420  * This free routine walks the list of POOL entries and if SKB is set to
421  * non NULL it is unmapped and freed
422  */
423 void
424 il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq)
425 {
426         int i;
427         for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
428                 if (rxq->pool[i].page != NULL) {
429                         pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
430                                        PAGE_SIZE << il->hw_params.rx_page_order,
431                                        PCI_DMA_FROMDEVICE);
432                         __il_free_pages(il, rxq->pool[i].page);
433                         rxq->pool[i].page = NULL;
434                 }
435         }
436
437         dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
438                           rxq->bd_dma);
439         dma_free_coherent(&il->pci_dev->dev, sizeof(struct il_rb_status),
440                           rxq->rb_stts, rxq->rb_stts_dma);
441         rxq->bd = NULL;
442         rxq->rb_stts = NULL;
443 }
444
445 int
446 il4965_rxq_stop(struct il_priv *il)
447 {
448
449         /* stop Rx DMA */
450         il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0);
451         il_poll_bit(il, FH49_MEM_RSSR_RX_STATUS_REG,
452                     FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000);
453
454         return 0;
455 }
456
457 int
458 il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
459 {
460         int idx = 0;
461         int band_offset = 0;
462
463         /* HT rate format: mac80211 wants an MCS number, which is just LSB */
464         if (rate_n_flags & RATE_MCS_HT_MSK) {
465                 idx = (rate_n_flags & 0xff);
466                 return idx;
467                 /* Legacy rate format, search for match in table */
468         } else {
469                 if (band == IEEE80211_BAND_5GHZ)
470                         band_offset = IL_FIRST_OFDM_RATE;
471                 for (idx = band_offset; idx < RATE_COUNT_LEGACY; idx++)
472                         if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
473                                 return idx - band_offset;
474         }
475
476         return -1;
477 }
478
479 static int
480 il4965_calc_rssi(struct il_priv *il, struct il_rx_phy_res *rx_resp)
481 {
482         /* data from PHY/DSP regarding signal strength, etc.,
483          *   contents are always there, not configurable by host.  */
484         struct il4965_rx_non_cfg_phy *ncphy =
485             (struct il4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
486         u32 agc =
487             (le16_to_cpu(ncphy->agc_info) & IL49_AGC_DB_MASK) >>
488             IL49_AGC_DB_POS;
489
490         u32 valid_antennae =
491             (le16_to_cpu(rx_resp->phy_flags) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK)
492             >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET;
493         u8 max_rssi = 0;
494         u32 i;
495
496         /* Find max rssi among 3 possible receivers.
497          * These values are measured by the digital signal processor (DSP).
498          * They should stay fairly constant even as the signal strength varies,
499          *   if the radio's automatic gain control (AGC) is working right.
500          * AGC value (see below) will provide the "interesting" info. */
501         for (i = 0; i < 3; i++)
502                 if (valid_antennae & (1 << i))
503                         max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
504
505         D_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
506                 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
507                 max_rssi, agc);
508
509         /* dBm = max_rssi dB - agc dB - constant.
510          * Higher AGC (higher radio gain) means lower signal. */
511         return max_rssi - agc - IL4965_RSSI_OFFSET;
512 }
513
514 static u32
515 il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in)
516 {
517         u32 decrypt_out = 0;
518
519         if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
520             RX_RES_STATUS_STATION_FOUND)
521                 decrypt_out |=
522                     (RX_RES_STATUS_STATION_FOUND |
523                      RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
524
525         decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK);
526
527         /* packet was not encrypted */
528         if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
529             RX_RES_STATUS_SEC_TYPE_NONE)
530                 return decrypt_out;
531
532         /* packet was encrypted with unknown alg */
533         if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
534             RX_RES_STATUS_SEC_TYPE_ERR)
535                 return decrypt_out;
536
537         /* decryption was not done in HW */
538         if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
539             RX_MPDU_RES_STATUS_DEC_DONE_MSK)
540                 return decrypt_out;
541
542         switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) {
543
544         case RX_RES_STATUS_SEC_TYPE_CCMP:
545                 /* alg is CCM: check MIC only */
546                 if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK))
547                         /* Bad MIC */
548                         decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
549                 else
550                         decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
551
552                 break;
553
554         case RX_RES_STATUS_SEC_TYPE_TKIP:
555                 if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) {
556                         /* Bad TTAK */
557                         decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK;
558                         break;
559                 }
560                 /* fall through if TTAK OK */
561         default:
562                 if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK))
563                         decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
564                 else
565                         decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
566                 break;
567         }
568
569         D_RX("decrypt_in:0x%x  decrypt_out = 0x%x\n", decrypt_in, decrypt_out);
570
571         return decrypt_out;
572 }
573
574 static void
575 il4965_pass_packet_to_mac80211(struct il_priv *il, struct ieee80211_hdr *hdr,
576                                u16 len, u32 ampdu_status, struct il_rx_buf *rxb,
577                                struct ieee80211_rx_status *stats)
578 {
579         struct sk_buff *skb;
580         __le16 fc = hdr->frame_control;
581
582         /* We only process data packets if the interface is open */
583         if (unlikely(!il->is_open)) {
584                 D_DROP("Dropping packet while interface is not open.\n");
585                 return;
586         }
587
588         /* In case of HW accelerated crypto and bad decryption, drop */
589         if (!il->cfg->mod_params->sw_crypto &&
590             il_set_decrypted_flag(il, hdr, ampdu_status, stats))
591                 return;
592
593         skb = dev_alloc_skb(128);
594         if (!skb) {
595                 IL_ERR("dev_alloc_skb failed\n");
596                 return;
597         }
598
599         skb_add_rx_frag(skb, 0, rxb->page, (void *)hdr - rxb_addr(rxb), len);
600
601         il_update_stats(il, false, fc, len);
602         memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats));
603
604         ieee80211_rx(il->hw, skb);
605         il->alloc_rxb_page--;
606         rxb->page = NULL;
607 }
608
609 /* Called for N_RX (legacy ABG frames), or
610  * N_RX_MPDU (HT high-throughput N frames). */
611 void
612 il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
613 {
614         struct ieee80211_hdr *header;
615         struct ieee80211_rx_status rx_status;
616         struct il_rx_pkt *pkt = rxb_addr(rxb);
617         struct il_rx_phy_res *phy_res;
618         __le32 rx_pkt_status;
619         struct il_rx_mpdu_res_start *amsdu;
620         u32 len;
621         u32 ampdu_status;
622         u32 rate_n_flags;
623
624         /**
625          * N_RX and N_RX_MPDU are handled differently.
626          *      N_RX: physical layer info is in this buffer
627          *      N_RX_MPDU: physical layer info was sent in separate
628          *              command and cached in il->last_phy_res
629          *
630          * Here we set up local variables depending on which command is
631          * received.
632          */
633         if (pkt->hdr.cmd == N_RX) {
634                 phy_res = (struct il_rx_phy_res *)pkt->u.raw;
635                 header =
636                     (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res) +
637                                              phy_res->cfg_phy_cnt);
638
639                 len = le16_to_cpu(phy_res->byte_count);
640                 rx_pkt_status =
641                     *(__le32 *) (pkt->u.raw + sizeof(*phy_res) +
642                                  phy_res->cfg_phy_cnt + len);
643                 ampdu_status = le32_to_cpu(rx_pkt_status);
644         } else {
645                 if (!il->_4965.last_phy_res_valid) {
646                         IL_ERR("MPDU frame without cached PHY data\n");
647                         return;
648                 }
649                 phy_res = &il->_4965.last_phy_res;
650                 amsdu = (struct il_rx_mpdu_res_start *)pkt->u.raw;
651                 header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*amsdu));
652                 len = le16_to_cpu(amsdu->byte_count);
653                 rx_pkt_status = *(__le32 *) (pkt->u.raw + sizeof(*amsdu) + len);
654                 ampdu_status =
655                     il4965_translate_rx_status(il, le32_to_cpu(rx_pkt_status));
656         }
657
658         if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
659                 D_DROP("dsp size out of range [0,20]: %d/n",
660                        phy_res->cfg_phy_cnt);
661                 return;
662         }
663
664         if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) ||
665             !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
666                 D_RX("Bad CRC or FIFO: 0x%08X.\n", le32_to_cpu(rx_pkt_status));
667                 return;
668         }
669
670         /* This will be used in several places later */
671         rate_n_flags = le32_to_cpu(phy_res->rate_n_flags);
672
673         /* rx_status carries information about the packet to mac80211 */
674         rx_status.mactime = le64_to_cpu(phy_res->timestamp);
675         rx_status.band =
676             (phy_res->
677              phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? IEEE80211_BAND_2GHZ :
678             IEEE80211_BAND_5GHZ;
679         rx_status.freq =
680             ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel),
681                                            rx_status.band);
682         rx_status.rate_idx =
683             il4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band);
684         rx_status.flag = 0;
685
686         /* TSF isn't reliable. In order to allow smooth user experience,
687          * this W/A doesn't propagate it to the mac80211 */
688         /*rx_status.flag |= RX_FLAG_MACTIME_MPDU; */
689
690         il->ucode_beacon_time = le32_to_cpu(phy_res->beacon_time_stamp);
691
692         /* Find max signal strength (dBm) among 3 antenna/receiver chains */
693         rx_status.signal = il4965_calc_rssi(il, phy_res);
694
695         il_dbg_log_rx_data_frame(il, len, header);
696         D_STATS("Rssi %d, TSF %llu\n", rx_status.signal,
697                 (unsigned long long)rx_status.mactime);
698
699         /*
700          * "antenna number"
701          *
702          * It seems that the antenna field in the phy flags value
703          * is actually a bit field. This is undefined by radiotap,
704          * it wants an actual antenna number but I always get "7"
705          * for most legacy frames I receive indicating that the
706          * same frame was received on all three RX chains.
707          *
708          * I think this field should be removed in favor of a
709          * new 802.11n radiotap field "RX chains" that is defined
710          * as a bitmask.
711          */
712         rx_status.antenna =
713             (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK) >>
714             RX_RES_PHY_FLAGS_ANTENNA_POS;
715
716         /* set the preamble flag if appropriate */
717         if (phy_res->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
718                 rx_status.flag |= RX_FLAG_SHORTPRE;
719
720         /* Set up the HT phy flags */
721         if (rate_n_flags & RATE_MCS_HT_MSK)
722                 rx_status.flag |= RX_FLAG_HT;
723         if (rate_n_flags & RATE_MCS_HT40_MSK)
724                 rx_status.flag |= RX_FLAG_40MHZ;
725         if (rate_n_flags & RATE_MCS_SGI_MSK)
726                 rx_status.flag |= RX_FLAG_SHORT_GI;
727
728         il4965_pass_packet_to_mac80211(il, header, len, ampdu_status, rxb,
729                                        &rx_status);
730 }
731
732 /* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY).
733  * This will be used later in il_hdl_rx() for N_RX_MPDU. */
734 void
735 il4965_hdl_rx_phy(struct il_priv *il, struct il_rx_buf *rxb)
736 {
737         struct il_rx_pkt *pkt = rxb_addr(rxb);
738         il->_4965.last_phy_res_valid = true;
739         memcpy(&il->_4965.last_phy_res, pkt->u.raw,
740                sizeof(struct il_rx_phy_res));
741 }
742
743 static int
744 il4965_get_channels_for_scan(struct il_priv *il, struct ieee80211_vif *vif,
745                              enum ieee80211_band band, u8 is_active,
746                              u8 n_probes, struct il_scan_channel *scan_ch)
747 {
748         struct ieee80211_channel *chan;
749         const struct ieee80211_supported_band *sband;
750         const struct il_channel_info *ch_info;
751         u16 passive_dwell = 0;
752         u16 active_dwell = 0;
753         int added, i;
754         u16 channel;
755
756         sband = il_get_hw_mode(il, band);
757         if (!sband)
758                 return 0;
759
760         active_dwell = il_get_active_dwell_time(il, band, n_probes);
761         passive_dwell = il_get_passive_dwell_time(il, band, vif);
762
763         if (passive_dwell <= active_dwell)
764                 passive_dwell = active_dwell + 1;
765
766         for (i = 0, added = 0; i < il->scan_request->n_channels; i++) {
767                 chan = il->scan_request->channels[i];
768
769                 if (chan->band != band)
770                         continue;
771
772                 channel = chan->hw_value;
773                 scan_ch->channel = cpu_to_le16(channel);
774
775                 ch_info = il_get_channel_info(il, band, channel);
776                 if (!il_is_channel_valid(ch_info)) {
777                         D_SCAN("Channel %d is INVALID for this band.\n",
778                                channel);
779                         continue;
780                 }
781
782                 if (!is_active || il_is_channel_passive(ch_info) ||
783                     (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN))
784                         scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
785                 else
786                         scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
787
788                 if (n_probes)
789                         scan_ch->type |= IL_SCAN_PROBE_MASK(n_probes);
790
791                 scan_ch->active_dwell = cpu_to_le16(active_dwell);
792                 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
793
794                 /* Set txpower levels to defaults */
795                 scan_ch->dsp_atten = 110;
796
797                 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
798                  * power level:
799                  * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
800                  */
801                 if (band == IEEE80211_BAND_5GHZ)
802                         scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
803                 else
804                         scan_ch->tx_gain = ((1 << 5) | (5 << 3));
805
806                 D_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n", channel,
807                        le32_to_cpu(scan_ch->type),
808                        (scan_ch->
809                         type & SCAN_CHANNEL_TYPE_ACTIVE) ? "ACTIVE" : "PASSIVE",
810                        (scan_ch->
811                         type & SCAN_CHANNEL_TYPE_ACTIVE) ? active_dwell :
812                        passive_dwell);
813
814                 scan_ch++;
815                 added++;
816         }
817
818         D_SCAN("total channels to scan %d\n", added);
819         return added;
820 }
821
822 static void
823 il4965_toggle_tx_ant(struct il_priv *il, u8 *ant, u8 valid)
824 {
825         int i;
826         u8 ind = *ant;
827
828         for (i = 0; i < RATE_ANT_NUM - 1; i++) {
829                 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
830                 if (valid & BIT(ind)) {
831                         *ant = ind;
832                         return;
833                 }
834         }
835 }
836
837 int
838 il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif)
839 {
840         struct il_host_cmd cmd = {
841                 .id = C_SCAN,
842                 .len = sizeof(struct il_scan_cmd),
843                 .flags = CMD_SIZE_HUGE,
844         };
845         struct il_scan_cmd *scan;
846         struct il_rxon_context *ctx = &il->ctx;
847         u32 rate_flags = 0;
848         u16 cmd_len;
849         u16 rx_chain = 0;
850         enum ieee80211_band band;
851         u8 n_probes = 0;
852         u8 rx_ant = il->hw_params.valid_rx_ant;
853         u8 rate;
854         bool is_active = false;
855         int chan_mod;
856         u8 active_chains;
857         u8 scan_tx_antennas = il->hw_params.valid_tx_ant;
858         int ret;
859
860         lockdep_assert_held(&il->mutex);
861
862         ctx = il_rxon_ctx_from_vif(vif);
863
864         if (!il->scan_cmd) {
865                 il->scan_cmd =
866                     kmalloc(sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE,
867                             GFP_KERNEL);
868                 if (!il->scan_cmd) {
869                         D_SCAN("fail to allocate memory for scan\n");
870                         return -ENOMEM;
871                 }
872         }
873         scan = il->scan_cmd;
874         memset(scan, 0, sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE);
875
876         scan->quiet_plcp_th = IL_PLCP_QUIET_THRESH;
877         scan->quiet_time = IL_ACTIVE_QUIET_TIME;
878
879         if (il_is_any_associated(il)) {
880                 u16 interval;
881                 u32 extra;
882                 u32 suspend_time = 100;
883                 u32 scan_suspend_time = 100;
884
885                 D_INFO("Scanning while associated...\n");
886                 interval = vif->bss_conf.beacon_int;
887
888                 scan->suspend_time = 0;
889                 scan->max_out_time = cpu_to_le32(200 * 1024);
890                 if (!interval)
891                         interval = suspend_time;
892
893                 extra = (suspend_time / interval) << 22;
894                 scan_suspend_time =
895                     (extra | ((suspend_time % interval) * 1024));
896                 scan->suspend_time = cpu_to_le32(scan_suspend_time);
897                 D_SCAN("suspend_time 0x%X beacon interval %d\n",
898                        scan_suspend_time, interval);
899         }
900
901         if (il->scan_request->n_ssids) {
902                 int i, p = 0;
903                 D_SCAN("Kicking off active scan\n");
904                 for (i = 0; i < il->scan_request->n_ssids; i++) {
905                         /* always does wildcard anyway */
906                         if (!il->scan_request->ssids[i].ssid_len)
907                                 continue;
908                         scan->direct_scan[p].id = WLAN_EID_SSID;
909                         scan->direct_scan[p].len =
910                             il->scan_request->ssids[i].ssid_len;
911                         memcpy(scan->direct_scan[p].ssid,
912                                il->scan_request->ssids[i].ssid,
913                                il->scan_request->ssids[i].ssid_len);
914                         n_probes++;
915                         p++;
916                 }
917                 is_active = true;
918         } else
919                 D_SCAN("Start passive scan.\n");
920
921         scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
922         scan->tx_cmd.sta_id = ctx->bcast_sta_id;
923         scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
924
925         switch (il->scan_band) {
926         case IEEE80211_BAND_2GHZ:
927                 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
928                 chan_mod =
929                     le32_to_cpu(il->active.flags & RXON_FLG_CHANNEL_MODE_MSK) >>
930                     RXON_FLG_CHANNEL_MODE_POS;
931                 if (chan_mod == CHANNEL_MODE_PURE_40) {
932                         rate = RATE_6M_PLCP;
933                 } else {
934                         rate = RATE_1M_PLCP;
935                         rate_flags = RATE_MCS_CCK_MSK;
936                 }
937                 break;
938         case IEEE80211_BAND_5GHZ:
939                 rate = RATE_6M_PLCP;
940                 break;
941         default:
942                 IL_WARN("Invalid scan band\n");
943                 return -EIO;
944         }
945
946         /*
947          * If active scanning is requested but a certain channel is
948          * marked passive, we can do active scanning if we detect
949          * transmissions.
950          *
951          * There is an issue with some firmware versions that triggers
952          * a sysassert on a "good CRC threshold" of zero (== disabled),
953          * on a radar channel even though this means that we should NOT
954          * send probes.
955          *
956          * The "good CRC threshold" is the number of frames that we
957          * need to receive during our dwell time on a channel before
958          * sending out probes -- setting this to a huge value will
959          * mean we never reach it, but at the same time work around
960          * the aforementioned issue. Thus use IL_GOOD_CRC_TH_NEVER
961          * here instead of IL_GOOD_CRC_TH_DISABLED.
962          */
963         scan->good_CRC_th =
964             is_active ? IL_GOOD_CRC_TH_DEFAULT : IL_GOOD_CRC_TH_NEVER;
965
966         band = il->scan_band;
967
968         if (il->cfg->scan_rx_antennas[band])
969                 rx_ant = il->cfg->scan_rx_antennas[band];
970
971         il4965_toggle_tx_ant(il, &il->scan_tx_ant[band], scan_tx_antennas);
972         rate_flags |= BIT(il->scan_tx_ant[band]) << RATE_MCS_ANT_POS;
973         scan->tx_cmd.rate_n_flags = cpu_to_le32(rate | rate_flags);
974
975         /* In power save mode use one chain, otherwise use all chains */
976         if (test_bit(S_POWER_PMI, &il->status)) {
977                 /* rx_ant has been set to all valid chains previously */
978                 active_chains =
979                     rx_ant & ((u8) (il->chain_noise_data.active_chains));
980                 if (!active_chains)
981                         active_chains = rx_ant;
982
983                 D_SCAN("chain_noise_data.active_chains: %u\n",
984                        il->chain_noise_data.active_chains);
985
986                 rx_ant = il4965_first_antenna(active_chains);
987         }
988
989         /* MIMO is not used here, but value is required */
990         rx_chain |= il->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
991         rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
992         rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
993         rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
994         scan->rx_chain = cpu_to_le16(rx_chain);
995
996         cmd_len =
997             il_fill_probe_req(il, (struct ieee80211_mgmt *)scan->data,
998                               vif->addr, il->scan_request->ie,
999                               il->scan_request->ie_len,
1000                               IL_MAX_SCAN_SIZE - sizeof(*scan));
1001         scan->tx_cmd.len = cpu_to_le16(cmd_len);
1002
1003         scan->filter_flags |=
1004             (RXON_FILTER_ACCEPT_GRP_MSK | RXON_FILTER_BCON_AWARE_MSK);
1005
1006         scan->channel_count =
1007             il4965_get_channels_for_scan(il, vif, band, is_active, n_probes,
1008                                          (void *)&scan->data[cmd_len]);
1009         if (scan->channel_count == 0) {
1010                 D_SCAN("channel count %d\n", scan->channel_count);
1011                 return -EIO;
1012         }
1013
1014         cmd.len +=
1015             le16_to_cpu(scan->tx_cmd.len) +
1016             scan->channel_count * sizeof(struct il_scan_channel);
1017         cmd.data = scan;
1018         scan->len = cpu_to_le16(cmd.len);
1019
1020         set_bit(S_SCAN_HW, &il->status);
1021
1022         ret = il_send_cmd_sync(il, &cmd);
1023         if (ret)
1024                 clear_bit(S_SCAN_HW, &il->status);
1025
1026         return ret;
1027 }
1028
1029 int
1030 il4965_manage_ibss_station(struct il_priv *il, struct ieee80211_vif *vif,
1031                            bool add)
1032 {
1033         struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
1034
1035         if (add)
1036                 return il4965_add_bssid_station(il, vif_priv->ctx,
1037                                                 vif->bss_conf.bssid,
1038                                                 &vif_priv->ibss_bssid_sta_id);
1039         return il_remove_station(il, vif_priv->ibss_bssid_sta_id,
1040                                  vif->bss_conf.bssid);
1041 }
1042
1043 void
1044 il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid, int freed)
1045 {
1046         lockdep_assert_held(&il->sta_lock);
1047
1048         if (il->stations[sta_id].tid[tid].tfds_in_queue >= freed)
1049                 il->stations[sta_id].tid[tid].tfds_in_queue -= freed;
1050         else {
1051                 D_TX("free more than tfds_in_queue (%u:%d)\n",
1052                      il->stations[sta_id].tid[tid].tfds_in_queue, freed);
1053                 il->stations[sta_id].tid[tid].tfds_in_queue = 0;
1054         }
1055 }
1056
1057 #define IL_TX_QUEUE_MSK 0xfffff
1058
1059 static bool
1060 il4965_is_single_rx_stream(struct il_priv *il)
1061 {
1062         return il->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
1063             il->current_ht_config.single_chain_sufficient;
1064 }
1065
1066 #define IL_NUM_RX_CHAINS_MULTIPLE       3
1067 #define IL_NUM_RX_CHAINS_SINGLE 2
1068 #define IL_NUM_IDLE_CHAINS_DUAL 2
1069 #define IL_NUM_IDLE_CHAINS_SINGLE       1
1070
1071 /*
1072  * Determine how many receiver/antenna chains to use.
1073  *
1074  * More provides better reception via diversity.  Fewer saves power
1075  * at the expense of throughput, but only when not in powersave to
1076  * start with.
1077  *
1078  * MIMO (dual stream) requires at least 2, but works better with 3.
1079  * This does not determine *which* chains to use, just how many.
1080  */
1081 static int
1082 il4965_get_active_rx_chain_count(struct il_priv *il)
1083 {
1084         /* # of Rx chains to use when expecting MIMO. */
1085         if (il4965_is_single_rx_stream(il))
1086                 return IL_NUM_RX_CHAINS_SINGLE;
1087         else
1088                 return IL_NUM_RX_CHAINS_MULTIPLE;
1089 }
1090
1091 /*
1092  * When we are in power saving mode, unless device support spatial
1093  * multiplexing power save, use the active count for rx chain count.
1094  */
1095 static int
1096 il4965_get_idle_rx_chain_count(struct il_priv *il, int active_cnt)
1097 {
1098         /* # Rx chains when idling, depending on SMPS mode */
1099         switch (il->current_ht_config.smps) {
1100         case IEEE80211_SMPS_STATIC:
1101         case IEEE80211_SMPS_DYNAMIC:
1102                 return IL_NUM_IDLE_CHAINS_SINGLE;
1103         case IEEE80211_SMPS_OFF:
1104                 return active_cnt;
1105         default:
1106                 WARN(1, "invalid SMPS mode %d", il->current_ht_config.smps);
1107                 return active_cnt;
1108         }
1109 }
1110
1111 /* up to 4 chains */
1112 static u8
1113 il4965_count_chain_bitmap(u32 chain_bitmap)
1114 {
1115         u8 res;
1116         res = (chain_bitmap & BIT(0)) >> 0;
1117         res += (chain_bitmap & BIT(1)) >> 1;
1118         res += (chain_bitmap & BIT(2)) >> 2;
1119         res += (chain_bitmap & BIT(3)) >> 3;
1120         return res;
1121 }
1122
1123 /**
1124  * il4965_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
1125  *
1126  * Selects how many and which Rx receivers/antennas/chains to use.
1127  * This should not be used for scan command ... it puts data in wrong place.
1128  */
1129 void
1130 il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx)
1131 {
1132         bool is_single = il4965_is_single_rx_stream(il);
1133         bool is_cam = !test_bit(S_POWER_PMI, &il->status);
1134         u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
1135         u32 active_chains;
1136         u16 rx_chain;
1137
1138         /* Tell uCode which antennas are actually connected.
1139          * Before first association, we assume all antennas are connected.
1140          * Just after first association, il4965_chain_noise_calibration()
1141          *    checks which antennas actually *are* connected. */
1142         if (il->chain_noise_data.active_chains)
1143                 active_chains = il->chain_noise_data.active_chains;
1144         else
1145                 active_chains = il->hw_params.valid_rx_ant;
1146
1147         rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
1148
1149         /* How many receivers should we use? */
1150         active_rx_cnt = il4965_get_active_rx_chain_count(il);
1151         idle_rx_cnt = il4965_get_idle_rx_chain_count(il, active_rx_cnt);
1152
1153         /* correct rx chain count according hw settings
1154          * and chain noise calibration
1155          */
1156         valid_rx_cnt = il4965_count_chain_bitmap(active_chains);
1157         if (valid_rx_cnt < active_rx_cnt)
1158                 active_rx_cnt = valid_rx_cnt;
1159
1160         if (valid_rx_cnt < idle_rx_cnt)
1161                 idle_rx_cnt = valid_rx_cnt;
1162
1163         rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
1164         rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
1165
1166         il->staging.rx_chain = cpu_to_le16(rx_chain);
1167
1168         if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam)
1169                 il->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1170         else
1171                 il->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1172
1173         D_ASSOC("rx_chain=0x%X active=%d idle=%d\n", il->staging.rx_chain,
1174                 active_rx_cnt, idle_rx_cnt);
1175
1176         WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1177                 active_rx_cnt < idle_rx_cnt);
1178 }
1179
1180 static const char *
1181 il4965_get_fh_string(int cmd)
1182 {
1183         switch (cmd) {
1184                 IL_CMD(FH49_RSCSR_CHNL0_STTS_WPTR_REG);
1185                 IL_CMD(FH49_RSCSR_CHNL0_RBDCB_BASE_REG);
1186                 IL_CMD(FH49_RSCSR_CHNL0_WPTR);
1187                 IL_CMD(FH49_MEM_RCSR_CHNL0_CONFIG_REG);
1188                 IL_CMD(FH49_MEM_RSSR_SHARED_CTRL_REG);
1189                 IL_CMD(FH49_MEM_RSSR_RX_STATUS_REG);
1190                 IL_CMD(FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
1191                 IL_CMD(FH49_TSSR_TX_STATUS_REG);
1192                 IL_CMD(FH49_TSSR_TX_ERROR_REG);
1193         default:
1194                 return "UNKNOWN";
1195         }
1196 }
1197
1198 int
1199 il4965_dump_fh(struct il_priv *il, char **buf, bool display)
1200 {
1201         int i;
1202 #ifdef CONFIG_IWLEGACY_DEBUG
1203         int pos = 0;
1204         size_t bufsz = 0;
1205 #endif
1206         static const u32 fh_tbl[] = {
1207                 FH49_RSCSR_CHNL0_STTS_WPTR_REG,
1208                 FH49_RSCSR_CHNL0_RBDCB_BASE_REG,
1209                 FH49_RSCSR_CHNL0_WPTR,
1210                 FH49_MEM_RCSR_CHNL0_CONFIG_REG,
1211                 FH49_MEM_RSSR_SHARED_CTRL_REG,
1212                 FH49_MEM_RSSR_RX_STATUS_REG,
1213                 FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
1214                 FH49_TSSR_TX_STATUS_REG,
1215                 FH49_TSSR_TX_ERROR_REG
1216         };
1217 #ifdef CONFIG_IWLEGACY_DEBUG
1218         if (display) {
1219                 bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
1220                 *buf = kmalloc(bufsz, GFP_KERNEL);
1221                 if (!*buf)
1222                         return -ENOMEM;
1223                 pos +=
1224                     scnprintf(*buf + pos, bufsz - pos, "FH register values:\n");
1225                 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1226                         pos +=
1227                             scnprintf(*buf + pos, bufsz - pos,
1228                                       "  %34s: 0X%08x\n",
1229                                       il4965_get_fh_string(fh_tbl[i]),
1230                                       il_rd(il, fh_tbl[i]));
1231                 }
1232                 return pos;
1233         }
1234 #endif
1235         IL_ERR("FH register values:\n");
1236         for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1237                 IL_ERR("  %34s: 0X%08x\n", il4965_get_fh_string(fh_tbl[i]),
1238                        il_rd(il, fh_tbl[i]));
1239         }
1240         return 0;
1241 }
1242
1243 void
1244 il4965_hdl_missed_beacon(struct il_priv *il, struct il_rx_buf *rxb)
1245 {
1246         struct il_rx_pkt *pkt = rxb_addr(rxb);
1247         struct il_missed_beacon_notif *missed_beacon;
1248
1249         missed_beacon = &pkt->u.missed_beacon;
1250         if (le32_to_cpu(missed_beacon->consecutive_missed_beacons) >
1251             il->missed_beacon_threshold) {
1252                 D_CALIB("missed bcn cnsq %d totl %d rcd %d expctd %d\n",
1253                         le32_to_cpu(missed_beacon->consecutive_missed_beacons),
1254                         le32_to_cpu(missed_beacon->total_missed_becons),
1255                         le32_to_cpu(missed_beacon->num_recvd_beacons),
1256                         le32_to_cpu(missed_beacon->num_expected_beacons));
1257                 if (!test_bit(S_SCANNING, &il->status))
1258                         il4965_init_sensitivity(il);
1259         }
1260 }
1261
1262 /* Calculate noise level, based on measurements during network silence just
1263  *   before arriving beacon.  This measurement can be done only if we know
1264  *   exactly when to expect beacons, therefore only when we're associated. */
1265 static void
1266 il4965_rx_calc_noise(struct il_priv *il)
1267 {
1268         struct stats_rx_non_phy *rx_info;
1269         int num_active_rx = 0;
1270         int total_silence = 0;
1271         int bcn_silence_a, bcn_silence_b, bcn_silence_c;
1272         int last_rx_noise;
1273
1274         rx_info = &(il->_4965.stats.rx.general);
1275         bcn_silence_a =
1276             le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
1277         bcn_silence_b =
1278             le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
1279         bcn_silence_c =
1280             le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
1281
1282         if (bcn_silence_a) {
1283                 total_silence += bcn_silence_a;
1284                 num_active_rx++;
1285         }
1286         if (bcn_silence_b) {
1287                 total_silence += bcn_silence_b;
1288                 num_active_rx++;
1289         }
1290         if (bcn_silence_c) {
1291                 total_silence += bcn_silence_c;
1292                 num_active_rx++;
1293         }
1294
1295         /* Average among active antennas */
1296         if (num_active_rx)
1297                 last_rx_noise = (total_silence / num_active_rx) - 107;
1298         else
1299                 last_rx_noise = IL_NOISE_MEAS_NOT_AVAILABLE;
1300
1301         D_CALIB("inband silence a %u, b %u, c %u, dBm %d\n", bcn_silence_a,
1302                 bcn_silence_b, bcn_silence_c, last_rx_noise);
1303 }
1304
1305 #ifdef CONFIG_IWLEGACY_DEBUGFS
1306 /*
1307  *  based on the assumption of all stats counter are in DWORD
1308  *  FIXME: This function is for debugging, do not deal with
1309  *  the case of counters roll-over.
1310  */
1311 static void
1312 il4965_accumulative_stats(struct il_priv *il, __le32 * stats)
1313 {
1314         int i, size;
1315         __le32 *prev_stats;
1316         u32 *accum_stats;
1317         u32 *delta, *max_delta;
1318         struct stats_general_common *general, *accum_general;
1319         struct stats_tx *tx, *accum_tx;
1320
1321         prev_stats = (__le32 *) &il->_4965.stats;
1322         accum_stats = (u32 *) &il->_4965.accum_stats;
1323         size = sizeof(struct il_notif_stats);
1324         general = &il->_4965.stats.general.common;
1325         accum_general = &il->_4965.accum_stats.general.common;
1326         tx = &il->_4965.stats.tx;
1327         accum_tx = &il->_4965.accum_stats.tx;
1328         delta = (u32 *) &il->_4965.delta_stats;
1329         max_delta = (u32 *) &il->_4965.max_delta;
1330
1331         for (i = sizeof(__le32); i < size;
1332              i +=
1333              sizeof(__le32), stats++, prev_stats++, delta++, max_delta++,
1334              accum_stats++) {
1335                 if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) {
1336                         *delta =
1337                             (le32_to_cpu(*stats) - le32_to_cpu(*prev_stats));
1338                         *accum_stats += *delta;
1339                         if (*delta > *max_delta)
1340                                 *max_delta = *delta;
1341                 }
1342         }
1343
1344         /* reset accumulative stats for "no-counter" type stats */
1345         accum_general->temperature = general->temperature;
1346         accum_general->ttl_timestamp = general->ttl_timestamp;
1347 }
1348 #endif
1349
1350 #define REG_RECALIB_PERIOD (60)
1351
1352 void
1353 il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb)
1354 {
1355         int change;
1356         struct il_rx_pkt *pkt = rxb_addr(rxb);
1357
1358         D_RX("Statistics notification received (%d vs %d).\n",
1359              (int)sizeof(struct il_notif_stats),
1360              le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK);
1361
1362         change =
1363             ((il->_4965.stats.general.common.temperature !=
1364               pkt->u.stats.general.common.temperature) ||
1365              ((il->_4965.stats.flag & STATS_REPLY_FLG_HT40_MODE_MSK) !=
1366               (pkt->u.stats.flag & STATS_REPLY_FLG_HT40_MODE_MSK)));
1367 #ifdef CONFIG_IWLEGACY_DEBUGFS
1368         il4965_accumulative_stats(il, (__le32 *) &pkt->u.stats);
1369 #endif
1370
1371         /* TODO: reading some of stats is unneeded */
1372         memcpy(&il->_4965.stats, &pkt->u.stats, sizeof(il->_4965.stats));
1373
1374         set_bit(S_STATS, &il->status);
1375
1376         /* Reschedule the stats timer to occur in
1377          * REG_RECALIB_PERIOD seconds to ensure we get a
1378          * thermal update even if the uCode doesn't give
1379          * us one */
1380         mod_timer(&il->stats_periodic,
1381                   jiffies + msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
1382
1383         if (unlikely(!test_bit(S_SCANNING, &il->status)) &&
1384             (pkt->hdr.cmd == N_STATS)) {
1385                 il4965_rx_calc_noise(il);
1386                 queue_work(il->workqueue, &il->run_time_calib_work);
1387         }
1388         if (il->cfg->ops->lib->temp_ops.temperature && change)
1389                 il->cfg->ops->lib->temp_ops.temperature(il);
1390 }
1391
1392 void
1393 il4965_hdl_c_stats(struct il_priv *il, struct il_rx_buf *rxb)
1394 {
1395         struct il_rx_pkt *pkt = rxb_addr(rxb);
1396
1397         if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATS_CLEAR_MSK) {
1398 #ifdef CONFIG_IWLEGACY_DEBUGFS
1399                 memset(&il->_4965.accum_stats, 0,
1400                        sizeof(struct il_notif_stats));
1401                 memset(&il->_4965.delta_stats, 0,
1402                        sizeof(struct il_notif_stats));
1403                 memset(&il->_4965.max_delta, 0, sizeof(struct il_notif_stats));
1404 #endif
1405                 D_RX("Statistics have been cleared\n");
1406         }
1407         il4965_hdl_stats(il, rxb);
1408 }
1409
1410
1411 /*
1412  * mac80211 queues, ACs, hardware queues, FIFOs.
1413  *
1414  * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues
1415  *
1416  * Mac80211 uses the following numbers, which we get as from it
1417  * by way of skb_get_queue_mapping(skb):
1418  *
1419  *     VO      0
1420  *     VI      1
1421  *     BE      2
1422  *     BK      3
1423  *
1424  *
1425  * Regular (not A-MPDU) frames are put into hardware queues corresponding
1426  * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their
1427  * own queue per aggregation session (RA/TID combination), such queues are
1428  * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In
1429  * order to map frames to the right queue, we also need an AC->hw queue
1430  * mapping. This is implemented here.
1431  *
1432  * Due to the way hw queues are set up (by the hw specific modules like
1433  * 4965.c), the AC->hw queue mapping is the identity
1434  * mapping.
1435  */
1436
1437 static const u8 tid_to_ac[] = {
1438         IEEE80211_AC_BE,
1439         IEEE80211_AC_BK,
1440         IEEE80211_AC_BK,
1441         IEEE80211_AC_BE,
1442         IEEE80211_AC_VI,
1443         IEEE80211_AC_VI,
1444         IEEE80211_AC_VO,
1445         IEEE80211_AC_VO
1446 };
1447
1448 static inline int
1449 il4965_get_ac_from_tid(u16 tid)
1450 {
1451         if (likely(tid < ARRAY_SIZE(tid_to_ac)))
1452                 return tid_to_ac[tid];
1453
1454         /* no support for TIDs 8-15 yet */
1455         return -EINVAL;
1456 }
1457
1458 static inline int
1459 il4965_get_fifo_from_tid(struct il_rxon_context *ctx, u16 tid)
1460 {
1461         if (likely(tid < ARRAY_SIZE(tid_to_ac)))
1462                 return ctx->ac_to_fifo[tid_to_ac[tid]];
1463
1464         /* no support for TIDs 8-15 yet */
1465         return -EINVAL;
1466 }
1467
1468 /*
1469  * handle build C_TX command notification.
1470  */
1471 static void
1472 il4965_tx_cmd_build_basic(struct il_priv *il, struct sk_buff *skb,
1473                           struct il_tx_cmd *tx_cmd,
1474                           struct ieee80211_tx_info *info,
1475                           struct ieee80211_hdr *hdr, u8 std_id)
1476 {
1477         __le16 fc = hdr->frame_control;
1478         __le32 tx_flags = tx_cmd->tx_flags;
1479
1480         tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
1481         if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
1482                 tx_flags |= TX_CMD_FLG_ACK_MSK;
1483                 if (ieee80211_is_mgmt(fc))
1484                         tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1485                 if (ieee80211_is_probe_resp(fc) &&
1486                     !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
1487                         tx_flags |= TX_CMD_FLG_TSF_MSK;
1488         } else {
1489                 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
1490                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1491         }
1492
1493         if (ieee80211_is_back_req(fc))
1494                 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
1495
1496         tx_cmd->sta_id = std_id;
1497         if (ieee80211_has_morefrags(fc))
1498                 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
1499
1500         if (ieee80211_is_data_qos(fc)) {
1501                 u8 *qc = ieee80211_get_qos_ctl(hdr);
1502                 tx_cmd->tid_tspec = qc[0] & 0xf;
1503                 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
1504         } else {
1505                 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1506         }
1507
1508         il_tx_cmd_protection(il, info, fc, &tx_flags);
1509
1510         tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
1511         if (ieee80211_is_mgmt(fc)) {
1512                 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
1513                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
1514                 else
1515                         tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
1516         } else {
1517                 tx_cmd->timeout.pm_frame_timeout = 0;
1518         }
1519
1520         tx_cmd->driver_txop = 0;
1521         tx_cmd->tx_flags = tx_flags;
1522         tx_cmd->next_frame_len = 0;
1523 }
1524
1525 static void
1526 il4965_tx_cmd_build_rate(struct il_priv *il, struct il_tx_cmd *tx_cmd,
1527                          struct ieee80211_tx_info *info, __le16 fc)
1528 {
1529         const u8 rts_retry_limit = 60;
1530         u32 rate_flags;
1531         int rate_idx;
1532         u8 data_retry_limit;
1533         u8 rate_plcp;
1534
1535         /* Set retry limit on DATA packets and Probe Responses */
1536         if (ieee80211_is_probe_resp(fc))
1537                 data_retry_limit = 3;
1538         else
1539                 data_retry_limit = IL4965_DEFAULT_TX_RETRY;
1540         tx_cmd->data_retry_limit = data_retry_limit;
1541         /* Set retry limit on RTS packets */
1542         tx_cmd->rts_retry_limit = min(data_retry_limit, rts_retry_limit);
1543
1544         /* DATA packets will use the uCode station table for rate/antenna
1545          * selection */
1546         if (ieee80211_is_data(fc)) {
1547                 tx_cmd->initial_rate_idx = 0;
1548                 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
1549                 return;
1550         }
1551
1552         /**
1553          * If the current TX rate stored in mac80211 has the MCS bit set, it's
1554          * not really a TX rate.  Thus, we use the lowest supported rate for
1555          * this band.  Also use the lowest supported rate if the stored rate
1556          * idx is invalid.
1557          */
1558         rate_idx = info->control.rates[0].idx;
1559         if ((info->control.rates[0].flags & IEEE80211_TX_RC_MCS) || rate_idx < 0
1560             || rate_idx > RATE_COUNT_LEGACY)
1561                 rate_idx =
1562                     rate_lowest_index(&il->bands[info->band],
1563                                       info->control.sta);
1564         /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
1565         if (info->band == IEEE80211_BAND_5GHZ)
1566                 rate_idx += IL_FIRST_OFDM_RATE;
1567         /* Get PLCP rate for tx_cmd->rate_n_flags */
1568         rate_plcp = il_rates[rate_idx].plcp;
1569         /* Zero out flags for this packet */
1570         rate_flags = 0;
1571
1572         /* Set CCK flag as needed */
1573         if (rate_idx >= IL_FIRST_CCK_RATE && rate_idx <= IL_LAST_CCK_RATE)
1574                 rate_flags |= RATE_MCS_CCK_MSK;
1575
1576         /* Set up antennas */
1577         il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant);
1578         rate_flags |= BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS;
1579
1580         /* Set the rate in the TX cmd */
1581         tx_cmd->rate_n_flags = cpu_to_le32(rate_plcp | rate_flags);
1582 }
1583
1584 static void
1585 il4965_tx_cmd_build_hwcrypto(struct il_priv *il, struct ieee80211_tx_info *info,
1586                              struct il_tx_cmd *tx_cmd, struct sk_buff *skb_frag,
1587                              int sta_id)
1588 {
1589         struct ieee80211_key_conf *keyconf = info->control.hw_key;
1590
1591         switch (keyconf->cipher) {
1592         case WLAN_CIPHER_SUITE_CCMP:
1593                 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
1594                 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
1595                 if (info->flags & IEEE80211_TX_CTL_AMPDU)
1596                         tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
1597                 D_TX("tx_cmd with AES hwcrypto\n");
1598                 break;
1599
1600         case WLAN_CIPHER_SUITE_TKIP:
1601                 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
1602                 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
1603                 D_TX("tx_cmd with tkip hwcrypto\n");
1604                 break;
1605
1606         case WLAN_CIPHER_SUITE_WEP104:
1607                 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
1608                 /* fall through */
1609         case WLAN_CIPHER_SUITE_WEP40:
1610                 tx_cmd->sec_ctl |=
1611                     (TX_CMD_SEC_WEP | (keyconf->keyidx & TX_CMD_SEC_MSK) <<
1612                      TX_CMD_SEC_SHIFT);
1613
1614                 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
1615
1616                 D_TX("Configuring packet for WEP encryption " "with key %d\n",
1617                      keyconf->keyidx);
1618                 break;
1619
1620         default:
1621                 IL_ERR("Unknown encode cipher %x\n", keyconf->cipher);
1622                 break;
1623         }
1624 }
1625
1626 /*
1627  * start C_TX command process
1628  */
1629 int
1630 il4965_tx_skb(struct il_priv *il, struct sk_buff *skb)
1631 {
1632         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1633         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1634         struct ieee80211_sta *sta = info->control.sta;
1635         struct il_station_priv *sta_priv = NULL;
1636         struct il_tx_queue *txq;
1637         struct il_queue *q;
1638         struct il_device_cmd *out_cmd;
1639         struct il_cmd_meta *out_meta;
1640         struct il_tx_cmd *tx_cmd;
1641         struct il_rxon_context *ctx = &il->ctx;
1642         int txq_id;
1643         dma_addr_t phys_addr;
1644         dma_addr_t txcmd_phys;
1645         dma_addr_t scratch_phys;
1646         u16 len, firstlen, secondlen;
1647         u16 seq_number = 0;
1648         __le16 fc;
1649         u8 hdr_len;
1650         u8 sta_id;
1651         u8 wait_write_ptr = 0;
1652         u8 tid = 0;
1653         u8 *qc = NULL;
1654         unsigned long flags;
1655         bool is_agg = false;
1656
1657         if (info->control.vif)
1658                 ctx = il_rxon_ctx_from_vif(info->control.vif);
1659
1660         spin_lock_irqsave(&il->lock, flags);
1661         if (il_is_rfkill(il)) {
1662                 D_DROP("Dropping - RF KILL\n");
1663                 goto drop_unlock;
1664         }
1665
1666         fc = hdr->frame_control;
1667
1668 #ifdef CONFIG_IWLEGACY_DEBUG
1669         if (ieee80211_is_auth(fc))
1670                 D_TX("Sending AUTH frame\n");
1671         else if (ieee80211_is_assoc_req(fc))
1672                 D_TX("Sending ASSOC frame\n");
1673         else if (ieee80211_is_reassoc_req(fc))
1674                 D_TX("Sending REASSOC frame\n");
1675 #endif
1676
1677         hdr_len = ieee80211_hdrlen(fc);
1678
1679         /* For management frames use broadcast id to do not break aggregation */
1680         if (!ieee80211_is_data(fc))
1681                 sta_id = ctx->bcast_sta_id;
1682         else {
1683                 /* Find idx into station table for destination station */
1684                 sta_id = il_sta_id_or_broadcast(il, ctx, info->control.sta);
1685
1686                 if (sta_id == IL_INVALID_STATION) {
1687                         D_DROP("Dropping - INVALID STATION: %pM\n", hdr->addr1);
1688                         goto drop_unlock;
1689                 }
1690         }
1691
1692         D_TX("station Id %d\n", sta_id);
1693
1694         if (sta)
1695                 sta_priv = (void *)sta->drv_priv;
1696
1697         if (sta_priv && sta_priv->asleep &&
1698             (info->flags & IEEE80211_TX_CTL_POLL_RESPONSE)) {
1699                 /*
1700                  * This sends an asynchronous command to the device,
1701                  * but we can rely on it being processed before the
1702                  * next frame is processed -- and the next frame to
1703                  * this station is the one that will consume this
1704                  * counter.
1705                  * For now set the counter to just 1 since we do not
1706                  * support uAPSD yet.
1707                  */
1708                 il4965_sta_modify_sleep_tx_count(il, sta_id, 1);
1709         }
1710
1711         /*
1712          * Send this frame after DTIM -- there's a special queue
1713          * reserved for this for contexts that support AP mode.
1714          */
1715         if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
1716                 txq_id = ctx->mcast_queue;
1717                 /*
1718                  * The microcode will clear the more data
1719                  * bit in the last frame it transmits.
1720                  */
1721                 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1722         } else
1723                 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
1724
1725         /* irqs already disabled/saved above when locking il->lock */
1726         spin_lock(&il->sta_lock);
1727
1728         if (ieee80211_is_data_qos(fc)) {
1729                 qc = ieee80211_get_qos_ctl(hdr);
1730                 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1731                 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
1732                         spin_unlock(&il->sta_lock);
1733                         goto drop_unlock;
1734                 }
1735                 seq_number = il->stations[sta_id].tid[tid].seq_number;
1736                 seq_number &= IEEE80211_SCTL_SEQ;
1737                 hdr->seq_ctrl =
1738                     hdr->seq_ctrl & cpu_to_le16(IEEE80211_SCTL_FRAG);
1739                 hdr->seq_ctrl |= cpu_to_le16(seq_number);
1740                 seq_number += 0x10;
1741                 /* aggregation is on for this <sta,tid> */
1742                 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
1743                     il->stations[sta_id].tid[tid].agg.state == IL_AGG_ON) {
1744                         txq_id = il->stations[sta_id].tid[tid].agg.txq_id;
1745                         is_agg = true;
1746                 }
1747         }
1748
1749         txq = &il->txq[txq_id];
1750         q = &txq->q;
1751
1752         if (unlikely(il_queue_space(q) < q->high_mark)) {
1753                 spin_unlock(&il->sta_lock);
1754                 goto drop_unlock;
1755         }
1756
1757         if (ieee80211_is_data_qos(fc)) {
1758                 il->stations[sta_id].tid[tid].tfds_in_queue++;
1759                 if (!ieee80211_has_morefrags(fc))
1760                         il->stations[sta_id].tid[tid].seq_number = seq_number;
1761         }
1762
1763         spin_unlock(&il->sta_lock);
1764
1765         /* Set up driver data for this TFD */
1766         memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct il_tx_info));
1767         txq->txb[q->write_ptr].skb = skb;
1768         txq->txb[q->write_ptr].ctx = ctx;
1769
1770         /* Set up first empty entry in queue's array of Tx/cmd buffers */
1771         out_cmd = txq->cmd[q->write_ptr];
1772         out_meta = &txq->meta[q->write_ptr];
1773         tx_cmd = &out_cmd->cmd.tx;
1774         memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
1775         memset(tx_cmd, 0, sizeof(struct il_tx_cmd));
1776
1777         /*
1778          * Set up the Tx-command (not MAC!) header.
1779          * Store the chosen Tx queue and TFD idx within the sequence field;
1780          * after Tx, uCode's Tx response will return this value so driver can
1781          * locate the frame within the tx queue and do post-tx processing.
1782          */
1783         out_cmd->hdr.cmd = C_TX;
1784         out_cmd->hdr.sequence =
1785             cpu_to_le16((u16)
1786                         (QUEUE_TO_SEQ(txq_id) | IDX_TO_SEQ(q->write_ptr)));
1787
1788         /* Copy MAC header from skb into command buffer */
1789         memcpy(tx_cmd->hdr, hdr, hdr_len);
1790
1791         /* Total # bytes to be transmitted */
1792         len = (u16) skb->len;
1793         tx_cmd->len = cpu_to_le16(len);
1794
1795         if (info->control.hw_key)
1796                 il4965_tx_cmd_build_hwcrypto(il, info, tx_cmd, skb, sta_id);
1797
1798         /* TODO need this for burst mode later on */
1799         il4965_tx_cmd_build_basic(il, skb, tx_cmd, info, hdr, sta_id);
1800         il_dbg_log_tx_data_frame(il, len, hdr);
1801
1802         il4965_tx_cmd_build_rate(il, tx_cmd, info, fc);
1803
1804         il_update_stats(il, true, fc, len);
1805         /*
1806          * Use the first empty entry in this queue's command buffer array
1807          * to contain the Tx command and MAC header concatenated together
1808          * (payload data will be in another buffer).
1809          * Size of this varies, due to varying MAC header length.
1810          * If end is not dword aligned, we'll have 2 extra bytes at the end
1811          * of the MAC header (device reads on dword boundaries).
1812          * We'll tell device about this padding later.
1813          */
1814         len = sizeof(struct il_tx_cmd) + sizeof(struct il_cmd_header) + hdr_len;
1815         firstlen = (len + 3) & ~3;
1816
1817         /* Tell NIC about any 2-byte padding after MAC header */
1818         if (firstlen != len)
1819                 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1820
1821         /* Physical address of this Tx command's header (not MAC header!),
1822          * within command buffer array. */
1823         txcmd_phys =
1824             pci_map_single(il->pci_dev, &out_cmd->hdr, firstlen,
1825                            PCI_DMA_BIDIRECTIONAL);
1826         dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
1827         dma_unmap_len_set(out_meta, len, firstlen);
1828         /* Add buffer containing Tx command and MAC(!) header to TFD's
1829          * first entry */
1830         il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, txcmd_phys, firstlen,
1831                                                  1, 0);
1832
1833         if (!ieee80211_has_morefrags(hdr->frame_control)) {
1834                 txq->need_update = 1;
1835         } else {
1836                 wait_write_ptr = 1;
1837                 txq->need_update = 0;
1838         }
1839
1840         /* Set up TFD's 2nd entry to point directly to remainder of skb,
1841          * if any (802.11 null frames have no payload). */
1842         secondlen = skb->len - hdr_len;
1843         if (secondlen > 0) {
1844                 phys_addr =
1845                     pci_map_single(il->pci_dev, skb->data + hdr_len, secondlen,
1846                                    PCI_DMA_TODEVICE);
1847                 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr,
1848                                                          secondlen, 0, 0);
1849         }
1850
1851         scratch_phys =
1852             txcmd_phys + sizeof(struct il_cmd_header) +
1853             offsetof(struct il_tx_cmd, scratch);
1854
1855         /* take back ownership of DMA buffer to enable update */
1856         pci_dma_sync_single_for_cpu(il->pci_dev, txcmd_phys, firstlen,
1857                                     PCI_DMA_BIDIRECTIONAL);
1858         tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1859         tx_cmd->dram_msb_ptr = il_get_dma_hi_addr(scratch_phys);
1860
1861         D_TX("sequence nr = 0X%x\n", le16_to_cpu(out_cmd->hdr.sequence));
1862         D_TX("tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
1863         il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd, sizeof(*tx_cmd));
1864         il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd->hdr, hdr_len);
1865
1866         /* Set up entry for this TFD in Tx byte-count array */
1867         if (info->flags & IEEE80211_TX_CTL_AMPDU)
1868                 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq,
1869                                                            le16_to_cpu(tx_cmd->
1870                                                                        len));
1871
1872         pci_dma_sync_single_for_device(il->pci_dev, txcmd_phys, firstlen,
1873                                        PCI_DMA_BIDIRECTIONAL);
1874
1875         /* Tell device the write idx *just past* this latest filled TFD */
1876         q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
1877         il_txq_update_write_ptr(il, txq);
1878         spin_unlock_irqrestore(&il->lock, flags);
1879
1880         /*
1881          * At this point the frame is "transmitted" successfully
1882          * and we will get a TX status notification eventually,
1883          * regardless of the value of ret. "ret" only indicates
1884          * whether or not we should update the write pointer.
1885          */
1886
1887         /*
1888          * Avoid atomic ops if it isn't an associated client.
1889          * Also, if this is a packet for aggregation, don't
1890          * increase the counter because the ucode will stop
1891          * aggregation queues when their respective station
1892          * goes to sleep.
1893          */
1894         if (sta_priv && sta_priv->client && !is_agg)
1895                 atomic_inc(&sta_priv->pending_frames);
1896
1897         if (il_queue_space(q) < q->high_mark && il->mac80211_registered) {
1898                 if (wait_write_ptr) {
1899                         spin_lock_irqsave(&il->lock, flags);
1900                         txq->need_update = 1;
1901                         il_txq_update_write_ptr(il, txq);
1902                         spin_unlock_irqrestore(&il->lock, flags);
1903                 } else {
1904                         il_stop_queue(il, txq);
1905                 }
1906         }
1907
1908         return 0;
1909
1910 drop_unlock:
1911         spin_unlock_irqrestore(&il->lock, flags);
1912         return -1;
1913 }
1914
1915 static inline int
1916 il4965_alloc_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr, size_t size)
1917 {
1918         ptr->addr =
1919             dma_alloc_coherent(&il->pci_dev->dev, size, &ptr->dma, GFP_KERNEL);
1920         if (!ptr->addr)
1921                 return -ENOMEM;
1922         ptr->size = size;
1923         return 0;
1924 }
1925
1926 static inline void
1927 il4965_free_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr)
1928 {
1929         if (unlikely(!ptr->addr))
1930                 return;
1931
1932         dma_free_coherent(&il->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
1933         memset(ptr, 0, sizeof(*ptr));
1934 }
1935
1936 /**
1937  * il4965_hw_txq_ctx_free - Free TXQ Context
1938  *
1939  * Destroy all TX DMA queues and structures
1940  */
1941 void
1942 il4965_hw_txq_ctx_free(struct il_priv *il)
1943 {
1944         int txq_id;
1945
1946         /* Tx queues */
1947         if (il->txq) {
1948                 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
1949                         if (txq_id == il->cmd_queue)
1950                                 il_cmd_queue_free(il);
1951                         else
1952                                 il_tx_queue_free(il, txq_id);
1953         }
1954         il4965_free_dma_ptr(il, &il->kw);
1955
1956         il4965_free_dma_ptr(il, &il->scd_bc_tbls);
1957
1958         /* free tx queue structure */
1959         il_txq_mem(il);
1960 }
1961
1962 /**
1963  * il4965_txq_ctx_alloc - allocate TX queue context
1964  * Allocate all Tx DMA structures and initialize them
1965  *
1966  * @param il
1967  * @return error code
1968  */
1969 int
1970 il4965_txq_ctx_alloc(struct il_priv *il)
1971 {
1972         int ret;
1973         int txq_id, slots_num;
1974         unsigned long flags;
1975
1976         /* Free all tx/cmd queues and keep-warm buffer */
1977         il4965_hw_txq_ctx_free(il);
1978
1979         ret =
1980             il4965_alloc_dma_ptr(il, &il->scd_bc_tbls,
1981                                  il->hw_params.scd_bc_tbls_size);
1982         if (ret) {
1983                 IL_ERR("Scheduler BC Table allocation failed\n");
1984                 goto error_bc_tbls;
1985         }
1986         /* Alloc keep-warm buffer */
1987         ret = il4965_alloc_dma_ptr(il, &il->kw, IL_KW_SIZE);
1988         if (ret) {
1989                 IL_ERR("Keep Warm allocation failed\n");
1990                 goto error_kw;
1991         }
1992
1993         /* allocate tx queue structure */
1994         ret = il_alloc_txq_mem(il);
1995         if (ret)
1996                 goto error;
1997
1998         spin_lock_irqsave(&il->lock, flags);
1999
2000         /* Turn off all Tx DMA fifos */
2001         il4965_txq_set_sched(il, 0);
2002
2003         /* Tell NIC where to find the "keep warm" buffer */
2004         il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
2005
2006         spin_unlock_irqrestore(&il->lock, flags);
2007
2008         /* Alloc and init all Tx queues, including the command queue (#4/#9) */
2009         for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
2010                 slots_num =
2011                     (txq_id ==
2012                      il->cmd_queue) ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2013                 ret = il_tx_queue_init(il, &il->txq[txq_id], slots_num, txq_id);
2014                 if (ret) {
2015                         IL_ERR("Tx %d queue init failed\n", txq_id);
2016                         goto error;
2017                 }
2018         }
2019
2020         return ret;
2021
2022 error:
2023         il4965_hw_txq_ctx_free(il);
2024         il4965_free_dma_ptr(il, &il->kw);
2025 error_kw:
2026         il4965_free_dma_ptr(il, &il->scd_bc_tbls);
2027 error_bc_tbls:
2028         return ret;
2029 }
2030
2031 void
2032 il4965_txq_ctx_reset(struct il_priv *il)
2033 {
2034         int txq_id, slots_num;
2035         unsigned long flags;
2036
2037         spin_lock_irqsave(&il->lock, flags);
2038
2039         /* Turn off all Tx DMA fifos */
2040         il4965_txq_set_sched(il, 0);
2041
2042         /* Tell NIC where to find the "keep warm" buffer */
2043         il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
2044
2045         spin_unlock_irqrestore(&il->lock, flags);
2046
2047         /* Alloc and init all Tx queues, including the command queue (#4) */
2048         for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
2049                 slots_num =
2050                     txq_id == il->cmd_queue ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2051                 il_tx_queue_reset(il, &il->txq[txq_id], slots_num, txq_id);
2052         }
2053 }
2054
2055 /**
2056  * il4965_txq_ctx_stop - Stop all Tx DMA channels
2057  */
2058 void
2059 il4965_txq_ctx_stop(struct il_priv *il)
2060 {
2061         int ch, txq_id;
2062         unsigned long flags;
2063
2064         /* Turn off all Tx DMA fifos */
2065         spin_lock_irqsave(&il->lock, flags);
2066
2067         il4965_txq_set_sched(il, 0);
2068
2069         /* Stop each Tx DMA channel, and wait for it to be idle */
2070         for (ch = 0; ch < il->hw_params.dma_chnl_num; ch++) {
2071                 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
2072                 if (il_poll_bit
2073                     (il, FH49_TSSR_TX_STATUS_REG,
2074                      FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000))
2075                         IL_ERR("Failing on timeout while stopping"
2076                                " DMA channel %d [0x%08x]", ch,
2077                                il_rd(il, FH49_TSSR_TX_STATUS_REG));
2078         }
2079         spin_unlock_irqrestore(&il->lock, flags);
2080
2081         if (!il->txq)
2082                 return;
2083
2084         /* Unmap DMA from host system and free skb's */
2085         for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2086                 if (txq_id == il->cmd_queue)
2087                         il_cmd_queue_unmap(il);
2088                 else
2089                         il_tx_queue_unmap(il, txq_id);
2090 }
2091
2092 /*
2093  * Find first available (lowest unused) Tx Queue, mark it "active".
2094  * Called only when finding queue for aggregation.
2095  * Should never return anything < 7, because they should already
2096  * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
2097  */
2098 static int
2099 il4965_txq_ctx_activate_free(struct il_priv *il)
2100 {
2101         int txq_id;
2102
2103         for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2104                 if (!test_and_set_bit(txq_id, &il->txq_ctx_active_msk))
2105                         return txq_id;
2106         return -1;
2107 }
2108
2109 /**
2110  * il4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
2111  */
2112 static void
2113 il4965_tx_queue_stop_scheduler(struct il_priv *il, u16 txq_id)
2114 {
2115         /* Simply stop the queue, but don't change any configuration;
2116          * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
2117         il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
2118                    (0 << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
2119                    (1 << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
2120 }
2121
2122 /**
2123  * il4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
2124  */
2125 static int
2126 il4965_tx_queue_set_q2ratid(struct il_priv *il, u16 ra_tid, u16 txq_id)
2127 {
2128         u32 tbl_dw_addr;
2129         u32 tbl_dw;
2130         u16 scd_q2ratid;
2131
2132         scd_q2ratid = ra_tid & IL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
2133
2134         tbl_dw_addr =
2135             il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
2136
2137         tbl_dw = il_read_targ_mem(il, tbl_dw_addr);
2138
2139         if (txq_id & 0x1)
2140                 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
2141         else
2142                 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
2143
2144         il_write_targ_mem(il, tbl_dw_addr, tbl_dw);
2145
2146         return 0;
2147 }
2148
2149 /**
2150  * il4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
2151  *
2152  * NOTE:  txq_id must be greater than IL49_FIRST_AMPDU_QUEUE,
2153  *        i.e. it must be one of the higher queues used for aggregation
2154  */
2155 static int
2156 il4965_txq_agg_enable(struct il_priv *il, int txq_id, int tx_fifo, int sta_id,
2157                       int tid, u16 ssn_idx)
2158 {
2159         unsigned long flags;
2160         u16 ra_tid;
2161         int ret;
2162
2163         if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2164             (IL49_FIRST_AMPDU_QUEUE +
2165              il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2166                 IL_WARN("queue number out of range: %d, must be %d to %d\n",
2167                         txq_id, IL49_FIRST_AMPDU_QUEUE,
2168                         IL49_FIRST_AMPDU_QUEUE +
2169                         il->cfg->base_params->num_of_ampdu_queues - 1);
2170                 return -EINVAL;
2171         }
2172
2173         ra_tid = BUILD_RAxTID(sta_id, tid);
2174
2175         /* Modify device's station table to Tx this TID */
2176         ret = il4965_sta_tx_modify_enable_tid(il, sta_id, tid);
2177         if (ret)
2178                 return ret;
2179
2180         spin_lock_irqsave(&il->lock, flags);
2181
2182         /* Stop this Tx queue before configuring it */
2183         il4965_tx_queue_stop_scheduler(il, txq_id);
2184
2185         /* Map receiver-address / traffic-ID to this queue */
2186         il4965_tx_queue_set_q2ratid(il, ra_tid, txq_id);
2187
2188         /* Set this queue as a chain-building queue */
2189         il_set_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2190
2191         /* Place first TFD at idx corresponding to start sequence number.
2192          * Assumes that ssn_idx is valid (!= 0xFFF) */
2193         il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2194         il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2195         il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2196
2197         /* Set up Tx win size and frame limit for this queue */
2198         il_write_targ_mem(il,
2199                           il->scd_base_addr +
2200                           IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
2201                           (SCD_WIN_SIZE << IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS)
2202                           & IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
2203
2204         il_write_targ_mem(il,
2205                           il->scd_base_addr +
2206                           IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
2207                           (SCD_FRAME_LIMIT <<
2208                            IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
2209                           IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
2210
2211         il_set_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2212
2213         /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
2214         il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 1);
2215
2216         spin_unlock_irqrestore(&il->lock, flags);
2217
2218         return 0;
2219 }
2220
2221 int
2222 il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif,
2223                     struct ieee80211_sta *sta, u16 tid, u16 * ssn)
2224 {
2225         int sta_id;
2226         int tx_fifo;
2227         int txq_id;
2228         int ret;
2229         unsigned long flags;
2230         struct il_tid_data *tid_data;
2231
2232         tx_fifo = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2233         if (unlikely(tx_fifo < 0))
2234                 return tx_fifo;
2235
2236         D_HT("%s on ra = %pM tid = %d\n", __func__, sta->addr, tid);
2237
2238         sta_id = il_sta_id(sta);
2239         if (sta_id == IL_INVALID_STATION) {
2240                 IL_ERR("Start AGG on invalid station\n");
2241                 return -ENXIO;
2242         }
2243         if (unlikely(tid >= MAX_TID_COUNT))
2244                 return -EINVAL;
2245
2246         if (il->stations[sta_id].tid[tid].agg.state != IL_AGG_OFF) {
2247                 IL_ERR("Start AGG when state is not IL_AGG_OFF !\n");
2248                 return -ENXIO;
2249         }
2250
2251         txq_id = il4965_txq_ctx_activate_free(il);
2252         if (txq_id == -1) {
2253                 IL_ERR("No free aggregation queue available\n");
2254                 return -ENXIO;
2255         }
2256
2257         spin_lock_irqsave(&il->sta_lock, flags);
2258         tid_data = &il->stations[sta_id].tid[tid];
2259         *ssn = SEQ_TO_SN(tid_data->seq_number);
2260         tid_data->agg.txq_id = txq_id;
2261         il_set_swq_id(&il->txq[txq_id], il4965_get_ac_from_tid(tid), txq_id);
2262         spin_unlock_irqrestore(&il->sta_lock, flags);
2263
2264         ret = il4965_txq_agg_enable(il, txq_id, tx_fifo, sta_id, tid, *ssn);
2265         if (ret)
2266                 return ret;
2267
2268         spin_lock_irqsave(&il->sta_lock, flags);
2269         tid_data = &il->stations[sta_id].tid[tid];
2270         if (tid_data->tfds_in_queue == 0) {
2271                 D_HT("HW queue is empty\n");
2272                 tid_data->agg.state = IL_AGG_ON;
2273                 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2274         } else {
2275                 D_HT("HW queue is NOT empty: %d packets in HW queue\n",
2276                      tid_data->tfds_in_queue);
2277                 tid_data->agg.state = IL_EMPTYING_HW_QUEUE_ADDBA;
2278         }
2279         spin_unlock_irqrestore(&il->sta_lock, flags);
2280         return ret;
2281 }
2282
2283 /**
2284  * txq_id must be greater than IL49_FIRST_AMPDU_QUEUE
2285  * il->lock must be held by the caller
2286  */
2287 static int
2288 il4965_txq_agg_disable(struct il_priv *il, u16 txq_id, u16 ssn_idx, u8 tx_fifo)
2289 {
2290         if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2291             (IL49_FIRST_AMPDU_QUEUE +
2292              il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2293                 IL_WARN("queue number out of range: %d, must be %d to %d\n",
2294                         txq_id, IL49_FIRST_AMPDU_QUEUE,
2295                         IL49_FIRST_AMPDU_QUEUE +
2296                         il->cfg->base_params->num_of_ampdu_queues - 1);
2297                 return -EINVAL;
2298         }
2299
2300         il4965_tx_queue_stop_scheduler(il, txq_id);
2301
2302         il_clear_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2303
2304         il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2305         il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2306         /* supposes that ssn_idx is valid (!= 0xFFF) */
2307         il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2308
2309         il_clear_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2310         il_txq_ctx_deactivate(il, txq_id);
2311         il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 0);
2312
2313         return 0;
2314 }
2315
2316 int
2317 il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif,
2318                    struct ieee80211_sta *sta, u16 tid)
2319 {
2320         int tx_fifo_id, txq_id, sta_id, ssn;
2321         struct il_tid_data *tid_data;
2322         int write_ptr, read_ptr;
2323         unsigned long flags;
2324
2325         tx_fifo_id = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2326         if (unlikely(tx_fifo_id < 0))
2327                 return tx_fifo_id;
2328
2329         sta_id = il_sta_id(sta);
2330
2331         if (sta_id == IL_INVALID_STATION) {
2332                 IL_ERR("Invalid station for AGG tid %d\n", tid);
2333                 return -ENXIO;
2334         }
2335
2336         spin_lock_irqsave(&il->sta_lock, flags);
2337
2338         tid_data = &il->stations[sta_id].tid[tid];
2339         ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
2340         txq_id = tid_data->agg.txq_id;
2341
2342         switch (il->stations[sta_id].tid[tid].agg.state) {
2343         case IL_EMPTYING_HW_QUEUE_ADDBA:
2344                 /*
2345                  * This can happen if the peer stops aggregation
2346                  * again before we've had a chance to drain the
2347                  * queue we selected previously, i.e. before the
2348                  * session was really started completely.
2349                  */
2350                 D_HT("AGG stop before setup done\n");
2351                 goto turn_off;
2352         case IL_AGG_ON:
2353                 break;
2354         default:
2355                 IL_WARN("Stopping AGG while state not ON or starting\n");
2356         }
2357
2358         write_ptr = il->txq[txq_id].q.write_ptr;
2359         read_ptr = il->txq[txq_id].q.read_ptr;
2360
2361         /* The queue is not empty */
2362         if (write_ptr != read_ptr) {
2363                 D_HT("Stopping a non empty AGG HW QUEUE\n");
2364                 il->stations[sta_id].tid[tid].agg.state =
2365                     IL_EMPTYING_HW_QUEUE_DELBA;
2366                 spin_unlock_irqrestore(&il->sta_lock, flags);
2367                 return 0;
2368         }
2369
2370         D_HT("HW queue is empty\n");
2371 turn_off:
2372         il->stations[sta_id].tid[tid].agg.state = IL_AGG_OFF;
2373
2374         /* do not restore/save irqs */
2375         spin_unlock(&il->sta_lock);
2376         spin_lock(&il->lock);
2377
2378         /*
2379          * the only reason this call can fail is queue number out of range,
2380          * which can happen if uCode is reloaded and all the station
2381          * information are lost. if it is outside the range, there is no need
2382          * to deactivate the uCode queue, just return "success" to allow
2383          *  mac80211 to clean up it own data.
2384          */
2385         il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo_id);
2386         spin_unlock_irqrestore(&il->lock, flags);
2387
2388         ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2389
2390         return 0;
2391 }
2392
2393 int
2394 il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id)
2395 {
2396         struct il_queue *q = &il->txq[txq_id].q;
2397         u8 *addr = il->stations[sta_id].sta.sta.addr;
2398         struct il_tid_data *tid_data = &il->stations[sta_id].tid[tid];
2399         struct il_rxon_context *ctx;
2400
2401         ctx = &il->ctx;
2402
2403         lockdep_assert_held(&il->sta_lock);
2404
2405         switch (il->stations[sta_id].tid[tid].agg.state) {
2406         case IL_EMPTYING_HW_QUEUE_DELBA:
2407                 /* We are reclaiming the last packet of the */
2408                 /* aggregated HW queue */
2409                 if (txq_id == tid_data->agg.txq_id &&
2410                     q->read_ptr == q->write_ptr) {
2411                         u16 ssn = SEQ_TO_SN(tid_data->seq_number);
2412                         int tx_fifo = il4965_get_fifo_from_tid(ctx, tid);
2413                         D_HT("HW queue empty: continue DELBA flow\n");
2414                         il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo);
2415                         tid_data->agg.state = IL_AGG_OFF;
2416                         ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2417                 }
2418                 break;
2419         case IL_EMPTYING_HW_QUEUE_ADDBA:
2420                 /* We are reclaiming the last packet of the queue */
2421                 if (tid_data->tfds_in_queue == 0) {
2422                         D_HT("HW queue empty: continue ADDBA flow\n");
2423                         tid_data->agg.state = IL_AGG_ON;
2424                         ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2425                 }
2426                 break;
2427         }
2428
2429         return 0;
2430 }
2431
2432 static void
2433 il4965_non_agg_tx_status(struct il_priv *il, struct il_rxon_context *ctx,
2434                          const u8 *addr1)
2435 {
2436         struct ieee80211_sta *sta;
2437         struct il_station_priv *sta_priv;
2438
2439         rcu_read_lock();
2440         sta = ieee80211_find_sta(ctx->vif, addr1);
2441         if (sta) {
2442                 sta_priv = (void *)sta->drv_priv;
2443                 /* avoid atomic ops if this isn't a client */
2444                 if (sta_priv->client &&
2445                     atomic_dec_return(&sta_priv->pending_frames) == 0)
2446                         ieee80211_sta_block_awake(il->hw, sta, false);
2447         }
2448         rcu_read_unlock();
2449 }
2450
2451 static void
2452 il4965_tx_status(struct il_priv *il, struct il_tx_info *tx_info, bool is_agg)
2453 {
2454         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx_info->skb->data;
2455
2456         if (!is_agg)
2457                 il4965_non_agg_tx_status(il, tx_info->ctx, hdr->addr1);
2458
2459         ieee80211_tx_status_irqsafe(il->hw, tx_info->skb);
2460 }
2461
2462 int
2463 il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx)
2464 {
2465         struct il_tx_queue *txq = &il->txq[txq_id];
2466         struct il_queue *q = &txq->q;
2467         struct il_tx_info *tx_info;
2468         int nfreed = 0;
2469         struct ieee80211_hdr *hdr;
2470
2471         if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
2472                 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
2473                        "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd,
2474                        q->write_ptr, q->read_ptr);
2475                 return 0;
2476         }
2477
2478         for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
2479              q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
2480
2481                 tx_info = &txq->txb[txq->q.read_ptr];
2482
2483                 if (WARN_ON_ONCE(tx_info->skb == NULL))
2484                         continue;
2485
2486                 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
2487                 if (ieee80211_is_data_qos(hdr->frame_control))
2488                         nfreed++;
2489
2490                 il4965_tx_status(il, tx_info,
2491                                  txq_id >= IL4965_FIRST_AMPDU_QUEUE);
2492                 tx_info->skb = NULL;
2493
2494                 il->cfg->ops->lib->txq_free_tfd(il, txq);
2495         }
2496         return nfreed;
2497 }
2498
2499 /**
2500  * il4965_tx_status_reply_compressed_ba - Update tx status from block-ack
2501  *
2502  * Go through block-ack's bitmap of ACK'd frames, update driver's record of
2503  * ACK vs. not.  This gets sent to mac80211, then to rate scaling algo.
2504  */
2505 static int
2506 il4965_tx_status_reply_compressed_ba(struct il_priv *il, struct il_ht_agg *agg,
2507                                      struct il_compressed_ba_resp *ba_resp)
2508 {
2509         int i, sh, ack;
2510         u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
2511         u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2512         int successes = 0;
2513         struct ieee80211_tx_info *info;
2514         u64 bitmap, sent_bitmap;
2515
2516         if (unlikely(!agg->wait_for_ba)) {
2517                 if (unlikely(ba_resp->bitmap))
2518                         IL_ERR("Received BA when not expected\n");
2519                 return -EINVAL;
2520         }
2521
2522         /* Mark that the expected block-ack response arrived */
2523         agg->wait_for_ba = 0;
2524         D_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
2525
2526         /* Calculate shift to align block-ack bits with our Tx win bits */
2527         sh = agg->start_idx - SEQ_TO_IDX(seq_ctl >> 4);
2528         if (sh < 0)             /* tbw something is wrong with indices */
2529                 sh += 0x100;
2530
2531         if (agg->frame_count > (64 - sh)) {
2532                 D_TX_REPLY("more frames than bitmap size");
2533                 return -1;
2534         }
2535
2536         /* don't use 64-bit values for now */
2537         bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
2538
2539         /* check for success or failure according to the
2540          * transmitted bitmap and block-ack bitmap */
2541         sent_bitmap = bitmap & agg->bitmap;
2542
2543         /* For each frame attempted in aggregation,
2544          * update driver's record of tx frame's status. */
2545         i = 0;
2546         while (sent_bitmap) {
2547                 ack = sent_bitmap & 1ULL;
2548                 successes += ack;
2549                 D_TX_REPLY("%s ON i=%d idx=%d raw=%d\n", ack ? "ACK" : "NACK",
2550                            i, (agg->start_idx + i) & 0xff, agg->start_idx + i);
2551                 sent_bitmap >>= 1;
2552                 ++i;
2553         }
2554
2555         D_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
2556
2557         info = IEEE80211_SKB_CB(il->txq[scd_flow].txb[agg->start_idx].skb);
2558         memset(&info->status, 0, sizeof(info->status));
2559         info->flags |= IEEE80211_TX_STAT_ACK;
2560         info->flags |= IEEE80211_TX_STAT_AMPDU;
2561         info->status.ampdu_ack_len = successes;
2562         info->status.ampdu_len = agg->frame_count;
2563         il4965_hwrate_to_tx_control(il, agg->rate_n_flags, info);
2564
2565         return 0;
2566 }
2567
2568 /**
2569  * translate ucode response to mac80211 tx status control values
2570  */
2571 void
2572 il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
2573                             struct ieee80211_tx_info *info)
2574 {
2575         struct ieee80211_tx_rate *r = &info->control.rates[0];
2576
2577         info->antenna_sel_tx =
2578             ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
2579         if (rate_n_flags & RATE_MCS_HT_MSK)
2580                 r->flags |= IEEE80211_TX_RC_MCS;
2581         if (rate_n_flags & RATE_MCS_GF_MSK)
2582                 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
2583         if (rate_n_flags & RATE_MCS_HT40_MSK)
2584                 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2585         if (rate_n_flags & RATE_MCS_DUP_MSK)
2586                 r->flags |= IEEE80211_TX_RC_DUP_DATA;
2587         if (rate_n_flags & RATE_MCS_SGI_MSK)
2588                 r->flags |= IEEE80211_TX_RC_SHORT_GI;
2589         r->idx = il4965_hwrate_to_mac80211_idx(rate_n_flags, info->band);
2590 }
2591
2592 /**
2593  * il4965_hdl_compressed_ba - Handler for N_COMPRESSED_BA
2594  *
2595  * Handles block-acknowledge notification from device, which reports success
2596  * of frames sent via aggregation.
2597  */
2598 void
2599 il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb)
2600 {
2601         struct il_rx_pkt *pkt = rxb_addr(rxb);
2602         struct il_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
2603         struct il_tx_queue *txq = NULL;
2604         struct il_ht_agg *agg;
2605         int idx;
2606         int sta_id;
2607         int tid;
2608         unsigned long flags;
2609
2610         /* "flow" corresponds to Tx queue */
2611         u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2612
2613         /* "ssn" is start of block-ack Tx win, corresponds to idx
2614          * (in Tx queue's circular buffer) of first TFD/frame in win */
2615         u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
2616
2617         if (scd_flow >= il->hw_params.max_txq_num) {
2618                 IL_ERR("BUG_ON scd_flow is bigger than number of queues\n");
2619                 return;
2620         }
2621
2622         txq = &il->txq[scd_flow];
2623         sta_id = ba_resp->sta_id;
2624         tid = ba_resp->tid;
2625         agg = &il->stations[sta_id].tid[tid].agg;
2626         if (unlikely(agg->txq_id != scd_flow)) {
2627                 /*
2628                  * FIXME: this is a uCode bug which need to be addressed,
2629                  * log the information and return for now!
2630                  * since it is possible happen very often and in order
2631                  * not to fill the syslog, don't enable the logging by default
2632                  */
2633                 D_TX_REPLY("BA scd_flow %d does not match txq_id %d\n",
2634                            scd_flow, agg->txq_id);
2635                 return;
2636         }
2637
2638         /* Find idx just before block-ack win */
2639         idx = il_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
2640
2641         spin_lock_irqsave(&il->sta_lock, flags);
2642
2643         D_TX_REPLY("N_COMPRESSED_BA [%d] Received from %pM, " "sta_id = %d\n",
2644                    agg->wait_for_ba, (u8 *) &ba_resp->sta_addr_lo32,
2645                    ba_resp->sta_id);
2646         D_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx," "scd_flow = "
2647                    "%d, scd_ssn = %d\n", ba_resp->tid, ba_resp->seq_ctl,
2648                    (unsigned long long)le64_to_cpu(ba_resp->bitmap),
2649                    ba_resp->scd_flow, ba_resp->scd_ssn);
2650         D_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx\n", agg->start_idx,
2651                    (unsigned long long)agg->bitmap);
2652
2653         /* Update driver's record of ACK vs. not for each frame in win */
2654         il4965_tx_status_reply_compressed_ba(il, agg, ba_resp);
2655
2656         /* Release all TFDs before the SSN, i.e. all TFDs in front of
2657          * block-ack win (we assume that they've been successfully
2658          * transmitted ... if not, it's too late anyway). */
2659         if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
2660                 /* calculate mac80211 ampdu sw queue to wake */
2661                 int freed = il4965_tx_queue_reclaim(il, scd_flow, idx);
2662                 il4965_free_tfds_in_queue(il, sta_id, tid, freed);
2663
2664                 if (il_queue_space(&txq->q) > txq->q.low_mark &&
2665                     il->mac80211_registered &&
2666                     agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
2667                         il_wake_queue(il, txq);
2668
2669                 il4965_txq_check_empty(il, sta_id, tid, scd_flow);
2670         }
2671
2672         spin_unlock_irqrestore(&il->sta_lock, flags);
2673 }
2674
2675 #ifdef CONFIG_IWLEGACY_DEBUG
2676 const char *
2677 il4965_get_tx_fail_reason(u32 status)
2678 {
2679 #define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
2680 #define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
2681
2682         switch (status & TX_STATUS_MSK) {
2683         case TX_STATUS_SUCCESS:
2684                 return "SUCCESS";
2685                 TX_STATUS_POSTPONE(DELAY);
2686                 TX_STATUS_POSTPONE(FEW_BYTES);
2687                 TX_STATUS_POSTPONE(QUIET_PERIOD);
2688                 TX_STATUS_POSTPONE(CALC_TTAK);
2689                 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
2690                 TX_STATUS_FAIL(SHORT_LIMIT);
2691                 TX_STATUS_FAIL(LONG_LIMIT);
2692                 TX_STATUS_FAIL(FIFO_UNDERRUN);
2693                 TX_STATUS_FAIL(DRAIN_FLOW);
2694                 TX_STATUS_FAIL(RFKILL_FLUSH);
2695                 TX_STATUS_FAIL(LIFE_EXPIRE);
2696                 TX_STATUS_FAIL(DEST_PS);
2697                 TX_STATUS_FAIL(HOST_ABORTED);
2698                 TX_STATUS_FAIL(BT_RETRY);
2699                 TX_STATUS_FAIL(STA_INVALID);
2700                 TX_STATUS_FAIL(FRAG_DROPPED);
2701                 TX_STATUS_FAIL(TID_DISABLE);
2702                 TX_STATUS_FAIL(FIFO_FLUSHED);
2703                 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
2704                 TX_STATUS_FAIL(PASSIVE_NO_RX);
2705                 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
2706         }
2707
2708         return "UNKNOWN";
2709
2710 #undef TX_STATUS_FAIL
2711 #undef TX_STATUS_POSTPONE
2712 }
2713 #endif /* CONFIG_IWLEGACY_DEBUG */
2714
2715 static struct il_link_quality_cmd *
2716 il4965_sta_alloc_lq(struct il_priv *il, u8 sta_id)
2717 {
2718         int i, r;
2719         struct il_link_quality_cmd *link_cmd;
2720         u32 rate_flags = 0;
2721         __le32 rate_n_flags;
2722
2723         link_cmd = kzalloc(sizeof(struct il_link_quality_cmd), GFP_KERNEL);
2724         if (!link_cmd) {
2725                 IL_ERR("Unable to allocate memory for LQ cmd.\n");
2726                 return NULL;
2727         }
2728         /* Set up the rate scaling to start at selected rate, fall back
2729          * all the way down to 1M in IEEE order, and then spin on 1M */
2730         if (il->band == IEEE80211_BAND_5GHZ)
2731                 r = RATE_6M_IDX;
2732         else
2733                 r = RATE_1M_IDX;
2734
2735         if (r >= IL_FIRST_CCK_RATE && r <= IL_LAST_CCK_RATE)
2736                 rate_flags |= RATE_MCS_CCK_MSK;
2737
2738         rate_flags |=
2739             il4965_first_antenna(il->hw_params.
2740                                  valid_tx_ant) << RATE_MCS_ANT_POS;
2741         rate_n_flags = cpu_to_le32(il_rates[r].plcp | rate_flags);
2742         for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2743                 link_cmd->rs_table[i].rate_n_flags = rate_n_flags;
2744
2745         link_cmd->general_params.single_stream_ant_msk =
2746             il4965_first_antenna(il->hw_params.valid_tx_ant);
2747
2748         link_cmd->general_params.dual_stream_ant_msk =
2749             il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2750                                                                valid_tx_ant);
2751         if (!link_cmd->general_params.dual_stream_ant_msk) {
2752                 link_cmd->general_params.dual_stream_ant_msk = ANT_AB;
2753         } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2754                 link_cmd->general_params.dual_stream_ant_msk =
2755                     il->hw_params.valid_tx_ant;
2756         }
2757
2758         link_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2759         link_cmd->agg_params.agg_time_limit =
2760             cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2761
2762         link_cmd->sta_id = sta_id;
2763
2764         return link_cmd;
2765 }
2766
2767 /*
2768  * il4965_add_bssid_station - Add the special IBSS BSSID station
2769  *
2770  * Function sleeps.
2771  */
2772 int
2773 il4965_add_bssid_station(struct il_priv *il, struct il_rxon_context *ctx,
2774                          const u8 *addr, u8 *sta_id_r)
2775 {
2776         int ret;
2777         u8 sta_id;
2778         struct il_link_quality_cmd *link_cmd;
2779         unsigned long flags;
2780
2781         if (sta_id_r)
2782                 *sta_id_r = IL_INVALID_STATION;
2783
2784         ret = il_add_station_common(il, ctx, addr, 0, NULL, &sta_id);
2785         if (ret) {
2786                 IL_ERR("Unable to add station %pM\n", addr);
2787                 return ret;
2788         }
2789
2790         if (sta_id_r)
2791                 *sta_id_r = sta_id;
2792
2793         spin_lock_irqsave(&il->sta_lock, flags);
2794         il->stations[sta_id].used |= IL_STA_LOCAL;
2795         spin_unlock_irqrestore(&il->sta_lock, flags);
2796
2797         /* Set up default rate scaling table in device's station table */
2798         link_cmd = il4965_sta_alloc_lq(il, sta_id);
2799         if (!link_cmd) {
2800                 IL_ERR("Unable to initialize rate scaling for station %pM.\n",
2801                        addr);
2802                 return -ENOMEM;
2803         }
2804
2805         ret = il_send_lq_cmd(il, ctx, link_cmd, CMD_SYNC, true);
2806         if (ret)
2807                 IL_ERR("Link quality command failed (%d)\n", ret);
2808
2809         spin_lock_irqsave(&il->sta_lock, flags);
2810         il->stations[sta_id].lq = link_cmd;
2811         spin_unlock_irqrestore(&il->sta_lock, flags);
2812
2813         return 0;
2814 }
2815
2816 static int
2817 il4965_static_wepkey_cmd(struct il_priv *il, struct il_rxon_context *ctx,
2818                          bool send_if_empty)
2819 {
2820         int i, not_empty = 0;
2821         u8 buff[sizeof(struct il_wep_cmd) +
2822                 sizeof(struct il_wep_key) * WEP_KEYS_MAX];
2823         struct il_wep_cmd *wep_cmd = (struct il_wep_cmd *)buff;
2824         size_t cmd_size = sizeof(struct il_wep_cmd);
2825         struct il_host_cmd cmd = {
2826                 .id = ctx->wep_key_cmd,
2827                 .data = wep_cmd,
2828                 .flags = CMD_SYNC,
2829         };
2830
2831         might_sleep();
2832
2833         memset(wep_cmd, 0,
2834                cmd_size + (sizeof(struct il_wep_key) * WEP_KEYS_MAX));
2835
2836         for (i = 0; i < WEP_KEYS_MAX; i++) {
2837                 wep_cmd->key[i].key_idx = i;
2838                 if (ctx->wep_keys[i].key_size) {
2839                         wep_cmd->key[i].key_offset = i;
2840                         not_empty = 1;
2841                 } else {
2842                         wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
2843                 }
2844
2845                 wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size;
2846                 memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key,
2847                        ctx->wep_keys[i].key_size);
2848         }
2849
2850         wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
2851         wep_cmd->num_keys = WEP_KEYS_MAX;
2852
2853         cmd_size += sizeof(struct il_wep_key) * WEP_KEYS_MAX;
2854
2855         cmd.len = cmd_size;
2856
2857         if (not_empty || send_if_empty)
2858                 return il_send_cmd(il, &cmd);
2859         else
2860                 return 0;
2861 }
2862
2863 int
2864 il4965_restore_default_wep_keys(struct il_priv *il, struct il_rxon_context *ctx)
2865 {
2866         lockdep_assert_held(&il->mutex);
2867
2868         return il4965_static_wepkey_cmd(il, ctx, false);
2869 }
2870
2871 int
2872 il4965_remove_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2873                               struct ieee80211_key_conf *keyconf)
2874 {
2875         int ret;
2876
2877         lockdep_assert_held(&il->mutex);
2878
2879         D_WEP("Removing default WEP key: idx=%d\n", keyconf->keyidx);
2880
2881         memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0]));
2882         if (il_is_rfkill(il)) {
2883                 D_WEP("Not sending C_WEPKEY command due to RFKILL.\n");
2884                 /* but keys in device are clear anyway so return success */
2885                 return 0;
2886         }
2887         ret = il4965_static_wepkey_cmd(il, ctx, 1);
2888         D_WEP("Remove default WEP key: idx=%d ret=%d\n", keyconf->keyidx, ret);
2889
2890         return ret;
2891 }
2892
2893 int
2894 il4965_set_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2895                            struct ieee80211_key_conf *keyconf)
2896 {
2897         int ret;
2898
2899         lockdep_assert_held(&il->mutex);
2900
2901         if (keyconf->keylen != WEP_KEY_LEN_128 &&
2902             keyconf->keylen != WEP_KEY_LEN_64) {
2903                 D_WEP("Bad WEP key length %d\n", keyconf->keylen);
2904                 return -EINVAL;
2905         }
2906
2907         keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2908         keyconf->hw_key_idx = HW_KEY_DEFAULT;
2909         il->stations[ctx->ap_sta_id].keyinfo.cipher = keyconf->cipher;
2910
2911         ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
2912         memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
2913                keyconf->keylen);
2914
2915         ret = il4965_static_wepkey_cmd(il, ctx, false);
2916         D_WEP("Set default WEP key: len=%d idx=%d ret=%d\n", keyconf->keylen,
2917               keyconf->keyidx, ret);
2918
2919         return ret;
2920 }
2921
2922 static int
2923 il4965_set_wep_dynamic_key_info(struct il_priv *il, struct il_rxon_context *ctx,
2924                                 struct ieee80211_key_conf *keyconf, u8 sta_id)
2925 {
2926         unsigned long flags;
2927         __le16 key_flags = 0;
2928         struct il_addsta_cmd sta_cmd;
2929
2930         lockdep_assert_held(&il->mutex);
2931
2932         keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2933
2934         key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
2935         key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2936         key_flags &= ~STA_KEY_FLG_INVALID;
2937
2938         if (keyconf->keylen == WEP_KEY_LEN_128)
2939                 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
2940
2941         if (sta_id == ctx->bcast_sta_id)
2942                 key_flags |= STA_KEY_MULTICAST_MSK;
2943
2944         spin_lock_irqsave(&il->sta_lock, flags);
2945
2946         il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2947         il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2948         il->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
2949
2950         memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
2951
2952         memcpy(&il->stations[sta_id].sta.key.key[3], keyconf->key,
2953                keyconf->keylen);
2954
2955         if ((il->stations[sta_id].sta.key.
2956              key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
2957                 il->stations[sta_id].sta.key.key_offset =
2958                     il_get_free_ucode_key_idx(il);
2959         /* else, we are overriding an existing key => no need to allocated room
2960          * in uCode. */
2961
2962         WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
2963              "no space for a new key");
2964
2965         il->stations[sta_id].sta.key.key_flags = key_flags;
2966         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
2967         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
2968
2969         memcpy(&sta_cmd, &il->stations[sta_id].sta,
2970                sizeof(struct il_addsta_cmd));
2971         spin_unlock_irqrestore(&il->sta_lock, flags);
2972
2973         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
2974 }
2975
2976 static int
2977 il4965_set_ccmp_dynamic_key_info(struct il_priv *il,
2978                                  struct il_rxon_context *ctx,
2979                                  struct ieee80211_key_conf *keyconf, u8 sta_id)
2980 {
2981         unsigned long flags;
2982         __le16 key_flags = 0;
2983         struct il_addsta_cmd sta_cmd;
2984
2985         lockdep_assert_held(&il->mutex);
2986
2987         key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
2988         key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2989         key_flags &= ~STA_KEY_FLG_INVALID;
2990
2991         if (sta_id == ctx->bcast_sta_id)
2992                 key_flags |= STA_KEY_MULTICAST_MSK;
2993
2994         keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2995
2996         spin_lock_irqsave(&il->sta_lock, flags);
2997         il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2998         il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2999
3000         memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
3001
3002         memcpy(il->stations[sta_id].sta.key.key, keyconf->key, keyconf->keylen);
3003
3004         if ((il->stations[sta_id].sta.key.
3005              key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
3006                 il->stations[sta_id].sta.key.key_offset =
3007                     il_get_free_ucode_key_idx(il);
3008         /* else, we are overriding an existing key => no need to allocated room
3009          * in uCode. */
3010
3011         WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
3012              "no space for a new key");
3013
3014         il->stations[sta_id].sta.key.key_flags = key_flags;
3015         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3016         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3017
3018         memcpy(&sta_cmd, &il->stations[sta_id].sta,
3019                sizeof(struct il_addsta_cmd));
3020         spin_unlock_irqrestore(&il->sta_lock, flags);
3021
3022         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3023 }
3024
3025 static int
3026 il4965_set_tkip_dynamic_key_info(struct il_priv *il,
3027                                  struct il_rxon_context *ctx,
3028                                  struct ieee80211_key_conf *keyconf, u8 sta_id)
3029 {
3030         unsigned long flags;
3031         int ret = 0;
3032         __le16 key_flags = 0;
3033
3034         key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
3035         key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3036         key_flags &= ~STA_KEY_FLG_INVALID;
3037
3038         if (sta_id == ctx->bcast_sta_id)
3039                 key_flags |= STA_KEY_MULTICAST_MSK;
3040
3041         keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3042         keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
3043
3044         spin_lock_irqsave(&il->sta_lock, flags);
3045
3046         il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
3047         il->stations[sta_id].keyinfo.keylen = 16;
3048
3049         if ((il->stations[sta_id].sta.key.
3050              key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
3051                 il->stations[sta_id].sta.key.key_offset =
3052                     il_get_free_ucode_key_idx(il);
3053         /* else, we are overriding an existing key => no need to allocated room
3054          * in uCode. */
3055
3056         WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
3057              "no space for a new key");
3058
3059         il->stations[sta_id].sta.key.key_flags = key_flags;
3060
3061         /* This copy is acutally not needed: we get the key with each TX */
3062         memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, 16);
3063
3064         memcpy(il->stations[sta_id].sta.key.key, keyconf->key, 16);
3065
3066         spin_unlock_irqrestore(&il->sta_lock, flags);
3067
3068         return ret;
3069 }
3070
3071 void
3072 il4965_update_tkip_key(struct il_priv *il, struct il_rxon_context *ctx,
3073                        struct ieee80211_key_conf *keyconf,
3074                        struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
3075 {
3076         u8 sta_id;
3077         unsigned long flags;
3078         int i;
3079
3080         if (il_scan_cancel(il)) {
3081                 /* cancel scan failed, just live w/ bad key and rely
3082                    briefly on SW decryption */
3083                 return;
3084         }
3085
3086         sta_id = il_sta_id_or_broadcast(il, ctx, sta);
3087         if (sta_id == IL_INVALID_STATION)
3088                 return;
3089
3090         spin_lock_irqsave(&il->sta_lock, flags);
3091
3092         il->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
3093
3094         for (i = 0; i < 5; i++)
3095                 il->stations[sta_id].sta.key.tkip_rx_ttak[i] =
3096                     cpu_to_le16(phase1key[i]);
3097
3098         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3099         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3100
3101         il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
3102
3103         spin_unlock_irqrestore(&il->sta_lock, flags);
3104
3105 }
3106
3107 int
3108 il4965_remove_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3109                           struct ieee80211_key_conf *keyconf, u8 sta_id)
3110 {
3111         unsigned long flags;
3112         u16 key_flags;
3113         u8 keyidx;
3114         struct il_addsta_cmd sta_cmd;
3115
3116         lockdep_assert_held(&il->mutex);
3117
3118         ctx->key_mapping_keys--;
3119
3120         spin_lock_irqsave(&il->sta_lock, flags);
3121         key_flags = le16_to_cpu(il->stations[sta_id].sta.key.key_flags);
3122         keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
3123
3124         D_WEP("Remove dynamic key: idx=%d sta=%d\n", keyconf->keyidx, sta_id);
3125
3126         if (keyconf->keyidx != keyidx) {
3127                 /* We need to remove a key with idx different that the one
3128                  * in the uCode. This means that the key we need to remove has
3129                  * been replaced by another one with different idx.
3130                  * Don't do anything and return ok
3131                  */
3132                 spin_unlock_irqrestore(&il->sta_lock, flags);
3133                 return 0;
3134         }
3135
3136         if (il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
3137                 IL_WARN("Removing wrong key %d 0x%x\n", keyconf->keyidx,
3138                         key_flags);
3139                 spin_unlock_irqrestore(&il->sta_lock, flags);
3140                 return 0;
3141         }
3142
3143         if (!test_and_clear_bit
3144             (il->stations[sta_id].sta.key.key_offset, &il->ucode_key_table))
3145                 IL_ERR("idx %d not used in uCode key table.\n",
3146                        il->stations[sta_id].sta.key.key_offset);
3147         memset(&il->stations[sta_id].keyinfo, 0, sizeof(struct il_hw_key));
3148         memset(&il->stations[sta_id].sta.key, 0, sizeof(struct il4965_keyinfo));
3149         il->stations[sta_id].sta.key.key_flags =
3150             STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
3151         il->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
3152         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3153         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3154
3155         if (il_is_rfkill(il)) {
3156                 D_WEP
3157                     ("Not sending C_ADD_STA command because RFKILL enabled.\n");
3158                 spin_unlock_irqrestore(&il->sta_lock, flags);
3159                 return 0;
3160         }
3161         memcpy(&sta_cmd, &il->stations[sta_id].sta,
3162                sizeof(struct il_addsta_cmd));
3163         spin_unlock_irqrestore(&il->sta_lock, flags);
3164
3165         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3166 }
3167
3168 int
3169 il4965_set_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3170                        struct ieee80211_key_conf *keyconf, u8 sta_id)
3171 {
3172         int ret;
3173
3174         lockdep_assert_held(&il->mutex);
3175
3176         ctx->key_mapping_keys++;
3177         keyconf->hw_key_idx = HW_KEY_DYNAMIC;
3178
3179         switch (keyconf->cipher) {
3180         case WLAN_CIPHER_SUITE_CCMP:
3181                 ret =
3182                     il4965_set_ccmp_dynamic_key_info(il, ctx, keyconf, sta_id);
3183                 break;
3184         case WLAN_CIPHER_SUITE_TKIP:
3185                 ret =
3186                     il4965_set_tkip_dynamic_key_info(il, ctx, keyconf, sta_id);
3187                 break;
3188         case WLAN_CIPHER_SUITE_WEP40:
3189         case WLAN_CIPHER_SUITE_WEP104:
3190                 ret = il4965_set_wep_dynamic_key_info(il, ctx, keyconf, sta_id);
3191                 break;
3192         default:
3193                 IL_ERR("Unknown alg: %s cipher = %x\n", __func__,
3194                        keyconf->cipher);
3195                 ret = -EINVAL;
3196         }
3197
3198         D_WEP("Set dynamic key: cipher=%x len=%d idx=%d sta=%d ret=%d\n",
3199               keyconf->cipher, keyconf->keylen, keyconf->keyidx, sta_id, ret);
3200
3201         return ret;
3202 }
3203
3204 /**
3205  * il4965_alloc_bcast_station - add broadcast station into driver's station table.
3206  *
3207  * This adds the broadcast station into the driver's station table
3208  * and marks it driver active, so that it will be restored to the
3209  * device at the next best time.
3210  */
3211 int
3212 il4965_alloc_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
3213 {
3214         struct il_link_quality_cmd *link_cmd;
3215         unsigned long flags;
3216         u8 sta_id;
3217
3218         spin_lock_irqsave(&il->sta_lock, flags);
3219         sta_id = il_prep_station(il, ctx, il_bcast_addr, false, NULL);
3220         if (sta_id == IL_INVALID_STATION) {
3221                 IL_ERR("Unable to prepare broadcast station\n");
3222                 spin_unlock_irqrestore(&il->sta_lock, flags);
3223
3224                 return -EINVAL;
3225         }
3226
3227         il->stations[sta_id].used |= IL_STA_DRIVER_ACTIVE;
3228         il->stations[sta_id].used |= IL_STA_BCAST;
3229         spin_unlock_irqrestore(&il->sta_lock, flags);
3230
3231         link_cmd = il4965_sta_alloc_lq(il, sta_id);
3232         if (!link_cmd) {
3233                 IL_ERR
3234                     ("Unable to initialize rate scaling for bcast station.\n");
3235                 return -ENOMEM;
3236         }
3237
3238         spin_lock_irqsave(&il->sta_lock, flags);
3239         il->stations[sta_id].lq = link_cmd;
3240         spin_unlock_irqrestore(&il->sta_lock, flags);
3241
3242         return 0;
3243 }
3244
3245 /**
3246  * il4965_update_bcast_station - update broadcast station's LQ command
3247  *
3248  * Only used by iwl4965. Placed here to have all bcast station management
3249  * code together.
3250  */
3251 static int
3252 il4965_update_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
3253 {
3254         unsigned long flags;
3255         struct il_link_quality_cmd *link_cmd;
3256         u8 sta_id = ctx->bcast_sta_id;
3257
3258         link_cmd = il4965_sta_alloc_lq(il, sta_id);
3259         if (!link_cmd) {
3260                 IL_ERR("Unable to initialize rate scaling for bcast sta.\n");
3261                 return -ENOMEM;
3262         }
3263
3264         spin_lock_irqsave(&il->sta_lock, flags);
3265         if (il->stations[sta_id].lq)
3266                 kfree(il->stations[sta_id].lq);
3267         else
3268                 D_INFO("Bcast sta rate scaling has not been initialized.\n");
3269         il->stations[sta_id].lq = link_cmd;
3270         spin_unlock_irqrestore(&il->sta_lock, flags);
3271
3272         return 0;
3273 }
3274
3275 int
3276 il4965_update_bcast_stations(struct il_priv *il)
3277 {
3278         return il4965_update_bcast_station(il, &il->ctx);
3279 }
3280
3281 /**
3282  * il4965_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
3283  */
3284 int
3285 il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid)
3286 {
3287         unsigned long flags;
3288         struct il_addsta_cmd sta_cmd;
3289
3290         lockdep_assert_held(&il->mutex);
3291
3292         /* Remove "disable" flag, to enable Tx for this TID */
3293         spin_lock_irqsave(&il->sta_lock, flags);
3294         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3295         il->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3296         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3297         memcpy(&sta_cmd, &il->stations[sta_id].sta,
3298                sizeof(struct il_addsta_cmd));
3299         spin_unlock_irqrestore(&il->sta_lock, flags);
3300
3301         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3302 }
3303
3304 int
3305 il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta, int tid,
3306                         u16 ssn)
3307 {
3308         unsigned long flags;
3309         int sta_id;
3310         struct il_addsta_cmd sta_cmd;
3311
3312         lockdep_assert_held(&il->mutex);
3313
3314         sta_id = il_sta_id(sta);
3315         if (sta_id == IL_INVALID_STATION)
3316                 return -ENXIO;
3317
3318         spin_lock_irqsave(&il->sta_lock, flags);
3319         il->stations[sta_id].sta.station_flags_msk = 0;
3320         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
3321         il->stations[sta_id].sta.add_immediate_ba_tid = (u8) tid;
3322         il->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3323         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3324         memcpy(&sta_cmd, &il->stations[sta_id].sta,
3325                sizeof(struct il_addsta_cmd));
3326         spin_unlock_irqrestore(&il->sta_lock, flags);
3327
3328         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3329 }
3330
3331 int
3332 il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta, int tid)
3333 {
3334         unsigned long flags;
3335         int sta_id;
3336         struct il_addsta_cmd sta_cmd;
3337
3338         lockdep_assert_held(&il->mutex);
3339
3340         sta_id = il_sta_id(sta);
3341         if (sta_id == IL_INVALID_STATION) {
3342                 IL_ERR("Invalid station for AGG tid %d\n", tid);
3343                 return -ENXIO;
3344         }
3345
3346         spin_lock_irqsave(&il->sta_lock, flags);
3347         il->stations[sta_id].sta.station_flags_msk = 0;
3348         il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
3349         il->stations[sta_id].sta.remove_immediate_ba_tid = (u8) tid;
3350         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3351         memcpy(&sta_cmd, &il->stations[sta_id].sta,
3352                sizeof(struct il_addsta_cmd));
3353         spin_unlock_irqrestore(&il->sta_lock, flags);
3354
3355         return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3356 }
3357
3358 void
3359 il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt)
3360 {
3361         unsigned long flags;
3362
3363         spin_lock_irqsave(&il->sta_lock, flags);
3364         il->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
3365         il->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
3366         il->stations[sta_id].sta.sta.modify_mask =
3367             STA_MODIFY_SLEEP_TX_COUNT_MSK;
3368         il->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
3369         il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3370         il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
3371         spin_unlock_irqrestore(&il->sta_lock, flags);
3372
3373 }
3374
3375 void
3376 il4965_update_chain_flags(struct il_priv *il)
3377 {
3378         if (il->cfg->ops->hcmd->set_rxon_chain) {
3379                 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
3380                 if (il->active.rx_chain != il->staging.rx_chain)
3381                         il_commit_rxon(il, &il->ctx);
3382         }
3383 }
3384
3385 static void
3386 il4965_clear_free_frames(struct il_priv *il)
3387 {
3388         struct list_head *element;
3389
3390         D_INFO("%d frames on pre-allocated heap on clear.\n", il->frames_count);
3391
3392         while (!list_empty(&il->free_frames)) {
3393                 element = il->free_frames.next;
3394                 list_del(element);
3395                 kfree(list_entry(element, struct il_frame, list));
3396                 il->frames_count--;
3397         }
3398
3399         if (il->frames_count) {
3400                 IL_WARN("%d frames still in use.  Did we lose one?\n",
3401                         il->frames_count);
3402                 il->frames_count = 0;
3403         }
3404 }
3405
3406 static struct il_frame *
3407 il4965_get_free_frame(struct il_priv *il)
3408 {
3409         struct il_frame *frame;
3410         struct list_head *element;
3411         if (list_empty(&il->free_frames)) {
3412                 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
3413                 if (!frame) {
3414                         IL_ERR("Could not allocate frame!\n");
3415                         return NULL;
3416                 }
3417
3418                 il->frames_count++;
3419                 return frame;
3420         }
3421
3422         element = il->free_frames.next;
3423         list_del(element);
3424         return list_entry(element, struct il_frame, list);
3425 }
3426
3427 static void
3428 il4965_free_frame(struct il_priv *il, struct il_frame *frame)
3429 {
3430         memset(frame, 0, sizeof(*frame));
3431         list_add(&frame->list, &il->free_frames);
3432 }
3433
3434 static u32
3435 il4965_fill_beacon_frame(struct il_priv *il, struct ieee80211_hdr *hdr,
3436                          int left)
3437 {
3438         lockdep_assert_held(&il->mutex);
3439
3440         if (!il->beacon_skb)
3441                 return 0;
3442
3443         if (il->beacon_skb->len > left)
3444                 return 0;
3445
3446         memcpy(hdr, il->beacon_skb->data, il->beacon_skb->len);
3447
3448         return il->beacon_skb->len;
3449 }
3450
3451 /* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
3452 static void
3453 il4965_set_beacon_tim(struct il_priv *il,
3454                       struct il_tx_beacon_cmd *tx_beacon_cmd, u8 * beacon,
3455                       u32 frame_size)
3456 {
3457         u16 tim_idx;
3458         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
3459
3460         /*
3461          * The idx is relative to frame start but we start looking at the
3462          * variable-length part of the beacon.
3463          */
3464         tim_idx = mgmt->u.beacon.variable - beacon;
3465
3466         /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
3467         while ((tim_idx < (frame_size - 2)) &&
3468                (beacon[tim_idx] != WLAN_EID_TIM))
3469                 tim_idx += beacon[tim_idx + 1] + 2;
3470
3471         /* If TIM field was found, set variables */
3472         if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
3473                 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
3474                 tx_beacon_cmd->tim_size = beacon[tim_idx + 1];
3475         } else
3476                 IL_WARN("Unable to find TIM Element in beacon\n");
3477 }
3478
3479 static unsigned int
3480 il4965_hw_get_beacon_cmd(struct il_priv *il, struct il_frame *frame)
3481 {
3482         struct il_tx_beacon_cmd *tx_beacon_cmd;
3483         u32 frame_size;
3484         u32 rate_flags;
3485         u32 rate;
3486         /*
3487          * We have to set up the TX command, the TX Beacon command, and the
3488          * beacon contents.
3489          */
3490
3491         lockdep_assert_held(&il->mutex);
3492
3493         if (!il->beacon_ctx) {
3494                 IL_ERR("trying to build beacon w/o beacon context!\n");
3495                 return 0;
3496         }
3497
3498         /* Initialize memory */
3499         tx_beacon_cmd = &frame->u.beacon;
3500         memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
3501
3502         /* Set up TX beacon contents */
3503         frame_size =
3504             il4965_fill_beacon_frame(il, tx_beacon_cmd->frame,
3505                                      sizeof(frame->u) - sizeof(*tx_beacon_cmd));
3506         if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
3507                 return 0;
3508         if (!frame_size)
3509                 return 0;
3510
3511         /* Set up TX command fields */
3512         tx_beacon_cmd->tx.len = cpu_to_le16((u16) frame_size);
3513         tx_beacon_cmd->tx.sta_id = il->beacon_ctx->bcast_sta_id;
3514         tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3515         tx_beacon_cmd->tx.tx_flags =
3516             TX_CMD_FLG_SEQ_CTL_MSK | TX_CMD_FLG_TSF_MSK |
3517             TX_CMD_FLG_STA_RATE_MSK;
3518
3519         /* Set up TX beacon command fields */
3520         il4965_set_beacon_tim(il, tx_beacon_cmd, (u8 *) tx_beacon_cmd->frame,
3521                               frame_size);
3522
3523         /* Set up packet rate and flags */
3524         rate = il_get_lowest_plcp(il, il->beacon_ctx);
3525         il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant);
3526         rate_flags = BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS;
3527         if ((rate >= IL_FIRST_CCK_RATE) && (rate <= IL_LAST_CCK_RATE))
3528                 rate_flags |= RATE_MCS_CCK_MSK;
3529         tx_beacon_cmd->tx.rate_n_flags = cpu_to_le32(rate | rate_flags);
3530
3531         return sizeof(*tx_beacon_cmd) + frame_size;
3532 }
3533
3534 int
3535 il4965_send_beacon_cmd(struct il_priv *il)
3536 {
3537         struct il_frame *frame;
3538         unsigned int frame_size;
3539         int rc;
3540
3541         frame = il4965_get_free_frame(il);
3542         if (!frame) {
3543                 IL_ERR("Could not obtain free frame buffer for beacon "
3544                        "command.\n");
3545                 return -ENOMEM;
3546         }
3547
3548         frame_size = il4965_hw_get_beacon_cmd(il, frame);
3549         if (!frame_size) {
3550                 IL_ERR("Error configuring the beacon command\n");
3551                 il4965_free_frame(il, frame);
3552                 return -EINVAL;
3553         }
3554
3555         rc = il_send_cmd_pdu(il, C_TX_BEACON, frame_size, &frame->u.cmd[0]);
3556
3557         il4965_free_frame(il, frame);
3558
3559         return rc;
3560 }
3561
3562 static inline dma_addr_t
3563 il4965_tfd_tb_get_addr(struct il_tfd *tfd, u8 idx)
3564 {
3565         struct il_tfd_tb *tb = &tfd->tbs[idx];
3566
3567         dma_addr_t addr = get_unaligned_le32(&tb->lo);
3568         if (sizeof(dma_addr_t) > sizeof(u32))
3569                 addr |=
3570                     ((dma_addr_t) (le16_to_cpu(tb->hi_n_len) & 0xF) << 16) <<
3571                     16;
3572
3573         return addr;
3574 }
3575
3576 static inline u16
3577 il4965_tfd_tb_get_len(struct il_tfd *tfd, u8 idx)
3578 {
3579         struct il_tfd_tb *tb = &tfd->tbs[idx];
3580
3581         return le16_to_cpu(tb->hi_n_len) >> 4;
3582 }
3583
3584 static inline void
3585 il4965_tfd_set_tb(struct il_tfd *tfd, u8 idx, dma_addr_t addr, u16 len)
3586 {
3587         struct il_tfd_tb *tb = &tfd->tbs[idx];
3588         u16 hi_n_len = len << 4;
3589
3590         put_unaligned_le32(addr, &tb->lo);
3591         if (sizeof(dma_addr_t) > sizeof(u32))
3592                 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
3593
3594         tb->hi_n_len = cpu_to_le16(hi_n_len);
3595
3596         tfd->num_tbs = idx + 1;
3597 }
3598
3599 static inline u8
3600 il4965_tfd_get_num_tbs(struct il_tfd *tfd)
3601 {
3602         return tfd->num_tbs & 0x1f;
3603 }
3604
3605 /**
3606  * il4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
3607  * @il - driver ilate data
3608  * @txq - tx queue
3609  *
3610  * Does NOT advance any TFD circular buffer read/write idxes
3611  * Does NOT free the TFD itself (which is within circular buffer)
3612  */
3613 void
3614 il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq)
3615 {
3616         struct il_tfd *tfd_tmp = (struct il_tfd *)txq->tfds;
3617         struct il_tfd *tfd;
3618         struct pci_dev *dev = il->pci_dev;
3619         int idx = txq->q.read_ptr;
3620         int i;
3621         int num_tbs;
3622
3623         tfd = &tfd_tmp[idx];
3624
3625         /* Sanity check on number of chunks */
3626         num_tbs = il4965_tfd_get_num_tbs(tfd);
3627
3628         if (num_tbs >= IL_NUM_OF_TBS) {
3629                 IL_ERR("Too many chunks: %i\n", num_tbs);
3630                 /* @todo issue fatal error, it is quite serious situation */
3631                 return;
3632         }
3633
3634         /* Unmap tx_cmd */
3635         if (num_tbs)
3636                 pci_unmap_single(dev, dma_unmap_addr(&txq->meta[idx], mapping),
3637                                  dma_unmap_len(&txq->meta[idx], len),
3638                                  PCI_DMA_BIDIRECTIONAL);
3639
3640         /* Unmap chunks, if any. */
3641         for (i = 1; i < num_tbs; i++)
3642                 pci_unmap_single(dev, il4965_tfd_tb_get_addr(tfd, i),
3643                                  il4965_tfd_tb_get_len(tfd, i),
3644                                  PCI_DMA_TODEVICE);
3645
3646         /* free SKB */
3647         if (txq->txb) {
3648                 struct sk_buff *skb;
3649
3650                 skb = txq->txb[txq->q.read_ptr].skb;
3651
3652                 /* can be called from irqs-disabled context */
3653                 if (skb) {
3654                         dev_kfree_skb_any(skb);
3655                         txq->txb[txq->q.read_ptr].skb = NULL;
3656                 }
3657         }
3658 }
3659
3660 int
3661 il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, struct il_tx_queue *txq,
3662                                 dma_addr_t addr, u16 len, u8 reset, u8 pad)
3663 {
3664         struct il_queue *q;
3665         struct il_tfd *tfd, *tfd_tmp;
3666         u32 num_tbs;
3667
3668         q = &txq->q;
3669         tfd_tmp = (struct il_tfd *)txq->tfds;
3670         tfd = &tfd_tmp[q->write_ptr];
3671
3672         if (reset)
3673                 memset(tfd, 0, sizeof(*tfd));
3674
3675         num_tbs = il4965_tfd_get_num_tbs(tfd);
3676
3677         /* Each TFD can point to a maximum 20 Tx buffers */
3678         if (num_tbs >= IL_NUM_OF_TBS) {
3679                 IL_ERR("Error can not send more than %d chunks\n",
3680                        IL_NUM_OF_TBS);
3681                 return -EINVAL;
3682         }
3683
3684         BUG_ON(addr & ~DMA_BIT_MASK(36));
3685         if (unlikely(addr & ~IL_TX_DMA_MASK))
3686                 IL_ERR("Unaligned address = %llx\n", (unsigned long long)addr);
3687
3688         il4965_tfd_set_tb(tfd, num_tbs, addr, len);
3689
3690         return 0;
3691 }
3692
3693 /*
3694  * Tell nic where to find circular buffer of Tx Frame Descriptors for
3695  * given Tx queue, and enable the DMA channel used for that queue.
3696  *
3697  * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
3698  * channels supported in hardware.
3699  */
3700 int
3701 il4965_hw_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq)
3702 {
3703         int txq_id = txq->q.id;
3704
3705         /* Circular buffer (TFD queue in DRAM) physical base address */
3706         il_wr(il, FH49_MEM_CBBC_QUEUE(txq_id), txq->q.dma_addr >> 8);
3707
3708         return 0;
3709 }
3710
3711 /******************************************************************************
3712  *
3713  * Generic RX handler implementations
3714  *
3715  ******************************************************************************/
3716 static void
3717 il4965_hdl_alive(struct il_priv *il, struct il_rx_buf *rxb)
3718 {
3719         struct il_rx_pkt *pkt = rxb_addr(rxb);
3720         struct il_alive_resp *palive;
3721         struct delayed_work *pwork;
3722
3723         palive = &pkt->u.alive_frame;
3724
3725         D_INFO("Alive ucode status 0x%08X revision " "0x%01X 0x%01X\n",
3726                palive->is_valid, palive->ver_type, palive->ver_subtype);
3727
3728         if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
3729                 D_INFO("Initialization Alive received.\n");
3730                 memcpy(&il->card_alive_init, &pkt->u.alive_frame,
3731                        sizeof(struct il_init_alive_resp));
3732                 pwork = &il->init_alive_start;
3733         } else {
3734                 D_INFO("Runtime Alive received.\n");
3735                 memcpy(&il->card_alive, &pkt->u.alive_frame,
3736                        sizeof(struct il_alive_resp));
3737                 pwork = &il->alive_start;
3738         }
3739
3740         /* We delay the ALIVE response by 5ms to
3741          * give the HW RF Kill time to activate... */
3742         if (palive->is_valid == UCODE_VALID_OK)
3743                 queue_delayed_work(il->workqueue, pwork, msecs_to_jiffies(5));
3744         else
3745                 IL_WARN("uCode did not respond OK.\n");
3746 }
3747
3748 /**
3749  * il4965_bg_stats_periodic - Timer callback to queue stats
3750  *
3751  * This callback is provided in order to send a stats request.
3752  *
3753  * This timer function is continually reset to execute within
3754  * REG_RECALIB_PERIOD seconds since the last N_STATS
3755  * was received.  We need to ensure we receive the stats in order
3756  * to update the temperature used for calibrating the TXPOWER.
3757  */
3758 static void
3759 il4965_bg_stats_periodic(unsigned long data)
3760 {
3761         struct il_priv *il = (struct il_priv *)data;
3762
3763         if (test_bit(S_EXIT_PENDING, &il->status))
3764                 return;
3765
3766         /* dont send host command if rf-kill is on */
3767         if (!il_is_ready_rf(il))
3768                 return;
3769
3770         il_send_stats_request(il, CMD_ASYNC, false);
3771 }
3772
3773 static void
3774 il4965_hdl_beacon(struct il_priv *il, struct il_rx_buf *rxb)
3775 {
3776         struct il_rx_pkt *pkt = rxb_addr(rxb);
3777         struct il4965_beacon_notif *beacon =
3778             (struct il4965_beacon_notif *)pkt->u.raw;
3779 #ifdef CONFIG_IWLEGACY_DEBUG
3780         u8 rate = il4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
3781
3782         D_RX("beacon status %x retries %d iss %d tsf:0x%.8x%.8x rate %d\n",
3783              le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
3784              beacon->beacon_notify_hdr.failure_frame,
3785              le32_to_cpu(beacon->ibss_mgr_status),
3786              le32_to_cpu(beacon->high_tsf), le32_to_cpu(beacon->low_tsf), rate);
3787 #endif
3788         il->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
3789 }
3790
3791 static void
3792 il4965_perform_ct_kill_task(struct il_priv *il)
3793 {
3794         unsigned long flags;
3795
3796         D_POWER("Stop all queues\n");
3797
3798         if (il->mac80211_registered)
3799                 ieee80211_stop_queues(il->hw);
3800
3801         _il_wr(il, CSR_UCODE_DRV_GP1_SET,
3802                CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
3803         _il_rd(il, CSR_UCODE_DRV_GP1);
3804
3805         spin_lock_irqsave(&il->reg_lock, flags);
3806         if (!_il_grab_nic_access(il))
3807                 _il_release_nic_access(il);
3808         spin_unlock_irqrestore(&il->reg_lock, flags);
3809 }
3810
3811 /* Handle notification from uCode that card's power state is changing
3812  * due to software, hardware, or critical temperature RFKILL */
3813 static void
3814 il4965_hdl_card_state(struct il_priv *il, struct il_rx_buf *rxb)
3815 {
3816         struct il_rx_pkt *pkt = rxb_addr(rxb);
3817         u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
3818         unsigned long status = il->status;
3819
3820         D_RF_KILL("Card state received: HW:%s SW:%s CT:%s\n",
3821                   (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3822                   (flags & SW_CARD_DISABLED) ? "Kill" : "On",
3823                   (flags & CT_CARD_DISABLED) ? "Reached" : "Not reached");
3824
3825         if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | CT_CARD_DISABLED)) {
3826
3827                 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
3828                        CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3829
3830                 il_wr(il, HBUS_TARG_MBX_C, HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3831
3832                 if (!(flags & RXON_CARD_DISABLED)) {
3833                         _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
3834                                CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3835                         il_wr(il, HBUS_TARG_MBX_C,
3836                               HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3837                 }
3838         }
3839
3840         if (flags & CT_CARD_DISABLED)
3841                 il4965_perform_ct_kill_task(il);
3842
3843         if (flags & HW_CARD_DISABLED)
3844                 set_bit(S_RF_KILL_HW, &il->status);
3845         else
3846                 clear_bit(S_RF_KILL_HW, &il->status);
3847
3848         if (!(flags & RXON_CARD_DISABLED))
3849                 il_scan_cancel(il);
3850
3851         if ((test_bit(S_RF_KILL_HW, &status) !=
3852              test_bit(S_RF_KILL_HW, &il->status)))
3853                 wiphy_rfkill_set_hw_state(il->hw->wiphy,
3854                                           test_bit(S_RF_KILL_HW, &il->status));
3855         else
3856                 wake_up(&il->wait_command_queue);
3857 }
3858
3859 /**
3860  * il4965_setup_handlers - Initialize Rx handler callbacks
3861  *
3862  * Setup the RX handlers for each of the reply types sent from the uCode
3863  * to the host.
3864  *
3865  * This function chains into the hardware specific files for them to setup
3866  * any hardware specific handlers as well.
3867  */
3868 static void
3869 il4965_setup_handlers(struct il_priv *il)
3870 {
3871         il->handlers[N_ALIVE] = il4965_hdl_alive;
3872         il->handlers[N_ERROR] = il_hdl_error;
3873         il->handlers[N_CHANNEL_SWITCH] = il_hdl_csa;
3874         il->handlers[N_SPECTRUM_MEASUREMENT] = il_hdl_spectrum_measurement;
3875         il->handlers[N_PM_SLEEP] = il_hdl_pm_sleep;
3876         il->handlers[N_PM_DEBUG_STATS] = il_hdl_pm_debug_stats;
3877         il->handlers[N_BEACON] = il4965_hdl_beacon;
3878
3879         /*
3880          * The same handler is used for both the REPLY to a discrete
3881          * stats request from the host as well as for the periodic
3882          * stats notifications (after received beacons) from the uCode.
3883          */
3884         il->handlers[C_STATS] = il4965_hdl_c_stats;
3885         il->handlers[N_STATS] = il4965_hdl_stats;
3886
3887         il_setup_rx_scan_handlers(il);
3888
3889         /* status change handler */
3890         il->handlers[N_CARD_STATE] = il4965_hdl_card_state;
3891
3892         il->handlers[N_MISSED_BEACONS] = il4965_hdl_missed_beacon;
3893         /* Rx handlers */
3894         il->handlers[N_RX_PHY] = il4965_hdl_rx_phy;
3895         il->handlers[N_RX_MPDU] = il4965_hdl_rx;
3896         /* block ack */
3897         il->handlers[N_COMPRESSED_BA] = il4965_hdl_compressed_ba;
3898         /* Set up hardware specific Rx handlers */
3899         il->cfg->ops->lib->handler_setup(il);
3900 }
3901
3902 /**
3903  * il4965_rx_handle - Main entry function for receiving responses from uCode
3904  *
3905  * Uses the il->handlers callback function array to invoke
3906  * the appropriate handlers, including command responses,
3907  * frame-received notifications, and other notifications.
3908  */
3909 void
3910 il4965_rx_handle(struct il_priv *il)
3911 {
3912         struct il_rx_buf *rxb;
3913         struct il_rx_pkt *pkt;
3914         struct il_rx_queue *rxq = &il->rxq;
3915         u32 r, i;
3916         int reclaim;
3917         unsigned long flags;
3918         u8 fill_rx = 0;
3919         u32 count = 8;
3920         int total_empty;
3921
3922         /* uCode's read idx (stored in shared DRAM) indicates the last Rx
3923          * buffer that the driver may process (last buffer filled by ucode). */
3924         r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
3925         i = rxq->read;
3926
3927         /* Rx interrupt, but nothing sent from uCode */
3928         if (i == r)
3929                 D_RX("r = %d, i = %d\n", r, i);
3930
3931         /* calculate total frames need to be restock after handling RX */
3932         total_empty = r - rxq->write_actual;
3933         if (total_empty < 0)
3934                 total_empty += RX_QUEUE_SIZE;
3935
3936         if (total_empty > (RX_QUEUE_SIZE / 2))
3937                 fill_rx = 1;
3938
3939         while (i != r) {
3940                 int len;
3941
3942                 rxb = rxq->queue[i];
3943
3944                 /* If an RXB doesn't have a Rx queue slot associated with it,
3945                  * then a bug has been introduced in the queue refilling
3946                  * routines -- catch it here */
3947                 BUG_ON(rxb == NULL);
3948
3949                 rxq->queue[i] = NULL;
3950
3951                 pci_unmap_page(il->pci_dev, rxb->page_dma,
3952                                PAGE_SIZE << il->hw_params.rx_page_order,
3953                                PCI_DMA_FROMDEVICE);
3954                 pkt = rxb_addr(rxb);
3955
3956                 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
3957                 len += sizeof(u32);     /* account for status word */
3958
3959                 /* Reclaim a command buffer only if this packet is a response
3960                  *   to a (driver-originated) command.
3961                  * If the packet (e.g. Rx frame) originated from uCode,
3962                  *   there is no command buffer to reclaim.
3963                  * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3964                  *   but apparently a few don't get set; catch them here. */
3965                 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
3966                     (pkt->hdr.cmd != N_RX_PHY) && (pkt->hdr.cmd != N_RX) &&
3967                     (pkt->hdr.cmd != N_RX_MPDU) &&
3968                     (pkt->hdr.cmd != N_COMPRESSED_BA) &&
3969                     (pkt->hdr.cmd != N_STATS) && (pkt->hdr.cmd != C_TX);
3970
3971                 /* Based on type of command response or notification,
3972                  *   handle those that need handling via function in
3973                  *   handlers table.  See il4965_setup_handlers() */
3974                 if (il->handlers[pkt->hdr.cmd]) {
3975                         D_RX("r = %d, i = %d, %s, 0x%02x\n", r, i,
3976                              il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3977                         il->isr_stats.handlers[pkt->hdr.cmd]++;
3978                         il->handlers[pkt->hdr.cmd] (il, rxb);
3979                 } else {
3980                         /* No handling needed */
3981                         D_RX("r %d i %d No handler needed for %s, 0x%02x\n", r,
3982                              i, il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
3983                 }
3984
3985                 /*
3986                  * XXX: After here, we should always check rxb->page
3987                  * against NULL before touching it or its virtual
3988                  * memory (pkt). Because some handler might have
3989                  * already taken or freed the pages.
3990                  */
3991
3992                 if (reclaim) {
3993                         /* Invoke any callbacks, transfer the buffer to caller,
3994                          * and fire off the (possibly) blocking il_send_cmd()
3995                          * as we reclaim the driver command queue */
3996                         if (rxb->page)
3997                                 il_tx_cmd_complete(il, rxb);
3998                         else
3999                                 IL_WARN("Claim null rxb?\n");
4000                 }
4001
4002                 /* Reuse the page if possible. For notification packets and
4003                  * SKBs that fail to Rx correctly, add them back into the
4004                  * rx_free list for reuse later. */
4005                 spin_lock_irqsave(&rxq->lock, flags);
4006                 if (rxb->page != NULL) {
4007                         rxb->page_dma =
4008                             pci_map_page(il->pci_dev, rxb->page, 0,
4009                                          PAGE_SIZE << il->hw_params.
4010                                          rx_page_order, PCI_DMA_FROMDEVICE);
4011                         list_add_tail(&rxb->list, &rxq->rx_free);
4012                         rxq->free_count++;
4013                 } else
4014                         list_add_tail(&rxb->list, &rxq->rx_used);
4015
4016                 spin_unlock_irqrestore(&rxq->lock, flags);
4017
4018                 i = (i + 1) & RX_QUEUE_MASK;
4019                 /* If there are a lot of unused frames,
4020                  * restock the Rx queue so ucode wont assert. */
4021                 if (fill_rx) {
4022                         count++;
4023                         if (count >= 8) {
4024                                 rxq->read = i;
4025                                 il4965_rx_replenish_now(il);
4026                                 count = 0;
4027                         }
4028                 }
4029         }
4030
4031         /* Backtrack one entry */
4032         rxq->read = i;
4033         if (fill_rx)
4034                 il4965_rx_replenish_now(il);
4035         else
4036                 il4965_rx_queue_restock(il);
4037 }
4038
4039 /* call this function to flush any scheduled tasklet */
4040 static inline void
4041 il4965_synchronize_irq(struct il_priv *il)
4042 {
4043         /* wait to make sure we flush pending tasklet */
4044         synchronize_irq(il->pci_dev->irq);
4045         tasklet_kill(&il->irq_tasklet);
4046 }
4047
4048 static void
4049 il4965_irq_tasklet(struct il_priv *il)
4050 {
4051         u32 inta, handled = 0;
4052         u32 inta_fh;
4053         unsigned long flags;
4054         u32 i;
4055 #ifdef CONFIG_IWLEGACY_DEBUG
4056         u32 inta_mask;
4057 #endif
4058
4059         spin_lock_irqsave(&il->lock, flags);
4060
4061         /* Ack/clear/reset pending uCode interrupts.
4062          * Note:  Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4063          *  and will clear only when CSR_FH_INT_STATUS gets cleared. */
4064         inta = _il_rd(il, CSR_INT);
4065         _il_wr(il, CSR_INT, inta);
4066
4067         /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4068          * Any new interrupts that happen after this, either while we're
4069          * in this tasklet, or later, will show up in next ISR/tasklet. */
4070         inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
4071         _il_wr(il, CSR_FH_INT_STATUS, inta_fh);
4072
4073 #ifdef CONFIG_IWLEGACY_DEBUG
4074         if (il_get_debug_level(il) & IL_DL_ISR) {
4075                 /* just for debug */
4076                 inta_mask = _il_rd(il, CSR_INT_MASK);
4077                 D_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta,
4078                       inta_mask, inta_fh);
4079         }
4080 #endif
4081
4082         spin_unlock_irqrestore(&il->lock, flags);
4083
4084         /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4085          * atomic, make sure that inta covers all the interrupts that
4086          * we've discovered, even if FH interrupt came in just after
4087          * reading CSR_INT. */
4088         if (inta_fh & CSR49_FH_INT_RX_MASK)
4089                 inta |= CSR_INT_BIT_FH_RX;
4090         if (inta_fh & CSR49_FH_INT_TX_MASK)
4091                 inta |= CSR_INT_BIT_FH_TX;
4092
4093         /* Now service all interrupt bits discovered above. */
4094         if (inta & CSR_INT_BIT_HW_ERR) {
4095                 IL_ERR("Hardware error detected.  Restarting.\n");
4096
4097                 /* Tell the device to stop sending interrupts */
4098                 il_disable_interrupts(il);
4099
4100                 il->isr_stats.hw++;
4101                 il_irq_handle_error(il);
4102
4103                 handled |= CSR_INT_BIT_HW_ERR;
4104
4105                 return;
4106         }
4107 #ifdef CONFIG_IWLEGACY_DEBUG
4108         if (il_get_debug_level(il) & (IL_DL_ISR)) {
4109                 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4110                 if (inta & CSR_INT_BIT_SCD) {
4111                         D_ISR("Scheduler finished to transmit "
4112                               "the frame/frames.\n");
4113                         il->isr_stats.sch++;
4114                 }
4115
4116                 /* Alive notification via Rx interrupt will do the real work */
4117                 if (inta & CSR_INT_BIT_ALIVE) {
4118                         D_ISR("Alive interrupt\n");
4119                         il->isr_stats.alive++;
4120                 }
4121         }
4122 #endif
4123         /* Safely ignore these bits for debug checks below */
4124         inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
4125
4126         /* HW RF KILL switch toggled */
4127         if (inta & CSR_INT_BIT_RF_KILL) {
4128                 int hw_rf_kill = 0;
4129                 if (!
4130                     (_il_rd(il, CSR_GP_CNTRL) &
4131                      CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4132                         hw_rf_kill = 1;
4133
4134                 IL_WARN("RF_KILL bit toggled to %s.\n",
4135                         hw_rf_kill ? "disable radio" : "enable radio");
4136
4137                 il->isr_stats.rfkill++;
4138
4139                 /* driver only loads ucode once setting the interface up.
4140                  * the driver allows loading the ucode even if the radio
4141                  * is killed. Hence update the killswitch state here. The
4142                  * rfkill handler will care about restarting if needed.
4143                  */
4144                 if (!test_bit(S_ALIVE, &il->status)) {
4145                         if (hw_rf_kill)
4146                                 set_bit(S_RF_KILL_HW, &il->status);
4147                         else
4148                                 clear_bit(S_RF_KILL_HW, &il->status);
4149                         wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rf_kill);
4150                 }
4151
4152                 handled |= CSR_INT_BIT_RF_KILL;
4153         }
4154
4155         /* Chip got too hot and stopped itself */
4156         if (inta & CSR_INT_BIT_CT_KILL) {
4157                 IL_ERR("Microcode CT kill error detected.\n");
4158                 il->isr_stats.ctkill++;
4159                 handled |= CSR_INT_BIT_CT_KILL;
4160         }
4161
4162         /* Error detected by uCode */
4163         if (inta & CSR_INT_BIT_SW_ERR) {
4164                 IL_ERR("Microcode SW error detected. " " Restarting 0x%X.\n",
4165                        inta);
4166                 il->isr_stats.sw++;
4167                 il_irq_handle_error(il);
4168                 handled |= CSR_INT_BIT_SW_ERR;
4169         }
4170
4171         /*
4172          * uCode wakes up after power-down sleep.
4173          * Tell device about any new tx or host commands enqueued,
4174          * and about any Rx buffers made available while asleep.
4175          */
4176         if (inta & CSR_INT_BIT_WAKEUP) {
4177                 D_ISR("Wakeup interrupt\n");
4178                 il_rx_queue_update_write_ptr(il, &il->rxq);
4179                 for (i = 0; i < il->hw_params.max_txq_num; i++)
4180                         il_txq_update_write_ptr(il, &il->txq[i]);
4181                 il->isr_stats.wakeup++;
4182                 handled |= CSR_INT_BIT_WAKEUP;
4183         }
4184
4185         /* All uCode command responses, including Tx command responses,
4186          * Rx "responses" (frame-received notification), and other
4187          * notifications from uCode come through here*/
4188         if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
4189                 il4965_rx_handle(il);
4190                 il->isr_stats.rx++;
4191                 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4192         }
4193
4194         /* This "Tx" DMA channel is used only for loading uCode */
4195         if (inta & CSR_INT_BIT_FH_TX) {
4196                 D_ISR("uCode load interrupt\n");
4197                 il->isr_stats.tx++;
4198                 handled |= CSR_INT_BIT_FH_TX;
4199                 /* Wake up uCode load routine, now that load is complete */
4200                 il->ucode_write_complete = 1;
4201                 wake_up(&il->wait_command_queue);
4202         }
4203
4204         if (inta & ~handled) {
4205                 IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
4206                 il->isr_stats.unhandled++;
4207         }
4208
4209         if (inta & ~(il->inta_mask)) {
4210                 IL_WARN("Disabled INTA bits 0x%08x were pending\n",
4211                         inta & ~il->inta_mask);
4212                 IL_WARN("   with FH49_INT = 0x%08x\n", inta_fh);
4213         }
4214
4215         /* Re-enable all interrupts */
4216         /* only Re-enable if disabled by irq */
4217         if (test_bit(S_INT_ENABLED, &il->status))
4218                 il_enable_interrupts(il);
4219         /* Re-enable RF_KILL if it occurred */
4220         else if (handled & CSR_INT_BIT_RF_KILL)
4221                 il_enable_rfkill_int(il);
4222
4223 #ifdef CONFIG_IWLEGACY_DEBUG
4224         if (il_get_debug_level(il) & (IL_DL_ISR)) {
4225                 inta = _il_rd(il, CSR_INT);
4226                 inta_mask = _il_rd(il, CSR_INT_MASK);
4227                 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
4228                 D_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4229                       "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4230         }
4231 #endif
4232 }
4233
4234 /*****************************************************************************
4235  *
4236  * sysfs attributes
4237  *
4238  *****************************************************************************/
4239
4240 #ifdef CONFIG_IWLEGACY_DEBUG
4241
4242 /*
4243  * The following adds a new attribute to the sysfs representation
4244  * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
4245  * used for controlling the debug level.
4246  *
4247  * See the level definitions in iwl for details.
4248  *
4249  * The debug_level being managed using sysfs below is a per device debug
4250  * level that is used instead of the global debug level if it (the per
4251  * device debug level) is set.
4252  */
4253 static ssize_t
4254 il4965_show_debug_level(struct device *d, struct device_attribute *attr,
4255                         char *buf)
4256 {
4257         struct il_priv *il = dev_get_drvdata(d);
4258         return sprintf(buf, "0x%08X\n", il_get_debug_level(il));
4259 }
4260
4261 static ssize_t
4262 il4965_store_debug_level(struct device *d, struct device_attribute *attr,
4263                          const char *buf, size_t count)
4264 {
4265         struct il_priv *il = dev_get_drvdata(d);
4266         unsigned long val;
4267         int ret;
4268
4269         ret = strict_strtoul(buf, 0, &val);
4270         if (ret)
4271                 IL_ERR("%s is not in hex or decimal form.\n", buf);
4272         else {
4273                 il->debug_level = val;
4274                 if (il_alloc_traffic_mem(il))
4275                         IL_ERR("Not enough memory to generate traffic log\n");
4276         }
4277         return strnlen(buf, count);
4278 }
4279
4280 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, il4965_show_debug_level,
4281                    il4965_store_debug_level);
4282
4283 #endif /* CONFIG_IWLEGACY_DEBUG */
4284
4285 static ssize_t
4286 il4965_show_temperature(struct device *d, struct device_attribute *attr,
4287                         char *buf)
4288 {
4289         struct il_priv *il = dev_get_drvdata(d);
4290
4291         if (!il_is_alive(il))
4292                 return -EAGAIN;
4293
4294         return sprintf(buf, "%d\n", il->temperature);
4295 }
4296
4297 static DEVICE_ATTR(temperature, S_IRUGO, il4965_show_temperature, NULL);
4298
4299 static ssize_t
4300 il4965_show_tx_power(struct device *d, struct device_attribute *attr, char *buf)
4301 {
4302         struct il_priv *il = dev_get_drvdata(d);
4303
4304         if (!il_is_ready_rf(il))
4305                 return sprintf(buf, "off\n");
4306         else
4307                 return sprintf(buf, "%d\n", il->tx_power_user_lmt);
4308 }
4309
4310 static ssize_t
4311 il4965_store_tx_power(struct device *d, struct device_attribute *attr,
4312                       const char *buf, size_t count)
4313 {
4314         struct il_priv *il = dev_get_drvdata(d);
4315         unsigned long val;
4316         int ret;
4317
4318         ret = strict_strtoul(buf, 10, &val);
4319         if (ret)
4320                 IL_INFO("%s is not in decimal form.\n", buf);
4321         else {
4322                 ret = il_set_tx_power(il, val, false);
4323                 if (ret)
4324                         IL_ERR("failed setting tx power (0x%d).\n", ret);
4325                 else
4326                         ret = count;
4327         }
4328         return ret;
4329 }
4330
4331 static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, il4965_show_tx_power,
4332                    il4965_store_tx_power);
4333
4334 static struct attribute *il_sysfs_entries[] = {
4335         &dev_attr_temperature.attr,
4336         &dev_attr_tx_power.attr,
4337 #ifdef CONFIG_IWLEGACY_DEBUG
4338         &dev_attr_debug_level.attr,
4339 #endif
4340         NULL
4341 };
4342
4343 static struct attribute_group il_attribute_group = {
4344         .name = NULL,           /* put in device directory */
4345         .attrs = il_sysfs_entries,
4346 };
4347
4348 /******************************************************************************
4349  *
4350  * uCode download functions
4351  *
4352  ******************************************************************************/
4353
4354 static void
4355 il4965_dealloc_ucode_pci(struct il_priv *il)
4356 {
4357         il_free_fw_desc(il->pci_dev, &il->ucode_code);
4358         il_free_fw_desc(il->pci_dev, &il->ucode_data);
4359         il_free_fw_desc(il->pci_dev, &il->ucode_data_backup);
4360         il_free_fw_desc(il->pci_dev, &il->ucode_init);
4361         il_free_fw_desc(il->pci_dev, &il->ucode_init_data);
4362         il_free_fw_desc(il->pci_dev, &il->ucode_boot);
4363 }
4364
4365 static void
4366 il4965_nic_start(struct il_priv *il)
4367 {
4368         /* Remove all resets to allow NIC to operate */
4369         _il_wr(il, CSR_RESET, 0);
4370 }
4371
4372 static void il4965_ucode_callback(const struct firmware *ucode_raw,
4373                                   void *context);
4374 static int il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length);
4375
4376 static int __must_check
4377 il4965_request_firmware(struct il_priv *il, bool first)
4378 {
4379         const char *name_pre = il->cfg->fw_name_pre;
4380         char tag[8];
4381
4382         if (first) {
4383                 il->fw_idx = il->cfg->ucode_api_max;
4384                 sprintf(tag, "%d", il->fw_idx);
4385         } else {
4386                 il->fw_idx--;
4387                 sprintf(tag, "%d", il->fw_idx);
4388         }
4389
4390         if (il->fw_idx < il->cfg->ucode_api_min) {
4391                 IL_ERR("no suitable firmware found!\n");
4392                 return -ENOENT;
4393         }
4394
4395         sprintf(il->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
4396
4397         D_INFO("attempting to load firmware '%s'\n", il->firmware_name);
4398
4399         return request_firmware_nowait(THIS_MODULE, 1, il->firmware_name,
4400                                        &il->pci_dev->dev, GFP_KERNEL, il,
4401                                        il4965_ucode_callback);
4402 }
4403
4404 struct il4965_firmware_pieces {
4405         const void *inst, *data, *init, *init_data, *boot;
4406         size_t inst_size, data_size, init_size, init_data_size, boot_size;
4407 };
4408
4409 static int
4410 il4965_load_firmware(struct il_priv *il, const struct firmware *ucode_raw,
4411                      struct il4965_firmware_pieces *pieces)
4412 {
4413         struct il_ucode_header *ucode = (void *)ucode_raw->data;
4414         u32 api_ver, hdr_size;
4415         const u8 *src;
4416
4417         il->ucode_ver = le32_to_cpu(ucode->ver);
4418         api_ver = IL_UCODE_API(il->ucode_ver);
4419
4420         switch (api_ver) {
4421         default:
4422         case 0:
4423         case 1:
4424         case 2:
4425                 hdr_size = 24;
4426                 if (ucode_raw->size < hdr_size) {
4427                         IL_ERR("File size too small!\n");
4428                         return -EINVAL;
4429                 }
4430                 pieces->inst_size = le32_to_cpu(ucode->v1.inst_size);
4431                 pieces->data_size = le32_to_cpu(ucode->v1.data_size);
4432                 pieces->init_size = le32_to_cpu(ucode->v1.init_size);
4433                 pieces->init_data_size = le32_to_cpu(ucode->v1.init_data_size);
4434                 pieces->boot_size = le32_to_cpu(ucode->v1.boot_size);
4435                 src = ucode->v1.data;
4436                 break;
4437         }
4438
4439         /* Verify size of file vs. image size info in file's header */
4440         if (ucode_raw->size !=
4441             hdr_size + pieces->inst_size + pieces->data_size +
4442             pieces->init_size + pieces->init_data_size + pieces->boot_size) {
4443
4444                 IL_ERR("uCode file size %d does not match expected size\n",
4445                        (int)ucode_raw->size);
4446                 return -EINVAL;
4447         }
4448
4449         pieces->inst = src;
4450         src += pieces->inst_size;
4451         pieces->data = src;
4452         src += pieces->data_size;
4453         pieces->init = src;
4454         src += pieces->init_size;
4455         pieces->init_data = src;
4456         src += pieces->init_data_size;
4457         pieces->boot = src;
4458         src += pieces->boot_size;
4459
4460         return 0;
4461 }
4462
4463 /**
4464  * il4965_ucode_callback - callback when firmware was loaded
4465  *
4466  * If loaded successfully, copies the firmware into buffers
4467  * for the card to fetch (via DMA).
4468  */
4469 static void
4470 il4965_ucode_callback(const struct firmware *ucode_raw, void *context)
4471 {
4472         struct il_priv *il = context;
4473         struct il_ucode_header *ucode;
4474         int err;
4475         struct il4965_firmware_pieces pieces;
4476         const unsigned int api_max = il->cfg->ucode_api_max;
4477         const unsigned int api_min = il->cfg->ucode_api_min;
4478         u32 api_ver;
4479
4480         u32 max_probe_length = 200;
4481         u32 standard_phy_calibration_size =
4482             IL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
4483
4484         memset(&pieces, 0, sizeof(pieces));
4485
4486         if (!ucode_raw) {
4487                 if (il->fw_idx <= il->cfg->ucode_api_max)
4488                         IL_ERR("request for firmware file '%s' failed.\n",
4489                                il->firmware_name);
4490                 goto try_again;
4491         }
4492
4493         D_INFO("Loaded firmware file '%s' (%zd bytes).\n", il->firmware_name,
4494                ucode_raw->size);
4495
4496         /* Make sure that we got at least the API version number */
4497         if (ucode_raw->size < 4) {
4498                 IL_ERR("File size way too small!\n");
4499                 goto try_again;
4500         }
4501
4502         /* Data from ucode file:  header followed by uCode images */
4503         ucode = (struct il_ucode_header *)ucode_raw->data;
4504
4505         err = il4965_load_firmware(il, ucode_raw, &pieces);
4506
4507         if (err)
4508                 goto try_again;
4509
4510         api_ver = IL_UCODE_API(il->ucode_ver);
4511
4512         /*
4513          * api_ver should match the api version forming part of the
4514          * firmware filename ... but we don't check for that and only rely
4515          * on the API version read from firmware header from here on forward
4516          */
4517         if (api_ver < api_min || api_ver > api_max) {
4518                 IL_ERR("Driver unable to support your firmware API. "
4519                        "Driver supports v%u, firmware is v%u.\n", api_max,
4520                        api_ver);
4521                 goto try_again;
4522         }
4523
4524         if (api_ver != api_max)
4525                 IL_ERR("Firmware has old API version. Expected v%u, "
4526                        "got v%u. New firmware can be obtained "
4527                        "from http://www.intellinuxwireless.org.\n", api_max,
4528                        api_ver);
4529
4530         IL_INFO("loaded firmware version %u.%u.%u.%u\n",
4531                 IL_UCODE_MAJOR(il->ucode_ver), IL_UCODE_MINOR(il->ucode_ver),
4532                 IL_UCODE_API(il->ucode_ver), IL_UCODE_SERIAL(il->ucode_ver));
4533
4534         snprintf(il->hw->wiphy->fw_version, sizeof(il->hw->wiphy->fw_version),
4535                  "%u.%u.%u.%u", IL_UCODE_MAJOR(il->ucode_ver),
4536                  IL_UCODE_MINOR(il->ucode_ver), IL_UCODE_API(il->ucode_ver),
4537                  IL_UCODE_SERIAL(il->ucode_ver));
4538
4539         /*
4540          * For any of the failures below (before allocating pci memory)
4541          * we will try to load a version with a smaller API -- maybe the
4542          * user just got a corrupted version of the latest API.
4543          */
4544
4545         D_INFO("f/w package hdr ucode version raw = 0x%x\n", il->ucode_ver);
4546         D_INFO("f/w package hdr runtime inst size = %Zd\n", pieces.inst_size);
4547         D_INFO("f/w package hdr runtime data size = %Zd\n", pieces.data_size);
4548         D_INFO("f/w package hdr init inst size = %Zd\n", pieces.init_size);
4549         D_INFO("f/w package hdr init data size = %Zd\n", pieces.init_data_size);
4550         D_INFO("f/w package hdr boot inst size = %Zd\n", pieces.boot_size);
4551
4552         /* Verify that uCode images will fit in card's SRAM */
4553         if (pieces.inst_size > il->hw_params.max_inst_size) {
4554                 IL_ERR("uCode instr len %Zd too large to fit in\n",
4555                        pieces.inst_size);
4556                 goto try_again;
4557         }
4558
4559         if (pieces.data_size > il->hw_params.max_data_size) {
4560                 IL_ERR("uCode data len %Zd too large to fit in\n",
4561                        pieces.data_size);
4562                 goto try_again;
4563         }
4564
4565         if (pieces.init_size > il->hw_params.max_inst_size) {
4566                 IL_ERR("uCode init instr len %Zd too large to fit in\n",
4567                        pieces.init_size);
4568                 goto try_again;
4569         }
4570
4571         if (pieces.init_data_size > il->hw_params.max_data_size) {
4572                 IL_ERR("uCode init data len %Zd too large to fit in\n",
4573                        pieces.init_data_size);
4574                 goto try_again;
4575         }
4576
4577         if (pieces.boot_size > il->hw_params.max_bsm_size) {
4578                 IL_ERR("uCode boot instr len %Zd too large to fit in\n",
4579                        pieces.boot_size);
4580                 goto try_again;
4581         }
4582
4583         /* Allocate ucode buffers for card's bus-master loading ... */
4584
4585         /* Runtime instructions and 2 copies of data:
4586          * 1) unmodified from disk
4587          * 2) backup cache for save/restore during power-downs */
4588         il->ucode_code.len = pieces.inst_size;
4589         il_alloc_fw_desc(il->pci_dev, &il->ucode_code);
4590
4591         il->ucode_data.len = pieces.data_size;
4592         il_alloc_fw_desc(il->pci_dev, &il->ucode_data);
4593
4594         il->ucode_data_backup.len = pieces.data_size;
4595         il_alloc_fw_desc(il->pci_dev, &il->ucode_data_backup);
4596
4597         if (!il->ucode_code.v_addr || !il->ucode_data.v_addr ||
4598             !il->ucode_data_backup.v_addr)
4599                 goto err_pci_alloc;
4600
4601         /* Initialization instructions and data */
4602         if (pieces.init_size && pieces.init_data_size) {
4603                 il->ucode_init.len = pieces.init_size;
4604                 il_alloc_fw_desc(il->pci_dev, &il->ucode_init);
4605
4606                 il->ucode_init_data.len = pieces.init_data_size;
4607                 il_alloc_fw_desc(il->pci_dev, &il->ucode_init_data);
4608
4609                 if (!il->ucode_init.v_addr || !il->ucode_init_data.v_addr)
4610                         goto err_pci_alloc;
4611         }
4612
4613         /* Bootstrap (instructions only, no data) */
4614         if (pieces.boot_size) {
4615                 il->ucode_boot.len = pieces.boot_size;
4616                 il_alloc_fw_desc(il->pci_dev, &il->ucode_boot);
4617
4618                 if (!il->ucode_boot.v_addr)
4619                         goto err_pci_alloc;
4620         }
4621
4622         /* Now that we can no longer fail, copy information */
4623
4624         il->sta_key_max_num = STA_KEY_MAX_NUM;
4625
4626         /* Copy images into buffers for card's bus-master reads ... */
4627
4628         /* Runtime instructions (first block of data in file) */
4629         D_INFO("Copying (but not loading) uCode instr len %Zd\n",
4630                pieces.inst_size);
4631         memcpy(il->ucode_code.v_addr, pieces.inst, pieces.inst_size);
4632
4633         D_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
4634                il->ucode_code.v_addr, (u32) il->ucode_code.p_addr);
4635
4636         /*
4637          * Runtime data
4638          * NOTE:  Copy into backup buffer will be done in il_up()
4639          */
4640         D_INFO("Copying (but not loading) uCode data len %Zd\n",
4641                pieces.data_size);
4642         memcpy(il->ucode_data.v_addr, pieces.data, pieces.data_size);
4643         memcpy(il->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
4644
4645         /* Initialization instructions */
4646         if (pieces.init_size) {
4647                 D_INFO("Copying (but not loading) init instr len %Zd\n",
4648                        pieces.init_size);
4649                 memcpy(il->ucode_init.v_addr, pieces.init, pieces.init_size);
4650         }
4651
4652         /* Initialization data */
4653         if (pieces.init_data_size) {
4654                 D_INFO("Copying (but not loading) init data len %Zd\n",
4655                        pieces.init_data_size);
4656                 memcpy(il->ucode_init_data.v_addr, pieces.init_data,
4657                        pieces.init_data_size);
4658         }
4659
4660         /* Bootstrap instructions */
4661         D_INFO("Copying (but not loading) boot instr len %Zd\n",
4662                pieces.boot_size);
4663         memcpy(il->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
4664
4665         /*
4666          * figure out the offset of chain noise reset and gain commands
4667          * base on the size of standard phy calibration commands table size
4668          */
4669         il->_4965.phy_calib_chain_noise_reset_cmd =
4670             standard_phy_calibration_size;
4671         il->_4965.phy_calib_chain_noise_gain_cmd =
4672             standard_phy_calibration_size + 1;
4673
4674         /**************************************************
4675          * This is still part of probe() in a sense...
4676          *
4677          * 9. Setup and register with mac80211 and debugfs
4678          **************************************************/
4679         err = il4965_mac_setup_register(il, max_probe_length);
4680         if (err)
4681                 goto out_unbind;
4682
4683         err = il_dbgfs_register(il, DRV_NAME);
4684         if (err)
4685                 IL_ERR("failed to create debugfs files. Ignoring error: %d\n",
4686                        err);
4687
4688         err = sysfs_create_group(&il->pci_dev->dev.kobj, &il_attribute_group);
4689         if (err) {
4690                 IL_ERR("failed to create sysfs device attributes\n");
4691                 goto out_unbind;
4692         }
4693
4694         /* We have our copies now, allow OS release its copies */
4695         release_firmware(ucode_raw);
4696         complete(&il->_4965.firmware_loading_complete);
4697         return;
4698
4699 try_again:
4700         /* try next, if any */
4701         if (il4965_request_firmware(il, false))
4702                 goto out_unbind;
4703         release_firmware(ucode_raw);
4704         return;
4705
4706 err_pci_alloc:
4707         IL_ERR("failed to allocate pci memory\n");
4708         il4965_dealloc_ucode_pci(il);
4709 out_unbind:
4710         complete(&il->_4965.firmware_loading_complete);
4711         device_release_driver(&il->pci_dev->dev);
4712         release_firmware(ucode_raw);
4713 }
4714
4715 static const char *const desc_lookup_text[] = {
4716         "OK",
4717         "FAIL",
4718         "BAD_PARAM",
4719         "BAD_CHECKSUM",
4720         "NMI_INTERRUPT_WDG",
4721         "SYSASSERT",
4722         "FATAL_ERROR",
4723         "BAD_COMMAND",
4724         "HW_ERROR_TUNE_LOCK",
4725         "HW_ERROR_TEMPERATURE",
4726         "ILLEGAL_CHAN_FREQ",
4727         "VCC_NOT_STBL",
4728         "FH49_ERROR",
4729         "NMI_INTERRUPT_HOST",
4730         "NMI_INTERRUPT_ACTION_PT",
4731         "NMI_INTERRUPT_UNKNOWN",
4732         "UCODE_VERSION_MISMATCH",
4733         "HW_ERROR_ABS_LOCK",
4734         "HW_ERROR_CAL_LOCK_FAIL",
4735         "NMI_INTERRUPT_INST_ACTION_PT",
4736         "NMI_INTERRUPT_DATA_ACTION_PT",
4737         "NMI_TRM_HW_ER",
4738         "NMI_INTERRUPT_TRM",
4739         "NMI_INTERRUPT_BREAK_POINT",
4740         "DEBUG_0",
4741         "DEBUG_1",
4742         "DEBUG_2",
4743         "DEBUG_3",
4744 };
4745
4746 static struct {
4747         char *name;
4748         u8 num;
4749 } advanced_lookup[] = {
4750         {
4751         "NMI_INTERRUPT_WDG", 0x34}, {
4752         "SYSASSERT", 0x35}, {
4753         "UCODE_VERSION_MISMATCH", 0x37}, {
4754         "BAD_COMMAND", 0x38}, {
4755         "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C}, {
4756         "FATAL_ERROR", 0x3D}, {
4757         "NMI_TRM_HW_ERR", 0x46}, {
4758         "NMI_INTERRUPT_TRM", 0x4C}, {
4759         "NMI_INTERRUPT_BREAK_POINT", 0x54}, {
4760         "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C}, {
4761         "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64}, {
4762         "NMI_INTERRUPT_HOST", 0x66}, {
4763         "NMI_INTERRUPT_ACTION_PT", 0x7C}, {
4764         "NMI_INTERRUPT_UNKNOWN", 0x84}, {
4765         "NMI_INTERRUPT_INST_ACTION_PT", 0x86}, {
4766 "ADVANCED_SYSASSERT", 0},};
4767
4768 static const char *
4769 il4965_desc_lookup(u32 num)
4770 {
4771         int i;
4772         int max = ARRAY_SIZE(desc_lookup_text);
4773
4774         if (num < max)
4775                 return desc_lookup_text[num];
4776
4777         max = ARRAY_SIZE(advanced_lookup) - 1;
4778         for (i = 0; i < max; i++) {
4779                 if (advanced_lookup[i].num == num)
4780                         break;
4781         }
4782         return advanced_lookup[i].name;
4783 }
4784
4785 #define ERROR_START_OFFSET  (1 * sizeof(u32))
4786 #define ERROR_ELEM_SIZE     (7 * sizeof(u32))
4787
4788 void
4789 il4965_dump_nic_error_log(struct il_priv *il)
4790 {
4791         u32 data2, line;
4792         u32 desc, time, count, base, data1;
4793         u32 blink1, blink2, ilink1, ilink2;
4794         u32 pc, hcmd;
4795
4796         if (il->ucode_type == UCODE_INIT)
4797                 base = le32_to_cpu(il->card_alive_init.error_event_table_ptr);
4798         else
4799                 base = le32_to_cpu(il->card_alive.error_event_table_ptr);
4800
4801         if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
4802                 IL_ERR("Not valid error log pointer 0x%08X for %s uCode\n",
4803                        base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT");
4804                 return;
4805         }
4806
4807         count = il_read_targ_mem(il, base);
4808
4809         if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
4810                 IL_ERR("Start IWL Error Log Dump:\n");
4811                 IL_ERR("Status: 0x%08lX, count: %d\n", il->status, count);
4812         }
4813
4814         desc = il_read_targ_mem(il, base + 1 * sizeof(u32));
4815         il->isr_stats.err_code = desc;
4816         pc = il_read_targ_mem(il, base + 2 * sizeof(u32));
4817         blink1 = il_read_targ_mem(il, base + 3 * sizeof(u32));
4818         blink2 = il_read_targ_mem(il, base + 4 * sizeof(u32));
4819         ilink1 = il_read_targ_mem(il, base + 5 * sizeof(u32));
4820         ilink2 = il_read_targ_mem(il, base + 6 * sizeof(u32));
4821         data1 = il_read_targ_mem(il, base + 7 * sizeof(u32));
4822         data2 = il_read_targ_mem(il, base + 8 * sizeof(u32));
4823         line = il_read_targ_mem(il, base + 9 * sizeof(u32));
4824         time = il_read_targ_mem(il, base + 11 * sizeof(u32));
4825         hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32));
4826
4827         IL_ERR("Desc                                  Time       "
4828                "data1      data2      line\n");
4829         IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
4830                il4965_desc_lookup(desc), desc, time, data1, data2, line);
4831         IL_ERR("pc      blink1  blink2  ilink1  ilink2  hcmd\n");
4832         IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", pc, blink1,
4833                blink2, ilink1, ilink2, hcmd);
4834 }
4835
4836 static void
4837 il4965_rf_kill_ct_config(struct il_priv *il)
4838 {
4839         struct il_ct_kill_config cmd;
4840         unsigned long flags;
4841         int ret = 0;
4842
4843         spin_lock_irqsave(&il->lock, flags);
4844         _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
4845                CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
4846         spin_unlock_irqrestore(&il->lock, flags);
4847
4848         cmd.critical_temperature_R =
4849             cpu_to_le32(il->hw_params.ct_kill_threshold);
4850
4851         ret = il_send_cmd_pdu(il, C_CT_KILL_CONFIG, sizeof(cmd), &cmd);
4852         if (ret)
4853                 IL_ERR("C_CT_KILL_CONFIG failed\n");
4854         else
4855                 D_INFO("C_CT_KILL_CONFIG " "succeeded, "
4856                        "critical temperature is %d\n",
4857                        il->hw_params.ct_kill_threshold);
4858 }
4859
4860 static const s8 default_queue_to_tx_fifo[] = {
4861         IL_TX_FIFO_VO,
4862         IL_TX_FIFO_VI,
4863         IL_TX_FIFO_BE,
4864         IL_TX_FIFO_BK,
4865         IL49_CMD_FIFO_NUM,
4866         IL_TX_FIFO_UNUSED,
4867         IL_TX_FIFO_UNUSED,
4868 };
4869
4870 #define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
4871
4872 static int
4873 il4965_alive_notify(struct il_priv *il)
4874 {
4875         u32 a;
4876         unsigned long flags;
4877         int i, chan;
4878         u32 reg_val;
4879
4880         spin_lock_irqsave(&il->lock, flags);
4881
4882         /* Clear 4965's internal Tx Scheduler data base */
4883         il->scd_base_addr = il_rd_prph(il, IL49_SCD_SRAM_BASE_ADDR);
4884         a = il->scd_base_addr + IL49_SCD_CONTEXT_DATA_OFFSET;
4885         for (; a < il->scd_base_addr + IL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
4886                 il_write_targ_mem(il, a, 0);
4887         for (; a < il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
4888                 il_write_targ_mem(il, a, 0);
4889         for (;
4890              a <
4891              il->scd_base_addr +
4892              IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(il->hw_params.max_txq_num);
4893              a += 4)
4894                 il_write_targ_mem(il, a, 0);
4895
4896         /* Tel 4965 where to find Tx byte count tables */
4897         il_wr_prph(il, IL49_SCD_DRAM_BASE_ADDR, il->scd_bc_tbls.dma >> 10);
4898
4899         /* Enable DMA channel */
4900         for (chan = 0; chan < FH49_TCSR_CHNL_NUM; chan++)
4901                 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(chan),
4902                       FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
4903                       FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
4904
4905         /* Update FH chicken bits */
4906         reg_val = il_rd(il, FH49_TX_CHICKEN_BITS_REG);
4907         il_wr(il, FH49_TX_CHICKEN_BITS_REG,
4908               reg_val | FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
4909
4910         /* Disable chain mode for all queues */
4911         il_wr_prph(il, IL49_SCD_QUEUECHAIN_SEL, 0);
4912
4913         /* Initialize each Tx queue (including the command queue) */
4914         for (i = 0; i < il->hw_params.max_txq_num; i++) {
4915
4916                 /* TFD circular buffer read/write idxes */
4917                 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(i), 0);
4918                 il_wr(il, HBUS_TARG_WRPTR, 0 | (i << 8));
4919
4920                 /* Max Tx Window size for Scheduler-ACK mode */
4921                 il_write_targ_mem(il,
4922                                   il->scd_base_addr +
4923                                   IL49_SCD_CONTEXT_QUEUE_OFFSET(i),
4924                                   (SCD_WIN_SIZE <<
4925                                    IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
4926                                   IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
4927
4928                 /* Frame limit */
4929                 il_write_targ_mem(il,
4930                                   il->scd_base_addr +
4931                                   IL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
4932                                   sizeof(u32),
4933                                   (SCD_FRAME_LIMIT <<
4934                                    IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
4935                                   IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
4936
4937         }
4938         il_wr_prph(il, IL49_SCD_INTERRUPT_MASK,
4939                    (1 << il->hw_params.max_txq_num) - 1);
4940
4941         /* Activate all Tx DMA/FIFO channels */
4942         il4965_txq_set_sched(il, IL_MASK(0, 6));
4943
4944         il4965_set_wr_ptrs(il, IL_DEFAULT_CMD_QUEUE_NUM, 0);
4945
4946         /* make sure all queue are not stopped */
4947         memset(&il->queue_stopped[0], 0, sizeof(il->queue_stopped));
4948         for (i = 0; i < 4; i++)
4949                 atomic_set(&il->queue_stop_count[i], 0);
4950
4951         /* reset to 0 to enable all the queue first */
4952         il->txq_ctx_active_msk = 0;
4953         /* Map each Tx/cmd queue to its corresponding fifo */
4954         BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7);
4955
4956         for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
4957                 int ac = default_queue_to_tx_fifo[i];
4958
4959                 il_txq_ctx_activate(il, i);
4960
4961                 if (ac == IL_TX_FIFO_UNUSED)
4962                         continue;
4963
4964                 il4965_tx_queue_set_status(il, &il->txq[i], ac, 0);
4965         }
4966
4967         spin_unlock_irqrestore(&il->lock, flags);
4968
4969         return 0;
4970 }
4971
4972 /**
4973  * il4965_alive_start - called after N_ALIVE notification received
4974  *                   from protocol/runtime uCode (initialization uCode's
4975  *                   Alive gets handled by il_init_alive_start()).
4976  */
4977 static void
4978 il4965_alive_start(struct il_priv *il)
4979 {
4980         int ret = 0;
4981         struct il_rxon_context *ctx = &il->ctx;
4982
4983         D_INFO("Runtime Alive received.\n");
4984
4985         if (il->card_alive.is_valid != UCODE_VALID_OK) {
4986                 /* We had an error bringing up the hardware, so take it
4987                  * all the way back down so we can try again */
4988                 D_INFO("Alive failed.\n");
4989                 goto restart;
4990         }
4991
4992         /* Initialize uCode has loaded Runtime uCode ... verify inst image.
4993          * This is a paranoid check, because we would not have gotten the
4994          * "runtime" alive if code weren't properly loaded.  */
4995         if (il4965_verify_ucode(il)) {
4996                 /* Runtime instruction load was bad;
4997                  * take it all the way back down so we can try again */
4998                 D_INFO("Bad runtime uCode load.\n");
4999                 goto restart;
5000         }
5001
5002         ret = il4965_alive_notify(il);
5003         if (ret) {
5004                 IL_WARN("Could not complete ALIVE transition [ntf]: %d\n", ret);
5005                 goto restart;
5006         }
5007
5008         /* After the ALIVE response, we can send host commands to the uCode */
5009         set_bit(S_ALIVE, &il->status);
5010
5011         /* Enable watchdog to monitor the driver tx queues */
5012         il_setup_watchdog(il);
5013
5014         if (il_is_rfkill(il))
5015                 return;
5016
5017         ieee80211_wake_queues(il->hw);
5018
5019         il->active_rate = RATES_MASK;
5020
5021         if (il_is_associated(il)) {
5022                 struct il_rxon_cmd *active_rxon =
5023                     (struct il_rxon_cmd *)&il->active;
5024                 /* apply any changes in staging */
5025                 il->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
5026                 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5027         } else {
5028                 /* Initialize our rx_config data */
5029                 il_connection_init_rx_config(il, &il->ctx);
5030
5031                 if (il->cfg->ops->hcmd->set_rxon_chain)
5032                         il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
5033         }
5034
5035         /* Configure bluetooth coexistence if enabled */
5036         il_send_bt_config(il);
5037
5038         il4965_reset_run_time_calib(il);
5039
5040         set_bit(S_READY, &il->status);
5041
5042         /* Configure the adapter for unassociated operation */
5043         il_commit_rxon(il, ctx);
5044
5045         /* At this point, the NIC is initialized and operational */
5046         il4965_rf_kill_ct_config(il);
5047
5048         D_INFO("ALIVE processing complete.\n");
5049         wake_up(&il->wait_command_queue);
5050
5051         il_power_update_mode(il, true);
5052         D_INFO("Updated power mode\n");
5053
5054         return;
5055
5056 restart:
5057         queue_work(il->workqueue, &il->restart);
5058 }
5059
5060 static void il4965_cancel_deferred_work(struct il_priv *il);
5061
5062 static void
5063 __il4965_down(struct il_priv *il)
5064 {
5065         unsigned long flags;
5066         int exit_pending;
5067
5068         D_INFO(DRV_NAME " is going down\n");
5069
5070         il_scan_cancel_timeout(il, 200);
5071
5072         exit_pending = test_and_set_bit(S_EXIT_PENDING, &il->status);
5073
5074         /* Stop TX queues watchdog. We need to have S_EXIT_PENDING bit set
5075          * to prevent rearm timer */
5076         del_timer_sync(&il->watchdog);
5077
5078         il_clear_ucode_stations(il, NULL);
5079         il_dealloc_bcast_stations(il);
5080         il_clear_driver_stations(il);
5081
5082         /* Unblock any waiting calls */
5083         wake_up_all(&il->wait_command_queue);
5084
5085         /* Wipe out the EXIT_PENDING status bit if we are not actually
5086          * exiting the module */
5087         if (!exit_pending)
5088                 clear_bit(S_EXIT_PENDING, &il->status);
5089
5090         /* stop and reset the on-board processor */
5091         _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
5092
5093         /* tell the device to stop sending interrupts */
5094         spin_lock_irqsave(&il->lock, flags);
5095         il_disable_interrupts(il);
5096         spin_unlock_irqrestore(&il->lock, flags);
5097         il4965_synchronize_irq(il);
5098
5099         if (il->mac80211_registered)
5100                 ieee80211_stop_queues(il->hw);
5101
5102         /* If we have not previously called il_init() then
5103          * clear all bits but the RF Kill bit and return */
5104         if (!il_is_init(il)) {
5105                 il->status =
5106                     test_bit(S_RF_KILL_HW,
5107                              &il->
5108                              status) << S_RF_KILL_HW |
5109                     test_bit(S_GEO_CONFIGURED,
5110                              &il->
5111                              status) << S_GEO_CONFIGURED |
5112                     test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
5113                 goto exit;
5114         }
5115
5116         /* ...otherwise clear out all the status bits but the RF Kill
5117          * bit and continue taking the NIC down. */
5118         il->status &=
5119             test_bit(S_RF_KILL_HW,
5120                      &il->status) << S_RF_KILL_HW | test_bit(S_GEO_CONFIGURED,
5121                                                              &il->
5122                                                              status) <<
5123             S_GEO_CONFIGURED | test_bit(S_FW_ERROR,
5124                                         &il->
5125                                         status) << S_FW_ERROR |
5126             test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
5127
5128         il4965_txq_ctx_stop(il);
5129         il4965_rxq_stop(il);
5130
5131         /* Power-down device's busmaster DMA clocks */
5132         il_wr_prph(il, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
5133         udelay(5);
5134
5135         /* Make sure (redundant) we've released our request to stay awake */
5136         il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
5137
5138         /* Stop the device, and put it in low power state */
5139         il_apm_stop(il);
5140
5141 exit:
5142         memset(&il->card_alive, 0, sizeof(struct il_alive_resp));
5143
5144         dev_kfree_skb(il->beacon_skb);
5145         il->beacon_skb = NULL;
5146
5147         /* clear out any free frames */
5148         il4965_clear_free_frames(il);
5149 }
5150
5151 static void
5152 il4965_down(struct il_priv *il)
5153 {
5154         mutex_lock(&il->mutex);
5155         __il4965_down(il);
5156         mutex_unlock(&il->mutex);
5157
5158         il4965_cancel_deferred_work(il);
5159 }
5160
5161 #define HW_READY_TIMEOUT (50)
5162
5163 static int
5164 il4965_set_hw_ready(struct il_priv *il)
5165 {
5166         int ret = 0;
5167
5168         il_set_bit(il, CSR_HW_IF_CONFIG_REG,
5169                    CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
5170
5171         /* See if we got it */
5172         ret =
5173             _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5174                          CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
5175                          CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, HW_READY_TIMEOUT);
5176         if (ret != -ETIMEDOUT)
5177                 il->hw_ready = true;
5178         else
5179                 il->hw_ready = false;
5180
5181         D_INFO("hardware %s\n", (il->hw_ready == 1) ? "ready" : "not ready");
5182         return ret;
5183 }
5184
5185 static int
5186 il4965_prepare_card_hw(struct il_priv *il)
5187 {
5188         int ret = 0;
5189
5190         D_INFO("il4965_prepare_card_hw enter\n");
5191
5192         ret = il4965_set_hw_ready(il);
5193         if (il->hw_ready)
5194                 return ret;
5195
5196         /* If HW is not ready, prepare the conditions to check again */
5197         il_set_bit(il, CSR_HW_IF_CONFIG_REG, CSR_HW_IF_CONFIG_REG_PREPARE);
5198
5199         ret =
5200             _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5201                          ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
5202                          CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
5203
5204         /* HW should be ready by now, check again. */
5205         if (ret != -ETIMEDOUT)
5206                 il4965_set_hw_ready(il);
5207
5208         return ret;
5209 }
5210
5211 #define MAX_HW_RESTARTS 5
5212
5213 static int
5214 __il4965_up(struct il_priv *il)
5215 {
5216         int i;
5217         int ret;
5218
5219         if (test_bit(S_EXIT_PENDING, &il->status)) {
5220                 IL_WARN("Exit pending; will not bring the NIC up\n");
5221                 return -EIO;
5222         }
5223
5224         if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) {
5225                 IL_ERR("ucode not available for device bringup\n");
5226                 return -EIO;
5227         }
5228
5229         ret = il4965_alloc_bcast_station(il, &il->ctx);
5230         if (ret) {
5231                 il_dealloc_bcast_stations(il);
5232                 return ret;
5233         }
5234
5235         il4965_prepare_card_hw(il);
5236
5237         if (!il->hw_ready) {
5238                 IL_WARN("Exit HW not ready\n");
5239                 return -EIO;
5240         }
5241
5242         /* If platform's RF_KILL switch is NOT set to KILL */
5243         if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
5244                 clear_bit(S_RF_KILL_HW, &il->status);
5245         else
5246                 set_bit(S_RF_KILL_HW, &il->status);
5247
5248         if (il_is_rfkill(il)) {
5249                 wiphy_rfkill_set_hw_state(il->hw->wiphy, true);
5250
5251                 il_enable_interrupts(il);
5252                 IL_WARN("Radio disabled by HW RF Kill switch\n");
5253                 return 0;
5254         }
5255
5256         _il_wr(il, CSR_INT, 0xFFFFFFFF);
5257
5258         /* must be initialised before il_hw_nic_init */
5259         il->cmd_queue = IL_DEFAULT_CMD_QUEUE_NUM;
5260
5261         ret = il4965_hw_nic_init(il);
5262         if (ret) {
5263                 IL_ERR("Unable to init nic\n");
5264                 return ret;
5265         }
5266
5267         /* make sure rfkill handshake bits are cleared */
5268         _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5269         _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5270
5271         /* clear (again), then enable host interrupts */
5272         _il_wr(il, CSR_INT, 0xFFFFFFFF);
5273         il_enable_interrupts(il);
5274
5275         /* really make sure rfkill handshake bits are cleared */
5276         _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5277         _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5278
5279         /* Copy original ucode data image from disk into backup cache.
5280          * This will be used to initialize the on-board processor's
5281          * data SRAM for a clean start when the runtime program first loads. */
5282         memcpy(il->ucode_data_backup.v_addr, il->ucode_data.v_addr,
5283                il->ucode_data.len);
5284
5285         for (i = 0; i < MAX_HW_RESTARTS; i++) {
5286
5287                 /* load bootstrap state machine,
5288                  * load bootstrap program into processor's memory,
5289                  * prepare to load the "initialize" uCode */
5290                 ret = il->cfg->ops->lib->load_ucode(il);
5291
5292                 if (ret) {
5293                         IL_ERR("Unable to set up bootstrap uCode: %d\n", ret);
5294                         continue;
5295                 }
5296
5297                 /* start card; "initialize" will load runtime ucode */
5298                 il4965_nic_start(il);
5299
5300                 D_INFO(DRV_NAME " is coming up\n");
5301
5302                 return 0;
5303         }
5304
5305         set_bit(S_EXIT_PENDING, &il->status);
5306         __il4965_down(il);
5307         clear_bit(S_EXIT_PENDING, &il->status);
5308
5309         /* tried to restart and config the device for as long as our
5310          * patience could withstand */
5311         IL_ERR("Unable to initialize device after %d attempts.\n", i);
5312         return -EIO;
5313 }
5314
5315 /*****************************************************************************
5316  *
5317  * Workqueue callbacks
5318  *
5319  *****************************************************************************/
5320
5321 static void
5322 il4965_bg_init_alive_start(struct work_struct *data)
5323 {
5324         struct il_priv *il =
5325             container_of(data, struct il_priv, init_alive_start.work);
5326
5327         mutex_lock(&il->mutex);
5328         if (test_bit(S_EXIT_PENDING, &il->status))
5329                 goto out;
5330
5331         il->cfg->ops->lib->init_alive_start(il);
5332 out:
5333         mutex_unlock(&il->mutex);
5334 }
5335
5336 static void
5337 il4965_bg_alive_start(struct work_struct *data)
5338 {
5339         struct il_priv *il =
5340             container_of(data, struct il_priv, alive_start.work);
5341
5342         mutex_lock(&il->mutex);
5343         if (test_bit(S_EXIT_PENDING, &il->status))
5344                 goto out;
5345
5346         il4965_alive_start(il);
5347 out:
5348         mutex_unlock(&il->mutex);
5349 }
5350
5351 static void
5352 il4965_bg_run_time_calib_work(struct work_struct *work)
5353 {
5354         struct il_priv *il = container_of(work, struct il_priv,
5355                                           run_time_calib_work);
5356
5357         mutex_lock(&il->mutex);
5358
5359         if (test_bit(S_EXIT_PENDING, &il->status) ||
5360             test_bit(S_SCANNING, &il->status)) {
5361                 mutex_unlock(&il->mutex);
5362                 return;
5363         }
5364
5365         if (il->start_calib) {
5366                 il4965_chain_noise_calibration(il, (void *)&il->_4965.stats);
5367                 il4965_sensitivity_calibration(il, (void *)&il->_4965.stats);
5368         }
5369
5370         mutex_unlock(&il->mutex);
5371 }
5372
5373 static void
5374 il4965_bg_restart(struct work_struct *data)
5375 {
5376         struct il_priv *il = container_of(data, struct il_priv, restart);
5377
5378         if (test_bit(S_EXIT_PENDING, &il->status))
5379                 return;
5380
5381         if (test_and_clear_bit(S_FW_ERROR, &il->status)) {
5382                 mutex_lock(&il->mutex);
5383                 il->ctx.vif = NULL;
5384                 il->is_open = 0;
5385
5386                 __il4965_down(il);
5387
5388                 mutex_unlock(&il->mutex);
5389                 il4965_cancel_deferred_work(il);
5390                 ieee80211_restart_hw(il->hw);
5391         } else {
5392                 il4965_down(il);
5393
5394                 mutex_lock(&il->mutex);
5395                 if (test_bit(S_EXIT_PENDING, &il->status)) {
5396                         mutex_unlock(&il->mutex);
5397                         return;
5398                 }
5399
5400                 __il4965_up(il);
5401                 mutex_unlock(&il->mutex);
5402         }
5403 }
5404
5405 static void
5406 il4965_bg_rx_replenish(struct work_struct *data)
5407 {
5408         struct il_priv *il = container_of(data, struct il_priv, rx_replenish);
5409
5410         if (test_bit(S_EXIT_PENDING, &il->status))
5411                 return;
5412
5413         mutex_lock(&il->mutex);
5414         il4965_rx_replenish(il);
5415         mutex_unlock(&il->mutex);
5416 }
5417
5418 /*****************************************************************************
5419  *
5420  * mac80211 entry point functions
5421  *
5422  *****************************************************************************/
5423
5424 #define UCODE_READY_TIMEOUT     (4 * HZ)
5425
5426 /*
5427  * Not a mac80211 entry point function, but it fits in with all the
5428  * other mac80211 functions grouped here.
5429  */
5430 static int
5431 il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length)
5432 {
5433         int ret;
5434         struct ieee80211_hw *hw = il->hw;
5435
5436         hw->rate_control_algorithm = "iwl-4965-rs";
5437
5438         /* Tell mac80211 our characteristics */
5439         hw->flags =
5440             IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_AMPDU_AGGREGATION |
5441             IEEE80211_HW_NEED_DTIM_PERIOD | IEEE80211_HW_SPECTRUM_MGMT |
5442             IEEE80211_HW_REPORTS_TX_ACK_STATUS;
5443
5444         if (il->cfg->sku & IL_SKU_N)
5445                 hw->flags |=
5446                     IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
5447                     IEEE80211_HW_SUPPORTS_STATIC_SMPS;
5448
5449         hw->sta_data_size = sizeof(struct il_station_priv);
5450         hw->vif_data_size = sizeof(struct il_vif_priv);
5451
5452         hw->wiphy->interface_modes |= il->ctx.interface_modes;
5453         hw->wiphy->interface_modes |= il->ctx.exclusive_interface_modes;
5454
5455         hw->wiphy->flags |=
5456             WIPHY_FLAG_CUSTOM_REGULATORY | WIPHY_FLAG_DISABLE_BEACON_HINTS;
5457
5458         /*
5459          * For now, disable PS by default because it affects
5460          * RX performance significantly.
5461          */
5462         hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
5463
5464         hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
5465         /* we create the 802.11 header and a zero-length SSID element */
5466         hw->wiphy->max_scan_ie_len = max_probe_length - 24 - 2;
5467
5468         /* Default value; 4 EDCA QOS priorities */
5469         hw->queues = 4;
5470
5471         hw->max_listen_interval = IL_CONN_MAX_LISTEN_INTERVAL;
5472
5473         if (il->bands[IEEE80211_BAND_2GHZ].n_channels)
5474                 il->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
5475                     &il->bands[IEEE80211_BAND_2GHZ];
5476         if (il->bands[IEEE80211_BAND_5GHZ].n_channels)
5477                 il->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
5478                     &il->bands[IEEE80211_BAND_5GHZ];
5479
5480         il_leds_init(il);
5481
5482         ret = ieee80211_register_hw(il->hw);
5483         if (ret) {
5484                 IL_ERR("Failed to register hw (error %d)\n", ret);
5485                 return ret;
5486         }
5487         il->mac80211_registered = 1;
5488
5489         return 0;
5490 }
5491
5492 int
5493 il4965_mac_start(struct ieee80211_hw *hw)
5494 {
5495         struct il_priv *il = hw->priv;
5496         int ret;
5497
5498         D_MAC80211("enter\n");
5499
5500         /* we should be verifying the device is ready to be opened */
5501         mutex_lock(&il->mutex);
5502         ret = __il4965_up(il);
5503         mutex_unlock(&il->mutex);
5504
5505         if (ret)
5506                 return ret;
5507
5508         if (il_is_rfkill(il))
5509                 goto out;
5510
5511         D_INFO("Start UP work done.\n");
5512
5513         /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
5514          * mac80211 will not be run successfully. */
5515         ret = wait_event_timeout(il->wait_command_queue,
5516                                  test_bit(S_READY, &il->status),
5517                                  UCODE_READY_TIMEOUT);
5518         if (!ret) {
5519                 if (!test_bit(S_READY, &il->status)) {
5520                         IL_ERR("START_ALIVE timeout after %dms.\n",
5521                                 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5522                         return -ETIMEDOUT;
5523                 }
5524         }
5525
5526         il4965_led_enable(il);
5527
5528 out:
5529         il->is_open = 1;
5530         D_MAC80211("leave\n");
5531         return 0;
5532 }
5533
5534 void
5535 il4965_mac_stop(struct ieee80211_hw *hw)
5536 {
5537         struct il_priv *il = hw->priv;
5538
5539         D_MAC80211("enter\n");
5540
5541         if (!il->is_open)
5542                 return;
5543
5544         il->is_open = 0;
5545
5546         il4965_down(il);
5547
5548         flush_workqueue(il->workqueue);
5549
5550         /* User space software may expect getting rfkill changes
5551          * even if interface is down */
5552         _il_wr(il, CSR_INT, 0xFFFFFFFF);
5553         il_enable_rfkill_int(il);
5554
5555         D_MAC80211("leave\n");
5556 }
5557
5558 void
5559 il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
5560 {
5561         struct il_priv *il = hw->priv;
5562
5563         D_MACDUMP("enter\n");
5564
5565         D_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
5566              ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
5567
5568         if (il4965_tx_skb(il, skb))
5569                 dev_kfree_skb_any(skb);
5570
5571         D_MACDUMP("leave\n");
5572 }
5573
5574 void
5575 il4965_mac_update_tkip_key(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5576                            struct ieee80211_key_conf *keyconf,
5577                            struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
5578 {
5579         struct il_priv *il = hw->priv;
5580         struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5581
5582         D_MAC80211("enter\n");
5583
5584         il4965_update_tkip_key(il, vif_priv->ctx, keyconf, sta, iv32,
5585                                phase1key);
5586
5587         D_MAC80211("leave\n");
5588 }
5589
5590 int
5591 il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
5592                    struct ieee80211_vif *vif, struct ieee80211_sta *sta,
5593                    struct ieee80211_key_conf *key)
5594 {
5595         struct il_priv *il = hw->priv;
5596         struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5597         struct il_rxon_context *ctx = vif_priv->ctx;
5598         int ret;
5599         u8 sta_id;
5600         bool is_default_wep_key = false;
5601
5602         D_MAC80211("enter\n");
5603
5604         if (il->cfg->mod_params->sw_crypto) {
5605                 D_MAC80211("leave - hwcrypto disabled\n");
5606                 return -EOPNOTSUPP;
5607         }
5608
5609         sta_id = il_sta_id_or_broadcast(il, vif_priv->ctx, sta);
5610         if (sta_id == IL_INVALID_STATION)
5611                 return -EINVAL;
5612
5613         mutex_lock(&il->mutex);
5614         il_scan_cancel_timeout(il, 100);
5615
5616         /*
5617          * If we are getting WEP group key and we didn't receive any key mapping
5618          * so far, we are in legacy wep mode (group key only), otherwise we are
5619          * in 1X mode.
5620          * In legacy wep mode, we use another host command to the uCode.
5621          */
5622         if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
5623              key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
5624                 if (cmd == SET_KEY)
5625                         is_default_wep_key = !ctx->key_mapping_keys;
5626                 else
5627                         is_default_wep_key =
5628                             (key->hw_key_idx == HW_KEY_DEFAULT);
5629         }
5630
5631         switch (cmd) {
5632         case SET_KEY:
5633                 if (is_default_wep_key)
5634                         ret =
5635                             il4965_set_default_wep_key(il, vif_priv->ctx, key);
5636                 else
5637                         ret =
5638                             il4965_set_dynamic_key(il, vif_priv->ctx, key,
5639                                                    sta_id);
5640
5641                 D_MAC80211("enable hwcrypto key\n");
5642                 break;
5643         case DISABLE_KEY:
5644                 if (is_default_wep_key)
5645                         ret = il4965_remove_default_wep_key(il, ctx, key);
5646                 else
5647                         ret = il4965_remove_dynamic_key(il, ctx, key, sta_id);
5648
5649                 D_MAC80211("disable hwcrypto key\n");
5650                 break;
5651         default:
5652                 ret = -EINVAL;
5653         }
5654
5655         mutex_unlock(&il->mutex);
5656         D_MAC80211("leave\n");
5657
5658         return ret;
5659 }
5660
5661 int
5662 il4965_mac_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5663                         enum ieee80211_ampdu_mlme_action action,
5664                         struct ieee80211_sta *sta, u16 tid, u16 * ssn,
5665                         u8 buf_size)
5666 {
5667         struct il_priv *il = hw->priv;
5668         int ret = -EINVAL;
5669
5670         D_HT("A-MPDU action on addr %pM tid %d\n", sta->addr, tid);
5671
5672         if (!(il->cfg->sku & IL_SKU_N))
5673                 return -EACCES;
5674
5675         mutex_lock(&il->mutex);
5676
5677         switch (action) {
5678         case IEEE80211_AMPDU_RX_START:
5679                 D_HT("start Rx\n");
5680                 ret = il4965_sta_rx_agg_start(il, sta, tid, *ssn);
5681                 break;
5682         case IEEE80211_AMPDU_RX_STOP:
5683                 D_HT("stop Rx\n");
5684                 ret = il4965_sta_rx_agg_stop(il, sta, tid);
5685                 if (test_bit(S_EXIT_PENDING, &il->status))
5686                         ret = 0;
5687                 break;
5688         case IEEE80211_AMPDU_TX_START:
5689                 D_HT("start Tx\n");
5690                 ret = il4965_tx_agg_start(il, vif, sta, tid, ssn);
5691                 break;
5692         case IEEE80211_AMPDU_TX_STOP:
5693                 D_HT("stop Tx\n");
5694                 ret = il4965_tx_agg_stop(il, vif, sta, tid);
5695                 if (test_bit(S_EXIT_PENDING, &il->status))
5696                         ret = 0;
5697                 break;
5698         case IEEE80211_AMPDU_TX_OPERATIONAL:
5699                 ret = 0;
5700                 break;
5701         }
5702         mutex_unlock(&il->mutex);
5703
5704         return ret;
5705 }
5706
5707 int
5708 il4965_mac_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5709                    struct ieee80211_sta *sta)
5710 {
5711         struct il_priv *il = hw->priv;
5712         struct il_station_priv *sta_priv = (void *)sta->drv_priv;
5713         struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5714         bool is_ap = vif->type == NL80211_IFTYPE_STATION;
5715         int ret;
5716         u8 sta_id;
5717
5718         D_INFO("received request to add station %pM\n", sta->addr);
5719         mutex_lock(&il->mutex);
5720         D_INFO("proceeding to add station %pM\n", sta->addr);
5721         sta_priv->common.sta_id = IL_INVALID_STATION;
5722
5723         atomic_set(&sta_priv->pending_frames, 0);
5724
5725         ret =
5726             il_add_station_common(il, vif_priv->ctx, sta->addr, is_ap, sta,
5727                                   &sta_id);
5728         if (ret) {
5729                 IL_ERR("Unable to add station %pM (%d)\n", sta->addr, ret);
5730                 /* Should we return success if return code is EEXIST ? */
5731                 mutex_unlock(&il->mutex);
5732                 return ret;
5733         }
5734
5735         sta_priv->common.sta_id = sta_id;
5736
5737         /* Initialize rate scaling */
5738         D_INFO("Initializing rate scaling for station %pM\n", sta->addr);
5739         il4965_rs_rate_init(il, sta, sta_id);
5740         mutex_unlock(&il->mutex);
5741
5742         return 0;
5743 }
5744
5745 void
5746 il4965_mac_channel_switch(struct ieee80211_hw *hw,
5747                           struct ieee80211_channel_switch *ch_switch)
5748 {
5749         struct il_priv *il = hw->priv;
5750         const struct il_channel_info *ch_info;
5751         struct ieee80211_conf *conf = &hw->conf;
5752         struct ieee80211_channel *channel = ch_switch->channel;
5753         struct il_ht_config *ht_conf = &il->current_ht_config;
5754
5755         struct il_rxon_context *ctx = &il->ctx;
5756         u16 ch;
5757
5758         D_MAC80211("enter\n");
5759
5760         mutex_lock(&il->mutex);
5761
5762         if (il_is_rfkill(il))
5763                 goto out;
5764
5765         if (test_bit(S_EXIT_PENDING, &il->status) ||
5766             test_bit(S_SCANNING, &il->status) ||
5767             test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
5768                 goto out;
5769
5770         if (!il_is_associated(il))
5771                 goto out;
5772
5773         if (!il->cfg->ops->lib->set_channel_switch)
5774                 goto out;
5775
5776         ch = channel->hw_value;
5777         if (le16_to_cpu(il->active.channel) == ch)
5778                 goto out;
5779
5780         ch_info = il_get_channel_info(il, channel->band, ch);
5781         if (!il_is_channel_valid(ch_info)) {
5782                 D_MAC80211("invalid channel\n");
5783                 goto out;
5784         }
5785
5786         spin_lock_irq(&il->lock);
5787
5788         il->current_ht_config.smps = conf->smps_mode;
5789
5790         /* Configure HT40 channels */
5791         ctx->ht.enabled = conf_is_ht(conf);
5792         if (ctx->ht.enabled) {
5793                 if (conf_is_ht40_minus(conf)) {
5794                         ctx->ht.extension_chan_offset =
5795                             IEEE80211_HT_PARAM_CHA_SEC_BELOW;
5796                         ctx->ht.is_40mhz = true;
5797                 } else if (conf_is_ht40_plus(conf)) {
5798                         ctx->ht.extension_chan_offset =
5799                             IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
5800                         ctx->ht.is_40mhz = true;
5801                 } else {
5802                         ctx->ht.extension_chan_offset =
5803                             IEEE80211_HT_PARAM_CHA_SEC_NONE;
5804                         ctx->ht.is_40mhz = false;
5805                 }
5806         } else
5807                 ctx->ht.is_40mhz = false;
5808
5809         if ((le16_to_cpu(il->staging.channel) != ch))
5810                 il->staging.flags = 0;
5811
5812         il_set_rxon_channel(il, channel, ctx);
5813         il_set_rxon_ht(il, ht_conf);
5814         il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
5815
5816         spin_unlock_irq(&il->lock);
5817
5818         il_set_rate(il);
5819         /*
5820          * at this point, staging_rxon has the
5821          * configuration for channel switch
5822          */
5823         set_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
5824         il->switch_channel = cpu_to_le16(ch);
5825         if (il->cfg->ops->lib->set_channel_switch(il, ch_switch)) {
5826                 clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
5827                 il->switch_channel = 0;
5828                 ieee80211_chswitch_done(ctx->vif, false);
5829         }
5830
5831 out:
5832         mutex_unlock(&il->mutex);
5833         D_MAC80211("leave\n");
5834 }
5835
5836 void
5837 il4965_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags,
5838                         unsigned int *total_flags, u64 multicast)
5839 {
5840         struct il_priv *il = hw->priv;
5841         __le32 filter_or = 0, filter_nand = 0;
5842
5843 #define CHK(test, flag) do { \
5844         if (*total_flags & (test))              \
5845                 filter_or |= (flag);            \
5846         else                                    \
5847                 filter_nand |= (flag);          \
5848         } while (0)
5849
5850         D_MAC80211("Enter: changed: 0x%x, total: 0x%x\n", changed_flags,
5851                    *total_flags);
5852
5853         CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
5854         /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
5855         CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
5856         CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
5857
5858 #undef CHK
5859
5860         mutex_lock(&il->mutex);
5861
5862         il->staging.filter_flags &= ~filter_nand;
5863         il->staging.filter_flags |= filter_or;
5864
5865         /*
5866          * Not committing directly because hardware can perform a scan,
5867          * but we'll eventually commit the filter flags change anyway.
5868          */
5869
5870         mutex_unlock(&il->mutex);
5871
5872         /*
5873          * Receiving all multicast frames is always enabled by the
5874          * default flags setup in il_connection_init_rx_config()
5875          * since we currently do not support programming multicast
5876          * filters into the device.
5877          */
5878         *total_flags &=
5879             FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
5880             FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
5881 }
5882
5883 /*****************************************************************************
5884  *
5885  * driver setup and teardown
5886  *
5887  *****************************************************************************/
5888
5889 static void
5890 il4965_bg_txpower_work(struct work_struct *work)
5891 {
5892         struct il_priv *il = container_of(work, struct il_priv,
5893                                           txpower_work);
5894
5895         mutex_lock(&il->mutex);
5896
5897         /* If a scan happened to start before we got here
5898          * then just return; the stats notification will
5899          * kick off another scheduled work to compensate for
5900          * any temperature delta we missed here. */
5901         if (test_bit(S_EXIT_PENDING, &il->status) ||
5902             test_bit(S_SCANNING, &il->status))
5903                 goto out;
5904
5905         /* Regardless of if we are associated, we must reconfigure the
5906          * TX power since frames can be sent on non-radar channels while
5907          * not associated */
5908         il->cfg->ops->lib->send_tx_power(il);
5909
5910         /* Update last_temperature to keep is_calib_needed from running
5911          * when it isn't needed... */
5912         il->last_temperature = il->temperature;
5913 out:
5914         mutex_unlock(&il->mutex);
5915 }
5916
5917 static void
5918 il4965_setup_deferred_work(struct il_priv *il)
5919 {
5920         il->workqueue = create_singlethread_workqueue(DRV_NAME);
5921
5922         init_waitqueue_head(&il->wait_command_queue);
5923
5924         INIT_WORK(&il->restart, il4965_bg_restart);
5925         INIT_WORK(&il->rx_replenish, il4965_bg_rx_replenish);
5926         INIT_WORK(&il->run_time_calib_work, il4965_bg_run_time_calib_work);
5927         INIT_DELAYED_WORK(&il->init_alive_start, il4965_bg_init_alive_start);
5928         INIT_DELAYED_WORK(&il->alive_start, il4965_bg_alive_start);
5929
5930         il_setup_scan_deferred_work(il);
5931
5932         INIT_WORK(&il->txpower_work, il4965_bg_txpower_work);
5933
5934         init_timer(&il->stats_periodic);
5935         il->stats_periodic.data = (unsigned long)il;
5936         il->stats_periodic.function = il4965_bg_stats_periodic;
5937
5938         init_timer(&il->watchdog);
5939         il->watchdog.data = (unsigned long)il;
5940         il->watchdog.function = il_bg_watchdog;
5941
5942         tasklet_init(&il->irq_tasklet,
5943                      (void (*)(unsigned long))il4965_irq_tasklet,
5944                      (unsigned long)il);
5945 }
5946
5947 static void
5948 il4965_cancel_deferred_work(struct il_priv *il)
5949 {
5950         cancel_work_sync(&il->txpower_work);
5951         cancel_delayed_work_sync(&il->init_alive_start);
5952         cancel_delayed_work(&il->alive_start);
5953         cancel_work_sync(&il->run_time_calib_work);
5954
5955         il_cancel_scan_deferred_work(il);
5956
5957         del_timer_sync(&il->stats_periodic);
5958 }
5959
5960 static void
5961 il4965_init_hw_rates(struct il_priv *il, struct ieee80211_rate *rates)
5962 {
5963         int i;
5964
5965         for (i = 0; i < RATE_COUNT_LEGACY; i++) {
5966                 rates[i].bitrate = il_rates[i].ieee * 5;
5967                 rates[i].hw_value = i;  /* Rate scaling will work on idxes */
5968                 rates[i].hw_value_short = i;
5969                 rates[i].flags = 0;
5970                 if ((i >= IL_FIRST_CCK_RATE) && (i <= IL_LAST_CCK_RATE)) {
5971                         /*
5972                          * If CCK != 1M then set short preamble rate flag.
5973                          */
5974                         rates[i].flags |=
5975                             (il_rates[i].plcp ==
5976                              RATE_1M_PLCP) ? 0 : IEEE80211_RATE_SHORT_PREAMBLE;
5977                 }
5978         }
5979 }
5980
5981 /*
5982  * Acquire il->lock before calling this function !
5983  */
5984 void
5985 il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx)
5986 {
5987         il_wr(il, HBUS_TARG_WRPTR, (idx & 0xff) | (txq_id << 8));
5988         il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(txq_id), idx);
5989 }
5990
5991 void
5992 il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq,
5993                            int tx_fifo_id, int scd_retry)
5994 {
5995         int txq_id = txq->q.id;
5996
5997         /* Find out whether to activate Tx queue */
5998         int active = test_bit(txq_id, &il->txq_ctx_active_msk) ? 1 : 0;
5999
6000         /* Set up and activate */
6001         il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
6002                    (active << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
6003                    (tx_fifo_id << IL49_SCD_QUEUE_STTS_REG_POS_TXF) |
6004                    (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_WSL) |
6005                    (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
6006                    IL49_SCD_QUEUE_STTS_REG_MSK);
6007
6008         txq->sched_retry = scd_retry;
6009
6010         D_INFO("%s %s Queue %d on AC %d\n", active ? "Activate" : "Deactivate",
6011                scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
6012 }
6013
6014 static int
6015 il4965_init_drv(struct il_priv *il)
6016 {
6017         int ret;
6018
6019         spin_lock_init(&il->sta_lock);
6020         spin_lock_init(&il->hcmd_lock);
6021
6022         INIT_LIST_HEAD(&il->free_frames);
6023
6024         mutex_init(&il->mutex);
6025
6026         il->ieee_channels = NULL;
6027         il->ieee_rates = NULL;
6028         il->band = IEEE80211_BAND_2GHZ;
6029
6030         il->iw_mode = NL80211_IFTYPE_STATION;
6031         il->current_ht_config.smps = IEEE80211_SMPS_STATIC;
6032         il->missed_beacon_threshold = IL_MISSED_BEACON_THRESHOLD_DEF;
6033
6034         /* initialize force reset */
6035         il->force_reset.reset_duration = IL_DELAY_NEXT_FORCE_FW_RELOAD;
6036
6037         /* Choose which receivers/antennas to use */
6038         if (il->cfg->ops->hcmd->set_rxon_chain)
6039                 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
6040
6041         il_init_scan_params(il);
6042
6043         ret = il_init_channel_map(il);
6044         if (ret) {
6045                 IL_ERR("initializing regulatory failed: %d\n", ret);
6046                 goto err;
6047         }
6048
6049         ret = il_init_geos(il);
6050         if (ret) {
6051                 IL_ERR("initializing geos failed: %d\n", ret);
6052                 goto err_free_channel_map;
6053         }
6054         il4965_init_hw_rates(il, il->ieee_rates);
6055
6056         return 0;
6057
6058 err_free_channel_map:
6059         il_free_channel_map(il);
6060 err:
6061         return ret;
6062 }
6063
6064 static void
6065 il4965_uninit_drv(struct il_priv *il)
6066 {
6067         il4965_calib_free_results(il);
6068         il_free_geos(il);
6069         il_free_channel_map(il);
6070         kfree(il->scan_cmd);
6071 }
6072
6073 static void
6074 il4965_hw_detect(struct il_priv *il)
6075 {
6076         il->hw_rev = _il_rd(il, CSR_HW_REV);
6077         il->hw_wa_rev = _il_rd(il, CSR_HW_REV_WA_REG);
6078         il->rev_id = il->pci_dev->revision;
6079         D_INFO("HW Revision ID = 0x%X\n", il->rev_id);
6080 }
6081
6082 static int
6083 il4965_set_hw_params(struct il_priv *il)
6084 {
6085         il->hw_params.max_rxq_size = RX_QUEUE_SIZE;
6086         il->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
6087         if (il->cfg->mod_params->amsdu_size_8K)
6088                 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_8K);
6089         else
6090                 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_4K);
6091
6092         il->hw_params.max_beacon_itrvl = IL_MAX_UCODE_BEACON_INTERVAL;
6093
6094         if (il->cfg->mod_params->disable_11n)
6095                 il->cfg->sku &= ~IL_SKU_N;
6096
6097         /* Device-specific setup */
6098         return il->cfg->ops->lib->set_hw_params(il);
6099 }
6100
6101 static const u8 il4965_bss_ac_to_fifo[] = {
6102         IL_TX_FIFO_VO,
6103         IL_TX_FIFO_VI,
6104         IL_TX_FIFO_BE,
6105         IL_TX_FIFO_BK,
6106 };
6107
6108 static const u8 il4965_bss_ac_to_queue[] = {
6109         0, 1, 2, 3,
6110 };
6111
6112 static int
6113 il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
6114 {
6115         int err = 0;
6116         struct il_priv *il;
6117         struct ieee80211_hw *hw;
6118         struct il_cfg *cfg = (struct il_cfg *)(ent->driver_data);
6119         unsigned long flags;
6120         u16 pci_cmd;
6121
6122         /************************
6123          * 1. Allocating HW data
6124          ************************/
6125
6126         hw = il_alloc_all(cfg);
6127         if (!hw) {
6128                 err = -ENOMEM;
6129                 goto out;
6130         }
6131         il = hw->priv;
6132         /* At this point both hw and il are allocated. */
6133
6134         il->ctx.ctxid = 0;
6135
6136         il->ctx.always_active = true;
6137         il->ctx.is_active = true;
6138         il->ctx.qos_cmd = C_QOS_PARAM;
6139         il->ctx.ap_sta_id = IL_AP_ID;
6140         il->ctx.wep_key_cmd = C_WEPKEY;
6141         il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
6142         il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
6143         il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
6144         il->ctx.interface_modes = BIT(NL80211_IFTYPE_STATION);
6145         il->ctx.ap_devtype = RXON_DEV_TYPE_AP;
6146         il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
6147         il->ctx.station_devtype = RXON_DEV_TYPE_ESS;
6148         il->ctx.unused_devtype = RXON_DEV_TYPE_ESS;
6149
6150         SET_IEEE80211_DEV(hw, &pdev->dev);
6151
6152         D_INFO("*** LOAD DRIVER ***\n");
6153         il->cfg = cfg;
6154         il->pci_dev = pdev;
6155         il->inta_mask = CSR_INI_SET_MASK;
6156
6157         if (il_alloc_traffic_mem(il))
6158                 IL_ERR("Not enough memory to generate traffic log\n");
6159
6160         /**************************
6161          * 2. Initializing PCI bus
6162          **************************/
6163         pci_disable_link_state(pdev,
6164                                PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6165                                PCIE_LINK_STATE_CLKPM);
6166
6167         if (pci_enable_device(pdev)) {
6168                 err = -ENODEV;
6169                 goto out_ieee80211_free_hw;
6170         }
6171
6172         pci_set_master(pdev);
6173
6174         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
6175         if (!err)
6176                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
6177         if (err) {
6178                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6179                 if (!err)
6180                         err =
6181                             pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6182                 /* both attempts failed: */
6183                 if (err) {
6184                         IL_WARN("No suitable DMA available.\n");
6185                         goto out_pci_disable_device;
6186                 }
6187         }
6188
6189         err = pci_request_regions(pdev, DRV_NAME);
6190         if (err)
6191                 goto out_pci_disable_device;
6192
6193         pci_set_drvdata(pdev, il);
6194
6195         /***********************
6196          * 3. Read REV register
6197          ***********************/
6198         il->hw_base = pci_iomap(pdev, 0, 0);
6199         if (!il->hw_base) {
6200                 err = -ENODEV;
6201                 goto out_pci_release_regions;
6202         }
6203
6204         D_INFO("pci_resource_len = 0x%08llx\n",
6205                (unsigned long long)pci_resource_len(pdev, 0));
6206         D_INFO("pci_resource_base = %p\n", il->hw_base);
6207
6208         /* these spin locks will be used in apm_ops.init and EEPROM access
6209          * we should init now
6210          */
6211         spin_lock_init(&il->reg_lock);
6212         spin_lock_init(&il->lock);
6213
6214         /*
6215          * stop and reset the on-board processor just in case it is in a
6216          * strange state ... like being left stranded by a primary kernel
6217          * and this is now the kdump kernel trying to start up
6218          */
6219         _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
6220
6221         il4965_hw_detect(il);
6222         IL_INFO("Detected %s, REV=0x%X\n", il->cfg->name, il->hw_rev);
6223
6224         /* We disable the RETRY_TIMEOUT register (0x41) to keep
6225          * PCI Tx retries from interfering with C3 CPU state */
6226         pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
6227
6228         il4965_prepare_card_hw(il);
6229         if (!il->hw_ready) {
6230                 IL_WARN("Failed, HW not ready\n");
6231                 goto out_iounmap;
6232         }
6233
6234         /*****************
6235          * 4. Read EEPROM
6236          *****************/
6237         /* Read the EEPROM */
6238         err = il_eeprom_init(il);
6239         if (err) {
6240                 IL_ERR("Unable to init EEPROM\n");
6241                 goto out_iounmap;
6242         }
6243         err = il4965_eeprom_check_version(il);
6244         if (err)
6245                 goto out_free_eeprom;
6246
6247         if (err)
6248                 goto out_free_eeprom;
6249
6250         /* extract MAC Address */
6251         il4965_eeprom_get_mac(il, il->addresses[0].addr);
6252         D_INFO("MAC address: %pM\n", il->addresses[0].addr);
6253         il->hw->wiphy->addresses = il->addresses;
6254         il->hw->wiphy->n_addresses = 1;
6255
6256         /************************
6257          * 5. Setup HW constants
6258          ************************/
6259         if (il4965_set_hw_params(il)) {
6260                 IL_ERR("failed to set hw parameters\n");
6261                 goto out_free_eeprom;
6262         }
6263
6264         /*******************
6265          * 6. Setup il
6266          *******************/
6267
6268         err = il4965_init_drv(il);
6269         if (err)
6270                 goto out_free_eeprom;
6271         /* At this point both hw and il are initialized. */
6272
6273         /********************
6274          * 7. Setup services
6275          ********************/
6276         spin_lock_irqsave(&il->lock, flags);
6277         il_disable_interrupts(il);
6278         spin_unlock_irqrestore(&il->lock, flags);
6279
6280         pci_enable_msi(il->pci_dev);
6281
6282         err = request_irq(il->pci_dev->irq, il_isr, IRQF_SHARED, DRV_NAME, il);
6283         if (err) {
6284                 IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq);
6285                 goto out_disable_msi;
6286         }
6287
6288         il4965_setup_deferred_work(il);
6289         il4965_setup_handlers(il);
6290
6291         /*********************************************
6292          * 8. Enable interrupts and read RFKILL state
6293          *********************************************/
6294
6295         /* enable rfkill interrupt: hw bug w/a */
6296         pci_read_config_word(il->pci_dev, PCI_COMMAND, &pci_cmd);
6297         if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
6298                 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
6299                 pci_write_config_word(il->pci_dev, PCI_COMMAND, pci_cmd);
6300         }
6301
6302         il_enable_rfkill_int(il);
6303
6304         /* If platform's RF_KILL switch is NOT set to KILL */
6305         if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
6306                 clear_bit(S_RF_KILL_HW, &il->status);
6307         else
6308                 set_bit(S_RF_KILL_HW, &il->status);
6309
6310         wiphy_rfkill_set_hw_state(il->hw->wiphy,
6311                                   test_bit(S_RF_KILL_HW, &il->status));
6312
6313         il_power_initialize(il);
6314
6315         init_completion(&il->_4965.firmware_loading_complete);
6316
6317         err = il4965_request_firmware(il, true);
6318         if (err)
6319                 goto out_destroy_workqueue;
6320
6321         return 0;
6322
6323 out_destroy_workqueue:
6324         destroy_workqueue(il->workqueue);
6325         il->workqueue = NULL;
6326         free_irq(il->pci_dev->irq, il);
6327 out_disable_msi:
6328         pci_disable_msi(il->pci_dev);
6329         il4965_uninit_drv(il);
6330 out_free_eeprom:
6331         il_eeprom_free(il);
6332 out_iounmap:
6333         pci_iounmap(pdev, il->hw_base);
6334 out_pci_release_regions:
6335         pci_set_drvdata(pdev, NULL);
6336         pci_release_regions(pdev);
6337 out_pci_disable_device:
6338         pci_disable_device(pdev);
6339 out_ieee80211_free_hw:
6340         il_free_traffic_mem(il);
6341         ieee80211_free_hw(il->hw);
6342 out:
6343         return err;
6344 }
6345
6346 static void __devexit
6347 il4965_pci_remove(struct pci_dev *pdev)
6348 {
6349         struct il_priv *il = pci_get_drvdata(pdev);
6350         unsigned long flags;
6351
6352         if (!il)
6353                 return;
6354
6355         wait_for_completion(&il->_4965.firmware_loading_complete);
6356
6357         D_INFO("*** UNLOAD DRIVER ***\n");
6358
6359         il_dbgfs_unregister(il);
6360         sysfs_remove_group(&pdev->dev.kobj, &il_attribute_group);
6361
6362         /* ieee80211_unregister_hw call wil cause il_mac_stop to
6363          * to be called and il4965_down since we are removing the device
6364          * we need to set S_EXIT_PENDING bit.
6365          */
6366         set_bit(S_EXIT_PENDING, &il->status);
6367
6368         il_leds_exit(il);
6369
6370         if (il->mac80211_registered) {
6371                 ieee80211_unregister_hw(il->hw);
6372                 il->mac80211_registered = 0;
6373         } else {
6374                 il4965_down(il);
6375         }
6376
6377         /*
6378          * Make sure device is reset to low power before unloading driver.
6379          * This may be redundant with il4965_down(), but there are paths to
6380          * run il4965_down() without calling apm_ops.stop(), and there are
6381          * paths to avoid running il4965_down() at all before leaving driver.
6382          * This (inexpensive) call *makes sure* device is reset.
6383          */
6384         il_apm_stop(il);
6385
6386         /* make sure we flush any pending irq or
6387          * tasklet for the driver
6388          */
6389         spin_lock_irqsave(&il->lock, flags);
6390         il_disable_interrupts(il);
6391         spin_unlock_irqrestore(&il->lock, flags);
6392
6393         il4965_synchronize_irq(il);
6394
6395         il4965_dealloc_ucode_pci(il);
6396
6397         if (il->rxq.bd)
6398                 il4965_rx_queue_free(il, &il->rxq);
6399         il4965_hw_txq_ctx_free(il);
6400
6401         il_eeprom_free(il);
6402
6403         /*netif_stop_queue(dev); */
6404         flush_workqueue(il->workqueue);
6405
6406         /* ieee80211_unregister_hw calls il_mac_stop, which flushes
6407          * il->workqueue... so we can't take down the workqueue
6408          * until now... */
6409         destroy_workqueue(il->workqueue);
6410         il->workqueue = NULL;
6411         il_free_traffic_mem(il);
6412
6413         free_irq(il->pci_dev->irq, il);
6414         pci_disable_msi(il->pci_dev);
6415         pci_iounmap(pdev, il->hw_base);
6416         pci_release_regions(pdev);
6417         pci_disable_device(pdev);
6418         pci_set_drvdata(pdev, NULL);
6419
6420         il4965_uninit_drv(il);
6421
6422         dev_kfree_skb(il->beacon_skb);
6423
6424         ieee80211_free_hw(il->hw);
6425 }
6426
6427 /*
6428  * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
6429  * must be called under il->lock and mac access
6430  */
6431 void
6432 il4965_txq_set_sched(struct il_priv *il, u32 mask)
6433 {
6434         il_wr_prph(il, IL49_SCD_TXFACT, mask);
6435 }
6436
6437 /*****************************************************************************
6438  *
6439  * driver and module entry point
6440  *
6441  *****************************************************************************/
6442
6443 /* Hardware specific file defines the PCI IDs table for that hardware module */
6444 static DEFINE_PCI_DEVICE_TABLE(il4965_hw_card_ids) = {
6445         {IL_PCI_DEVICE(0x4229, PCI_ANY_ID, il4965_cfg)},
6446         {IL_PCI_DEVICE(0x4230, PCI_ANY_ID, il4965_cfg)},
6447         {0}
6448 };
6449 MODULE_DEVICE_TABLE(pci, il4965_hw_card_ids);
6450
6451 static struct pci_driver il4965_driver = {
6452         .name = DRV_NAME,
6453         .id_table = il4965_hw_card_ids,
6454         .probe = il4965_pci_probe,
6455         .remove = __devexit_p(il4965_pci_remove),
6456         .driver.pm = IL_LEGACY_PM_OPS,
6457 };
6458
6459 static int __init
6460 il4965_init(void)
6461 {
6462
6463         int ret;
6464         pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
6465         pr_info(DRV_COPYRIGHT "\n");
6466
6467         ret = il4965_rate_control_register();
6468         if (ret) {
6469                 pr_err("Unable to register rate control algorithm: %d\n", ret);
6470                 return ret;
6471         }
6472
6473         ret = pci_register_driver(&il4965_driver);
6474         if (ret) {
6475                 pr_err("Unable to initialize PCI module\n");
6476                 goto error_register;
6477         }
6478
6479         return ret;
6480
6481 error_register:
6482         il4965_rate_control_unregister();
6483         return ret;
6484 }
6485
6486 static void __exit
6487 il4965_exit(void)
6488 {
6489         pci_unregister_driver(&il4965_driver);
6490         il4965_rate_control_unregister();
6491 }
6492
6493 module_exit(il4965_exit);
6494 module_init(il4965_init);
6495
6496 #ifdef CONFIG_IWLEGACY_DEBUG
6497 module_param_named(debug, il_debug_level, uint, S_IRUGO | S_IWUSR);
6498 MODULE_PARM_DESC(debug, "debug output mask");
6499 #endif
6500
6501 module_param_named(swcrypto, il4965_mod_params.sw_crypto, int, S_IRUGO);
6502 MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
6503 module_param_named(queues_num, il4965_mod_params.num_of_queues, int, S_IRUGO);
6504 MODULE_PARM_DESC(queues_num, "number of hw queues.");
6505 module_param_named(11n_disable, il4965_mod_params.disable_11n, int, S_IRUGO);
6506 MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
6507 module_param_named(amsdu_size_8K, il4965_mod_params.amsdu_size_8K, int,
6508                    S_IRUGO);
6509 MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
6510 module_param_named(fw_restart, il4965_mod_params.restart_fw, int, S_IRUGO);
6511 MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");