blob: f2b03cd243b5cbd00329d39a03178d87d0590a8a [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;
922 scan->tx_cmd.sta_id = ctx->bcast_sta_id;
923 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
924
925 switch (il->scan_band) {
926 case IEEE80211_BAND_2GHZ:
927 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
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))
1681 sta_id = ctx->bcast_sta_id;
1682 else {
1683 /* Find idx into station table for destination station */
1684 sta_id = il_sta_id_or_broadcast(il, ctx, info->control.sta);
1685
1686 if (sta_id == IL_INVALID_STATION) {
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
1711 /*
1712 * Send this frame after DTIM -- there's a special queue
1713 * reserved for this for contexts that support AP mode.
1714 */
1715 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
1716 txq_id = ctx->mcast_queue;
1717 /*
1718 * The microcode will clear the more data
1719 * bit in the last frame it transmits.
1720 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001721 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001722 } else
1723 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
1724
1725 /* irqs already disabled/saved above when locking il->lock */
1726 spin_lock(&il->sta_lock);
1727
1728 if (ieee80211_is_data_qos(fc)) {
1729 qc = ieee80211_get_qos_ctl(hdr);
1730 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1731 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
1732 spin_unlock(&il->sta_lock);
1733 goto drop_unlock;
1734 }
1735 seq_number = il->stations[sta_id].tid[tid].seq_number;
1736 seq_number &= IEEE80211_SCTL_SEQ;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001737 hdr->seq_ctrl =
1738 hdr->seq_ctrl & cpu_to_le16(IEEE80211_SCTL_FRAG);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001739 hdr->seq_ctrl |= cpu_to_le16(seq_number);
1740 seq_number += 0x10;
1741 /* aggregation is on for this <sta,tid> */
1742 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
1743 il->stations[sta_id].tid[tid].agg.state == IL_AGG_ON) {
1744 txq_id = il->stations[sta_id].tid[tid].agg.txq_id;
1745 is_agg = true;
1746 }
1747 }
1748
1749 txq = &il->txq[txq_id];
1750 q = &txq->q;
1751
1752 if (unlikely(il_queue_space(q) < q->high_mark)) {
1753 spin_unlock(&il->sta_lock);
1754 goto drop_unlock;
1755 }
1756
1757 if (ieee80211_is_data_qos(fc)) {
1758 il->stations[sta_id].tid[tid].tfds_in_queue++;
1759 if (!ieee80211_has_morefrags(fc))
1760 il->stations[sta_id].tid[tid].seq_number = seq_number;
1761 }
1762
1763 spin_unlock(&il->sta_lock);
1764
1765 /* Set up driver data for this TFD */
1766 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct il_tx_info));
1767 txq->txb[q->write_ptr].skb = skb;
1768 txq->txb[q->write_ptr].ctx = ctx;
1769
1770 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1771 out_cmd = txq->cmd[q->write_ptr];
1772 out_meta = &txq->meta[q->write_ptr];
1773 tx_cmd = &out_cmd->cmd.tx;
1774 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
1775 memset(tx_cmd, 0, sizeof(struct il_tx_cmd));
1776
1777 /*
1778 * Set up the Tx-command (not MAC!) header.
1779 * Store the chosen Tx queue and TFD idx within the sequence field;
1780 * after Tx, uCode's Tx response will return this value so driver can
1781 * locate the frame within the tx queue and do post-tx processing.
1782 */
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001783 out_cmd->hdr.cmd = C_TX;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001784 out_cmd->hdr.sequence =
1785 cpu_to_le16((u16)
1786 (QUEUE_TO_SEQ(txq_id) | IDX_TO_SEQ(q->write_ptr)));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001787
1788 /* Copy MAC header from skb into command buffer */
1789 memcpy(tx_cmd->hdr, hdr, hdr_len);
1790
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001791 /* Total # bytes to be transmitted */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001792 len = (u16) skb->len;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001793 tx_cmd->len = cpu_to_le16(len);
1794
1795 if (info->control.hw_key)
1796 il4965_tx_cmd_build_hwcrypto(il, info, tx_cmd, skb, sta_id);
1797
1798 /* TODO need this for burst mode later on */
1799 il4965_tx_cmd_build_basic(il, skb, tx_cmd, info, hdr, sta_id);
1800 il_dbg_log_tx_data_frame(il, len, hdr);
1801
1802 il4965_tx_cmd_build_rate(il, tx_cmd, info, fc);
1803
1804 il_update_stats(il, true, fc, len);
1805 /*
1806 * Use the first empty entry in this queue's command buffer array
1807 * to contain the Tx command and MAC header concatenated together
1808 * (payload data will be in another buffer).
1809 * Size of this varies, due to varying MAC header length.
1810 * If end is not dword aligned, we'll have 2 extra bytes at the end
1811 * of the MAC header (device reads on dword boundaries).
1812 * We'll tell device about this padding later.
1813 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001814 len = sizeof(struct il_tx_cmd) + sizeof(struct il_cmd_header) + hdr_len;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001815 firstlen = (len + 3) & ~3;
1816
1817 /* Tell NIC about any 2-byte padding after MAC header */
1818 if (firstlen != len)
1819 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1820
1821 /* Physical address of this Tx command's header (not MAC header!),
1822 * within command buffer array. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001823 txcmd_phys =
1824 pci_map_single(il->pci_dev, &out_cmd->hdr, firstlen,
1825 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001826 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
1827 dma_unmap_len_set(out_meta, len, firstlen);
1828 /* Add buffer containing Tx command and MAC(!) header to TFD's
1829 * first entry */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001830 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, txcmd_phys, firstlen,
1831 1, 0);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001832
1833 if (!ieee80211_has_morefrags(hdr->frame_control)) {
1834 txq->need_update = 1;
1835 } else {
1836 wait_write_ptr = 1;
1837 txq->need_update = 0;
1838 }
1839
1840 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1841 * if any (802.11 null frames have no payload). */
1842 secondlen = skb->len - hdr_len;
1843 if (secondlen > 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001844 phys_addr =
1845 pci_map_single(il->pci_dev, skb->data + hdr_len, secondlen,
1846 PCI_DMA_TODEVICE);
1847 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq, phys_addr,
1848 secondlen, 0, 0);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001849 }
1850
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001851 scratch_phys =
1852 txcmd_phys + sizeof(struct il_cmd_header) +
1853 offsetof(struct il_tx_cmd, scratch);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001854
1855 /* take back ownership of DMA buffer to enable update */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001856 pci_dma_sync_single_for_cpu(il->pci_dev, txcmd_phys, firstlen,
1857 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001858 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1859 tx_cmd->dram_msb_ptr = il_get_dma_hi_addr(scratch_phys);
1860
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001861 D_TX("sequence nr = 0X%x\n", le16_to_cpu(out_cmd->hdr.sequence));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001862 D_TX("tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001863 il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd, sizeof(*tx_cmd));
1864 il_print_hex_dump(il, IL_DL_TX, (u8 *) tx_cmd->hdr, hdr_len);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001865
1866 /* Set up entry for this TFD in Tx byte-count array */
1867 if (info->flags & IEEE80211_TX_CTL_AMPDU)
1868 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001869 le16_to_cpu(tx_cmd->
1870 len));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001871
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001872 pci_dma_sync_single_for_device(il->pci_dev, txcmd_phys, firstlen,
1873 PCI_DMA_BIDIRECTIONAL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001874
1875 /* Tell device the write idx *just past* this latest filled TFD */
1876 q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
1877 il_txq_update_write_ptr(il, txq);
1878 spin_unlock_irqrestore(&il->lock, flags);
1879
1880 /*
1881 * At this point the frame is "transmitted" successfully
1882 * and we will get a TX status notification eventually,
1883 * regardless of the value of ret. "ret" only indicates
1884 * whether or not we should update the write pointer.
1885 */
1886
1887 /*
1888 * Avoid atomic ops if it isn't an associated client.
1889 * Also, if this is a packet for aggregation, don't
1890 * increase the counter because the ucode will stop
1891 * aggregation queues when their respective station
1892 * goes to sleep.
1893 */
1894 if (sta_priv && sta_priv->client && !is_agg)
1895 atomic_inc(&sta_priv->pending_frames);
1896
1897 if (il_queue_space(q) < q->high_mark && il->mac80211_registered) {
1898 if (wait_write_ptr) {
1899 spin_lock_irqsave(&il->lock, flags);
1900 txq->need_update = 1;
1901 il_txq_update_write_ptr(il, txq);
1902 spin_unlock_irqrestore(&il->lock, flags);
1903 } else {
1904 il_stop_queue(il, txq);
1905 }
1906 }
1907
1908 return 0;
1909
1910drop_unlock:
1911 spin_unlock_irqrestore(&il->lock, flags);
1912 return -1;
1913}
1914
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001915static inline int
1916il4965_alloc_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr, size_t size)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001917{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001918 ptr->addr =
1919 dma_alloc_coherent(&il->pci_dev->dev, size, &ptr->dma, GFP_KERNEL);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001920 if (!ptr->addr)
1921 return -ENOMEM;
1922 ptr->size = size;
1923 return 0;
1924}
1925
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001926static inline void
1927il4965_free_dma_ptr(struct il_priv *il, struct il_dma_ptr *ptr)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001928{
1929 if (unlikely(!ptr->addr))
1930 return;
1931
1932 dma_free_coherent(&il->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
1933 memset(ptr, 0, sizeof(*ptr));
1934}
1935
1936/**
1937 * il4965_hw_txq_ctx_free - Free TXQ Context
1938 *
1939 * Destroy all TX DMA queues and structures
1940 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001941void
1942il4965_hw_txq_ctx_free(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001943{
1944 int txq_id;
1945
1946 /* Tx queues */
1947 if (il->txq) {
1948 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
1949 if (txq_id == il->cmd_queue)
1950 il_cmd_queue_free(il);
1951 else
1952 il_tx_queue_free(il, txq_id);
1953 }
1954 il4965_free_dma_ptr(il, &il->kw);
1955
1956 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
1957
1958 /* free tx queue structure */
1959 il_txq_mem(il);
1960}
1961
1962/**
1963 * il4965_txq_ctx_alloc - allocate TX queue context
1964 * Allocate all Tx DMA structures and initialize them
1965 *
1966 * @param il
1967 * @return error code
1968 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001969int
1970il4965_txq_ctx_alloc(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001971{
1972 int ret;
1973 int txq_id, slots_num;
1974 unsigned long flags;
1975
1976 /* Free all tx/cmd queues and keep-warm buffer */
1977 il4965_hw_txq_ctx_free(il);
1978
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001979 ret =
1980 il4965_alloc_dma_ptr(il, &il->scd_bc_tbls,
1981 il->hw_params.scd_bc_tbls_size);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001982 if (ret) {
1983 IL_ERR("Scheduler BC Table allocation failed\n");
1984 goto error_bc_tbls;
1985 }
1986 /* Alloc keep-warm buffer */
1987 ret = il4965_alloc_dma_ptr(il, &il->kw, IL_KW_SIZE);
1988 if (ret) {
1989 IL_ERR("Keep Warm allocation failed\n");
1990 goto error_kw;
1991 }
1992
1993 /* allocate tx queue structure */
1994 ret = il_alloc_txq_mem(il);
1995 if (ret)
1996 goto error;
1997
1998 spin_lock_irqsave(&il->lock, flags);
1999
2000 /* Turn off all Tx DMA fifos */
2001 il4965_txq_set_sched(il, 0);
2002
2003 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002004 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002005
2006 spin_unlock_irqrestore(&il->lock, flags);
2007
2008 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
2009 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002010 slots_num =
2011 (txq_id ==
2012 il->cmd_queue) ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2013 ret = il_tx_queue_init(il, &il->txq[txq_id], slots_num, txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002014 if (ret) {
2015 IL_ERR("Tx %d queue init failed\n", txq_id);
2016 goto error;
2017 }
2018 }
2019
2020 return ret;
2021
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002022error:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002023 il4965_hw_txq_ctx_free(il);
2024 il4965_free_dma_ptr(il, &il->kw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002025error_kw:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002026 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002027error_bc_tbls:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002028 return ret;
2029}
2030
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002031void
2032il4965_txq_ctx_reset(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002033{
2034 int txq_id, slots_num;
2035 unsigned long flags;
2036
2037 spin_lock_irqsave(&il->lock, flags);
2038
2039 /* Turn off all Tx DMA fifos */
2040 il4965_txq_set_sched(il, 0);
2041
2042 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002043 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002044
2045 spin_unlock_irqrestore(&il->lock, flags);
2046
2047 /* Alloc and init all Tx queues, including the command queue (#4) */
2048 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002049 slots_num =
2050 txq_id == il->cmd_queue ? TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2051 il_tx_queue_reset(il, &il->txq[txq_id], slots_num, txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002052 }
2053}
2054
2055/**
2056 * il4965_txq_ctx_stop - Stop all Tx DMA channels
2057 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002058void
2059il4965_txq_ctx_stop(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002060{
2061 int ch, txq_id;
2062 unsigned long flags;
2063
2064 /* Turn off all Tx DMA fifos */
2065 spin_lock_irqsave(&il->lock, flags);
2066
2067 il4965_txq_set_sched(il, 0);
2068
2069 /* Stop each Tx DMA channel, and wait for it to be idle */
2070 for (ch = 0; ch < il->hw_params.dma_chnl_num; ch++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002071 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
2072 if (il_poll_bit
2073 (il, FH49_TSSR_TX_STATUS_REG,
2074 FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch), 1000))
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002075 IL_ERR("Failing on timeout while stopping"
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002076 " DMA channel %d [0x%08x]", ch,
2077 il_rd(il, FH49_TSSR_TX_STATUS_REG));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002078 }
2079 spin_unlock_irqrestore(&il->lock, flags);
2080
2081 if (!il->txq)
2082 return;
2083
2084 /* Unmap DMA from host system and free skb's */
2085 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2086 if (txq_id == il->cmd_queue)
2087 il_cmd_queue_unmap(il);
2088 else
2089 il_tx_queue_unmap(il, txq_id);
2090}
2091
2092/*
2093 * Find first available (lowest unused) Tx Queue, mark it "active".
2094 * Called only when finding queue for aggregation.
2095 * Should never return anything < 7, because they should already
2096 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
2097 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002098static int
2099il4965_txq_ctx_activate_free(struct il_priv *il)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002100{
2101 int txq_id;
2102
2103 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2104 if (!test_and_set_bit(txq_id, &il->txq_ctx_active_msk))
2105 return txq_id;
2106 return -1;
2107}
2108
2109/**
2110 * il4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
2111 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002112static void
2113il4965_tx_queue_stop_scheduler(struct il_priv *il, u16 txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002114{
2115 /* Simply stop the queue, but don't change any configuration;
2116 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002117 il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002118 (0 << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
2119 (1 << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002120}
2121
2122/**
2123 * il4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
2124 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002125static int
2126il4965_tx_queue_set_q2ratid(struct il_priv *il, u16 ra_tid, u16 txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002127{
2128 u32 tbl_dw_addr;
2129 u32 tbl_dw;
2130 u16 scd_q2ratid;
2131
2132 scd_q2ratid = ra_tid & IL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
2133
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002134 tbl_dw_addr =
2135 il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002136
2137 tbl_dw = il_read_targ_mem(il, tbl_dw_addr);
2138
2139 if (txq_id & 0x1)
2140 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
2141 else
2142 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
2143
2144 il_write_targ_mem(il, tbl_dw_addr, tbl_dw);
2145
2146 return 0;
2147}
2148
2149/**
2150 * il4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
2151 *
2152 * NOTE: txq_id must be greater than IL49_FIRST_AMPDU_QUEUE,
2153 * i.e. it must be one of the higher queues used for aggregation
2154 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002155static int
2156il4965_txq_agg_enable(struct il_priv *il, int txq_id, int tx_fifo, int sta_id,
2157 int tid, u16 ssn_idx)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002158{
2159 unsigned long flags;
2160 u16 ra_tid;
2161 int ret;
2162
2163 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2164 (IL49_FIRST_AMPDU_QUEUE +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002165 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2166 IL_WARN("queue number out of range: %d, must be %d to %d\n",
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002167 txq_id, IL49_FIRST_AMPDU_QUEUE,
2168 IL49_FIRST_AMPDU_QUEUE +
2169 il->cfg->base_params->num_of_ampdu_queues - 1);
2170 return -EINVAL;
2171 }
2172
2173 ra_tid = BUILD_RAxTID(sta_id, tid);
2174
2175 /* Modify device's station table to Tx this TID */
2176 ret = il4965_sta_tx_modify_enable_tid(il, sta_id, tid);
2177 if (ret)
2178 return ret;
2179
2180 spin_lock_irqsave(&il->lock, flags);
2181
2182 /* Stop this Tx queue before configuring it */
2183 il4965_tx_queue_stop_scheduler(il, txq_id);
2184
2185 /* Map receiver-address / traffic-ID to this queue */
2186 il4965_tx_queue_set_q2ratid(il, ra_tid, txq_id);
2187
2188 /* Set this queue as a chain-building queue */
2189 il_set_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2190
2191 /* Place first TFD at idx corresponding to start sequence number.
2192 * Assumes that ssn_idx is valid (!= 0xFFF) */
2193 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2194 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2195 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2196
2197 /* Set up Tx win size and frame limit for this queue */
2198 il_write_targ_mem(il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002199 il->scd_base_addr +
2200 IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
2201 (SCD_WIN_SIZE << IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS)
2202 & IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002203
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002204 il_write_targ_mem(il,
2205 il->scd_base_addr +
2206 IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
2207 (SCD_FRAME_LIMIT <<
2208 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
2209 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002210
2211 il_set_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2212
2213 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
2214 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 1);
2215
2216 spin_unlock_irqrestore(&il->lock, flags);
2217
2218 return 0;
2219}
2220
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002221int
2222il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif,
2223 struct ieee80211_sta *sta, u16 tid, u16 * ssn)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002224{
2225 int sta_id;
2226 int tx_fifo;
2227 int txq_id;
2228 int ret;
2229 unsigned long flags;
2230 struct il_tid_data *tid_data;
2231
2232 tx_fifo = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2233 if (unlikely(tx_fifo < 0))
2234 return tx_fifo;
2235
Greg Dietsche53611e02011-08-28 08:26:16 -05002236 D_HT("%s on ra = %pM tid = %d\n", __func__, sta->addr, tid);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002237
2238 sta_id = il_sta_id(sta);
2239 if (sta_id == IL_INVALID_STATION) {
2240 IL_ERR("Start AGG on invalid station\n");
2241 return -ENXIO;
2242 }
2243 if (unlikely(tid >= MAX_TID_COUNT))
2244 return -EINVAL;
2245
2246 if (il->stations[sta_id].tid[tid].agg.state != IL_AGG_OFF) {
2247 IL_ERR("Start AGG when state is not IL_AGG_OFF !\n");
2248 return -ENXIO;
2249 }
2250
2251 txq_id = il4965_txq_ctx_activate_free(il);
2252 if (txq_id == -1) {
2253 IL_ERR("No free aggregation queue available\n");
2254 return -ENXIO;
2255 }
2256
2257 spin_lock_irqsave(&il->sta_lock, flags);
2258 tid_data = &il->stations[sta_id].tid[tid];
2259 *ssn = SEQ_TO_SN(tid_data->seq_number);
2260 tid_data->agg.txq_id = txq_id;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002261 il_set_swq_id(&il->txq[txq_id], il4965_get_ac_from_tid(tid), txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002262 spin_unlock_irqrestore(&il->sta_lock, flags);
2263
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002264 ret = il4965_txq_agg_enable(il, txq_id, tx_fifo, sta_id, tid, *ssn);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002265 if (ret)
2266 return ret;
2267
2268 spin_lock_irqsave(&il->sta_lock, flags);
2269 tid_data = &il->stations[sta_id].tid[tid];
2270 if (tid_data->tfds_in_queue == 0) {
2271 D_HT("HW queue is empty\n");
2272 tid_data->agg.state = IL_AGG_ON;
2273 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2274 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002275 D_HT("HW queue is NOT empty: %d packets in HW queue\n",
2276 tid_data->tfds_in_queue);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002277 tid_data->agg.state = IL_EMPTYING_HW_QUEUE_ADDBA;
2278 }
2279 spin_unlock_irqrestore(&il->sta_lock, flags);
2280 return ret;
2281}
2282
2283/**
2284 * txq_id must be greater than IL49_FIRST_AMPDU_QUEUE
2285 * il->lock must be held by the caller
2286 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002287static int
2288il4965_txq_agg_disable(struct il_priv *il, u16 txq_id, u16 ssn_idx, u8 tx_fifo)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002289{
2290 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2291 (IL49_FIRST_AMPDU_QUEUE +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002292 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2293 IL_WARN("queue number out of range: %d, must be %d to %d\n",
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002294 txq_id, IL49_FIRST_AMPDU_QUEUE,
2295 IL49_FIRST_AMPDU_QUEUE +
2296 il->cfg->base_params->num_of_ampdu_queues - 1);
2297 return -EINVAL;
2298 }
2299
2300 il4965_tx_queue_stop_scheduler(il, txq_id);
2301
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002302 il_clear_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002303
2304 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2305 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2306 /* supposes that ssn_idx is valid (!= 0xFFF) */
2307 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2308
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002309 il_clear_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002310 il_txq_ctx_deactivate(il, txq_id);
2311 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 0);
2312
2313 return 0;
2314}
2315
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002316int
2317il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif,
2318 struct ieee80211_sta *sta, u16 tid)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002319{
2320 int tx_fifo_id, txq_id, sta_id, ssn;
2321 struct il_tid_data *tid_data;
2322 int write_ptr, read_ptr;
2323 unsigned long flags;
2324
2325 tx_fifo_id = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2326 if (unlikely(tx_fifo_id < 0))
2327 return tx_fifo_id;
2328
2329 sta_id = il_sta_id(sta);
2330
2331 if (sta_id == IL_INVALID_STATION) {
2332 IL_ERR("Invalid station for AGG tid %d\n", tid);
2333 return -ENXIO;
2334 }
2335
2336 spin_lock_irqsave(&il->sta_lock, flags);
2337
2338 tid_data = &il->stations[sta_id].tid[tid];
2339 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
2340 txq_id = tid_data->agg.txq_id;
2341
2342 switch (il->stations[sta_id].tid[tid].agg.state) {
2343 case IL_EMPTYING_HW_QUEUE_ADDBA:
2344 /*
2345 * This can happen if the peer stops aggregation
2346 * again before we've had a chance to drain the
2347 * queue we selected previously, i.e. before the
2348 * session was really started completely.
2349 */
2350 D_HT("AGG stop before setup done\n");
2351 goto turn_off;
2352 case IL_AGG_ON:
2353 break;
2354 default:
2355 IL_WARN("Stopping AGG while state not ON or starting\n");
2356 }
2357
2358 write_ptr = il->txq[txq_id].q.write_ptr;
2359 read_ptr = il->txq[txq_id].q.read_ptr;
2360
2361 /* The queue is not empty */
2362 if (write_ptr != read_ptr) {
2363 D_HT("Stopping a non empty AGG HW QUEUE\n");
2364 il->stations[sta_id].tid[tid].agg.state =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002365 IL_EMPTYING_HW_QUEUE_DELBA;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002366 spin_unlock_irqrestore(&il->sta_lock, flags);
2367 return 0;
2368 }
2369
2370 D_HT("HW queue is empty\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002371turn_off:
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002372 il->stations[sta_id].tid[tid].agg.state = IL_AGG_OFF;
2373
2374 /* do not restore/save irqs */
2375 spin_unlock(&il->sta_lock);
2376 spin_lock(&il->lock);
2377
2378 /*
2379 * the only reason this call can fail is queue number out of range,
2380 * which can happen if uCode is reloaded and all the station
2381 * information are lost. if it is outside the range, there is no need
2382 * to deactivate the uCode queue, just return "success" to allow
2383 * mac80211 to clean up it own data.
2384 */
2385 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo_id);
2386 spin_unlock_irqrestore(&il->lock, flags);
2387
2388 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2389
2390 return 0;
2391}
2392
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002393int
2394il4965_txq_check_empty(struct il_priv *il, int sta_id, u8 tid, int txq_id)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002395{
2396 struct il_queue *q = &il->txq[txq_id].q;
2397 u8 *addr = il->stations[sta_id].sta.sta.addr;
2398 struct il_tid_data *tid_data = &il->stations[sta_id].tid[tid];
2399 struct il_rxon_context *ctx;
2400
2401 ctx = &il->ctx;
2402
2403 lockdep_assert_held(&il->sta_lock);
2404
2405 switch (il->stations[sta_id].tid[tid].agg.state) {
2406 case IL_EMPTYING_HW_QUEUE_DELBA:
2407 /* We are reclaiming the last packet of the */
2408 /* aggregated HW queue */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002409 if (txq_id == tid_data->agg.txq_id &&
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002410 q->read_ptr == q->write_ptr) {
2411 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
2412 int tx_fifo = il4965_get_fifo_from_tid(ctx, tid);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002413 D_HT("HW queue empty: continue DELBA flow\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002414 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo);
2415 tid_data->agg.state = IL_AGG_OFF;
2416 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2417 }
2418 break;
2419 case IL_EMPTYING_HW_QUEUE_ADDBA:
2420 /* We are reclaiming the last packet of the queue */
2421 if (tid_data->tfds_in_queue == 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002422 D_HT("HW queue empty: continue ADDBA flow\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002423 tid_data->agg.state = IL_AGG_ON;
2424 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2425 }
2426 break;
2427 }
2428
2429 return 0;
2430}
2431
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002432static void
2433il4965_non_agg_tx_status(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002434 const u8 *addr1)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002435{
2436 struct ieee80211_sta *sta;
2437 struct il_station_priv *sta_priv;
2438
2439 rcu_read_lock();
2440 sta = ieee80211_find_sta(ctx->vif, addr1);
2441 if (sta) {
2442 sta_priv = (void *)sta->drv_priv;
2443 /* avoid atomic ops if this isn't a client */
2444 if (sta_priv->client &&
2445 atomic_dec_return(&sta_priv->pending_frames) == 0)
2446 ieee80211_sta_block_awake(il->hw, sta, false);
2447 }
2448 rcu_read_unlock();
2449}
2450
2451static void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002452il4965_tx_status(struct il_priv *il, struct il_tx_info *tx_info, bool is_agg)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002453{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002454 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx_info->skb->data;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002455
2456 if (!is_agg)
2457 il4965_non_agg_tx_status(il, tx_info->ctx, hdr->addr1);
2458
2459 ieee80211_tx_status_irqsafe(il->hw, tx_info->skb);
2460}
2461
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002462int
2463il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002464{
2465 struct il_tx_queue *txq = &il->txq[txq_id];
2466 struct il_queue *q = &txq->q;
2467 struct il_tx_info *tx_info;
2468 int nfreed = 0;
2469 struct ieee80211_hdr *hdr;
2470
2471 if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
2472 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002473 "is out of range [0-%d] %d %d.\n", txq_id, idx, q->n_bd,
2474 q->write_ptr, q->read_ptr);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002475 return 0;
2476 }
2477
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002478 for (idx = il_queue_inc_wrap(idx, q->n_bd); q->read_ptr != idx;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002479 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
2480
2481 tx_info = &txq->txb[txq->q.read_ptr];
2482
2483 if (WARN_ON_ONCE(tx_info->skb == NULL))
2484 continue;
2485
2486 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
2487 if (ieee80211_is_data_qos(hdr->frame_control))
2488 nfreed++;
2489
2490 il4965_tx_status(il, tx_info,
2491 txq_id >= IL4965_FIRST_AMPDU_QUEUE);
2492 tx_info->skb = NULL;
2493
2494 il->cfg->ops->lib->txq_free_tfd(il, txq);
2495 }
2496 return nfreed;
2497}
2498
2499/**
2500 * il4965_tx_status_reply_compressed_ba - Update tx status from block-ack
2501 *
2502 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
2503 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
2504 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002505static int
2506il4965_tx_status_reply_compressed_ba(struct il_priv *il, struct il_ht_agg *agg,
2507 struct il_compressed_ba_resp *ba_resp)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002508{
2509 int i, sh, ack;
2510 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
2511 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2512 int successes = 0;
2513 struct ieee80211_tx_info *info;
2514 u64 bitmap, sent_bitmap;
2515
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002516 if (unlikely(!agg->wait_for_ba)) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002517 if (unlikely(ba_resp->bitmap))
2518 IL_ERR("Received BA when not expected\n");
2519 return -EINVAL;
2520 }
2521
2522 /* Mark that the expected block-ack response arrived */
2523 agg->wait_for_ba = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002524 D_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002525
2526 /* Calculate shift to align block-ack bits with our Tx win bits */
2527 sh = agg->start_idx - SEQ_TO_IDX(seq_ctl >> 4);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002528 if (sh < 0) /* tbw something is wrong with indices */
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002529 sh += 0x100;
2530
2531 if (agg->frame_count > (64 - sh)) {
2532 D_TX_REPLY("more frames than bitmap size");
2533 return -1;
2534 }
2535
2536 /* don't use 64-bit values for now */
2537 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
2538
2539 /* check for success or failure according to the
2540 * transmitted bitmap and block-ack bitmap */
2541 sent_bitmap = bitmap & agg->bitmap;
2542
2543 /* For each frame attempted in aggregation,
2544 * update driver's record of tx frame's status. */
2545 i = 0;
2546 while (sent_bitmap) {
2547 ack = sent_bitmap & 1ULL;
2548 successes += ack;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002549 D_TX_REPLY("%s ON i=%d idx=%d raw=%d\n", ack ? "ACK" : "NACK",
2550 i, (agg->start_idx + i) & 0xff, agg->start_idx + i);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002551 sent_bitmap >>= 1;
2552 ++i;
2553 }
2554
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002555 D_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002556
2557 info = IEEE80211_SKB_CB(il->txq[scd_flow].txb[agg->start_idx].skb);
2558 memset(&info->status, 0, sizeof(info->status));
2559 info->flags |= IEEE80211_TX_STAT_ACK;
2560 info->flags |= IEEE80211_TX_STAT_AMPDU;
2561 info->status.ampdu_ack_len = successes;
2562 info->status.ampdu_len = agg->frame_count;
2563 il4965_hwrate_to_tx_control(il, agg->rate_n_flags, info);
2564
2565 return 0;
2566}
2567
2568/**
2569 * translate ucode response to mac80211 tx status control values
2570 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002571void
2572il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
2573 struct ieee80211_tx_info *info)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002574{
2575 struct ieee80211_tx_rate *r = &info->control.rates[0];
2576
2577 info->antenna_sel_tx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002578 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002579 if (rate_n_flags & RATE_MCS_HT_MSK)
2580 r->flags |= IEEE80211_TX_RC_MCS;
2581 if (rate_n_flags & RATE_MCS_GF_MSK)
2582 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
2583 if (rate_n_flags & RATE_MCS_HT40_MSK)
2584 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2585 if (rate_n_flags & RATE_MCS_DUP_MSK)
2586 r->flags |= IEEE80211_TX_RC_DUP_DATA;
2587 if (rate_n_flags & RATE_MCS_SGI_MSK)
2588 r->flags |= IEEE80211_TX_RC_SHORT_GI;
2589 r->idx = il4965_hwrate_to_mac80211_idx(rate_n_flags, info->band);
2590}
2591
2592/**
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02002593 * il4965_hdl_compressed_ba - Handler for N_COMPRESSED_BA
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002594 *
2595 * Handles block-acknowledge notification from device, which reports success
2596 * of frames sent via aggregation.
2597 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002598void
2599il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002600{
2601 struct il_rx_pkt *pkt = rxb_addr(rxb);
2602 struct il_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
2603 struct il_tx_queue *txq = NULL;
2604 struct il_ht_agg *agg;
2605 int idx;
2606 int sta_id;
2607 int tid;
2608 unsigned long flags;
2609
2610 /* "flow" corresponds to Tx queue */
2611 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2612
2613 /* "ssn" is start of block-ack Tx win, corresponds to idx
2614 * (in Tx queue's circular buffer) of first TFD/frame in win */
2615 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
2616
2617 if (scd_flow >= il->hw_params.max_txq_num) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002618 IL_ERR("BUG_ON scd_flow is bigger than number of queues\n");
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002619 return;
2620 }
2621
2622 txq = &il->txq[scd_flow];
2623 sta_id = ba_resp->sta_id;
2624 tid = ba_resp->tid;
2625 agg = &il->stations[sta_id].tid[tid].agg;
2626 if (unlikely(agg->txq_id != scd_flow)) {
2627 /*
2628 * FIXME: this is a uCode bug which need to be addressed,
2629 * log the information and return for now!
2630 * since it is possible happen very often and in order
2631 * not to fill the syslog, don't enable the logging by default
2632 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002633 D_TX_REPLY("BA scd_flow %d does not match txq_id %d\n",
2634 scd_flow, agg->txq_id);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002635 return;
2636 }
2637
2638 /* Find idx just before block-ack win */
2639 idx = il_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
2640
2641 spin_lock_irqsave(&il->sta_lock, flags);
2642
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002643 D_TX_REPLY("N_COMPRESSED_BA [%d] Received from %pM, " "sta_id = %d\n",
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002644 agg->wait_for_ba, (u8 *) &ba_resp->sta_addr_lo32,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002645 ba_resp->sta_id);
2646 D_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx," "scd_flow = "
2647 "%d, scd_ssn = %d\n", ba_resp->tid, ba_resp->seq_ctl,
2648 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
2649 ba_resp->scd_flow, ba_resp->scd_ssn);
2650 D_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx\n", agg->start_idx,
2651 (unsigned long long)agg->bitmap);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002652
2653 /* Update driver's record of ACK vs. not for each frame in win */
2654 il4965_tx_status_reply_compressed_ba(il, agg, ba_resp);
2655
2656 /* Release all TFDs before the SSN, i.e. all TFDs in front of
2657 * block-ack win (we assume that they've been successfully
2658 * transmitted ... if not, it's too late anyway). */
2659 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
2660 /* calculate mac80211 ampdu sw queue to wake */
2661 int freed = il4965_tx_queue_reclaim(il, scd_flow, idx);
2662 il4965_free_tfds_in_queue(il, sta_id, tid, freed);
2663
2664 if (il_queue_space(&txq->q) > txq->q.low_mark &&
2665 il->mac80211_registered &&
2666 agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
2667 il_wake_queue(il, txq);
2668
2669 il4965_txq_check_empty(il, sta_id, tid, scd_flow);
2670 }
2671
2672 spin_unlock_irqrestore(&il->sta_lock, flags);
2673}
2674
2675#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002676const char *
2677il4965_get_tx_fail_reason(u32 status)
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002678{
2679#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
2680#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
2681
2682 switch (status & TX_STATUS_MSK) {
2683 case TX_STATUS_SUCCESS:
2684 return "SUCCESS";
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002685 TX_STATUS_POSTPONE(DELAY);
2686 TX_STATUS_POSTPONE(FEW_BYTES);
2687 TX_STATUS_POSTPONE(QUIET_PERIOD);
2688 TX_STATUS_POSTPONE(CALC_TTAK);
2689 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
2690 TX_STATUS_FAIL(SHORT_LIMIT);
2691 TX_STATUS_FAIL(LONG_LIMIT);
2692 TX_STATUS_FAIL(FIFO_UNDERRUN);
2693 TX_STATUS_FAIL(DRAIN_FLOW);
2694 TX_STATUS_FAIL(RFKILL_FLUSH);
2695 TX_STATUS_FAIL(LIFE_EXPIRE);
2696 TX_STATUS_FAIL(DEST_PS);
2697 TX_STATUS_FAIL(HOST_ABORTED);
2698 TX_STATUS_FAIL(BT_RETRY);
2699 TX_STATUS_FAIL(STA_INVALID);
2700 TX_STATUS_FAIL(FRAG_DROPPED);
2701 TX_STATUS_FAIL(TID_DISABLE);
2702 TX_STATUS_FAIL(FIFO_FLUSHED);
2703 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
2704 TX_STATUS_FAIL(PASSIVE_NO_RX);
2705 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002706 }
2707
2708 return "UNKNOWN";
2709
2710#undef TX_STATUS_FAIL
2711#undef TX_STATUS_POSTPONE
2712}
2713#endif /* CONFIG_IWLEGACY_DEBUG */
2714
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002715static struct il_link_quality_cmd *
2716il4965_sta_alloc_lq(struct il_priv *il, u8 sta_id)
2717{
2718 int i, r;
2719 struct il_link_quality_cmd *link_cmd;
2720 u32 rate_flags = 0;
2721 __le32 rate_n_flags;
2722
2723 link_cmd = kzalloc(sizeof(struct il_link_quality_cmd), GFP_KERNEL);
2724 if (!link_cmd) {
2725 IL_ERR("Unable to allocate memory for LQ cmd.\n");
2726 return NULL;
2727 }
2728 /* Set up the rate scaling to start at selected rate, fall back
2729 * all the way down to 1M in IEEE order, and then spin on 1M */
2730 if (il->band == IEEE80211_BAND_5GHZ)
2731 r = RATE_6M_IDX;
2732 else
2733 r = RATE_1M_IDX;
2734
2735 if (r >= IL_FIRST_CCK_RATE && r <= IL_LAST_CCK_RATE)
2736 rate_flags |= RATE_MCS_CCK_MSK;
2737
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002738 rate_flags |=
2739 il4965_first_antenna(il->hw_params.
2740 valid_tx_ant) << RATE_MCS_ANT_POS;
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01002741 rate_n_flags = cpu_to_le32(il_rates[r].plcp | rate_flags);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002742 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2743 link_cmd->rs_table[i].rate_n_flags = rate_n_flags;
2744
2745 link_cmd->general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002746 il4965_first_antenna(il->hw_params.valid_tx_ant);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002747
2748 link_cmd->general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002749 il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2750 valid_tx_ant);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002751 if (!link_cmd->general_params.dual_stream_ant_msk) {
2752 link_cmd->general_params.dual_stream_ant_msk = ANT_AB;
2753 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2754 link_cmd->general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002755 il->hw_params.valid_tx_ant;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002756 }
2757
2758 link_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2759 link_cmd->agg_params.agg_time_limit =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002760 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002761
2762 link_cmd->sta_id = sta_id;
2763
2764 return link_cmd;
2765}
2766
2767/*
2768 * il4965_add_bssid_station - Add the special IBSS BSSID station
2769 *
2770 * Function sleeps.
2771 */
2772int
2773il4965_add_bssid_station(struct il_priv *il, struct il_rxon_context *ctx,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002774 const u8 *addr, u8 *sta_id_r)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002775{
2776 int ret;
2777 u8 sta_id;
2778 struct il_link_quality_cmd *link_cmd;
2779 unsigned long flags;
2780
2781 if (sta_id_r)
2782 *sta_id_r = IL_INVALID_STATION;
2783
2784 ret = il_add_station_common(il, ctx, addr, 0, NULL, &sta_id);
2785 if (ret) {
2786 IL_ERR("Unable to add station %pM\n", addr);
2787 return ret;
2788 }
2789
2790 if (sta_id_r)
2791 *sta_id_r = sta_id;
2792
2793 spin_lock_irqsave(&il->sta_lock, flags);
2794 il->stations[sta_id].used |= IL_STA_LOCAL;
2795 spin_unlock_irqrestore(&il->sta_lock, flags);
2796
2797 /* Set up default rate scaling table in device's station table */
2798 link_cmd = il4965_sta_alloc_lq(il, sta_id);
2799 if (!link_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002800 IL_ERR("Unable to initialize rate scaling for station %pM.\n",
2801 addr);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002802 return -ENOMEM;
2803 }
2804
2805 ret = il_send_lq_cmd(il, ctx, link_cmd, CMD_SYNC, true);
2806 if (ret)
2807 IL_ERR("Link quality command failed (%d)\n", ret);
2808
2809 spin_lock_irqsave(&il->sta_lock, flags);
2810 il->stations[sta_id].lq = link_cmd;
2811 spin_unlock_irqrestore(&il->sta_lock, flags);
2812
2813 return 0;
2814}
2815
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002816static int
2817il4965_static_wepkey_cmd(struct il_priv *il, struct il_rxon_context *ctx,
2818 bool send_if_empty)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002819{
2820 int i, not_empty = 0;
2821 u8 buff[sizeof(struct il_wep_cmd) +
2822 sizeof(struct il_wep_key) * WEP_KEYS_MAX];
2823 struct il_wep_cmd *wep_cmd = (struct il_wep_cmd *)buff;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002824 size_t cmd_size = sizeof(struct il_wep_cmd);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002825 struct il_host_cmd cmd = {
Stanislaw Gruszkad98e2942012-02-03 17:31:42 +01002826 .id = C_WEPKEY,
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002827 .data = wep_cmd,
2828 .flags = CMD_SYNC,
2829 };
2830
2831 might_sleep();
2832
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002833 memset(wep_cmd, 0,
2834 cmd_size + (sizeof(struct il_wep_key) * WEP_KEYS_MAX));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002835
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002836 for (i = 0; i < WEP_KEYS_MAX; i++) {
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002837 wep_cmd->key[i].key_idx = i;
2838 if (ctx->wep_keys[i].key_size) {
2839 wep_cmd->key[i].key_offset = i;
2840 not_empty = 1;
2841 } else {
2842 wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
2843 }
2844
2845 wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size;
2846 memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002847 ctx->wep_keys[i].key_size);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002848 }
2849
2850 wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
2851 wep_cmd->num_keys = WEP_KEYS_MAX;
2852
2853 cmd_size += sizeof(struct il_wep_key) * WEP_KEYS_MAX;
2854
2855 cmd.len = cmd_size;
2856
2857 if (not_empty || send_if_empty)
2858 return il_send_cmd(il, &cmd);
2859 else
2860 return 0;
2861}
2862
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002863int
2864il4965_restore_default_wep_keys(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002865{
2866 lockdep_assert_held(&il->mutex);
2867
2868 return il4965_static_wepkey_cmd(il, ctx, false);
2869}
2870
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002871int
2872il4965_remove_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2873 struct ieee80211_key_conf *keyconf)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002874{
2875 int ret;
2876
2877 lockdep_assert_held(&il->mutex);
2878
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002879 D_WEP("Removing default WEP key: idx=%d\n", keyconf->keyidx);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002880
2881 memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0]));
2882 if (il_is_rfkill(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002883 D_WEP("Not sending C_WEPKEY command due to RFKILL.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002884 /* but keys in device are clear anyway so return success */
2885 return 0;
2886 }
2887 ret = il4965_static_wepkey_cmd(il, ctx, 1);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002888 D_WEP("Remove default WEP key: idx=%d ret=%d\n", keyconf->keyidx, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002889
2890 return ret;
2891}
2892
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002893int
2894il4965_set_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
2895 struct ieee80211_key_conf *keyconf)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002896{
2897 int ret;
2898
2899 lockdep_assert_held(&il->mutex);
2900
2901 if (keyconf->keylen != WEP_KEY_LEN_128 &&
2902 keyconf->keylen != WEP_KEY_LEN_64) {
2903 D_WEP("Bad WEP key length %d\n", keyconf->keylen);
2904 return -EINVAL;
2905 }
2906
2907 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2908 keyconf->hw_key_idx = HW_KEY_DEFAULT;
Stanislaw Gruszka8f9e5642012-02-03 17:31:43 +01002909 il->stations[IL_AP_ID].keyinfo.cipher = keyconf->cipher;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002910
2911 ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
2912 memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002913 keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002914
2915 ret = il4965_static_wepkey_cmd(il, ctx, false);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002916 D_WEP("Set default WEP key: len=%d idx=%d ret=%d\n", keyconf->keylen,
2917 keyconf->keyidx, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002918
2919 return ret;
2920}
2921
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002922static int
2923il4965_set_wep_dynamic_key_info(struct il_priv *il, struct il_rxon_context *ctx,
2924 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002925{
2926 unsigned long flags;
2927 __le16 key_flags = 0;
2928 struct il_addsta_cmd sta_cmd;
2929
2930 lockdep_assert_held(&il->mutex);
2931
2932 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2933
2934 key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
2935 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2936 key_flags &= ~STA_KEY_FLG_INVALID;
2937
2938 if (keyconf->keylen == WEP_KEY_LEN_128)
2939 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
2940
2941 if (sta_id == ctx->bcast_sta_id)
2942 key_flags |= STA_KEY_MULTICAST_MSK;
2943
2944 spin_lock_irqsave(&il->sta_lock, flags);
2945
2946 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2947 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2948 il->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
2949
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002950 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002951
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002952 memcpy(&il->stations[sta_id].sta.key.key[3], keyconf->key,
2953 keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002954
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002955 if ((il->stations[sta_id].sta.key.
2956 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002957 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002958 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002959 /* else, we are overriding an existing key => no need to allocated room
2960 * in uCode. */
2961
2962 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002963 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002964
2965 il->stations[sta_id].sta.key.key_flags = key_flags;
2966 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
2967 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
2968
2969 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002970 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002971 spin_unlock_irqrestore(&il->sta_lock, flags);
2972
2973 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
2974}
2975
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002976static int
2977il4965_set_ccmp_dynamic_key_info(struct il_priv *il,
2978 struct il_rxon_context *ctx,
2979 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002980{
2981 unsigned long flags;
2982 __le16 key_flags = 0;
2983 struct il_addsta_cmd sta_cmd;
2984
2985 lockdep_assert_held(&il->mutex);
2986
2987 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
2988 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2989 key_flags &= ~STA_KEY_FLG_INVALID;
2990
2991 if (sta_id == ctx->bcast_sta_id)
2992 key_flags |= STA_KEY_MULTICAST_MSK;
2993
2994 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2995
2996 spin_lock_irqsave(&il->sta_lock, flags);
2997 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2998 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2999
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003000 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003001
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003002 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, keyconf->keylen);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003003
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003004 if ((il->stations[sta_id].sta.key.
3005 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003006 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003007 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003008 /* else, we are overriding an existing key => no need to allocated room
3009 * in uCode. */
3010
3011 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003012 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003013
3014 il->stations[sta_id].sta.key.key_flags = key_flags;
3015 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3016 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3017
3018 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003019 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003020 spin_unlock_irqrestore(&il->sta_lock, flags);
3021
3022 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3023}
3024
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003025static int
3026il4965_set_tkip_dynamic_key_info(struct il_priv *il,
3027 struct il_rxon_context *ctx,
3028 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003029{
3030 unsigned long flags;
3031 int ret = 0;
3032 __le16 key_flags = 0;
3033
3034 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
3035 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3036 key_flags &= ~STA_KEY_FLG_INVALID;
3037
3038 if (sta_id == ctx->bcast_sta_id)
3039 key_flags |= STA_KEY_MULTICAST_MSK;
3040
3041 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3042 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
3043
3044 spin_lock_irqsave(&il->sta_lock, flags);
3045
3046 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
3047 il->stations[sta_id].keyinfo.keylen = 16;
3048
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003049 if ((il->stations[sta_id].sta.key.
3050 key_flags & STA_KEY_FLG_ENCRYPT_MSK) == STA_KEY_FLG_NO_ENC)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003051 il->stations[sta_id].sta.key.key_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003052 il_get_free_ucode_key_idx(il);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003053 /* else, we are overriding an existing key => no need to allocated room
3054 * in uCode. */
3055
3056 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003057 "no space for a new key");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003058
3059 il->stations[sta_id].sta.key.key_flags = key_flags;
3060
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003061 /* This copy is acutally not needed: we get the key with each TX */
3062 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, 16);
3063
3064 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, 16);
3065
3066 spin_unlock_irqrestore(&il->sta_lock, flags);
3067
3068 return ret;
3069}
3070
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003071void
3072il4965_update_tkip_key(struct il_priv *il, struct il_rxon_context *ctx,
3073 struct ieee80211_key_conf *keyconf,
3074 struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003075{
3076 u8 sta_id;
3077 unsigned long flags;
3078 int i;
3079
3080 if (il_scan_cancel(il)) {
3081 /* cancel scan failed, just live w/ bad key and rely
3082 briefly on SW decryption */
3083 return;
3084 }
3085
3086 sta_id = il_sta_id_or_broadcast(il, ctx, sta);
3087 if (sta_id == IL_INVALID_STATION)
3088 return;
3089
3090 spin_lock_irqsave(&il->sta_lock, flags);
3091
3092 il->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
3093
3094 for (i = 0; i < 5; i++)
3095 il->stations[sta_id].sta.key.tkip_rx_ttak[i] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003096 cpu_to_le16(phase1key[i]);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003097
3098 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3099 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3100
3101 il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
3102
3103 spin_unlock_irqrestore(&il->sta_lock, flags);
3104
3105}
3106
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003107int
3108il4965_remove_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3109 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003110{
3111 unsigned long flags;
3112 u16 key_flags;
3113 u8 keyidx;
3114 struct il_addsta_cmd sta_cmd;
3115
3116 lockdep_assert_held(&il->mutex);
3117
3118 ctx->key_mapping_keys--;
3119
3120 spin_lock_irqsave(&il->sta_lock, flags);
3121 key_flags = le16_to_cpu(il->stations[sta_id].sta.key.key_flags);
3122 keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
3123
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003124 D_WEP("Remove dynamic key: idx=%d sta=%d\n", keyconf->keyidx, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003125
3126 if (keyconf->keyidx != keyidx) {
3127 /* We need to remove a key with idx different that the one
3128 * in the uCode. This means that the key we need to remove has
3129 * been replaced by another one with different idx.
3130 * Don't do anything and return ok
3131 */
3132 spin_unlock_irqrestore(&il->sta_lock, flags);
3133 return 0;
3134 }
3135
3136 if (il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003137 IL_WARN("Removing wrong key %d 0x%x\n", keyconf->keyidx,
3138 key_flags);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003139 spin_unlock_irqrestore(&il->sta_lock, flags);
3140 return 0;
3141 }
3142
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003143 if (!test_and_clear_bit
3144 (il->stations[sta_id].sta.key.key_offset, &il->ucode_key_table))
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003145 IL_ERR("idx %d not used in uCode key table.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003146 il->stations[sta_id].sta.key.key_offset);
3147 memset(&il->stations[sta_id].keyinfo, 0, sizeof(struct il_hw_key));
3148 memset(&il->stations[sta_id].sta.key, 0, sizeof(struct il4965_keyinfo));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003149 il->stations[sta_id].sta.key.key_flags =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003150 STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003151 il->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
3152 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3153 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3154
3155 if (il_is_rfkill(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003156 D_WEP
3157 ("Not sending C_ADD_STA command because RFKILL enabled.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003158 spin_unlock_irqrestore(&il->sta_lock, flags);
3159 return 0;
3160 }
3161 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003162 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003163 spin_unlock_irqrestore(&il->sta_lock, flags);
3164
3165 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3166}
3167
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003168int
3169il4965_set_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3170 struct ieee80211_key_conf *keyconf, u8 sta_id)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003171{
3172 int ret;
3173
3174 lockdep_assert_held(&il->mutex);
3175
3176 ctx->key_mapping_keys++;
3177 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
3178
3179 switch (keyconf->cipher) {
3180 case WLAN_CIPHER_SUITE_CCMP:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003181 ret =
3182 il4965_set_ccmp_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003183 break;
3184 case WLAN_CIPHER_SUITE_TKIP:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003185 ret =
3186 il4965_set_tkip_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003187 break;
3188 case WLAN_CIPHER_SUITE_WEP40:
3189 case WLAN_CIPHER_SUITE_WEP104:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003190 ret = il4965_set_wep_dynamic_key_info(il, ctx, keyconf, sta_id);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003191 break;
3192 default:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003193 IL_ERR("Unknown alg: %s cipher = %x\n", __func__,
3194 keyconf->cipher);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003195 ret = -EINVAL;
3196 }
3197
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003198 D_WEP("Set dynamic key: cipher=%x len=%d idx=%d sta=%d ret=%d\n",
3199 keyconf->cipher, keyconf->keylen, keyconf->keyidx, sta_id, ret);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003200
3201 return ret;
3202}
3203
3204/**
3205 * il4965_alloc_bcast_station - add broadcast station into driver's station table.
3206 *
3207 * This adds the broadcast station into the driver's station table
3208 * and marks it driver active, so that it will be restored to the
3209 * device at the next best time.
3210 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003211int
3212il4965_alloc_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003213{
3214 struct il_link_quality_cmd *link_cmd;
3215 unsigned long flags;
3216 u8 sta_id;
3217
3218 spin_lock_irqsave(&il->sta_lock, flags);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003219 sta_id = il_prep_station(il, ctx, il_bcast_addr, false, NULL);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003220 if (sta_id == IL_INVALID_STATION) {
3221 IL_ERR("Unable to prepare broadcast station\n");
3222 spin_unlock_irqrestore(&il->sta_lock, flags);
3223
3224 return -EINVAL;
3225 }
3226
3227 il->stations[sta_id].used |= IL_STA_DRIVER_ACTIVE;
3228 il->stations[sta_id].used |= IL_STA_BCAST;
3229 spin_unlock_irqrestore(&il->sta_lock, flags);
3230
3231 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3232 if (!link_cmd) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003233 IL_ERR
3234 ("Unable to initialize rate scaling for bcast station.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003235 return -ENOMEM;
3236 }
3237
3238 spin_lock_irqsave(&il->sta_lock, flags);
3239 il->stations[sta_id].lq = link_cmd;
3240 spin_unlock_irqrestore(&il->sta_lock, flags);
3241
3242 return 0;
3243}
3244
3245/**
3246 * il4965_update_bcast_station - update broadcast station's LQ command
3247 *
3248 * Only used by iwl4965. Placed here to have all bcast station management
3249 * code together.
3250 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003251static int
3252il4965_update_bcast_station(struct il_priv *il, struct il_rxon_context *ctx)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003253{
3254 unsigned long flags;
3255 struct il_link_quality_cmd *link_cmd;
3256 u8 sta_id = ctx->bcast_sta_id;
3257
3258 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3259 if (!link_cmd) {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003260 IL_ERR("Unable to initialize rate scaling for bcast sta.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003261 return -ENOMEM;
3262 }
3263
3264 spin_lock_irqsave(&il->sta_lock, flags);
3265 if (il->stations[sta_id].lq)
3266 kfree(il->stations[sta_id].lq);
3267 else
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003268 D_INFO("Bcast sta rate scaling has not been initialized.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003269 il->stations[sta_id].lq = link_cmd;
3270 spin_unlock_irqrestore(&il->sta_lock, flags);
3271
3272 return 0;
3273}
3274
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003275int
3276il4965_update_bcast_stations(struct il_priv *il)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003277{
3278 return il4965_update_bcast_station(il, &il->ctx);
3279}
3280
3281/**
3282 * il4965_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
3283 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003284int
3285il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003286{
3287 unsigned long flags;
3288 struct il_addsta_cmd sta_cmd;
3289
3290 lockdep_assert_held(&il->mutex);
3291
3292 /* Remove "disable" flag, to enable Tx for this TID */
3293 spin_lock_irqsave(&il->sta_lock, flags);
3294 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3295 il->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3296 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3297 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003298 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003299 spin_unlock_irqrestore(&il->sta_lock, flags);
3300
3301 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3302}
3303
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003304int
3305il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta, int tid,
3306 u16 ssn)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003307{
3308 unsigned long flags;
3309 int sta_id;
3310 struct il_addsta_cmd sta_cmd;
3311
3312 lockdep_assert_held(&il->mutex);
3313
3314 sta_id = il_sta_id(sta);
3315 if (sta_id == IL_INVALID_STATION)
3316 return -ENXIO;
3317
3318 spin_lock_irqsave(&il->sta_lock, flags);
3319 il->stations[sta_id].sta.station_flags_msk = 0;
3320 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003321 il->stations[sta_id].sta.add_immediate_ba_tid = (u8) tid;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003322 il->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3323 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3324 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003325 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003326 spin_unlock_irqrestore(&il->sta_lock, flags);
3327
3328 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3329}
3330
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003331int
3332il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta, int tid)
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003333{
3334 unsigned long flags;
3335 int sta_id;
3336 struct il_addsta_cmd sta_cmd;
3337
3338 lockdep_assert_held(&il->mutex);
3339
3340 sta_id = il_sta_id(sta);
3341 if (sta_id == IL_INVALID_STATION) {
3342 IL_ERR("Invalid station for AGG tid %d\n", tid);
3343 return -ENXIO;
3344 }
3345
3346 spin_lock_irqsave(&il->sta_lock, flags);
3347 il->stations[sta_id].sta.station_flags_msk = 0;
3348 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003349 il->stations[sta_id].sta.remove_immediate_ba_tid = (u8) tid;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003350 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3351 memcpy(&sta_cmd, &il->stations[sta_id].sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003352 sizeof(struct il_addsta_cmd));
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003353 spin_unlock_irqrestore(&il->sta_lock, flags);
3354
3355 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3356}
3357
3358void
3359il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt)
3360{
3361 unsigned long flags;
3362
3363 spin_lock_irqsave(&il->sta_lock, flags);
3364 il->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
3365 il->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
3366 il->stations[sta_id].sta.sta.modify_mask =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003367 STA_MODIFY_SLEEP_TX_COUNT_MSK;
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003368 il->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
3369 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003370 il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003371 spin_unlock_irqrestore(&il->sta_lock, flags);
3372
3373}
3374
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003375void
3376il4965_update_chain_flags(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003377{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003378 if (il->cfg->ops->hcmd->set_rxon_chain) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003379 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01003380 if (il->active.rx_chain != il->staging.rx_chain)
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003381 il_commit_rxon(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003382 }
3383}
3384
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003385static void
3386il4965_clear_free_frames(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003387{
3388 struct list_head *element;
3389
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003390 D_INFO("%d frames on pre-allocated heap on clear.\n", il->frames_count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003391
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003392 while (!list_empty(&il->free_frames)) {
3393 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003394 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003395 kfree(list_entry(element, struct il_frame, list));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003396 il->frames_count--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003397 }
3398
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003399 if (il->frames_count) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003400 IL_WARN("%d frames still in use. Did we lose one?\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003401 il->frames_count);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003402 il->frames_count = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003403 }
3404}
3405
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003406static struct il_frame *
3407il4965_get_free_frame(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003408{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003409 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003410 struct list_head *element;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003411 if (list_empty(&il->free_frames)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003412 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
3413 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003414 IL_ERR("Could not allocate frame!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003415 return NULL;
3416 }
3417
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003418 il->frames_count++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003419 return frame;
3420 }
3421
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003422 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003423 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003424 return list_entry(element, struct il_frame, list);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003425}
3426
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003427static void
3428il4965_free_frame(struct il_priv *il, struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003429{
3430 memset(frame, 0, sizeof(*frame));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003431 list_add(&frame->list, &il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003432}
3433
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003434static u32
3435il4965_fill_beacon_frame(struct il_priv *il, struct ieee80211_hdr *hdr,
3436 int left)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003437{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003438 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003439
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003440 if (!il->beacon_skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003441 return 0;
3442
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003443 if (il->beacon_skb->len > left)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003444 return 0;
3445
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003446 memcpy(hdr, il->beacon_skb->data, il->beacon_skb->len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003447
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003448 return il->beacon_skb->len;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003449}
3450
3451/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003452static void
3453il4965_set_beacon_tim(struct il_priv *il,
3454 struct il_tx_beacon_cmd *tx_beacon_cmd, u8 * beacon,
3455 u32 frame_size)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003456{
3457 u16 tim_idx;
3458 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
3459
3460 /*
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003461 * The idx is relative to frame start but we start looking at the
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003462 * variable-length part of the beacon.
3463 */
3464 tim_idx = mgmt->u.beacon.variable - beacon;
3465
3466 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
3467 while ((tim_idx < (frame_size - 2)) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003468 (beacon[tim_idx] != WLAN_EID_TIM))
3469 tim_idx += beacon[tim_idx + 1] + 2;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003470
3471 /* If TIM field was found, set variables */
3472 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
3473 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003474 tx_beacon_cmd->tim_size = beacon[tim_idx + 1];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003475 } else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003476 IL_WARN("Unable to find TIM Element in beacon\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003477}
3478
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003479static unsigned int
3480il4965_hw_get_beacon_cmd(struct il_priv *il, struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003481{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003482 struct il_tx_beacon_cmd *tx_beacon_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003483 u32 frame_size;
3484 u32 rate_flags;
3485 u32 rate;
3486 /*
3487 * We have to set up the TX command, the TX Beacon command, and the
3488 * beacon contents.
3489 */
3490
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003491 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003492
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003493 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003494 IL_ERR("trying to build beacon w/o beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003495 return 0;
3496 }
3497
3498 /* Initialize memory */
3499 tx_beacon_cmd = &frame->u.beacon;
3500 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
3501
3502 /* Set up TX beacon contents */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003503 frame_size =
3504 il4965_fill_beacon_frame(il, tx_beacon_cmd->frame,
3505 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003506 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
3507 return 0;
3508 if (!frame_size)
3509 return 0;
3510
3511 /* Set up TX command fields */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003512 tx_beacon_cmd->tx.len = cpu_to_le16((u16) frame_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003513 tx_beacon_cmd->tx.sta_id = il->beacon_ctx->bcast_sta_id;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003514 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003515 tx_beacon_cmd->tx.tx_flags =
3516 TX_CMD_FLG_SEQ_CTL_MSK | TX_CMD_FLG_TSF_MSK |
3517 TX_CMD_FLG_STA_RATE_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003518
3519 /* Set up TX beacon command fields */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003520 il4965_set_beacon_tim(il, tx_beacon_cmd, (u8 *) tx_beacon_cmd->frame,
3521 frame_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003522
3523 /* Set up packet rate and flags */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003524 rate = il_get_lowest_plcp(il, il->beacon_ctx);
Stanislaw Gruszkaa0c1ef32011-12-23 08:13:44 +01003525 il4965_toggle_tx_ant(il, &il->mgmt_tx_ant, il->hw_params.valid_tx_ant);
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01003526 rate_flags = BIT(il->mgmt_tx_ant) << RATE_MCS_ANT_POS;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003527 if ((rate >= IL_FIRST_CCK_RATE) && (rate <= IL_LAST_CCK_RATE))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003528 rate_flags |= RATE_MCS_CCK_MSK;
Stanislaw Gruszka616107e2011-12-23 08:13:45 +01003529 tx_beacon_cmd->tx.rate_n_flags = cpu_to_le32(rate | rate_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003530
3531 return sizeof(*tx_beacon_cmd) + frame_size;
3532}
3533
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003534int
3535il4965_send_beacon_cmd(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003536{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003537 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003538 unsigned int frame_size;
3539 int rc;
3540
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003541 frame = il4965_get_free_frame(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003542 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003543 IL_ERR("Could not obtain free frame buffer for beacon "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003544 "command.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003545 return -ENOMEM;
3546 }
3547
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003548 frame_size = il4965_hw_get_beacon_cmd(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003549 if (!frame_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003550 IL_ERR("Error configuring the beacon command\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003551 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003552 return -EINVAL;
3553 }
3554
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003555 rc = il_send_cmd_pdu(il, C_TX_BEACON, frame_size, &frame->u.cmd[0]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003556
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003557 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003558
3559 return rc;
3560}
3561
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003562static inline dma_addr_t
3563il4965_tfd_tb_get_addr(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003564{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003565 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003566
3567 dma_addr_t addr = get_unaligned_le32(&tb->lo);
3568 if (sizeof(dma_addr_t) > sizeof(u32))
3569 addr |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003570 ((dma_addr_t) (le16_to_cpu(tb->hi_n_len) & 0xF) << 16) <<
3571 16;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003572
3573 return addr;
3574}
3575
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003576static inline u16
3577il4965_tfd_tb_get_len(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003578{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003579 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003580
3581 return le16_to_cpu(tb->hi_n_len) >> 4;
3582}
3583
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003584static inline void
3585il4965_tfd_set_tb(struct il_tfd *tfd, u8 idx, dma_addr_t addr, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003586{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003587 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003588 u16 hi_n_len = len << 4;
3589
3590 put_unaligned_le32(addr, &tb->lo);
3591 if (sizeof(dma_addr_t) > sizeof(u32))
3592 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
3593
3594 tb->hi_n_len = cpu_to_le16(hi_n_len);
3595
3596 tfd->num_tbs = idx + 1;
3597}
3598
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003599static inline u8
3600il4965_tfd_get_num_tbs(struct il_tfd *tfd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003601{
3602 return tfd->num_tbs & 0x1f;
3603}
3604
3605/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003606 * il4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003607 * @il - driver ilate data
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003608 * @txq - tx queue
3609 *
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003610 * Does NOT advance any TFD circular buffer read/write idxes
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003611 * Does NOT free the TFD itself (which is within circular buffer)
3612 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003613void
3614il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003615{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003616 struct il_tfd *tfd_tmp = (struct il_tfd *)txq->tfds;
3617 struct il_tfd *tfd;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003618 struct pci_dev *dev = il->pci_dev;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003619 int idx = txq->q.read_ptr;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003620 int i;
3621 int num_tbs;
3622
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003623 tfd = &tfd_tmp[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003624
3625 /* Sanity check on number of chunks */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003626 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003627
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003628 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003629 IL_ERR("Too many chunks: %i\n", num_tbs);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003630 /* @todo issue fatal error, it is quite serious situation */
3631 return;
3632 }
3633
3634 /* Unmap tx_cmd */
3635 if (num_tbs)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003636 pci_unmap_single(dev, dma_unmap_addr(&txq->meta[idx], mapping),
3637 dma_unmap_len(&txq->meta[idx], len),
3638 PCI_DMA_BIDIRECTIONAL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003639
3640 /* Unmap chunks, if any. */
3641 for (i = 1; i < num_tbs; i++)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003642 pci_unmap_single(dev, il4965_tfd_tb_get_addr(tfd, i),
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003643 il4965_tfd_tb_get_len(tfd, i),
3644 PCI_DMA_TODEVICE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003645
3646 /* free SKB */
3647 if (txq->txb) {
3648 struct sk_buff *skb;
3649
3650 skb = txq->txb[txq->q.read_ptr].skb;
3651
3652 /* can be called from irqs-disabled context */
3653 if (skb) {
3654 dev_kfree_skb_any(skb);
3655 txq->txb[txq->q.read_ptr].skb = NULL;
3656 }
3657 }
3658}
3659
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003660int
3661il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il, struct il_tx_queue *txq,
3662 dma_addr_t addr, u16 len, u8 reset, u8 pad)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003663{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003664 struct il_queue *q;
3665 struct il_tfd *tfd, *tfd_tmp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003666 u32 num_tbs;
3667
3668 q = &txq->q;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003669 tfd_tmp = (struct il_tfd *)txq->tfds;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003670 tfd = &tfd_tmp[q->write_ptr];
3671
3672 if (reset)
3673 memset(tfd, 0, sizeof(*tfd));
3674
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003675 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003676
3677 /* Each TFD can point to a maximum 20 Tx buffers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003678 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003679 IL_ERR("Error can not send more than %d chunks\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003680 IL_NUM_OF_TBS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003681 return -EINVAL;
3682 }
3683
3684 BUG_ON(addr & ~DMA_BIT_MASK(36));
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003685 if (unlikely(addr & ~IL_TX_DMA_MASK))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003686 IL_ERR("Unaligned address = %llx\n", (unsigned long long)addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003687
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003688 il4965_tfd_set_tb(tfd, num_tbs, addr, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003689
3690 return 0;
3691}
3692
3693/*
3694 * Tell nic where to find circular buffer of Tx Frame Descriptors for
3695 * given Tx queue, and enable the DMA channel used for that queue.
3696 *
3697 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
3698 * channels supported in hardware.
3699 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003700int
3701il4965_hw_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003702{
3703 int txq_id = txq->q.id;
3704
3705 /* Circular buffer (TFD queue in DRAM) physical base address */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003706 il_wr(il, FH49_MEM_CBBC_QUEUE(txq_id), txq->q.dma_addr >> 8);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003707
3708 return 0;
3709}
3710
3711/******************************************************************************
3712 *
3713 * Generic RX handler implementations
3714 *
3715 ******************************************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003716static void
3717il4965_hdl_alive(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003718{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003719 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003720 struct il_alive_resp *palive;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003721 struct delayed_work *pwork;
3722
3723 palive = &pkt->u.alive_frame;
3724
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003725 D_INFO("Alive ucode status 0x%08X revision " "0x%01X 0x%01X\n",
3726 palive->is_valid, palive->ver_type, palive->ver_subtype);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003727
3728 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003729 D_INFO("Initialization Alive received.\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003730 memcpy(&il->card_alive_init, &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003731 sizeof(struct il_init_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003732 pwork = &il->init_alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003733 } else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003734 D_INFO("Runtime Alive received.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003735 memcpy(&il->card_alive, &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003736 sizeof(struct il_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003737 pwork = &il->alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003738 }
3739
3740 /* We delay the ALIVE response by 5ms to
3741 * give the HW RF Kill time to activate... */
3742 if (palive->is_valid == UCODE_VALID_OK)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003743 queue_delayed_work(il->workqueue, pwork, msecs_to_jiffies(5));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003744 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003745 IL_WARN("uCode did not respond OK.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003746}
3747
3748/**
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003749 * il4965_bg_stats_periodic - Timer callback to queue stats
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003750 *
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003751 * This callback is provided in order to send a stats request.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003752 *
3753 * This timer function is continually reset to execute within
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02003754 * REG_RECALIB_PERIOD seconds since the last N_STATS
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003755 * was received. We need to ensure we receive the stats in order
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003756 * to update the temperature used for calibrating the TXPOWER.
3757 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003758static void
3759il4965_bg_stats_periodic(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003760{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003761 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003762
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003763 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003764 return;
3765
3766 /* dont send host command if rf-kill is on */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003767 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003768 return;
3769
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003770 il_send_stats_request(il, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003771}
3772
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003773static void
3774il4965_hdl_beacon(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003775{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003776 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003777 struct il4965_beacon_notif *beacon =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003778 (struct il4965_beacon_notif *)pkt->u.raw;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003779#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003780 u8 rate = il4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003781
Stanislaw Gruszka5bf0dac2011-12-23 08:13:47 +01003782 D_RX("beacon status %x retries %d iss %d tsf:0x%.8x%.8x rate %d\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003783 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
3784 beacon->beacon_notify_hdr.failure_frame,
3785 le32_to_cpu(beacon->ibss_mgr_status),
3786 le32_to_cpu(beacon->high_tsf), le32_to_cpu(beacon->low_tsf), rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003787#endif
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003788 il->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003789}
3790
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003791static void
3792il4965_perform_ct_kill_task(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003793{
3794 unsigned long flags;
3795
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003796 D_POWER("Stop all queues\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003797
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003798 if (il->mac80211_registered)
3799 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003800
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003801 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003802 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003803 _il_rd(il, CSR_UCODE_DRV_GP1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003804
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003805 spin_lock_irqsave(&il->reg_lock, flags);
Stanislaw Gruszka13882262011-08-24 15:39:23 +02003806 if (!_il_grab_nic_access(il))
3807 _il_release_nic_access(il);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003808 spin_unlock_irqrestore(&il->reg_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003809}
3810
3811/* Handle notification from uCode that card's power state is changing
3812 * due to software, hardware, or critical temperature RFKILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003813static void
3814il4965_hdl_card_state(struct il_priv *il, struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003815{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003816 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003817 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003818 unsigned long status = il->status;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003819
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003820 D_RF_KILL("Card state received: HW:%s SW:%s CT:%s\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003821 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3822 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
3823 (flags & CT_CARD_DISABLED) ? "Reached" : "Not reached");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003824
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003825 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED | CT_CARD_DISABLED)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003826
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003827 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003828 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003829
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003830 il_wr(il, HBUS_TARG_MBX_C, HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003831
3832 if (!(flags & RXON_CARD_DISABLED)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003833 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003834 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02003835 il_wr(il, HBUS_TARG_MBX_C,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003836 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003837 }
3838 }
3839
3840 if (flags & CT_CARD_DISABLED)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003841 il4965_perform_ct_kill_task(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003842
3843 if (flags & HW_CARD_DISABLED)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003844 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003845 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003846 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003847
3848 if (!(flags & RXON_CARD_DISABLED))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003849 il_scan_cancel(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003850
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003851 if ((test_bit(S_RF_KILL_HW, &status) !=
3852 test_bit(S_RF_KILL_HW, &il->status)))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003853 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003854 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003855 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003856 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003857}
3858
3859/**
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003860 * il4965_setup_handlers - Initialize Rx handler callbacks
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003861 *
3862 * Setup the RX handlers for each of the reply types sent from the uCode
3863 * to the host.
3864 *
3865 * This function chains into the hardware specific files for them to setup
3866 * any hardware specific handlers as well.
3867 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003868static void
3869il4965_setup_handlers(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003870{
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003871 il->handlers[N_ALIVE] = il4965_hdl_alive;
3872 il->handlers[N_ERROR] = il_hdl_error;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003873 il->handlers[N_CHANNEL_SWITCH] = il_hdl_csa;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003874 il->handlers[N_SPECTRUM_MEASUREMENT] = il_hdl_spectrum_measurement;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003875 il->handlers[N_PM_SLEEP] = il_hdl_pm_sleep;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003876 il->handlers[N_PM_DEBUG_STATS] = il_hdl_pm_debug_stats;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003877 il->handlers[N_BEACON] = il4965_hdl_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003878
3879 /*
3880 * The same handler is used for both the REPLY to a discrete
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003881 * stats request from the host as well as for the periodic
3882 * stats notifications (after received beacons) from the uCode.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003883 */
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003884 il->handlers[C_STATS] = il4965_hdl_c_stats;
3885 il->handlers[N_STATS] = il4965_hdl_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003886
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003887 il_setup_rx_scan_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003888
3889 /* status change handler */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003890 il->handlers[N_CARD_STATE] = il4965_hdl_card_state;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003891
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003892 il->handlers[N_MISSED_BEACONS] = il4965_hdl_missed_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003893 /* Rx handlers */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003894 il->handlers[N_RX_PHY] = il4965_hdl_rx_phy;
3895 il->handlers[N_RX_MPDU] = il4965_hdl_rx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003896 /* block ack */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003897 il->handlers[N_COMPRESSED_BA] = il4965_hdl_compressed_ba;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003898 /* Set up hardware specific Rx handlers */
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003899 il->cfg->ops->lib->handler_setup(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003900}
3901
3902/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003903 * il4965_rx_handle - Main entry function for receiving responses from uCode
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003904 *
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003905 * Uses the il->handlers callback function array to invoke
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003906 * the appropriate handlers, including command responses,
3907 * frame-received notifications, and other notifications.
3908 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003909void
3910il4965_rx_handle(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003911{
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003912 struct il_rx_buf *rxb;
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003913 struct il_rx_pkt *pkt;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003914 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003915 u32 r, i;
3916 int reclaim;
3917 unsigned long flags;
3918 u8 fill_rx = 0;
3919 u32 count = 8;
3920 int total_empty;
3921
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003922 /* uCode's read idx (stored in shared DRAM) indicates the last Rx
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003923 * buffer that the driver may process (last buffer filled by ucode). */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003924 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003925 i = rxq->read;
3926
3927 /* Rx interrupt, but nothing sent from uCode */
3928 if (i == r)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003929 D_RX("r = %d, i = %d\n", r, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003930
3931 /* calculate total frames need to be restock after handling RX */
3932 total_empty = r - rxq->write_actual;
3933 if (total_empty < 0)
3934 total_empty += RX_QUEUE_SIZE;
3935
3936 if (total_empty > (RX_QUEUE_SIZE / 2))
3937 fill_rx = 1;
3938
3939 while (i != r) {
3940 int len;
3941
3942 rxb = rxq->queue[i];
3943
3944 /* If an RXB doesn't have a Rx queue slot associated with it,
3945 * then a bug has been introduced in the queue refilling
3946 * routines -- catch it here */
3947 BUG_ON(rxb == NULL);
3948
3949 rxq->queue[i] = NULL;
3950
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003951 pci_unmap_page(il->pci_dev, rxb->page_dma,
3952 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003953 PCI_DMA_FROMDEVICE);
3954 pkt = rxb_addr(rxb);
3955
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02003956 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003957 len += sizeof(u32); /* account for status word */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003958
3959 /* Reclaim a command buffer only if this packet is a response
3960 * to a (driver-originated) command.
3961 * If the packet (e.g. Rx frame) originated from uCode,
3962 * there is no command buffer to reclaim.
3963 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
3964 * but apparently a few don't get set; catch them here. */
3965 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003966 (pkt->hdr.cmd != N_RX_PHY) && (pkt->hdr.cmd != N_RX) &&
3967 (pkt->hdr.cmd != N_RX_MPDU) &&
3968 (pkt->hdr.cmd != N_COMPRESSED_BA) &&
3969 (pkt->hdr.cmd != N_STATS) && (pkt->hdr.cmd != C_TX);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003970
3971 /* Based on type of command response or notification,
3972 * handle those that need handling via function in
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003973 * handlers table. See il4965_setup_handlers() */
3974 if (il->handlers[pkt->hdr.cmd]) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003975 D_RX("r = %d, i = %d, %s, 0x%02x\n", r, i,
3976 il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003977 il->isr_stats.handlers[pkt->hdr.cmd]++;
3978 il->handlers[pkt->hdr.cmd] (il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003979 } else {
3980 /* No handling needed */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003981 D_RX("r %d i %d No handler needed for %s, 0x%02x\n", r,
3982 i, il_get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003983 }
3984
3985 /*
3986 * XXX: After here, we should always check rxb->page
3987 * against NULL before touching it or its virtual
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003988 * memory (pkt). Because some handler might have
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003989 * already taken or freed the pages.
3990 */
3991
3992 if (reclaim) {
3993 /* Invoke any callbacks, transfer the buffer to caller,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003994 * and fire off the (possibly) blocking il_send_cmd()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003995 * as we reclaim the driver command queue */
3996 if (rxb->page)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003997 il_tx_cmd_complete(il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003998 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003999 IL_WARN("Claim null rxb?\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004000 }
4001
4002 /* Reuse the page if possible. For notification packets and
4003 * SKBs that fail to Rx correctly, add them back into the
4004 * rx_free list for reuse later. */
4005 spin_lock_irqsave(&rxq->lock, flags);
4006 if (rxb->page != NULL) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004007 rxb->page_dma =
4008 pci_map_page(il->pci_dev, rxb->page, 0,
4009 PAGE_SIZE << il->hw_params.
4010 rx_page_order, PCI_DMA_FROMDEVICE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004011 list_add_tail(&rxb->list, &rxq->rx_free);
4012 rxq->free_count++;
4013 } else
4014 list_add_tail(&rxb->list, &rxq->rx_used);
4015
4016 spin_unlock_irqrestore(&rxq->lock, flags);
4017
4018 i = (i + 1) & RX_QUEUE_MASK;
4019 /* If there are a lot of unused frames,
4020 * restock the Rx queue so ucode wont assert. */
4021 if (fill_rx) {
4022 count++;
4023 if (count >= 8) {
4024 rxq->read = i;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004025 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004026 count = 0;
4027 }
4028 }
4029 }
4030
4031 /* Backtrack one entry */
4032 rxq->read = i;
4033 if (fill_rx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004034 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004035 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004036 il4965_rx_queue_restock(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004037}
4038
4039/* call this function to flush any scheduled tasklet */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004040static inline void
4041il4965_synchronize_irq(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004042{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004043 /* wait to make sure we flush pending tasklet */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004044 synchronize_irq(il->pci_dev->irq);
4045 tasklet_kill(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004046}
4047
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004048static void
4049il4965_irq_tasklet(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004050{
4051 u32 inta, handled = 0;
4052 u32 inta_fh;
4053 unsigned long flags;
4054 u32 i;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004055#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004056 u32 inta_mask;
4057#endif
4058
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004059 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004060
4061 /* Ack/clear/reset pending uCode interrupts.
4062 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4063 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004064 inta = _il_rd(il, CSR_INT);
4065 _il_wr(il, CSR_INT, inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004066
4067 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4068 * Any new interrupts that happen after this, either while we're
4069 * in this tasklet, or later, will show up in next ISR/tasklet. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004070 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
4071 _il_wr(il, CSR_FH_INT_STATUS, inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004072
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004073#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004074 if (il_get_debug_level(il) & IL_DL_ISR) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004075 /* just for debug */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004076 inta_mask = _il_rd(il, CSR_INT_MASK);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004077 D_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n", inta,
4078 inta_mask, inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004079 }
4080#endif
4081
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004082 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004083
4084 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4085 * atomic, make sure that inta covers all the interrupts that
4086 * we've discovered, even if FH interrupt came in just after
4087 * reading CSR_INT. */
4088 if (inta_fh & CSR49_FH_INT_RX_MASK)
4089 inta |= CSR_INT_BIT_FH_RX;
4090 if (inta_fh & CSR49_FH_INT_TX_MASK)
4091 inta |= CSR_INT_BIT_FH_TX;
4092
4093 /* Now service all interrupt bits discovered above. */
4094 if (inta & CSR_INT_BIT_HW_ERR) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004095 IL_ERR("Hardware error detected. Restarting.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004096
4097 /* Tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004098 il_disable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004099
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004100 il->isr_stats.hw++;
4101 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004102
4103 handled |= CSR_INT_BIT_HW_ERR;
4104
4105 return;
4106 }
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004107#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004108 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004109 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4110 if (inta & CSR_INT_BIT_SCD) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004111 D_ISR("Scheduler finished to transmit "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004112 "the frame/frames.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004113 il->isr_stats.sch++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004114 }
4115
4116 /* Alive notification via Rx interrupt will do the real work */
4117 if (inta & CSR_INT_BIT_ALIVE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004118 D_ISR("Alive interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004119 il->isr_stats.alive++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004120 }
4121 }
4122#endif
4123 /* Safely ignore these bits for debug checks below */
4124 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
4125
4126 /* HW RF KILL switch toggled */
4127 if (inta & CSR_INT_BIT_RF_KILL) {
4128 int hw_rf_kill = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004129 if (!
4130 (_il_rd(il, CSR_GP_CNTRL) &
4131 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004132 hw_rf_kill = 1;
4133
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004134 IL_WARN("RF_KILL bit toggled to %s.\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004135 hw_rf_kill ? "disable radio" : "enable radio");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004136
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004137 il->isr_stats.rfkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004138
4139 /* driver only loads ucode once setting the interface up.
4140 * the driver allows loading the ucode even if the radio
4141 * is killed. Hence update the killswitch state here. The
4142 * rfkill handler will care about restarting if needed.
4143 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004144 if (!test_bit(S_ALIVE, &il->status)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004145 if (hw_rf_kill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004146 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004147 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004148 clear_bit(S_RF_KILL_HW, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004149 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rf_kill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004150 }
4151
4152 handled |= CSR_INT_BIT_RF_KILL;
4153 }
4154
4155 /* Chip got too hot and stopped itself */
4156 if (inta & CSR_INT_BIT_CT_KILL) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004157 IL_ERR("Microcode CT kill error detected.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004158 il->isr_stats.ctkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004159 handled |= CSR_INT_BIT_CT_KILL;
4160 }
4161
4162 /* Error detected by uCode */
4163 if (inta & CSR_INT_BIT_SW_ERR) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004164 IL_ERR("Microcode SW error detected. " " Restarting 0x%X.\n",
4165 inta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004166 il->isr_stats.sw++;
4167 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004168 handled |= CSR_INT_BIT_SW_ERR;
4169 }
4170
4171 /*
4172 * uCode wakes up after power-down sleep.
4173 * Tell device about any new tx or host commands enqueued,
4174 * and about any Rx buffers made available while asleep.
4175 */
4176 if (inta & CSR_INT_BIT_WAKEUP) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004177 D_ISR("Wakeup interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004178 il_rx_queue_update_write_ptr(il, &il->rxq);
4179 for (i = 0; i < il->hw_params.max_txq_num; i++)
4180 il_txq_update_write_ptr(il, &il->txq[i]);
4181 il->isr_stats.wakeup++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004182 handled |= CSR_INT_BIT_WAKEUP;
4183 }
4184
4185 /* All uCode command responses, including Tx command responses,
4186 * Rx "responses" (frame-received notification), and other
4187 * notifications from uCode come through here*/
4188 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004189 il4965_rx_handle(il);
4190 il->isr_stats.rx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004191 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4192 }
4193
4194 /* This "Tx" DMA channel is used only for loading uCode */
4195 if (inta & CSR_INT_BIT_FH_TX) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004196 D_ISR("uCode load interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004197 il->isr_stats.tx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004198 handled |= CSR_INT_BIT_FH_TX;
4199 /* Wake up uCode load routine, now that load is complete */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004200 il->ucode_write_complete = 1;
4201 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004202 }
4203
4204 if (inta & ~handled) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004205 IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004206 il->isr_stats.unhandled++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004207 }
4208
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004209 if (inta & ~(il->inta_mask)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004210 IL_WARN("Disabled INTA bits 0x%08x were pending\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004211 inta & ~il->inta_mask);
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004212 IL_WARN(" with FH49_INT = 0x%08x\n", inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004213 }
4214
4215 /* Re-enable all interrupts */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02004216 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004217 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004218 il_enable_interrupts(il);
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02004219 /* Re-enable RF_KILL if it occurred */
4220 else if (handled & CSR_INT_BIT_RF_KILL)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004221 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004222
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004223#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004224 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004225 inta = _il_rd(il, CSR_INT);
4226 inta_mask = _il_rd(il, CSR_INT_MASK);
4227 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004228 D_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4229 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004230 }
4231#endif
4232}
4233
4234/*****************************************************************************
4235 *
4236 * sysfs attributes
4237 *
4238 *****************************************************************************/
4239
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004240#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004241
4242/*
4243 * The following adds a new attribute to the sysfs representation
4244 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
4245 * used for controlling the debug level.
4246 *
4247 * See the level definitions in iwl for details.
4248 *
4249 * The debug_level being managed using sysfs below is a per device debug
4250 * level that is used instead of the global debug level if it (the per
4251 * device debug level) is set.
4252 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004253static ssize_t
4254il4965_show_debug_level(struct device *d, struct device_attribute *attr,
4255 char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004256{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004257 struct il_priv *il = dev_get_drvdata(d);
4258 return sprintf(buf, "0x%08X\n", il_get_debug_level(il));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004259}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004260
4261static ssize_t
4262il4965_store_debug_level(struct device *d, struct device_attribute *attr,
4263 const char *buf, size_t count)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004264{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004265 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004266 unsigned long val;
4267 int ret;
4268
4269 ret = strict_strtoul(buf, 0, &val);
4270 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004271 IL_ERR("%s is not in hex or decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004272 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004273 il->debug_level = val;
4274 if (il_alloc_traffic_mem(il))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004275 IL_ERR("Not enough memory to generate traffic log\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004276 }
4277 return strnlen(buf, count);
4278}
4279
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004280static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO, il4965_show_debug_level,
4281 il4965_store_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004282
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004283#endif /* CONFIG_IWLEGACY_DEBUG */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004284
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004285static ssize_t
4286il4965_show_temperature(struct device *d, struct device_attribute *attr,
4287 char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004288{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004289 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004290
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004291 if (!il_is_alive(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004292 return -EAGAIN;
4293
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004294 return sprintf(buf, "%d\n", il->temperature);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004295}
4296
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004297static DEVICE_ATTR(temperature, S_IRUGO, il4965_show_temperature, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004298
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004299static ssize_t
4300il4965_show_tx_power(struct device *d, struct device_attribute *attr, char *buf)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004301{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004302 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004303
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004304 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004305 return sprintf(buf, "off\n");
4306 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004307 return sprintf(buf, "%d\n", il->tx_power_user_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004308}
4309
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004310static ssize_t
4311il4965_store_tx_power(struct device *d, struct device_attribute *attr,
4312 const char *buf, size_t count)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004313{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004314 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004315 unsigned long val;
4316 int ret;
4317
4318 ret = strict_strtoul(buf, 10, &val);
4319 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004320 IL_INFO("%s is not in decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004321 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004322 ret = il_set_tx_power(il, val, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004323 if (ret)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004324 IL_ERR("failed setting tx power (0x%d).\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004325 else
4326 ret = count;
4327 }
4328 return ret;
4329}
4330
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004331static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, il4965_show_tx_power,
4332 il4965_store_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004333
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004334static struct attribute *il_sysfs_entries[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004335 &dev_attr_temperature.attr,
4336 &dev_attr_tx_power.attr,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004337#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004338 &dev_attr_debug_level.attr,
4339#endif
4340 NULL
4341};
4342
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004343static struct attribute_group il_attribute_group = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004344 .name = NULL, /* put in device directory */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004345 .attrs = il_sysfs_entries,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004346};
4347
4348/******************************************************************************
4349 *
4350 * uCode download functions
4351 *
4352 ******************************************************************************/
4353
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004354static void
4355il4965_dealloc_ucode_pci(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004356{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004357 il_free_fw_desc(il->pci_dev, &il->ucode_code);
4358 il_free_fw_desc(il->pci_dev, &il->ucode_data);
4359 il_free_fw_desc(il->pci_dev, &il->ucode_data_backup);
4360 il_free_fw_desc(il->pci_dev, &il->ucode_init);
4361 il_free_fw_desc(il->pci_dev, &il->ucode_init_data);
4362 il_free_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004363}
4364
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004365static void
4366il4965_nic_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004367{
4368 /* Remove all resets to allow NIC to operate */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004369 _il_wr(il, CSR_RESET, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004370}
4371
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004372static void il4965_ucode_callback(const struct firmware *ucode_raw,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004373 void *context);
4374static int il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004375
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004376static int __must_check
4377il4965_request_firmware(struct il_priv *il, bool first)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004378{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004379 const char *name_pre = il->cfg->fw_name_pre;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004380 char tag[8];
4381
4382 if (first) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004383 il->fw_idx = il->cfg->ucode_api_max;
4384 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004385 } else {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004386 il->fw_idx--;
4387 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004388 }
4389
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004390 if (il->fw_idx < il->cfg->ucode_api_min) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004391 IL_ERR("no suitable firmware found!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004392 return -ENOENT;
4393 }
4394
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004395 sprintf(il->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004396
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004397 D_INFO("attempting to load firmware '%s'\n", il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004398
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004399 return request_firmware_nowait(THIS_MODULE, 1, il->firmware_name,
4400 &il->pci_dev->dev, GFP_KERNEL, il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004401 il4965_ucode_callback);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004402}
4403
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004404struct il4965_firmware_pieces {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004405 const void *inst, *data, *init, *init_data, *boot;
4406 size_t inst_size, data_size, init_size, init_data_size, boot_size;
4407};
4408
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004409static int
4410il4965_load_firmware(struct il_priv *il, const struct firmware *ucode_raw,
4411 struct il4965_firmware_pieces *pieces)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004412{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004413 struct il_ucode_header *ucode = (void *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004414 u32 api_ver, hdr_size;
4415 const u8 *src;
4416
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004417 il->ucode_ver = le32_to_cpu(ucode->ver);
4418 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004419
4420 switch (api_ver) {
4421 default:
4422 case 0:
4423 case 1:
4424 case 2:
4425 hdr_size = 24;
4426 if (ucode_raw->size < hdr_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004427 IL_ERR("File size too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004428 return -EINVAL;
4429 }
4430 pieces->inst_size = le32_to_cpu(ucode->v1.inst_size);
4431 pieces->data_size = le32_to_cpu(ucode->v1.data_size);
4432 pieces->init_size = le32_to_cpu(ucode->v1.init_size);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004433 pieces->init_data_size = le32_to_cpu(ucode->v1.init_data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004434 pieces->boot_size = le32_to_cpu(ucode->v1.boot_size);
4435 src = ucode->v1.data;
4436 break;
4437 }
4438
4439 /* Verify size of file vs. image size info in file's header */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004440 if (ucode_raw->size !=
4441 hdr_size + pieces->inst_size + pieces->data_size +
4442 pieces->init_size + pieces->init_data_size + pieces->boot_size) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004443
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004444 IL_ERR("uCode file size %d does not match expected size\n",
4445 (int)ucode_raw->size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004446 return -EINVAL;
4447 }
4448
4449 pieces->inst = src;
4450 src += pieces->inst_size;
4451 pieces->data = src;
4452 src += pieces->data_size;
4453 pieces->init = src;
4454 src += pieces->init_size;
4455 pieces->init_data = src;
4456 src += pieces->init_data_size;
4457 pieces->boot = src;
4458 src += pieces->boot_size;
4459
4460 return 0;
4461}
4462
4463/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004464 * il4965_ucode_callback - callback when firmware was loaded
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004465 *
4466 * If loaded successfully, copies the firmware into buffers
4467 * for the card to fetch (via DMA).
4468 */
4469static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004470il4965_ucode_callback(const struct firmware *ucode_raw, void *context)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004471{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004472 struct il_priv *il = context;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004473 struct il_ucode_header *ucode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004474 int err;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004475 struct il4965_firmware_pieces pieces;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004476 const unsigned int api_max = il->cfg->ucode_api_max;
4477 const unsigned int api_min = il->cfg->ucode_api_min;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004478 u32 api_ver;
4479
4480 u32 max_probe_length = 200;
4481 u32 standard_phy_calibration_size =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004482 IL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004483
4484 memset(&pieces, 0, sizeof(pieces));
4485
4486 if (!ucode_raw) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004487 if (il->fw_idx <= il->cfg->ucode_api_max)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004488 IL_ERR("request for firmware file '%s' failed.\n",
4489 il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004490 goto try_again;
4491 }
4492
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004493 D_INFO("Loaded firmware file '%s' (%zd bytes).\n", il->firmware_name,
4494 ucode_raw->size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004495
4496 /* Make sure that we got at least the API version number */
4497 if (ucode_raw->size < 4) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004498 IL_ERR("File size way too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004499 goto try_again;
4500 }
4501
4502 /* Data from ucode file: header followed by uCode images */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004503 ucode = (struct il_ucode_header *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004504
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004505 err = il4965_load_firmware(il, ucode_raw, &pieces);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004506
4507 if (err)
4508 goto try_again;
4509
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004510 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004511
4512 /*
4513 * api_ver should match the api version forming part of the
4514 * firmware filename ... but we don't check for that and only rely
4515 * on the API version read from firmware header from here on forward
4516 */
4517 if (api_ver < api_min || api_ver > api_max) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004518 IL_ERR("Driver unable to support your firmware API. "
4519 "Driver supports v%u, firmware is v%u.\n", api_max,
4520 api_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004521 goto try_again;
4522 }
4523
4524 if (api_ver != api_max)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004525 IL_ERR("Firmware has old API version. Expected v%u, "
4526 "got v%u. New firmware can be obtained "
4527 "from http://www.intellinuxwireless.org.\n", api_max,
4528 api_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004529
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004530 IL_INFO("loaded firmware version %u.%u.%u.%u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004531 IL_UCODE_MAJOR(il->ucode_ver), IL_UCODE_MINOR(il->ucode_ver),
4532 IL_UCODE_API(il->ucode_ver), IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004533
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004534 snprintf(il->hw->wiphy->fw_version, sizeof(il->hw->wiphy->fw_version),
4535 "%u.%u.%u.%u", IL_UCODE_MAJOR(il->ucode_ver),
4536 IL_UCODE_MINOR(il->ucode_ver), IL_UCODE_API(il->ucode_ver),
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004537 IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004538
4539 /*
4540 * For any of the failures below (before allocating pci memory)
4541 * we will try to load a version with a smaller API -- maybe the
4542 * user just got a corrupted version of the latest API.
4543 */
4544
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004545 D_INFO("f/w package hdr ucode version raw = 0x%x\n", il->ucode_ver);
4546 D_INFO("f/w package hdr runtime inst size = %Zd\n", pieces.inst_size);
4547 D_INFO("f/w package hdr runtime data size = %Zd\n", pieces.data_size);
4548 D_INFO("f/w package hdr init inst size = %Zd\n", pieces.init_size);
4549 D_INFO("f/w package hdr init data size = %Zd\n", pieces.init_data_size);
4550 D_INFO("f/w package hdr boot inst size = %Zd\n", pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004551
4552 /* Verify that uCode images will fit in card's SRAM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004553 if (pieces.inst_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004554 IL_ERR("uCode instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004555 pieces.inst_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004556 goto try_again;
4557 }
4558
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004559 if (pieces.data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004560 IL_ERR("uCode data len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004561 pieces.data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004562 goto try_again;
4563 }
4564
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004565 if (pieces.init_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004566 IL_ERR("uCode init instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004567 pieces.init_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004568 goto try_again;
4569 }
4570
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004571 if (pieces.init_data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004572 IL_ERR("uCode init data len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004573 pieces.init_data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004574 goto try_again;
4575 }
4576
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004577 if (pieces.boot_size > il->hw_params.max_bsm_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004578 IL_ERR("uCode boot instr len %Zd too large to fit in\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004579 pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004580 goto try_again;
4581 }
4582
4583 /* Allocate ucode buffers for card's bus-master loading ... */
4584
4585 /* Runtime instructions and 2 copies of data:
4586 * 1) unmodified from disk
4587 * 2) backup cache for save/restore during power-downs */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004588 il->ucode_code.len = pieces.inst_size;
4589 il_alloc_fw_desc(il->pci_dev, &il->ucode_code);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004590
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004591 il->ucode_data.len = pieces.data_size;
4592 il_alloc_fw_desc(il->pci_dev, &il->ucode_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004593
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004594 il->ucode_data_backup.len = pieces.data_size;
4595 il_alloc_fw_desc(il->pci_dev, &il->ucode_data_backup);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004596
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004597 if (!il->ucode_code.v_addr || !il->ucode_data.v_addr ||
4598 !il->ucode_data_backup.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004599 goto err_pci_alloc;
4600
4601 /* Initialization instructions and data */
4602 if (pieces.init_size && pieces.init_data_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004603 il->ucode_init.len = pieces.init_size;
4604 il_alloc_fw_desc(il->pci_dev, &il->ucode_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004605
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004606 il->ucode_init_data.len = pieces.init_data_size;
4607 il_alloc_fw_desc(il->pci_dev, &il->ucode_init_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004608
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004609 if (!il->ucode_init.v_addr || !il->ucode_init_data.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004610 goto err_pci_alloc;
4611 }
4612
4613 /* Bootstrap (instructions only, no data) */
4614 if (pieces.boot_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004615 il->ucode_boot.len = pieces.boot_size;
4616 il_alloc_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004617
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004618 if (!il->ucode_boot.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004619 goto err_pci_alloc;
4620 }
4621
4622 /* Now that we can no longer fail, copy information */
4623
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004624 il->sta_key_max_num = STA_KEY_MAX_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004625
4626 /* Copy images into buffers for card's bus-master reads ... */
4627
4628 /* Runtime instructions (first block of data in file) */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004629 D_INFO("Copying (but not loading) uCode instr len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004630 pieces.inst_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004631 memcpy(il->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004632
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004633 D_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004634 il->ucode_code.v_addr, (u32) il->ucode_code.p_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004635
4636 /*
4637 * Runtime data
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004638 * NOTE: Copy into backup buffer will be done in il_up()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004639 */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004640 D_INFO("Copying (but not loading) uCode data len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004641 pieces.data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004642 memcpy(il->ucode_data.v_addr, pieces.data, pieces.data_size);
4643 memcpy(il->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004644
4645 /* Initialization instructions */
4646 if (pieces.init_size) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004647 D_INFO("Copying (but not loading) init instr len %Zd\n",
4648 pieces.init_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004649 memcpy(il->ucode_init.v_addr, pieces.init, pieces.init_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004650 }
4651
4652 /* Initialization data */
4653 if (pieces.init_data_size) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004654 D_INFO("Copying (but not loading) init data len %Zd\n",
4655 pieces.init_data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004656 memcpy(il->ucode_init_data.v_addr, pieces.init_data,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004657 pieces.init_data_size);
4658 }
4659
4660 /* Bootstrap instructions */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004661 D_INFO("Copying (but not loading) boot instr len %Zd\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004662 pieces.boot_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004663 memcpy(il->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004664
4665 /*
4666 * figure out the offset of chain noise reset and gain commands
4667 * base on the size of standard phy calibration commands table size
4668 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004669 il->_4965.phy_calib_chain_noise_reset_cmd =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004670 standard_phy_calibration_size;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004671 il->_4965.phy_calib_chain_noise_gain_cmd =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004672 standard_phy_calibration_size + 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004673
4674 /**************************************************
4675 * This is still part of probe() in a sense...
4676 *
4677 * 9. Setup and register with mac80211 and debugfs
4678 **************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004679 err = il4965_mac_setup_register(il, max_probe_length);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004680 if (err)
4681 goto out_unbind;
4682
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004683 err = il_dbgfs_register(il, DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004684 if (err)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004685 IL_ERR("failed to create debugfs files. Ignoring error: %d\n",
4686 err);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004687
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004688 err = sysfs_create_group(&il->pci_dev->dev.kobj, &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004689 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004690 IL_ERR("failed to create sysfs device attributes\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004691 goto out_unbind;
4692 }
4693
4694 /* We have our copies now, allow OS release its copies */
4695 release_firmware(ucode_raw);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004696 complete(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004697 return;
4698
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004699try_again:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004700 /* try next, if any */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004701 if (il4965_request_firmware(il, false))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004702 goto out_unbind;
4703 release_firmware(ucode_raw);
4704 return;
4705
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004706err_pci_alloc:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004707 IL_ERR("failed to allocate pci memory\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004708 il4965_dealloc_ucode_pci(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004709out_unbind:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004710 complete(&il->_4965.firmware_loading_complete);
4711 device_release_driver(&il->pci_dev->dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004712 release_firmware(ucode_raw);
4713}
4714
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004715static const char *const desc_lookup_text[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004716 "OK",
4717 "FAIL",
4718 "BAD_PARAM",
4719 "BAD_CHECKSUM",
4720 "NMI_INTERRUPT_WDG",
4721 "SYSASSERT",
4722 "FATAL_ERROR",
4723 "BAD_COMMAND",
4724 "HW_ERROR_TUNE_LOCK",
4725 "HW_ERROR_TEMPERATURE",
4726 "ILLEGAL_CHAN_FREQ",
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02004727 "VCC_NOT_STBL",
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004728 "FH49_ERROR",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004729 "NMI_INTERRUPT_HOST",
4730 "NMI_INTERRUPT_ACTION_PT",
4731 "NMI_INTERRUPT_UNKNOWN",
4732 "UCODE_VERSION_MISMATCH",
4733 "HW_ERROR_ABS_LOCK",
4734 "HW_ERROR_CAL_LOCK_FAIL",
4735 "NMI_INTERRUPT_INST_ACTION_PT",
4736 "NMI_INTERRUPT_DATA_ACTION_PT",
4737 "NMI_TRM_HW_ER",
4738 "NMI_INTERRUPT_TRM",
Joe Perches861d9c32011-07-08 23:20:24 -07004739 "NMI_INTERRUPT_BREAK_POINT",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004740 "DEBUG_0",
4741 "DEBUG_1",
4742 "DEBUG_2",
4743 "DEBUG_3",
4744};
4745
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004746static struct {
4747 char *name;
4748 u8 num;
4749} advanced_lookup[] = {
4750 {
4751 "NMI_INTERRUPT_WDG", 0x34}, {
4752 "SYSASSERT", 0x35}, {
4753 "UCODE_VERSION_MISMATCH", 0x37}, {
4754 "BAD_COMMAND", 0x38}, {
4755 "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C}, {
4756 "FATAL_ERROR", 0x3D}, {
4757 "NMI_TRM_HW_ERR", 0x46}, {
4758 "NMI_INTERRUPT_TRM", 0x4C}, {
4759 "NMI_INTERRUPT_BREAK_POINT", 0x54}, {
4760 "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C}, {
4761 "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64}, {
4762 "NMI_INTERRUPT_HOST", 0x66}, {
4763 "NMI_INTERRUPT_ACTION_PT", 0x7C}, {
4764 "NMI_INTERRUPT_UNKNOWN", 0x84}, {
4765 "NMI_INTERRUPT_INST_ACTION_PT", 0x86}, {
4766"ADVANCED_SYSASSERT", 0},};
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004767
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004768static const char *
4769il4965_desc_lookup(u32 num)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004770{
4771 int i;
4772 int max = ARRAY_SIZE(desc_lookup_text);
4773
4774 if (num < max)
4775 return desc_lookup_text[num];
4776
4777 max = ARRAY_SIZE(advanced_lookup) - 1;
4778 for (i = 0; i < max; i++) {
4779 if (advanced_lookup[i].num == num)
4780 break;
4781 }
4782 return advanced_lookup[i].name;
4783}
4784
4785#define ERROR_START_OFFSET (1 * sizeof(u32))
4786#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4787
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004788void
4789il4965_dump_nic_error_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004790{
4791 u32 data2, line;
4792 u32 desc, time, count, base, data1;
4793 u32 blink1, blink2, ilink1, ilink2;
4794 u32 pc, hcmd;
4795
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004796 if (il->ucode_type == UCODE_INIT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004797 base = le32_to_cpu(il->card_alive_init.error_event_table_ptr);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01004798 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004799 base = le32_to_cpu(il->card_alive.error_event_table_ptr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004800
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004801 if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004802 IL_ERR("Not valid error log pointer 0x%08X for %s uCode\n",
4803 base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004804 return;
4805 }
4806
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004807 count = il_read_targ_mem(il, base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004808
4809 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004810 IL_ERR("Start IWL Error Log Dump:\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004811 IL_ERR("Status: 0x%08lX, count: %d\n", il->status, count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004812 }
4813
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004814 desc = il_read_targ_mem(il, base + 1 * sizeof(u32));
4815 il->isr_stats.err_code = desc;
4816 pc = il_read_targ_mem(il, base + 2 * sizeof(u32));
4817 blink1 = il_read_targ_mem(il, base + 3 * sizeof(u32));
4818 blink2 = il_read_targ_mem(il, base + 4 * sizeof(u32));
4819 ilink1 = il_read_targ_mem(il, base + 5 * sizeof(u32));
4820 ilink2 = il_read_targ_mem(il, base + 6 * sizeof(u32));
4821 data1 = il_read_targ_mem(il, base + 7 * sizeof(u32));
4822 data2 = il_read_targ_mem(il, base + 8 * sizeof(u32));
4823 line = il_read_targ_mem(il, base + 9 * sizeof(u32));
4824 time = il_read_targ_mem(il, base + 11 * sizeof(u32));
4825 hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004826
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004827 IL_ERR("Desc Time "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004828 "data1 data2 line\n");
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004829 IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004830 il4965_desc_lookup(desc), desc, time, data1, data2, line);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004831 IL_ERR("pc blink1 blink2 ilink1 ilink2 hcmd\n");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004832 IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n", pc, blink1,
4833 blink2, ilink1, ilink2, hcmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004834}
4835
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004836static void
4837il4965_rf_kill_ct_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004838{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004839 struct il_ct_kill_config cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004840 unsigned long flags;
4841 int ret = 0;
4842
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004843 spin_lock_irqsave(&il->lock, flags);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004844 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004845 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004846 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004847
4848 cmd.critical_temperature_R =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004849 cpu_to_le32(il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004850
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004851 ret = il_send_cmd_pdu(il, C_CT_KILL_CONFIG, sizeof(cmd), &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004852 if (ret)
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004853 IL_ERR("C_CT_KILL_CONFIG failed\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004854 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004855 D_INFO("C_CT_KILL_CONFIG " "succeeded, "
4856 "critical temperature is %d\n",
4857 il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004858}
4859
4860static const s8 default_queue_to_tx_fifo[] = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004861 IL_TX_FIFO_VO,
4862 IL_TX_FIFO_VI,
4863 IL_TX_FIFO_BE,
4864 IL_TX_FIFO_BK,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004865 IL49_CMD_FIFO_NUM,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004866 IL_TX_FIFO_UNUSED,
4867 IL_TX_FIFO_UNUSED,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004868};
4869
Stanislaw Gruszkae53aac42011-08-31 11:18:16 +02004870#define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
4871
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004872static int
4873il4965_alive_notify(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004874{
4875 u32 a;
4876 unsigned long flags;
4877 int i, chan;
4878 u32 reg_val;
4879
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004880 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004881
4882 /* Clear 4965's internal Tx Scheduler data base */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004883 il->scd_base_addr = il_rd_prph(il, IL49_SCD_SRAM_BASE_ADDR);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004884 a = il->scd_base_addr + IL49_SCD_CONTEXT_DATA_OFFSET;
4885 for (; a < il->scd_base_addr + IL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004886 il_write_targ_mem(il, a, 0);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004887 for (; a < il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004888 il_write_targ_mem(il, a, 0);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004889 for (;
4890 a <
4891 il->scd_base_addr +
4892 IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(il->hw_params.max_txq_num);
4893 a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004894 il_write_targ_mem(il, a, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004895
4896 /* Tel 4965 where to find Tx byte count tables */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004897 il_wr_prph(il, IL49_SCD_DRAM_BASE_ADDR, il->scd_bc_tbls.dma >> 10);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004898
4899 /* Enable DMA channel */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004900 for (chan = 0; chan < FH49_TCSR_CHNL_NUM; chan++)
4901 il_wr(il, FH49_TCSR_CHNL_TX_CONFIG_REG(chan),
4902 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
4903 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004904
4905 /* Update FH chicken bits */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004906 reg_val = il_rd(il, FH49_TX_CHICKEN_BITS_REG);
4907 il_wr(il, FH49_TX_CHICKEN_BITS_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004908 reg_val | FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004909
4910 /* Disable chain mode for all queues */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004911 il_wr_prph(il, IL49_SCD_QUEUECHAIN_SEL, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004912
4913 /* Initialize each Tx queue (including the command queue) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004914 for (i = 0; i < il->hw_params.max_txq_num; i++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004915
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004916 /* TFD circular buffer read/write idxes */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004917 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(i), 0);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02004918 il_wr(il, HBUS_TARG_WRPTR, 0 | (i << 8));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004919
4920 /* Max Tx Window size for Scheduler-ACK mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004921 il_write_targ_mem(il,
4922 il->scd_base_addr +
4923 IL49_SCD_CONTEXT_QUEUE_OFFSET(i),
4924 (SCD_WIN_SIZE <<
4925 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
4926 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004927
4928 /* Frame limit */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004929 il_write_targ_mem(il,
4930 il->scd_base_addr +
4931 IL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
4932 sizeof(u32),
4933 (SCD_FRAME_LIMIT <<
4934 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
4935 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004936
4937 }
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004938 il_wr_prph(il, IL49_SCD_INTERRUPT_MASK,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004939 (1 << il->hw_params.max_txq_num) - 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004940
4941 /* Activate all Tx DMA/FIFO channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004942 il4965_txq_set_sched(il, IL_MASK(0, 6));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004943
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004944 il4965_set_wr_ptrs(il, IL_DEFAULT_CMD_QUEUE_NUM, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004945
4946 /* make sure all queue are not stopped */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004947 memset(&il->queue_stopped[0], 0, sizeof(il->queue_stopped));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004948 for (i = 0; i < 4; i++)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004949 atomic_set(&il->queue_stop_count[i], 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004950
4951 /* reset to 0 to enable all the queue first */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004952 il->txq_ctx_active_msk = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004953 /* Map each Tx/cmd queue to its corresponding fifo */
4954 BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7);
4955
4956 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
4957 int ac = default_queue_to_tx_fifo[i];
4958
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004959 il_txq_ctx_activate(il, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004960
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004961 if (ac == IL_TX_FIFO_UNUSED)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004962 continue;
4963
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004964 il4965_tx_queue_set_status(il, &il->txq[i], ac, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004965 }
4966
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004967 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004968
4969 return 0;
4970}
4971
4972/**
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004973 * il4965_alive_start - called after N_ALIVE notification received
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004974 * from protocol/runtime uCode (initialization uCode's
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004975 * Alive gets handled by il_init_alive_start()).
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004976 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01004977static void
4978il4965_alive_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004979{
4980 int ret = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01004981 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004982
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004983 D_INFO("Runtime Alive received.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004984
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004985 if (il->card_alive.is_valid != UCODE_VALID_OK) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004986 /* We had an error bringing up the hardware, so take it
4987 * all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004988 D_INFO("Alive failed.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004989 goto restart;
4990 }
4991
4992 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
4993 * This is a paranoid check, because we would not have gotten the
4994 * "runtime" alive if code weren't properly loaded. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004995 if (il4965_verify_ucode(il)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004996 /* Runtime instruction load was bad;
4997 * take it all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004998 D_INFO("Bad runtime uCode load.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004999 goto restart;
5000 }
5001
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005002 ret = il4965_alive_notify(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005003 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005004 IL_WARN("Could not complete ALIVE transition [ntf]: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005005 goto restart;
5006 }
5007
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005008 /* After the ALIVE response, we can send host commands to the uCode */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005009 set_bit(S_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005010
5011 /* Enable watchdog to monitor the driver tx queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005012 il_setup_watchdog(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005013
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005014 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005015 return;
5016
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005017 ieee80211_wake_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005018
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02005019 il->active_rate = RATES_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005020
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005021 if (il_is_associated(il)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005022 struct il_rxon_cmd *active_rxon =
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005023 (struct il_rxon_cmd *)&il->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005024 /* apply any changes in staging */
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005025 il->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005026 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5027 } else {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005028 /* Initialize our rx_config data */
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005029 il_connection_init_rx_config(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005030
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005031 if (il->cfg->ops->hcmd->set_rxon_chain)
5032 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005033 }
5034
5035 /* Configure bluetooth coexistence if enabled */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005036 il_send_bt_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005037
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005038 il4965_reset_run_time_calib(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005039
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005040 set_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005041
5042 /* Configure the adapter for unassociated operation */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005043 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005044
5045 /* At this point, the NIC is initialized and operational */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005046 il4965_rf_kill_ct_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005047
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005048 D_INFO("ALIVE processing complete.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005049 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005050
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005051 il_power_update_mode(il, true);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005052 D_INFO("Updated power mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005053
5054 return;
5055
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005056restart:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005057 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005058}
5059
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005060static void il4965_cancel_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005061
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005062static void
5063__il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005064{
5065 unsigned long flags;
Stanislaw Gruszkaab42b402011-04-28 11:51:24 +02005066 int exit_pending;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005067
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005068 D_INFO(DRV_NAME " is going down\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005069
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005070 il_scan_cancel_timeout(il, 200);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005071
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005072 exit_pending = test_and_set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005073
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005074 /* Stop TX queues watchdog. We need to have S_EXIT_PENDING bit set
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005075 * to prevent rearm timer */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005076 del_timer_sync(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005077
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005078 il_clear_ucode_stations(il, NULL);
5079 il_dealloc_bcast_stations(il);
5080 il_clear_driver_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005081
5082 /* Unblock any waiting calls */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005083 wake_up_all(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005084
5085 /* Wipe out the EXIT_PENDING status bit if we are not actually
5086 * exiting the module */
5087 if (!exit_pending)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005088 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005089
5090 /* stop and reset the on-board processor */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005091 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005092
5093 /* tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005094 spin_lock_irqsave(&il->lock, flags);
5095 il_disable_interrupts(il);
5096 spin_unlock_irqrestore(&il->lock, flags);
5097 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005098
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005099 if (il->mac80211_registered)
5100 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005101
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005102 /* If we have not previously called il_init() then
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005103 * clear all bits but the RF Kill bit and return */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005104 if (!il_is_init(il)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005105 il->status =
5106 test_bit(S_RF_KILL_HW,
5107 &il->
5108 status) << S_RF_KILL_HW |
5109 test_bit(S_GEO_CONFIGURED,
5110 &il->
5111 status) << S_GEO_CONFIGURED |
5112 test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005113 goto exit;
5114 }
5115
5116 /* ...otherwise clear out all the status bits but the RF Kill
5117 * bit and continue taking the NIC down. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005118 il->status &=
5119 test_bit(S_RF_KILL_HW,
5120 &il->status) << S_RF_KILL_HW | test_bit(S_GEO_CONFIGURED,
5121 &il->
5122 status) <<
5123 S_GEO_CONFIGURED | test_bit(S_FW_ERROR,
5124 &il->
5125 status) << S_FW_ERROR |
5126 test_bit(S_EXIT_PENDING, &il->status) << S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005127
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005128 il4965_txq_ctx_stop(il);
5129 il4965_rxq_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005130
5131 /* Power-down device's busmaster DMA clocks */
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02005132 il_wr_prph(il, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005133 udelay(5);
5134
5135 /* Make sure (redundant) we've released our request to stay awake */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005136 il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005137
5138 /* Stop the device, and put it in low power state */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005139 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005140
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005141exit:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005142 memset(&il->card_alive, 0, sizeof(struct il_alive_resp));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005143
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005144 dev_kfree_skb(il->beacon_skb);
5145 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005146
5147 /* clear out any free frames */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005148 il4965_clear_free_frames(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005149}
5150
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005151static void
5152il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005153{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005154 mutex_lock(&il->mutex);
5155 __il4965_down(il);
5156 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005157
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005158 il4965_cancel_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005159}
5160
5161#define HW_READY_TIMEOUT (50)
5162
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005163static int
5164il4965_set_hw_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005165{
5166 int ret = 0;
5167
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005168 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005169 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005170
5171 /* See if we got it */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005172 ret =
5173 _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5174 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
5175 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY, HW_READY_TIMEOUT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005176 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005177 il->hw_ready = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005178 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005179 il->hw_ready = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005180
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005181 D_INFO("hardware %s\n", (il->hw_ready == 1) ? "ready" : "not ready");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005182 return ret;
5183}
5184
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005185static int
5186il4965_prepare_card_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005187{
5188 int ret = 0;
5189
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005190 D_INFO("il4965_prepare_card_hw enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005191
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005192 ret = il4965_set_hw_ready(il);
5193 if (il->hw_ready)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005194 return ret;
5195
5196 /* If HW is not ready, prepare the conditions to check again */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005197 il_set_bit(il, CSR_HW_IF_CONFIG_REG, CSR_HW_IF_CONFIG_REG_PREPARE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005198
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005199 ret =
5200 _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
5201 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
5202 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005203
5204 /* HW should be ready by now, check again. */
5205 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005206 il4965_set_hw_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005207
5208 return ret;
5209}
5210
5211#define MAX_HW_RESTARTS 5
5212
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005213static int
5214__il4965_up(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005215{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005216 int i;
5217 int ret;
5218
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005219 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005220 IL_WARN("Exit pending; will not bring the NIC up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005221 return -EIO;
5222 }
5223
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005224 if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005225 IL_ERR("ucode not available for device bringup\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005226 return -EIO;
5227 }
5228
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005229 ret = il4965_alloc_bcast_station(il, &il->ctx);
5230 if (ret) {
5231 il_dealloc_bcast_stations(il);
5232 return ret;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005233 }
5234
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005235 il4965_prepare_card_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005236
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005237 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005238 IL_WARN("Exit HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005239 return -EIO;
5240 }
5241
5242 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005243 if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005244 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005245 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005246 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005247
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005248 if (il_is_rfkill(il)) {
5249 wiphy_rfkill_set_hw_state(il->hw->wiphy, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005250
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005251 il_enable_interrupts(il);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005252 IL_WARN("Radio disabled by HW RF Kill switch\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005253 return 0;
5254 }
5255
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005256 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005257
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005258 /* must be initialised before il_hw_nic_init */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005259 il->cmd_queue = IL_DEFAULT_CMD_QUEUE_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005260
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005261 ret = il4965_hw_nic_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005262 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005263 IL_ERR("Unable to init nic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005264 return ret;
5265 }
5266
5267 /* make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005268 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005269 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005270
5271 /* clear (again), then enable host interrupts */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005272 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005273 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005274
5275 /* really make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005276 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5277 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005278
5279 /* Copy original ucode data image from disk into backup cache.
5280 * This will be used to initialize the on-board processor's
5281 * data SRAM for a clean start when the runtime program first loads. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005282 memcpy(il->ucode_data_backup.v_addr, il->ucode_data.v_addr,
5283 il->ucode_data.len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005284
5285 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5286
5287 /* load bootstrap state machine,
5288 * load bootstrap program into processor's memory,
5289 * prepare to load the "initialize" uCode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005290 ret = il->cfg->ops->lib->load_ucode(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005291
5292 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005293 IL_ERR("Unable to set up bootstrap uCode: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005294 continue;
5295 }
5296
5297 /* start card; "initialize" will load runtime ucode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005298 il4965_nic_start(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005299
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005300 D_INFO(DRV_NAME " is coming up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005301
5302 return 0;
5303 }
5304
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005305 set_bit(S_EXIT_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005306 __il4965_down(il);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005307 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005308
5309 /* tried to restart and config the device for as long as our
5310 * patience could withstand */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005311 IL_ERR("Unable to initialize device after %d attempts.\n", i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005312 return -EIO;
5313}
5314
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005315/*****************************************************************************
5316 *
5317 * Workqueue callbacks
5318 *
5319 *****************************************************************************/
5320
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005321static void
5322il4965_bg_init_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005323{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005324 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005325 container_of(data, struct il_priv, init_alive_start.work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005326
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005327 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005328 if (test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005329 goto out;
5330
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005331 il->cfg->ops->lib->init_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005332out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005333 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005334}
5335
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005336static void
5337il4965_bg_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005338{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005339 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005340 container_of(data, struct il_priv, alive_start.work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005341
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005342 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005343 if (test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005344 goto out;
5345
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005346 il4965_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005347out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005348 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005349}
5350
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005351static void
5352il4965_bg_run_time_calib_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005353{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005354 struct il_priv *il = container_of(work, struct il_priv,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005355 run_time_calib_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005356
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005357 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005358
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005359 if (test_bit(S_EXIT_PENDING, &il->status) ||
5360 test_bit(S_SCANNING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005361 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005362 return;
5363 }
5364
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005365 if (il->start_calib) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005366 il4965_chain_noise_calibration(il, (void *)&il->_4965.stats);
5367 il4965_sensitivity_calibration(il, (void *)&il->_4965.stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005368 }
5369
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005370 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005371}
5372
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005373static void
5374il4965_bg_restart(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005375{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005376 struct il_priv *il = container_of(data, struct il_priv, restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005377
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005378 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005379 return;
5380
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005381 if (test_and_clear_bit(S_FW_ERROR, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005382 mutex_lock(&il->mutex);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005383 il->ctx.vif = NULL;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005384 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005385
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005386 __il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005387
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005388 mutex_unlock(&il->mutex);
5389 il4965_cancel_deferred_work(il);
5390 ieee80211_restart_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005391 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005392 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005393
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005394 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005395 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005396 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005397 return;
5398 }
5399
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005400 __il4965_up(il);
5401 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005402 }
5403}
5404
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005405static void
5406il4965_bg_rx_replenish(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005407{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005408 struct il_priv *il = container_of(data, struct il_priv, rx_replenish);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005409
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005410 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005411 return;
5412
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005413 mutex_lock(&il->mutex);
5414 il4965_rx_replenish(il);
5415 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005416}
5417
5418/*****************************************************************************
5419 *
5420 * mac80211 entry point functions
5421 *
5422 *****************************************************************************/
5423
5424#define UCODE_READY_TIMEOUT (4 * HZ)
5425
5426/*
5427 * Not a mac80211 entry point function, but it fits in with all the
5428 * other mac80211 functions grouped here.
5429 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005430static int
5431il4965_mac_setup_register(struct il_priv *il, u32 max_probe_length)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005432{
5433 int ret;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005434 struct ieee80211_hw *hw = il->hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005435
5436 hw->rate_control_algorithm = "iwl-4965-rs";
5437
5438 /* Tell mac80211 our characteristics */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005439 hw->flags =
5440 IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_AMPDU_AGGREGATION |
5441 IEEE80211_HW_NEED_DTIM_PERIOD | IEEE80211_HW_SPECTRUM_MGMT |
5442 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005443
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005444 if (il->cfg->sku & IL_SKU_N)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005445 hw->flags |=
5446 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
5447 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005448
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005449 hw->sta_data_size = sizeof(struct il_station_priv);
5450 hw->vif_data_size = sizeof(struct il_vif_priv);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005451
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005452 hw->wiphy->interface_modes |= il->ctx.interface_modes;
5453 hw->wiphy->interface_modes |= il->ctx.exclusive_interface_modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005454
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005455 hw->wiphy->flags |=
5456 WIPHY_FLAG_CUSTOM_REGULATORY | WIPHY_FLAG_DISABLE_BEACON_HINTS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005457
5458 /*
5459 * For now, disable PS by default because it affects
5460 * RX performance significantly.
5461 */
5462 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
5463
5464 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
5465 /* we create the 802.11 header and a zero-length SSID element */
5466 hw->wiphy->max_scan_ie_len = max_probe_length - 24 - 2;
5467
5468 /* Default value; 4 EDCA QOS priorities */
5469 hw->queues = 4;
5470
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005471 hw->max_listen_interval = IL_CONN_MAX_LISTEN_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005472
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005473 if (il->bands[IEEE80211_BAND_2GHZ].n_channels)
5474 il->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005475 &il->bands[IEEE80211_BAND_2GHZ];
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005476 if (il->bands[IEEE80211_BAND_5GHZ].n_channels)
5477 il->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005478 &il->bands[IEEE80211_BAND_5GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005479
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005480 il_leds_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005481
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005482 ret = ieee80211_register_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005483 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005484 IL_ERR("Failed to register hw (error %d)\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005485 return ret;
5486 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005487 il->mac80211_registered = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005488
5489 return 0;
5490}
5491
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005492int
5493il4965_mac_start(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005494{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005495 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005496 int ret;
5497
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005498 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005499
5500 /* we should be verifying the device is ready to be opened */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005501 mutex_lock(&il->mutex);
5502 ret = __il4965_up(il);
5503 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005504
5505 if (ret)
5506 return ret;
5507
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005508 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005509 goto out;
5510
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005511 D_INFO("Start UP work done.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005512
5513 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
5514 * mac80211 will not be run successfully. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005515 ret = wait_event_timeout(il->wait_command_queue,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005516 test_bit(S_READY, &il->status),
5517 UCODE_READY_TIMEOUT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005518 if (!ret) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005519 if (!test_bit(S_READY, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005520 IL_ERR("START_ALIVE timeout after %dms.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005521 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5522 return -ETIMEDOUT;
5523 }
5524 }
5525
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005526 il4965_led_enable(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005527
5528out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005529 il->is_open = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005530 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005531 return 0;
5532}
5533
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005534void
5535il4965_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005536{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005537 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005538
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005539 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005540
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005541 if (!il->is_open)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005542 return;
5543
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005544 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005545
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005546 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005547
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005548 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005549
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02005550 /* User space software may expect getting rfkill changes
5551 * even if interface is down */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005552 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005553 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005554
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005555 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005556}
5557
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005558void
5559il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005560{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005561 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005562
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005563 D_MACDUMP("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005564
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005565 D_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005566 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005567
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005568 if (il4965_tx_skb(il, skb))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005569 dev_kfree_skb_any(skb);
5570
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005571 D_MACDUMP("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005572}
5573
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005574void
5575il4965_mac_update_tkip_key(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5576 struct ieee80211_key_conf *keyconf,
5577 struct ieee80211_sta *sta, u32 iv32, u16 * phase1key)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005578{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005579 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005580 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005581
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005582 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005583
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005584 il4965_update_tkip_key(il, vif_priv->ctx, keyconf, sta, iv32,
5585 phase1key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005586
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005587 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005588}
5589
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005590int
5591il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
5592 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
5593 struct ieee80211_key_conf *key)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005594{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005595 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005596 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5597 struct il_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005598 int ret;
5599 u8 sta_id;
5600 bool is_default_wep_key = false;
5601
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005602 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005603
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005604 if (il->cfg->mod_params->sw_crypto) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005605 D_MAC80211("leave - hwcrypto disabled\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005606 return -EOPNOTSUPP;
5607 }
5608
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005609 sta_id = il_sta_id_or_broadcast(il, vif_priv->ctx, sta);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005610 if (sta_id == IL_INVALID_STATION)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005611 return -EINVAL;
5612
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005613 mutex_lock(&il->mutex);
5614 il_scan_cancel_timeout(il, 100);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005615
5616 /*
5617 * If we are getting WEP group key and we didn't receive any key mapping
5618 * so far, we are in legacy wep mode (group key only), otherwise we are
5619 * in 1X mode.
5620 * In legacy wep mode, we use another host command to the uCode.
5621 */
5622 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005623 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005624 if (cmd == SET_KEY)
5625 is_default_wep_key = !ctx->key_mapping_keys;
5626 else
5627 is_default_wep_key =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005628 (key->hw_key_idx == HW_KEY_DEFAULT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005629 }
5630
5631 switch (cmd) {
5632 case SET_KEY:
5633 if (is_default_wep_key)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005634 ret =
5635 il4965_set_default_wep_key(il, vif_priv->ctx, key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005636 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005637 ret =
5638 il4965_set_dynamic_key(il, vif_priv->ctx, key,
5639 sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005640
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005641 D_MAC80211("enable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005642 break;
5643 case DISABLE_KEY:
5644 if (is_default_wep_key)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005645 ret = il4965_remove_default_wep_key(il, ctx, key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005646 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005647 ret = il4965_remove_dynamic_key(il, ctx, key, sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005648
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005649 D_MAC80211("disable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005650 break;
5651 default:
5652 ret = -EINVAL;
5653 }
5654
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005655 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005656 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005657
5658 return ret;
5659}
5660
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005661int
5662il4965_mac_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5663 enum ieee80211_ampdu_mlme_action action,
5664 struct ieee80211_sta *sta, u16 tid, u16 * ssn,
5665 u8 buf_size)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005666{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005667 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005668 int ret = -EINVAL;
5669
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005670 D_HT("A-MPDU action on addr %pM tid %d\n", sta->addr, tid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005671
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005672 if (!(il->cfg->sku & IL_SKU_N))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005673 return -EACCES;
5674
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005675 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005676
5677 switch (action) {
5678 case IEEE80211_AMPDU_RX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005679 D_HT("start Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005680 ret = il4965_sta_rx_agg_start(il, sta, tid, *ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005681 break;
5682 case IEEE80211_AMPDU_RX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005683 D_HT("stop Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005684 ret = il4965_sta_rx_agg_stop(il, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005685 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005686 ret = 0;
5687 break;
5688 case IEEE80211_AMPDU_TX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005689 D_HT("start Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005690 ret = il4965_tx_agg_start(il, vif, sta, tid, ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005691 break;
5692 case IEEE80211_AMPDU_TX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005693 D_HT("stop Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005694 ret = il4965_tx_agg_stop(il, vif, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005695 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005696 ret = 0;
5697 break;
5698 case IEEE80211_AMPDU_TX_OPERATIONAL:
5699 ret = 0;
5700 break;
5701 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005702 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005703
5704 return ret;
5705}
5706
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005707int
5708il4965_mac_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5709 struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005710{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005711 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005712 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
5713 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005714 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
5715 int ret;
5716 u8 sta_id;
5717
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005718 D_INFO("received request to add station %pM\n", sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005719 mutex_lock(&il->mutex);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005720 D_INFO("proceeding to add station %pM\n", sta->addr);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005721 sta_priv->common.sta_id = IL_INVALID_STATION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005722
5723 atomic_set(&sta_priv->pending_frames, 0);
5724
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005725 ret =
5726 il_add_station_common(il, vif_priv->ctx, sta->addr, is_ap, sta,
5727 &sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005728 if (ret) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005729 IL_ERR("Unable to add station %pM (%d)\n", sta->addr, ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005730 /* Should we return success if return code is EEXIST ? */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005731 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005732 return ret;
5733 }
5734
5735 sta_priv->common.sta_id = sta_id;
5736
5737 /* Initialize rate scaling */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005738 D_INFO("Initializing rate scaling for station %pM\n", sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005739 il4965_rs_rate_init(il, sta, sta_id);
5740 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005741
5742 return 0;
5743}
5744
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005745void
5746il4965_mac_channel_switch(struct ieee80211_hw *hw,
5747 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005748{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005749 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005750 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005751 struct ieee80211_conf *conf = &hw->conf;
5752 struct ieee80211_channel *channel = ch_switch->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005753 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005754
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005755 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005756 u16 ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005757
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005758 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005759
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005760 mutex_lock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005761
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005762 if (il_is_rfkill(il))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005763 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005764
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005765 if (test_bit(S_EXIT_PENDING, &il->status) ||
5766 test_bit(S_SCANNING, &il->status) ||
5767 test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005768 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005769
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005770 if (!il_is_associated(il))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005771 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005772
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005773 if (!il->cfg->ops->lib->set_channel_switch)
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 ch = channel->hw_value;
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005777 if (le16_to_cpu(il->active.channel) == ch)
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005778 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005779
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005780 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005781 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005782 D_MAC80211("invalid channel\n");
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005783 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005784 }
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005785
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005786 spin_lock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005787
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005788 il->current_ht_config.smps = conf->smps_mode;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005789
5790 /* Configure HT40 channels */
5791 ctx->ht.enabled = conf_is_ht(conf);
5792 if (ctx->ht.enabled) {
5793 if (conf_is_ht40_minus(conf)) {
5794 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005795 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005796 ctx->ht.is_40mhz = true;
5797 } else if (conf_is_ht40_plus(conf)) {
5798 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005799 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005800 ctx->ht.is_40mhz = true;
5801 } else {
5802 ctx->ht.extension_chan_offset =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005803 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005804 ctx->ht.is_40mhz = false;
5805 }
5806 } else
5807 ctx->ht.is_40mhz = false;
5808
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005809 if ((le16_to_cpu(il->staging.channel) != ch))
5810 il->staging.flags = 0;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005811
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005812 il_set_rxon_channel(il, channel, ctx);
5813 il_set_rxon_ht(il, ht_conf);
5814 il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005815
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005816 spin_unlock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005817
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005818 il_set_rate(il);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005819 /*
5820 * at this point, staging_rxon has the
5821 * configuration for channel switch
5822 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005823 set_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005824 il->switch_channel = cpu_to_le16(ch);
5825 if (il->cfg->ops->lib->set_channel_switch(il, ch_switch)) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005826 clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005827 il->switch_channel = 0;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005828 ieee80211_chswitch_done(ctx->vif, false);
5829 }
5830
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005831out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005832 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005833 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005834}
5835
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005836void
5837il4965_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags,
5838 unsigned int *total_flags, u64 multicast)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005839{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005840 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005841 __le32 filter_or = 0, filter_nand = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005842
5843#define CHK(test, flag) do { \
5844 if (*total_flags & (test)) \
5845 filter_or |= (flag); \
5846 else \
5847 filter_nand |= (flag); \
5848 } while (0)
5849
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005850 D_MAC80211("Enter: changed: 0x%x, total: 0x%x\n", changed_flags,
5851 *total_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005852
5853 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
5854 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
5855 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
5856 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
5857
5858#undef CHK
5859
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005860 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005861
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01005862 il->staging.filter_flags &= ~filter_nand;
5863 il->staging.filter_flags |= filter_or;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005864
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005865 /*
5866 * Not committing directly because hardware can perform a scan,
5867 * but we'll eventually commit the filter flags change anyway.
5868 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005869
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005870 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005871
5872 /*
5873 * Receiving all multicast frames is always enabled by the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005874 * default flags setup in il_connection_init_rx_config()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005875 * since we currently do not support programming multicast
5876 * filters into the device.
5877 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005878 *total_flags &=
5879 FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
5880 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005881}
5882
5883/*****************************************************************************
5884 *
5885 * driver setup and teardown
5886 *
5887 *****************************************************************************/
5888
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005889static void
5890il4965_bg_txpower_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005891{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005892 struct il_priv *il = container_of(work, struct il_priv,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005893 txpower_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005894
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005895 mutex_lock(&il->mutex);
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005896
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005897 /* If a scan happened to start before we got here
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005898 * then just return; the stats notification will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005899 * kick off another scheduled work to compensate for
5900 * any temperature delta we missed here. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005901 if (test_bit(S_EXIT_PENDING, &il->status) ||
5902 test_bit(S_SCANNING, &il->status))
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005903 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005904
5905 /* Regardless of if we are associated, we must reconfigure the
5906 * TX power since frames can be sent on non-radar channels while
5907 * not associated */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005908 il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005909
5910 /* Update last_temperature to keep is_calib_needed from running
5911 * when it isn't needed... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005912 il->last_temperature = il->temperature;
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005913out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005914 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005915}
5916
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005917static void
5918il4965_setup_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005919{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005920 il->workqueue = create_singlethread_workqueue(DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005921
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005922 init_waitqueue_head(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005923
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005924 INIT_WORK(&il->restart, il4965_bg_restart);
5925 INIT_WORK(&il->rx_replenish, il4965_bg_rx_replenish);
5926 INIT_WORK(&il->run_time_calib_work, il4965_bg_run_time_calib_work);
5927 INIT_DELAYED_WORK(&il->init_alive_start, il4965_bg_init_alive_start);
5928 INIT_DELAYED_WORK(&il->alive_start, il4965_bg_alive_start);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005929
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005930 il_setup_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005931
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005932 INIT_WORK(&il->txpower_work, il4965_bg_txpower_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005933
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005934 init_timer(&il->stats_periodic);
5935 il->stats_periodic.data = (unsigned long)il;
5936 il->stats_periodic.function = il4965_bg_stats_periodic;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005937
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005938 init_timer(&il->watchdog);
5939 il->watchdog.data = (unsigned long)il;
5940 il->watchdog.function = il_bg_watchdog;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005941
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005942 tasklet_init(&il->irq_tasklet,
5943 (void (*)(unsigned long))il4965_irq_tasklet,
5944 (unsigned long)il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005945}
5946
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005947static void
5948il4965_cancel_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005949{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005950 cancel_work_sync(&il->txpower_work);
5951 cancel_delayed_work_sync(&il->init_alive_start);
5952 cancel_delayed_work(&il->alive_start);
5953 cancel_work_sync(&il->run_time_calib_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005954
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005955 il_cancel_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005956
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005957 del_timer_sync(&il->stats_periodic);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005958}
5959
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005960static void
5961il4965_init_hw_rates(struct il_priv *il, struct ieee80211_rate *rates)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005962{
5963 int i;
5964
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02005965 for (i = 0; i < RATE_COUNT_LEGACY; i++) {
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02005966 rates[i].bitrate = il_rates[i].ieee * 5;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005967 rates[i].hw_value = i; /* Rate scaling will work on idxes */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005968 rates[i].hw_value_short = i;
5969 rates[i].flags = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005970 if ((i >= IL_FIRST_CCK_RATE) && (i <= IL_LAST_CCK_RATE)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005971 /*
5972 * If CCK != 1M then set short preamble rate flag.
5973 */
5974 rates[i].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005975 (il_rates[i].plcp ==
5976 RATE_1M_PLCP) ? 0 : IEEE80211_RATE_SHORT_PREAMBLE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005977 }
5978 }
5979}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005980
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005981/*
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005982 * Acquire il->lock before calling this function !
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005983 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005984void
5985il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005986{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005987 il_wr(il, HBUS_TARG_WRPTR, (idx & 0xff) | (txq_id << 8));
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01005988 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(txq_id), idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005989}
5990
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01005991void
5992il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq,
5993 int tx_fifo_id, int scd_retry)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005994{
5995 int txq_id = txq->q.id;
5996
5997 /* Find out whether to activate Tx queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005998 int active = test_bit(txq_id, &il->txq_ctx_active_msk) ? 1 : 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005999
6000 /* Set up and activate */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006001 il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01006002 (active << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
6003 (tx_fifo_id << IL49_SCD_QUEUE_STTS_REG_POS_TXF) |
6004 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_WSL) |
6005 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
6006 IL49_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006007
6008 txq->sched_retry = scd_retry;
6009
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006010 D_INFO("%s %s Queue %d on AC %d\n", active ? "Activate" : "Deactivate",
6011 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006012}
6013
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006014static int
6015il4965_init_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006016{
6017 int ret;
6018
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006019 spin_lock_init(&il->sta_lock);
6020 spin_lock_init(&il->hcmd_lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006021
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006022 INIT_LIST_HEAD(&il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006023
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006024 mutex_init(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006025
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006026 il->ieee_channels = NULL;
6027 il->ieee_rates = NULL;
6028 il->band = IEEE80211_BAND_2GHZ;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006029
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006030 il->iw_mode = NL80211_IFTYPE_STATION;
6031 il->current_ht_config.smps = IEEE80211_SMPS_STATIC;
6032 il->missed_beacon_threshold = IL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006033
6034 /* initialize force reset */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006035 il->force_reset.reset_duration = IL_DELAY_NEXT_FORCE_FW_RELOAD;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006036
6037 /* Choose which receivers/antennas to use */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006038 if (il->cfg->ops->hcmd->set_rxon_chain)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006039 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006040
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006041 il_init_scan_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006042
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006043 ret = il_init_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006044 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006045 IL_ERR("initializing regulatory failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006046 goto err;
6047 }
6048
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006049 ret = il_init_geos(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006050 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006051 IL_ERR("initializing geos failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006052 goto err_free_channel_map;
6053 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006054 il4965_init_hw_rates(il, il->ieee_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006055
6056 return 0;
6057
6058err_free_channel_map:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006059 il_free_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006060err:
6061 return ret;
6062}
6063
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006064static void
6065il4965_uninit_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006066{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006067 il4965_calib_free_results(il);
6068 il_free_geos(il);
6069 il_free_channel_map(il);
6070 kfree(il->scan_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006071}
6072
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006073static void
6074il4965_hw_detect(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006075{
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006076 il->hw_rev = _il_rd(il, CSR_HW_REV);
6077 il->hw_wa_rev = _il_rd(il, CSR_HW_REV_WA_REG);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006078 il->rev_id = il->pci_dev->revision;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006079 D_INFO("HW Revision ID = 0x%X\n", il->rev_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006080}
6081
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006082static int
6083il4965_set_hw_params(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006084{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006085 il->hw_params.max_rxq_size = RX_QUEUE_SIZE;
6086 il->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
6087 if (il->cfg->mod_params->amsdu_size_8K)
6088 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_8K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006089 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006090 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_4K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006091
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006092 il->hw_params.max_beacon_itrvl = IL_MAX_UCODE_BEACON_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006093
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006094 if (il->cfg->mod_params->disable_11n)
6095 il->cfg->sku &= ~IL_SKU_N;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006096
6097 /* Device-specific setup */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006098 return il->cfg->ops->lib->set_hw_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006099}
6100
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006101static const u8 il4965_bss_ac_to_fifo[] = {
6102 IL_TX_FIFO_VO,
6103 IL_TX_FIFO_VI,
6104 IL_TX_FIFO_BE,
6105 IL_TX_FIFO_BK,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006106};
6107
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006108static const u8 il4965_bss_ac_to_queue[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006109 0, 1, 2, 3,
6110};
6111
6112static int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006113il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006114{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006115 int err = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006116 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006117 struct ieee80211_hw *hw;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006118 struct il_cfg *cfg = (struct il_cfg *)(ent->driver_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006119 unsigned long flags;
6120 u16 pci_cmd;
6121
6122 /************************
6123 * 1. Allocating HW data
6124 ************************/
6125
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006126 hw = il_alloc_all(cfg);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006127 if (!hw) {
6128 err = -ENOMEM;
6129 goto out;
6130 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006131 il = hw->priv;
6132 /* At this point both hw and il are allocated. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006133
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006134 il->ctx.ctxid = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006135
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006136 il->ctx.always_active = true;
6137 il->ctx.is_active = true;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006138 il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
6139 il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006140 il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
6141 il->ctx.interface_modes = BIT(NL80211_IFTYPE_STATION);
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006142 il->ctx.ap_devtype = RXON_DEV_TYPE_AP;
6143 il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
6144 il->ctx.station_devtype = RXON_DEV_TYPE_ESS;
6145 il->ctx.unused_devtype = RXON_DEV_TYPE_ESS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006146
6147 SET_IEEE80211_DEV(hw, &pdev->dev);
6148
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006149 D_INFO("*** LOAD DRIVER ***\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006150 il->cfg = cfg;
6151 il->pci_dev = pdev;
6152 il->inta_mask = CSR_INI_SET_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006153
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006154 if (il_alloc_traffic_mem(il))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006155 IL_ERR("Not enough memory to generate traffic log\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006156
6157 /**************************
6158 * 2. Initializing PCI bus
6159 **************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006160 pci_disable_link_state(pdev,
6161 PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6162 PCIE_LINK_STATE_CLKPM);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006163
6164 if (pci_enable_device(pdev)) {
6165 err = -ENODEV;
6166 goto out_ieee80211_free_hw;
6167 }
6168
6169 pci_set_master(pdev);
6170
6171 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
6172 if (!err)
6173 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
6174 if (err) {
6175 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6176 if (!err)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006177 err =
6178 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006179 /* both attempts failed: */
6180 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006181 IL_WARN("No suitable DMA available.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006182 goto out_pci_disable_device;
6183 }
6184 }
6185
6186 err = pci_request_regions(pdev, DRV_NAME);
6187 if (err)
6188 goto out_pci_disable_device;
6189
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006190 pci_set_drvdata(pdev, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006191
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006192 /***********************
6193 * 3. Read REV register
6194 ***********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006195 il->hw_base = pci_iomap(pdev, 0, 0);
6196 if (!il->hw_base) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006197 err = -ENODEV;
6198 goto out_pci_release_regions;
6199 }
6200
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006201 D_INFO("pci_resource_len = 0x%08llx\n",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006202 (unsigned long long)pci_resource_len(pdev, 0));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006203 D_INFO("pci_resource_base = %p\n", il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006204
6205 /* these spin locks will be used in apm_ops.init and EEPROM access
6206 * we should init now
6207 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006208 spin_lock_init(&il->reg_lock);
6209 spin_lock_init(&il->lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006210
6211 /*
6212 * stop and reset the on-board processor just in case it is in a
6213 * strange state ... like being left stranded by a primary kernel
6214 * and this is now the kdump kernel trying to start up
6215 */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006216 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006217
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006218 il4965_hw_detect(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006219 IL_INFO("Detected %s, REV=0x%X\n", il->cfg->name, il->hw_rev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006220
6221 /* We disable the RETRY_TIMEOUT register (0x41) to keep
6222 * PCI Tx retries from interfering with C3 CPU state */
6223 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
6224
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006225 il4965_prepare_card_hw(il);
6226 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006227 IL_WARN("Failed, HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006228 goto out_iounmap;
6229 }
6230
6231 /*****************
6232 * 4. Read EEPROM
6233 *****************/
6234 /* Read the EEPROM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006235 err = il_eeprom_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006236 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006237 IL_ERR("Unable to init EEPROM\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006238 goto out_iounmap;
6239 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006240 err = il4965_eeprom_check_version(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006241 if (err)
6242 goto out_free_eeprom;
6243
6244 if (err)
6245 goto out_free_eeprom;
6246
6247 /* extract MAC Address */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006248 il4965_eeprom_get_mac(il, il->addresses[0].addr);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006249 D_INFO("MAC address: %pM\n", il->addresses[0].addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006250 il->hw->wiphy->addresses = il->addresses;
6251 il->hw->wiphy->n_addresses = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006252
6253 /************************
6254 * 5. Setup HW constants
6255 ************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006256 if (il4965_set_hw_params(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006257 IL_ERR("failed to set hw parameters\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006258 goto out_free_eeprom;
6259 }
6260
6261 /*******************
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006262 * 6. Setup il
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006263 *******************/
6264
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006265 err = il4965_init_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006266 if (err)
6267 goto out_free_eeprom;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006268 /* At this point both hw and il are initialized. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006269
6270 /********************
6271 * 7. Setup services
6272 ********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006273 spin_lock_irqsave(&il->lock, flags);
6274 il_disable_interrupts(il);
6275 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006276
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006277 pci_enable_msi(il->pci_dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006278
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006279 err = request_irq(il->pci_dev->irq, il_isr, IRQF_SHARED, DRV_NAME, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006280 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006281 IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006282 goto out_disable_msi;
6283 }
6284
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006285 il4965_setup_deferred_work(il);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02006286 il4965_setup_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006287
6288 /*********************************************
6289 * 8. Enable interrupts and read RFKILL state
6290 *********************************************/
6291
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02006292 /* enable rfkill interrupt: hw bug w/a */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006293 pci_read_config_word(il->pci_dev, PCI_COMMAND, &pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006294 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
6295 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006296 pci_write_config_word(il->pci_dev, PCI_COMMAND, pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006297 }
6298
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006299 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006300
6301 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006302 if (_il_rd(il, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006303 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006304 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006305 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006306
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006307 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006308 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006309
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006310 il_power_initialize(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006311
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006312 init_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006313
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006314 err = il4965_request_firmware(il, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006315 if (err)
6316 goto out_destroy_workqueue;
6317
6318 return 0;
6319
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006320out_destroy_workqueue:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006321 destroy_workqueue(il->workqueue);
6322 il->workqueue = NULL;
6323 free_irq(il->pci_dev->irq, il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006324out_disable_msi:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006325 pci_disable_msi(il->pci_dev);
6326 il4965_uninit_drv(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006327out_free_eeprom:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006328 il_eeprom_free(il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006329out_iounmap:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006330 pci_iounmap(pdev, il->hw_base);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006331out_pci_release_regions:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006332 pci_set_drvdata(pdev, NULL);
6333 pci_release_regions(pdev);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006334out_pci_disable_device:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006335 pci_disable_device(pdev);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006336out_ieee80211_free_hw:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006337 il_free_traffic_mem(il);
6338 ieee80211_free_hw(il->hw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006339out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006340 return err;
6341}
6342
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006343static void __devexit
6344il4965_pci_remove(struct pci_dev *pdev)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006345{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006346 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006347 unsigned long flags;
6348
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006349 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006350 return;
6351
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006352 wait_for_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006353
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006354 D_INFO("*** UNLOAD DRIVER ***\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006355
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006356 il_dbgfs_unregister(il);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006357 sysfs_remove_group(&pdev->dev.kobj, &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006358
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006359 /* ieee80211_unregister_hw call wil cause il_mac_stop to
6360 * to be called and il4965_down since we are removing the device
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006361 * we need to set S_EXIT_PENDING bit.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006362 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006363 set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006364
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006365 il_leds_exit(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006366
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006367 if (il->mac80211_registered) {
6368 ieee80211_unregister_hw(il->hw);
6369 il->mac80211_registered = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006370 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006371 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006372 }
6373
6374 /*
6375 * Make sure device is reset to low power before unloading driver.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006376 * This may be redundant with il4965_down(), but there are paths to
6377 * run il4965_down() without calling apm_ops.stop(), and there are
6378 * paths to avoid running il4965_down() at all before leaving driver.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006379 * This (inexpensive) call *makes sure* device is reset.
6380 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006381 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006382
6383 /* make sure we flush any pending irq or
6384 * tasklet for the driver
6385 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006386 spin_lock_irqsave(&il->lock, flags);
6387 il_disable_interrupts(il);
6388 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006389
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006390 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006391
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006392 il4965_dealloc_ucode_pci(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006393
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006394 if (il->rxq.bd)
6395 il4965_rx_queue_free(il, &il->rxq);
6396 il4965_hw_txq_ctx_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006397
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006398 il_eeprom_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006399
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006400 /*netif_stop_queue(dev); */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006401 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006402
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006403 /* ieee80211_unregister_hw calls il_mac_stop, which flushes
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006404 * il->workqueue... so we can't take down the workqueue
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006405 * until now... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006406 destroy_workqueue(il->workqueue);
6407 il->workqueue = NULL;
6408 il_free_traffic_mem(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006409
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006410 free_irq(il->pci_dev->irq, il);
6411 pci_disable_msi(il->pci_dev);
6412 pci_iounmap(pdev, il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006413 pci_release_regions(pdev);
6414 pci_disable_device(pdev);
6415 pci_set_drvdata(pdev, NULL);
6416
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006417 il4965_uninit_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006418
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006419 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006420
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006421 ieee80211_free_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006422}
6423
6424/*
6425 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006426 * must be called under il->lock and mac access
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006427 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006428void
6429il4965_txq_set_sched(struct il_priv *il, u32 mask)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006430{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006431 il_wr_prph(il, IL49_SCD_TXFACT, mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006432}
6433
6434/*****************************************************************************
6435 *
6436 * driver and module entry point
6437 *
6438 *****************************************************************************/
6439
6440/* Hardware specific file defines the PCI IDs table for that hardware module */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006441static DEFINE_PCI_DEVICE_TABLE(il4965_hw_card_ids) = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006442 {IL_PCI_DEVICE(0x4229, PCI_ANY_ID, il4965_cfg)},
6443 {IL_PCI_DEVICE(0x4230, PCI_ANY_ID, il4965_cfg)},
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006444 {0}
6445};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006446MODULE_DEVICE_TABLE(pci, il4965_hw_card_ids);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006447
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006448static struct pci_driver il4965_driver = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006449 .name = DRV_NAME,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006450 .id_table = il4965_hw_card_ids,
6451 .probe = il4965_pci_probe,
6452 .remove = __devexit_p(il4965_pci_remove),
6453 .driver.pm = IL_LEGACY_PM_OPS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006454};
6455
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006456static int __init
6457il4965_init(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006458{
6459
6460 int ret;
6461 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
6462 pr_info(DRV_COPYRIGHT "\n");
6463
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006464 ret = il4965_rate_control_register();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006465 if (ret) {
6466 pr_err("Unable to register rate control algorithm: %d\n", ret);
6467 return ret;
6468 }
6469
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006470 ret = pci_register_driver(&il4965_driver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006471 if (ret) {
6472 pr_err("Unable to initialize PCI module\n");
6473 goto error_register;
6474 }
6475
6476 return ret;
6477
6478error_register:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006479 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006480 return ret;
6481}
6482
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006483static void __exit
6484il4965_exit(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006485{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006486 pci_unregister_driver(&il4965_driver);
6487 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006488}
6489
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006490module_exit(il4965_exit);
6491module_init(il4965_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006492
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006493#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkad2ddf6212011-08-16 14:17:04 +02006494module_param_named(debug, il_debug_level, uint, S_IRUGO | S_IWUSR);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006495MODULE_PARM_DESC(debug, "debug output mask");
6496#endif
6497
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006498module_param_named(swcrypto, il4965_mod_params.sw_crypto, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006499MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006500module_param_named(queues_num, il4965_mod_params.num_of_queues, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006501MODULE_PARM_DESC(queues_num, "number of hw queues.");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006502module_param_named(11n_disable, il4965_mod_params.disable_11n, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006503MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01006504module_param_named(amsdu_size_8K, il4965_mod_params.amsdu_size_8K, int,
6505 S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006506MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006507module_param_named(fw_restart, il4965_mod_params.restart_fw, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006508MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");