blob: ecb7b542b96c1941edc72349b69a2a62d63f7aa8 [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
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>
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080043#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
Stanislaw Gruszka98613be2011-11-15 14:19:34 +010053#include "common.h"
Stanislaw Gruszkaaf038f42011-08-30 13:58:27 +020054#include "4965.h"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080055
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080056/******************************************************************************
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
Stanislaw Gruszkad3175162011-11-15 11:25:42 +010067#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080068#define VD "d"
69#else
70#define VD
71#endif
72
73#define DRV_VERSION IWLWIFI_VERSION VD
74
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080075MODULE_DESCRIPTION(DRV_DESCRIPTION);
76MODULE_VERSION(DRV_VERSION);
77MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
78MODULE_LICENSE("GPL");
79MODULE_ALIAS("iwl4965");
80
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010081void
82il4965_check_abort_status(struct il_priv *il, u8 frame_count, u32 status)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +020083{
84 if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) {
85 IL_ERR("Tx flush command to flush out all frames\n");
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +010086 if (!test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +020087 queue_work(il->workqueue, &il->tx_flush);
88 }
89}
90
91/*
92 * EEPROM
93 */
94struct il_mod_params il4965_mod_params = {
95 .amsdu_size_8K = 1,
96 .restart_fw = 1,
97 /* the rest are 0 by default */
98};
99
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100100void
101il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200102{
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,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100114 PAGE_SIZE << il->hw_params.rx_page_order,
115 PCI_DMA_FROMDEVICE);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200116 __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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100133int
134il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200135{
136 u32 rb_size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100137 const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200138 u32 rb_timeout = 0;
139
140 if (il->cfg->mod_params->amsdu_size_8K)
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200141 rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200142 else
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200143 rb_size = FH49_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200144
145 /* Stop Rx DMA */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200146 il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200147
148 /* Reset driver's Rx queue write idx */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200149 il_wr(il, FH49_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200150
151 /* Tell device where to find RBD circular buffer in DRAM */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100152 il_wr(il, FH49_RSCSR_CHNL0_RBDCB_BASE_REG, (u32) (rxq->bd_dma >> 8));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200153
154 /* Tell device where in DRAM to update its Rx status */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100155 il_wr(il, FH49_RSCSR_CHNL0_STTS_WPTR_REG, rxq->rb_stts_dma >> 4);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200156
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 */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200163 il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100164 FH49_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
165 FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100166 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));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200170
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100177static void
178il4965_set_pwr_vmain(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200179{
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,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100191 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
192 ~APMG_PS_CTRL_MSK_PWR_SRC);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200193}
194
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100195int
196il4965_hw_nic_init(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200197{
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
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100244 set_bit(S_INIT, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200245
246 return 0;
247}
248
249/**
250 * il4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
251 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100252static inline __le32
253il4965_dma_addr2rbd_ptr(struct il_priv *il, dma_addr_t dma_addr)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200254{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100255 return cpu_to_le32((u32) (dma_addr >> 8));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200256}
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100269void
270il4965_rx_queue_restock(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200271{
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100289 rxq->bd[rxq->write] =
290 il4965_dma_addr2rbd_ptr(il, rxb->page_dma);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200291 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
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200301 /* 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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100319static void
320il4965_rx_allocate(struct il_priv *il, gfp_t priority)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200321{
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())
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100347 D_INFO("alloc_pages failed, " "order: %d\n",
348 il->hw_params.rx_page_order);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200349
350 if (rxq->free_count <= RX_LOW_WATERMARK &&
351 net_ratelimit())
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100352 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);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200357 /* 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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100379 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);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200383 /* 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100398void
399il4965_rx_replenish(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200400{
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100410void
411il4965_rx_replenish_now(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200412{
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100423void
424il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200425{
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,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100430 PAGE_SIZE << il->hw_params.rx_page_order,
431 PCI_DMA_FROMDEVICE);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200432 __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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100442 rxq->rb_stts = NULL;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200443}
444
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100445int
446il4965_rxq_stop(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200447{
448
449 /* stop Rx DMA */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200450 il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0);
451 il_poll_bit(il, FH49_MEM_RSSR_RX_STATUS_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100452 FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200453
454 return 0;
455}
456
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100457int
458il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200459{
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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100467 /* Legacy rate format, search for match in table */
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200468 } 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100479static int
480il4965_calc_rssi(struct il_priv *il, struct il_rx_phy_res *rx_resp)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200481{
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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100486 u32 agc =
487 (le16_to_cpu(ncphy->agc_info) & IL49_AGC_DB_MASK) >>
488 IL49_AGC_DB_POS;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200489
490 u32 valid_antennae =
491 (le16_to_cpu(rx_resp->phy_flags) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100492 >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200493 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100514static u32
515il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200516{
517 u32 decrypt_out = 0;
518
519 if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100520 RX_RES_STATUS_STATION_FOUND)
521 decrypt_out |=
522 (RX_RES_STATUS_STATION_FOUND |
523 RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200524
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) ==
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100529 RX_RES_STATUS_SEC_TYPE_NONE)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200530 return decrypt_out;
531
532 /* packet was encrypted with unknown alg */
533 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100534 RX_RES_STATUS_SEC_TYPE_ERR)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200535 return decrypt_out;
536
537 /* decryption was not done in HW */
538 if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100539 RX_MPDU_RES_STATUS_DEC_DONE_MSK)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200540 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100569 D_RX("decrypt_in:0x%x decrypt_out = 0x%x\n", decrypt_in, decrypt_out);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200570
571 return decrypt_out;
572}
573
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100574static void
575il4965_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)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200578{
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)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100584 D_DROP("Dropping packet while interface is not open.\n");
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200585 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
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200609/* Called for N_RX (legacy ABG frames), or
610 * N_RX_MPDU (HT high-throughput N frames). */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100611void
612il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200613{
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 /**
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200625 * 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
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200628 * command and cached in il->last_phy_res
629 *
630 * Here we set up local variables depending on which command is
631 * received.
632 */
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200633 if (pkt->hdr.cmd == N_RX) {
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200634 phy_res = (struct il_rx_phy_res *)pkt->u.raw;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100635 header =
636 (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res) +
637 phy_res->cfg_phy_cnt);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200638
639 len = le16_to_cpu(phy_res->byte_count);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100640 rx_pkt_status =
641 *(__le32 *) (pkt->u.raw + sizeof(*phy_res) +
642 phy_res->cfg_phy_cnt + len);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200643 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);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100653 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));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200656 }
657
658 if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
659 D_DROP("dsp size out of range [0,20]: %d/n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100660 phy_res->cfg_phy_cnt);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200661 return;
662 }
663
664 if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) ||
665 !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100666 D_RX("Bad CRC or FIFO: 0x%08X.\n", le32_to_cpu(rx_pkt_status));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200667 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);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100675 rx_status.band =
676 (phy_res->
677 phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ? IEEE80211_BAND_2GHZ :
678 IEEE80211_BAND_5GHZ;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200679 rx_status.freq =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100680 ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel),
681 rx_status.band);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200682 rx_status.rate_idx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100683 il4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200684 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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100688 /*rx_status.flag |= RX_FLAG_MACTIME_MPDU; */
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200689
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);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100696 D_STATS("Rssi %d, TSF %llu\n", rx_status.signal,
697 (unsigned long long)rx_status.mactime);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200698
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 =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100713 (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK) >>
714 RX_RES_PHY_FLAGS_ANTENNA_POS;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200715
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100728 il4965_pass_packet_to_mac80211(il, header, len, ampdu_status, rxb,
729 &rx_status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200730}
731
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200732/* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY).
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +0200733 * This will be used later in il_hdl_rx() for N_RX_MPDU. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100734void
735il4965_hdl_rx_phy(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200736{
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100743static int
744il4965_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)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200747{
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)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100777 D_SCAN("Channel %d is INVALID for this band.\n",
778 channel);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200779 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100806 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);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200813
814 scan_ch++;
815 added++;
816 }
817
818 D_SCAN("total channels to scan %d\n", added);
819 return added;
820}
821
Stanislaw Gruszkaa0c1ef32011-12-23 08:13:44 +0100822static void
823il4965_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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100837int
838il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200839{
840 struct il_host_cmd cmd = {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200841 .id = C_SCAN,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200842 .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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100855 int chan_mod;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200856 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
Greg Dietsche730b4c22011-09-06 17:33:51 -0500862 ctx = il_rxon_ctx_from_vif(vif);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200863
864 if (!il->scan_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100865 il->scan_cmd =
866 kmalloc(sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE,
867 GFP_KERNEL);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200868 if (!il->scan_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100869 D_SCAN("fail to allocate memory for scan\n");
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200870 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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100894 scan_suspend_time =
895 (extra | ((suspend_time % interval) * 1024));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200896 scan->suspend_time = cpu_to_le32(scan_suspend_time);
897 D_SCAN("suspend_time 0x%X beacon interval %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100898 scan_suspend_time, interval);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200899 }
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 =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100910 il->scan_request->ssids[i].ssid_len;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200911 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;
Stanislaw Gruszkab16db502012-02-03 17:31:44 +0100922 scan->tx_cmd.sta_id = il->hw_params.bcast_id;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200923 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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100928 chan_mod =
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +0100929 le32_to_cpu(il->active.flags & RXON_FLG_CHANNEL_MODE_MSK) >>
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100930 RXON_FLG_CHANNEL_MODE_POS;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200931 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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100963 scan->good_CRC_th =
964 is_active ? IL_GOOD_CRC_TH_DEFAULT : IL_GOOD_CRC_TH_NEVER;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200965
966 band = il->scan_band;
967
968 if (il->cfg->scan_rx_antennas[band])
969 rx_ant = il->cfg->scan_rx_antennas[band];
970
Stanislaw Gruszkaa0c1ef32011-12-23 08:13:44 +0100971 il4965_toggle_tx_ant(il, &il->scan_tx_ant[band], scan_tx_antennas);
Stanislaw Gruszka616107e2011-12-23 08:13:45 +0100972 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);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200974
975 /* In power save mode use one chain, otherwise use all chains */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100976 if (test_bit(S_POWER_PMI, &il->status)) {
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200977 /* rx_ant has been set to all valid chains previously */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100978 active_chains =
979 rx_ant & ((u8) (il->chain_noise_data.active_chains));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200980 if (!active_chains)
981 active_chains = rx_ant;
982
983 D_SCAN("chain_noise_data.active_chains: %u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100984 il->chain_noise_data.active_chains);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200985
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100996 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));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001001 scan->tx_cmd.len = cpu_to_le16(cmd_len);
1002
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001003 scan->filter_flags |=
1004 (RXON_FILTER_ACCEPT_GRP_MSK | RXON_FILTER_BCON_AWARE_MSK);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001005
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001006 scan->channel_count =
1007 il4965_get_channels_for_scan(il, vif, band, is_active, n_probes,
1008 (void *)&scan->data[cmd_len]);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001009 if (scan->channel_count == 0) {
1010 D_SCAN("channel count %d\n", scan->channel_count);
1011 return -EIO;
1012 }
1013
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001014 cmd.len +=
1015 le16_to_cpu(scan->tx_cmd.len) +
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001016 scan->channel_count * sizeof(struct il_scan_channel);
1017 cmd.data = scan;
1018 scan->len = cpu_to_le16(cmd.len);
1019
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001020 set_bit(S_SCAN_HW, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001021
1022 ret = il_send_cmd_sync(il, &cmd);
1023 if (ret)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001024 clear_bit(S_SCAN_HW, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001025
1026 return ret;
1027}
1028
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001029int
1030il4965_manage_ibss_station(struct il_priv *il, struct ieee80211_vif *vif,
1031 bool add)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001032{
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,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001040 vif->bss_conf.bssid);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001041}
1042
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001043void
1044il4965_free_tfds_in_queue(struct il_priv *il, int sta_id, int tid, int freed)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001045{
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",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001052 il->stations[sta_id].tid[tid].tfds_in_queue, freed);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001053 il->stations[sta_id].tid[tid].tfds_in_queue = 0;
1054 }
1055}
1056
1057#define IL_TX_QUEUE_MSK 0xfffff
1058
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001059static bool
1060il4965_is_single_rx_stream(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001061{
1062 return il->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001063 il->current_ht_config.single_chain_sufficient;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001064}
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001081static int
1082il4965_get_active_rx_chain_count(struct il_priv *il)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001083{
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 */
1095static int
1096il4965_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:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001106 WARN(1, "invalid SMPS mode %d", il->current_ht_config.smps);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001107 return active_cnt;
1108 }
1109}
1110
1111/* up to 4 chains */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001112static u8
1113il4965_count_chain_bitmap(u32 chain_bitmap)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001114{
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001129void
1130il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001131{
1132 bool is_single = il4965_is_single_rx_stream(il);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001133 bool is_cam = !test_bit(S_POWER_PMI, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001134 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
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001153 /* 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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001164 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001165
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001166 il->staging.rx_chain = cpu_to_le16(rx_chain);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001167
1168 if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam)
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001169 il->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001170 else
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001171 il->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001172
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001173 D_ASSOC("rx_chain=0x%X active=%d idle=%d\n", il->staging.rx_chain,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001174 active_rx_cnt, idle_rx_cnt);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001175
1176 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1177 active_rx_cnt < idle_rx_cnt);
1178}
1179
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001180static const char *
1181il4965_get_fh_string(int cmd)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001182{
1183 switch (cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001184 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);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001193 default:
1194 return "UNKNOWN";
1195 }
1196}
1197
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001198int
1199il4965_dump_fh(struct il_priv *il, char **buf, bool display)
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001200{
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[] = {
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02001207 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
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001216 };
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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001223 pos +=
1224 scnprintf(*buf + pos, bufsz - pos, "FH register values:\n");
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001225 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001226 pos +=
1227 scnprintf(*buf + pos, bufsz - pos,
1228 " %34s: 0X%08x\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001229 il4965_get_fh_string(fh_tbl[i]),
1230 il_rd(il, fh_tbl[i]));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001231 }
1232 return pos;
1233 }
1234#endif
1235 IL_ERR("FH register values:\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001236 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]));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001239 }
1240 return 0;
1241}
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001242
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001243void
1244il4965_hdl_missed_beacon(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001245{
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) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001252 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));
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001257 if (!test_bit(S_SCANNING, &il->status))
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001258 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. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001265static void
1266il4965_rx_calc_noise(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001267{
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 =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001276 le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001277 bcn_silence_b =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001278 le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001279 bcn_silence_c =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001280 le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001281
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001301 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);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001303}
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001311static void
1312il4965_accumulative_stats(struct il_priv *il, __le32 * stats)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001313{
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
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001321 prev_stats = (__le32 *) &il->_4965.stats;
1322 accum_stats = (u32 *) &il->_4965.accum_stats;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001323 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;
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001328 delta = (u32 *) &il->_4965.delta_stats;
1329 max_delta = (u32 *) &il->_4965.max_delta;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001330
1331 for (i = sizeof(__le32); i < size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001332 i +=
1333 sizeof(__le32), stats++, prev_stats++, delta++, max_delta++,
1334 accum_stats++) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001335 if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001336 *delta =
1337 (le32_to_cpu(*stats) - le32_to_cpu(*prev_stats));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001338 *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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001352void
1353il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001354{
1355 int change;
1356 struct il_rx_pkt *pkt = rxb_addr(rxb);
1357
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001358 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);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001361
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001362 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)));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001367#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001368 il4965_accumulative_stats(il, (__le32 *) &pkt->u.stats);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001369#endif
1370
1371 /* TODO: reading some of stats is unneeded */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001372 memcpy(&il->_4965.stats, &pkt->u.stats, sizeof(il->_4965.stats));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001373
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001374 set_bit(S_STATS, &il->status);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001375
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 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001380 mod_timer(&il->stats_periodic,
1381 jiffies + msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001382
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001383 if (unlikely(!test_bit(S_SCANNING, &il->status)) &&
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001384 (pkt->hdr.cmd == N_STATS)) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001385 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001392void
1393il4965_hdl_c_stats(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001394{
1395 struct il_rx_pkt *pkt = rxb_addr(rxb);
1396
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001397 if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATS_CLEAR_MSK) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001398#ifdef CONFIG_IWLEGACY_DEBUGFS
1399 memset(&il->_4965.accum_stats, 0,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001400 sizeof(struct il_notif_stats));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001401 memset(&il->_4965.delta_stats, 0,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001402 sizeof(struct il_notif_stats));
1403 memset(&il->_4965.max_delta, 0, sizeof(struct il_notif_stats));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001404#endif
1405 D_RX("Statistics have been cleared\n");
1406 }
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001407 il4965_hdl_stats(il, rxb);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001408}
1409
Stanislaw Gruszka8f29b452011-11-15 12:57:25 +01001410
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
Stanislaw Gruszkaaf038f42011-08-30 13:58:27 +02001433 * 4965.c), the AC->hw queue mapping is the identity
Stanislaw Gruszka8f29b452011-11-15 12:57:25 +01001434 * mapping.
1435 */
1436
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001437static 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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001448static inline int
1449il4965_get_ac_from_tid(u16 tid)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001450{
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
1458static inline int
1459il4965_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/*
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001469 * handle build C_TX command notification.
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001470 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001471static void
1472il4965_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)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001476{
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
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001525static void
1526il4965_tx_cmd_build_rate(struct il_priv *il, struct il_tx_cmd *tx_cmd,
1527 struct ieee80211_tx_info *info, __le16 fc)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001528{
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01001529 const u8 rts_retry_limit = 60;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001530 u32 rate_flags;
1531 int rate_idx;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001532 u8 data_retry_limit;
1533 u8 rate_plcp;
1534
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001535 /* Set retry limit on DATA packets and Probe Responses */
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001536 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;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001541 /* Set retry limit on RTS packets */
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01001542 tx_cmd->rts_retry_limit = min(data_retry_limit, rts_retry_limit);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001543
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;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001559 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);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001564 /* 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 */
Stanislaw Gruszkaa0c1ef32011-12-23 08:13:44 +01001577 il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant);
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01001578 rate_flags |= BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001579
1580 /* Set the rate in the TX cmd */
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01001581 tx_cmd->rate_n_flags = cpu_to_le32(rate_plcp | rate_flags);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001582}
1583
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001584static void
1585il4965_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)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001588{
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:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001610 tx_cmd->sec_ctl |=
1611 (TX_CMD_SEC_WEP | (keyconf->keyidx & TX_CMD_SEC_MSK) <<
1612 TX_CMD_SEC_SHIFT);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001613
1614 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
1615
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001616 D_TX("Configuring packet for WEP encryption " "with key %d\n",
1617 keyconf->keyidx);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001618 break;
1619
1620 default:
1621 IL_ERR("Unknown encode cipher %x\n", keyconf->cipher);
1622 break;
1623 }
1624}
1625
1626/*
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001627 * start C_TX command process
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001628 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001629int
1630il4965_tx_skb(struct il_priv *il, struct sk_buff *skb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001631{
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))
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01001681 sta_id = il->hw_params.bcast_id;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001682 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) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001687 D_DROP("Dropping - INVALID STATION: %pM\n", hdr->addr1);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001688 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
Stanislaw Gruszkad1e14e92012-02-03 17:31:47 +01001711 /* FIXME: remove me ? */
1712 WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM);
1713
1714 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001715
1716 /* irqs already disabled/saved above when locking il->lock */
1717 spin_lock(&il->sta_lock);
1718
1719 if (ieee80211_is_data_qos(fc)) {
1720 qc = ieee80211_get_qos_ctl(hdr);
1721 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1722 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
1723 spin_unlock(&il->sta_lock);
1724 goto drop_unlock;
1725 }
1726 seq_number = il->stations[sta_id].tid[tid].seq_number;
1727 seq_number &= IEEE80211_SCTL_SEQ;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001728 hdr->seq_ctrl =
1729 hdr->seq_ctrl & cpu_to_le16(IEEE80211_SCTL_FRAG);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001730 hdr->seq_ctrl |= cpu_to_le16(seq_number);
1731 seq_number += 0x10;
1732 /* aggregation is on for this <sta,tid> */
1733 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
1734 il->stations[sta_id].tid[tid].agg.state == IL_AGG_ON) {
1735 txq_id = il->stations[sta_id].tid[tid].agg.txq_id;
1736 is_agg = true;
1737 }
1738 }
1739
1740 txq = &il->txq[txq_id];
1741 q = &txq->q;
1742
1743 if (unlikely(il_queue_space(q) < q->high_mark)) {
1744 spin_unlock(&il->sta_lock);
1745 goto drop_unlock;
1746 }
1747
1748 if (ieee80211_is_data_qos(fc)) {
1749 il->stations[sta_id].tid[tid].tfds_in_queue++;
1750 if (!ieee80211_has_morefrags(fc))
1751 il->stations[sta_id].tid[tid].seq_number = seq_number;
1752 }
1753
1754 spin_unlock(&il->sta_lock);
1755
1756 /* Set up driver data for this TFD */
1757 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct il_tx_info));
1758 txq->txb[q->write_ptr].skb = skb;
1759 txq->txb[q->write_ptr].ctx = ctx;
1760
1761 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1762 out_cmd = txq->cmd[q->write_ptr];
1763 out_meta = &txq->meta[q->write_ptr];
1764 tx_cmd = &out_cmd->cmd.tx;
1765 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
1766 memset(tx_cmd, 0, sizeof(struct il_tx_cmd));
1767
1768 /*
1769 * Set up the Tx-command (not MAC!) header.
1770 * Store the chosen Tx queue and TFD idx within the sequence field;
1771 * after Tx, uCode's Tx response will return this value so driver can
1772 * locate the frame within the tx queue and do post-tx processing.
1773 */
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001774 out_cmd->hdr.cmd = C_TX;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001775 out_cmd->hdr.sequence =
1776 cpu_to_le16((u16)
1777 (QUEUE_TO_SEQ(txq_id) | IDX_TO_SEQ(q->write_ptr)));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001778
1779 /* Copy MAC header from skb into command buffer */
1780 memcpy(tx_cmd->hdr, hdr, hdr_len);
1781
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001782 /* Total # bytes to be transmitted */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001783 len = (u16) skb->len;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001784 tx_cmd->len = cpu_to_le16(len);
1785
1786 if (info->control.hw_key)
1787 il4965_tx_cmd_build_hwcrypto(il, info, tx_cmd, skb, sta_id);
1788
1789 /* TODO need this for burst mode later on */
1790 il4965_tx_cmd_build_basic(il, skb, tx_cmd, info, hdr, sta_id);
1791 il_dbg_log_tx_data_frame(il, len, hdr);
1792
1793 il4965_tx_cmd_build_rate(il, tx_cmd, info, fc);
1794
1795 il_update_stats(il, true, fc, len);
1796 /*
1797 * Use the first empty entry in this queue's command buffer array
1798 * to contain the Tx command and MAC header concatenated together
1799 * (payload data will be in another buffer).
1800 * Size of this varies, due to varying MAC header length.
1801 * If end is not dword aligned, we'll have 2 extra bytes at the end
1802 * of the MAC header (device reads on dword boundaries).
1803 * We'll tell device about this padding later.
1804 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001805 len = sizeof(struct il_tx_cmd) + sizeof(struct il_cmd_header) + hdr_len;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001806 firstlen = (len + 3) & ~3;
1807
1808 /* Tell NIC about any 2-byte padding after MAC header */
1809 if (firstlen != len)
1810 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1811
1812 /* Physical address of this Tx command's header (not MAC header!),
1813 * within command buffer array. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001814 txcmd_phys =
1815 pci_map_single(il->pci_dev, &out_cmd->hdr, firstlen,
1816 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001817 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
1818 dma_unmap_len_set(out_meta, len, firstlen);
1819 /* Add buffer containing Tx command and MAC(!) header to TFD's
1820 * first entry */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001821 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, txcmd_phys, firstlen,
1822 1, 0);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001823
1824 if (!ieee80211_has_morefrags(hdr->frame_control)) {
1825 txq->need_update = 1;
1826 } else {
1827 wait_write_ptr = 1;
1828 txq->need_update = 0;
1829 }
1830
1831 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1832 * if any (802.11 null frames have no payload). */
1833 secondlen = skb->len - hdr_len;
1834 if (secondlen > 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001835 phys_addr =
1836 pci_map_single(il->pci_dev, skb->data + hdr_len, secondlen,
1837 PCI_DMA_TODEVICE);
1838 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr,
1839 secondlen, 0, 0);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001840 }
1841
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001842 scratch_phys =
1843 txcmd_phys + sizeof(struct il_cmd_header) +
1844 offsetof(struct il_tx_cmd, scratch);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001845
1846 /* take back ownership of DMA buffer to enable update */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001847 pci_dma_sync_single_for_cpu(il->pci_dev, txcmd_phys, firstlen,
1848 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001849 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1850 tx_cmd->dram_msb_ptr = il_get_dma_hi_addr(scratch_phys);
1851
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001852 D_TX("sequence nr = 0X%x\n", le16_to_cpu(out_cmd->hdr.sequence));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001853 D_TX("tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001854 il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd, sizeof(*tx_cmd));
1855 il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd->hdr, hdr_len);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001856
1857 /* Set up entry for this TFD in Tx byte-count array */
1858 if (info->flags & IEEE80211_TX_CTL_AMPDU)
1859 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001860 le16_to_cpu(tx_cmd->
1861 len));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001862
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001863 pci_dma_sync_single_for_device(il->pci_dev, txcmd_phys, firstlen,
1864 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001865
1866 /* Tell device the write idx *just past* this latest filled TFD */
1867 q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
1868 il_txq_update_write_ptr(il, txq);
1869 spin_unlock_irqrestore(&il->lock, flags);
1870
1871 /*
1872 * At this point the frame is "transmitted" successfully
1873 * and we will get a TX status notification eventually,
1874 * regardless of the value of ret. "ret" only indicates
1875 * whether or not we should update the write pointer.
1876 */
1877
1878 /*
1879 * Avoid atomic ops if it isn't an associated client.
1880 * Also, if this is a packet for aggregation, don't
1881 * increase the counter because the ucode will stop
1882 * aggregation queues when their respective station
1883 * goes to sleep.
1884 */
1885 if (sta_priv && sta_priv->client && !is_agg)
1886 atomic_inc(&sta_priv->pending_frames);
1887
1888 if (il_queue_space(q) < q->high_mark && il->mac80211_registered) {
1889 if (wait_write_ptr) {
1890 spin_lock_irqsave(&il->lock, flags);
1891 txq->need_update = 1;
1892 il_txq_update_write_ptr(il, txq);
1893 spin_unlock_irqrestore(&il->lock, flags);
1894 } else {
1895 il_stop_queue(il, txq);
1896 }
1897 }
1898
1899 return 0;
1900
1901drop_unlock:
1902 spin_unlock_irqrestore(&il->lock, flags);
1903 return -1;
1904}
1905
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001906static inline int
1907il4965_alloc_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr, size_t size)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001908{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001909 ptr->addr =
1910 dma_alloc_coherent(&il->pci_dev->dev, size, &ptr->dma, GFP_KERNEL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001911 if (!ptr->addr)
1912 return -ENOMEM;
1913 ptr->size = size;
1914 return 0;
1915}
1916
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001917static inline void
1918il4965_free_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001919{
1920 if (unlikely(!ptr->addr))
1921 return;
1922
1923 dma_free_coherent(&il->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
1924 memset(ptr, 0, sizeof(*ptr));
1925}
1926
1927/**
1928 * il4965_hw_txq_ctx_free - Free TXQ Context
1929 *
1930 * Destroy all TX DMA queues and structures
1931 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001932void
1933il4965_hw_txq_ctx_free(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001934{
1935 int txq_id;
1936
1937 /* Tx queues */
1938 if (il->txq) {
1939 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
1940 if (txq_id == il->cmd_queue)
1941 il_cmd_queue_free(il);
1942 else
1943 il_tx_queue_free(il, txq_id);
1944 }
1945 il4965_free_dma_ptr(il, &il->kw);
1946
1947 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
1948
1949 /* free tx queue structure */
1950 il_txq_mem(il);
1951}
1952
1953/**
1954 * il4965_txq_ctx_alloc - allocate TX queue context
1955 * Allocate all Tx DMA structures and initialize them
1956 *
1957 * @param il
1958 * @return error code
1959 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001960int
1961il4965_txq_ctx_alloc(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001962{
1963 int ret;
1964 int txq_id, slots_num;
1965 unsigned long flags;
1966
1967 /* Free all tx/cmd queues and keep-warm buffer */
1968 il4965_hw_txq_ctx_free(il);
1969
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001970 ret =
1971 il4965_alloc_dma_ptr(il, &il->scd_bc_tbls,
1972 il->hw_params.scd_bc_tbls_size);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001973 if (ret) {
1974 IL_ERR("Scheduler BC Table allocation failed\n");
1975 goto error_bc_tbls;
1976 }
1977 /* Alloc keep-warm buffer */
1978 ret = il4965_alloc_dma_ptr(il, &il->kw, IL_KW_SIZE);
1979 if (ret) {
1980 IL_ERR("Keep Warm allocation failed\n");
1981 goto error_kw;
1982 }
1983
1984 /* allocate tx queue structure */
1985 ret = il_alloc_txq_mem(il);
1986 if (ret)
1987 goto error;
1988
1989 spin_lock_irqsave(&il->lock, flags);
1990
1991 /* Turn off all Tx DMA fifos */
1992 il4965_txq_set_sched(il, 0);
1993
1994 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02001995 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001996
1997 spin_unlock_irqrestore(&il->lock, flags);
1998
1999 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
2000 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002001 slots_num =
2002 (txq_id ==
2003 il->cmd_queue) ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2004 ret = il_tx_queue_init(il, &il->txq[txq_id], slots_num, txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002005 if (ret) {
2006 IL_ERR("Tx %d queue init failed\n", txq_id);
2007 goto error;
2008 }
2009 }
2010
2011 return ret;
2012
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002013error:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002014 il4965_hw_txq_ctx_free(il);
2015 il4965_free_dma_ptr(il, &il->kw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002016error_kw:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002017 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002018error_bc_tbls:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002019 return ret;
2020}
2021
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002022void
2023il4965_txq_ctx_reset(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002024{
2025 int txq_id, slots_num;
2026 unsigned long flags;
2027
2028 spin_lock_irqsave(&il->lock, flags);
2029
2030 /* Turn off all Tx DMA fifos */
2031 il4965_txq_set_sched(il, 0);
2032
2033 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002034 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002035
2036 spin_unlock_irqrestore(&il->lock, flags);
2037
2038 /* Alloc and init all Tx queues, including the command queue (#4) */
2039 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002040 slots_num =
2041 txq_id == il->cmd_queue ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2042 il_tx_queue_reset(il, &il->txq[txq_id], slots_num, txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002043 }
2044}
2045
2046/**
2047 * il4965_txq_ctx_stop - Stop all Tx DMA channels
2048 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002049void
2050il4965_txq_ctx_stop(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002051{
2052 int ch, txq_id;
2053 unsigned long flags;
2054
2055 /* Turn off all Tx DMA fifos */
2056 spin_lock_irqsave(&il->lock, flags);
2057
2058 il4965_txq_set_sched(il, 0);
2059
2060 /* Stop each Tx DMA channel, and wait for it to be idle */
2061 for (ch = 0; ch < il->hw_params.dma_chnl_num; ch++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002062 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
2063 if (il_poll_bit
2064 (il, FH49_TSSR_TX_STATUS_REG,
2065 FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000))
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002066 IL_ERR("Failing on timeout while stopping"
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002067 " DMA channel %d [0x%08x]", ch,
2068 il_rd(il, FH49_TSSR_TX_STATUS_REG));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002069 }
2070 spin_unlock_irqrestore(&il->lock, flags);
2071
2072 if (!il->txq)
2073 return;
2074
2075 /* Unmap DMA from host system and free skb's */
2076 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2077 if (txq_id == il->cmd_queue)
2078 il_cmd_queue_unmap(il);
2079 else
2080 il_tx_queue_unmap(il, txq_id);
2081}
2082
2083/*
2084 * Find first available (lowest unused) Tx Queue, mark it "active".
2085 * Called only when finding queue for aggregation.
2086 * Should never return anything < 7, because they should already
2087 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
2088 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002089static int
2090il4965_txq_ctx_activate_free(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002091{
2092 int txq_id;
2093
2094 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2095 if (!test_and_set_bit(txq_id, &il->txq_ctx_active_msk))
2096 return txq_id;
2097 return -1;
2098}
2099
2100/**
2101 * il4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
2102 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002103static void
2104il4965_tx_queue_stop_scheduler(struct il_priv *il, u16 txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002105{
2106 /* Simply stop the queue, but don't change any configuration;
2107 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002108 il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002109 (0 << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
2110 (1 << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002111}
2112
2113/**
2114 * il4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
2115 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002116static int
2117il4965_tx_queue_set_q2ratid(struct il_priv *il, u16 ra_tid, u16 txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002118{
2119 u32 tbl_dw_addr;
2120 u32 tbl_dw;
2121 u16 scd_q2ratid;
2122
2123 scd_q2ratid = ra_tid & IL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
2124
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002125 tbl_dw_addr =
2126 il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002127
2128 tbl_dw = il_read_targ_mem(il, tbl_dw_addr);
2129
2130 if (txq_id & 0x1)
2131 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
2132 else
2133 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
2134
2135 il_write_targ_mem(il, tbl_dw_addr, tbl_dw);
2136
2137 return 0;
2138}
2139
2140/**
2141 * il4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
2142 *
2143 * NOTE: txq_id must be greater than IL49_FIRST_AMPDU_QUEUE,
2144 * i.e. it must be one of the higher queues used for aggregation
2145 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002146static int
2147il4965_txq_agg_enable(struct il_priv *il, int txq_id, int tx_fifo, int sta_id,
2148 int tid, u16 ssn_idx)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002149{
2150 unsigned long flags;
2151 u16 ra_tid;
2152 int ret;
2153
2154 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2155 (IL49_FIRST_AMPDU_QUEUE +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002156 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2157 IL_WARN("queue number out of range: %d, must be %d to %d\n",
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002158 txq_id, IL49_FIRST_AMPDU_QUEUE,
2159 IL49_FIRST_AMPDU_QUEUE +
2160 il->cfg->base_params->num_of_ampdu_queues - 1);
2161 return -EINVAL;
2162 }
2163
2164 ra_tid = BUILD_RAxTID(sta_id, tid);
2165
2166 /* Modify device's station table to Tx this TID */
2167 ret = il4965_sta_tx_modify_enable_tid(il, sta_id, tid);
2168 if (ret)
2169 return ret;
2170
2171 spin_lock_irqsave(&il->lock, flags);
2172
2173 /* Stop this Tx queue before configuring it */
2174 il4965_tx_queue_stop_scheduler(il, txq_id);
2175
2176 /* Map receiver-address / traffic-ID to this queue */
2177 il4965_tx_queue_set_q2ratid(il, ra_tid, txq_id);
2178
2179 /* Set this queue as a chain-building queue */
2180 il_set_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2181
2182 /* Place first TFD at idx corresponding to start sequence number.
2183 * Assumes that ssn_idx is valid (!= 0xFFF) */
2184 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2185 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2186 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2187
2188 /* Set up Tx win size and frame limit for this queue */
2189 il_write_targ_mem(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002190 il->scd_base_addr +
2191 IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
2192 (SCD_WIN_SIZE << IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS)
2193 & IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002194
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002195 il_write_targ_mem(il,
2196 il->scd_base_addr +
2197 IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
2198 (SCD_FRAME_LIMIT <<
2199 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
2200 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002201
2202 il_set_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2203
2204 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
2205 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 1);
2206
2207 spin_unlock_irqrestore(&il->lock, flags);
2208
2209 return 0;
2210}
2211
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002212int
2213il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif,
2214 struct ieee80211_sta *sta, u16 tid, u16 * ssn)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002215{
2216 int sta_id;
2217 int tx_fifo;
2218 int txq_id;
2219 int ret;
2220 unsigned long flags;
2221 struct il_tid_data *tid_data;
2222
2223 tx_fifo = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2224 if (unlikely(tx_fifo < 0))
2225 return tx_fifo;
2226
Greg Dietsche53611e02011-08-28 08:26:16 -05002227 D_HT("%s on ra = %pM tid = %d\n", __func__, sta->addr, tid);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002228
2229 sta_id = il_sta_id(sta);
2230 if (sta_id == IL_INVALID_STATION) {
2231 IL_ERR("Start AGG on invalid station\n");
2232 return -ENXIO;
2233 }
2234 if (unlikely(tid >= MAX_TID_COUNT))
2235 return -EINVAL;
2236
2237 if (il->stations[sta_id].tid[tid].agg.state != IL_AGG_OFF) {
2238 IL_ERR("Start AGG when state is not IL_AGG_OFF !\n");
2239 return -ENXIO;
2240 }
2241
2242 txq_id = il4965_txq_ctx_activate_free(il);
2243 if (txq_id == -1) {
2244 IL_ERR("No free aggregation queue available\n");
2245 return -ENXIO;
2246 }
2247
2248 spin_lock_irqsave(&il->sta_lock, flags);
2249 tid_data = &il->stations[sta_id].tid[tid];
2250 *ssn = SEQ_TO_SN(tid_data->seq_number);
2251 tid_data->agg.txq_id = txq_id;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002252 il_set_swq_id(&il->txq[txq_id], il4965_get_ac_from_tid(tid), txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002253 spin_unlock_irqrestore(&il->sta_lock, flags);
2254
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002255 ret = il4965_txq_agg_enable(il, txq_id, tx_fifo, sta_id, tid, *ssn);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002256 if (ret)
2257 return ret;
2258
2259 spin_lock_irqsave(&il->sta_lock, flags);
2260 tid_data = &il->stations[sta_id].tid[tid];
2261 if (tid_data->tfds_in_queue == 0) {
2262 D_HT("HW queue is empty\n");
2263 tid_data->agg.state = IL_AGG_ON;
2264 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2265 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002266 D_HT("HW queue is NOT empty: %d packets in HW queue\n",
2267 tid_data->tfds_in_queue);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002268 tid_data->agg.state = IL_EMPTYING_HW_QUEUE_ADDBA;
2269 }
2270 spin_unlock_irqrestore(&il->sta_lock, flags);
2271 return ret;
2272}
2273
2274/**
2275 * txq_id must be greater than IL49_FIRST_AMPDU_QUEUE
2276 * il->lock must be held by the caller
2277 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002278static int
2279il4965_txq_agg_disable(struct il_priv *il, u16 txq_id, u16 ssn_idx, u8 tx_fifo)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002280{
2281 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2282 (IL49_FIRST_AMPDU_QUEUE +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002283 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2284 IL_WARN("queue number out of range: %d, must be %d to %d\n",
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002285 txq_id, IL49_FIRST_AMPDU_QUEUE,
2286 IL49_FIRST_AMPDU_QUEUE +
2287 il->cfg->base_params->num_of_ampdu_queues - 1);
2288 return -EINVAL;
2289 }
2290
2291 il4965_tx_queue_stop_scheduler(il, txq_id);
2292
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002293 il_clear_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002294
2295 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2296 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2297 /* supposes that ssn_idx is valid (!= 0xFFF) */
2298 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2299
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002300 il_clear_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002301 il_txq_ctx_deactivate(il, txq_id);
2302 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 0);
2303
2304 return 0;
2305}
2306
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002307int
2308il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif,
2309 struct ieee80211_sta *sta, u16 tid)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002310{
2311 int tx_fifo_id, txq_id, sta_id, ssn;
2312 struct il_tid_data *tid_data;
2313 int write_ptr, read_ptr;
2314 unsigned long flags;
2315
2316 tx_fifo_id = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2317 if (unlikely(tx_fifo_id < 0))
2318 return tx_fifo_id;
2319
2320 sta_id = il_sta_id(sta);
2321
2322 if (sta_id == IL_INVALID_STATION) {
2323 IL_ERR("Invalid station for AGG tid %d\n", tid);
2324 return -ENXIO;
2325 }
2326
2327 spin_lock_irqsave(&il->sta_lock, flags);
2328
2329 tid_data = &il->stations[sta_id].tid[tid];
2330 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
2331 txq_id = tid_data->agg.txq_id;
2332
2333 switch (il->stations[sta_id].tid[tid].agg.state) {
2334 case IL_EMPTYING_HW_QUEUE_ADDBA:
2335 /*
2336 * This can happen if the peer stops aggregation
2337 * again before we've had a chance to drain the
2338 * queue we selected previously, i.e. before the
2339 * session was really started completely.
2340 */
2341 D_HT("AGG stop before setup done\n");
2342 goto turn_off;
2343 case IL_AGG_ON:
2344 break;
2345 default:
2346 IL_WARN("Stopping AGG while state not ON or starting\n");
2347 }
2348
2349 write_ptr = il->txq[txq_id].q.write_ptr;
2350 read_ptr = il->txq[txq_id].q.read_ptr;
2351
2352 /* The queue is not empty */
2353 if (write_ptr != read_ptr) {
2354 D_HT("Stopping a non empty AGG HW QUEUE\n");
2355 il->stations[sta_id].tid[tid].agg.state =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002356 IL_EMPTYING_HW_QUEUE_DELBA;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002357 spin_unlock_irqrestore(&il->sta_lock, flags);
2358 return 0;
2359 }
2360
2361 D_HT("HW queue is empty\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002362turn_off:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002363 il->stations[sta_id].tid[tid].agg.state = IL_AGG_OFF;
2364
2365 /* do not restore/save irqs */
2366 spin_unlock(&il->sta_lock);
2367 spin_lock(&il->lock);
2368
2369 /*
2370 * the only reason this call can fail is queue number out of range,
2371 * which can happen if uCode is reloaded and all the station
2372 * information are lost. if it is outside the range, there is no need
2373 * to deactivate the uCode queue, just return "success" to allow
2374 * mac80211 to clean up it own data.
2375 */
2376 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo_id);
2377 spin_unlock_irqrestore(&il->lock, flags);
2378
2379 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2380
2381 return 0;
2382}
2383
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002384int
2385il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002386{
2387 struct il_queue *q = &il->txq[txq_id].q;
2388 u8 *addr = il->stations[sta_id].sta.sta.addr;
2389 struct il_tid_data *tid_data = &il->stations[sta_id].tid[tid];
2390 struct il_rxon_context *ctx;
2391
2392 ctx = &il->ctx;
2393
2394 lockdep_assert_held(&il->sta_lock);
2395
2396 switch (il->stations[sta_id].tid[tid].agg.state) {
2397 case IL_EMPTYING_HW_QUEUE_DELBA:
2398 /* We are reclaiming the last packet of the */
2399 /* aggregated HW queue */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002400 if (txq_id == tid_data->agg.txq_id &&
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002401 q->read_ptr == q->write_ptr) {
2402 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
2403 int tx_fifo = il4965_get_fifo_from_tid(ctx, tid);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002404 D_HT("HW queue empty: continue DELBA flow\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002405 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo);
2406 tid_data->agg.state = IL_AGG_OFF;
2407 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2408 }
2409 break;
2410 case IL_EMPTYING_HW_QUEUE_ADDBA:
2411 /* We are reclaiming the last packet of the queue */
2412 if (tid_data->tfds_in_queue == 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002413 D_HT("HW queue empty: continue ADDBA flow\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002414 tid_data->agg.state = IL_AGG_ON;
2415 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2416 }
2417 break;
2418 }
2419
2420 return 0;
2421}
2422
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002423static void
2424il4965_non_agg_tx_status(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002425 const u8 *addr1)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002426{
2427 struct ieee80211_sta *sta;
2428 struct il_station_priv *sta_priv;
2429
2430 rcu_read_lock();
2431 sta = ieee80211_find_sta(ctx->vif, addr1);
2432 if (sta) {
2433 sta_priv = (void *)sta->drv_priv;
2434 /* avoid atomic ops if this isn't a client */
2435 if (sta_priv->client &&
2436 atomic_dec_return(&sta_priv->pending_frames) == 0)
2437 ieee80211_sta_block_awake(il->hw, sta, false);
2438 }
2439 rcu_read_unlock();
2440}
2441
2442static void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002443il4965_tx_status(struct il_priv *il, struct il_tx_info *tx_info, bool is_agg)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002444{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002445 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx_info->skb->data;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002446
2447 if (!is_agg)
2448 il4965_non_agg_tx_status(il, tx_info->ctx, hdr->addr1);
2449
2450 ieee80211_tx_status_irqsafe(il->hw, tx_info->skb);
2451}
2452
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002453int
2454il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002455{
2456 struct il_tx_queue *txq = &il->txq[txq_id];
2457 struct il_queue *q = &txq->q;
2458 struct il_tx_info *tx_info;
2459 int nfreed = 0;
2460 struct ieee80211_hdr *hdr;
2461
2462 if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
2463 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002464 "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd,
2465 q->write_ptr, q->read_ptr);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002466 return 0;
2467 }
2468
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002469 for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002470 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
2471
2472 tx_info = &txq->txb[txq->q.read_ptr];
2473
2474 if (WARN_ON_ONCE(tx_info->skb == NULL))
2475 continue;
2476
2477 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
2478 if (ieee80211_is_data_qos(hdr->frame_control))
2479 nfreed++;
2480
2481 il4965_tx_status(il, tx_info,
2482 txq_id >= IL4965_FIRST_AMPDU_QUEUE);
2483 tx_info->skb = NULL;
2484
2485 il->cfg->ops->lib->txq_free_tfd(il, txq);
2486 }
2487 return nfreed;
2488}
2489
2490/**
2491 * il4965_tx_status_reply_compressed_ba - Update tx status from block-ack
2492 *
2493 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
2494 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
2495 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002496static int
2497il4965_tx_status_reply_compressed_ba(struct il_priv *il, struct il_ht_agg *agg,
2498 struct il_compressed_ba_resp *ba_resp)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002499{
2500 int i, sh, ack;
2501 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
2502 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2503 int successes = 0;
2504 struct ieee80211_tx_info *info;
2505 u64 bitmap, sent_bitmap;
2506
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002507 if (unlikely(!agg->wait_for_ba)) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002508 if (unlikely(ba_resp->bitmap))
2509 IL_ERR("Received BA when not expected\n");
2510 return -EINVAL;
2511 }
2512
2513 /* Mark that the expected block-ack response arrived */
2514 agg->wait_for_ba = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002515 D_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002516
2517 /* Calculate shift to align block-ack bits with our Tx win bits */
2518 sh = agg->start_idx - SEQ_TO_IDX(seq_ctl >> 4);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002519 if (sh < 0) /* tbw something is wrong with indices */
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002520 sh += 0x100;
2521
2522 if (agg->frame_count > (64 - sh)) {
2523 D_TX_REPLY("more frames than bitmap size");
2524 return -1;
2525 }
2526
2527 /* don't use 64-bit values for now */
2528 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
2529
2530 /* check for success or failure according to the
2531 * transmitted bitmap and block-ack bitmap */
2532 sent_bitmap = bitmap & agg->bitmap;
2533
2534 /* For each frame attempted in aggregation,
2535 * update driver's record of tx frame's status. */
2536 i = 0;
2537 while (sent_bitmap) {
2538 ack = sent_bitmap & 1ULL;
2539 successes += ack;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002540 D_TX_REPLY("%s ON i=%d idx=%d raw=%d\n", ack ? "ACK" : "NACK",
2541 i, (agg->start_idx + i) & 0xff, agg->start_idx + i);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002542 sent_bitmap >>= 1;
2543 ++i;
2544 }
2545
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002546 D_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002547
2548 info = IEEE80211_SKB_CB(il->txq[scd_flow].txb[agg->start_idx].skb);
2549 memset(&info->status, 0, sizeof(info->status));
2550 info->flags |= IEEE80211_TX_STAT_ACK;
2551 info->flags |= IEEE80211_TX_STAT_AMPDU;
2552 info->status.ampdu_ack_len = successes;
2553 info->status.ampdu_len = agg->frame_count;
2554 il4965_hwrate_to_tx_control(il, agg->rate_n_flags, info);
2555
2556 return 0;
2557}
2558
2559/**
2560 * translate ucode response to mac80211 tx status control values
2561 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002562void
2563il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
2564 struct ieee80211_tx_info *info)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002565{
2566 struct ieee80211_tx_rate *r = &info->control.rates[0];
2567
2568 info->antenna_sel_tx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002569 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002570 if (rate_n_flags & RATE_MCS_HT_MSK)
2571 r->flags |= IEEE80211_TX_RC_MCS;
2572 if (rate_n_flags & RATE_MCS_GF_MSK)
2573 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
2574 if (rate_n_flags & RATE_MCS_HT40_MSK)
2575 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2576 if (rate_n_flags & RATE_MCS_DUP_MSK)
2577 r->flags |= IEEE80211_TX_RC_DUP_DATA;
2578 if (rate_n_flags & RATE_MCS_SGI_MSK)
2579 r->flags |= IEEE80211_TX_RC_SHORT_GI;
2580 r->idx = il4965_hwrate_to_mac80211_idx(rate_n_flags, info->band);
2581}
2582
2583/**
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02002584 * il4965_hdl_compressed_ba - Handler for N_COMPRESSED_BA
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002585 *
2586 * Handles block-acknowledge notification from device, which reports success
2587 * of frames sent via aggregation.
2588 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002589void
2590il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002591{
2592 struct il_rx_pkt *pkt = rxb_addr(rxb);
2593 struct il_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
2594 struct il_tx_queue *txq = NULL;
2595 struct il_ht_agg *agg;
2596 int idx;
2597 int sta_id;
2598 int tid;
2599 unsigned long flags;
2600
2601 /* "flow" corresponds to Tx queue */
2602 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2603
2604 /* "ssn" is start of block-ack Tx win, corresponds to idx
2605 * (in Tx queue's circular buffer) of first TFD/frame in win */
2606 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
2607
2608 if (scd_flow >= il->hw_params.max_txq_num) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002609 IL_ERR("BUG_ON scd_flow is bigger than number of queues\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002610 return;
2611 }
2612
2613 txq = &il->txq[scd_flow];
2614 sta_id = ba_resp->sta_id;
2615 tid = ba_resp->tid;
2616 agg = &il->stations[sta_id].tid[tid].agg;
2617 if (unlikely(agg->txq_id != scd_flow)) {
2618 /*
2619 * FIXME: this is a uCode bug which need to be addressed,
2620 * log the information and return for now!
2621 * since it is possible happen very often and in order
2622 * not to fill the syslog, don't enable the logging by default
2623 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002624 D_TX_REPLY("BA scd_flow %d does not match txq_id %d\n",
2625 scd_flow, agg->txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002626 return;
2627 }
2628
2629 /* Find idx just before block-ack win */
2630 idx = il_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
2631
2632 spin_lock_irqsave(&il->sta_lock, flags);
2633
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002634 D_TX_REPLY("N_COMPRESSED_BA [%d] Received from %pM, " "sta_id = %d\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002635 agg->wait_for_ba, (u8 *) &ba_resp->sta_addr_lo32,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002636 ba_resp->sta_id);
2637 D_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx," "scd_flow = "
2638 "%d, scd_ssn = %d\n", ba_resp->tid, ba_resp->seq_ctl,
2639 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
2640 ba_resp->scd_flow, ba_resp->scd_ssn);
2641 D_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx\n", agg->start_idx,
2642 (unsigned long long)agg->bitmap);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002643
2644 /* Update driver's record of ACK vs. not for each frame in win */
2645 il4965_tx_status_reply_compressed_ba(il, agg, ba_resp);
2646
2647 /* Release all TFDs before the SSN, i.e. all TFDs in front of
2648 * block-ack win (we assume that they've been successfully
2649 * transmitted ... if not, it's too late anyway). */
2650 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
2651 /* calculate mac80211 ampdu sw queue to wake */
2652 int freed = il4965_tx_queue_reclaim(il, scd_flow, idx);
2653 il4965_free_tfds_in_queue(il, sta_id, tid, freed);
2654
2655 if (il_queue_space(&txq->q) > txq->q.low_mark &&
2656 il->mac80211_registered &&
2657 agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
2658 il_wake_queue(il, txq);
2659
2660 il4965_txq_check_empty(il, sta_id, tid, scd_flow);
2661 }
2662
2663 spin_unlock_irqrestore(&il->sta_lock, flags);
2664}
2665
2666#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002667const char *
2668il4965_get_tx_fail_reason(u32 status)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002669{
2670#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
2671#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
2672
2673 switch (status & TX_STATUS_MSK) {
2674 case TX_STATUS_SUCCESS:
2675 return "SUCCESS";
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002676 TX_STATUS_POSTPONE(DELAY);
2677 TX_STATUS_POSTPONE(FEW_BYTES);
2678 TX_STATUS_POSTPONE(QUIET_PERIOD);
2679 TX_STATUS_POSTPONE(CALC_TTAK);
2680 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
2681 TX_STATUS_FAIL(SHORT_LIMIT);
2682 TX_STATUS_FAIL(LONG_LIMIT);
2683 TX_STATUS_FAIL(FIFO_UNDERRUN);
2684 TX_STATUS_FAIL(DRAIN_FLOW);
2685 TX_STATUS_FAIL(RFKILL_FLUSH);
2686 TX_STATUS_FAIL(LIFE_EXPIRE);
2687 TX_STATUS_FAIL(DEST_PS);
2688 TX_STATUS_FAIL(HOST_ABORTED);
2689 TX_STATUS_FAIL(BT_RETRY);
2690 TX_STATUS_FAIL(STA_INVALID);
2691 TX_STATUS_FAIL(FRAG_DROPPED);
2692 TX_STATUS_FAIL(TID_DISABLE);
2693 TX_STATUS_FAIL(FIFO_FLUSHED);
2694 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
2695 TX_STATUS_FAIL(PASSIVE_NO_RX);
2696 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002697 }
2698
2699 return "UNKNOWN";
2700
2701#undef TX_STATUS_FAIL
2702#undef TX_STATUS_POSTPONE
2703}
2704#endif /* CONFIG_IWLEGACY_DEBUG */
2705
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002706static struct il_link_quality_cmd *
2707il4965_sta_alloc_lq(struct il_priv *il, u8 sta_id)
2708{
2709 int i, r;
2710 struct il_link_quality_cmd *link_cmd;
2711 u32 rate_flags = 0;
2712 __le32 rate_n_flags;
2713
2714 link_cmd = kzalloc(sizeof(struct il_link_quality_cmd), GFP_KERNEL);
2715 if (!link_cmd) {
2716 IL_ERR("Unable to allocate memory for LQ cmd.\n");
2717 return NULL;
2718 }
2719 /* Set up the rate scaling to start at selected rate, fall back
2720 * all the way down to 1M in IEEE order, and then spin on 1M */
2721 if (il->band == IEEE80211_BAND_5GHZ)
2722 r = RATE_6M_IDX;
2723 else
2724 r = RATE_1M_IDX;
2725
2726 if (r >= IL_FIRST_CCK_RATE && r <= IL_LAST_CCK_RATE)
2727 rate_flags |= RATE_MCS_CCK_MSK;
2728
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002729 rate_flags |=
2730 il4965_first_antenna(il->hw_params.
2731 valid_tx_ant) << RATE_MCS_ANT_POS;
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01002732 rate_n_flags = cpu_to_le32(il_rates[r].plcp | rate_flags);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002733 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2734 link_cmd->rs_table[i].rate_n_flags = rate_n_flags;
2735
2736 link_cmd->general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002737 il4965_first_antenna(il->hw_params.valid_tx_ant);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002738
2739 link_cmd->general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002740 il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2741 valid_tx_ant);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002742 if (!link_cmd->general_params.dual_stream_ant_msk) {
2743 link_cmd->general_params.dual_stream_ant_msk = ANT_AB;
2744 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2745 link_cmd->general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002746 il->hw_params.valid_tx_ant;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002747 }
2748
2749 link_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2750 link_cmd->agg_params.agg_time_limit =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002751 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002752
2753 link_cmd->sta_id = sta_id;
2754
2755 return link_cmd;
2756}
2757
2758/*
2759 * il4965_add_bssid_station - Add the special IBSS BSSID station
2760 *
2761 * Function sleeps.
2762 */
2763int
2764il4965_add_bssid_station(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002765 const u8 *addr, u8 *sta_id_r)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002766{
2767 int ret;
2768 u8 sta_id;
2769 struct il_link_quality_cmd *link_cmd;
2770 unsigned long flags;
2771
2772 if (sta_id_r)
2773 *sta_id_r = IL_INVALID_STATION;
2774
2775 ret = il_add_station_common(il, ctx, addr, 0, NULL, &sta_id);
2776 if (ret) {
2777 IL_ERR("Unable to add station %pM\n", addr);
2778 return ret;
2779 }
2780
2781 if (sta_id_r)
2782 *sta_id_r = sta_id;
2783
2784 spin_lock_irqsave(&il->sta_lock, flags);
2785 il->stations[sta_id].used |= IL_STA_LOCAL;
2786 spin_unlock_irqrestore(&il->sta_lock, flags);
2787
2788 /* Set up default rate scaling table in device's station table */
2789 link_cmd = il4965_sta_alloc_lq(il, sta_id);
2790 if (!link_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002791 IL_ERR("Unable to initialize rate scaling for station %pM.\n",
2792 addr);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002793 return -ENOMEM;
2794 }
2795
2796 ret = il_send_lq_cmd(il, ctx, link_cmd, CMD_SYNC, true);
2797 if (ret)
2798 IL_ERR("Link quality command failed (%d)\n", ret);
2799
2800 spin_lock_irqsave(&il->sta_lock, flags);
2801 il->stations[sta_id].lq = link_cmd;
2802 spin_unlock_irqrestore(&il->sta_lock, flags);
2803
2804 return 0;
2805}
2806
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002807static int
2808il4965_static_wepkey_cmd(struct il_priv *il, struct il_rxon_context *ctx,
2809 bool send_if_empty)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002810{
2811 int i, not_empty = 0;
2812 u8 buff[sizeof(struct il_wep_cmd) +
2813 sizeof(struct il_wep_key) * WEP_KEYS_MAX];
2814 struct il_wep_cmd *wep_cmd = (struct il_wep_cmd *)buff;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002815 size_t cmd_size = sizeof(struct il_wep_cmd);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002816 struct il_host_cmd cmd = {
Stanislaw Gruszkad98e2942012-02-03 17:31:42 +01002817 .id = C_WEPKEY,
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002818 .data = wep_cmd,
2819 .flags = CMD_SYNC,
2820 };
2821
2822 might_sleep();
2823
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002824 memset(wep_cmd, 0,
2825 cmd_size + (sizeof(struct il_wep_key) * WEP_KEYS_MAX));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002826
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002827 for (i = 0; i < WEP_KEYS_MAX; i++) {
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002828 wep_cmd->key[i].key_idx = i;
2829 if (ctx->wep_keys[i].key_size) {
2830 wep_cmd->key[i].key_offset = i;
2831 not_empty = 1;
2832 } else {
2833 wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
2834 }
2835
2836 wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size;
2837 memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002838 ctx->wep_keys[i].key_size);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002839 }
2840
2841 wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
2842 wep_cmd->num_keys = WEP_KEYS_MAX;
2843
2844 cmd_size += sizeof(struct il_wep_key) * WEP_KEYS_MAX;
2845
2846 cmd.len = cmd_size;
2847
2848 if (not_empty || send_if_empty)
2849 return il_send_cmd(il, &cmd);
2850 else
2851 return 0;
2852}
2853
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002854int
2855il4965_restore_default_wep_keys(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002856{
2857 lockdep_assert_held(&il->mutex);
2858
2859 return il4965_static_wepkey_cmd(il, ctx, false);
2860}
2861
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002862int
2863il4965_remove_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2864 struct ieee80211_key_conf *keyconf)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002865{
2866 int ret;
2867
2868 lockdep_assert_held(&il->mutex);
2869
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002870 D_WEP("Removing default WEP key: idx=%d\n", keyconf->keyidx);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002871
2872 memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0]));
2873 if (il_is_rfkill(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002874 D_WEP("Not sending C_WEPKEY command due to RFKILL.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002875 /* but keys in device are clear anyway so return success */
2876 return 0;
2877 }
2878 ret = il4965_static_wepkey_cmd(il, ctx, 1);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002879 D_WEP("Remove default WEP key: idx=%d ret=%d\n", keyconf->keyidx, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002880
2881 return ret;
2882}
2883
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002884int
2885il4965_set_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2886 struct ieee80211_key_conf *keyconf)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002887{
2888 int ret;
2889
2890 lockdep_assert_held(&il->mutex);
2891
2892 if (keyconf->keylen != WEP_KEY_LEN_128 &&
2893 keyconf->keylen != WEP_KEY_LEN_64) {
2894 D_WEP("Bad WEP key length %d\n", keyconf->keylen);
2895 return -EINVAL;
2896 }
2897
2898 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2899 keyconf->hw_key_idx = HW_KEY_DEFAULT;
Stanislaw Gruszka8f9e5642012-02-03 17:31:43 +01002900 il->stations[IL_AP_ID].keyinfo.cipher = keyconf->cipher;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002901
2902 ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
2903 memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002904 keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002905
2906 ret = il4965_static_wepkey_cmd(il, ctx, false);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002907 D_WEP("Set default WEP key: len=%d idx=%d ret=%d\n", keyconf->keylen,
2908 keyconf->keyidx, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002909
2910 return ret;
2911}
2912
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002913static int
2914il4965_set_wep_dynamic_key_info(struct il_priv *il, struct il_rxon_context *ctx,
2915 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002916{
2917 unsigned long flags;
2918 __le16 key_flags = 0;
2919 struct il_addsta_cmd sta_cmd;
2920
2921 lockdep_assert_held(&il->mutex);
2922
2923 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2924
2925 key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
2926 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2927 key_flags &= ~STA_KEY_FLG_INVALID;
2928
2929 if (keyconf->keylen == WEP_KEY_LEN_128)
2930 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
2931
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01002932 if (sta_id == il->hw_params.bcast_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002933 key_flags |= STA_KEY_MULTICAST_MSK;
2934
2935 spin_lock_irqsave(&il->sta_lock, flags);
2936
2937 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2938 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2939 il->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
2940
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002941 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002942
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002943 memcpy(&il->stations[sta_id].sta.key.key[3], keyconf->key,
2944 keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002945
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002946 if ((il->stations[sta_id].sta.key.
2947 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002948 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002949 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002950 /* else, we are overriding an existing key => no need to allocated room
2951 * in uCode. */
2952
2953 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002954 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002955
2956 il->stations[sta_id].sta.key.key_flags = key_flags;
2957 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
2958 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
2959
2960 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002961 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002962 spin_unlock_irqrestore(&il->sta_lock, flags);
2963
2964 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
2965}
2966
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002967static int
2968il4965_set_ccmp_dynamic_key_info(struct il_priv *il,
2969 struct il_rxon_context *ctx,
2970 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002971{
2972 unsigned long flags;
2973 __le16 key_flags = 0;
2974 struct il_addsta_cmd sta_cmd;
2975
2976 lockdep_assert_held(&il->mutex);
2977
2978 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
2979 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2980 key_flags &= ~STA_KEY_FLG_INVALID;
2981
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01002982 if (sta_id == il->hw_params.bcast_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002983 key_flags |= STA_KEY_MULTICAST_MSK;
2984
2985 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2986
2987 spin_lock_irqsave(&il->sta_lock, flags);
2988 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2989 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2990
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002991 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002992
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002993 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002994
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002995 if ((il->stations[sta_id].sta.key.
2996 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002997 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002998 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002999 /* else, we are overriding an existing key => no need to allocated room
3000 * in uCode. */
3001
3002 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003003 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003004
3005 il->stations[sta_id].sta.key.key_flags = key_flags;
3006 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3007 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3008
3009 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003010 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003011 spin_unlock_irqrestore(&il->sta_lock, flags);
3012
3013 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3014}
3015
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003016static int
3017il4965_set_tkip_dynamic_key_info(struct il_priv *il,
3018 struct il_rxon_context *ctx,
3019 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003020{
3021 unsigned long flags;
3022 int ret = 0;
3023 __le16 key_flags = 0;
3024
3025 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
3026 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3027 key_flags &= ~STA_KEY_FLG_INVALID;
3028
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01003029 if (sta_id == il->hw_params.bcast_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003030 key_flags |= STA_KEY_MULTICAST_MSK;
3031
3032 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3033 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
3034
3035 spin_lock_irqsave(&il->sta_lock, flags);
3036
3037 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
3038 il->stations[sta_id].keyinfo.keylen = 16;
3039
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003040 if ((il->stations[sta_id].sta.key.
3041 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003042 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003043 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003044 /* else, we are overriding an existing key => no need to allocated room
3045 * in uCode. */
3046
3047 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003048 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003049
3050 il->stations[sta_id].sta.key.key_flags = key_flags;
3051
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003052 /* This copy is acutally not needed: we get the key with each TX */
3053 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, 16);
3054
3055 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, 16);
3056
3057 spin_unlock_irqrestore(&il->sta_lock, flags);
3058
3059 return ret;
3060}
3061
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003062void
3063il4965_update_tkip_key(struct il_priv *il, struct il_rxon_context *ctx,
3064 struct ieee80211_key_conf *keyconf,
3065 struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003066{
3067 u8 sta_id;
3068 unsigned long flags;
3069 int i;
3070
3071 if (il_scan_cancel(il)) {
3072 /* cancel scan failed, just live w/ bad key and rely
3073 briefly on SW decryption */
3074 return;
3075 }
3076
3077 sta_id = il_sta_id_or_broadcast(il, ctx, sta);
3078 if (sta_id == IL_INVALID_STATION)
3079 return;
3080
3081 spin_lock_irqsave(&il->sta_lock, flags);
3082
3083 il->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
3084
3085 for (i = 0; i < 5; i++)
3086 il->stations[sta_id].sta.key.tkip_rx_ttak[i] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003087 cpu_to_le16(phase1key[i]);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003088
3089 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3090 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3091
3092 il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
3093
3094 spin_unlock_irqrestore(&il->sta_lock, flags);
3095
3096}
3097
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003098int
3099il4965_remove_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3100 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003101{
3102 unsigned long flags;
3103 u16 key_flags;
3104 u8 keyidx;
3105 struct il_addsta_cmd sta_cmd;
3106
3107 lockdep_assert_held(&il->mutex);
3108
3109 ctx->key_mapping_keys--;
3110
3111 spin_lock_irqsave(&il->sta_lock, flags);
3112 key_flags = le16_to_cpu(il->stations[sta_id].sta.key.key_flags);
3113 keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
3114
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003115 D_WEP("Remove dynamic key: idx=%d sta=%d\n", keyconf->keyidx, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003116
3117 if (keyconf->keyidx != keyidx) {
3118 /* We need to remove a key with idx different that the one
3119 * in the uCode. This means that the key we need to remove has
3120 * been replaced by another one with different idx.
3121 * Don't do anything and return ok
3122 */
3123 spin_unlock_irqrestore(&il->sta_lock, flags);
3124 return 0;
3125 }
3126
3127 if (il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003128 IL_WARN("Removing wrong key %d 0x%x\n", keyconf->keyidx,
3129 key_flags);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003130 spin_unlock_irqrestore(&il->sta_lock, flags);
3131 return 0;
3132 }
3133
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003134 if (!test_and_clear_bit
3135 (il->stations[sta_id].sta.key.key_offset, &il->ucode_key_table))
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003136 IL_ERR("idx %d not used in uCode key table.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003137 il->stations[sta_id].sta.key.key_offset);
3138 memset(&il->stations[sta_id].keyinfo, 0, sizeof(struct il_hw_key));
3139 memset(&il->stations[sta_id].sta.key, 0, sizeof(struct il4965_keyinfo));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003140 il->stations[sta_id].sta.key.key_flags =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003141 STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003142 il->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
3143 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3144 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3145
3146 if (il_is_rfkill(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003147 D_WEP
3148 ("Not sending C_ADD_STA command because RFKILL enabled.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003149 spin_unlock_irqrestore(&il->sta_lock, flags);
3150 return 0;
3151 }
3152 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003153 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003154 spin_unlock_irqrestore(&il->sta_lock, flags);
3155
3156 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3157}
3158
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003159int
3160il4965_set_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3161 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003162{
3163 int ret;
3164
3165 lockdep_assert_held(&il->mutex);
3166
3167 ctx->key_mapping_keys++;
3168 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
3169
3170 switch (keyconf->cipher) {
3171 case WLAN_CIPHER_SUITE_CCMP:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003172 ret =
3173 il4965_set_ccmp_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003174 break;
3175 case WLAN_CIPHER_SUITE_TKIP:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003176 ret =
3177 il4965_set_tkip_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003178 break;
3179 case WLAN_CIPHER_SUITE_WEP40:
3180 case WLAN_CIPHER_SUITE_WEP104:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003181 ret = il4965_set_wep_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003182 break;
3183 default:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003184 IL_ERR("Unknown alg: %s cipher = %x\n", __func__,
3185 keyconf->cipher);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003186 ret = -EINVAL;
3187 }
3188
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003189 D_WEP("Set dynamic key: cipher=%x len=%d idx=%d sta=%d ret=%d\n",
3190 keyconf->cipher, keyconf->keylen, keyconf->keyidx, sta_id, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003191
3192 return ret;
3193}
3194
3195/**
3196 * il4965_alloc_bcast_station - add broadcast station into driver's station table.
3197 *
3198 * This adds the broadcast station into the driver's station table
3199 * and marks it driver active, so that it will be restored to the
3200 * device at the next best time.
3201 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003202int
3203il4965_alloc_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003204{
3205 struct il_link_quality_cmd *link_cmd;
3206 unsigned long flags;
3207 u8 sta_id;
3208
3209 spin_lock_irqsave(&il->sta_lock, flags);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003210 sta_id = il_prep_station(il, ctx, il_bcast_addr, false, NULL);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003211 if (sta_id == IL_INVALID_STATION) {
3212 IL_ERR("Unable to prepare broadcast station\n");
3213 spin_unlock_irqrestore(&il->sta_lock, flags);
3214
3215 return -EINVAL;
3216 }
3217
3218 il->stations[sta_id].used |= IL_STA_DRIVER_ACTIVE;
3219 il->stations[sta_id].used |= IL_STA_BCAST;
3220 spin_unlock_irqrestore(&il->sta_lock, flags);
3221
3222 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3223 if (!link_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003224 IL_ERR
3225 ("Unable to initialize rate scaling for bcast station.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003226 return -ENOMEM;
3227 }
3228
3229 spin_lock_irqsave(&il->sta_lock, flags);
3230 il->stations[sta_id].lq = link_cmd;
3231 spin_unlock_irqrestore(&il->sta_lock, flags);
3232
3233 return 0;
3234}
3235
3236/**
3237 * il4965_update_bcast_station - update broadcast station's LQ command
3238 *
3239 * Only used by iwl4965. Placed here to have all bcast station management
3240 * code together.
3241 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003242static int
3243il4965_update_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003244{
3245 unsigned long flags;
3246 struct il_link_quality_cmd *link_cmd;
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01003247 u8 sta_id = il->hw_params.bcast_id;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003248
3249 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3250 if (!link_cmd) {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003251 IL_ERR("Unable to initialize rate scaling for bcast sta.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003252 return -ENOMEM;
3253 }
3254
3255 spin_lock_irqsave(&il->sta_lock, flags);
3256 if (il->stations[sta_id].lq)
3257 kfree(il->stations[sta_id].lq);
3258 else
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003259 D_INFO("Bcast sta rate scaling has not been initialized.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003260 il->stations[sta_id].lq = link_cmd;
3261 spin_unlock_irqrestore(&il->sta_lock, flags);
3262
3263 return 0;
3264}
3265
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003266int
3267il4965_update_bcast_stations(struct il_priv *il)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003268{
3269 return il4965_update_bcast_station(il, &il->ctx);
3270}
3271
3272/**
3273 * il4965_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
3274 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003275int
3276il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003277{
3278 unsigned long flags;
3279 struct il_addsta_cmd sta_cmd;
3280
3281 lockdep_assert_held(&il->mutex);
3282
3283 /* Remove "disable" flag, to enable Tx for this TID */
3284 spin_lock_irqsave(&il->sta_lock, flags);
3285 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3286 il->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3287 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3288 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003289 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003290 spin_unlock_irqrestore(&il->sta_lock, flags);
3291
3292 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3293}
3294
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003295int
3296il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta, int tid,
3297 u16 ssn)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003298{
3299 unsigned long flags;
3300 int sta_id;
3301 struct il_addsta_cmd sta_cmd;
3302
3303 lockdep_assert_held(&il->mutex);
3304
3305 sta_id = il_sta_id(sta);
3306 if (sta_id == IL_INVALID_STATION)
3307 return -ENXIO;
3308
3309 spin_lock_irqsave(&il->sta_lock, flags);
3310 il->stations[sta_id].sta.station_flags_msk = 0;
3311 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003312 il->stations[sta_id].sta.add_immediate_ba_tid = (u8) tid;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003313 il->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3314 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3315 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003316 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003317 spin_unlock_irqrestore(&il->sta_lock, flags);
3318
3319 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3320}
3321
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003322int
3323il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta, int tid)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003324{
3325 unsigned long flags;
3326 int sta_id;
3327 struct il_addsta_cmd sta_cmd;
3328
3329 lockdep_assert_held(&il->mutex);
3330
3331 sta_id = il_sta_id(sta);
3332 if (sta_id == IL_INVALID_STATION) {
3333 IL_ERR("Invalid station for AGG tid %d\n", tid);
3334 return -ENXIO;
3335 }
3336
3337 spin_lock_irqsave(&il->sta_lock, flags);
3338 il->stations[sta_id].sta.station_flags_msk = 0;
3339 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003340 il->stations[sta_id].sta.remove_immediate_ba_tid = (u8) tid;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003341 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3342 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003343 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003344 spin_unlock_irqrestore(&il->sta_lock, flags);
3345
3346 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3347}
3348
3349void
3350il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt)
3351{
3352 unsigned long flags;
3353
3354 spin_lock_irqsave(&il->sta_lock, flags);
3355 il->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
3356 il->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
3357 il->stations[sta_id].sta.sta.modify_mask =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003358 STA_MODIFY_SLEEP_TX_COUNT_MSK;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003359 il->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
3360 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003361 il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003362 spin_unlock_irqrestore(&il->sta_lock, flags);
3363
3364}
3365
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003366void
3367il4965_update_chain_flags(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003368{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003369 if (il->cfg->ops->hcmd->set_rxon_chain) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003370 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01003371 if (il->active.rx_chain != il->staging.rx_chain)
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003372 il_commit_rxon(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003373 }
3374}
3375
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003376static void
3377il4965_clear_free_frames(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003378{
3379 struct list_head *element;
3380
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003381 D_INFO("%d frames on pre-allocated heap on clear.\n", il->frames_count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003382
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003383 while (!list_empty(&il->free_frames)) {
3384 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003385 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003386 kfree(list_entry(element, struct il_frame, list));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003387 il->frames_count--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003388 }
3389
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003390 if (il->frames_count) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003391 IL_WARN("%d frames still in use. Did we lose one?\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003392 il->frames_count);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003393 il->frames_count = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003394 }
3395}
3396
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003397static struct il_frame *
3398il4965_get_free_frame(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003399{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003400 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003401 struct list_head *element;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003402 if (list_empty(&il->free_frames)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003403 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
3404 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003405 IL_ERR("Could not allocate frame!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003406 return NULL;
3407 }
3408
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003409 il->frames_count++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003410 return frame;
3411 }
3412
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003413 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003414 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003415 return list_entry(element, struct il_frame, list);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003416}
3417
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003418static void
3419il4965_free_frame(struct il_priv *il, struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003420{
3421 memset(frame, 0, sizeof(*frame));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003422 list_add(&frame->list, &il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003423}
3424
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003425static u32
3426il4965_fill_beacon_frame(struct il_priv *il, struct ieee80211_hdr *hdr,
3427 int left)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003428{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003429 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003430
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003431 if (!il->beacon_skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003432 return 0;
3433
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003434 if (il->beacon_skb->len > left)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003435 return 0;
3436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003437 memcpy(hdr, il->beacon_skb->data, il->beacon_skb->len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003438
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003439 return il->beacon_skb->len;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003440}
3441
3442/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003443static void
3444il4965_set_beacon_tim(struct il_priv *il,
3445 struct il_tx_beacon_cmd *tx_beacon_cmd, u8 * beacon,
3446 u32 frame_size)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003447{
3448 u16 tim_idx;
3449 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
3450
3451 /*
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003452 * The idx is relative to frame start but we start looking at the
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003453 * variable-length part of the beacon.
3454 */
3455 tim_idx = mgmt->u.beacon.variable - beacon;
3456
3457 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
3458 while ((tim_idx < (frame_size - 2)) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003459 (beacon[tim_idx] != WLAN_EID_TIM))
3460 tim_idx += beacon[tim_idx + 1] + 2;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003461
3462 /* If TIM field was found, set variables */
3463 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
3464 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003465 tx_beacon_cmd->tim_size = beacon[tim_idx + 1];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003466 } else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003467 IL_WARN("Unable to find TIM Element in beacon\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003468}
3469
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003470static unsigned int
3471il4965_hw_get_beacon_cmd(struct il_priv *il, struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003472{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003473 struct il_tx_beacon_cmd *tx_beacon_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003474 u32 frame_size;
3475 u32 rate_flags;
3476 u32 rate;
3477 /*
3478 * We have to set up the TX command, the TX Beacon command, and the
3479 * beacon contents.
3480 */
3481
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003482 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003483
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003484 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003485 IL_ERR("trying to build beacon w/o beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003486 return 0;
3487 }
3488
3489 /* Initialize memory */
3490 tx_beacon_cmd = &frame->u.beacon;
3491 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
3492
3493 /* Set up TX beacon contents */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003494 frame_size =
3495 il4965_fill_beacon_frame(il, tx_beacon_cmd->frame,
3496 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003497 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
3498 return 0;
3499 if (!frame_size)
3500 return 0;
3501
3502 /* Set up TX command fields */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003503 tx_beacon_cmd->tx.len = cpu_to_le16((u16) frame_size);
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01003504 tx_beacon_cmd->tx.sta_id = il->hw_params.bcast_id;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003505 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003506 tx_beacon_cmd->tx.tx_flags =
3507 TX_CMD_FLG_SEQ_CTL_MSK | TX_CMD_FLG_TSF_MSK |
3508 TX_CMD_FLG_STA_RATE_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003509
3510 /* Set up TX beacon command fields */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003511 il4965_set_beacon_tim(il, tx_beacon_cmd, (u8 *) tx_beacon_cmd->frame,
3512 frame_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003513
3514 /* Set up packet rate and flags */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003515 rate = il_get_lowest_plcp(il, il->beacon_ctx);
Stanislaw Gruszkaa0c1ef32011-12-23 08:13:44 +01003516 il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant);
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01003517 rate_flags = BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003518 if ((rate >= IL_FIRST_CCK_RATE) && (rate <= IL_LAST_CCK_RATE))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003519 rate_flags |= RATE_MCS_CCK_MSK;
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01003520 tx_beacon_cmd->tx.rate_n_flags = cpu_to_le32(rate | rate_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003521
3522 return sizeof(*tx_beacon_cmd) + frame_size;
3523}
3524
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003525int
3526il4965_send_beacon_cmd(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003527{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003528 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003529 unsigned int frame_size;
3530 int rc;
3531
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003532 frame = il4965_get_free_frame(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003533 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003534 IL_ERR("Could not obtain free frame buffer for beacon "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003535 "command.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003536 return -ENOMEM;
3537 }
3538
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003539 frame_size = il4965_hw_get_beacon_cmd(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003540 if (!frame_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003541 IL_ERR("Error configuring the beacon command\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003542 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003543 return -EINVAL;
3544 }
3545
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003546 rc = il_send_cmd_pdu(il, C_TX_BEACON, frame_size, &frame->u.cmd[0]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003547
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003548 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003549
3550 return rc;
3551}
3552
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003553static inline dma_addr_t
3554il4965_tfd_tb_get_addr(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003555{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003556 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003557
3558 dma_addr_t addr = get_unaligned_le32(&tb->lo);
3559 if (sizeof(dma_addr_t) > sizeof(u32))
3560 addr |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003561 ((dma_addr_t) (le16_to_cpu(tb->hi_n_len) & 0xF) << 16) <<
3562 16;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003563
3564 return addr;
3565}
3566
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003567static inline u16
3568il4965_tfd_tb_get_len(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003569{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003570 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003571
3572 return le16_to_cpu(tb->hi_n_len) >> 4;
3573}
3574
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003575static inline void
3576il4965_tfd_set_tb(struct il_tfd *tfd, u8 idx, dma_addr_t addr, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003577{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003578 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003579 u16 hi_n_len = len << 4;
3580
3581 put_unaligned_le32(addr, &tb->lo);
3582 if (sizeof(dma_addr_t) > sizeof(u32))
3583 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
3584
3585 tb->hi_n_len = cpu_to_le16(hi_n_len);
3586
3587 tfd->num_tbs = idx + 1;
3588}
3589
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003590static inline u8
3591il4965_tfd_get_num_tbs(struct il_tfd *tfd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003592{
3593 return tfd->num_tbs & 0x1f;
3594}
3595
3596/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003597 * il4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003598 * @il - driver ilate data
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003599 * @txq - tx queue
3600 *
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003601 * Does NOT advance any TFD circular buffer read/write idxes
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003602 * Does NOT free the TFD itself (which is within circular buffer)
3603 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003604void
3605il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003606{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003607 struct il_tfd *tfd_tmp = (struct il_tfd *)txq->tfds;
3608 struct il_tfd *tfd;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003609 struct pci_dev *dev = il->pci_dev;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003610 int idx = txq->q.read_ptr;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003611 int i;
3612 int num_tbs;
3613
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003614 tfd = &tfd_tmp[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003615
3616 /* Sanity check on number of chunks */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003617 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003618
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003619 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003620 IL_ERR("Too many chunks: %i\n", num_tbs);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003621 /* @todo issue fatal error, it is quite serious situation */
3622 return;
3623 }
3624
3625 /* Unmap tx_cmd */
3626 if (num_tbs)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003627 pci_unmap_single(dev, dma_unmap_addr(&txq->meta[idx], mapping),
3628 dma_unmap_len(&txq->meta[idx], len),
3629 PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003630
3631 /* Unmap chunks, if any. */
3632 for (i = 1; i < num_tbs; i++)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003633 pci_unmap_single(dev, il4965_tfd_tb_get_addr(tfd, i),
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003634 il4965_tfd_tb_get_len(tfd, i),
3635 PCI_DMA_TODEVICE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003636
3637 /* free SKB */
3638 if (txq->txb) {
3639 struct sk_buff *skb;
3640
3641 skb = txq->txb[txq->q.read_ptr].skb;
3642
3643 /* can be called from irqs-disabled context */
3644 if (skb) {
3645 dev_kfree_skb_any(skb);
3646 txq->txb[txq->q.read_ptr].skb = NULL;
3647 }
3648 }
3649}
3650
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003651int
3652il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, struct il_tx_queue *txq,
3653 dma_addr_t addr, u16 len, u8 reset, u8 pad)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003654{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003655 struct il_queue *q;
3656 struct il_tfd *tfd, *tfd_tmp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003657 u32 num_tbs;
3658
3659 q = &txq->q;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003660 tfd_tmp = (struct il_tfd *)txq->tfds;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003661 tfd = &tfd_tmp[q->write_ptr];
3662
3663 if (reset)
3664 memset(tfd, 0, sizeof(*tfd));
3665
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003666 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003667
3668 /* Each TFD can point to a maximum 20 Tx buffers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003669 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003670 IL_ERR("Error can not send more than %d chunks\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003671 IL_NUM_OF_TBS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003672 return -EINVAL;
3673 }
3674
3675 BUG_ON(addr & ~DMA_BIT_MASK(36));
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003676 if (unlikely(addr & ~IL_TX_DMA_MASK))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003677 IL_ERR("Unaligned address = %llx\n", (unsigned long long)addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003678
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003679 il4965_tfd_set_tb(tfd, num_tbs, addr, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003680
3681 return 0;
3682}
3683
3684/*
3685 * Tell nic where to find circular buffer of Tx Frame Descriptors for
3686 * given Tx queue, and enable the DMA channel used for that queue.
3687 *
3688 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
3689 * channels supported in hardware.
3690 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003691int
3692il4965_hw_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003693{
3694 int txq_id = txq->q.id;
3695
3696 /* Circular buffer (TFD queue in DRAM) physical base address */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003697 il_wr(il, FH49_MEM_CBBC_QUEUE(txq_id), txq->q.dma_addr >> 8);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003698
3699 return 0;
3700}
3701
3702/******************************************************************************
3703 *
3704 * Generic RX handler implementations
3705 *
3706 ******************************************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003707static void
3708il4965_hdl_alive(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003709{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003710 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003711 struct il_alive_resp *palive;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003712 struct delayed_work *pwork;
3713
3714 palive = &pkt->u.alive_frame;
3715
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003716 D_INFO("Alive ucode status 0x%08X revision " "0x%01X 0x%01X\n",
3717 palive->is_valid, palive->ver_type, palive->ver_subtype);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003718
3719 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003720 D_INFO("Initialization Alive received.\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003721 memcpy(&il->card_alive_init, &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003722 sizeof(struct il_init_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003723 pwork = &il->init_alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003724 } else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003725 D_INFO("Runtime Alive received.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003726 memcpy(&il->card_alive, &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003727 sizeof(struct il_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003728 pwork = &il->alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003729 }
3730
3731 /* We delay the ALIVE response by 5ms to
3732 * give the HW RF Kill time to activate... */
3733 if (palive->is_valid == UCODE_VALID_OK)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003734 queue_delayed_work(il->workqueue, pwork, msecs_to_jiffies(5));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003735 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003736 IL_WARN("uCode did not respond OK.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003737}
3738
3739/**
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003740 * il4965_bg_stats_periodic - Timer callback to queue stats
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003741 *
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003742 * This callback is provided in order to send a stats request.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003743 *
3744 * This timer function is continually reset to execute within
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02003745 * REG_RECALIB_PERIOD seconds since the last N_STATS
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003746 * was received. We need to ensure we receive the stats in order
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003747 * to update the temperature used for calibrating the TXPOWER.
3748 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003749static void
3750il4965_bg_stats_periodic(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003751{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003752 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003753
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003754 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003755 return;
3756
3757 /* dont send host command if rf-kill is on */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003758 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003759 return;
3760
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003761 il_send_stats_request(il, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003762}
3763
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003764static void
3765il4965_hdl_beacon(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003766{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003767 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003768 struct il4965_beacon_notif *beacon =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003769 (struct il4965_beacon_notif *)pkt->u.raw;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003770#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003771 u8 rate = il4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003772
Stanislaw Gruszka5bf0dac2011-12-23 08:13:47 +01003773 D_RX("beacon status %x retries %d iss %d tsf:0x%.8x%.8x rate %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003774 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
3775 beacon->beacon_notify_hdr.failure_frame,
3776 le32_to_cpu(beacon->ibss_mgr_status),
3777 le32_to_cpu(beacon->high_tsf), le32_to_cpu(beacon->low_tsf), rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003778#endif
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003779 il->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003780}
3781
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003782static void
3783il4965_perform_ct_kill_task(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003784{
3785 unsigned long flags;
3786
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003787 D_POWER("Stop all queues\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003788
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003789 if (il->mac80211_registered)
3790 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003791
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003792 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003793 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003794 _il_rd(il, CSR_UCODE_DRV_GP1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003795
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003796 spin_lock_irqsave(&il->reg_lock, flags);
Stanislaw Gruszka13882262011-08-24 15:39:23 +02003797 if (!_il_grab_nic_access(il))
3798 _il_release_nic_access(il);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003799 spin_unlock_irqrestore(&il->reg_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003800}
3801
3802/* Handle notification from uCode that card's power state is changing
3803 * due to software, hardware, or critical temperature RFKILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003804static void
3805il4965_hdl_card_state(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003806{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003807 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003808 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003809 unsigned long status = il->status;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003810
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003811 D_RF_KILL("Card state received: HW:%s SW:%s CT:%s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003812 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3813 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
3814 (flags & CT_CARD_DISABLED) ? "Reached" : "Not reached");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003815
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003816 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | CT_CARD_DISABLED)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003817
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003818 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003819 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003820
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003821 il_wr(il, HBUS_TARG_MBX_C, HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003822
3823 if (!(flags & RXON_CARD_DISABLED)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003824 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003825 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02003826 il_wr(il, HBUS_TARG_MBX_C,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003827 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003828 }
3829 }
3830
3831 if (flags & CT_CARD_DISABLED)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003832 il4965_perform_ct_kill_task(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003833
3834 if (flags & HW_CARD_DISABLED)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003835 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003836 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003837 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003838
3839 if (!(flags & RXON_CARD_DISABLED))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003840 il_scan_cancel(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003841
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003842 if ((test_bit(S_RF_KILL_HW, &status) !=
3843 test_bit(S_RF_KILL_HW, &il->status)))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003844 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003845 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003846 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003847 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003848}
3849
3850/**
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003851 * il4965_setup_handlers - Initialize Rx handler callbacks
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003852 *
3853 * Setup the RX handlers for each of the reply types sent from the uCode
3854 * to the host.
3855 *
3856 * This function chains into the hardware specific files for them to setup
3857 * any hardware specific handlers as well.
3858 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003859static void
3860il4965_setup_handlers(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003861{
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003862 il->handlers[N_ALIVE] = il4965_hdl_alive;
3863 il->handlers[N_ERROR] = il_hdl_error;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003864 il->handlers[N_CHANNEL_SWITCH] = il_hdl_csa;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003865 il->handlers[N_SPECTRUM_MEASUREMENT] = il_hdl_spectrum_measurement;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003866 il->handlers[N_PM_SLEEP] = il_hdl_pm_sleep;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003867 il->handlers[N_PM_DEBUG_STATS] = il_hdl_pm_debug_stats;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003868 il->handlers[N_BEACON] = il4965_hdl_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003869
3870 /*
3871 * The same handler is used for both the REPLY to a discrete
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003872 * stats request from the host as well as for the periodic
3873 * stats notifications (after received beacons) from the uCode.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003874 */
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003875 il->handlers[C_STATS] = il4965_hdl_c_stats;
3876 il->handlers[N_STATS] = il4965_hdl_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003877
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003878 il_setup_rx_scan_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003879
3880 /* status change handler */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003881 il->handlers[N_CARD_STATE] = il4965_hdl_card_state;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003882
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003883 il->handlers[N_MISSED_BEACONS] = il4965_hdl_missed_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003884 /* Rx handlers */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003885 il->handlers[N_RX_PHY] = il4965_hdl_rx_phy;
3886 il->handlers[N_RX_MPDU] = il4965_hdl_rx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003887 /* block ack */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003888 il->handlers[N_COMPRESSED_BA] = il4965_hdl_compressed_ba;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003889 /* Set up hardware specific Rx handlers */
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003890 il->cfg->ops->lib->handler_setup(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003891}
3892
3893/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003894 * il4965_rx_handle - Main entry function for receiving responses from uCode
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003895 *
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003896 * Uses the il->handlers callback function array to invoke
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003897 * the appropriate handlers, including command responses,
3898 * frame-received notifications, and other notifications.
3899 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003900void
3901il4965_rx_handle(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003902{
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003903 struct il_rx_buf *rxb;
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003904 struct il_rx_pkt *pkt;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003905 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003906 u32 r, i;
3907 int reclaim;
3908 unsigned long flags;
3909 u8 fill_rx = 0;
3910 u32 count = 8;
3911 int total_empty;
3912
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003913 /* uCode's read idx (stored in shared DRAM) indicates the last Rx
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003914 * buffer that the driver may process (last buffer filled by ucode). */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003915 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003916 i = rxq->read;
3917
3918 /* Rx interrupt, but nothing sent from uCode */
3919 if (i == r)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003920 D_RX("r = %d, i = %d\n", r, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003921
3922 /* calculate total frames need to be restock after handling RX */
3923 total_empty = r - rxq->write_actual;
3924 if (total_empty < 0)
3925 total_empty += RX_QUEUE_SIZE;
3926
3927 if (total_empty > (RX_QUEUE_SIZE / 2))
3928 fill_rx = 1;
3929
3930 while (i != r) {
3931 int len;
3932
3933 rxb = rxq->queue[i];
3934
3935 /* If an RXB doesn't have a Rx queue slot associated with it,
3936 * then a bug has been introduced in the queue refilling
3937 * routines -- catch it here */
3938 BUG_ON(rxb == NULL);
3939
3940 rxq->queue[i] = NULL;
3941
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003942 pci_unmap_page(il->pci_dev, rxb->page_dma,
3943 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003944 PCI_DMA_FROMDEVICE);
3945 pkt = rxb_addr(rxb);
3946
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02003947 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003948 len += sizeof(u32); /* account for status word */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003949
3950 /* Reclaim a command buffer only if this packet is a response
3951 * to a (driver-originated) command.
3952 * If the packet (e.g. Rx frame) originated from uCode,
3953 * there is no command buffer to reclaim.
3954 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3955 * but apparently a few don't get set; catch them here. */
3956 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003957 (pkt->hdr.cmd != N_RX_PHY) && (pkt->hdr.cmd != N_RX) &&
3958 (pkt->hdr.cmd != N_RX_MPDU) &&
3959 (pkt->hdr.cmd != N_COMPRESSED_BA) &&
3960 (pkt->hdr.cmd != N_STATS) && (pkt->hdr.cmd != C_TX);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003961
3962 /* Based on type of command response or notification,
3963 * handle those that need handling via function in
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003964 * handlers table. See il4965_setup_handlers() */
3965 if (il->handlers[pkt->hdr.cmd]) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003966 D_RX("r = %d, i = %d, %s, 0x%02x\n", r, i,
3967 il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003968 il->isr_stats.handlers[pkt->hdr.cmd]++;
3969 il->handlers[pkt->hdr.cmd] (il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003970 } else {
3971 /* No handling needed */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003972 D_RX("r %d i %d No handler needed for %s, 0x%02x\n", r,
3973 i, il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003974 }
3975
3976 /*
3977 * XXX: After here, we should always check rxb->page
3978 * against NULL before touching it or its virtual
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003979 * memory (pkt). Because some handler might have
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003980 * already taken or freed the pages.
3981 */
3982
3983 if (reclaim) {
3984 /* Invoke any callbacks, transfer the buffer to caller,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003985 * and fire off the (possibly) blocking il_send_cmd()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003986 * as we reclaim the driver command queue */
3987 if (rxb->page)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003988 il_tx_cmd_complete(il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003989 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003990 IL_WARN("Claim null rxb?\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003991 }
3992
3993 /* Reuse the page if possible. For notification packets and
3994 * SKBs that fail to Rx correctly, add them back into the
3995 * rx_free list for reuse later. */
3996 spin_lock_irqsave(&rxq->lock, flags);
3997 if (rxb->page != NULL) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003998 rxb->page_dma =
3999 pci_map_page(il->pci_dev, rxb->page, 0,
4000 PAGE_SIZE << il->hw_params.
4001 rx_page_order, PCI_DMA_FROMDEVICE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004002 list_add_tail(&rxb->list, &rxq->rx_free);
4003 rxq->free_count++;
4004 } else
4005 list_add_tail(&rxb->list, &rxq->rx_used);
4006
4007 spin_unlock_irqrestore(&rxq->lock, flags);
4008
4009 i = (i + 1) & RX_QUEUE_MASK;
4010 /* If there are a lot of unused frames,
4011 * restock the Rx queue so ucode wont assert. */
4012 if (fill_rx) {
4013 count++;
4014 if (count >= 8) {
4015 rxq->read = i;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004016 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004017 count = 0;
4018 }
4019 }
4020 }
4021
4022 /* Backtrack one entry */
4023 rxq->read = i;
4024 if (fill_rx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004025 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004026 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004027 il4965_rx_queue_restock(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004028}
4029
4030/* call this function to flush any scheduled tasklet */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004031static inline void
4032il4965_synchronize_irq(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004033{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004034 /* wait to make sure we flush pending tasklet */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004035 synchronize_irq(il->pci_dev->irq);
4036 tasklet_kill(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004037}
4038
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004039static void
4040il4965_irq_tasklet(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004041{
4042 u32 inta, handled = 0;
4043 u32 inta_fh;
4044 unsigned long flags;
4045 u32 i;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004046#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004047 u32 inta_mask;
4048#endif
4049
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004050 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004051
4052 /* Ack/clear/reset pending uCode interrupts.
4053 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4054 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004055 inta = _il_rd(il, CSR_INT);
4056 _il_wr(il, CSR_INT, inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004057
4058 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4059 * Any new interrupts that happen after this, either while we're
4060 * in this tasklet, or later, will show up in next ISR/tasklet. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004061 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
4062 _il_wr(il, CSR_FH_INT_STATUS, inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004063
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004064#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004065 if (il_get_debug_level(il) & IL_DL_ISR) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004066 /* just for debug */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004067 inta_mask = _il_rd(il, CSR_INT_MASK);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004068 D_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta,
4069 inta_mask, inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004070 }
4071#endif
4072
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004073 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004074
4075 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4076 * atomic, make sure that inta covers all the interrupts that
4077 * we've discovered, even if FH interrupt came in just after
4078 * reading CSR_INT. */
4079 if (inta_fh & CSR49_FH_INT_RX_MASK)
4080 inta |= CSR_INT_BIT_FH_RX;
4081 if (inta_fh & CSR49_FH_INT_TX_MASK)
4082 inta |= CSR_INT_BIT_FH_TX;
4083
4084 /* Now service all interrupt bits discovered above. */
4085 if (inta & CSR_INT_BIT_HW_ERR) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004086 IL_ERR("Hardware error detected. Restarting.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004087
4088 /* Tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004089 il_disable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004090
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004091 il->isr_stats.hw++;
4092 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004093
4094 handled |= CSR_INT_BIT_HW_ERR;
4095
4096 return;
4097 }
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004098#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004099 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004100 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4101 if (inta & CSR_INT_BIT_SCD) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004102 D_ISR("Scheduler finished to transmit "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004103 "the frame/frames.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004104 il->isr_stats.sch++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004105 }
4106
4107 /* Alive notification via Rx interrupt will do the real work */
4108 if (inta & CSR_INT_BIT_ALIVE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004109 D_ISR("Alive interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004110 il->isr_stats.alive++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004111 }
4112 }
4113#endif
4114 /* Safely ignore these bits for debug checks below */
4115 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
4116
4117 /* HW RF KILL switch toggled */
4118 if (inta & CSR_INT_BIT_RF_KILL) {
4119 int hw_rf_kill = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004120 if (!
4121 (_il_rd(il, CSR_GP_CNTRL) &
4122 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004123 hw_rf_kill = 1;
4124
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004125 IL_WARN("RF_KILL bit toggled to %s.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004126 hw_rf_kill ? "disable radio" : "enable radio");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004127
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004128 il->isr_stats.rfkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004129
4130 /* driver only loads ucode once setting the interface up.
4131 * the driver allows loading the ucode even if the radio
4132 * is killed. Hence update the killswitch state here. The
4133 * rfkill handler will care about restarting if needed.
4134 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004135 if (!test_bit(S_ALIVE, &il->status)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004136 if (hw_rf_kill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004137 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004138 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004139 clear_bit(S_RF_KILL_HW, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004140 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rf_kill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004141 }
4142
4143 handled |= CSR_INT_BIT_RF_KILL;
4144 }
4145
4146 /* Chip got too hot and stopped itself */
4147 if (inta & CSR_INT_BIT_CT_KILL) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004148 IL_ERR("Microcode CT kill error detected.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004149 il->isr_stats.ctkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004150 handled |= CSR_INT_BIT_CT_KILL;
4151 }
4152
4153 /* Error detected by uCode */
4154 if (inta & CSR_INT_BIT_SW_ERR) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004155 IL_ERR("Microcode SW error detected. " " Restarting 0x%X.\n",
4156 inta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004157 il->isr_stats.sw++;
4158 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004159 handled |= CSR_INT_BIT_SW_ERR;
4160 }
4161
4162 /*
4163 * uCode wakes up after power-down sleep.
4164 * Tell device about any new tx or host commands enqueued,
4165 * and about any Rx buffers made available while asleep.
4166 */
4167 if (inta & CSR_INT_BIT_WAKEUP) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004168 D_ISR("Wakeup interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004169 il_rx_queue_update_write_ptr(il, &il->rxq);
4170 for (i = 0; i < il->hw_params.max_txq_num; i++)
4171 il_txq_update_write_ptr(il, &il->txq[i]);
4172 il->isr_stats.wakeup++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004173 handled |= CSR_INT_BIT_WAKEUP;
4174 }
4175
4176 /* All uCode command responses, including Tx command responses,
4177 * Rx "responses" (frame-received notification), and other
4178 * notifications from uCode come through here*/
4179 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004180 il4965_rx_handle(il);
4181 il->isr_stats.rx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004182 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4183 }
4184
4185 /* This "Tx" DMA channel is used only for loading uCode */
4186 if (inta & CSR_INT_BIT_FH_TX) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004187 D_ISR("uCode load interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004188 il->isr_stats.tx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004189 handled |= CSR_INT_BIT_FH_TX;
4190 /* Wake up uCode load routine, now that load is complete */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004191 il->ucode_write_complete = 1;
4192 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004193 }
4194
4195 if (inta & ~handled) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004196 IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004197 il->isr_stats.unhandled++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004198 }
4199
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004200 if (inta & ~(il->inta_mask)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004201 IL_WARN("Disabled INTA bits 0x%08x were pending\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004202 inta & ~il->inta_mask);
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004203 IL_WARN(" with FH49_INT = 0x%08x\n", inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004204 }
4205
4206 /* Re-enable all interrupts */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02004207 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004208 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004209 il_enable_interrupts(il);
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02004210 /* Re-enable RF_KILL if it occurred */
4211 else if (handled & CSR_INT_BIT_RF_KILL)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004212 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004213
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004214#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004215 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004216 inta = _il_rd(il, CSR_INT);
4217 inta_mask = _il_rd(il, CSR_INT_MASK);
4218 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004219 D_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4220 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004221 }
4222#endif
4223}
4224
4225/*****************************************************************************
4226 *
4227 * sysfs attributes
4228 *
4229 *****************************************************************************/
4230
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004231#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004232
4233/*
4234 * The following adds a new attribute to the sysfs representation
4235 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
4236 * used for controlling the debug level.
4237 *
4238 * See the level definitions in iwl for details.
4239 *
4240 * The debug_level being managed using sysfs below is a per device debug
4241 * level that is used instead of the global debug level if it (the per
4242 * device debug level) is set.
4243 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004244static ssize_t
4245il4965_show_debug_level(struct device *d, struct device_attribute *attr,
4246 char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004247{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004248 struct il_priv *il = dev_get_drvdata(d);
4249 return sprintf(buf, "0x%08X\n", il_get_debug_level(il));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004250}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004251
4252static ssize_t
4253il4965_store_debug_level(struct device *d, struct device_attribute *attr,
4254 const char *buf, size_t count)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004255{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004256 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004257 unsigned long val;
4258 int ret;
4259
4260 ret = strict_strtoul(buf, 0, &val);
4261 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004262 IL_ERR("%s is not in hex or decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004263 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004264 il->debug_level = val;
4265 if (il_alloc_traffic_mem(il))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004266 IL_ERR("Not enough memory to generate traffic log\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004267 }
4268 return strnlen(buf, count);
4269}
4270
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004271static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, il4965_show_debug_level,
4272 il4965_store_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004273
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004274#endif /* CONFIG_IWLEGACY_DEBUG */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004275
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004276static ssize_t
4277il4965_show_temperature(struct device *d, struct device_attribute *attr,
4278 char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004279{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004280 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004281
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004282 if (!il_is_alive(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004283 return -EAGAIN;
4284
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004285 return sprintf(buf, "%d\n", il->temperature);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004286}
4287
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004288static DEVICE_ATTR(temperature, S_IRUGO, il4965_show_temperature, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004289
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004290static ssize_t
4291il4965_show_tx_power(struct device *d, struct device_attribute *attr, char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004292{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004293 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004294
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004295 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004296 return sprintf(buf, "off\n");
4297 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004298 return sprintf(buf, "%d\n", il->tx_power_user_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004299}
4300
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004301static ssize_t
4302il4965_store_tx_power(struct device *d, struct device_attribute *attr,
4303 const char *buf, size_t count)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004304{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004305 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004306 unsigned long val;
4307 int ret;
4308
4309 ret = strict_strtoul(buf, 10, &val);
4310 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004311 IL_INFO("%s is not in decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004312 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004313 ret = il_set_tx_power(il, val, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004314 if (ret)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004315 IL_ERR("failed setting tx power (0x%d).\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004316 else
4317 ret = count;
4318 }
4319 return ret;
4320}
4321
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004322static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, il4965_show_tx_power,
4323 il4965_store_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004324
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004325static struct attribute *il_sysfs_entries[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004326 &dev_attr_temperature.attr,
4327 &dev_attr_tx_power.attr,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004328#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004329 &dev_attr_debug_level.attr,
4330#endif
4331 NULL
4332};
4333
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004334static struct attribute_group il_attribute_group = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004335 .name = NULL, /* put in device directory */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004336 .attrs = il_sysfs_entries,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004337};
4338
4339/******************************************************************************
4340 *
4341 * uCode download functions
4342 *
4343 ******************************************************************************/
4344
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004345static void
4346il4965_dealloc_ucode_pci(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004347{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004348 il_free_fw_desc(il->pci_dev, &il->ucode_code);
4349 il_free_fw_desc(il->pci_dev, &il->ucode_data);
4350 il_free_fw_desc(il->pci_dev, &il->ucode_data_backup);
4351 il_free_fw_desc(il->pci_dev, &il->ucode_init);
4352 il_free_fw_desc(il->pci_dev, &il->ucode_init_data);
4353 il_free_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004354}
4355
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004356static void
4357il4965_nic_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004358{
4359 /* Remove all resets to allow NIC to operate */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004360 _il_wr(il, CSR_RESET, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004361}
4362
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004363static void il4965_ucode_callback(const struct firmware *ucode_raw,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004364 void *context);
4365static int il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004366
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004367static int __must_check
4368il4965_request_firmware(struct il_priv *il, bool first)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004369{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004370 const char *name_pre = il->cfg->fw_name_pre;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004371 char tag[8];
4372
4373 if (first) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004374 il->fw_idx = il->cfg->ucode_api_max;
4375 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004376 } else {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004377 il->fw_idx--;
4378 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004379 }
4380
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004381 if (il->fw_idx < il->cfg->ucode_api_min) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004382 IL_ERR("no suitable firmware found!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004383 return -ENOENT;
4384 }
4385
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004386 sprintf(il->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004387
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004388 D_INFO("attempting to load firmware '%s'\n", il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004389
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004390 return request_firmware_nowait(THIS_MODULE, 1, il->firmware_name,
4391 &il->pci_dev->dev, GFP_KERNEL, il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004392 il4965_ucode_callback);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004393}
4394
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004395struct il4965_firmware_pieces {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004396 const void *inst, *data, *init, *init_data, *boot;
4397 size_t inst_size, data_size, init_size, init_data_size, boot_size;
4398};
4399
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004400static int
4401il4965_load_firmware(struct il_priv *il, const struct firmware *ucode_raw,
4402 struct il4965_firmware_pieces *pieces)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004403{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004404 struct il_ucode_header *ucode = (void *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004405 u32 api_ver, hdr_size;
4406 const u8 *src;
4407
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004408 il->ucode_ver = le32_to_cpu(ucode->ver);
4409 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004410
4411 switch (api_ver) {
4412 default:
4413 case 0:
4414 case 1:
4415 case 2:
4416 hdr_size = 24;
4417 if (ucode_raw->size < hdr_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004418 IL_ERR("File size too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004419 return -EINVAL;
4420 }
4421 pieces->inst_size = le32_to_cpu(ucode->v1.inst_size);
4422 pieces->data_size = le32_to_cpu(ucode->v1.data_size);
4423 pieces->init_size = le32_to_cpu(ucode->v1.init_size);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004424 pieces->init_data_size = le32_to_cpu(ucode->v1.init_data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004425 pieces->boot_size = le32_to_cpu(ucode->v1.boot_size);
4426 src = ucode->v1.data;
4427 break;
4428 }
4429
4430 /* Verify size of file vs. image size info in file's header */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004431 if (ucode_raw->size !=
4432 hdr_size + pieces->inst_size + pieces->data_size +
4433 pieces->init_size + pieces->init_data_size + pieces->boot_size) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004434
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004435 IL_ERR("uCode file size %d does not match expected size\n",
4436 (int)ucode_raw->size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004437 return -EINVAL;
4438 }
4439
4440 pieces->inst = src;
4441 src += pieces->inst_size;
4442 pieces->data = src;
4443 src += pieces->data_size;
4444 pieces->init = src;
4445 src += pieces->init_size;
4446 pieces->init_data = src;
4447 src += pieces->init_data_size;
4448 pieces->boot = src;
4449 src += pieces->boot_size;
4450
4451 return 0;
4452}
4453
4454/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004455 * il4965_ucode_callback - callback when firmware was loaded
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004456 *
4457 * If loaded successfully, copies the firmware into buffers
4458 * for the card to fetch (via DMA).
4459 */
4460static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004461il4965_ucode_callback(const struct firmware *ucode_raw, void *context)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004462{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004463 struct il_priv *il = context;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004464 struct il_ucode_header *ucode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004465 int err;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004466 struct il4965_firmware_pieces pieces;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004467 const unsigned int api_max = il->cfg->ucode_api_max;
4468 const unsigned int api_min = il->cfg->ucode_api_min;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004469 u32 api_ver;
4470
4471 u32 max_probe_length = 200;
4472 u32 standard_phy_calibration_size =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004473 IL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004474
4475 memset(&pieces, 0, sizeof(pieces));
4476
4477 if (!ucode_raw) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004478 if (il->fw_idx <= il->cfg->ucode_api_max)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004479 IL_ERR("request for firmware file '%s' failed.\n",
4480 il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004481 goto try_again;
4482 }
4483
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004484 D_INFO("Loaded firmware file '%s' (%zd bytes).\n", il->firmware_name,
4485 ucode_raw->size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004486
4487 /* Make sure that we got at least the API version number */
4488 if (ucode_raw->size < 4) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004489 IL_ERR("File size way too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004490 goto try_again;
4491 }
4492
4493 /* Data from ucode file: header followed by uCode images */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004494 ucode = (struct il_ucode_header *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004495
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004496 err = il4965_load_firmware(il, ucode_raw, &pieces);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004497
4498 if (err)
4499 goto try_again;
4500
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004501 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004502
4503 /*
4504 * api_ver should match the api version forming part of the
4505 * firmware filename ... but we don't check for that and only rely
4506 * on the API version read from firmware header from here on forward
4507 */
4508 if (api_ver < api_min || api_ver > api_max) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004509 IL_ERR("Driver unable to support your firmware API. "
4510 "Driver supports v%u, firmware is v%u.\n", api_max,
4511 api_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004512 goto try_again;
4513 }
4514
4515 if (api_ver != api_max)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004516 IL_ERR("Firmware has old API version. Expected v%u, "
4517 "got v%u. New firmware can be obtained "
4518 "from http://www.intellinuxwireless.org.\n", api_max,
4519 api_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004520
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004521 IL_INFO("loaded firmware version %u.%u.%u.%u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004522 IL_UCODE_MAJOR(il->ucode_ver), IL_UCODE_MINOR(il->ucode_ver),
4523 IL_UCODE_API(il->ucode_ver), IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004524
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004525 snprintf(il->hw->wiphy->fw_version, sizeof(il->hw->wiphy->fw_version),
4526 "%u.%u.%u.%u", IL_UCODE_MAJOR(il->ucode_ver),
4527 IL_UCODE_MINOR(il->ucode_ver), IL_UCODE_API(il->ucode_ver),
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004528 IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004529
4530 /*
4531 * For any of the failures below (before allocating pci memory)
4532 * we will try to load a version with a smaller API -- maybe the
4533 * user just got a corrupted version of the latest API.
4534 */
4535
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004536 D_INFO("f/w package hdr ucode version raw = 0x%x\n", il->ucode_ver);
4537 D_INFO("f/w package hdr runtime inst size = %Zd\n", pieces.inst_size);
4538 D_INFO("f/w package hdr runtime data size = %Zd\n", pieces.data_size);
4539 D_INFO("f/w package hdr init inst size = %Zd\n", pieces.init_size);
4540 D_INFO("f/w package hdr init data size = %Zd\n", pieces.init_data_size);
4541 D_INFO("f/w package hdr boot inst size = %Zd\n", pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004542
4543 /* Verify that uCode images will fit in card's SRAM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004544 if (pieces.inst_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004545 IL_ERR("uCode instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004546 pieces.inst_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004547 goto try_again;
4548 }
4549
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004550 if (pieces.data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004551 IL_ERR("uCode data len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004552 pieces.data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004553 goto try_again;
4554 }
4555
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004556 if (pieces.init_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004557 IL_ERR("uCode init instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004558 pieces.init_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004559 goto try_again;
4560 }
4561
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004562 if (pieces.init_data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004563 IL_ERR("uCode init data len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004564 pieces.init_data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004565 goto try_again;
4566 }
4567
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004568 if (pieces.boot_size > il->hw_params.max_bsm_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004569 IL_ERR("uCode boot instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004570 pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004571 goto try_again;
4572 }
4573
4574 /* Allocate ucode buffers for card's bus-master loading ... */
4575
4576 /* Runtime instructions and 2 copies of data:
4577 * 1) unmodified from disk
4578 * 2) backup cache for save/restore during power-downs */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004579 il->ucode_code.len = pieces.inst_size;
4580 il_alloc_fw_desc(il->pci_dev, &il->ucode_code);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004581
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004582 il->ucode_data.len = pieces.data_size;
4583 il_alloc_fw_desc(il->pci_dev, &il->ucode_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004584
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004585 il->ucode_data_backup.len = pieces.data_size;
4586 il_alloc_fw_desc(il->pci_dev, &il->ucode_data_backup);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004587
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004588 if (!il->ucode_code.v_addr || !il->ucode_data.v_addr ||
4589 !il->ucode_data_backup.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004590 goto err_pci_alloc;
4591
4592 /* Initialization instructions and data */
4593 if (pieces.init_size && pieces.init_data_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004594 il->ucode_init.len = pieces.init_size;
4595 il_alloc_fw_desc(il->pci_dev, &il->ucode_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004596
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004597 il->ucode_init_data.len = pieces.init_data_size;
4598 il_alloc_fw_desc(il->pci_dev, &il->ucode_init_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004599
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004600 if (!il->ucode_init.v_addr || !il->ucode_init_data.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004601 goto err_pci_alloc;
4602 }
4603
4604 /* Bootstrap (instructions only, no data) */
4605 if (pieces.boot_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004606 il->ucode_boot.len = pieces.boot_size;
4607 il_alloc_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004608
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004609 if (!il->ucode_boot.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004610 goto err_pci_alloc;
4611 }
4612
4613 /* Now that we can no longer fail, copy information */
4614
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004615 il->sta_key_max_num = STA_KEY_MAX_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004616
4617 /* Copy images into buffers for card's bus-master reads ... */
4618
4619 /* Runtime instructions (first block of data in file) */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004620 D_INFO("Copying (but not loading) uCode instr len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004621 pieces.inst_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004622 memcpy(il->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004623
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004624 D_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004625 il->ucode_code.v_addr, (u32) il->ucode_code.p_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004626
4627 /*
4628 * Runtime data
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004629 * NOTE: Copy into backup buffer will be done in il_up()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004630 */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004631 D_INFO("Copying (but not loading) uCode data len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004632 pieces.data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004633 memcpy(il->ucode_data.v_addr, pieces.data, pieces.data_size);
4634 memcpy(il->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004635
4636 /* Initialization instructions */
4637 if (pieces.init_size) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004638 D_INFO("Copying (but not loading) init instr len %Zd\n",
4639 pieces.init_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004640 memcpy(il->ucode_init.v_addr, pieces.init, pieces.init_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004641 }
4642
4643 /* Initialization data */
4644 if (pieces.init_data_size) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004645 D_INFO("Copying (but not loading) init data len %Zd\n",
4646 pieces.init_data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004647 memcpy(il->ucode_init_data.v_addr, pieces.init_data,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004648 pieces.init_data_size);
4649 }
4650
4651 /* Bootstrap instructions */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004652 D_INFO("Copying (but not loading) boot instr len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004653 pieces.boot_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004654 memcpy(il->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004655
4656 /*
4657 * figure out the offset of chain noise reset and gain commands
4658 * base on the size of standard phy calibration commands table size
4659 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004660 il->_4965.phy_calib_chain_noise_reset_cmd =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004661 standard_phy_calibration_size;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004662 il->_4965.phy_calib_chain_noise_gain_cmd =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004663 standard_phy_calibration_size + 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004664
4665 /**************************************************
4666 * This is still part of probe() in a sense...
4667 *
4668 * 9. Setup and register with mac80211 and debugfs
4669 **************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004670 err = il4965_mac_setup_register(il, max_probe_length);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004671 if (err)
4672 goto out_unbind;
4673
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004674 err = il_dbgfs_register(il, DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004675 if (err)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004676 IL_ERR("failed to create debugfs files. Ignoring error: %d\n",
4677 err);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004678
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004679 err = sysfs_create_group(&il->pci_dev->dev.kobj, &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004680 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004681 IL_ERR("failed to create sysfs device attributes\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004682 goto out_unbind;
4683 }
4684
4685 /* We have our copies now, allow OS release its copies */
4686 release_firmware(ucode_raw);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004687 complete(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004688 return;
4689
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004690try_again:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004691 /* try next, if any */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004692 if (il4965_request_firmware(il, false))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004693 goto out_unbind;
4694 release_firmware(ucode_raw);
4695 return;
4696
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004697err_pci_alloc:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004698 IL_ERR("failed to allocate pci memory\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004699 il4965_dealloc_ucode_pci(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004700out_unbind:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004701 complete(&il->_4965.firmware_loading_complete);
4702 device_release_driver(&il->pci_dev->dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004703 release_firmware(ucode_raw);
4704}
4705
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004706static const char *const desc_lookup_text[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004707 "OK",
4708 "FAIL",
4709 "BAD_PARAM",
4710 "BAD_CHECKSUM",
4711 "NMI_INTERRUPT_WDG",
4712 "SYSASSERT",
4713 "FATAL_ERROR",
4714 "BAD_COMMAND",
4715 "HW_ERROR_TUNE_LOCK",
4716 "HW_ERROR_TEMPERATURE",
4717 "ILLEGAL_CHAN_FREQ",
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02004718 "VCC_NOT_STBL",
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004719 "FH49_ERROR",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004720 "NMI_INTERRUPT_HOST",
4721 "NMI_INTERRUPT_ACTION_PT",
4722 "NMI_INTERRUPT_UNKNOWN",
4723 "UCODE_VERSION_MISMATCH",
4724 "HW_ERROR_ABS_LOCK",
4725 "HW_ERROR_CAL_LOCK_FAIL",
4726 "NMI_INTERRUPT_INST_ACTION_PT",
4727 "NMI_INTERRUPT_DATA_ACTION_PT",
4728 "NMI_TRM_HW_ER",
4729 "NMI_INTERRUPT_TRM",
Joe Perches861d9c32011-07-08 23:20:24 -07004730 "NMI_INTERRUPT_BREAK_POINT",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004731 "DEBUG_0",
4732 "DEBUG_1",
4733 "DEBUG_2",
4734 "DEBUG_3",
4735};
4736
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004737static struct {
4738 char *name;
4739 u8 num;
4740} advanced_lookup[] = {
4741 {
4742 "NMI_INTERRUPT_WDG", 0x34}, {
4743 "SYSASSERT", 0x35}, {
4744 "UCODE_VERSION_MISMATCH", 0x37}, {
4745 "BAD_COMMAND", 0x38}, {
4746 "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C}, {
4747 "FATAL_ERROR", 0x3D}, {
4748 "NMI_TRM_HW_ERR", 0x46}, {
4749 "NMI_INTERRUPT_TRM", 0x4C}, {
4750 "NMI_INTERRUPT_BREAK_POINT", 0x54}, {
4751 "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C}, {
4752 "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64}, {
4753 "NMI_INTERRUPT_HOST", 0x66}, {
4754 "NMI_INTERRUPT_ACTION_PT", 0x7C}, {
4755 "NMI_INTERRUPT_UNKNOWN", 0x84}, {
4756 "NMI_INTERRUPT_INST_ACTION_PT", 0x86}, {
4757"ADVANCED_SYSASSERT", 0},};
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004758
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004759static const char *
4760il4965_desc_lookup(u32 num)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004761{
4762 int i;
4763 int max = ARRAY_SIZE(desc_lookup_text);
4764
4765 if (num < max)
4766 return desc_lookup_text[num];
4767
4768 max = ARRAY_SIZE(advanced_lookup) - 1;
4769 for (i = 0; i < max; i++) {
4770 if (advanced_lookup[i].num == num)
4771 break;
4772 }
4773 return advanced_lookup[i].name;
4774}
4775
4776#define ERROR_START_OFFSET (1 * sizeof(u32))
4777#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4778
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004779void
4780il4965_dump_nic_error_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004781{
4782 u32 data2, line;
4783 u32 desc, time, count, base, data1;
4784 u32 blink1, blink2, ilink1, ilink2;
4785 u32 pc, hcmd;
4786
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004787 if (il->ucode_type == UCODE_INIT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004788 base = le32_to_cpu(il->card_alive_init.error_event_table_ptr);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004789 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004790 base = le32_to_cpu(il->card_alive.error_event_table_ptr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004791
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004792 if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004793 IL_ERR("Not valid error log pointer 0x%08X for %s uCode\n",
4794 base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004795 return;
4796 }
4797
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004798 count = il_read_targ_mem(il, base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004799
4800 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004801 IL_ERR("Start IWL Error Log Dump:\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004802 IL_ERR("Status: 0x%08lX, count: %d\n", il->status, count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004803 }
4804
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004805 desc = il_read_targ_mem(il, base + 1 * sizeof(u32));
4806 il->isr_stats.err_code = desc;
4807 pc = il_read_targ_mem(il, base + 2 * sizeof(u32));
4808 blink1 = il_read_targ_mem(il, base + 3 * sizeof(u32));
4809 blink2 = il_read_targ_mem(il, base + 4 * sizeof(u32));
4810 ilink1 = il_read_targ_mem(il, base + 5 * sizeof(u32));
4811 ilink2 = il_read_targ_mem(il, base + 6 * sizeof(u32));
4812 data1 = il_read_targ_mem(il, base + 7 * sizeof(u32));
4813 data2 = il_read_targ_mem(il, base + 8 * sizeof(u32));
4814 line = il_read_targ_mem(il, base + 9 * sizeof(u32));
4815 time = il_read_targ_mem(il, base + 11 * sizeof(u32));
4816 hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004817
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004818 IL_ERR("Desc Time "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004819 "data1 data2 line\n");
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004820 IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004821 il4965_desc_lookup(desc), desc, time, data1, data2, line);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004822 IL_ERR("pc blink1 blink2 ilink1 ilink2 hcmd\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004823 IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", pc, blink1,
4824 blink2, ilink1, ilink2, hcmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004825}
4826
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004827static void
4828il4965_rf_kill_ct_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004829{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004830 struct il_ct_kill_config cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004831 unsigned long flags;
4832 int ret = 0;
4833
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004834 spin_lock_irqsave(&il->lock, flags);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004835 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004836 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004837 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004838
4839 cmd.critical_temperature_R =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004840 cpu_to_le32(il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004841
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004842 ret = il_send_cmd_pdu(il, C_CT_KILL_CONFIG, sizeof(cmd), &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004843 if (ret)
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004844 IL_ERR("C_CT_KILL_CONFIG failed\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004845 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004846 D_INFO("C_CT_KILL_CONFIG " "succeeded, "
4847 "critical temperature is %d\n",
4848 il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004849}
4850
4851static const s8 default_queue_to_tx_fifo[] = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004852 IL_TX_FIFO_VO,
4853 IL_TX_FIFO_VI,
4854 IL_TX_FIFO_BE,
4855 IL_TX_FIFO_BK,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004856 IL49_CMD_FIFO_NUM,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004857 IL_TX_FIFO_UNUSED,
4858 IL_TX_FIFO_UNUSED,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004859};
4860
Stanislaw Gruszkae53aac42011-08-31 11:18:16 +02004861#define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
4862
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004863static int
4864il4965_alive_notify(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004865{
4866 u32 a;
4867 unsigned long flags;
4868 int i, chan;
4869 u32 reg_val;
4870
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004871 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004872
4873 /* Clear 4965's internal Tx Scheduler data base */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004874 il->scd_base_addr = il_rd_prph(il, IL49_SCD_SRAM_BASE_ADDR);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004875 a = il->scd_base_addr + IL49_SCD_CONTEXT_DATA_OFFSET;
4876 for (; a < il->scd_base_addr + IL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004877 il_write_targ_mem(il, a, 0);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004878 for (; a < il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004879 il_write_targ_mem(il, a, 0);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004880 for (;
4881 a <
4882 il->scd_base_addr +
4883 IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(il->hw_params.max_txq_num);
4884 a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004885 il_write_targ_mem(il, a, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004886
4887 /* Tel 4965 where to find Tx byte count tables */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004888 il_wr_prph(il, IL49_SCD_DRAM_BASE_ADDR, il->scd_bc_tbls.dma >> 10);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004889
4890 /* Enable DMA channel */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004891 for (chan = 0; chan < FH49_TCSR_CHNL_NUM; chan++)
4892 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(chan),
4893 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
4894 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004895
4896 /* Update FH chicken bits */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004897 reg_val = il_rd(il, FH49_TX_CHICKEN_BITS_REG);
4898 il_wr(il, FH49_TX_CHICKEN_BITS_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004899 reg_val | FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004900
4901 /* Disable chain mode for all queues */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004902 il_wr_prph(il, IL49_SCD_QUEUECHAIN_SEL, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004903
4904 /* Initialize each Tx queue (including the command queue) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004905 for (i = 0; i < il->hw_params.max_txq_num; i++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004906
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004907 /* TFD circular buffer read/write idxes */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004908 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(i), 0);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02004909 il_wr(il, HBUS_TARG_WRPTR, 0 | (i << 8));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004910
4911 /* Max Tx Window size for Scheduler-ACK mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004912 il_write_targ_mem(il,
4913 il->scd_base_addr +
4914 IL49_SCD_CONTEXT_QUEUE_OFFSET(i),
4915 (SCD_WIN_SIZE <<
4916 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
4917 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004918
4919 /* Frame limit */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004920 il_write_targ_mem(il,
4921 il->scd_base_addr +
4922 IL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
4923 sizeof(u32),
4924 (SCD_FRAME_LIMIT <<
4925 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
4926 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004927
4928 }
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004929 il_wr_prph(il, IL49_SCD_INTERRUPT_MASK,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004930 (1 << il->hw_params.max_txq_num) - 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004931
4932 /* Activate all Tx DMA/FIFO channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004933 il4965_txq_set_sched(il, IL_MASK(0, 6));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004934
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004935 il4965_set_wr_ptrs(il, IL_DEFAULT_CMD_QUEUE_NUM, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004936
4937 /* make sure all queue are not stopped */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004938 memset(&il->queue_stopped[0], 0, sizeof(il->queue_stopped));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004939 for (i = 0; i < 4; i++)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004940 atomic_set(&il->queue_stop_count[i], 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004941
4942 /* reset to 0 to enable all the queue first */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004943 il->txq_ctx_active_msk = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004944 /* Map each Tx/cmd queue to its corresponding fifo */
4945 BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7);
4946
4947 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
4948 int ac = default_queue_to_tx_fifo[i];
4949
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004950 il_txq_ctx_activate(il, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004951
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004952 if (ac == IL_TX_FIFO_UNUSED)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004953 continue;
4954
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004955 il4965_tx_queue_set_status(il, &il->txq[i], ac, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004956 }
4957
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004958 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004959
4960 return 0;
4961}
4962
4963/**
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004964 * il4965_alive_start - called after N_ALIVE notification received
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004965 * from protocol/runtime uCode (initialization uCode's
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004966 * Alive gets handled by il_init_alive_start()).
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004967 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004968static void
4969il4965_alive_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004970{
4971 int ret = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01004972 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004973
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004974 D_INFO("Runtime Alive received.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004975
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004976 if (il->card_alive.is_valid != UCODE_VALID_OK) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004977 /* We had an error bringing up the hardware, so take it
4978 * all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004979 D_INFO("Alive failed.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004980 goto restart;
4981 }
4982
4983 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
4984 * This is a paranoid check, because we would not have gotten the
4985 * "runtime" alive if code weren't properly loaded. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004986 if (il4965_verify_ucode(il)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004987 /* Runtime instruction load was bad;
4988 * take it all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004989 D_INFO("Bad runtime uCode load.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004990 goto restart;
4991 }
4992
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004993 ret = il4965_alive_notify(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004994 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004995 IL_WARN("Could not complete ALIVE transition [ntf]: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004996 goto restart;
4997 }
4998
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004999 /* After the ALIVE response, we can send host commands to the uCode */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005000 set_bit(S_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005001
5002 /* Enable watchdog to monitor the driver tx queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005003 il_setup_watchdog(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005004
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005005 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005006 return;
5007
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005008 ieee80211_wake_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005009
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02005010 il->active_rate = RATES_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005011
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005012 if (il_is_associated(il)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005013 struct il_rxon_cmd *active_rxon =
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005014 (struct il_rxon_cmd *)&il->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005015 /* apply any changes in staging */
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005016 il->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005017 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5018 } else {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005019 /* Initialize our rx_config data */
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005020 il_connection_init_rx_config(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005021
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005022 if (il->cfg->ops->hcmd->set_rxon_chain)
5023 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005024 }
5025
5026 /* Configure bluetooth coexistence if enabled */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005027 il_send_bt_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005028
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005029 il4965_reset_run_time_calib(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005030
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005031 set_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005032
5033 /* Configure the adapter for unassociated operation */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005034 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005035
5036 /* At this point, the NIC is initialized and operational */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005037 il4965_rf_kill_ct_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005038
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005039 D_INFO("ALIVE processing complete.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005040 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005041
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005042 il_power_update_mode(il, true);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005043 D_INFO("Updated power mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005044
5045 return;
5046
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005047restart:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005048 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005049}
5050
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005051static void il4965_cancel_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005052
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005053static void
5054__il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005055{
5056 unsigned long flags;
Stanislaw Gruszkaab42b402011-04-28 11:51:24 +02005057 int exit_pending;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005058
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005059 D_INFO(DRV_NAME " is going down\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005060
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005061 il_scan_cancel_timeout(il, 200);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005062
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005063 exit_pending = test_and_set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005064
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005065 /* Stop TX queues watchdog. We need to have S_EXIT_PENDING bit set
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005066 * to prevent rearm timer */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005067 del_timer_sync(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005068
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005069 il_clear_ucode_stations(il, NULL);
5070 il_dealloc_bcast_stations(il);
5071 il_clear_driver_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005072
5073 /* Unblock any waiting calls */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005074 wake_up_all(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005075
5076 /* Wipe out the EXIT_PENDING status bit if we are not actually
5077 * exiting the module */
5078 if (!exit_pending)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005079 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005080
5081 /* stop and reset the on-board processor */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005082 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005083
5084 /* tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005085 spin_lock_irqsave(&il->lock, flags);
5086 il_disable_interrupts(il);
5087 spin_unlock_irqrestore(&il->lock, flags);
5088 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005089
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005090 if (il->mac80211_registered)
5091 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005092
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005093 /* If we have not previously called il_init() then
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005094 * clear all bits but the RF Kill bit and return */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005095 if (!il_is_init(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005096 il->status =
5097 test_bit(S_RF_KILL_HW,
5098 &il->
5099 status) << S_RF_KILL_HW |
5100 test_bit(S_GEO_CONFIGURED,
5101 &il->
5102 status) << S_GEO_CONFIGURED |
5103 test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005104 goto exit;
5105 }
5106
5107 /* ...otherwise clear out all the status bits but the RF Kill
5108 * bit and continue taking the NIC down. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005109 il->status &=
5110 test_bit(S_RF_KILL_HW,
5111 &il->status) << S_RF_KILL_HW | test_bit(S_GEO_CONFIGURED,
5112 &il->
5113 status) <<
5114 S_GEO_CONFIGURED | test_bit(S_FW_ERROR,
5115 &il->
5116 status) << S_FW_ERROR |
5117 test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005118
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005119 il4965_txq_ctx_stop(il);
5120 il4965_rxq_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005121
5122 /* Power-down device's busmaster DMA clocks */
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02005123 il_wr_prph(il, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005124 udelay(5);
5125
5126 /* Make sure (redundant) we've released our request to stay awake */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005127 il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005128
5129 /* Stop the device, and put it in low power state */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005130 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005131
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005132exit:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005133 memset(&il->card_alive, 0, sizeof(struct il_alive_resp));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005134
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005135 dev_kfree_skb(il->beacon_skb);
5136 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005137
5138 /* clear out any free frames */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005139 il4965_clear_free_frames(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005140}
5141
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005142static void
5143il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005144{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005145 mutex_lock(&il->mutex);
5146 __il4965_down(il);
5147 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005148
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005149 il4965_cancel_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005150}
5151
5152#define HW_READY_TIMEOUT (50)
5153
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005154static int
5155il4965_set_hw_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005156{
5157 int ret = 0;
5158
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005159 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005160 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005161
5162 /* See if we got it */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005163 ret =
5164 _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5165 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
5166 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, HW_READY_TIMEOUT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005167 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005168 il->hw_ready = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005169 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005170 il->hw_ready = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005171
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005172 D_INFO("hardware %s\n", (il->hw_ready == 1) ? "ready" : "not ready");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005173 return ret;
5174}
5175
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005176static int
5177il4965_prepare_card_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005178{
5179 int ret = 0;
5180
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005181 D_INFO("il4965_prepare_card_hw enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005182
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005183 ret = il4965_set_hw_ready(il);
5184 if (il->hw_ready)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005185 return ret;
5186
5187 /* If HW is not ready, prepare the conditions to check again */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005188 il_set_bit(il, CSR_HW_IF_CONFIG_REG, CSR_HW_IF_CONFIG_REG_PREPARE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005189
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005190 ret =
5191 _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5192 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
5193 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005194
5195 /* HW should be ready by now, check again. */
5196 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005197 il4965_set_hw_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005198
5199 return ret;
5200}
5201
5202#define MAX_HW_RESTARTS 5
5203
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005204static int
5205__il4965_up(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005206{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005207 int i;
5208 int ret;
5209
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005210 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005211 IL_WARN("Exit pending; will not bring the NIC up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005212 return -EIO;
5213 }
5214
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005215 if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005216 IL_ERR("ucode not available for device bringup\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005217 return -EIO;
5218 }
5219
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005220 ret = il4965_alloc_bcast_station(il, &il->ctx);
5221 if (ret) {
5222 il_dealloc_bcast_stations(il);
5223 return ret;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005224 }
5225
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005226 il4965_prepare_card_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005227
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005228 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005229 IL_WARN("Exit HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005230 return -EIO;
5231 }
5232
5233 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005234 if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005235 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005236 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005237 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005238
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005239 if (il_is_rfkill(il)) {
5240 wiphy_rfkill_set_hw_state(il->hw->wiphy, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005241
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005242 il_enable_interrupts(il);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005243 IL_WARN("Radio disabled by HW RF Kill switch\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005244 return 0;
5245 }
5246
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005247 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005248
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005249 /* must be initialised before il_hw_nic_init */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005250 il->cmd_queue = IL_DEFAULT_CMD_QUEUE_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005251
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005252 ret = il4965_hw_nic_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005253 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005254 IL_ERR("Unable to init nic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005255 return ret;
5256 }
5257
5258 /* make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005259 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005260 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005261
5262 /* clear (again), then enable host interrupts */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005263 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005264 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005265
5266 /* really make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005267 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5268 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005269
5270 /* Copy original ucode data image from disk into backup cache.
5271 * This will be used to initialize the on-board processor's
5272 * data SRAM for a clean start when the runtime program first loads. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005273 memcpy(il->ucode_data_backup.v_addr, il->ucode_data.v_addr,
5274 il->ucode_data.len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005275
5276 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5277
5278 /* load bootstrap state machine,
5279 * load bootstrap program into processor's memory,
5280 * prepare to load the "initialize" uCode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005281 ret = il->cfg->ops->lib->load_ucode(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005282
5283 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005284 IL_ERR("Unable to set up bootstrap uCode: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005285 continue;
5286 }
5287
5288 /* start card; "initialize" will load runtime ucode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005289 il4965_nic_start(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005290
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005291 D_INFO(DRV_NAME " is coming up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005292
5293 return 0;
5294 }
5295
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005296 set_bit(S_EXIT_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005297 __il4965_down(il);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005298 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005299
5300 /* tried to restart and config the device for as long as our
5301 * patience could withstand */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005302 IL_ERR("Unable to initialize device after %d attempts.\n", i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005303 return -EIO;
5304}
5305
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005306/*****************************************************************************
5307 *
5308 * Workqueue callbacks
5309 *
5310 *****************************************************************************/
5311
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005312static void
5313il4965_bg_init_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005314{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005315 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005316 container_of(data, struct il_priv, init_alive_start.work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005317
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005318 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005319 if (test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005320 goto out;
5321
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005322 il->cfg->ops->lib->init_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005323out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005324 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005325}
5326
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005327static void
5328il4965_bg_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005329{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005330 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005331 container_of(data, struct il_priv, alive_start.work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005332
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005333 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005334 if (test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005335 goto out;
5336
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005337 il4965_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005338out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005339 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005340}
5341
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005342static void
5343il4965_bg_run_time_calib_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005344{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005345 struct il_priv *il = container_of(work, struct il_priv,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005346 run_time_calib_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005347
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005348 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005349
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005350 if (test_bit(S_EXIT_PENDING, &il->status) ||
5351 test_bit(S_SCANNING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005352 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005353 return;
5354 }
5355
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005356 if (il->start_calib) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005357 il4965_chain_noise_calibration(il, (void *)&il->_4965.stats);
5358 il4965_sensitivity_calibration(il, (void *)&il->_4965.stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005359 }
5360
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005361 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005362}
5363
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005364static void
5365il4965_bg_restart(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005366{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005367 struct il_priv *il = container_of(data, struct il_priv, restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005368
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005369 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005370 return;
5371
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005372 if (test_and_clear_bit(S_FW_ERROR, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005373 mutex_lock(&il->mutex);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005374 il->ctx.vif = NULL;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005375 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005376
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005377 __il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005378
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005379 mutex_unlock(&il->mutex);
5380 il4965_cancel_deferred_work(il);
5381 ieee80211_restart_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005382 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005383 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005384
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005385 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005386 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005387 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005388 return;
5389 }
5390
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005391 __il4965_up(il);
5392 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005393 }
5394}
5395
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005396static void
5397il4965_bg_rx_replenish(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005398{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005399 struct il_priv *il = container_of(data, struct il_priv, rx_replenish);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005400
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005401 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005402 return;
5403
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005404 mutex_lock(&il->mutex);
5405 il4965_rx_replenish(il);
5406 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005407}
5408
5409/*****************************************************************************
5410 *
5411 * mac80211 entry point functions
5412 *
5413 *****************************************************************************/
5414
5415#define UCODE_READY_TIMEOUT (4 * HZ)
5416
5417/*
5418 * Not a mac80211 entry point function, but it fits in with all the
5419 * other mac80211 functions grouped here.
5420 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005421static int
5422il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005423{
5424 int ret;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005425 struct ieee80211_hw *hw = il->hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005426
5427 hw->rate_control_algorithm = "iwl-4965-rs";
5428
5429 /* Tell mac80211 our characteristics */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005430 hw->flags =
5431 IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_AMPDU_AGGREGATION |
5432 IEEE80211_HW_NEED_DTIM_PERIOD | IEEE80211_HW_SPECTRUM_MGMT |
5433 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005434
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005435 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005436 hw->flags |=
5437 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
5438 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005439
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005440 hw->sta_data_size = sizeof(struct il_station_priv);
5441 hw->vif_data_size = sizeof(struct il_vif_priv);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005442
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005443 hw->wiphy->interface_modes |= il->ctx.interface_modes;
5444 hw->wiphy->interface_modes |= il->ctx.exclusive_interface_modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005445
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005446 hw->wiphy->flags |=
5447 WIPHY_FLAG_CUSTOM_REGULATORY | WIPHY_FLAG_DISABLE_BEACON_HINTS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005448
5449 /*
5450 * For now, disable PS by default because it affects
5451 * RX performance significantly.
5452 */
5453 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
5454
5455 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
5456 /* we create the 802.11 header and a zero-length SSID element */
5457 hw->wiphy->max_scan_ie_len = max_probe_length - 24 - 2;
5458
5459 /* Default value; 4 EDCA QOS priorities */
5460 hw->queues = 4;
5461
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005462 hw->max_listen_interval = IL_CONN_MAX_LISTEN_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005463
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005464 if (il->bands[IEEE80211_BAND_2GHZ].n_channels)
5465 il->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005466 &il->bands[IEEE80211_BAND_2GHZ];
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005467 if (il->bands[IEEE80211_BAND_5GHZ].n_channels)
5468 il->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005469 &il->bands[IEEE80211_BAND_5GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005470
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005471 il_leds_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005472
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005473 ret = ieee80211_register_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005474 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005475 IL_ERR("Failed to register hw (error %d)\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005476 return ret;
5477 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005478 il->mac80211_registered = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005479
5480 return 0;
5481}
5482
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005483int
5484il4965_mac_start(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005485{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005486 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005487 int ret;
5488
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005489 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005490
5491 /* we should be verifying the device is ready to be opened */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005492 mutex_lock(&il->mutex);
5493 ret = __il4965_up(il);
5494 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005495
5496 if (ret)
5497 return ret;
5498
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005499 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005500 goto out;
5501
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005502 D_INFO("Start UP work done.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005503
5504 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
5505 * mac80211 will not be run successfully. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005506 ret = wait_event_timeout(il->wait_command_queue,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005507 test_bit(S_READY, &il->status),
5508 UCODE_READY_TIMEOUT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005509 if (!ret) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005510 if (!test_bit(S_READY, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005511 IL_ERR("START_ALIVE timeout after %dms.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005512 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5513 return -ETIMEDOUT;
5514 }
5515 }
5516
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005517 il4965_led_enable(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005518
5519out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005520 il->is_open = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005521 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005522 return 0;
5523}
5524
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005525void
5526il4965_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005527{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005528 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005529
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005530 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005531
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005532 if (!il->is_open)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005533 return;
5534
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005535 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005536
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005537 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005538
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005539 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005540
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02005541 /* User space software may expect getting rfkill changes
5542 * even if interface is down */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005543 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005544 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005545
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005546 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005547}
5548
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005549void
5550il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005551{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005552 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005553
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005554 D_MACDUMP("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005555
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005556 D_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005557 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005558
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005559 if (il4965_tx_skb(il, skb))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005560 dev_kfree_skb_any(skb);
5561
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005562 D_MACDUMP("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005563}
5564
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005565void
5566il4965_mac_update_tkip_key(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5567 struct ieee80211_key_conf *keyconf,
5568 struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005569{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005570 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005571 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005572
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005573 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005574
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005575 il4965_update_tkip_key(il, vif_priv->ctx, keyconf, sta, iv32,
5576 phase1key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005577
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005578 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005579}
5580
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005581int
5582il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
5583 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
5584 struct ieee80211_key_conf *key)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005585{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005586 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005587 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5588 struct il_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005589 int ret;
5590 u8 sta_id;
5591 bool is_default_wep_key = false;
5592
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005593 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005594
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005595 if (il->cfg->mod_params->sw_crypto) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005596 D_MAC80211("leave - hwcrypto disabled\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005597 return -EOPNOTSUPP;
5598 }
5599
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005600 sta_id = il_sta_id_or_broadcast(il, vif_priv->ctx, sta);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005601 if (sta_id == IL_INVALID_STATION)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005602 return -EINVAL;
5603
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005604 mutex_lock(&il->mutex);
5605 il_scan_cancel_timeout(il, 100);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005606
5607 /*
5608 * If we are getting WEP group key and we didn't receive any key mapping
5609 * so far, we are in legacy wep mode (group key only), otherwise we are
5610 * in 1X mode.
5611 * In legacy wep mode, we use another host command to the uCode.
5612 */
5613 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005614 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005615 if (cmd == SET_KEY)
5616 is_default_wep_key = !ctx->key_mapping_keys;
5617 else
5618 is_default_wep_key =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005619 (key->hw_key_idx == HW_KEY_DEFAULT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005620 }
5621
5622 switch (cmd) {
5623 case SET_KEY:
5624 if (is_default_wep_key)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005625 ret =
5626 il4965_set_default_wep_key(il, vif_priv->ctx, key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005627 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005628 ret =
5629 il4965_set_dynamic_key(il, vif_priv->ctx, key,
5630 sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005631
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005632 D_MAC80211("enable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005633 break;
5634 case DISABLE_KEY:
5635 if (is_default_wep_key)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005636 ret = il4965_remove_default_wep_key(il, ctx, key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005637 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005638 ret = il4965_remove_dynamic_key(il, ctx, key, sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005639
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005640 D_MAC80211("disable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005641 break;
5642 default:
5643 ret = -EINVAL;
5644 }
5645
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005646 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005647 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005648
5649 return ret;
5650}
5651
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005652int
5653il4965_mac_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5654 enum ieee80211_ampdu_mlme_action action,
5655 struct ieee80211_sta *sta, u16 tid, u16 * ssn,
5656 u8 buf_size)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005657{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005658 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005659 int ret = -EINVAL;
5660
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005661 D_HT("A-MPDU action on addr %pM tid %d\n", sta->addr, tid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005662
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005663 if (!(il->cfg->sku & IL_SKU_N))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005664 return -EACCES;
5665
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005666 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005667
5668 switch (action) {
5669 case IEEE80211_AMPDU_RX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005670 D_HT("start Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005671 ret = il4965_sta_rx_agg_start(il, sta, tid, *ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005672 break;
5673 case IEEE80211_AMPDU_RX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005674 D_HT("stop Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005675 ret = il4965_sta_rx_agg_stop(il, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005676 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005677 ret = 0;
5678 break;
5679 case IEEE80211_AMPDU_TX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005680 D_HT("start Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005681 ret = il4965_tx_agg_start(il, vif, sta, tid, ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005682 break;
5683 case IEEE80211_AMPDU_TX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005684 D_HT("stop Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005685 ret = il4965_tx_agg_stop(il, vif, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005686 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005687 ret = 0;
5688 break;
5689 case IEEE80211_AMPDU_TX_OPERATIONAL:
5690 ret = 0;
5691 break;
5692 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005693 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005694
5695 return ret;
5696}
5697
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005698int
5699il4965_mac_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5700 struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005701{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005702 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005703 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
5704 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005705 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
5706 int ret;
5707 u8 sta_id;
5708
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005709 D_INFO("received request to add station %pM\n", sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005710 mutex_lock(&il->mutex);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005711 D_INFO("proceeding to add station %pM\n", sta->addr);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005712 sta_priv->common.sta_id = IL_INVALID_STATION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005713
5714 atomic_set(&sta_priv->pending_frames, 0);
5715
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005716 ret =
5717 il_add_station_common(il, vif_priv->ctx, sta->addr, is_ap, sta,
5718 &sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005719 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005720 IL_ERR("Unable to add station %pM (%d)\n", sta->addr, ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005721 /* Should we return success if return code is EEXIST ? */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005722 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005723 return ret;
5724 }
5725
5726 sta_priv->common.sta_id = sta_id;
5727
5728 /* Initialize rate scaling */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005729 D_INFO("Initializing rate scaling for station %pM\n", sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005730 il4965_rs_rate_init(il, sta, sta_id);
5731 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005732
5733 return 0;
5734}
5735
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005736void
5737il4965_mac_channel_switch(struct ieee80211_hw *hw,
5738 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005739{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005740 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005741 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005742 struct ieee80211_conf *conf = &hw->conf;
5743 struct ieee80211_channel *channel = ch_switch->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005744 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005745
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005746 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005747 u16 ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005748
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005749 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005750
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005751 mutex_lock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005752
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005753 if (il_is_rfkill(il))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005754 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005755
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005756 if (test_bit(S_EXIT_PENDING, &il->status) ||
5757 test_bit(S_SCANNING, &il->status) ||
5758 test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005759 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005760
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005761 if (!il_is_associated(il))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005762 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005763
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005764 if (!il->cfg->ops->lib->set_channel_switch)
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005765 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005766
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005767 ch = channel->hw_value;
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005768 if (le16_to_cpu(il->active.channel) == ch)
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005769 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005770
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005771 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005772 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005773 D_MAC80211("invalid channel\n");
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005774 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005775 }
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005776
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005777 spin_lock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005778
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005779 il->current_ht_config.smps = conf->smps_mode;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005780
5781 /* Configure HT40 channels */
5782 ctx->ht.enabled = conf_is_ht(conf);
5783 if (ctx->ht.enabled) {
5784 if (conf_is_ht40_minus(conf)) {
5785 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005786 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005787 ctx->ht.is_40mhz = true;
5788 } else if (conf_is_ht40_plus(conf)) {
5789 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005790 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005791 ctx->ht.is_40mhz = true;
5792 } else {
5793 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005794 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005795 ctx->ht.is_40mhz = false;
5796 }
5797 } else
5798 ctx->ht.is_40mhz = false;
5799
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005800 if ((le16_to_cpu(il->staging.channel) != ch))
5801 il->staging.flags = 0;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005802
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005803 il_set_rxon_channel(il, channel, ctx);
5804 il_set_rxon_ht(il, ht_conf);
5805 il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005806
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005807 spin_unlock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005808
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005809 il_set_rate(il);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005810 /*
5811 * at this point, staging_rxon has the
5812 * configuration for channel switch
5813 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005814 set_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005815 il->switch_channel = cpu_to_le16(ch);
5816 if (il->cfg->ops->lib->set_channel_switch(il, ch_switch)) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005817 clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005818 il->switch_channel = 0;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005819 ieee80211_chswitch_done(ctx->vif, false);
5820 }
5821
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005822out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005823 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005824 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005825}
5826
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005827void
5828il4965_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags,
5829 unsigned int *total_flags, u64 multicast)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005830{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005831 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005832 __le32 filter_or = 0, filter_nand = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005833
5834#define CHK(test, flag) do { \
5835 if (*total_flags & (test)) \
5836 filter_or |= (flag); \
5837 else \
5838 filter_nand |= (flag); \
5839 } while (0)
5840
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005841 D_MAC80211("Enter: changed: 0x%x, total: 0x%x\n", changed_flags,
5842 *total_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005843
5844 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
5845 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
5846 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
5847 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
5848
5849#undef CHK
5850
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005851 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005852
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005853 il->staging.filter_flags &= ~filter_nand;
5854 il->staging.filter_flags |= filter_or;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005855
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005856 /*
5857 * Not committing directly because hardware can perform a scan,
5858 * but we'll eventually commit the filter flags change anyway.
5859 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005860
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005861 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005862
5863 /*
5864 * Receiving all multicast frames is always enabled by the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005865 * default flags setup in il_connection_init_rx_config()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005866 * since we currently do not support programming multicast
5867 * filters into the device.
5868 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005869 *total_flags &=
5870 FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
5871 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005872}
5873
5874/*****************************************************************************
5875 *
5876 * driver setup and teardown
5877 *
5878 *****************************************************************************/
5879
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005880static void
5881il4965_bg_txpower_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005882{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005883 struct il_priv *il = container_of(work, struct il_priv,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005884 txpower_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005885
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005886 mutex_lock(&il->mutex);
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005887
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005888 /* If a scan happened to start before we got here
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005889 * then just return; the stats notification will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005890 * kick off another scheduled work to compensate for
5891 * any temperature delta we missed here. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005892 if (test_bit(S_EXIT_PENDING, &il->status) ||
5893 test_bit(S_SCANNING, &il->status))
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005894 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005895
5896 /* Regardless of if we are associated, we must reconfigure the
5897 * TX power since frames can be sent on non-radar channels while
5898 * not associated */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005899 il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005900
5901 /* Update last_temperature to keep is_calib_needed from running
5902 * when it isn't needed... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005903 il->last_temperature = il->temperature;
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005904out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005905 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005906}
5907
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005908static void
5909il4965_setup_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005910{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005911 il->workqueue = create_singlethread_workqueue(DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005912
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005913 init_waitqueue_head(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005914
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005915 INIT_WORK(&il->restart, il4965_bg_restart);
5916 INIT_WORK(&il->rx_replenish, il4965_bg_rx_replenish);
5917 INIT_WORK(&il->run_time_calib_work, il4965_bg_run_time_calib_work);
5918 INIT_DELAYED_WORK(&il->init_alive_start, il4965_bg_init_alive_start);
5919 INIT_DELAYED_WORK(&il->alive_start, il4965_bg_alive_start);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005920
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005921 il_setup_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005922
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005923 INIT_WORK(&il->txpower_work, il4965_bg_txpower_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005924
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005925 init_timer(&il->stats_periodic);
5926 il->stats_periodic.data = (unsigned long)il;
5927 il->stats_periodic.function = il4965_bg_stats_periodic;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005928
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005929 init_timer(&il->watchdog);
5930 il->watchdog.data = (unsigned long)il;
5931 il->watchdog.function = il_bg_watchdog;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005932
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005933 tasklet_init(&il->irq_tasklet,
5934 (void (*)(unsigned long))il4965_irq_tasklet,
5935 (unsigned long)il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005936}
5937
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005938static void
5939il4965_cancel_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005940{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005941 cancel_work_sync(&il->txpower_work);
5942 cancel_delayed_work_sync(&il->init_alive_start);
5943 cancel_delayed_work(&il->alive_start);
5944 cancel_work_sync(&il->run_time_calib_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005945
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005946 il_cancel_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005947
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005948 del_timer_sync(&il->stats_periodic);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005949}
5950
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005951static void
5952il4965_init_hw_rates(struct il_priv *il, struct ieee80211_rate *rates)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005953{
5954 int i;
5955
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02005956 for (i = 0; i < RATE_COUNT_LEGACY; i++) {
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02005957 rates[i].bitrate = il_rates[i].ieee * 5;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005958 rates[i].hw_value = i; /* Rate scaling will work on idxes */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005959 rates[i].hw_value_short = i;
5960 rates[i].flags = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005961 if ((i >= IL_FIRST_CCK_RATE) && (i <= IL_LAST_CCK_RATE)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005962 /*
5963 * If CCK != 1M then set short preamble rate flag.
5964 */
5965 rates[i].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005966 (il_rates[i].plcp ==
5967 RATE_1M_PLCP) ? 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005968 }
5969 }
5970}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005971
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005972/*
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005973 * Acquire il->lock before calling this function !
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005974 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005975void
5976il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005977{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005978 il_wr(il, HBUS_TARG_WRPTR, (idx & 0xff) | (txq_id << 8));
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01005979 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(txq_id), idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005980}
5981
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005982void
5983il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq,
5984 int tx_fifo_id, int scd_retry)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005985{
5986 int txq_id = txq->q.id;
5987
5988 /* Find out whether to activate Tx queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005989 int active = test_bit(txq_id, &il->txq_ctx_active_msk) ? 1 : 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005990
5991 /* Set up and activate */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01005992 il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01005993 (active << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
5994 (tx_fifo_id << IL49_SCD_QUEUE_STTS_REG_POS_TXF) |
5995 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_WSL) |
5996 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
5997 IL49_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005998
5999 txq->sched_retry = scd_retry;
6000
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006001 D_INFO("%s %s Queue %d on AC %d\n", active ? "Activate" : "Deactivate",
6002 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006003}
6004
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006005static int
6006il4965_init_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006007{
6008 int ret;
6009
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006010 spin_lock_init(&il->sta_lock);
6011 spin_lock_init(&il->hcmd_lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006012
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006013 INIT_LIST_HEAD(&il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006014
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006015 mutex_init(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006016
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006017 il->ieee_channels = NULL;
6018 il->ieee_rates = NULL;
6019 il->band = IEEE80211_BAND_2GHZ;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006020
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006021 il->iw_mode = NL80211_IFTYPE_STATION;
6022 il->current_ht_config.smps = IEEE80211_SMPS_STATIC;
6023 il->missed_beacon_threshold = IL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006024
6025 /* initialize force reset */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006026 il->force_reset.reset_duration = IL_DELAY_NEXT_FORCE_FW_RELOAD;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006027
6028 /* Choose which receivers/antennas to use */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006029 if (il->cfg->ops->hcmd->set_rxon_chain)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006030 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006031
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006032 il_init_scan_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006033
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006034 ret = il_init_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006035 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006036 IL_ERR("initializing regulatory failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006037 goto err;
6038 }
6039
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006040 ret = il_init_geos(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006041 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006042 IL_ERR("initializing geos failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006043 goto err_free_channel_map;
6044 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006045 il4965_init_hw_rates(il, il->ieee_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006046
6047 return 0;
6048
6049err_free_channel_map:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006050 il_free_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006051err:
6052 return ret;
6053}
6054
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006055static void
6056il4965_uninit_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006057{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006058 il4965_calib_free_results(il);
6059 il_free_geos(il);
6060 il_free_channel_map(il);
6061 kfree(il->scan_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006062}
6063
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006064static void
6065il4965_hw_detect(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006066{
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006067 il->hw_rev = _il_rd(il, CSR_HW_REV);
6068 il->hw_wa_rev = _il_rd(il, CSR_HW_REV_WA_REG);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006069 il->rev_id = il->pci_dev->revision;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006070 D_INFO("HW Revision ID = 0x%X\n", il->rev_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006071}
6072
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006073static int
6074il4965_set_hw_params(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006075{
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01006076 il->hw_params.bcast_id = IL4965_BROADCAST_ID;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006077 il->hw_params.max_rxq_size = RX_QUEUE_SIZE;
6078 il->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
6079 if (il->cfg->mod_params->amsdu_size_8K)
6080 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_8K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006081 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006082 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_4K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006083
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006084 il->hw_params.max_beacon_itrvl = IL_MAX_UCODE_BEACON_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006085
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006086 if (il->cfg->mod_params->disable_11n)
6087 il->cfg->sku &= ~IL_SKU_N;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006088
6089 /* Device-specific setup */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006090 return il->cfg->ops->lib->set_hw_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006091}
6092
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006093static const u8 il4965_bss_ac_to_fifo[] = {
6094 IL_TX_FIFO_VO,
6095 IL_TX_FIFO_VI,
6096 IL_TX_FIFO_BE,
6097 IL_TX_FIFO_BK,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006098};
6099
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006100static const u8 il4965_bss_ac_to_queue[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006101 0, 1, 2, 3,
6102};
6103
6104static int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006105il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006106{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006107 int err = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006108 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006109 struct ieee80211_hw *hw;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006110 struct il_cfg *cfg = (struct il_cfg *)(ent->driver_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006111 unsigned long flags;
6112 u16 pci_cmd;
6113
6114 /************************
6115 * 1. Allocating HW data
6116 ************************/
6117
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006118 hw = il_alloc_all(cfg);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006119 if (!hw) {
6120 err = -ENOMEM;
6121 goto out;
6122 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006123 il = hw->priv;
6124 /* At this point both hw and il are allocated. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006125
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006126 il->ctx.always_active = true;
6127 il->ctx.is_active = true;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006128 il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
6129 il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006130 il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
6131 il->ctx.interface_modes = BIT(NL80211_IFTYPE_STATION);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006132
6133 SET_IEEE80211_DEV(hw, &pdev->dev);
6134
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006135 D_INFO("*** LOAD DRIVER ***\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006136 il->cfg = cfg;
6137 il->pci_dev = pdev;
6138 il->inta_mask = CSR_INI_SET_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006139
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006140 if (il_alloc_traffic_mem(il))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006141 IL_ERR("Not enough memory to generate traffic log\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006142
6143 /**************************
6144 * 2. Initializing PCI bus
6145 **************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006146 pci_disable_link_state(pdev,
6147 PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6148 PCIE_LINK_STATE_CLKPM);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006149
6150 if (pci_enable_device(pdev)) {
6151 err = -ENODEV;
6152 goto out_ieee80211_free_hw;
6153 }
6154
6155 pci_set_master(pdev);
6156
6157 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
6158 if (!err)
6159 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
6160 if (err) {
6161 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6162 if (!err)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006163 err =
6164 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006165 /* both attempts failed: */
6166 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006167 IL_WARN("No suitable DMA available.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006168 goto out_pci_disable_device;
6169 }
6170 }
6171
6172 err = pci_request_regions(pdev, DRV_NAME);
6173 if (err)
6174 goto out_pci_disable_device;
6175
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006176 pci_set_drvdata(pdev, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006177
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006178 /***********************
6179 * 3. Read REV register
6180 ***********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006181 il->hw_base = pci_iomap(pdev, 0, 0);
6182 if (!il->hw_base) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006183 err = -ENODEV;
6184 goto out_pci_release_regions;
6185 }
6186
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006187 D_INFO("pci_resource_len = 0x%08llx\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006188 (unsigned long long)pci_resource_len(pdev, 0));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006189 D_INFO("pci_resource_base = %p\n", il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006190
6191 /* these spin locks will be used in apm_ops.init and EEPROM access
6192 * we should init now
6193 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006194 spin_lock_init(&il->reg_lock);
6195 spin_lock_init(&il->lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006196
6197 /*
6198 * stop and reset the on-board processor just in case it is in a
6199 * strange state ... like being left stranded by a primary kernel
6200 * and this is now the kdump kernel trying to start up
6201 */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006202 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006203
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006204 il4965_hw_detect(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006205 IL_INFO("Detected %s, REV=0x%X\n", il->cfg->name, il->hw_rev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006206
6207 /* We disable the RETRY_TIMEOUT register (0x41) to keep
6208 * PCI Tx retries from interfering with C3 CPU state */
6209 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
6210
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006211 il4965_prepare_card_hw(il);
6212 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006213 IL_WARN("Failed, HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006214 goto out_iounmap;
6215 }
6216
6217 /*****************
6218 * 4. Read EEPROM
6219 *****************/
6220 /* Read the EEPROM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006221 err = il_eeprom_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006222 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006223 IL_ERR("Unable to init EEPROM\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006224 goto out_iounmap;
6225 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006226 err = il4965_eeprom_check_version(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006227 if (err)
6228 goto out_free_eeprom;
6229
6230 if (err)
6231 goto out_free_eeprom;
6232
6233 /* extract MAC Address */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006234 il4965_eeprom_get_mac(il, il->addresses[0].addr);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006235 D_INFO("MAC address: %pM\n", il->addresses[0].addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006236 il->hw->wiphy->addresses = il->addresses;
6237 il->hw->wiphy->n_addresses = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006238
6239 /************************
6240 * 5. Setup HW constants
6241 ************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006242 if (il4965_set_hw_params(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006243 IL_ERR("failed to set hw parameters\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006244 goto out_free_eeprom;
6245 }
6246
6247 /*******************
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006248 * 6. Setup il
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006249 *******************/
6250
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006251 err = il4965_init_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006252 if (err)
6253 goto out_free_eeprom;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006254 /* At this point both hw and il are initialized. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006255
6256 /********************
6257 * 7. Setup services
6258 ********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006259 spin_lock_irqsave(&il->lock, flags);
6260 il_disable_interrupts(il);
6261 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006262
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006263 pci_enable_msi(il->pci_dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006264
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006265 err = request_irq(il->pci_dev->irq, il_isr, IRQF_SHARED, DRV_NAME, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006266 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006267 IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006268 goto out_disable_msi;
6269 }
6270
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006271 il4965_setup_deferred_work(il);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02006272 il4965_setup_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006273
6274 /*********************************************
6275 * 8. Enable interrupts and read RFKILL state
6276 *********************************************/
6277
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02006278 /* enable rfkill interrupt: hw bug w/a */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006279 pci_read_config_word(il->pci_dev, PCI_COMMAND, &pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006280 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
6281 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006282 pci_write_config_word(il->pci_dev, PCI_COMMAND, pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006283 }
6284
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006285 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006286
6287 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006288 if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006289 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006290 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006291 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006292
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006293 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006294 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006295
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006296 il_power_initialize(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006297
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006298 init_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006299
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006300 err = il4965_request_firmware(il, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006301 if (err)
6302 goto out_destroy_workqueue;
6303
6304 return 0;
6305
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006306out_destroy_workqueue:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006307 destroy_workqueue(il->workqueue);
6308 il->workqueue = NULL;
6309 free_irq(il->pci_dev->irq, il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006310out_disable_msi:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006311 pci_disable_msi(il->pci_dev);
6312 il4965_uninit_drv(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006313out_free_eeprom:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006314 il_eeprom_free(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006315out_iounmap:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006316 pci_iounmap(pdev, il->hw_base);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006317out_pci_release_regions:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006318 pci_set_drvdata(pdev, NULL);
6319 pci_release_regions(pdev);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006320out_pci_disable_device:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006321 pci_disable_device(pdev);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006322out_ieee80211_free_hw:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006323 il_free_traffic_mem(il);
6324 ieee80211_free_hw(il->hw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006325out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006326 return err;
6327}
6328
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006329static void __devexit
6330il4965_pci_remove(struct pci_dev *pdev)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006331{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006332 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006333 unsigned long flags;
6334
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006335 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006336 return;
6337
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006338 wait_for_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006339
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006340 D_INFO("*** UNLOAD DRIVER ***\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006341
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006342 il_dbgfs_unregister(il);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006343 sysfs_remove_group(&pdev->dev.kobj, &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006344
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006345 /* ieee80211_unregister_hw call wil cause il_mac_stop to
6346 * to be called and il4965_down since we are removing the device
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006347 * we need to set S_EXIT_PENDING bit.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006348 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006349 set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006350
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006351 il_leds_exit(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006352
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006353 if (il->mac80211_registered) {
6354 ieee80211_unregister_hw(il->hw);
6355 il->mac80211_registered = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006356 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006357 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006358 }
6359
6360 /*
6361 * Make sure device is reset to low power before unloading driver.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006362 * This may be redundant with il4965_down(), but there are paths to
6363 * run il4965_down() without calling apm_ops.stop(), and there are
6364 * paths to avoid running il4965_down() at all before leaving driver.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006365 * This (inexpensive) call *makes sure* device is reset.
6366 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006367 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006368
6369 /* make sure we flush any pending irq or
6370 * tasklet for the driver
6371 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006372 spin_lock_irqsave(&il->lock, flags);
6373 il_disable_interrupts(il);
6374 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006375
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006376 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006377
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006378 il4965_dealloc_ucode_pci(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006379
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006380 if (il->rxq.bd)
6381 il4965_rx_queue_free(il, &il->rxq);
6382 il4965_hw_txq_ctx_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006383
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006384 il_eeprom_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006385
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006386 /*netif_stop_queue(dev); */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006387 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006388
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006389 /* ieee80211_unregister_hw calls il_mac_stop, which flushes
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006390 * il->workqueue... so we can't take down the workqueue
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006391 * until now... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006392 destroy_workqueue(il->workqueue);
6393 il->workqueue = NULL;
6394 il_free_traffic_mem(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006395
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006396 free_irq(il->pci_dev->irq, il);
6397 pci_disable_msi(il->pci_dev);
6398 pci_iounmap(pdev, il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006399 pci_release_regions(pdev);
6400 pci_disable_device(pdev);
6401 pci_set_drvdata(pdev, NULL);
6402
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006403 il4965_uninit_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006404
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006405 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006406
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006407 ieee80211_free_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006408}
6409
6410/*
6411 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006412 * must be called under il->lock and mac access
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006413 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006414void
6415il4965_txq_set_sched(struct il_priv *il, u32 mask)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006416{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006417 il_wr_prph(il, IL49_SCD_TXFACT, mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006418}
6419
6420/*****************************************************************************
6421 *
6422 * driver and module entry point
6423 *
6424 *****************************************************************************/
6425
6426/* Hardware specific file defines the PCI IDs table for that hardware module */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006427static DEFINE_PCI_DEVICE_TABLE(il4965_hw_card_ids) = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006428 {IL_PCI_DEVICE(0x4229, PCI_ANY_ID, il4965_cfg)},
6429 {IL_PCI_DEVICE(0x4230, PCI_ANY_ID, il4965_cfg)},
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006430 {0}
6431};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006432MODULE_DEVICE_TABLE(pci, il4965_hw_card_ids);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006433
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006434static struct pci_driver il4965_driver = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006435 .name = DRV_NAME,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006436 .id_table = il4965_hw_card_ids,
6437 .probe = il4965_pci_probe,
6438 .remove = __devexit_p(il4965_pci_remove),
6439 .driver.pm = IL_LEGACY_PM_OPS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006440};
6441
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006442static int __init
6443il4965_init(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006444{
6445
6446 int ret;
6447 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
6448 pr_info(DRV_COPYRIGHT "\n");
6449
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006450 ret = il4965_rate_control_register();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006451 if (ret) {
6452 pr_err("Unable to register rate control algorithm: %d\n", ret);
6453 return ret;
6454 }
6455
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006456 ret = pci_register_driver(&il4965_driver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006457 if (ret) {
6458 pr_err("Unable to initialize PCI module\n");
6459 goto error_register;
6460 }
6461
6462 return ret;
6463
6464error_register:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006465 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006466 return ret;
6467}
6468
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006469static void __exit
6470il4965_exit(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006471{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006472 pci_unregister_driver(&il4965_driver);
6473 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006474}
6475
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006476module_exit(il4965_exit);
6477module_init(il4965_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006478
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006479#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02006480module_param_named(debug, il_debug_level, uint, S_IRUGO | S_IWUSR);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006481MODULE_PARM_DESC(debug, "debug output mask");
6482#endif
6483
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006484module_param_named(swcrypto, il4965_mod_params.sw_crypto, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006485MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006486module_param_named(queues_num, il4965_mod_params.num_of_queues, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006487MODULE_PARM_DESC(queues_num, "number of hw queues.");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006488module_param_named(11n_disable, il4965_mod_params.disable_11n, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006489MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006490module_param_named(amsdu_size_8K, il4965_mod_params.amsdu_size_8K, int,
6491 S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006492MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006493module_param_named(fw_restart, il4965_mod_params.restart_fw, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006494MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");