blob: 9e3f74c8e9a7e3fac7e2a1af583e88c4a8892520 [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
56
57/******************************************************************************
58 *
59 * module boiler plate
60 *
61 ******************************************************************************/
62
63/*
64 * module name, copyright, version, etc.
65 */
66#define DRV_DESCRIPTION "Intel(R) Wireless WiFi 4965 driver for Linux"
67
Stanislaw Gruszkad3175162011-11-15 11:25:42 +010068#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080069#define VD "d"
70#else
71#define VD
72#endif
73
74#define DRV_VERSION IWLWIFI_VERSION VD
75
76
77MODULE_DESCRIPTION(DRV_DESCRIPTION);
78MODULE_VERSION(DRV_VERSION);
79MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
80MODULE_LICENSE("GPL");
81MODULE_ALIAS("iwl4965");
82
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +020083void il4965_check_abort_status(struct il_priv *il,
84 u8 frame_count, u32 status)
85{
86 if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) {
87 IL_ERR("Tx flush command to flush out all frames\n");
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +010088 if (!test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +020089 queue_work(il->workqueue, &il->tx_flush);
90 }
91}
92
93/*
94 * EEPROM
95 */
96struct il_mod_params il4965_mod_params = {
97 .amsdu_size_8K = 1,
98 .restart_fw = 1,
99 /* the rest are 0 by default */
100};
101
102void il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq)
103{
104 unsigned long flags;
105 int i;
106 spin_lock_irqsave(&rxq->lock, flags);
107 INIT_LIST_HEAD(&rxq->rx_free);
108 INIT_LIST_HEAD(&rxq->rx_used);
109 /* Fill the rx_used queue with _all_ of the Rx buffers */
110 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
111 /* In the reset function, these buffers may have been allocated
112 * to an SKB, so we need to unmap and free potential storage */
113 if (rxq->pool[i].page != NULL) {
114 pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
115 PAGE_SIZE << il->hw_params.rx_page_order,
116 PCI_DMA_FROMDEVICE);
117 __il_free_pages(il, rxq->pool[i].page);
118 rxq->pool[i].page = NULL;
119 }
120 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
121 }
122
123 for (i = 0; i < RX_QUEUE_SIZE; i++)
124 rxq->queue[i] = NULL;
125
126 /* Set us so that we have processed and used all buffers, but have
127 * not restocked the Rx queue with fresh buffers */
128 rxq->read = rxq->write = 0;
129 rxq->write_actual = 0;
130 rxq->free_count = 0;
131 spin_unlock_irqrestore(&rxq->lock, flags);
132}
133
134int il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq)
135{
136 u32 rb_size;
137 const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */
138 u32 rb_timeout = 0;
139
140 if (il->cfg->mod_params->amsdu_size_8K)
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 Gruszka9a95b372011-08-31 14:20:23 +0200152 il_wr(il, FH49_RSCSR_CHNL0_RBDCB_BASE_REG,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200153 (u32)(rxq->bd_dma >> 8));
154
155 /* Tell device where in DRAM to update its Rx status */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200156 il_wr(il, FH49_RSCSR_CHNL0_STTS_WPTR_REG,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200157 rxq->rb_stts_dma >> 4);
158
159 /* Enable Rx DMA
160 * Direct rx interrupts to hosts
161 * Rx buffer size 4 or 8k
162 * RB timeout 0x10
163 * 256 RBDs
164 */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200165 il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG,
166 FH49_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
167 FH49_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
168 FH49_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK |
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200169 rb_size|
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200170 (rb_timeout << FH49_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS)|
171 (rfdnlog << FH49_RCSR_RX_CONFIG_RBDCB_SIZE_POS));
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200172
173 /* Set interrupt coalescing timer to default (2048 usecs) */
174 il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_TIMEOUT_DEF);
175
176 return 0;
177}
178
179static void il4965_set_pwr_vmain(struct il_priv *il)
180{
181/*
182 * (for documentation purposes)
183 * to set power to V_AUX, do:
184
185 if (pci_pme_capable(il->pci_dev, PCI_D3cold))
186 il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
187 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
188 ~APMG_PS_CTRL_MSK_PWR_SRC);
189 */
190
191 il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
192 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
193 ~APMG_PS_CTRL_MSK_PWR_SRC);
194}
195
196int il4965_hw_nic_init(struct il_priv *il)
197{
198 unsigned long flags;
199 struct il_rx_queue *rxq = &il->rxq;
200 int ret;
201
202 /* nic_init */
203 spin_lock_irqsave(&il->lock, flags);
204 il->cfg->ops->lib->apm_ops.init(il);
205
206 /* Set interrupt coalescing calibration timer to default (512 usecs) */
207 il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_CALIB_TIMEOUT_DEF);
208
209 spin_unlock_irqrestore(&il->lock, flags);
210
211 il4965_set_pwr_vmain(il);
212
213 il->cfg->ops->lib->apm_ops.config(il);
214
215 /* Allocate the RX queue, or reset if it is already allocated */
216 if (!rxq->bd) {
217 ret = il_rx_queue_alloc(il);
218 if (ret) {
219 IL_ERR("Unable to initialize Rx queue\n");
220 return -ENOMEM;
221 }
222 } else
223 il4965_rx_queue_reset(il, rxq);
224
225 il4965_rx_replenish(il);
226
227 il4965_rx_init(il, rxq);
228
229 spin_lock_irqsave(&il->lock, flags);
230
231 rxq->need_update = 1;
232 il_rx_queue_update_write_ptr(il, rxq);
233
234 spin_unlock_irqrestore(&il->lock, flags);
235
236 /* Allocate or reset and init all Tx and Command queues */
237 if (!il->txq) {
238 ret = il4965_txq_ctx_alloc(il);
239 if (ret)
240 return ret;
241 } else
242 il4965_txq_ctx_reset(il);
243
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 */
252static inline __le32 il4965_dma_addr2rbd_ptr(struct il_priv *il,
253 dma_addr_t dma_addr)
254{
255 return cpu_to_le32((u32)(dma_addr >> 8));
256}
257
258/**
259 * il4965_rx_queue_restock - refill RX queue from pre-allocated pool
260 *
261 * If there are slots in the RX queue that need to be restocked,
262 * and we have free pre-allocated buffers, fill the ranks as much
263 * as we can, pulling from rx_free.
264 *
265 * This moves the 'write' idx forward to catch up with 'processed', and
266 * also updates the memory address in the firmware to reference the new
267 * target buffer.
268 */
269void il4965_rx_queue_restock(struct il_priv *il)
270{
271 struct il_rx_queue *rxq = &il->rxq;
272 struct list_head *element;
273 struct il_rx_buf *rxb;
274 unsigned long flags;
275
276 spin_lock_irqsave(&rxq->lock, flags);
277 while (il_rx_queue_space(rxq) > 0 && rxq->free_count) {
278 /* The overwritten rxb must be a used one */
279 rxb = rxq->queue[rxq->write];
280 BUG_ON(rxb && rxb->page);
281
282 /* Get next free Rx buffer, remove from free list */
283 element = rxq->rx_free.next;
284 rxb = list_entry(element, struct il_rx_buf, list);
285 list_del(element);
286
287 /* Point to Rx buffer via next RBD in circular buffer */
288 rxq->bd[rxq->write] = il4965_dma_addr2rbd_ptr(il,
289 rxb->page_dma);
290 rxq->queue[rxq->write] = rxb;
291 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
292 rxq->free_count--;
293 }
294 spin_unlock_irqrestore(&rxq->lock, flags);
295 /* If the pre-allocated buffer pool is dropping low, schedule to
296 * refill it */
297 if (rxq->free_count <= RX_LOW_WATERMARK)
298 queue_work(il->workqueue, &il->rx_replenish);
299
300
301 /* If we've added more space for the firmware to place data, tell it.
302 * Increment device's write pointer in multiples of 8. */
303 if (rxq->write_actual != (rxq->write & ~0x7)) {
304 spin_lock_irqsave(&rxq->lock, flags);
305 rxq->need_update = 1;
306 spin_unlock_irqrestore(&rxq->lock, flags);
307 il_rx_queue_update_write_ptr(il, rxq);
308 }
309}
310
311/**
312 * il4965_rx_replenish - Move all used packet from rx_used to rx_free
313 *
314 * When moving to rx_free an SKB is allocated for the slot.
315 *
316 * Also restock the Rx queue via il_rx_queue_restock.
317 * This is called as a scheduled work item (except for during initialization)
318 */
319static void il4965_rx_allocate(struct il_priv *il, gfp_t priority)
320{
321 struct il_rx_queue *rxq = &il->rxq;
322 struct list_head *element;
323 struct il_rx_buf *rxb;
324 struct page *page;
325 unsigned long flags;
326 gfp_t gfp_mask = priority;
327
328 while (1) {
329 spin_lock_irqsave(&rxq->lock, flags);
330 if (list_empty(&rxq->rx_used)) {
331 spin_unlock_irqrestore(&rxq->lock, flags);
332 return;
333 }
334 spin_unlock_irqrestore(&rxq->lock, flags);
335
336 if (rxq->free_count > RX_LOW_WATERMARK)
337 gfp_mask |= __GFP_NOWARN;
338
339 if (il->hw_params.rx_page_order > 0)
340 gfp_mask |= __GFP_COMP;
341
342 /* Alloc a new receive buffer */
343 page = alloc_pages(gfp_mask, il->hw_params.rx_page_order);
344 if (!page) {
345 if (net_ratelimit())
346 D_INFO("alloc_pages failed, "
347 "order: %d\n",
348 il->hw_params.rx_page_order);
349
350 if (rxq->free_count <= RX_LOW_WATERMARK &&
351 net_ratelimit())
352 IL_ERR(
353 "Failed to alloc_pages with %s. "
354 "Only %u free buffers remaining.\n",
355 priority == GFP_ATOMIC ?
356 "GFP_ATOMIC" : "GFP_KERNEL",
357 rxq->free_count);
358 /* We don't reschedule replenish work here -- we will
359 * call the restock method and if it still needs
360 * more buffers it will schedule replenish */
361 return;
362 }
363
364 spin_lock_irqsave(&rxq->lock, flags);
365
366 if (list_empty(&rxq->rx_used)) {
367 spin_unlock_irqrestore(&rxq->lock, flags);
368 __free_pages(page, il->hw_params.rx_page_order);
369 return;
370 }
371 element = rxq->rx_used.next;
372 rxb = list_entry(element, struct il_rx_buf, list);
373 list_del(element);
374
375 spin_unlock_irqrestore(&rxq->lock, flags);
376
377 BUG_ON(rxb->page);
378 rxb->page = page;
379 /* Get physical address of the RB */
380 rxb->page_dma = pci_map_page(il->pci_dev, page, 0,
381 PAGE_SIZE << il->hw_params.rx_page_order,
382 PCI_DMA_FROMDEVICE);
383 /* dma address must be no more than 36 bits */
384 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
385 /* and also 256 byte aligned! */
386 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
387
388 spin_lock_irqsave(&rxq->lock, flags);
389
390 list_add_tail(&rxb->list, &rxq->rx_free);
391 rxq->free_count++;
392 il->alloc_rxb_page++;
393
394 spin_unlock_irqrestore(&rxq->lock, flags);
395 }
396}
397
398void il4965_rx_replenish(struct il_priv *il)
399{
400 unsigned long flags;
401
402 il4965_rx_allocate(il, GFP_KERNEL);
403
404 spin_lock_irqsave(&il->lock, flags);
405 il4965_rx_queue_restock(il);
406 spin_unlock_irqrestore(&il->lock, flags);
407}
408
409void il4965_rx_replenish_now(struct il_priv *il)
410{
411 il4965_rx_allocate(il, GFP_ATOMIC);
412
413 il4965_rx_queue_restock(il);
414}
415
416/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
417 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
418 * This free routine walks the list of POOL entries and if SKB is set to
419 * non NULL it is unmapped and freed
420 */
421void il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq)
422{
423 int i;
424 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
425 if (rxq->pool[i].page != NULL) {
426 pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
427 PAGE_SIZE << il->hw_params.rx_page_order,
428 PCI_DMA_FROMDEVICE);
429 __il_free_pages(il, rxq->pool[i].page);
430 rxq->pool[i].page = NULL;
431 }
432 }
433
434 dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
435 rxq->bd_dma);
436 dma_free_coherent(&il->pci_dev->dev, sizeof(struct il_rb_status),
437 rxq->rb_stts, rxq->rb_stts_dma);
438 rxq->bd = NULL;
439 rxq->rb_stts = NULL;
440}
441
442int il4965_rxq_stop(struct il_priv *il)
443{
444
445 /* stop Rx DMA */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +0200446 il_wr(il, FH49_MEM_RCSR_CHNL0_CONFIG_REG, 0);
447 il_poll_bit(il, FH49_MEM_RSSR_RX_STATUS_REG,
448 FH49_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200449
450 return 0;
451}
452
453int il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
454{
455 int idx = 0;
456 int band_offset = 0;
457
458 /* HT rate format: mac80211 wants an MCS number, which is just LSB */
459 if (rate_n_flags & RATE_MCS_HT_MSK) {
460 idx = (rate_n_flags & 0xff);
461 return idx;
462 /* Legacy rate format, search for match in table */
463 } else {
464 if (band == IEEE80211_BAND_5GHZ)
465 band_offset = IL_FIRST_OFDM_RATE;
466 for (idx = band_offset; idx < RATE_COUNT_LEGACY; idx++)
467 if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
468 return idx - band_offset;
469 }
470
471 return -1;
472}
473
474static int il4965_calc_rssi(struct il_priv *il,
475 struct il_rx_phy_res *rx_resp)
476{
477 /* data from PHY/DSP regarding signal strength, etc.,
478 * contents are always there, not configurable by host. */
479 struct il4965_rx_non_cfg_phy *ncphy =
480 (struct il4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
481 u32 agc = (le16_to_cpu(ncphy->agc_info) & IL49_AGC_DB_MASK)
482 >> IL49_AGC_DB_POS;
483
484 u32 valid_antennae =
485 (le16_to_cpu(rx_resp->phy_flags) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK)
486 >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET;
487 u8 max_rssi = 0;
488 u32 i;
489
490 /* Find max rssi among 3 possible receivers.
491 * These values are measured by the digital signal processor (DSP).
492 * They should stay fairly constant even as the signal strength varies,
493 * if the radio's automatic gain control (AGC) is working right.
494 * AGC value (see below) will provide the "interesting" info. */
495 for (i = 0; i < 3; i++)
496 if (valid_antennae & (1 << i))
497 max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
498
499 D_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
500 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
501 max_rssi, agc);
502
503 /* dBm = max_rssi dB - agc dB - constant.
504 * Higher AGC (higher radio gain) means lower signal. */
505 return max_rssi - agc - IL4965_RSSI_OFFSET;
506}
507
508
509static u32 il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in)
510{
511 u32 decrypt_out = 0;
512
513 if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
514 RX_RES_STATUS_STATION_FOUND)
515 decrypt_out |= (RX_RES_STATUS_STATION_FOUND |
516 RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
517
518 decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK);
519
520 /* packet was not encrypted */
521 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
522 RX_RES_STATUS_SEC_TYPE_NONE)
523 return decrypt_out;
524
525 /* packet was encrypted with unknown alg */
526 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
527 RX_RES_STATUS_SEC_TYPE_ERR)
528 return decrypt_out;
529
530 /* decryption was not done in HW */
531 if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
532 RX_MPDU_RES_STATUS_DEC_DONE_MSK)
533 return decrypt_out;
534
535 switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) {
536
537 case RX_RES_STATUS_SEC_TYPE_CCMP:
538 /* alg is CCM: check MIC only */
539 if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK))
540 /* Bad MIC */
541 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
542 else
543 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
544
545 break;
546
547 case RX_RES_STATUS_SEC_TYPE_TKIP:
548 if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) {
549 /* Bad TTAK */
550 decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK;
551 break;
552 }
553 /* fall through if TTAK OK */
554 default:
555 if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK))
556 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
557 else
558 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
559 break;
560 }
561
562 D_RX("decrypt_in:0x%x decrypt_out = 0x%x\n",
563 decrypt_in, decrypt_out);
564
565 return decrypt_out;
566}
567
568static void il4965_pass_packet_to_mac80211(struct il_priv *il,
569 struct ieee80211_hdr *hdr,
570 u16 len,
571 u32 ampdu_status,
572 struct il_rx_buf *rxb,
573 struct ieee80211_rx_status *stats)
574{
575 struct sk_buff *skb;
576 __le16 fc = hdr->frame_control;
577
578 /* We only process data packets if the interface is open */
579 if (unlikely(!il->is_open)) {
580 D_DROP(
581 "Dropping packet while interface is not open.\n");
582 return;
583 }
584
585 /* In case of HW accelerated crypto and bad decryption, drop */
586 if (!il->cfg->mod_params->sw_crypto &&
587 il_set_decrypted_flag(il, hdr, ampdu_status, stats))
588 return;
589
590 skb = dev_alloc_skb(128);
591 if (!skb) {
592 IL_ERR("dev_alloc_skb failed\n");
593 return;
594 }
595
596 skb_add_rx_frag(skb, 0, rxb->page, (void *)hdr - rxb_addr(rxb), len);
597
598 il_update_stats(il, false, fc, len);
599 memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats));
600
601 ieee80211_rx(il->hw, skb);
602 il->alloc_rxb_page--;
603 rxb->page = NULL;
604}
605
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200606/* Called for N_RX (legacy ABG frames), or
607 * N_RX_MPDU (HT high-throughput N frames). */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +0200608void il4965_hdl_rx(struct il_priv *il,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200609 struct il_rx_buf *rxb)
610{
611 struct ieee80211_hdr *header;
612 struct ieee80211_rx_status rx_status;
613 struct il_rx_pkt *pkt = rxb_addr(rxb);
614 struct il_rx_phy_res *phy_res;
615 __le32 rx_pkt_status;
616 struct il_rx_mpdu_res_start *amsdu;
617 u32 len;
618 u32 ampdu_status;
619 u32 rate_n_flags;
620
621 /**
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200622 * N_RX and N_RX_MPDU are handled differently.
623 * N_RX: physical layer info is in this buffer
624 * N_RX_MPDU: physical layer info was sent in separate
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200625 * command and cached in il->last_phy_res
626 *
627 * Here we set up local variables depending on which command is
628 * received.
629 */
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200630 if (pkt->hdr.cmd == N_RX) {
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200631 phy_res = (struct il_rx_phy_res *)pkt->u.raw;
632 header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res)
633 + phy_res->cfg_phy_cnt);
634
635 len = le16_to_cpu(phy_res->byte_count);
636 rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*phy_res) +
637 phy_res->cfg_phy_cnt + len);
638 ampdu_status = le32_to_cpu(rx_pkt_status);
639 } else {
640 if (!il->_4965.last_phy_res_valid) {
641 IL_ERR("MPDU frame without cached PHY data\n");
642 return;
643 }
644 phy_res = &il->_4965.last_phy_res;
645 amsdu = (struct il_rx_mpdu_res_start *)pkt->u.raw;
646 header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*amsdu));
647 len = le16_to_cpu(amsdu->byte_count);
648 rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*amsdu) + len);
649 ampdu_status = il4965_translate_rx_status(il,
650 le32_to_cpu(rx_pkt_status));
651 }
652
653 if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
654 D_DROP("dsp size out of range [0,20]: %d/n",
655 phy_res->cfg_phy_cnt);
656 return;
657 }
658
659 if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) ||
660 !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
661 D_RX("Bad CRC or FIFO: 0x%08X.\n",
662 le32_to_cpu(rx_pkt_status));
663 return;
664 }
665
666 /* This will be used in several places later */
667 rate_n_flags = le32_to_cpu(phy_res->rate_n_flags);
668
669 /* rx_status carries information about the packet to mac80211 */
670 rx_status.mactime = le64_to_cpu(phy_res->timestamp);
671 rx_status.band = (phy_res->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ?
672 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
673 rx_status.freq =
674 ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel),
675 rx_status.band);
676 rx_status.rate_idx =
677 il4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band);
678 rx_status.flag = 0;
679
680 /* TSF isn't reliable. In order to allow smooth user experience,
681 * this W/A doesn't propagate it to the mac80211 */
682 /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
683
684 il->ucode_beacon_time = le32_to_cpu(phy_res->beacon_time_stamp);
685
686 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
687 rx_status.signal = il4965_calc_rssi(il, phy_res);
688
689 il_dbg_log_rx_data_frame(il, len, header);
690 D_STATS("Rssi %d, TSF %llu\n",
691 rx_status.signal, (unsigned long long)rx_status.mactime);
692
693 /*
694 * "antenna number"
695 *
696 * It seems that the antenna field in the phy flags value
697 * is actually a bit field. This is undefined by radiotap,
698 * it wants an actual antenna number but I always get "7"
699 * for most legacy frames I receive indicating that the
700 * same frame was received on all three RX chains.
701 *
702 * I think this field should be removed in favor of a
703 * new 802.11n radiotap field "RX chains" that is defined
704 * as a bitmask.
705 */
706 rx_status.antenna =
707 (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK)
708 >> RX_RES_PHY_FLAGS_ANTENNA_POS;
709
710 /* set the preamble flag if appropriate */
711 if (phy_res->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
712 rx_status.flag |= RX_FLAG_SHORTPRE;
713
714 /* Set up the HT phy flags */
715 if (rate_n_flags & RATE_MCS_HT_MSK)
716 rx_status.flag |= RX_FLAG_HT;
717 if (rate_n_flags & RATE_MCS_HT40_MSK)
718 rx_status.flag |= RX_FLAG_40MHZ;
719 if (rate_n_flags & RATE_MCS_SGI_MSK)
720 rx_status.flag |= RX_FLAG_SHORT_GI;
721
722 il4965_pass_packet_to_mac80211(il, header, len, ampdu_status,
723 rxb, &rx_status);
724}
725
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200726/* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY).
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +0200727 * This will be used later in il_hdl_rx() for N_RX_MPDU. */
728void il4965_hdl_rx_phy(struct il_priv *il,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200729 struct il_rx_buf *rxb)
730{
731 struct il_rx_pkt *pkt = rxb_addr(rxb);
732 il->_4965.last_phy_res_valid = true;
733 memcpy(&il->_4965.last_phy_res, pkt->u.raw,
734 sizeof(struct il_rx_phy_res));
735}
736
737static int il4965_get_channels_for_scan(struct il_priv *il,
738 struct ieee80211_vif *vif,
739 enum ieee80211_band band,
740 u8 is_active, u8 n_probes,
741 struct il_scan_channel *scan_ch)
742{
743 struct ieee80211_channel *chan;
744 const struct ieee80211_supported_band *sband;
745 const struct il_channel_info *ch_info;
746 u16 passive_dwell = 0;
747 u16 active_dwell = 0;
748 int added, i;
749 u16 channel;
750
751 sband = il_get_hw_mode(il, band);
752 if (!sband)
753 return 0;
754
755 active_dwell = il_get_active_dwell_time(il, band, n_probes);
756 passive_dwell = il_get_passive_dwell_time(il, band, vif);
757
758 if (passive_dwell <= active_dwell)
759 passive_dwell = active_dwell + 1;
760
761 for (i = 0, added = 0; i < il->scan_request->n_channels; i++) {
762 chan = il->scan_request->channels[i];
763
764 if (chan->band != band)
765 continue;
766
767 channel = chan->hw_value;
768 scan_ch->channel = cpu_to_le16(channel);
769
770 ch_info = il_get_channel_info(il, band, channel);
771 if (!il_is_channel_valid(ch_info)) {
772 D_SCAN(
773 "Channel %d is INVALID for this band.\n",
774 channel);
775 continue;
776 }
777
778 if (!is_active || il_is_channel_passive(ch_info) ||
779 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN))
780 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
781 else
782 scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
783
784 if (n_probes)
785 scan_ch->type |= IL_SCAN_PROBE_MASK(n_probes);
786
787 scan_ch->active_dwell = cpu_to_le16(active_dwell);
788 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
789
790 /* Set txpower levels to defaults */
791 scan_ch->dsp_atten = 110;
792
793 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
794 * power level:
795 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
796 */
797 if (band == IEEE80211_BAND_5GHZ)
798 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
799 else
800 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
801
802 D_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n",
803 channel, le32_to_cpu(scan_ch->type),
804 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
805 "ACTIVE" : "PASSIVE",
806 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
807 active_dwell : passive_dwell);
808
809 scan_ch++;
810 added++;
811 }
812
813 D_SCAN("total channels to scan %d\n", added);
814 return added;
815}
816
Stanislaw Gruszkaaf038f42011-08-30 13:58:27 +0200817static inline u32 il4965_ant_idx_to_flags(u8 ant_idx)
818{
819 return BIT(ant_idx) << RATE_MCS_ANT_POS;
820}
821
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200822int il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif)
823{
824 struct il_host_cmd cmd = {
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +0200825 .id = C_SCAN,
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200826 .len = sizeof(struct il_scan_cmd),
827 .flags = CMD_SIZE_HUGE,
828 };
829 struct il_scan_cmd *scan;
830 struct il_rxon_context *ctx = &il->ctx;
831 u32 rate_flags = 0;
832 u16 cmd_len;
833 u16 rx_chain = 0;
834 enum ieee80211_band band;
835 u8 n_probes = 0;
836 u8 rx_ant = il->hw_params.valid_rx_ant;
837 u8 rate;
838 bool is_active = false;
839 int chan_mod;
840 u8 active_chains;
841 u8 scan_tx_antennas = il->hw_params.valid_tx_ant;
842 int ret;
843
844 lockdep_assert_held(&il->mutex);
845
846 if (vif)
847 ctx = il_rxon_ctx_from_vif(vif);
848
849 if (!il->scan_cmd) {
850 il->scan_cmd = kmalloc(sizeof(struct il_scan_cmd) +
851 IL_MAX_SCAN_SIZE, GFP_KERNEL);
852 if (!il->scan_cmd) {
853 D_SCAN(
854 "fail to allocate memory for scan\n");
855 return -ENOMEM;
856 }
857 }
858 scan = il->scan_cmd;
859 memset(scan, 0, sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE);
860
861 scan->quiet_plcp_th = IL_PLCP_QUIET_THRESH;
862 scan->quiet_time = IL_ACTIVE_QUIET_TIME;
863
864 if (il_is_any_associated(il)) {
865 u16 interval;
866 u32 extra;
867 u32 suspend_time = 100;
868 u32 scan_suspend_time = 100;
869
870 D_INFO("Scanning while associated...\n");
871 interval = vif->bss_conf.beacon_int;
872
873 scan->suspend_time = 0;
874 scan->max_out_time = cpu_to_le32(200 * 1024);
875 if (!interval)
876 interval = suspend_time;
877
878 extra = (suspend_time / interval) << 22;
879 scan_suspend_time = (extra |
880 ((suspend_time % interval) * 1024));
881 scan->suspend_time = cpu_to_le32(scan_suspend_time);
882 D_SCAN("suspend_time 0x%X beacon interval %d\n",
883 scan_suspend_time, interval);
884 }
885
886 if (il->scan_request->n_ssids) {
887 int i, p = 0;
888 D_SCAN("Kicking off active scan\n");
889 for (i = 0; i < il->scan_request->n_ssids; i++) {
890 /* always does wildcard anyway */
891 if (!il->scan_request->ssids[i].ssid_len)
892 continue;
893 scan->direct_scan[p].id = WLAN_EID_SSID;
894 scan->direct_scan[p].len =
895 il->scan_request->ssids[i].ssid_len;
896 memcpy(scan->direct_scan[p].ssid,
897 il->scan_request->ssids[i].ssid,
898 il->scan_request->ssids[i].ssid_len);
899 n_probes++;
900 p++;
901 }
902 is_active = true;
903 } else
904 D_SCAN("Start passive scan.\n");
905
906 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
907 scan->tx_cmd.sta_id = ctx->bcast_sta_id;
908 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
909
910 switch (il->scan_band) {
911 case IEEE80211_BAND_2GHZ:
912 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
913 chan_mod = le32_to_cpu(
914 il->ctx.active.flags &
915 RXON_FLG_CHANNEL_MODE_MSK)
916 >> RXON_FLG_CHANNEL_MODE_POS;
917 if (chan_mod == CHANNEL_MODE_PURE_40) {
918 rate = RATE_6M_PLCP;
919 } else {
920 rate = RATE_1M_PLCP;
921 rate_flags = RATE_MCS_CCK_MSK;
922 }
923 break;
924 case IEEE80211_BAND_5GHZ:
925 rate = RATE_6M_PLCP;
926 break;
927 default:
928 IL_WARN("Invalid scan band\n");
929 return -EIO;
930 }
931
932 /*
933 * If active scanning is requested but a certain channel is
934 * marked passive, we can do active scanning if we detect
935 * transmissions.
936 *
937 * There is an issue with some firmware versions that triggers
938 * a sysassert on a "good CRC threshold" of zero (== disabled),
939 * on a radar channel even though this means that we should NOT
940 * send probes.
941 *
942 * The "good CRC threshold" is the number of frames that we
943 * need to receive during our dwell time on a channel before
944 * sending out probes -- setting this to a huge value will
945 * mean we never reach it, but at the same time work around
946 * the aforementioned issue. Thus use IL_GOOD_CRC_TH_NEVER
947 * here instead of IL_GOOD_CRC_TH_DISABLED.
948 */
949 scan->good_CRC_th = is_active ? IL_GOOD_CRC_TH_DEFAULT :
950 IL_GOOD_CRC_TH_NEVER;
951
952 band = il->scan_band;
953
954 if (il->cfg->scan_rx_antennas[band])
955 rx_ant = il->cfg->scan_rx_antennas[band];
956
957 il->scan_tx_ant[band] = il4965_toggle_tx_ant(il,
958 il->scan_tx_ant[band],
959 scan_tx_antennas);
960 rate_flags |= il4965_ant_idx_to_flags(il->scan_tx_ant[band]);
961 scan->tx_cmd.rate_n_flags = il4965_hw_set_rate_n_flags(rate, rate_flags);
962
963 /* In power save mode use one chain, otherwise use all chains */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +0100964 if (test_bit(S_POWER_PMI, &il->status)) {
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +0200965 /* rx_ant has been set to all valid chains previously */
966 active_chains = rx_ant &
967 ((u8)(il->chain_noise_data.active_chains));
968 if (!active_chains)
969 active_chains = rx_ant;
970
971 D_SCAN("chain_noise_data.active_chains: %u\n",
972 il->chain_noise_data.active_chains);
973
974 rx_ant = il4965_first_antenna(active_chains);
975 }
976
977 /* MIMO is not used here, but value is required */
978 rx_chain |= il->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
979 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
980 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
981 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
982 scan->rx_chain = cpu_to_le16(rx_chain);
983
984 cmd_len = il_fill_probe_req(il,
985 (struct ieee80211_mgmt *)scan->data,
986 vif->addr,
987 il->scan_request->ie,
988 il->scan_request->ie_len,
989 IL_MAX_SCAN_SIZE - sizeof(*scan));
990 scan->tx_cmd.len = cpu_to_le16(cmd_len);
991
992 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
993 RXON_FILTER_BCON_AWARE_MSK);
994
995 scan->channel_count = il4965_get_channels_for_scan(il, vif, band,
996 is_active, n_probes,
997 (void *)&scan->data[cmd_len]);
998 if (scan->channel_count == 0) {
999 D_SCAN("channel count %d\n", scan->channel_count);
1000 return -EIO;
1001 }
1002
1003 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
1004 scan->channel_count * sizeof(struct il_scan_channel);
1005 cmd.data = scan;
1006 scan->len = cpu_to_le16(cmd.len);
1007
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001008 set_bit(S_SCAN_HW, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001009
1010 ret = il_send_cmd_sync(il, &cmd);
1011 if (ret)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001012 clear_bit(S_SCAN_HW, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001013
1014 return ret;
1015}
1016
1017int il4965_manage_ibss_station(struct il_priv *il,
1018 struct ieee80211_vif *vif, bool add)
1019{
1020 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
1021
1022 if (add)
1023 return il4965_add_bssid_station(il, vif_priv->ctx,
1024 vif->bss_conf.bssid,
1025 &vif_priv->ibss_bssid_sta_id);
1026 return il_remove_station(il, vif_priv->ibss_bssid_sta_id,
1027 vif->bss_conf.bssid);
1028}
1029
1030void il4965_free_tfds_in_queue(struct il_priv *il,
1031 int sta_id, int tid, int freed)
1032{
1033 lockdep_assert_held(&il->sta_lock);
1034
1035 if (il->stations[sta_id].tid[tid].tfds_in_queue >= freed)
1036 il->stations[sta_id].tid[tid].tfds_in_queue -= freed;
1037 else {
1038 D_TX("free more than tfds_in_queue (%u:%d)\n",
1039 il->stations[sta_id].tid[tid].tfds_in_queue,
1040 freed);
1041 il->stations[sta_id].tid[tid].tfds_in_queue = 0;
1042 }
1043}
1044
1045#define IL_TX_QUEUE_MSK 0xfffff
1046
1047static bool il4965_is_single_rx_stream(struct il_priv *il)
1048{
1049 return il->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
1050 il->current_ht_config.single_chain_sufficient;
1051}
1052
1053#define IL_NUM_RX_CHAINS_MULTIPLE 3
1054#define IL_NUM_RX_CHAINS_SINGLE 2
1055#define IL_NUM_IDLE_CHAINS_DUAL 2
1056#define IL_NUM_IDLE_CHAINS_SINGLE 1
1057
1058/*
1059 * Determine how many receiver/antenna chains to use.
1060 *
1061 * More provides better reception via diversity. Fewer saves power
1062 * at the expense of throughput, but only when not in powersave to
1063 * start with.
1064 *
1065 * MIMO (dual stream) requires at least 2, but works better with 3.
1066 * This does not determine *which* chains to use, just how many.
1067 */
1068static int il4965_get_active_rx_chain_count(struct il_priv *il)
1069{
1070 /* # of Rx chains to use when expecting MIMO. */
1071 if (il4965_is_single_rx_stream(il))
1072 return IL_NUM_RX_CHAINS_SINGLE;
1073 else
1074 return IL_NUM_RX_CHAINS_MULTIPLE;
1075}
1076
1077/*
1078 * When we are in power saving mode, unless device support spatial
1079 * multiplexing power save, use the active count for rx chain count.
1080 */
1081static int
1082il4965_get_idle_rx_chain_count(struct il_priv *il, int active_cnt)
1083{
1084 /* # Rx chains when idling, depending on SMPS mode */
1085 switch (il->current_ht_config.smps) {
1086 case IEEE80211_SMPS_STATIC:
1087 case IEEE80211_SMPS_DYNAMIC:
1088 return IL_NUM_IDLE_CHAINS_SINGLE;
1089 case IEEE80211_SMPS_OFF:
1090 return active_cnt;
1091 default:
1092 WARN(1, "invalid SMPS mode %d",
1093 il->current_ht_config.smps);
1094 return active_cnt;
1095 }
1096}
1097
1098/* up to 4 chains */
1099static u8 il4965_count_chain_bitmap(u32 chain_bitmap)
1100{
1101 u8 res;
1102 res = (chain_bitmap & BIT(0)) >> 0;
1103 res += (chain_bitmap & BIT(1)) >> 1;
1104 res += (chain_bitmap & BIT(2)) >> 2;
1105 res += (chain_bitmap & BIT(3)) >> 3;
1106 return res;
1107}
1108
1109/**
1110 * il4965_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
1111 *
1112 * Selects how many and which Rx receivers/antennas/chains to use.
1113 * This should not be used for scan command ... it puts data in wrong place.
1114 */
1115void il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx)
1116{
1117 bool is_single = il4965_is_single_rx_stream(il);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001118 bool is_cam = !test_bit(S_POWER_PMI, &il->status);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001119 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
1120 u32 active_chains;
1121 u16 rx_chain;
1122
1123 /* Tell uCode which antennas are actually connected.
1124 * Before first association, we assume all antennas are connected.
1125 * Just after first association, il4965_chain_noise_calibration()
1126 * checks which antennas actually *are* connected. */
1127 if (il->chain_noise_data.active_chains)
1128 active_chains = il->chain_noise_data.active_chains;
1129 else
1130 active_chains = il->hw_params.valid_rx_ant;
1131
1132 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
1133
1134 /* How many receivers should we use? */
1135 active_rx_cnt = il4965_get_active_rx_chain_count(il);
1136 idle_rx_cnt = il4965_get_idle_rx_chain_count(il, active_rx_cnt);
1137
1138
1139 /* correct rx chain count according hw settings
1140 * and chain noise calibration
1141 */
1142 valid_rx_cnt = il4965_count_chain_bitmap(active_chains);
1143 if (valid_rx_cnt < active_rx_cnt)
1144 active_rx_cnt = valid_rx_cnt;
1145
1146 if (valid_rx_cnt < idle_rx_cnt)
1147 idle_rx_cnt = valid_rx_cnt;
1148
1149 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
1150 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
1151
1152 ctx->staging.rx_chain = cpu_to_le16(rx_chain);
1153
1154 if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam)
1155 ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1156 else
1157 ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1158
1159 D_ASSOC("rx_chain=0x%X active=%d idle=%d\n",
1160 ctx->staging.rx_chain,
1161 active_rx_cnt, idle_rx_cnt);
1162
1163 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1164 active_rx_cnt < idle_rx_cnt);
1165}
1166
1167u8 il4965_toggle_tx_ant(struct il_priv *il, u8 ant, u8 valid)
1168{
1169 int i;
1170 u8 ind = ant;
1171
1172 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
1173 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
1174 if (valid & BIT(ind))
1175 return ind;
1176 }
1177 return ant;
1178}
1179
1180static const char *il4965_get_fh_string(int cmd)
1181{
1182 switch (cmd) {
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02001183 IL_CMD(FH49_RSCSR_CHNL0_STTS_WPTR_REG);
1184 IL_CMD(FH49_RSCSR_CHNL0_RBDCB_BASE_REG);
1185 IL_CMD(FH49_RSCSR_CHNL0_WPTR);
1186 IL_CMD(FH49_MEM_RCSR_CHNL0_CONFIG_REG);
1187 IL_CMD(FH49_MEM_RSSR_SHARED_CTRL_REG);
1188 IL_CMD(FH49_MEM_RSSR_RX_STATUS_REG);
1189 IL_CMD(FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
1190 IL_CMD(FH49_TSSR_TX_STATUS_REG);
1191 IL_CMD(FH49_TSSR_TX_ERROR_REG);
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001192 default:
1193 return "UNKNOWN";
1194 }
1195}
1196
1197int il4965_dump_fh(struct il_priv *il, char **buf, bool display)
1198{
1199 int i;
1200#ifdef CONFIG_IWLEGACY_DEBUG
1201 int pos = 0;
1202 size_t bufsz = 0;
1203#endif
1204 static const u32 fh_tbl[] = {
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02001205 FH49_RSCSR_CHNL0_STTS_WPTR_REG,
1206 FH49_RSCSR_CHNL0_RBDCB_BASE_REG,
1207 FH49_RSCSR_CHNL0_WPTR,
1208 FH49_MEM_RCSR_CHNL0_CONFIG_REG,
1209 FH49_MEM_RSSR_SHARED_CTRL_REG,
1210 FH49_MEM_RSSR_RX_STATUS_REG,
1211 FH49_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
1212 FH49_TSSR_TX_STATUS_REG,
1213 FH49_TSSR_TX_ERROR_REG
Stanislaw Gruszkafcb74582011-08-30 13:06:03 +02001214 };
1215#ifdef CONFIG_IWLEGACY_DEBUG
1216 if (display) {
1217 bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
1218 *buf = kmalloc(bufsz, GFP_KERNEL);
1219 if (!*buf)
1220 return -ENOMEM;
1221 pos += scnprintf(*buf + pos, bufsz - pos,
1222 "FH register values:\n");
1223 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1224 pos += scnprintf(*buf + pos, bufsz - pos,
1225 " %34s: 0X%08x\n",
1226 il4965_get_fh_string(fh_tbl[i]),
1227 il_rd(il, fh_tbl[i]));
1228 }
1229 return pos;
1230 }
1231#endif
1232 IL_ERR("FH register values:\n");
1233 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1234 IL_ERR(" %34s: 0X%08x\n",
1235 il4965_get_fh_string(fh_tbl[i]),
1236 il_rd(il, fh_tbl[i]));
1237 }
1238 return 0;
1239}
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001240void il4965_hdl_missed_beacon(struct il_priv *il,
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001241 struct il_rx_buf *rxb)
1242
1243{
1244 struct il_rx_pkt *pkt = rxb_addr(rxb);
1245 struct il_missed_beacon_notif *missed_beacon;
1246
1247 missed_beacon = &pkt->u.missed_beacon;
1248 if (le32_to_cpu(missed_beacon->consecutive_missed_beacons) >
1249 il->missed_beacon_threshold) {
1250 D_CALIB(
1251 "missed bcn cnsq %d totl %d rcd %d expctd %d\n",
1252 le32_to_cpu(missed_beacon->consecutive_missed_beacons),
1253 le32_to_cpu(missed_beacon->total_missed_becons),
1254 le32_to_cpu(missed_beacon->num_recvd_beacons),
1255 le32_to_cpu(missed_beacon->num_expected_beacons));
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001256 if (!test_bit(S_SCANNING, &il->status))
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001257 il4965_init_sensitivity(il);
1258 }
1259}
1260
1261/* Calculate noise level, based on measurements during network silence just
1262 * before arriving beacon. This measurement can be done only if we know
1263 * exactly when to expect beacons, therefore only when we're associated. */
1264static void il4965_rx_calc_noise(struct il_priv *il)
1265{
1266 struct stats_rx_non_phy *rx_info;
1267 int num_active_rx = 0;
1268 int total_silence = 0;
1269 int bcn_silence_a, bcn_silence_b, bcn_silence_c;
1270 int last_rx_noise;
1271
1272 rx_info = &(il->_4965.stats.rx.general);
1273 bcn_silence_a =
1274 le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
1275 bcn_silence_b =
1276 le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
1277 bcn_silence_c =
1278 le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
1279
1280 if (bcn_silence_a) {
1281 total_silence += bcn_silence_a;
1282 num_active_rx++;
1283 }
1284 if (bcn_silence_b) {
1285 total_silence += bcn_silence_b;
1286 num_active_rx++;
1287 }
1288 if (bcn_silence_c) {
1289 total_silence += bcn_silence_c;
1290 num_active_rx++;
1291 }
1292
1293 /* Average among active antennas */
1294 if (num_active_rx)
1295 last_rx_noise = (total_silence / num_active_rx) - 107;
1296 else
1297 last_rx_noise = IL_NOISE_MEAS_NOT_AVAILABLE;
1298
1299 D_CALIB("inband silence a %u, b %u, c %u, dBm %d\n",
1300 bcn_silence_a, bcn_silence_b, bcn_silence_c,
1301 last_rx_noise);
1302}
1303
1304#ifdef CONFIG_IWLEGACY_DEBUGFS
1305/*
1306 * based on the assumption of all stats counter are in DWORD
1307 * FIXME: This function is for debugging, do not deal with
1308 * the case of counters roll-over.
1309 */
1310static void il4965_accumulative_stats(struct il_priv *il,
1311 __le32 *stats)
1312{
1313 int i, size;
1314 __le32 *prev_stats;
1315 u32 *accum_stats;
1316 u32 *delta, *max_delta;
1317 struct stats_general_common *general, *accum_general;
1318 struct stats_tx *tx, *accum_tx;
1319
1320 prev_stats = (__le32 *)&il->_4965.stats;
1321 accum_stats = (u32 *)&il->_4965.accum_stats;
1322 size = sizeof(struct il_notif_stats);
1323 general = &il->_4965.stats.general.common;
1324 accum_general = &il->_4965.accum_stats.general.common;
1325 tx = &il->_4965.stats.tx;
1326 accum_tx = &il->_4965.accum_stats.tx;
1327 delta = (u32 *)&il->_4965.delta_stats;
1328 max_delta = (u32 *)&il->_4965.max_delta;
1329
1330 for (i = sizeof(__le32); i < size;
1331 i += sizeof(__le32), stats++, prev_stats++, delta++,
1332 max_delta++, accum_stats++) {
1333 if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) {
1334 *delta = (le32_to_cpu(*stats) -
1335 le32_to_cpu(*prev_stats));
1336 *accum_stats += *delta;
1337 if (*delta > *max_delta)
1338 *max_delta = *delta;
1339 }
1340 }
1341
1342 /* reset accumulative stats for "no-counter" type stats */
1343 accum_general->temperature = general->temperature;
1344 accum_general->ttl_timestamp = general->ttl_timestamp;
1345}
1346#endif
1347
1348#define REG_RECALIB_PERIOD (60)
1349
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001350void il4965_hdl_stats(struct il_priv *il,
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001351 struct il_rx_buf *rxb)
1352{
1353 int change;
1354 struct il_rx_pkt *pkt = rxb_addr(rxb);
1355
1356 D_RX(
1357 "Statistics notification received (%d vs %d).\n",
1358 (int)sizeof(struct il_notif_stats),
1359 le32_to_cpu(pkt->len_n_flags) &
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001360 IL_RX_FRAME_SIZE_MSK);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001361
1362 change = ((il->_4965.stats.general.common.temperature !=
1363 pkt->u.stats.general.common.temperature) ||
1364 ((il->_4965.stats.flag &
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001365 STATS_REPLY_FLG_HT40_MODE_MSK) !=
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001366 (pkt->u.stats.flag &
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001367 STATS_REPLY_FLG_HT40_MODE_MSK)));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001368#ifdef CONFIG_IWLEGACY_DEBUGFS
1369 il4965_accumulative_stats(il, (__le32 *)&pkt->u.stats);
1370#endif
1371
1372 /* TODO: reading some of stats is unneeded */
1373 memcpy(&il->_4965.stats, &pkt->u.stats,
1374 sizeof(il->_4965.stats));
1375
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001376 set_bit(S_STATS, &il->status);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001377
1378 /* Reschedule the stats timer to occur in
1379 * REG_RECALIB_PERIOD seconds to ensure we get a
1380 * thermal update even if the uCode doesn't give
1381 * us one */
1382 mod_timer(&il->stats_periodic, jiffies +
1383 msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
1384
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01001385 if (unlikely(!test_bit(S_SCANNING, &il->status)) &&
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001386 (pkt->hdr.cmd == N_STATS)) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001387 il4965_rx_calc_noise(il);
1388 queue_work(il->workqueue, &il->run_time_calib_work);
1389 }
1390 if (il->cfg->ops->lib->temp_ops.temperature && change)
1391 il->cfg->ops->lib->temp_ops.temperature(il);
1392}
1393
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001394void il4965_hdl_c_stats(struct il_priv *il,
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001395 struct il_rx_buf *rxb)
1396{
1397 struct il_rx_pkt *pkt = rxb_addr(rxb);
1398
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01001399 if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATS_CLEAR_MSK) {
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001400#ifdef CONFIG_IWLEGACY_DEBUGFS
1401 memset(&il->_4965.accum_stats, 0,
1402 sizeof(struct il_notif_stats));
1403 memset(&il->_4965.delta_stats, 0,
1404 sizeof(struct il_notif_stats));
1405 memset(&il->_4965.max_delta, 0,
1406 sizeof(struct il_notif_stats));
1407#endif
1408 D_RX("Statistics have been cleared\n");
1409 }
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001410 il4965_hdl_stats(il, rxb);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001411}
1412
Stanislaw Gruszka8f29b452011-11-15 12:57:25 +01001413
1414/*
1415 * mac80211 queues, ACs, hardware queues, FIFOs.
1416 *
1417 * Cf. http://wireless.kernel.org/en/developers/Documentation/mac80211/queues
1418 *
1419 * Mac80211 uses the following numbers, which we get as from it
1420 * by way of skb_get_queue_mapping(skb):
1421 *
1422 * VO 0
1423 * VI 1
1424 * BE 2
1425 * BK 3
1426 *
1427 *
1428 * Regular (not A-MPDU) frames are put into hardware queues corresponding
1429 * to the FIFOs, see comments in iwl-prph.h. Aggregated frames get their
1430 * own queue per aggregation session (RA/TID combination), such queues are
1431 * set up to map into FIFOs too, for which we need an AC->FIFO mapping. In
1432 * order to map frames to the right queue, we also need an AC->hw queue
1433 * mapping. This is implemented here.
1434 *
1435 * Due to the way hw queues are set up (by the hw specific modules like
Stanislaw Gruszkaaf038f42011-08-30 13:58:27 +02001436 * 4965.c), the AC->hw queue mapping is the identity
Stanislaw Gruszka8f29b452011-11-15 12:57:25 +01001437 * mapping.
1438 */
1439
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001440static const u8 tid_to_ac[] = {
1441 IEEE80211_AC_BE,
1442 IEEE80211_AC_BK,
1443 IEEE80211_AC_BK,
1444 IEEE80211_AC_BE,
1445 IEEE80211_AC_VI,
1446 IEEE80211_AC_VI,
1447 IEEE80211_AC_VO,
1448 IEEE80211_AC_VO
1449};
1450
1451static inline int il4965_get_ac_from_tid(u16 tid)
1452{
1453 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
1454 return tid_to_ac[tid];
1455
1456 /* no support for TIDs 8-15 yet */
1457 return -EINVAL;
1458}
1459
1460static inline int
1461il4965_get_fifo_from_tid(struct il_rxon_context *ctx, u16 tid)
1462{
1463 if (likely(tid < ARRAY_SIZE(tid_to_ac)))
1464 return ctx->ac_to_fifo[tid_to_ac[tid]];
1465
1466 /* no support for TIDs 8-15 yet */
1467 return -EINVAL;
1468}
1469
1470/*
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001471 * handle build C_TX command notification.
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001472 */
1473static void il4965_tx_cmd_build_basic(struct il_priv *il,
1474 struct sk_buff *skb,
1475 struct il_tx_cmd *tx_cmd,
1476 struct ieee80211_tx_info *info,
1477 struct ieee80211_hdr *hdr,
1478 u8 std_id)
1479{
1480 __le16 fc = hdr->frame_control;
1481 __le32 tx_flags = tx_cmd->tx_flags;
1482
1483 tx_cmd->stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
1484 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
1485 tx_flags |= TX_CMD_FLG_ACK_MSK;
1486 if (ieee80211_is_mgmt(fc))
1487 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1488 if (ieee80211_is_probe_resp(fc) &&
1489 !(le16_to_cpu(hdr->seq_ctrl) & 0xf))
1490 tx_flags |= TX_CMD_FLG_TSF_MSK;
1491 } else {
1492 tx_flags &= (~TX_CMD_FLG_ACK_MSK);
1493 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1494 }
1495
1496 if (ieee80211_is_back_req(fc))
1497 tx_flags |= TX_CMD_FLG_ACK_MSK | TX_CMD_FLG_IMM_BA_RSP_MASK;
1498
1499 tx_cmd->sta_id = std_id;
1500 if (ieee80211_has_morefrags(fc))
1501 tx_flags |= TX_CMD_FLG_MORE_FRAG_MSK;
1502
1503 if (ieee80211_is_data_qos(fc)) {
1504 u8 *qc = ieee80211_get_qos_ctl(hdr);
1505 tx_cmd->tid_tspec = qc[0] & 0xf;
1506 tx_flags &= ~TX_CMD_FLG_SEQ_CTL_MSK;
1507 } else {
1508 tx_flags |= TX_CMD_FLG_SEQ_CTL_MSK;
1509 }
1510
1511 il_tx_cmd_protection(il, info, fc, &tx_flags);
1512
1513 tx_flags &= ~(TX_CMD_FLG_ANT_SEL_MSK);
1514 if (ieee80211_is_mgmt(fc)) {
1515 if (ieee80211_is_assoc_req(fc) || ieee80211_is_reassoc_req(fc))
1516 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(3);
1517 else
1518 tx_cmd->timeout.pm_frame_timeout = cpu_to_le16(2);
1519 } else {
1520 tx_cmd->timeout.pm_frame_timeout = 0;
1521 }
1522
1523 tx_cmd->driver_txop = 0;
1524 tx_cmd->tx_flags = tx_flags;
1525 tx_cmd->next_frame_len = 0;
1526}
1527
1528#define RTS_DFAULT_RETRY_LIMIT 60
1529
1530static void il4965_tx_cmd_build_rate(struct il_priv *il,
1531 struct il_tx_cmd *tx_cmd,
1532 struct ieee80211_tx_info *info,
1533 __le16 fc)
1534{
1535 u32 rate_flags;
1536 int rate_idx;
1537 u8 rts_retry_limit;
1538 u8 data_retry_limit;
1539 u8 rate_plcp;
1540
1541 /* Set retry limit on DATA packets and Probe Responses*/
1542 if (ieee80211_is_probe_resp(fc))
1543 data_retry_limit = 3;
1544 else
1545 data_retry_limit = IL4965_DEFAULT_TX_RETRY;
1546 tx_cmd->data_retry_limit = data_retry_limit;
1547
1548 /* Set retry limit on RTS packets */
1549 rts_retry_limit = RTS_DFAULT_RETRY_LIMIT;
1550 if (data_retry_limit < rts_retry_limit)
1551 rts_retry_limit = data_retry_limit;
1552 tx_cmd->rts_retry_limit = rts_retry_limit;
1553
1554 /* DATA packets will use the uCode station table for rate/antenna
1555 * selection */
1556 if (ieee80211_is_data(fc)) {
1557 tx_cmd->initial_rate_idx = 0;
1558 tx_cmd->tx_flags |= TX_CMD_FLG_STA_RATE_MSK;
1559 return;
1560 }
1561
1562 /**
1563 * If the current TX rate stored in mac80211 has the MCS bit set, it's
1564 * not really a TX rate. Thus, we use the lowest supported rate for
1565 * this band. Also use the lowest supported rate if the stored rate
1566 * idx is invalid.
1567 */
1568 rate_idx = info->control.rates[0].idx;
1569 if ((info->control.rates[0].flags & IEEE80211_TX_RC_MCS) ||
1570 rate_idx < 0 || rate_idx > RATE_COUNT_LEGACY)
1571 rate_idx = rate_lowest_index(&il->bands[info->band],
1572 info->control.sta);
1573 /* For 5 GHZ band, remap mac80211 rate indices into driver indices */
1574 if (info->band == IEEE80211_BAND_5GHZ)
1575 rate_idx += IL_FIRST_OFDM_RATE;
1576 /* Get PLCP rate for tx_cmd->rate_n_flags */
1577 rate_plcp = il_rates[rate_idx].plcp;
1578 /* Zero out flags for this packet */
1579 rate_flags = 0;
1580
1581 /* Set CCK flag as needed */
1582 if (rate_idx >= IL_FIRST_CCK_RATE && rate_idx <= IL_LAST_CCK_RATE)
1583 rate_flags |= RATE_MCS_CCK_MSK;
1584
1585 /* Set up antennas */
1586 il->mgmt_tx_ant = il4965_toggle_tx_ant(il, il->mgmt_tx_ant,
1587 il->hw_params.valid_tx_ant);
1588
1589 rate_flags |= il4965_ant_idx_to_flags(il->mgmt_tx_ant);
1590
1591 /* Set the rate in the TX cmd */
1592 tx_cmd->rate_n_flags = il4965_hw_set_rate_n_flags(rate_plcp, rate_flags);
1593}
1594
1595static void il4965_tx_cmd_build_hwcrypto(struct il_priv *il,
1596 struct ieee80211_tx_info *info,
1597 struct il_tx_cmd *tx_cmd,
1598 struct sk_buff *skb_frag,
1599 int sta_id)
1600{
1601 struct ieee80211_key_conf *keyconf = info->control.hw_key;
1602
1603 switch (keyconf->cipher) {
1604 case WLAN_CIPHER_SUITE_CCMP:
1605 tx_cmd->sec_ctl = TX_CMD_SEC_CCM;
1606 memcpy(tx_cmd->key, keyconf->key, keyconf->keylen);
1607 if (info->flags & IEEE80211_TX_CTL_AMPDU)
1608 tx_cmd->tx_flags |= TX_CMD_FLG_AGG_CCMP_MSK;
1609 D_TX("tx_cmd with AES hwcrypto\n");
1610 break;
1611
1612 case WLAN_CIPHER_SUITE_TKIP:
1613 tx_cmd->sec_ctl = TX_CMD_SEC_TKIP;
1614 ieee80211_get_tkip_p2k(keyconf, skb_frag, tx_cmd->key);
1615 D_TX("tx_cmd with tkip hwcrypto\n");
1616 break;
1617
1618 case WLAN_CIPHER_SUITE_WEP104:
1619 tx_cmd->sec_ctl |= TX_CMD_SEC_KEY128;
1620 /* fall through */
1621 case WLAN_CIPHER_SUITE_WEP40:
1622 tx_cmd->sec_ctl |= (TX_CMD_SEC_WEP |
1623 (keyconf->keyidx & TX_CMD_SEC_MSK) << TX_CMD_SEC_SHIFT);
1624
1625 memcpy(&tx_cmd->key[3], keyconf->key, keyconf->keylen);
1626
1627 D_TX("Configuring packet for WEP encryption "
1628 "with key %d\n", keyconf->keyidx);
1629 break;
1630
1631 default:
1632 IL_ERR("Unknown encode cipher %x\n", keyconf->cipher);
1633 break;
1634 }
1635}
1636
1637/*
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001638 * start C_TX command process
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001639 */
1640int il4965_tx_skb(struct il_priv *il, struct sk_buff *skb)
1641{
1642 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1643 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1644 struct ieee80211_sta *sta = info->control.sta;
1645 struct il_station_priv *sta_priv = NULL;
1646 struct il_tx_queue *txq;
1647 struct il_queue *q;
1648 struct il_device_cmd *out_cmd;
1649 struct il_cmd_meta *out_meta;
1650 struct il_tx_cmd *tx_cmd;
1651 struct il_rxon_context *ctx = &il->ctx;
1652 int txq_id;
1653 dma_addr_t phys_addr;
1654 dma_addr_t txcmd_phys;
1655 dma_addr_t scratch_phys;
1656 u16 len, firstlen, secondlen;
1657 u16 seq_number = 0;
1658 __le16 fc;
1659 u8 hdr_len;
1660 u8 sta_id;
1661 u8 wait_write_ptr = 0;
1662 u8 tid = 0;
1663 u8 *qc = NULL;
1664 unsigned long flags;
1665 bool is_agg = false;
1666
1667 if (info->control.vif)
1668 ctx = il_rxon_ctx_from_vif(info->control.vif);
1669
1670 spin_lock_irqsave(&il->lock, flags);
1671 if (il_is_rfkill(il)) {
1672 D_DROP("Dropping - RF KILL\n");
1673 goto drop_unlock;
1674 }
1675
1676 fc = hdr->frame_control;
1677
1678#ifdef CONFIG_IWLEGACY_DEBUG
1679 if (ieee80211_is_auth(fc))
1680 D_TX("Sending AUTH frame\n");
1681 else if (ieee80211_is_assoc_req(fc))
1682 D_TX("Sending ASSOC frame\n");
1683 else if (ieee80211_is_reassoc_req(fc))
1684 D_TX("Sending REASSOC frame\n");
1685#endif
1686
1687 hdr_len = ieee80211_hdrlen(fc);
1688
1689 /* For management frames use broadcast id to do not break aggregation */
1690 if (!ieee80211_is_data(fc))
1691 sta_id = ctx->bcast_sta_id;
1692 else {
1693 /* Find idx into station table for destination station */
1694 sta_id = il_sta_id_or_broadcast(il, ctx, info->control.sta);
1695
1696 if (sta_id == IL_INVALID_STATION) {
1697 D_DROP("Dropping - INVALID STATION: %pM\n",
1698 hdr->addr1);
1699 goto drop_unlock;
1700 }
1701 }
1702
1703 D_TX("station Id %d\n", sta_id);
1704
1705 if (sta)
1706 sta_priv = (void *)sta->drv_priv;
1707
1708 if (sta_priv && sta_priv->asleep &&
1709 (info->flags & IEEE80211_TX_CTL_POLL_RESPONSE)) {
1710 /*
1711 * This sends an asynchronous command to the device,
1712 * but we can rely on it being processed before the
1713 * next frame is processed -- and the next frame to
1714 * this station is the one that will consume this
1715 * counter.
1716 * For now set the counter to just 1 since we do not
1717 * support uAPSD yet.
1718 */
1719 il4965_sta_modify_sleep_tx_count(il, sta_id, 1);
1720 }
1721
1722 /*
1723 * Send this frame after DTIM -- there's a special queue
1724 * reserved for this for contexts that support AP mode.
1725 */
1726 if (info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) {
1727 txq_id = ctx->mcast_queue;
1728 /*
1729 * The microcode will clear the more data
1730 * bit in the last frame it transmits.
1731 */
1732 hdr->frame_control |=
1733 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1734 } else
1735 txq_id = ctx->ac_to_queue[skb_get_queue_mapping(skb)];
1736
1737 /* irqs already disabled/saved above when locking il->lock */
1738 spin_lock(&il->sta_lock);
1739
1740 if (ieee80211_is_data_qos(fc)) {
1741 qc = ieee80211_get_qos_ctl(hdr);
1742 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
1743 if (WARN_ON_ONCE(tid >= MAX_TID_COUNT)) {
1744 spin_unlock(&il->sta_lock);
1745 goto drop_unlock;
1746 }
1747 seq_number = il->stations[sta_id].tid[tid].seq_number;
1748 seq_number &= IEEE80211_SCTL_SEQ;
1749 hdr->seq_ctrl = hdr->seq_ctrl &
1750 cpu_to_le16(IEEE80211_SCTL_FRAG);
1751 hdr->seq_ctrl |= cpu_to_le16(seq_number);
1752 seq_number += 0x10;
1753 /* aggregation is on for this <sta,tid> */
1754 if (info->flags & IEEE80211_TX_CTL_AMPDU &&
1755 il->stations[sta_id].tid[tid].agg.state == IL_AGG_ON) {
1756 txq_id = il->stations[sta_id].tid[tid].agg.txq_id;
1757 is_agg = true;
1758 }
1759 }
1760
1761 txq = &il->txq[txq_id];
1762 q = &txq->q;
1763
1764 if (unlikely(il_queue_space(q) < q->high_mark)) {
1765 spin_unlock(&il->sta_lock);
1766 goto drop_unlock;
1767 }
1768
1769 if (ieee80211_is_data_qos(fc)) {
1770 il->stations[sta_id].tid[tid].tfds_in_queue++;
1771 if (!ieee80211_has_morefrags(fc))
1772 il->stations[sta_id].tid[tid].seq_number = seq_number;
1773 }
1774
1775 spin_unlock(&il->sta_lock);
1776
1777 /* Set up driver data for this TFD */
1778 memset(&(txq->txb[q->write_ptr]), 0, sizeof(struct il_tx_info));
1779 txq->txb[q->write_ptr].skb = skb;
1780 txq->txb[q->write_ptr].ctx = ctx;
1781
1782 /* Set up first empty entry in queue's array of Tx/cmd buffers */
1783 out_cmd = txq->cmd[q->write_ptr];
1784 out_meta = &txq->meta[q->write_ptr];
1785 tx_cmd = &out_cmd->cmd.tx;
1786 memset(&out_cmd->hdr, 0, sizeof(out_cmd->hdr));
1787 memset(tx_cmd, 0, sizeof(struct il_tx_cmd));
1788
1789 /*
1790 * Set up the Tx-command (not MAC!) header.
1791 * Store the chosen Tx queue and TFD idx within the sequence field;
1792 * after Tx, uCode's Tx response will return this value so driver can
1793 * locate the frame within the tx queue and do post-tx processing.
1794 */
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02001795 out_cmd->hdr.cmd = C_TX;
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01001796 out_cmd->hdr.sequence = cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |
1797 IDX_TO_SEQ(q->write_ptr)));
1798
1799 /* Copy MAC header from skb into command buffer */
1800 memcpy(tx_cmd->hdr, hdr, hdr_len);
1801
1802
1803 /* Total # bytes to be transmitted */
1804 len = (u16)skb->len;
1805 tx_cmd->len = cpu_to_le16(len);
1806
1807 if (info->control.hw_key)
1808 il4965_tx_cmd_build_hwcrypto(il, info, tx_cmd, skb, sta_id);
1809
1810 /* TODO need this for burst mode later on */
1811 il4965_tx_cmd_build_basic(il, skb, tx_cmd, info, hdr, sta_id);
1812 il_dbg_log_tx_data_frame(il, len, hdr);
1813
1814 il4965_tx_cmd_build_rate(il, tx_cmd, info, fc);
1815
1816 il_update_stats(il, true, fc, len);
1817 /*
1818 * Use the first empty entry in this queue's command buffer array
1819 * to contain the Tx command and MAC header concatenated together
1820 * (payload data will be in another buffer).
1821 * Size of this varies, due to varying MAC header length.
1822 * If end is not dword aligned, we'll have 2 extra bytes at the end
1823 * of the MAC header (device reads on dword boundaries).
1824 * We'll tell device about this padding later.
1825 */
1826 len = sizeof(struct il_tx_cmd) +
1827 sizeof(struct il_cmd_header) + hdr_len;
1828 firstlen = (len + 3) & ~3;
1829
1830 /* Tell NIC about any 2-byte padding after MAC header */
1831 if (firstlen != len)
1832 tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK;
1833
1834 /* Physical address of this Tx command's header (not MAC header!),
1835 * within command buffer array. */
1836 txcmd_phys = pci_map_single(il->pci_dev,
1837 &out_cmd->hdr, firstlen,
1838 PCI_DMA_BIDIRECTIONAL);
1839 dma_unmap_addr_set(out_meta, mapping, txcmd_phys);
1840 dma_unmap_len_set(out_meta, len, firstlen);
1841 /* Add buffer containing Tx command and MAC(!) header to TFD's
1842 * first entry */
1843 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq,
1844 txcmd_phys, firstlen, 1, 0);
1845
1846 if (!ieee80211_has_morefrags(hdr->frame_control)) {
1847 txq->need_update = 1;
1848 } else {
1849 wait_write_ptr = 1;
1850 txq->need_update = 0;
1851 }
1852
1853 /* Set up TFD's 2nd entry to point directly to remainder of skb,
1854 * if any (802.11 null frames have no payload). */
1855 secondlen = skb->len - hdr_len;
1856 if (secondlen > 0) {
1857 phys_addr = pci_map_single(il->pci_dev, skb->data + hdr_len,
1858 secondlen, PCI_DMA_TODEVICE);
1859 il->cfg->ops->lib->txq_attach_buf_to_tfd(il, txq,
1860 phys_addr, secondlen,
1861 0, 0);
1862 }
1863
1864 scratch_phys = txcmd_phys + sizeof(struct il_cmd_header) +
1865 offsetof(struct il_tx_cmd, scratch);
1866
1867 /* take back ownership of DMA buffer to enable update */
1868 pci_dma_sync_single_for_cpu(il->pci_dev, txcmd_phys,
1869 firstlen, PCI_DMA_BIDIRECTIONAL);
1870 tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys);
1871 tx_cmd->dram_msb_ptr = il_get_dma_hi_addr(scratch_phys);
1872
1873 D_TX("sequence nr = 0X%x\n",
1874 le16_to_cpu(out_cmd->hdr.sequence));
1875 D_TX("tx_flags = 0X%x\n", le32_to_cpu(tx_cmd->tx_flags));
1876 il_print_hex_dump(il, IL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd));
1877 il_print_hex_dump(il, IL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len);
1878
1879 /* Set up entry for this TFD in Tx byte-count array */
1880 if (info->flags & IEEE80211_TX_CTL_AMPDU)
1881 il->cfg->ops->lib->txq_update_byte_cnt_tbl(il, txq,
1882 le16_to_cpu(tx_cmd->len));
1883
1884 pci_dma_sync_single_for_device(il->pci_dev, txcmd_phys,
1885 firstlen, PCI_DMA_BIDIRECTIONAL);
1886
1887 /* Tell device the write idx *just past* this latest filled TFD */
1888 q->write_ptr = il_queue_inc_wrap(q->write_ptr, q->n_bd);
1889 il_txq_update_write_ptr(il, txq);
1890 spin_unlock_irqrestore(&il->lock, flags);
1891
1892 /*
1893 * At this point the frame is "transmitted" successfully
1894 * and we will get a TX status notification eventually,
1895 * regardless of the value of ret. "ret" only indicates
1896 * whether or not we should update the write pointer.
1897 */
1898
1899 /*
1900 * Avoid atomic ops if it isn't an associated client.
1901 * Also, if this is a packet for aggregation, don't
1902 * increase the counter because the ucode will stop
1903 * aggregation queues when their respective station
1904 * goes to sleep.
1905 */
1906 if (sta_priv && sta_priv->client && !is_agg)
1907 atomic_inc(&sta_priv->pending_frames);
1908
1909 if (il_queue_space(q) < q->high_mark && il->mac80211_registered) {
1910 if (wait_write_ptr) {
1911 spin_lock_irqsave(&il->lock, flags);
1912 txq->need_update = 1;
1913 il_txq_update_write_ptr(il, txq);
1914 spin_unlock_irqrestore(&il->lock, flags);
1915 } else {
1916 il_stop_queue(il, txq);
1917 }
1918 }
1919
1920 return 0;
1921
1922drop_unlock:
1923 spin_unlock_irqrestore(&il->lock, flags);
1924 return -1;
1925}
1926
1927static inline int il4965_alloc_dma_ptr(struct il_priv *il,
1928 struct il_dma_ptr *ptr, size_t size)
1929{
1930 ptr->addr = dma_alloc_coherent(&il->pci_dev->dev, size, &ptr->dma,
1931 GFP_KERNEL);
1932 if (!ptr->addr)
1933 return -ENOMEM;
1934 ptr->size = size;
1935 return 0;
1936}
1937
1938static inline void il4965_free_dma_ptr(struct il_priv *il,
1939 struct il_dma_ptr *ptr)
1940{
1941 if (unlikely(!ptr->addr))
1942 return;
1943
1944 dma_free_coherent(&il->pci_dev->dev, ptr->size, ptr->addr, ptr->dma);
1945 memset(ptr, 0, sizeof(*ptr));
1946}
1947
1948/**
1949 * il4965_hw_txq_ctx_free - Free TXQ Context
1950 *
1951 * Destroy all TX DMA queues and structures
1952 */
1953void il4965_hw_txq_ctx_free(struct il_priv *il)
1954{
1955 int txq_id;
1956
1957 /* Tx queues */
1958 if (il->txq) {
1959 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
1960 if (txq_id == il->cmd_queue)
1961 il_cmd_queue_free(il);
1962 else
1963 il_tx_queue_free(il, txq_id);
1964 }
1965 il4965_free_dma_ptr(il, &il->kw);
1966
1967 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
1968
1969 /* free tx queue structure */
1970 il_txq_mem(il);
1971}
1972
1973/**
1974 * il4965_txq_ctx_alloc - allocate TX queue context
1975 * Allocate all Tx DMA structures and initialize them
1976 *
1977 * @param il
1978 * @return error code
1979 */
1980int il4965_txq_ctx_alloc(struct il_priv *il)
1981{
1982 int ret;
1983 int txq_id, slots_num;
1984 unsigned long flags;
1985
1986 /* Free all tx/cmd queues and keep-warm buffer */
1987 il4965_hw_txq_ctx_free(il);
1988
1989 ret = il4965_alloc_dma_ptr(il, &il->scd_bc_tbls,
1990 il->hw_params.scd_bc_tbls_size);
1991 if (ret) {
1992 IL_ERR("Scheduler BC Table allocation failed\n");
1993 goto error_bc_tbls;
1994 }
1995 /* Alloc keep-warm buffer */
1996 ret = il4965_alloc_dma_ptr(il, &il->kw, IL_KW_SIZE);
1997 if (ret) {
1998 IL_ERR("Keep Warm allocation failed\n");
1999 goto error_kw;
2000 }
2001
2002 /* allocate tx queue structure */
2003 ret = il_alloc_txq_mem(il);
2004 if (ret)
2005 goto error;
2006
2007 spin_lock_irqsave(&il->lock, flags);
2008
2009 /* Turn off all Tx DMA fifos */
2010 il4965_txq_set_sched(il, 0);
2011
2012 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002013 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002014
2015 spin_unlock_irqrestore(&il->lock, flags);
2016
2017 /* Alloc and init all Tx queues, including the command queue (#4/#9) */
2018 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
2019 slots_num = (txq_id == il->cmd_queue) ?
2020 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2021 ret = il_tx_queue_init(il,
2022 &il->txq[txq_id], slots_num,
2023 txq_id);
2024 if (ret) {
2025 IL_ERR("Tx %d queue init failed\n", txq_id);
2026 goto error;
2027 }
2028 }
2029
2030 return ret;
2031
2032 error:
2033 il4965_hw_txq_ctx_free(il);
2034 il4965_free_dma_ptr(il, &il->kw);
2035 error_kw:
2036 il4965_free_dma_ptr(il, &il->scd_bc_tbls);
2037 error_bc_tbls:
2038 return ret;
2039}
2040
2041void il4965_txq_ctx_reset(struct il_priv *il)
2042{
2043 int txq_id, slots_num;
2044 unsigned long flags;
2045
2046 spin_lock_irqsave(&il->lock, flags);
2047
2048 /* Turn off all Tx DMA fifos */
2049 il4965_txq_set_sched(il, 0);
2050
2051 /* Tell NIC where to find the "keep warm" buffer */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002052 il_wr(il, FH49_KW_MEM_ADDR_REG, il->kw.dma >> 4);
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002053
2054 spin_unlock_irqrestore(&il->lock, flags);
2055
2056 /* Alloc and init all Tx queues, including the command queue (#4) */
2057 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++) {
2058 slots_num = txq_id == il->cmd_queue ?
2059 TFD_CMD_SLOTS : TFD_TX_CMD_SLOTS;
2060 il_tx_queue_reset(il, &il->txq[txq_id],
2061 slots_num, txq_id);
2062 }
2063}
2064
2065/**
2066 * il4965_txq_ctx_stop - Stop all Tx DMA channels
2067 */
2068void il4965_txq_ctx_stop(struct il_priv *il)
2069{
2070 int ch, txq_id;
2071 unsigned long flags;
2072
2073 /* Turn off all Tx DMA fifos */
2074 spin_lock_irqsave(&il->lock, flags);
2075
2076 il4965_txq_set_sched(il, 0);
2077
2078 /* Stop each Tx DMA channel, and wait for it to be idle */
2079 for (ch = 0; ch < il->hw_params.dma_chnl_num; ch++) {
2080 il_wr(il,
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002081 FH49_TCSR_CHNL_TX_CONFIG_REG(ch), 0x0);
2082 if (il_poll_bit(il, FH49_TSSR_TX_STATUS_REG,
2083 FH49_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE(ch),
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002084 1000))
2085 IL_ERR("Failing on timeout while stopping"
2086 " DMA channel %d [0x%08x]", ch,
2087 il_rd(il,
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002088 FH49_TSSR_TX_STATUS_REG));
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002089 }
2090 spin_unlock_irqrestore(&il->lock, flags);
2091
2092 if (!il->txq)
2093 return;
2094
2095 /* Unmap DMA from host system and free skb's */
2096 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2097 if (txq_id == il->cmd_queue)
2098 il_cmd_queue_unmap(il);
2099 else
2100 il_tx_queue_unmap(il, txq_id);
2101}
2102
2103/*
2104 * Find first available (lowest unused) Tx Queue, mark it "active".
2105 * Called only when finding queue for aggregation.
2106 * Should never return anything < 7, because they should already
2107 * be in use as EDCA AC (0-3), Command (4), reserved (5, 6)
2108 */
2109static int il4965_txq_ctx_activate_free(struct il_priv *il)
2110{
2111 int txq_id;
2112
2113 for (txq_id = 0; txq_id < il->hw_params.max_txq_num; txq_id++)
2114 if (!test_and_set_bit(txq_id, &il->txq_ctx_active_msk))
2115 return txq_id;
2116 return -1;
2117}
2118
2119/**
2120 * il4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
2121 */
2122static void il4965_tx_queue_stop_scheduler(struct il_priv *il,
2123 u16 txq_id)
2124{
2125 /* Simply stop the queue, but don't change any configuration;
2126 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
2127 il_wr_prph(il,
2128 IL49_SCD_QUEUE_STATUS_BITS(txq_id),
2129 (0 << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
2130 (1 << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
2131}
2132
2133/**
2134 * il4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
2135 */
2136static int il4965_tx_queue_set_q2ratid(struct il_priv *il, u16 ra_tid,
2137 u16 txq_id)
2138{
2139 u32 tbl_dw_addr;
2140 u32 tbl_dw;
2141 u16 scd_q2ratid;
2142
2143 scd_q2ratid = ra_tid & IL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
2144
2145 tbl_dw_addr = il->scd_base_addr +
2146 IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
2147
2148 tbl_dw = il_read_targ_mem(il, tbl_dw_addr);
2149
2150 if (txq_id & 0x1)
2151 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
2152 else
2153 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
2154
2155 il_write_targ_mem(il, tbl_dw_addr, tbl_dw);
2156
2157 return 0;
2158}
2159
2160/**
2161 * il4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
2162 *
2163 * NOTE: txq_id must be greater than IL49_FIRST_AMPDU_QUEUE,
2164 * i.e. it must be one of the higher queues used for aggregation
2165 */
2166static int il4965_txq_agg_enable(struct il_priv *il, int txq_id,
2167 int tx_fifo, int sta_id, int tid, u16 ssn_idx)
2168{
2169 unsigned long flags;
2170 u16 ra_tid;
2171 int ret;
2172
2173 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2174 (IL49_FIRST_AMPDU_QUEUE +
2175 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2176 IL_WARN(
2177 "queue number out of range: %d, must be %d to %d\n",
2178 txq_id, IL49_FIRST_AMPDU_QUEUE,
2179 IL49_FIRST_AMPDU_QUEUE +
2180 il->cfg->base_params->num_of_ampdu_queues - 1);
2181 return -EINVAL;
2182 }
2183
2184 ra_tid = BUILD_RAxTID(sta_id, tid);
2185
2186 /* Modify device's station table to Tx this TID */
2187 ret = il4965_sta_tx_modify_enable_tid(il, sta_id, tid);
2188 if (ret)
2189 return ret;
2190
2191 spin_lock_irqsave(&il->lock, flags);
2192
2193 /* Stop this Tx queue before configuring it */
2194 il4965_tx_queue_stop_scheduler(il, txq_id);
2195
2196 /* Map receiver-address / traffic-ID to this queue */
2197 il4965_tx_queue_set_q2ratid(il, ra_tid, txq_id);
2198
2199 /* Set this queue as a chain-building queue */
2200 il_set_bits_prph(il, IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2201
2202 /* Place first TFD at idx corresponding to start sequence number.
2203 * Assumes that ssn_idx is valid (!= 0xFFF) */
2204 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2205 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2206 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2207
2208 /* Set up Tx win size and frame limit for this queue */
2209 il_write_targ_mem(il,
2210 il->scd_base_addr + IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
2211 (SCD_WIN_SIZE << IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
2212 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
2213
2214 il_write_targ_mem(il, il->scd_base_addr +
2215 IL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
2216 (SCD_FRAME_LIMIT << IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS)
2217 & IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
2218
2219 il_set_bits_prph(il, IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2220
2221 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
2222 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 1);
2223
2224 spin_unlock_irqrestore(&il->lock, flags);
2225
2226 return 0;
2227}
2228
2229
2230int il4965_tx_agg_start(struct il_priv *il, struct ieee80211_vif *vif,
2231 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
2232{
2233 int sta_id;
2234 int tx_fifo;
2235 int txq_id;
2236 int ret;
2237 unsigned long flags;
2238 struct il_tid_data *tid_data;
2239
2240 tx_fifo = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2241 if (unlikely(tx_fifo < 0))
2242 return tx_fifo;
2243
2244 IL_WARN("%s on ra = %pM tid = %d\n",
2245 __func__, sta->addr, tid);
2246
2247 sta_id = il_sta_id(sta);
2248 if (sta_id == IL_INVALID_STATION) {
2249 IL_ERR("Start AGG on invalid station\n");
2250 return -ENXIO;
2251 }
2252 if (unlikely(tid >= MAX_TID_COUNT))
2253 return -EINVAL;
2254
2255 if (il->stations[sta_id].tid[tid].agg.state != IL_AGG_OFF) {
2256 IL_ERR("Start AGG when state is not IL_AGG_OFF !\n");
2257 return -ENXIO;
2258 }
2259
2260 txq_id = il4965_txq_ctx_activate_free(il);
2261 if (txq_id == -1) {
2262 IL_ERR("No free aggregation queue available\n");
2263 return -ENXIO;
2264 }
2265
2266 spin_lock_irqsave(&il->sta_lock, flags);
2267 tid_data = &il->stations[sta_id].tid[tid];
2268 *ssn = SEQ_TO_SN(tid_data->seq_number);
2269 tid_data->agg.txq_id = txq_id;
2270 il_set_swq_id(&il->txq[txq_id],
2271 il4965_get_ac_from_tid(tid), txq_id);
2272 spin_unlock_irqrestore(&il->sta_lock, flags);
2273
2274 ret = il4965_txq_agg_enable(il, txq_id, tx_fifo,
2275 sta_id, tid, *ssn);
2276 if (ret)
2277 return ret;
2278
2279 spin_lock_irqsave(&il->sta_lock, flags);
2280 tid_data = &il->stations[sta_id].tid[tid];
2281 if (tid_data->tfds_in_queue == 0) {
2282 D_HT("HW queue is empty\n");
2283 tid_data->agg.state = IL_AGG_ON;
2284 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2285 } else {
2286 D_HT(
2287 "HW queue is NOT empty: %d packets in HW queue\n",
2288 tid_data->tfds_in_queue);
2289 tid_data->agg.state = IL_EMPTYING_HW_QUEUE_ADDBA;
2290 }
2291 spin_unlock_irqrestore(&il->sta_lock, flags);
2292 return ret;
2293}
2294
2295/**
2296 * txq_id must be greater than IL49_FIRST_AMPDU_QUEUE
2297 * il->lock must be held by the caller
2298 */
2299static int il4965_txq_agg_disable(struct il_priv *il, u16 txq_id,
2300 u16 ssn_idx, u8 tx_fifo)
2301{
2302 if ((IL49_FIRST_AMPDU_QUEUE > txq_id) ||
2303 (IL49_FIRST_AMPDU_QUEUE +
2304 il->cfg->base_params->num_of_ampdu_queues <= txq_id)) {
2305 IL_WARN(
2306 "queue number out of range: %d, must be %d to %d\n",
2307 txq_id, IL49_FIRST_AMPDU_QUEUE,
2308 IL49_FIRST_AMPDU_QUEUE +
2309 il->cfg->base_params->num_of_ampdu_queues - 1);
2310 return -EINVAL;
2311 }
2312
2313 il4965_tx_queue_stop_scheduler(il, txq_id);
2314
2315 il_clear_bits_prph(il,
2316 IL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
2317
2318 il->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
2319 il->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
2320 /* supposes that ssn_idx is valid (!= 0xFFF) */
2321 il4965_set_wr_ptrs(il, txq_id, ssn_idx);
2322
2323 il_clear_bits_prph(il,
2324 IL49_SCD_INTERRUPT_MASK, (1 << txq_id));
2325 il_txq_ctx_deactivate(il, txq_id);
2326 il4965_tx_queue_set_status(il, &il->txq[txq_id], tx_fifo, 0);
2327
2328 return 0;
2329}
2330
2331int il4965_tx_agg_stop(struct il_priv *il, struct ieee80211_vif *vif,
2332 struct ieee80211_sta *sta, u16 tid)
2333{
2334 int tx_fifo_id, txq_id, sta_id, ssn;
2335 struct il_tid_data *tid_data;
2336 int write_ptr, read_ptr;
2337 unsigned long flags;
2338
2339 tx_fifo_id = il4965_get_fifo_from_tid(il_rxon_ctx_from_vif(vif), tid);
2340 if (unlikely(tx_fifo_id < 0))
2341 return tx_fifo_id;
2342
2343 sta_id = il_sta_id(sta);
2344
2345 if (sta_id == IL_INVALID_STATION) {
2346 IL_ERR("Invalid station for AGG tid %d\n", tid);
2347 return -ENXIO;
2348 }
2349
2350 spin_lock_irqsave(&il->sta_lock, flags);
2351
2352 tid_data = &il->stations[sta_id].tid[tid];
2353 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
2354 txq_id = tid_data->agg.txq_id;
2355
2356 switch (il->stations[sta_id].tid[tid].agg.state) {
2357 case IL_EMPTYING_HW_QUEUE_ADDBA:
2358 /*
2359 * This can happen if the peer stops aggregation
2360 * again before we've had a chance to drain the
2361 * queue we selected previously, i.e. before the
2362 * session was really started completely.
2363 */
2364 D_HT("AGG stop before setup done\n");
2365 goto turn_off;
2366 case IL_AGG_ON:
2367 break;
2368 default:
2369 IL_WARN("Stopping AGG while state not ON or starting\n");
2370 }
2371
2372 write_ptr = il->txq[txq_id].q.write_ptr;
2373 read_ptr = il->txq[txq_id].q.read_ptr;
2374
2375 /* The queue is not empty */
2376 if (write_ptr != read_ptr) {
2377 D_HT("Stopping a non empty AGG HW QUEUE\n");
2378 il->stations[sta_id].tid[tid].agg.state =
2379 IL_EMPTYING_HW_QUEUE_DELBA;
2380 spin_unlock_irqrestore(&il->sta_lock, flags);
2381 return 0;
2382 }
2383
2384 D_HT("HW queue is empty\n");
2385 turn_off:
2386 il->stations[sta_id].tid[tid].agg.state = IL_AGG_OFF;
2387
2388 /* do not restore/save irqs */
2389 spin_unlock(&il->sta_lock);
2390 spin_lock(&il->lock);
2391
2392 /*
2393 * the only reason this call can fail is queue number out of range,
2394 * which can happen if uCode is reloaded and all the station
2395 * information are lost. if it is outside the range, there is no need
2396 * to deactivate the uCode queue, just return "success" to allow
2397 * mac80211 to clean up it own data.
2398 */
2399 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo_id);
2400 spin_unlock_irqrestore(&il->lock, flags);
2401
2402 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2403
2404 return 0;
2405}
2406
2407int il4965_txq_check_empty(struct il_priv *il,
2408 int sta_id, u8 tid, int txq_id)
2409{
2410 struct il_queue *q = &il->txq[txq_id].q;
2411 u8 *addr = il->stations[sta_id].sta.sta.addr;
2412 struct il_tid_data *tid_data = &il->stations[sta_id].tid[tid];
2413 struct il_rxon_context *ctx;
2414
2415 ctx = &il->ctx;
2416
2417 lockdep_assert_held(&il->sta_lock);
2418
2419 switch (il->stations[sta_id].tid[tid].agg.state) {
2420 case IL_EMPTYING_HW_QUEUE_DELBA:
2421 /* We are reclaiming the last packet of the */
2422 /* aggregated HW queue */
2423 if (txq_id == tid_data->agg.txq_id &&
2424 q->read_ptr == q->write_ptr) {
2425 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
2426 int tx_fifo = il4965_get_fifo_from_tid(ctx, tid);
2427 D_HT(
2428 "HW queue empty: continue DELBA flow\n");
2429 il4965_txq_agg_disable(il, txq_id, ssn, tx_fifo);
2430 tid_data->agg.state = IL_AGG_OFF;
2431 ieee80211_stop_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2432 }
2433 break;
2434 case IL_EMPTYING_HW_QUEUE_ADDBA:
2435 /* We are reclaiming the last packet of the queue */
2436 if (tid_data->tfds_in_queue == 0) {
2437 D_HT(
2438 "HW queue empty: continue ADDBA flow\n");
2439 tid_data->agg.state = IL_AGG_ON;
2440 ieee80211_start_tx_ba_cb_irqsafe(ctx->vif, addr, tid);
2441 }
2442 break;
2443 }
2444
2445 return 0;
2446}
2447
2448static void il4965_non_agg_tx_status(struct il_priv *il,
2449 struct il_rxon_context *ctx,
2450 const u8 *addr1)
2451{
2452 struct ieee80211_sta *sta;
2453 struct il_station_priv *sta_priv;
2454
2455 rcu_read_lock();
2456 sta = ieee80211_find_sta(ctx->vif, addr1);
2457 if (sta) {
2458 sta_priv = (void *)sta->drv_priv;
2459 /* avoid atomic ops if this isn't a client */
2460 if (sta_priv->client &&
2461 atomic_dec_return(&sta_priv->pending_frames) == 0)
2462 ieee80211_sta_block_awake(il->hw, sta, false);
2463 }
2464 rcu_read_unlock();
2465}
2466
2467static void
2468il4965_tx_status(struct il_priv *il, struct il_tx_info *tx_info,
2469 bool is_agg)
2470{
2471 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx_info->skb->data;
2472
2473 if (!is_agg)
2474 il4965_non_agg_tx_status(il, tx_info->ctx, hdr->addr1);
2475
2476 ieee80211_tx_status_irqsafe(il->hw, tx_info->skb);
2477}
2478
2479int il4965_tx_queue_reclaim(struct il_priv *il, int txq_id, int idx)
2480{
2481 struct il_tx_queue *txq = &il->txq[txq_id];
2482 struct il_queue *q = &txq->q;
2483 struct il_tx_info *tx_info;
2484 int nfreed = 0;
2485 struct ieee80211_hdr *hdr;
2486
2487 if (idx >= q->n_bd || il_queue_used(q, idx) == 0) {
2488 IL_ERR("Read idx for DMA queue txq id (%d), idx %d, "
2489 "is out of range [0-%d] %d %d.\n", txq_id,
2490 idx, q->n_bd, q->write_ptr, q->read_ptr);
2491 return 0;
2492 }
2493
2494 for (idx = il_queue_inc_wrap(idx, q->n_bd);
2495 q->read_ptr != idx;
2496 q->read_ptr = il_queue_inc_wrap(q->read_ptr, q->n_bd)) {
2497
2498 tx_info = &txq->txb[txq->q.read_ptr];
2499
2500 if (WARN_ON_ONCE(tx_info->skb == NULL))
2501 continue;
2502
2503 hdr = (struct ieee80211_hdr *)tx_info->skb->data;
2504 if (ieee80211_is_data_qos(hdr->frame_control))
2505 nfreed++;
2506
2507 il4965_tx_status(il, tx_info,
2508 txq_id >= IL4965_FIRST_AMPDU_QUEUE);
2509 tx_info->skb = NULL;
2510
2511 il->cfg->ops->lib->txq_free_tfd(il, txq);
2512 }
2513 return nfreed;
2514}
2515
2516/**
2517 * il4965_tx_status_reply_compressed_ba - Update tx status from block-ack
2518 *
2519 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
2520 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
2521 */
2522static int il4965_tx_status_reply_compressed_ba(struct il_priv *il,
2523 struct il_ht_agg *agg,
2524 struct il_compressed_ba_resp *ba_resp)
2525
2526{
2527 int i, sh, ack;
2528 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
2529 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2530 int successes = 0;
2531 struct ieee80211_tx_info *info;
2532 u64 bitmap, sent_bitmap;
2533
2534 if (unlikely(!agg->wait_for_ba)) {
2535 if (unlikely(ba_resp->bitmap))
2536 IL_ERR("Received BA when not expected\n");
2537 return -EINVAL;
2538 }
2539
2540 /* Mark that the expected block-ack response arrived */
2541 agg->wait_for_ba = 0;
2542 D_TX_REPLY("BA %d %d\n", agg->start_idx,
2543 ba_resp->seq_ctl);
2544
2545 /* Calculate shift to align block-ack bits with our Tx win bits */
2546 sh = agg->start_idx - SEQ_TO_IDX(seq_ctl >> 4);
2547 if (sh < 0) /* tbw something is wrong with indices */
2548 sh += 0x100;
2549
2550 if (agg->frame_count > (64 - sh)) {
2551 D_TX_REPLY("more frames than bitmap size");
2552 return -1;
2553 }
2554
2555 /* don't use 64-bit values for now */
2556 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
2557
2558 /* check for success or failure according to the
2559 * transmitted bitmap and block-ack bitmap */
2560 sent_bitmap = bitmap & agg->bitmap;
2561
2562 /* For each frame attempted in aggregation,
2563 * update driver's record of tx frame's status. */
2564 i = 0;
2565 while (sent_bitmap) {
2566 ack = sent_bitmap & 1ULL;
2567 successes += ack;
2568 D_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
2569 ack ? "ACK" : "NACK", i,
2570 (agg->start_idx + i) & 0xff,
2571 agg->start_idx + i);
2572 sent_bitmap >>= 1;
2573 ++i;
2574 }
2575
2576 D_TX_REPLY("Bitmap %llx\n",
2577 (unsigned long long)bitmap);
2578
2579 info = IEEE80211_SKB_CB(il->txq[scd_flow].txb[agg->start_idx].skb);
2580 memset(&info->status, 0, sizeof(info->status));
2581 info->flags |= IEEE80211_TX_STAT_ACK;
2582 info->flags |= IEEE80211_TX_STAT_AMPDU;
2583 info->status.ampdu_ack_len = successes;
2584 info->status.ampdu_len = agg->frame_count;
2585 il4965_hwrate_to_tx_control(il, agg->rate_n_flags, info);
2586
2587 return 0;
2588}
2589
2590/**
2591 * translate ucode response to mac80211 tx status control values
2592 */
2593void il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
2594 struct ieee80211_tx_info *info)
2595{
2596 struct ieee80211_tx_rate *r = &info->control.rates[0];
2597
2598 info->antenna_sel_tx =
2599 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
2600 if (rate_n_flags & RATE_MCS_HT_MSK)
2601 r->flags |= IEEE80211_TX_RC_MCS;
2602 if (rate_n_flags & RATE_MCS_GF_MSK)
2603 r->flags |= IEEE80211_TX_RC_GREEN_FIELD;
2604 if (rate_n_flags & RATE_MCS_HT40_MSK)
2605 r->flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2606 if (rate_n_flags & RATE_MCS_DUP_MSK)
2607 r->flags |= IEEE80211_TX_RC_DUP_DATA;
2608 if (rate_n_flags & RATE_MCS_SGI_MSK)
2609 r->flags |= IEEE80211_TX_RC_SHORT_GI;
2610 r->idx = il4965_hwrate_to_mac80211_idx(rate_n_flags, info->band);
2611}
2612
2613/**
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02002614 * il4965_hdl_compressed_ba - Handler for N_COMPRESSED_BA
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002615 *
2616 * Handles block-acknowledge notification from device, which reports success
2617 * of frames sent via aggregation.
2618 */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02002619void il4965_hdl_compressed_ba(struct il_priv *il,
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002620 struct il_rx_buf *rxb)
2621{
2622 struct il_rx_pkt *pkt = rxb_addr(rxb);
2623 struct il_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
2624 struct il_tx_queue *txq = NULL;
2625 struct il_ht_agg *agg;
2626 int idx;
2627 int sta_id;
2628 int tid;
2629 unsigned long flags;
2630
2631 /* "flow" corresponds to Tx queue */
2632 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
2633
2634 /* "ssn" is start of block-ack Tx win, corresponds to idx
2635 * (in Tx queue's circular buffer) of first TFD/frame in win */
2636 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
2637
2638 if (scd_flow >= il->hw_params.max_txq_num) {
2639 IL_ERR(
2640 "BUG_ON scd_flow is bigger than number of queues\n");
2641 return;
2642 }
2643
2644 txq = &il->txq[scd_flow];
2645 sta_id = ba_resp->sta_id;
2646 tid = ba_resp->tid;
2647 agg = &il->stations[sta_id].tid[tid].agg;
2648 if (unlikely(agg->txq_id != scd_flow)) {
2649 /*
2650 * FIXME: this is a uCode bug which need to be addressed,
2651 * log the information and return for now!
2652 * since it is possible happen very often and in order
2653 * not to fill the syslog, don't enable the logging by default
2654 */
2655 D_TX_REPLY(
2656 "BA scd_flow %d does not match txq_id %d\n",
2657 scd_flow, agg->txq_id);
2658 return;
2659 }
2660
2661 /* Find idx just before block-ack win */
2662 idx = il_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
2663
2664 spin_lock_irqsave(&il->sta_lock, flags);
2665
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02002666 D_TX_REPLY("N_COMPRESSED_BA [%d] Received from %pM, "
Stanislaw Gruszkaa1751b22011-11-15 12:50:37 +01002667 "sta_id = %d\n",
2668 agg->wait_for_ba,
2669 (u8 *) &ba_resp->sta_addr_lo32,
2670 ba_resp->sta_id);
2671 D_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx,"
2672 "scd_flow = "
2673 "%d, scd_ssn = %d\n",
2674 ba_resp->tid,
2675 ba_resp->seq_ctl,
2676 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
2677 ba_resp->scd_flow,
2678 ba_resp->scd_ssn);
2679 D_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx\n",
2680 agg->start_idx,
2681 (unsigned long long)agg->bitmap);
2682
2683 /* Update driver's record of ACK vs. not for each frame in win */
2684 il4965_tx_status_reply_compressed_ba(il, agg, ba_resp);
2685
2686 /* Release all TFDs before the SSN, i.e. all TFDs in front of
2687 * block-ack win (we assume that they've been successfully
2688 * transmitted ... if not, it's too late anyway). */
2689 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
2690 /* calculate mac80211 ampdu sw queue to wake */
2691 int freed = il4965_tx_queue_reclaim(il, scd_flow, idx);
2692 il4965_free_tfds_in_queue(il, sta_id, tid, freed);
2693
2694 if (il_queue_space(&txq->q) > txq->q.low_mark &&
2695 il->mac80211_registered &&
2696 agg->state != IL_EMPTYING_HW_QUEUE_DELBA)
2697 il_wake_queue(il, txq);
2698
2699 il4965_txq_check_empty(il, sta_id, tid, scd_flow);
2700 }
2701
2702 spin_unlock_irqrestore(&il->sta_lock, flags);
2703}
2704
2705#ifdef CONFIG_IWLEGACY_DEBUG
2706const char *il4965_get_tx_fail_reason(u32 status)
2707{
2708#define TX_STATUS_FAIL(x) case TX_STATUS_FAIL_ ## x: return #x
2709#define TX_STATUS_POSTPONE(x) case TX_STATUS_POSTPONE_ ## x: return #x
2710
2711 switch (status & TX_STATUS_MSK) {
2712 case TX_STATUS_SUCCESS:
2713 return "SUCCESS";
2714 TX_STATUS_POSTPONE(DELAY);
2715 TX_STATUS_POSTPONE(FEW_BYTES);
2716 TX_STATUS_POSTPONE(QUIET_PERIOD);
2717 TX_STATUS_POSTPONE(CALC_TTAK);
2718 TX_STATUS_FAIL(INTERNAL_CROSSED_RETRY);
2719 TX_STATUS_FAIL(SHORT_LIMIT);
2720 TX_STATUS_FAIL(LONG_LIMIT);
2721 TX_STATUS_FAIL(FIFO_UNDERRUN);
2722 TX_STATUS_FAIL(DRAIN_FLOW);
2723 TX_STATUS_FAIL(RFKILL_FLUSH);
2724 TX_STATUS_FAIL(LIFE_EXPIRE);
2725 TX_STATUS_FAIL(DEST_PS);
2726 TX_STATUS_FAIL(HOST_ABORTED);
2727 TX_STATUS_FAIL(BT_RETRY);
2728 TX_STATUS_FAIL(STA_INVALID);
2729 TX_STATUS_FAIL(FRAG_DROPPED);
2730 TX_STATUS_FAIL(TID_DISABLE);
2731 TX_STATUS_FAIL(FIFO_FLUSHED);
2732 TX_STATUS_FAIL(INSUFFICIENT_CF_POLL);
2733 TX_STATUS_FAIL(PASSIVE_NO_RX);
2734 TX_STATUS_FAIL(NO_BEACON_ON_RADAR);
2735 }
2736
2737 return "UNKNOWN";
2738
2739#undef TX_STATUS_FAIL
2740#undef TX_STATUS_POSTPONE
2741}
2742#endif /* CONFIG_IWLEGACY_DEBUG */
2743
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002744static struct il_link_quality_cmd *
2745il4965_sta_alloc_lq(struct il_priv *il, u8 sta_id)
2746{
2747 int i, r;
2748 struct il_link_quality_cmd *link_cmd;
2749 u32 rate_flags = 0;
2750 __le32 rate_n_flags;
2751
2752 link_cmd = kzalloc(sizeof(struct il_link_quality_cmd), GFP_KERNEL);
2753 if (!link_cmd) {
2754 IL_ERR("Unable to allocate memory for LQ cmd.\n");
2755 return NULL;
2756 }
2757 /* Set up the rate scaling to start at selected rate, fall back
2758 * all the way down to 1M in IEEE order, and then spin on 1M */
2759 if (il->band == IEEE80211_BAND_5GHZ)
2760 r = RATE_6M_IDX;
2761 else
2762 r = RATE_1M_IDX;
2763
2764 if (r >= IL_FIRST_CCK_RATE && r <= IL_LAST_CCK_RATE)
2765 rate_flags |= RATE_MCS_CCK_MSK;
2766
2767 rate_flags |= il4965_first_antenna(il->hw_params.valid_tx_ant) <<
2768 RATE_MCS_ANT_POS;
2769 rate_n_flags = il4965_hw_set_rate_n_flags(il_rates[r].plcp,
2770 rate_flags);
2771 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2772 link_cmd->rs_table[i].rate_n_flags = rate_n_flags;
2773
2774 link_cmd->general_params.single_stream_ant_msk =
2775 il4965_first_antenna(il->hw_params.valid_tx_ant);
2776
2777 link_cmd->general_params.dual_stream_ant_msk =
2778 il->hw_params.valid_tx_ant &
2779 ~il4965_first_antenna(il->hw_params.valid_tx_ant);
2780 if (!link_cmd->general_params.dual_stream_ant_msk) {
2781 link_cmd->general_params.dual_stream_ant_msk = ANT_AB;
2782 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2783 link_cmd->general_params.dual_stream_ant_msk =
2784 il->hw_params.valid_tx_ant;
2785 }
2786
2787 link_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2788 link_cmd->agg_params.agg_time_limit =
2789 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2790
2791 link_cmd->sta_id = sta_id;
2792
2793 return link_cmd;
2794}
2795
2796/*
2797 * il4965_add_bssid_station - Add the special IBSS BSSID station
2798 *
2799 * Function sleeps.
2800 */
2801int
2802il4965_add_bssid_station(struct il_priv *il, struct il_rxon_context *ctx,
2803 const u8 *addr, u8 *sta_id_r)
2804{
2805 int ret;
2806 u8 sta_id;
2807 struct il_link_quality_cmd *link_cmd;
2808 unsigned long flags;
2809
2810 if (sta_id_r)
2811 *sta_id_r = IL_INVALID_STATION;
2812
2813 ret = il_add_station_common(il, ctx, addr, 0, NULL, &sta_id);
2814 if (ret) {
2815 IL_ERR("Unable to add station %pM\n", addr);
2816 return ret;
2817 }
2818
2819 if (sta_id_r)
2820 *sta_id_r = sta_id;
2821
2822 spin_lock_irqsave(&il->sta_lock, flags);
2823 il->stations[sta_id].used |= IL_STA_LOCAL;
2824 spin_unlock_irqrestore(&il->sta_lock, flags);
2825
2826 /* Set up default rate scaling table in device's station table */
2827 link_cmd = il4965_sta_alloc_lq(il, sta_id);
2828 if (!link_cmd) {
2829 IL_ERR(
2830 "Unable to initialize rate scaling for station %pM.\n",
2831 addr);
2832 return -ENOMEM;
2833 }
2834
2835 ret = il_send_lq_cmd(il, ctx, link_cmd, CMD_SYNC, true);
2836 if (ret)
2837 IL_ERR("Link quality command failed (%d)\n", ret);
2838
2839 spin_lock_irqsave(&il->sta_lock, flags);
2840 il->stations[sta_id].lq = link_cmd;
2841 spin_unlock_irqrestore(&il->sta_lock, flags);
2842
2843 return 0;
2844}
2845
2846static int il4965_static_wepkey_cmd(struct il_priv *il,
2847 struct il_rxon_context *ctx,
2848 bool send_if_empty)
2849{
2850 int i, not_empty = 0;
2851 u8 buff[sizeof(struct il_wep_cmd) +
2852 sizeof(struct il_wep_key) * WEP_KEYS_MAX];
2853 struct il_wep_cmd *wep_cmd = (struct il_wep_cmd *)buff;
2854 size_t cmd_size = sizeof(struct il_wep_cmd);
2855 struct il_host_cmd cmd = {
2856 .id = ctx->wep_key_cmd,
2857 .data = wep_cmd,
2858 .flags = CMD_SYNC,
2859 };
2860
2861 might_sleep();
2862
2863 memset(wep_cmd, 0, cmd_size +
2864 (sizeof(struct il_wep_key) * WEP_KEYS_MAX));
2865
2866 for (i = 0; i < WEP_KEYS_MAX ; i++) {
2867 wep_cmd->key[i].key_idx = i;
2868 if (ctx->wep_keys[i].key_size) {
2869 wep_cmd->key[i].key_offset = i;
2870 not_empty = 1;
2871 } else {
2872 wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
2873 }
2874
2875 wep_cmd->key[i].key_size = ctx->wep_keys[i].key_size;
2876 memcpy(&wep_cmd->key[i].key[3], ctx->wep_keys[i].key,
2877 ctx->wep_keys[i].key_size);
2878 }
2879
2880 wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
2881 wep_cmd->num_keys = WEP_KEYS_MAX;
2882
2883 cmd_size += sizeof(struct il_wep_key) * WEP_KEYS_MAX;
2884
2885 cmd.len = cmd_size;
2886
2887 if (not_empty || send_if_empty)
2888 return il_send_cmd(il, &cmd);
2889 else
2890 return 0;
2891}
2892
2893int il4965_restore_default_wep_keys(struct il_priv *il,
2894 struct il_rxon_context *ctx)
2895{
2896 lockdep_assert_held(&il->mutex);
2897
2898 return il4965_static_wepkey_cmd(il, ctx, false);
2899}
2900
2901int il4965_remove_default_wep_key(struct il_priv *il,
2902 struct il_rxon_context *ctx,
2903 struct ieee80211_key_conf *keyconf)
2904{
2905 int ret;
2906
2907 lockdep_assert_held(&il->mutex);
2908
2909 D_WEP("Removing default WEP key: idx=%d\n",
2910 keyconf->keyidx);
2911
2912 memset(&ctx->wep_keys[keyconf->keyidx], 0, sizeof(ctx->wep_keys[0]));
2913 if (il_is_rfkill(il)) {
2914 D_WEP(
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02002915 "Not sending C_WEPKEY command due to RFKILL.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02002916 /* but keys in device are clear anyway so return success */
2917 return 0;
2918 }
2919 ret = il4965_static_wepkey_cmd(il, ctx, 1);
2920 D_WEP("Remove default WEP key: idx=%d ret=%d\n",
2921 keyconf->keyidx, ret);
2922
2923 return ret;
2924}
2925
2926int il4965_set_default_wep_key(struct il_priv *il,
2927 struct il_rxon_context *ctx,
2928 struct ieee80211_key_conf *keyconf)
2929{
2930 int ret;
2931
2932 lockdep_assert_held(&il->mutex);
2933
2934 if (keyconf->keylen != WEP_KEY_LEN_128 &&
2935 keyconf->keylen != WEP_KEY_LEN_64) {
2936 D_WEP("Bad WEP key length %d\n", keyconf->keylen);
2937 return -EINVAL;
2938 }
2939
2940 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2941 keyconf->hw_key_idx = HW_KEY_DEFAULT;
2942 il->stations[ctx->ap_sta_id].keyinfo.cipher = keyconf->cipher;
2943
2944 ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
2945 memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
2946 keyconf->keylen);
2947
2948 ret = il4965_static_wepkey_cmd(il, ctx, false);
2949 D_WEP("Set default WEP key: len=%d idx=%d ret=%d\n",
2950 keyconf->keylen, keyconf->keyidx, ret);
2951
2952 return ret;
2953}
2954
2955static int il4965_set_wep_dynamic_key_info(struct il_priv *il,
2956 struct il_rxon_context *ctx,
2957 struct ieee80211_key_conf *keyconf,
2958 u8 sta_id)
2959{
2960 unsigned long flags;
2961 __le16 key_flags = 0;
2962 struct il_addsta_cmd sta_cmd;
2963
2964 lockdep_assert_held(&il->mutex);
2965
2966 keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
2967
2968 key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
2969 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
2970 key_flags &= ~STA_KEY_FLG_INVALID;
2971
2972 if (keyconf->keylen == WEP_KEY_LEN_128)
2973 key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
2974
2975 if (sta_id == ctx->bcast_sta_id)
2976 key_flags |= STA_KEY_MULTICAST_MSK;
2977
2978 spin_lock_irqsave(&il->sta_lock, flags);
2979
2980 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
2981 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
2982 il->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
2983
2984 memcpy(il->stations[sta_id].keyinfo.key,
2985 keyconf->key, keyconf->keylen);
2986
2987 memcpy(&il->stations[sta_id].sta.key.key[3],
2988 keyconf->key, keyconf->keylen);
2989
2990 if ((il->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
2991 == STA_KEY_FLG_NO_ENC)
2992 il->stations[sta_id].sta.key.key_offset =
2993 il_get_free_ucode_key_idx(il);
2994 /* else, we are overriding an existing key => no need to allocated room
2995 * in uCode. */
2996
2997 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
2998 "no space for a new key");
2999
3000 il->stations[sta_id].sta.key.key_flags = key_flags;
3001 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3002 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3003
3004 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3005 sizeof(struct il_addsta_cmd));
3006 spin_unlock_irqrestore(&il->sta_lock, flags);
3007
3008 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3009}
3010
3011static int il4965_set_ccmp_dynamic_key_info(struct il_priv *il,
3012 struct il_rxon_context *ctx,
3013 struct ieee80211_key_conf *keyconf,
3014 u8 sta_id)
3015{
3016 unsigned long flags;
3017 __le16 key_flags = 0;
3018 struct il_addsta_cmd sta_cmd;
3019
3020 lockdep_assert_held(&il->mutex);
3021
3022 key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
3023 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3024 key_flags &= ~STA_KEY_FLG_INVALID;
3025
3026 if (sta_id == ctx->bcast_sta_id)
3027 key_flags |= STA_KEY_MULTICAST_MSK;
3028
3029 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3030
3031 spin_lock_irqsave(&il->sta_lock, flags);
3032 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
3033 il->stations[sta_id].keyinfo.keylen = keyconf->keylen;
3034
3035 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key,
3036 keyconf->keylen);
3037
3038 memcpy(il->stations[sta_id].sta.key.key, keyconf->key,
3039 keyconf->keylen);
3040
3041 if ((il->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
3042 == STA_KEY_FLG_NO_ENC)
3043 il->stations[sta_id].sta.key.key_offset =
3044 il_get_free_ucode_key_idx(il);
3045 /* else, we are overriding an existing key => no need to allocated room
3046 * in uCode. */
3047
3048 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
3049 "no space for a new key");
3050
3051 il->stations[sta_id].sta.key.key_flags = key_flags;
3052 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3053 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3054
3055 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3056 sizeof(struct il_addsta_cmd));
3057 spin_unlock_irqrestore(&il->sta_lock, flags);
3058
3059 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3060}
3061
3062static int il4965_set_tkip_dynamic_key_info(struct il_priv *il,
3063 struct il_rxon_context *ctx,
3064 struct ieee80211_key_conf *keyconf,
3065 u8 sta_id)
3066{
3067 unsigned long flags;
3068 int ret = 0;
3069 __le16 key_flags = 0;
3070
3071 key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
3072 key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
3073 key_flags &= ~STA_KEY_FLG_INVALID;
3074
3075 if (sta_id == ctx->bcast_sta_id)
3076 key_flags |= STA_KEY_MULTICAST_MSK;
3077
3078 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
3079 keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
3080
3081 spin_lock_irqsave(&il->sta_lock, flags);
3082
3083 il->stations[sta_id].keyinfo.cipher = keyconf->cipher;
3084 il->stations[sta_id].keyinfo.keylen = 16;
3085
3086 if ((il->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
3087 == STA_KEY_FLG_NO_ENC)
3088 il->stations[sta_id].sta.key.key_offset =
3089 il_get_free_ucode_key_idx(il);
3090 /* else, we are overriding an existing key => no need to allocated room
3091 * in uCode. */
3092
3093 WARN(il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
3094 "no space for a new key");
3095
3096 il->stations[sta_id].sta.key.key_flags = key_flags;
3097
3098
3099 /* This copy is acutally not needed: we get the key with each TX */
3100 memcpy(il->stations[sta_id].keyinfo.key, keyconf->key, 16);
3101
3102 memcpy(il->stations[sta_id].sta.key.key, keyconf->key, 16);
3103
3104 spin_unlock_irqrestore(&il->sta_lock, flags);
3105
3106 return ret;
3107}
3108
3109void il4965_update_tkip_key(struct il_priv *il,
3110 struct il_rxon_context *ctx,
3111 struct ieee80211_key_conf *keyconf,
3112 struct ieee80211_sta *sta, u32 iv32, u16 *phase1key)
3113{
3114 u8 sta_id;
3115 unsigned long flags;
3116 int i;
3117
3118 if (il_scan_cancel(il)) {
3119 /* cancel scan failed, just live w/ bad key and rely
3120 briefly on SW decryption */
3121 return;
3122 }
3123
3124 sta_id = il_sta_id_or_broadcast(il, ctx, sta);
3125 if (sta_id == IL_INVALID_STATION)
3126 return;
3127
3128 spin_lock_irqsave(&il->sta_lock, flags);
3129
3130 il->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
3131
3132 for (i = 0; i < 5; i++)
3133 il->stations[sta_id].sta.key.tkip_rx_ttak[i] =
3134 cpu_to_le16(phase1key[i]);
3135
3136 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3137 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3138
3139 il_send_add_sta(il, &il->stations[sta_id].sta, CMD_ASYNC);
3140
3141 spin_unlock_irqrestore(&il->sta_lock, flags);
3142
3143}
3144
3145int il4965_remove_dynamic_key(struct il_priv *il,
3146 struct il_rxon_context *ctx,
3147 struct ieee80211_key_conf *keyconf,
3148 u8 sta_id)
3149{
3150 unsigned long flags;
3151 u16 key_flags;
3152 u8 keyidx;
3153 struct il_addsta_cmd sta_cmd;
3154
3155 lockdep_assert_held(&il->mutex);
3156
3157 ctx->key_mapping_keys--;
3158
3159 spin_lock_irqsave(&il->sta_lock, flags);
3160 key_flags = le16_to_cpu(il->stations[sta_id].sta.key.key_flags);
3161 keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
3162
3163 D_WEP("Remove dynamic key: idx=%d sta=%d\n",
3164 keyconf->keyidx, sta_id);
3165
3166 if (keyconf->keyidx != keyidx) {
3167 /* We need to remove a key with idx different that the one
3168 * in the uCode. This means that the key we need to remove has
3169 * been replaced by another one with different idx.
3170 * Don't do anything and return ok
3171 */
3172 spin_unlock_irqrestore(&il->sta_lock, flags);
3173 return 0;
3174 }
3175
3176 if (il->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
3177 IL_WARN("Removing wrong key %d 0x%x\n",
3178 keyconf->keyidx, key_flags);
3179 spin_unlock_irqrestore(&il->sta_lock, flags);
3180 return 0;
3181 }
3182
3183 if (!test_and_clear_bit(il->stations[sta_id].sta.key.key_offset,
3184 &il->ucode_key_table))
3185 IL_ERR("idx %d not used in uCode key table.\n",
3186 il->stations[sta_id].sta.key.key_offset);
3187 memset(&il->stations[sta_id].keyinfo, 0,
3188 sizeof(struct il_hw_key));
3189 memset(&il->stations[sta_id].sta.key, 0,
3190 sizeof(struct il4965_keyinfo));
3191 il->stations[sta_id].sta.key.key_flags =
3192 STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
3193 il->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
3194 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
3195 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3196
3197 if (il_is_rfkill(il)) {
3198 D_WEP(
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02003199 "Not sending C_ADD_STA command because RFKILL enabled.\n");
Stanislaw Gruszkaeb3cdfb2011-08-30 12:58:35 +02003200 spin_unlock_irqrestore(&il->sta_lock, flags);
3201 return 0;
3202 }
3203 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3204 sizeof(struct il_addsta_cmd));
3205 spin_unlock_irqrestore(&il->sta_lock, flags);
3206
3207 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3208}
3209
3210int il4965_set_dynamic_key(struct il_priv *il, struct il_rxon_context *ctx,
3211 struct ieee80211_key_conf *keyconf, u8 sta_id)
3212{
3213 int ret;
3214
3215 lockdep_assert_held(&il->mutex);
3216
3217 ctx->key_mapping_keys++;
3218 keyconf->hw_key_idx = HW_KEY_DYNAMIC;
3219
3220 switch (keyconf->cipher) {
3221 case WLAN_CIPHER_SUITE_CCMP:
3222 ret = il4965_set_ccmp_dynamic_key_info(il, ctx,
3223 keyconf, sta_id);
3224 break;
3225 case WLAN_CIPHER_SUITE_TKIP:
3226 ret = il4965_set_tkip_dynamic_key_info(il, ctx,
3227 keyconf, sta_id);
3228 break;
3229 case WLAN_CIPHER_SUITE_WEP40:
3230 case WLAN_CIPHER_SUITE_WEP104:
3231 ret = il4965_set_wep_dynamic_key_info(il, ctx,
3232 keyconf, sta_id);
3233 break;
3234 default:
3235 IL_ERR(
3236 "Unknown alg: %s cipher = %x\n", __func__,
3237 keyconf->cipher);
3238 ret = -EINVAL;
3239 }
3240
3241 D_WEP(
3242 "Set dynamic key: cipher=%x len=%d idx=%d sta=%d ret=%d\n",
3243 keyconf->cipher, keyconf->keylen, keyconf->keyidx,
3244 sta_id, ret);
3245
3246 return ret;
3247}
3248
3249/**
3250 * il4965_alloc_bcast_station - add broadcast station into driver's station table.
3251 *
3252 * This adds the broadcast station into the driver's station table
3253 * and marks it driver active, so that it will be restored to the
3254 * device at the next best time.
3255 */
3256int il4965_alloc_bcast_station(struct il_priv *il,
3257 struct il_rxon_context *ctx)
3258{
3259 struct il_link_quality_cmd *link_cmd;
3260 unsigned long flags;
3261 u8 sta_id;
3262
3263 spin_lock_irqsave(&il->sta_lock, flags);
3264 sta_id = il_prep_station(il, ctx, il_bcast_addr,
3265 false, NULL);
3266 if (sta_id == IL_INVALID_STATION) {
3267 IL_ERR("Unable to prepare broadcast station\n");
3268 spin_unlock_irqrestore(&il->sta_lock, flags);
3269
3270 return -EINVAL;
3271 }
3272
3273 il->stations[sta_id].used |= IL_STA_DRIVER_ACTIVE;
3274 il->stations[sta_id].used |= IL_STA_BCAST;
3275 spin_unlock_irqrestore(&il->sta_lock, flags);
3276
3277 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3278 if (!link_cmd) {
3279 IL_ERR(
3280 "Unable to initialize rate scaling for bcast station.\n");
3281 return -ENOMEM;
3282 }
3283
3284 spin_lock_irqsave(&il->sta_lock, flags);
3285 il->stations[sta_id].lq = link_cmd;
3286 spin_unlock_irqrestore(&il->sta_lock, flags);
3287
3288 return 0;
3289}
3290
3291/**
3292 * il4965_update_bcast_station - update broadcast station's LQ command
3293 *
3294 * Only used by iwl4965. Placed here to have all bcast station management
3295 * code together.
3296 */
3297static int il4965_update_bcast_station(struct il_priv *il,
3298 struct il_rxon_context *ctx)
3299{
3300 unsigned long flags;
3301 struct il_link_quality_cmd *link_cmd;
3302 u8 sta_id = ctx->bcast_sta_id;
3303
3304 link_cmd = il4965_sta_alloc_lq(il, sta_id);
3305 if (!link_cmd) {
3306 IL_ERR(
3307 "Unable to initialize rate scaling for bcast station.\n");
3308 return -ENOMEM;
3309 }
3310
3311 spin_lock_irqsave(&il->sta_lock, flags);
3312 if (il->stations[sta_id].lq)
3313 kfree(il->stations[sta_id].lq);
3314 else
3315 D_INFO(
3316 "Bcast station rate scaling has not been initialized yet.\n");
3317 il->stations[sta_id].lq = link_cmd;
3318 spin_unlock_irqrestore(&il->sta_lock, flags);
3319
3320 return 0;
3321}
3322
3323int il4965_update_bcast_stations(struct il_priv *il)
3324{
3325 return il4965_update_bcast_station(il, &il->ctx);
3326}
3327
3328/**
3329 * il4965_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
3330 */
3331int il4965_sta_tx_modify_enable_tid(struct il_priv *il, int sta_id, int tid)
3332{
3333 unsigned long flags;
3334 struct il_addsta_cmd sta_cmd;
3335
3336 lockdep_assert_held(&il->mutex);
3337
3338 /* Remove "disable" flag, to enable Tx for this TID */
3339 spin_lock_irqsave(&il->sta_lock, flags);
3340 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3341 il->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3342 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3343 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3344 sizeof(struct il_addsta_cmd));
3345 spin_unlock_irqrestore(&il->sta_lock, flags);
3346
3347 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3348}
3349
3350int il4965_sta_rx_agg_start(struct il_priv *il, struct ieee80211_sta *sta,
3351 int tid, u16 ssn)
3352{
3353 unsigned long flags;
3354 int sta_id;
3355 struct il_addsta_cmd sta_cmd;
3356
3357 lockdep_assert_held(&il->mutex);
3358
3359 sta_id = il_sta_id(sta);
3360 if (sta_id == IL_INVALID_STATION)
3361 return -ENXIO;
3362
3363 spin_lock_irqsave(&il->sta_lock, flags);
3364 il->stations[sta_id].sta.station_flags_msk = 0;
3365 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
3366 il->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
3367 il->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3368 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3369 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3370 sizeof(struct il_addsta_cmd));
3371 spin_unlock_irqrestore(&il->sta_lock, flags);
3372
3373 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3374}
3375
3376int il4965_sta_rx_agg_stop(struct il_priv *il, struct ieee80211_sta *sta,
3377 int tid)
3378{
3379 unsigned long flags;
3380 int sta_id;
3381 struct il_addsta_cmd sta_cmd;
3382
3383 lockdep_assert_held(&il->mutex);
3384
3385 sta_id = il_sta_id(sta);
3386 if (sta_id == IL_INVALID_STATION) {
3387 IL_ERR("Invalid station for AGG tid %d\n", tid);
3388 return -ENXIO;
3389 }
3390
3391 spin_lock_irqsave(&il->sta_lock, flags);
3392 il->stations[sta_id].sta.station_flags_msk = 0;
3393 il->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
3394 il->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
3395 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3396 memcpy(&sta_cmd, &il->stations[sta_id].sta,
3397 sizeof(struct il_addsta_cmd));
3398 spin_unlock_irqrestore(&il->sta_lock, flags);
3399
3400 return il_send_add_sta(il, &sta_cmd, CMD_SYNC);
3401}
3402
3403void
3404il4965_sta_modify_sleep_tx_count(struct il_priv *il, int sta_id, int cnt)
3405{
3406 unsigned long flags;
3407
3408 spin_lock_irqsave(&il->sta_lock, flags);
3409 il->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
3410 il->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
3411 il->stations[sta_id].sta.sta.modify_mask =
3412 STA_MODIFY_SLEEP_TX_COUNT_MSK;
3413 il->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
3414 il->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3415 il_send_add_sta(il,
3416 &il->stations[sta_id].sta, CMD_ASYNC);
3417 spin_unlock_irqrestore(&il->sta_lock, flags);
3418
3419}
3420
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003421void il4965_update_chain_flags(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003422{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003423 if (il->cfg->ops->hcmd->set_rxon_chain) {
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02003424 il->cfg->ops->hcmd->set_rxon_chain(il, &il->ctx);
3425 if (il->ctx.active.rx_chain != il->ctx.staging.rx_chain)
3426 il_commit_rxon(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003427 }
3428}
3429
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003430static void il4965_clear_free_frames(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003431{
3432 struct list_head *element;
3433
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003434 D_INFO("%d frames on pre-allocated heap on clear.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003435 il->frames_count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003437 while (!list_empty(&il->free_frames)) {
3438 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003439 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003440 kfree(list_entry(element, struct il_frame, list));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003441 il->frames_count--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003442 }
3443
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003444 if (il->frames_count) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003445 IL_WARN("%d frames still in use. Did we lose one?\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003446 il->frames_count);
3447 il->frames_count = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003448 }
3449}
3450
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003451static struct il_frame *il4965_get_free_frame(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003452{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003453 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003454 struct list_head *element;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003455 if (list_empty(&il->free_frames)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003456 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
3457 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003458 IL_ERR("Could not allocate frame!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003459 return NULL;
3460 }
3461
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003462 il->frames_count++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003463 return frame;
3464 }
3465
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003466 element = il->free_frames.next;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003467 list_del(element);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003468 return list_entry(element, struct il_frame, list);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003469}
3470
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003471static void il4965_free_frame(struct il_priv *il, struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003472{
3473 memset(frame, 0, sizeof(*frame));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003474 list_add(&frame->list, &il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003475}
3476
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003477static u32 il4965_fill_beacon_frame(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003478 struct ieee80211_hdr *hdr,
3479 int left)
3480{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003481 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003482
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003483 if (!il->beacon_skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003484 return 0;
3485
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003486 if (il->beacon_skb->len > left)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003487 return 0;
3488
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003489 memcpy(hdr, il->beacon_skb->data, il->beacon_skb->len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003490
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003491 return il->beacon_skb->len;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003492}
3493
3494/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003495static void il4965_set_beacon_tim(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003496 struct il_tx_beacon_cmd *tx_beacon_cmd,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003497 u8 *beacon, u32 frame_size)
3498{
3499 u16 tim_idx;
3500 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
3501
3502 /*
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003503 * The idx is relative to frame start but we start looking at the
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003504 * variable-length part of the beacon.
3505 */
3506 tim_idx = mgmt->u.beacon.variable - beacon;
3507
3508 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
3509 while ((tim_idx < (frame_size - 2)) &&
3510 (beacon[tim_idx] != WLAN_EID_TIM))
3511 tim_idx += beacon[tim_idx+1] + 2;
3512
3513 /* If TIM field was found, set variables */
3514 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
3515 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
3516 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
3517 } else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003518 IL_WARN("Unable to find TIM Element in beacon\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003519}
3520
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003521static unsigned int il4965_hw_get_beacon_cmd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003522 struct il_frame *frame)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003523{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003524 struct il_tx_beacon_cmd *tx_beacon_cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003525 u32 frame_size;
3526 u32 rate_flags;
3527 u32 rate;
3528 /*
3529 * We have to set up the TX command, the TX Beacon command, and the
3530 * beacon contents.
3531 */
3532
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003533 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003534
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003535 if (!il->beacon_ctx) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003536 IL_ERR("trying to build beacon w/o beacon context!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003537 return 0;
3538 }
3539
3540 /* Initialize memory */
3541 tx_beacon_cmd = &frame->u.beacon;
3542 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
3543
3544 /* Set up TX beacon contents */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003545 frame_size = il4965_fill_beacon_frame(il, tx_beacon_cmd->frame,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003546 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
3547 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
3548 return 0;
3549 if (!frame_size)
3550 return 0;
3551
3552 /* Set up TX command fields */
3553 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003554 tx_beacon_cmd->tx.sta_id = il->beacon_ctx->bcast_sta_id;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003555 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
3556 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
3557 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
3558
3559 /* Set up TX beacon command fields */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003560 il4965_set_beacon_tim(il, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003561 frame_size);
3562
3563 /* Set up packet rate and flags */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003564 rate = il_get_lowest_plcp(il, il->beacon_ctx);
3565 il->mgmt_tx_ant = il4965_toggle_tx_ant(il, il->mgmt_tx_ant,
3566 il->hw_params.valid_tx_ant);
3567 rate_flags = il4965_ant_idx_to_flags(il->mgmt_tx_ant);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003568 if ((rate >= IL_FIRST_CCK_RATE) && (rate <= IL_LAST_CCK_RATE))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003569 rate_flags |= RATE_MCS_CCK_MSK;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003570 tx_beacon_cmd->tx.rate_n_flags = il4965_hw_set_rate_n_flags(rate,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003571 rate_flags);
3572
3573 return sizeof(*tx_beacon_cmd) + frame_size;
3574}
3575
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003576int il4965_send_beacon_cmd(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003577{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003578 struct il_frame *frame;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003579 unsigned int frame_size;
3580 int rc;
3581
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003582 frame = il4965_get_free_frame(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003583 if (!frame) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003584 IL_ERR("Could not obtain free frame buffer for beacon "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003585 "command.\n");
3586 return -ENOMEM;
3587 }
3588
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003589 frame_size = il4965_hw_get_beacon_cmd(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003590 if (!frame_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003591 IL_ERR("Error configuring the beacon command\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003592 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003593 return -EINVAL;
3594 }
3595
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02003596 rc = il_send_cmd_pdu(il, C_TX_BEACON, frame_size,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003597 &frame->u.cmd[0]);
3598
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003599 il4965_free_frame(il, frame);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003600
3601 return rc;
3602}
3603
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003604static inline dma_addr_t il4965_tfd_tb_get_addr(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003605{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003606 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003607
3608 dma_addr_t addr = get_unaligned_le32(&tb->lo);
3609 if (sizeof(dma_addr_t) > sizeof(u32))
3610 addr |=
3611 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
3612
3613 return addr;
3614}
3615
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003616static inline u16 il4965_tfd_tb_get_len(struct il_tfd *tfd, u8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003617{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003618 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003619
3620 return le16_to_cpu(tb->hi_n_len) >> 4;
3621}
3622
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003623static inline void il4965_tfd_set_tb(struct il_tfd *tfd, u8 idx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003624 dma_addr_t addr, u16 len)
3625{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003626 struct il_tfd_tb *tb = &tfd->tbs[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003627 u16 hi_n_len = len << 4;
3628
3629 put_unaligned_le32(addr, &tb->lo);
3630 if (sizeof(dma_addr_t) > sizeof(u32))
3631 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
3632
3633 tb->hi_n_len = cpu_to_le16(hi_n_len);
3634
3635 tfd->num_tbs = idx + 1;
3636}
3637
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003638static inline u8 il4965_tfd_get_num_tbs(struct il_tfd *tfd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003639{
3640 return tfd->num_tbs & 0x1f;
3641}
3642
3643/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003644 * il4965_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003645 * @il - driver ilate data
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003646 * @txq - tx queue
3647 *
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003648 * Does NOT advance any TFD circular buffer read/write idxes
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003649 * Does NOT free the TFD itself (which is within circular buffer)
3650 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003651void il4965_hw_txq_free_tfd(struct il_priv *il, struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003652{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003653 struct il_tfd *tfd_tmp = (struct il_tfd *)txq->tfds;
3654 struct il_tfd *tfd;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003655 struct pci_dev *dev = il->pci_dev;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003656 int idx = txq->q.read_ptr;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003657 int i;
3658 int num_tbs;
3659
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003660 tfd = &tfd_tmp[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003661
3662 /* Sanity check on number of chunks */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003663 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003664
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003665 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003666 IL_ERR("Too many chunks: %i\n", num_tbs);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003667 /* @todo issue fatal error, it is quite serious situation */
3668 return;
3669 }
3670
3671 /* Unmap tx_cmd */
3672 if (num_tbs)
3673 pci_unmap_single(dev,
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003674 dma_unmap_addr(&txq->meta[idx], mapping),
3675 dma_unmap_len(&txq->meta[idx], len),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003676 PCI_DMA_BIDIRECTIONAL);
3677
3678 /* Unmap chunks, if any. */
3679 for (i = 1; i < num_tbs; i++)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003680 pci_unmap_single(dev, il4965_tfd_tb_get_addr(tfd, i),
3681 il4965_tfd_tb_get_len(tfd, i),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003682 PCI_DMA_TODEVICE);
3683
3684 /* free SKB */
3685 if (txq->txb) {
3686 struct sk_buff *skb;
3687
3688 skb = txq->txb[txq->q.read_ptr].skb;
3689
3690 /* can be called from irqs-disabled context */
3691 if (skb) {
3692 dev_kfree_skb_any(skb);
3693 txq->txb[txq->q.read_ptr].skb = NULL;
3694 }
3695 }
3696}
3697
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003698int il4965_hw_txq_attach_buf_to_tfd(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003699 struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003700 dma_addr_t addr, u16 len,
3701 u8 reset, u8 pad)
3702{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003703 struct il_queue *q;
3704 struct il_tfd *tfd, *tfd_tmp;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003705 u32 num_tbs;
3706
3707 q = &txq->q;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003708 tfd_tmp = (struct il_tfd *)txq->tfds;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003709 tfd = &tfd_tmp[q->write_ptr];
3710
3711 if (reset)
3712 memset(tfd, 0, sizeof(*tfd));
3713
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003714 num_tbs = il4965_tfd_get_num_tbs(tfd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003715
3716 /* Each TFD can point to a maximum 20 Tx buffers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003717 if (num_tbs >= IL_NUM_OF_TBS) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003718 IL_ERR("Error can not send more than %d chunks\n",
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003719 IL_NUM_OF_TBS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003720 return -EINVAL;
3721 }
3722
3723 BUG_ON(addr & ~DMA_BIT_MASK(36));
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003724 if (unlikely(addr & ~IL_TX_DMA_MASK))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003725 IL_ERR("Unaligned address = %llx\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003726 (unsigned long long)addr);
3727
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003728 il4965_tfd_set_tb(tfd, num_tbs, addr, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003729
3730 return 0;
3731}
3732
3733/*
3734 * Tell nic where to find circular buffer of Tx Frame Descriptors for
3735 * given Tx queue, and enable the DMA channel used for that queue.
3736 *
3737 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
3738 * channels supported in hardware.
3739 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003740int il4965_hw_tx_queue_init(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003741 struct il_tx_queue *txq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003742{
3743 int txq_id = txq->q.id;
3744
3745 /* Circular buffer (TFD queue in DRAM) physical base address */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02003746 il_wr(il, FH49_MEM_CBBC_QUEUE(txq_id),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003747 txq->q.dma_addr >> 8);
3748
3749 return 0;
3750}
3751
3752/******************************************************************************
3753 *
3754 * Generic RX handler implementations
3755 *
3756 ******************************************************************************/
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003757static void il4965_hdl_alive(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003758 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003759{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003760 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003761 struct il_alive_resp *palive;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003762 struct delayed_work *pwork;
3763
3764 palive = &pkt->u.alive_frame;
3765
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003766 D_INFO("Alive ucode status 0x%08X revision "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003767 "0x%01X 0x%01X\n",
3768 palive->is_valid, palive->ver_type,
3769 palive->ver_subtype);
3770
3771 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003772 D_INFO("Initialization Alive received.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003773 memcpy(&il->card_alive_init,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003774 &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003775 sizeof(struct il_init_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003776 pwork = &il->init_alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003777 } else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003778 D_INFO("Runtime Alive received.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003779 memcpy(&il->card_alive, &pkt->u.alive_frame,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003780 sizeof(struct il_alive_resp));
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003781 pwork = &il->alive_start;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003782 }
3783
3784 /* We delay the ALIVE response by 5ms to
3785 * give the HW RF Kill time to activate... */
3786 if (palive->is_valid == UCODE_VALID_OK)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003787 queue_delayed_work(il->workqueue, pwork,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003788 msecs_to_jiffies(5));
3789 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02003790 IL_WARN("uCode did not respond OK.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003791}
3792
3793/**
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003794 * il4965_bg_stats_periodic - Timer callback to queue stats
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003795 *
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003796 * This callback is provided in order to send a stats request.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003797 *
3798 * This timer function is continually reset to execute within
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02003799 * REG_RECALIB_PERIOD seconds since the last N_STATS
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003800 * was received. We need to ensure we receive the stats in order
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003801 * to update the temperature used for calibrating the TXPOWER.
3802 */
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003803static void il4965_bg_stats_periodic(unsigned long data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003804{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003805 struct il_priv *il = (struct il_priv *)data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003806
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003807 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003808 return;
3809
3810 /* dont send host command if rf-kill is on */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003811 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003812 return;
3813
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003814 il_send_stats_request(il, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003815}
3816
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003817static void il4965_hdl_beacon(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003818 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003819{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003820 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003821 struct il4965_beacon_notif *beacon =
3822 (struct il4965_beacon_notif *)pkt->u.raw;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01003823#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003824 u8 rate = il4965_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003825
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003826 D_RX("beacon status %x retries %d iss %d "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003827 "tsf %d %d rate %d\n",
3828 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
3829 beacon->beacon_notify_hdr.failure_frame,
3830 le32_to_cpu(beacon->ibss_mgr_status),
3831 le32_to_cpu(beacon->high_tsf),
3832 le32_to_cpu(beacon->low_tsf), rate);
3833#endif
3834
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003835 il->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003836}
3837
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003838static void il4965_perform_ct_kill_task(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003839{
3840 unsigned long flags;
3841
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003842 D_POWER("Stop all queues\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003843
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003844 if (il->mac80211_registered)
3845 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003846
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003847 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003848 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003849 _il_rd(il, CSR_UCODE_DRV_GP1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003850
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003851 spin_lock_irqsave(&il->reg_lock, flags);
Stanislaw Gruszka13882262011-08-24 15:39:23 +02003852 if (!_il_grab_nic_access(il))
3853 _il_release_nic_access(il);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003854 spin_unlock_irqrestore(&il->reg_lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003855}
3856
3857/* Handle notification from uCode that card's power state is changing
3858 * due to software, hardware, or critical temperature RFKILL */
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003859static void il4965_hdl_card_state(struct il_priv *il,
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003860 struct il_rx_buf *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003861{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003862 struct il_rx_pkt *pkt = rxb_addr(rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003863 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003864 unsigned long status = il->status;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003865
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003866 D_RF_KILL("Card state received: HW:%s SW:%s CT:%s\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003867 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
3868 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
3869 (flags & CT_CARD_DISABLED) ?
3870 "Reached" : "Not reached");
3871
3872 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
3873 CT_CARD_DISABLED)) {
3874
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003875 _il_wr(il, CSR_UCODE_DRV_GP1_SET,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003876 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3877
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02003878 il_wr(il, HBUS_TARG_MBX_C,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003879 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3880
3881 if (!(flags & RXON_CARD_DISABLED)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02003882 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003883 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02003884 il_wr(il, HBUS_TARG_MBX_C,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003885 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
3886 }
3887 }
3888
3889 if (flags & CT_CARD_DISABLED)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003890 il4965_perform_ct_kill_task(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003891
3892 if (flags & HW_CARD_DISABLED)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003893 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003894 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003895 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003896
3897 if (!(flags & RXON_CARD_DISABLED))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003898 il_scan_cancel(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003899
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003900 if ((test_bit(S_RF_KILL_HW, &status) !=
3901 test_bit(S_RF_KILL_HW, &il->status)))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003902 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01003903 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003904 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003905 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003906}
3907
3908/**
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003909 * il4965_setup_handlers - Initialize Rx handler callbacks
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003910 *
3911 * Setup the RX handlers for each of the reply types sent from the uCode
3912 * to the host.
3913 *
3914 * This function chains into the hardware specific files for them to setup
3915 * any hardware specific handlers as well.
3916 */
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003917static void il4965_setup_handlers(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003918{
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003919 il->handlers[N_ALIVE] = il4965_hdl_alive;
3920 il->handlers[N_ERROR] = il_hdl_error;
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003921 il->handlers[N_CHANNEL_SWITCH] = il_hdl_csa;
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003922 il->handlers[N_SPECTRUM_MEASUREMENT] =
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003923 il_hdl_spectrum_measurement;
3924 il->handlers[N_PM_SLEEP] = il_hdl_pm_sleep;
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003925 il->handlers[N_PM_DEBUG_STATS] =
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003926 il_hdl_pm_debug_stats;
3927 il->handlers[N_BEACON] = il4965_hdl_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003928
3929 /*
3930 * The same handler is used for both the REPLY to a discrete
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02003931 * stats request from the host as well as for the periodic
3932 * stats notifications (after received beacons) from the uCode.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003933 */
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003934 il->handlers[C_STATS] = il4965_hdl_c_stats;
3935 il->handlers[N_STATS] = il4965_hdl_stats;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003936
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003937 il_setup_rx_scan_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003938
3939 /* status change handler */
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003940 il->handlers[N_CARD_STATE] =
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003941 il4965_hdl_card_state;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003942
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003943 il->handlers[N_MISSED_BEACONS] =
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01003944 il4965_hdl_missed_beacon;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003945 /* Rx handlers */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003946 il->handlers[N_RX_PHY] = il4965_hdl_rx_phy;
3947 il->handlers[N_RX_MPDU] = il4965_hdl_rx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003948 /* block ack */
Stanislaw Gruszka6e9848b42011-08-30 15:45:31 +02003949 il->handlers[N_COMPRESSED_BA] = il4965_hdl_compressed_ba;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003950 /* Set up hardware specific Rx handlers */
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003951 il->cfg->ops->lib->handler_setup(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003952}
3953
3954/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003955 * il4965_rx_handle - Main entry function for receiving responses from uCode
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003956 *
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02003957 * Uses the il->handlers callback function array to invoke
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003958 * the appropriate handlers, including command responses,
3959 * frame-received notifications, and other notifications.
3960 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003961void il4965_rx_handle(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003962{
Stanislaw Gruszkab73bb5f2011-08-26 14:37:54 +02003963 struct il_rx_buf *rxb;
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +02003964 struct il_rx_pkt *pkt;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02003965 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003966 u32 r, i;
3967 int reclaim;
3968 unsigned long flags;
3969 u8 fill_rx = 0;
3970 u32 count = 8;
3971 int total_empty;
3972
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01003973 /* uCode's read idx (stored in shared DRAM) indicates the last Rx
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003974 * buffer that the driver may process (last buffer filled by ucode). */
3975 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
3976 i = rxq->read;
3977
3978 /* Rx interrupt, but nothing sent from uCode */
3979 if (i == r)
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01003980 D_RX("r = %d, i = %d\n", r, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08003981
3982 /* calculate total frames need to be restock after handling RX */
3983 total_empty = r - rxq->write_actual;
3984 if (total_empty < 0)
3985 total_empty += RX_QUEUE_SIZE;
3986
3987 if (total_empty > (RX_QUEUE_SIZE / 2))
3988 fill_rx = 1;
3989
3990 while (i != r) {
3991 int len;
3992
3993 rxb = rxq->queue[i];
3994
3995 /* If an RXB doesn't have a Rx queue slot associated with it,
3996 * then a bug has been introduced in the queue refilling
3997 * routines -- catch it here */
3998 BUG_ON(rxb == NULL);
3999
4000 rxq->queue[i] = NULL;
4001
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004002 pci_unmap_page(il->pci_dev, rxb->page_dma,
4003 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004004 PCI_DMA_FROMDEVICE);
4005 pkt = rxb_addr(rxb);
4006
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02004007 len = le32_to_cpu(pkt->len_n_flags) & IL_RX_FRAME_SIZE_MSK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004008 len += sizeof(u32); /* account for status word */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004009
4010 /* Reclaim a command buffer only if this packet is a response
4011 * to a (driver-originated) command.
4012 * If the packet (e.g. Rx frame) originated from uCode,
4013 * there is no command buffer to reclaim.
4014 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
4015 * but apparently a few don't get set; catch them here. */
4016 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004017 (pkt->hdr.cmd != N_RX_PHY) &&
4018 (pkt->hdr.cmd != N_RX) &&
4019 (pkt->hdr.cmd != N_RX_MPDU) &&
4020 (pkt->hdr.cmd != N_COMPRESSED_BA) &&
4021 (pkt->hdr.cmd != N_STATS) &&
4022 (pkt->hdr.cmd != C_TX);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004023
4024 /* Based on type of command response or notification,
4025 * handle those that need handling via function in
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02004026 * handlers table. See il4965_setup_handlers() */
4027 if (il->handlers[pkt->hdr.cmd]) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004028 D_RX("r = %d, i = %d, %s, 0x%02x\n", r,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004029 i, il_get_cmd_string(pkt->hdr.cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004030 pkt->hdr.cmd);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02004031 il->isr_stats.handlers[pkt->hdr.cmd]++;
4032 il->handlers[pkt->hdr.cmd] (il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004033 } else {
4034 /* No handling needed */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004035 D_RX(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004036 "r %d i %d No handler needed for %s, 0x%02x\n",
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004037 r, i, il_get_cmd_string(pkt->hdr.cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004038 pkt->hdr.cmd);
4039 }
4040
4041 /*
4042 * XXX: After here, we should always check rxb->page
4043 * against NULL before touching it or its virtual
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02004044 * memory (pkt). Because some handler might have
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004045 * already taken or freed the pages.
4046 */
4047
4048 if (reclaim) {
4049 /* Invoke any callbacks, transfer the buffer to caller,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004050 * and fire off the (possibly) blocking il_send_cmd()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004051 * as we reclaim the driver command queue */
4052 if (rxb->page)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004053 il_tx_cmd_complete(il, rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004054 else
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004055 IL_WARN("Claim null rxb?\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004056 }
4057
4058 /* Reuse the page if possible. For notification packets and
4059 * SKBs that fail to Rx correctly, add them back into the
4060 * rx_free list for reuse later. */
4061 spin_lock_irqsave(&rxq->lock, flags);
4062 if (rxb->page != NULL) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004063 rxb->page_dma = pci_map_page(il->pci_dev, rxb->page,
4064 0, PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004065 PCI_DMA_FROMDEVICE);
4066 list_add_tail(&rxb->list, &rxq->rx_free);
4067 rxq->free_count++;
4068 } else
4069 list_add_tail(&rxb->list, &rxq->rx_used);
4070
4071 spin_unlock_irqrestore(&rxq->lock, flags);
4072
4073 i = (i + 1) & RX_QUEUE_MASK;
4074 /* If there are a lot of unused frames,
4075 * restock the Rx queue so ucode wont assert. */
4076 if (fill_rx) {
4077 count++;
4078 if (count >= 8) {
4079 rxq->read = i;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004080 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004081 count = 0;
4082 }
4083 }
4084 }
4085
4086 /* Backtrack one entry */
4087 rxq->read = i;
4088 if (fill_rx)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004089 il4965_rx_replenish_now(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004090 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004091 il4965_rx_queue_restock(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004092}
4093
4094/* call this function to flush any scheduled tasklet */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004095static inline void il4965_synchronize_irq(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004096{
4097 /* wait to make sure we flush pending tasklet*/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004098 synchronize_irq(il->pci_dev->irq);
4099 tasklet_kill(&il->irq_tasklet);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004100}
4101
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004102static void il4965_irq_tasklet(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004103{
4104 u32 inta, handled = 0;
4105 u32 inta_fh;
4106 unsigned long flags;
4107 u32 i;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004108#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004109 u32 inta_mask;
4110#endif
4111
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004112 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004113
4114 /* Ack/clear/reset pending uCode interrupts.
4115 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
4116 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004117 inta = _il_rd(il, CSR_INT);
4118 _il_wr(il, CSR_INT, inta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004119
4120 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
4121 * Any new interrupts that happen after this, either while we're
4122 * in this tasklet, or later, will show up in next ISR/tasklet. */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004123 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
4124 _il_wr(il, CSR_FH_INT_STATUS, inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004125
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004126#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004127 if (il_get_debug_level(il) & IL_DL_ISR) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004128 /* just for debug */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004129 inta_mask = _il_rd(il, CSR_INT_MASK);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004130 D_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004131 inta, inta_mask, inta_fh);
4132 }
4133#endif
4134
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004135 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004136
4137 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
4138 * atomic, make sure that inta covers all the interrupts that
4139 * we've discovered, even if FH interrupt came in just after
4140 * reading CSR_INT. */
4141 if (inta_fh & CSR49_FH_INT_RX_MASK)
4142 inta |= CSR_INT_BIT_FH_RX;
4143 if (inta_fh & CSR49_FH_INT_TX_MASK)
4144 inta |= CSR_INT_BIT_FH_TX;
4145
4146 /* Now service all interrupt bits discovered above. */
4147 if (inta & CSR_INT_BIT_HW_ERR) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004148 IL_ERR("Hardware error detected. Restarting.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004149
4150 /* Tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004151 il_disable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004152
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004153 il->isr_stats.hw++;
4154 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004155
4156 handled |= CSR_INT_BIT_HW_ERR;
4157
4158 return;
4159 }
4160
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004161#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004162 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004163 /* NIC fires this, but we don't use it, redundant with WAKEUP */
4164 if (inta & CSR_INT_BIT_SCD) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004165 D_ISR("Scheduler finished to transmit "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004166 "the frame/frames.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004167 il->isr_stats.sch++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004168 }
4169
4170 /* Alive notification via Rx interrupt will do the real work */
4171 if (inta & CSR_INT_BIT_ALIVE) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004172 D_ISR("Alive interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004173 il->isr_stats.alive++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004174 }
4175 }
4176#endif
4177 /* Safely ignore these bits for debug checks below */
4178 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
4179
4180 /* HW RF KILL switch toggled */
4181 if (inta & CSR_INT_BIT_RF_KILL) {
4182 int hw_rf_kill = 0;
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004183 if (!(_il_rd(il, CSR_GP_CNTRL) &
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004184 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
4185 hw_rf_kill = 1;
4186
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004187 IL_WARN("RF_KILL bit toggled to %s.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004188 hw_rf_kill ? "disable radio" : "enable radio");
4189
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004190 il->isr_stats.rfkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004191
4192 /* driver only loads ucode once setting the interface up.
4193 * the driver allows loading the ucode even if the radio
4194 * is killed. Hence update the killswitch state here. The
4195 * rfkill handler will care about restarting if needed.
4196 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004197 if (!test_bit(S_ALIVE, &il->status)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004198 if (hw_rf_kill)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004199 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004200 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004201 clear_bit(S_RF_KILL_HW, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004202 wiphy_rfkill_set_hw_state(il->hw->wiphy, hw_rf_kill);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004203 }
4204
4205 handled |= CSR_INT_BIT_RF_KILL;
4206 }
4207
4208 /* Chip got too hot and stopped itself */
4209 if (inta & CSR_INT_BIT_CT_KILL) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004210 IL_ERR("Microcode CT kill error detected.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004211 il->isr_stats.ctkill++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004212 handled |= CSR_INT_BIT_CT_KILL;
4213 }
4214
4215 /* Error detected by uCode */
4216 if (inta & CSR_INT_BIT_SW_ERR) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004217 IL_ERR("Microcode SW error detected. "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004218 " Restarting 0x%X.\n", inta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004219 il->isr_stats.sw++;
4220 il_irq_handle_error(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004221 handled |= CSR_INT_BIT_SW_ERR;
4222 }
4223
4224 /*
4225 * uCode wakes up after power-down sleep.
4226 * Tell device about any new tx or host commands enqueued,
4227 * and about any Rx buffers made available while asleep.
4228 */
4229 if (inta & CSR_INT_BIT_WAKEUP) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004230 D_ISR("Wakeup interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004231 il_rx_queue_update_write_ptr(il, &il->rxq);
4232 for (i = 0; i < il->hw_params.max_txq_num; i++)
4233 il_txq_update_write_ptr(il, &il->txq[i]);
4234 il->isr_stats.wakeup++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004235 handled |= CSR_INT_BIT_WAKEUP;
4236 }
4237
4238 /* All uCode command responses, including Tx command responses,
4239 * Rx "responses" (frame-received notification), and other
4240 * notifications from uCode come through here*/
4241 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004242 il4965_rx_handle(il);
4243 il->isr_stats.rx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004244 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
4245 }
4246
4247 /* This "Tx" DMA channel is used only for loading uCode */
4248 if (inta & CSR_INT_BIT_FH_TX) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004249 D_ISR("uCode load interrupt\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004250 il->isr_stats.tx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004251 handled |= CSR_INT_BIT_FH_TX;
4252 /* Wake up uCode load routine, now that load is complete */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004253 il->ucode_write_complete = 1;
4254 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004255 }
4256
4257 if (inta & ~handled) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004258 IL_ERR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004259 il->isr_stats.unhandled++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004260 }
4261
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004262 if (inta & ~(il->inta_mask)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004263 IL_WARN("Disabled INTA bits 0x%08x were pending\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004264 inta & ~il->inta_mask);
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004265 IL_WARN(" with FH49_INT = 0x%08x\n", inta_fh);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004266 }
4267
4268 /* Re-enable all interrupts */
Stanislaw Gruszka93fd74e2011-04-28 11:51:30 +02004269 /* only Re-enable if disabled by irq */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01004270 if (test_bit(S_INT_ENABLED, &il->status))
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004271 il_enable_interrupts(il);
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02004272 /* Re-enable RF_KILL if it occurred */
4273 else if (handled & CSR_INT_BIT_RF_KILL)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004274 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004275
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004276#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004277 if (il_get_debug_level(il) & (IL_DL_ISR)) {
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004278 inta = _il_rd(il, CSR_INT);
4279 inta_mask = _il_rd(il, CSR_INT_MASK);
4280 inta_fh = _il_rd(il, CSR_FH_INT_STATUS);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004281 D_ISR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004282 "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
4283 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
4284 }
4285#endif
4286}
4287
4288/*****************************************************************************
4289 *
4290 * sysfs attributes
4291 *
4292 *****************************************************************************/
4293
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004294#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004295
4296/*
4297 * The following adds a new attribute to the sysfs representation
4298 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
4299 * used for controlling the debug level.
4300 *
4301 * See the level definitions in iwl for details.
4302 *
4303 * The debug_level being managed using sysfs below is a per device debug
4304 * level that is used instead of the global debug level if it (the per
4305 * device debug level) is set.
4306 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004307static ssize_t il4965_show_debug_level(struct device *d,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004308 struct device_attribute *attr, char *buf)
4309{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004310 struct il_priv *il = dev_get_drvdata(d);
4311 return sprintf(buf, "0x%08X\n", il_get_debug_level(il));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004312}
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004313static ssize_t il4965_store_debug_level(struct device *d,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004314 struct device_attribute *attr,
4315 const char *buf, size_t count)
4316{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004317 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004318 unsigned long val;
4319 int ret;
4320
4321 ret = strict_strtoul(buf, 0, &val);
4322 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004323 IL_ERR("%s is not in hex or decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004324 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004325 il->debug_level = val;
4326 if (il_alloc_traffic_mem(il))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004327 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004328 "Not enough memory to generate traffic log\n");
4329 }
4330 return strnlen(buf, count);
4331}
4332
4333static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004334 il4965_show_debug_level, il4965_store_debug_level);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004335
4336
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004337#endif /* CONFIG_IWLEGACY_DEBUG */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004338
4339
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004340static ssize_t il4965_show_temperature(struct device *d,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004341 struct device_attribute *attr, char *buf)
4342{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004343 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004344
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004345 if (!il_is_alive(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004346 return -EAGAIN;
4347
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004348 return sprintf(buf, "%d\n", il->temperature);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004349}
4350
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004351static DEVICE_ATTR(temperature, S_IRUGO, il4965_show_temperature, NULL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004352
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004353static ssize_t il4965_show_tx_power(struct device *d,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004354 struct device_attribute *attr, char *buf)
4355{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004356 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004357
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004358 if (!il_is_ready_rf(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004359 return sprintf(buf, "off\n");
4360 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004361 return sprintf(buf, "%d\n", il->tx_power_user_lmt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004362}
4363
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004364static ssize_t il4965_store_tx_power(struct device *d,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004365 struct device_attribute *attr,
4366 const char *buf, size_t count)
4367{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004368 struct il_priv *il = dev_get_drvdata(d);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004369 unsigned long val;
4370 int ret;
4371
4372 ret = strict_strtoul(buf, 10, &val);
4373 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004374 IL_INFO("%s is not in decimal form.\n", buf);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004375 else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004376 ret = il_set_tx_power(il, val, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004377 if (ret)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004378 IL_ERR("failed setting tx power (0x%d).\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004379 ret);
4380 else
4381 ret = count;
4382 }
4383 return ret;
4384}
4385
4386static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004387 il4965_show_tx_power, il4965_store_tx_power);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004388
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004389static struct attribute *il_sysfs_entries[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004390 &dev_attr_temperature.attr,
4391 &dev_attr_tx_power.attr,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004392#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004393 &dev_attr_debug_level.attr,
4394#endif
4395 NULL
4396};
4397
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004398static struct attribute_group il_attribute_group = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004399 .name = NULL, /* put in device directory */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004400 .attrs = il_sysfs_entries,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004401};
4402
4403/******************************************************************************
4404 *
4405 * uCode download functions
4406 *
4407 ******************************************************************************/
4408
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004409static void il4965_dealloc_ucode_pci(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004410{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004411 il_free_fw_desc(il->pci_dev, &il->ucode_code);
4412 il_free_fw_desc(il->pci_dev, &il->ucode_data);
4413 il_free_fw_desc(il->pci_dev, &il->ucode_data_backup);
4414 il_free_fw_desc(il->pci_dev, &il->ucode_init);
4415 il_free_fw_desc(il->pci_dev, &il->ucode_init_data);
4416 il_free_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004417}
4418
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004419static void il4965_nic_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004420{
4421 /* Remove all resets to allow NIC to operate */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004422 _il_wr(il, CSR_RESET, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004423}
4424
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004425static void il4965_ucode_callback(const struct firmware *ucode_raw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004426 void *context);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004427static int il4965_mac_setup_register(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004428 u32 max_probe_length);
4429
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004430static int __must_check il4965_request_firmware(struct il_priv *il, bool first)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004431{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004432 const char *name_pre = il->cfg->fw_name_pre;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004433 char tag[8];
4434
4435 if (first) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004436 il->fw_idx = il->cfg->ucode_api_max;
4437 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004438 } else {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004439 il->fw_idx--;
4440 sprintf(tag, "%d", il->fw_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004441 }
4442
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004443 if (il->fw_idx < il->cfg->ucode_api_min) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004444 IL_ERR("no suitable firmware found!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004445 return -ENOENT;
4446 }
4447
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004448 sprintf(il->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004449
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004450 D_INFO("attempting to load firmware '%s'\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004451 il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004452
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004453 return request_firmware_nowait(THIS_MODULE, 1, il->firmware_name,
4454 &il->pci_dev->dev, GFP_KERNEL, il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004455 il4965_ucode_callback);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004456}
4457
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004458struct il4965_firmware_pieces {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004459 const void *inst, *data, *init, *init_data, *boot;
4460 size_t inst_size, data_size, init_size, init_data_size, boot_size;
4461};
4462
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004463static int il4965_load_firmware(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004464 const struct firmware *ucode_raw,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004465 struct il4965_firmware_pieces *pieces)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004466{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004467 struct il_ucode_header *ucode = (void *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004468 u32 api_ver, hdr_size;
4469 const u8 *src;
4470
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004471 il->ucode_ver = le32_to_cpu(ucode->ver);
4472 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004473
4474 switch (api_ver) {
4475 default:
4476 case 0:
4477 case 1:
4478 case 2:
4479 hdr_size = 24;
4480 if (ucode_raw->size < hdr_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004481 IL_ERR("File size too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004482 return -EINVAL;
4483 }
4484 pieces->inst_size = le32_to_cpu(ucode->v1.inst_size);
4485 pieces->data_size = le32_to_cpu(ucode->v1.data_size);
4486 pieces->init_size = le32_to_cpu(ucode->v1.init_size);
4487 pieces->init_data_size =
4488 le32_to_cpu(ucode->v1.init_data_size);
4489 pieces->boot_size = le32_to_cpu(ucode->v1.boot_size);
4490 src = ucode->v1.data;
4491 break;
4492 }
4493
4494 /* Verify size of file vs. image size info in file's header */
4495 if (ucode_raw->size != hdr_size + pieces->inst_size +
4496 pieces->data_size + pieces->init_size +
4497 pieces->init_data_size + pieces->boot_size) {
4498
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004499 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004500 "uCode file size %d does not match expected size\n",
4501 (int)ucode_raw->size);
4502 return -EINVAL;
4503 }
4504
4505 pieces->inst = src;
4506 src += pieces->inst_size;
4507 pieces->data = src;
4508 src += pieces->data_size;
4509 pieces->init = src;
4510 src += pieces->init_size;
4511 pieces->init_data = src;
4512 src += pieces->init_data_size;
4513 pieces->boot = src;
4514 src += pieces->boot_size;
4515
4516 return 0;
4517}
4518
4519/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004520 * il4965_ucode_callback - callback when firmware was loaded
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004521 *
4522 * If loaded successfully, copies the firmware into buffers
4523 * for the card to fetch (via DMA).
4524 */
4525static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004526il4965_ucode_callback(const struct firmware *ucode_raw, void *context)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004527{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004528 struct il_priv *il = context;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004529 struct il_ucode_header *ucode;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004530 int err;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004531 struct il4965_firmware_pieces pieces;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004532 const unsigned int api_max = il->cfg->ucode_api_max;
4533 const unsigned int api_min = il->cfg->ucode_api_min;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004534 u32 api_ver;
4535
4536 u32 max_probe_length = 200;
4537 u32 standard_phy_calibration_size =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004538 IL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004539
4540 memset(&pieces, 0, sizeof(pieces));
4541
4542 if (!ucode_raw) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004543 if (il->fw_idx <= il->cfg->ucode_api_max)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004544 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004545 "request for firmware file '%s' failed.\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004546 il->firmware_name);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004547 goto try_again;
4548 }
4549
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004550 D_INFO("Loaded firmware file '%s' (%zd bytes).\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004551 il->firmware_name, ucode_raw->size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004552
4553 /* Make sure that we got at least the API version number */
4554 if (ucode_raw->size < 4) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004555 IL_ERR("File size way too small!\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004556 goto try_again;
4557 }
4558
4559 /* Data from ucode file: header followed by uCode images */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004560 ucode = (struct il_ucode_header *)ucode_raw->data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004561
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004562 err = il4965_load_firmware(il, ucode_raw, &pieces);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004563
4564 if (err)
4565 goto try_again;
4566
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004567 api_ver = IL_UCODE_API(il->ucode_ver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004568
4569 /*
4570 * api_ver should match the api version forming part of the
4571 * firmware filename ... but we don't check for that and only rely
4572 * on the API version read from firmware header from here on forward
4573 */
4574 if (api_ver < api_min || api_ver > api_max) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004575 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004576 "Driver unable to support your firmware API. "
4577 "Driver supports v%u, firmware is v%u.\n",
4578 api_max, api_ver);
4579 goto try_again;
4580 }
4581
4582 if (api_ver != api_max)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004583 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004584 "Firmware has old API version. Expected v%u, "
4585 "got v%u. New firmware can be obtained "
4586 "from http://www.intellinuxwireless.org.\n",
4587 api_max, api_ver);
4588
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004589 IL_INFO("loaded firmware version %u.%u.%u.%u\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004590 IL_UCODE_MAJOR(il->ucode_ver),
4591 IL_UCODE_MINOR(il->ucode_ver),
4592 IL_UCODE_API(il->ucode_ver),
4593 IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004594
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004595 snprintf(il->hw->wiphy->fw_version,
4596 sizeof(il->hw->wiphy->fw_version),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004597 "%u.%u.%u.%u",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004598 IL_UCODE_MAJOR(il->ucode_ver),
4599 IL_UCODE_MINOR(il->ucode_ver),
4600 IL_UCODE_API(il->ucode_ver),
4601 IL_UCODE_SERIAL(il->ucode_ver));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004602
4603 /*
4604 * For any of the failures below (before allocating pci memory)
4605 * we will try to load a version with a smaller API -- maybe the
4606 * user just got a corrupted version of the latest API.
4607 */
4608
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004609 D_INFO("f/w package hdr ucode version raw = 0x%x\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004610 il->ucode_ver);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004611 D_INFO("f/w package hdr runtime inst size = %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004612 pieces.inst_size);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004613 D_INFO("f/w package hdr runtime data size = %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004614 pieces.data_size);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004615 D_INFO("f/w package hdr init inst size = %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004616 pieces.init_size);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004617 D_INFO("f/w package hdr init data size = %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004618 pieces.init_data_size);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004619 D_INFO("f/w package hdr boot inst size = %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004620 pieces.boot_size);
4621
4622 /* Verify that uCode images will fit in card's SRAM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004623 if (pieces.inst_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004624 IL_ERR("uCode instr len %Zd too large to fit in\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004625 pieces.inst_size);
4626 goto try_again;
4627 }
4628
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004629 if (pieces.data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004630 IL_ERR("uCode data len %Zd too large to fit in\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004631 pieces.data_size);
4632 goto try_again;
4633 }
4634
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004635 if (pieces.init_size > il->hw_params.max_inst_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004636 IL_ERR("uCode init instr len %Zd too large to fit in\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004637 pieces.init_size);
4638 goto try_again;
4639 }
4640
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004641 if (pieces.init_data_size > il->hw_params.max_data_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004642 IL_ERR("uCode init data len %Zd too large to fit in\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004643 pieces.init_data_size);
4644 goto try_again;
4645 }
4646
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004647 if (pieces.boot_size > il->hw_params.max_bsm_size) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004648 IL_ERR("uCode boot instr len %Zd too large to fit in\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004649 pieces.boot_size);
4650 goto try_again;
4651 }
4652
4653 /* Allocate ucode buffers for card's bus-master loading ... */
4654
4655 /* Runtime instructions and 2 copies of data:
4656 * 1) unmodified from disk
4657 * 2) backup cache for save/restore during power-downs */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004658 il->ucode_code.len = pieces.inst_size;
4659 il_alloc_fw_desc(il->pci_dev, &il->ucode_code);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004660
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004661 il->ucode_data.len = pieces.data_size;
4662 il_alloc_fw_desc(il->pci_dev, &il->ucode_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004663
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004664 il->ucode_data_backup.len = pieces.data_size;
4665 il_alloc_fw_desc(il->pci_dev, &il->ucode_data_backup);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004666
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004667 if (!il->ucode_code.v_addr || !il->ucode_data.v_addr ||
4668 !il->ucode_data_backup.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004669 goto err_pci_alloc;
4670
4671 /* Initialization instructions and data */
4672 if (pieces.init_size && pieces.init_data_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004673 il->ucode_init.len = pieces.init_size;
4674 il_alloc_fw_desc(il->pci_dev, &il->ucode_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004675
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004676 il->ucode_init_data.len = pieces.init_data_size;
4677 il_alloc_fw_desc(il->pci_dev, &il->ucode_init_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004678
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004679 if (!il->ucode_init.v_addr || !il->ucode_init_data.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004680 goto err_pci_alloc;
4681 }
4682
4683 /* Bootstrap (instructions only, no data) */
4684 if (pieces.boot_size) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004685 il->ucode_boot.len = pieces.boot_size;
4686 il_alloc_fw_desc(il->pci_dev, &il->ucode_boot);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004687
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004688 if (!il->ucode_boot.v_addr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004689 goto err_pci_alloc;
4690 }
4691
4692 /* Now that we can no longer fail, copy information */
4693
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004694 il->sta_key_max_num = STA_KEY_MAX_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004695
4696 /* Copy images into buffers for card's bus-master reads ... */
4697
4698 /* Runtime instructions (first block of data in file) */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004699 D_INFO("Copying (but not loading) uCode instr len %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004700 pieces.inst_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004701 memcpy(il->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004702
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004703 D_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004704 il->ucode_code.v_addr, (u32)il->ucode_code.p_addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004705
4706 /*
4707 * Runtime data
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004708 * NOTE: Copy into backup buffer will be done in il_up()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004709 */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004710 D_INFO("Copying (but not loading) uCode data len %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004711 pieces.data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004712 memcpy(il->ucode_data.v_addr, pieces.data, pieces.data_size);
4713 memcpy(il->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004714
4715 /* Initialization instructions */
4716 if (pieces.init_size) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004717 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004718 "Copying (but not loading) init instr len %Zd\n",
4719 pieces.init_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004720 memcpy(il->ucode_init.v_addr, pieces.init, pieces.init_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004721 }
4722
4723 /* Initialization data */
4724 if (pieces.init_data_size) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004725 D_INFO(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004726 "Copying (but not loading) init data len %Zd\n",
4727 pieces.init_data_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004728 memcpy(il->ucode_init_data.v_addr, pieces.init_data,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004729 pieces.init_data_size);
4730 }
4731
4732 /* Bootstrap instructions */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01004733 D_INFO("Copying (but not loading) boot instr len %Zd\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004734 pieces.boot_size);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004735 memcpy(il->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004736
4737 /*
4738 * figure out the offset of chain noise reset and gain commands
4739 * base on the size of standard phy calibration commands table size
4740 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004741 il->_4965.phy_calib_chain_noise_reset_cmd =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004742 standard_phy_calibration_size;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004743 il->_4965.phy_calib_chain_noise_gain_cmd =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004744 standard_phy_calibration_size + 1;
4745
4746 /**************************************************
4747 * This is still part of probe() in a sense...
4748 *
4749 * 9. Setup and register with mac80211 and debugfs
4750 **************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004751 err = il4965_mac_setup_register(il, max_probe_length);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004752 if (err)
4753 goto out_unbind;
4754
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004755 err = il_dbgfs_register(il, DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004756 if (err)
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004757 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004758 "failed to create debugfs files. Ignoring error: %d\n", err);
4759
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004760 err = sysfs_create_group(&il->pci_dev->dev.kobj,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004761 &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004762 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004763 IL_ERR("failed to create sysfs device attributes\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004764 goto out_unbind;
4765 }
4766
4767 /* We have our copies now, allow OS release its copies */
4768 release_firmware(ucode_raw);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004769 complete(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004770 return;
4771
4772 try_again:
4773 /* try next, if any */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004774 if (il4965_request_firmware(il, false))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004775 goto out_unbind;
4776 release_firmware(ucode_raw);
4777 return;
4778
4779 err_pci_alloc:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004780 IL_ERR("failed to allocate pci memory\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004781 il4965_dealloc_ucode_pci(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004782 out_unbind:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004783 complete(&il->_4965.firmware_loading_complete);
4784 device_release_driver(&il->pci_dev->dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004785 release_firmware(ucode_raw);
4786}
4787
4788static const char * const desc_lookup_text[] = {
4789 "OK",
4790 "FAIL",
4791 "BAD_PARAM",
4792 "BAD_CHECKSUM",
4793 "NMI_INTERRUPT_WDG",
4794 "SYSASSERT",
4795 "FATAL_ERROR",
4796 "BAD_COMMAND",
4797 "HW_ERROR_TUNE_LOCK",
4798 "HW_ERROR_TEMPERATURE",
4799 "ILLEGAL_CHAN_FREQ",
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02004800 "VCC_NOT_STBL",
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004801 "FH49_ERROR",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004802 "NMI_INTERRUPT_HOST",
4803 "NMI_INTERRUPT_ACTION_PT",
4804 "NMI_INTERRUPT_UNKNOWN",
4805 "UCODE_VERSION_MISMATCH",
4806 "HW_ERROR_ABS_LOCK",
4807 "HW_ERROR_CAL_LOCK_FAIL",
4808 "NMI_INTERRUPT_INST_ACTION_PT",
4809 "NMI_INTERRUPT_DATA_ACTION_PT",
4810 "NMI_TRM_HW_ER",
4811 "NMI_INTERRUPT_TRM",
Joe Perches861d9c32011-07-08 23:20:24 -07004812 "NMI_INTERRUPT_BREAK_POINT",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004813 "DEBUG_0",
4814 "DEBUG_1",
4815 "DEBUG_2",
4816 "DEBUG_3",
4817};
4818
4819static struct { char *name; u8 num; } advanced_lookup[] = {
4820 { "NMI_INTERRUPT_WDG", 0x34 },
4821 { "SYSASSERT", 0x35 },
4822 { "UCODE_VERSION_MISMATCH", 0x37 },
4823 { "BAD_COMMAND", 0x38 },
4824 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
4825 { "FATAL_ERROR", 0x3D },
4826 { "NMI_TRM_HW_ERR", 0x46 },
4827 { "NMI_INTERRUPT_TRM", 0x4C },
4828 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
4829 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
4830 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
4831 { "NMI_INTERRUPT_HOST", 0x66 },
4832 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
4833 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
4834 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
4835 { "ADVANCED_SYSASSERT", 0 },
4836};
4837
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004838static const char *il4965_desc_lookup(u32 num)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004839{
4840 int i;
4841 int max = ARRAY_SIZE(desc_lookup_text);
4842
4843 if (num < max)
4844 return desc_lookup_text[num];
4845
4846 max = ARRAY_SIZE(advanced_lookup) - 1;
4847 for (i = 0; i < max; i++) {
4848 if (advanced_lookup[i].num == num)
4849 break;
4850 }
4851 return advanced_lookup[i].name;
4852}
4853
4854#define ERROR_START_OFFSET (1 * sizeof(u32))
4855#define ERROR_ELEM_SIZE (7 * sizeof(u32))
4856
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004857void il4965_dump_nic_error_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004858{
4859 u32 data2, line;
4860 u32 desc, time, count, base, data1;
4861 u32 blink1, blink2, ilink1, ilink2;
4862 u32 pc, hcmd;
4863
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004864 if (il->ucode_type == UCODE_INIT) {
4865 base = le32_to_cpu(il->card_alive_init.error_event_table_ptr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004866 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004867 base = le32_to_cpu(il->card_alive.error_event_table_ptr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004868 }
4869
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004870 if (!il->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004871 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004872 "Not valid error log pointer 0x%08X for %s uCode\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004873 base, (il->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004874 return;
4875 }
4876
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004877 count = il_read_targ_mem(il, base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004878
4879 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004880 IL_ERR("Start IWL Error Log Dump:\n");
4881 IL_ERR("Status: 0x%08lX, count: %d\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004882 il->status, count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004883 }
4884
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004885 desc = il_read_targ_mem(il, base + 1 * sizeof(u32));
4886 il->isr_stats.err_code = desc;
4887 pc = il_read_targ_mem(il, base + 2 * sizeof(u32));
4888 blink1 = il_read_targ_mem(il, base + 3 * sizeof(u32));
4889 blink2 = il_read_targ_mem(il, base + 4 * sizeof(u32));
4890 ilink1 = il_read_targ_mem(il, base + 5 * sizeof(u32));
4891 ilink2 = il_read_targ_mem(il, base + 6 * sizeof(u32));
4892 data1 = il_read_targ_mem(il, base + 7 * sizeof(u32));
4893 data2 = il_read_targ_mem(il, base + 8 * sizeof(u32));
4894 line = il_read_targ_mem(il, base + 9 * sizeof(u32));
4895 time = il_read_targ_mem(il, base + 11 * sizeof(u32));
4896 hcmd = il_read_targ_mem(il, base + 22 * sizeof(u32));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004897
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004898 IL_ERR("Desc Time "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004899 "data1 data2 line\n");
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004900 IL_ERR("%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004901 il4965_desc_lookup(desc), desc, time, data1, data2, line);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02004902 IL_ERR("pc blink1 blink2 ilink1 ilink2 hcmd\n");
4903 IL_ERR("0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004904 pc, blink1, blink2, ilink1, ilink2, hcmd);
4905}
4906
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004907static void il4965_rf_kill_ct_config(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004908{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004909 struct il_ct_kill_config cmd;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004910 unsigned long flags;
4911 int ret = 0;
4912
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004913 spin_lock_irqsave(&il->lock, flags);
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02004914 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004915 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004916 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004917
4918 cmd.critical_temperature_R =
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004919 cpu_to_le32(il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004920
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004921 ret = il_send_cmd_pdu(il, C_CT_KILL_CONFIG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004922 sizeof(cmd), &cmd);
4923 if (ret)
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004924 IL_ERR("C_CT_KILL_CONFIG failed\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004925 else
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02004926 D_INFO("C_CT_KILL_CONFIG "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004927 "succeeded, "
4928 "critical temperature is %d\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004929 il->hw_params.ct_kill_threshold);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004930}
4931
4932static const s8 default_queue_to_tx_fifo[] = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004933 IL_TX_FIFO_VO,
4934 IL_TX_FIFO_VI,
4935 IL_TX_FIFO_BE,
4936 IL_TX_FIFO_BK,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004937 IL49_CMD_FIFO_NUM,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02004938 IL_TX_FIFO_UNUSED,
4939 IL_TX_FIFO_UNUSED,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004940};
4941
Stanislaw Gruszkae53aac42011-08-31 11:18:16 +02004942#define IL_MASK(lo, hi) ((1 << (hi)) | ((1 << (hi)) - (1 << (lo))))
4943
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004944static int il4965_alive_notify(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004945{
4946 u32 a;
4947 unsigned long flags;
4948 int i, chan;
4949 u32 reg_val;
4950
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004951 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004952
4953 /* Clear 4965's internal Tx Scheduler data base */
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02004954 il->scd_base_addr = il_rd_prph(il,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004955 IL49_SCD_SRAM_BASE_ADDR);
4956 a = il->scd_base_addr + IL49_SCD_CONTEXT_DATA_OFFSET;
4957 for (; a < il->scd_base_addr + IL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004958 il_write_targ_mem(il, a, 0);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004959 for (; a < il->scd_base_addr + IL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004960 il_write_targ_mem(il, a, 0);
4961 for (; a < il->scd_base_addr +
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004962 IL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(il->hw_params.max_txq_num); a += 4)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004963 il_write_targ_mem(il, a, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004964
4965 /* Tel 4965 where to find Tx byte count tables */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004966 il_wr_prph(il, IL49_SCD_DRAM_BASE_ADDR,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004967 il->scd_bc_tbls.dma >> 10);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004968
4969 /* Enable DMA channel */
4970 for (chan = 0; chan < FH49_TCSR_CHNL_NUM ; chan++)
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02004971 il_wr(il,
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004972 FH49_TCSR_CHNL_TX_CONFIG_REG(chan),
4973 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
4974 FH49_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004975
4976 /* Update FH chicken bits */
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02004977 reg_val = il_rd(il, FH49_TX_CHICKEN_BITS_REG);
4978 il_wr(il, FH49_TX_CHICKEN_BITS_REG,
4979 reg_val | FH49_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004980
4981 /* Disable chain mode for all queues */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004982 il_wr_prph(il, IL49_SCD_QUEUECHAIN_SEL, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004983
4984 /* Initialize each Tx queue (including the command queue) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004985 for (i = 0; i < il->hw_params.max_txq_num; i++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004986
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01004987 /* TFD circular buffer read/write idxes */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004988 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(i), 0);
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02004989 il_wr(il, HBUS_TARG_WRPTR, 0 | (i << 8));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004990
4991 /* Max Tx Window size for Scheduler-ACK mode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004992 il_write_targ_mem(il, il->scd_base_addr +
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004993 IL49_SCD_CONTEXT_QUEUE_OFFSET(i),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004994 (SCD_WIN_SIZE <<
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01004995 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
4996 IL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004997
4998 /* Frame limit */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02004999 il_write_targ_mem(il, il->scd_base_addr +
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01005000 IL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005001 sizeof(u32),
5002 (SCD_FRAME_LIMIT <<
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01005003 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
5004 IL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005005
5006 }
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01005007 il_wr_prph(il, IL49_SCD_INTERRUPT_MASK,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005008 (1 << il->hw_params.max_txq_num) - 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005009
5010 /* Activate all Tx DMA/FIFO channels */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005011 il4965_txq_set_sched(il, IL_MASK(0, 6));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005012
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005013 il4965_set_wr_ptrs(il, IL_DEFAULT_CMD_QUEUE_NUM, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005014
5015 /* make sure all queue are not stopped */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005016 memset(&il->queue_stopped[0], 0, sizeof(il->queue_stopped));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005017 for (i = 0; i < 4; i++)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005018 atomic_set(&il->queue_stop_count[i], 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005019
5020 /* reset to 0 to enable all the queue first */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005021 il->txq_ctx_active_msk = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005022 /* Map each Tx/cmd queue to its corresponding fifo */
5023 BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7);
5024
5025 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
5026 int ac = default_queue_to_tx_fifo[i];
5027
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005028 il_txq_ctx_activate(il, i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005029
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005030 if (ac == IL_TX_FIFO_UNUSED)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005031 continue;
5032
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005033 il4965_tx_queue_set_status(il, &il->txq[i], ac, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005034 }
5035
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005036 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005037
5038 return 0;
5039}
5040
5041/**
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02005042 * il4965_alive_start - called after N_ALIVE notification received
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005043 * from protocol/runtime uCode (initialization uCode's
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005044 * Alive gets handled by il_init_alive_start()).
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005045 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005046static void il4965_alive_start(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005047{
5048 int ret = 0;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005049 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005050
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005051 D_INFO("Runtime Alive received.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005052
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005053 if (il->card_alive.is_valid != UCODE_VALID_OK) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005054 /* We had an error bringing up the hardware, so take it
5055 * all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005056 D_INFO("Alive failed.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005057 goto restart;
5058 }
5059
5060 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
5061 * This is a paranoid check, because we would not have gotten the
5062 * "runtime" alive if code weren't properly loaded. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005063 if (il4965_verify_ucode(il)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005064 /* Runtime instruction load was bad;
5065 * take it all the way back down so we can try again */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005066 D_INFO("Bad runtime uCode load.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005067 goto restart;
5068 }
5069
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005070 ret = il4965_alive_notify(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005071 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005072 IL_WARN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005073 "Could not complete ALIVE transition [ntf]: %d\n", ret);
5074 goto restart;
5075 }
5076
5077
5078 /* After the ALIVE response, we can send host commands to the uCode */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005079 set_bit(S_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005080
5081 /* Enable watchdog to monitor the driver tx queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005082 il_setup_watchdog(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005083
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005084 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005085 return;
5086
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005087 ieee80211_wake_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005088
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02005089 il->active_rate = RATES_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005090
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005091 if (il_is_associated_ctx(ctx)) {
5092 struct il_rxon_cmd *active_rxon =
5093 (struct il_rxon_cmd *)&ctx->active;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005094 /* apply any changes in staging */
5095 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
5096 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
5097 } else {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005098 /* Initialize our rx_config data */
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005099 il_connection_init_rx_config(il, &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005100
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005101 if (il->cfg->ops->hcmd->set_rxon_chain)
5102 il->cfg->ops->hcmd->set_rxon_chain(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005103 }
5104
5105 /* Configure bluetooth coexistence if enabled */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005106 il_send_bt_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005107
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005108 il4965_reset_run_time_calib(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005109
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005110 set_bit(S_READY, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005111
5112 /* Configure the adapter for unassociated operation */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005113 il_commit_rxon(il, ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005114
5115 /* At this point, the NIC is initialized and operational */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005116 il4965_rf_kill_ct_config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005117
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005118 D_INFO("ALIVE processing complete.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005119 wake_up(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005120
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005121 il_power_update_mode(il, true);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005122 D_INFO("Updated power mode\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005123
5124 return;
5125
5126 restart:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005127 queue_work(il->workqueue, &il->restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005128}
5129
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005130static void il4965_cancel_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005131
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005132static void __il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005133{
5134 unsigned long flags;
Stanislaw Gruszkaab42b402011-04-28 11:51:24 +02005135 int exit_pending;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005136
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005137 D_INFO(DRV_NAME " is going down\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005138
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005139 il_scan_cancel_timeout(il, 200);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005140
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005141 exit_pending = test_and_set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005142
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005143 /* Stop TX queues watchdog. We need to have S_EXIT_PENDING bit set
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005144 * to prevent rearm timer */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005145 del_timer_sync(&il->watchdog);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005146
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005147 il_clear_ucode_stations(il, NULL);
5148 il_dealloc_bcast_stations(il);
5149 il_clear_driver_stations(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005150
5151 /* Unblock any waiting calls */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005152 wake_up_all(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005153
5154 /* Wipe out the EXIT_PENDING status bit if we are not actually
5155 * exiting the module */
5156 if (!exit_pending)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005157 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005158
5159 /* stop and reset the on-board processor */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005160 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005161
5162 /* tell the device to stop sending interrupts */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005163 spin_lock_irqsave(&il->lock, flags);
5164 il_disable_interrupts(il);
5165 spin_unlock_irqrestore(&il->lock, flags);
5166 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005167
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005168 if (il->mac80211_registered)
5169 ieee80211_stop_queues(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005170
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005171 /* If we have not previously called il_init() then
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005172 * clear all bits but the RF Kill bit and return */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005173 if (!il_is_init(il)) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005174 il->status = test_bit(S_RF_KILL_HW, &il->status) <<
5175 S_RF_KILL_HW |
5176 test_bit(S_GEO_CONFIGURED, &il->status) <<
5177 S_GEO_CONFIGURED |
5178 test_bit(S_EXIT_PENDING, &il->status) <<
5179 S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005180 goto exit;
5181 }
5182
5183 /* ...otherwise clear out all the status bits but the RF Kill
5184 * bit and continue taking the NIC down. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005185 il->status &= test_bit(S_RF_KILL_HW, &il->status) <<
5186 S_RF_KILL_HW |
5187 test_bit(S_GEO_CONFIGURED, &il->status) <<
5188 S_GEO_CONFIGURED |
5189 test_bit(S_FW_ERROR, &il->status) <<
5190 S_FW_ERROR |
5191 test_bit(S_EXIT_PENDING, &il->status) <<
5192 S_EXIT_PENDING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005193
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005194 il4965_txq_ctx_stop(il);
5195 il4965_rxq_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005196
5197 /* Power-down device's busmaster DMA clocks */
Stanislaw Gruszkadb54eb52011-08-24 21:06:33 +02005198 il_wr_prph(il, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005199 udelay(5);
5200
5201 /* Make sure (redundant) we've released our request to stay awake */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005202 il_clear_bit(il, CSR_GP_CNTRL,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005203 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
5204
5205 /* Stop the device, and put it in low power state */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005206 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005207
5208 exit:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005209 memset(&il->card_alive, 0, sizeof(struct il_alive_resp));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005210
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005211 dev_kfree_skb(il->beacon_skb);
5212 il->beacon_skb = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005213
5214 /* clear out any free frames */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005215 il4965_clear_free_frames(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005216}
5217
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005218static void il4965_down(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005219{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005220 mutex_lock(&il->mutex);
5221 __il4965_down(il);
5222 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005223
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005224 il4965_cancel_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005225}
5226
5227#define HW_READY_TIMEOUT (50)
5228
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005229static int il4965_set_hw_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005230{
5231 int ret = 0;
5232
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005233 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005234 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
5235
5236 /* See if we got it */
Stanislaw Gruszka142b3432011-08-24 15:22:57 +02005237 ret = _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005238 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
5239 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
5240 HW_READY_TIMEOUT);
5241 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005242 il->hw_ready = true;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005243 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005244 il->hw_ready = false;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005245
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005246 D_INFO("hardware %s\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005247 (il->hw_ready == 1) ? "ready" : "not ready");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005248 return ret;
5249}
5250
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005251static int il4965_prepare_card_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005252{
5253 int ret = 0;
5254
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005255 D_INFO("il4965_prepare_card_hw enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005256
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005257 ret = il4965_set_hw_ready(il);
5258 if (il->hw_ready)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005259 return ret;
5260
5261 /* If HW is not ready, prepare the conditions to check again */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005262 il_set_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005263 CSR_HW_IF_CONFIG_REG_PREPARE);
5264
Stanislaw Gruszka142b3432011-08-24 15:22:57 +02005265 ret = _il_poll_bit(il, CSR_HW_IF_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005266 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
5267 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
5268
5269 /* HW should be ready by now, check again. */
5270 if (ret != -ETIMEDOUT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005271 il4965_set_hw_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005272
5273 return ret;
5274}
5275
5276#define MAX_HW_RESTARTS 5
5277
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005278static int __il4965_up(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005279{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005280 int i;
5281 int ret;
5282
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005283 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005284 IL_WARN("Exit pending; will not bring the NIC up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005285 return -EIO;
5286 }
5287
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005288 if (!il->ucode_data_backup.v_addr || !il->ucode_data.v_addr) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005289 IL_ERR("ucode not available for device bringup\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005290 return -EIO;
5291 }
5292
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005293 ret = il4965_alloc_bcast_station(il, &il->ctx);
5294 if (ret) {
5295 il_dealloc_bcast_stations(il);
5296 return ret;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005297 }
5298
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005299 il4965_prepare_card_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005300
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005301 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005302 IL_WARN("Exit HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005303 return -EIO;
5304 }
5305
5306 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005307 if (_il_rd(il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005308 CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005309 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005310 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005311 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005312
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005313 if (il_is_rfkill(il)) {
5314 wiphy_rfkill_set_hw_state(il->hw->wiphy, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005315
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005316 il_enable_interrupts(il);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005317 IL_WARN("Radio disabled by HW RF Kill switch\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005318 return 0;
5319 }
5320
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005321 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005322
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005323 /* must be initialised before il_hw_nic_init */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005324 il->cmd_queue = IL_DEFAULT_CMD_QUEUE_NUM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005325
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005326 ret = il4965_hw_nic_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005327 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005328 IL_ERR("Unable to init nic\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005329 return ret;
5330 }
5331
5332 /* make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005333 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5334 _il_wr(il, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005335 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
5336
5337 /* clear (again), then enable host interrupts */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005338 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005339 il_enable_interrupts(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005340
5341 /* really make sure rfkill handshake bits are cleared */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005342 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
5343 _il_wr(il, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005344
5345 /* Copy original ucode data image from disk into backup cache.
5346 * This will be used to initialize the on-board processor's
5347 * data SRAM for a clean start when the runtime program first loads. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005348 memcpy(il->ucode_data_backup.v_addr, il->ucode_data.v_addr,
5349 il->ucode_data.len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005350
5351 for (i = 0; i < MAX_HW_RESTARTS; i++) {
5352
5353 /* load bootstrap state machine,
5354 * load bootstrap program into processor's memory,
5355 * prepare to load the "initialize" uCode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005356 ret = il->cfg->ops->lib->load_ucode(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005357
5358 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005359 IL_ERR("Unable to set up bootstrap uCode: %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005360 ret);
5361 continue;
5362 }
5363
5364 /* start card; "initialize" will load runtime ucode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005365 il4965_nic_start(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005366
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005367 D_INFO(DRV_NAME " is coming up\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005368
5369 return 0;
5370 }
5371
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005372 set_bit(S_EXIT_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005373 __il4965_down(il);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005374 clear_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005375
5376 /* tried to restart and config the device for as long as our
5377 * patience could withstand */
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005378 IL_ERR("Unable to initialize device after %d attempts.\n", i);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005379 return -EIO;
5380}
5381
5382
5383/*****************************************************************************
5384 *
5385 * Workqueue callbacks
5386 *
5387 *****************************************************************************/
5388
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005389static void il4965_bg_init_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005390{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005391 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005392 container_of(data, struct il_priv, init_alive_start.work);
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 Gruszka28a6e572011-04-28 11:51:32 +02005396 goto out;
5397
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005398 il->cfg->ops->lib->init_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005399out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005400 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005401}
5402
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005403static void il4965_bg_alive_start(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005404{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005405 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005406 container_of(data, struct il_priv, alive_start.work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005407
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005408 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005409 if (test_bit(S_EXIT_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005410 goto out;
5411
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005412 il4965_alive_start(il);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005413out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005414 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005415}
5416
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005417static void il4965_bg_run_time_calib_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005418{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005419 struct il_priv *il = container_of(work, struct il_priv,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005420 run_time_calib_work);
5421
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005422 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005423
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005424 if (test_bit(S_EXIT_PENDING, &il->status) ||
5425 test_bit(S_SCANNING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005426 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005427 return;
5428 }
5429
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005430 if (il->start_calib) {
5431 il4965_chain_noise_calibration(il,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005432 (void *)&il->_4965.stats);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005433 il4965_sensitivity_calibration(il,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005434 (void *)&il->_4965.stats);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005435 }
5436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005437 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005438}
5439
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005440static void il4965_bg_restart(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005441{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005442 struct il_priv *il = container_of(data, struct il_priv, restart);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005443
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005444 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005445 return;
5446
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005447 if (test_and_clear_bit(S_FW_ERROR, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005448 mutex_lock(&il->mutex);
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005449 il->ctx.vif = NULL;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005450 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005451
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005452 __il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005453
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005454 mutex_unlock(&il->mutex);
5455 il4965_cancel_deferred_work(il);
5456 ieee80211_restart_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005457 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005458 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005459
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005460 mutex_lock(&il->mutex);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005461 if (test_bit(S_EXIT_PENDING, &il->status)) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005462 mutex_unlock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005463 return;
5464 }
5465
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005466 __il4965_up(il);
5467 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005468 }
5469}
5470
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005471static void il4965_bg_rx_replenish(struct work_struct *data)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005472{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005473 struct il_priv *il =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005474 container_of(data, struct il_priv, rx_replenish);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005475
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005476 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005477 return;
5478
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005479 mutex_lock(&il->mutex);
5480 il4965_rx_replenish(il);
5481 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005482}
5483
5484/*****************************************************************************
5485 *
5486 * mac80211 entry point functions
5487 *
5488 *****************************************************************************/
5489
5490#define UCODE_READY_TIMEOUT (4 * HZ)
5491
5492/*
5493 * Not a mac80211 entry point function, but it fits in with all the
5494 * other mac80211 functions grouped here.
5495 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005496static int il4965_mac_setup_register(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005497 u32 max_probe_length)
5498{
5499 int ret;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005500 struct ieee80211_hw *hw = il->hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005501
5502 hw->rate_control_algorithm = "iwl-4965-rs";
5503
5504 /* Tell mac80211 our characteristics */
5505 hw->flags = IEEE80211_HW_SIGNAL_DBM |
5506 IEEE80211_HW_AMPDU_AGGREGATION |
5507 IEEE80211_HW_NEED_DTIM_PERIOD |
5508 IEEE80211_HW_SPECTRUM_MGMT |
5509 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
5510
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005511 if (il->cfg->sku & IL_SKU_N)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005512 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
5513 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
5514
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005515 hw->sta_data_size = sizeof(struct il_station_priv);
5516 hw->vif_data_size = sizeof(struct il_vif_priv);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005517
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005518 hw->wiphy->interface_modes |= il->ctx.interface_modes;
5519 hw->wiphy->interface_modes |= il->ctx.exclusive_interface_modes;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005520
5521 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
5522 WIPHY_FLAG_DISABLE_BEACON_HINTS;
5523
5524 /*
5525 * For now, disable PS by default because it affects
5526 * RX performance significantly.
5527 */
5528 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
5529
5530 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
5531 /* we create the 802.11 header and a zero-length SSID element */
5532 hw->wiphy->max_scan_ie_len = max_probe_length - 24 - 2;
5533
5534 /* Default value; 4 EDCA QOS priorities */
5535 hw->queues = 4;
5536
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005537 hw->max_listen_interval = IL_CONN_MAX_LISTEN_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005538
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005539 if (il->bands[IEEE80211_BAND_2GHZ].n_channels)
5540 il->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
5541 &il->bands[IEEE80211_BAND_2GHZ];
5542 if (il->bands[IEEE80211_BAND_5GHZ].n_channels)
5543 il->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
5544 &il->bands[IEEE80211_BAND_5GHZ];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005545
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005546 il_leds_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005547
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005548 ret = ieee80211_register_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005549 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005550 IL_ERR("Failed to register hw (error %d)\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005551 return ret;
5552 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005553 il->mac80211_registered = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005554
5555 return 0;
5556}
5557
5558
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005559int il4965_mac_start(struct ieee80211_hw *hw)
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 int ret;
5563
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005564 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005565
5566 /* we should be verifying the device is ready to be opened */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005567 mutex_lock(&il->mutex);
5568 ret = __il4965_up(il);
5569 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005570
5571 if (ret)
5572 return ret;
5573
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005574 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005575 goto out;
5576
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005577 D_INFO("Start UP work done.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005578
5579 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
5580 * mac80211 will not be run successfully. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005581 ret = wait_event_timeout(il->wait_command_queue,
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005582 test_bit(S_READY, &il->status),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005583 UCODE_READY_TIMEOUT);
5584 if (!ret) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005585 if (!test_bit(S_READY, &il->status)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005586 IL_ERR("START_ALIVE timeout after %dms.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005587 jiffies_to_msecs(UCODE_READY_TIMEOUT));
5588 return -ETIMEDOUT;
5589 }
5590 }
5591
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005592 il4965_led_enable(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005593
5594out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005595 il->is_open = 1;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005596 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005597 return 0;
5598}
5599
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005600void il4965_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005601{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005602 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005603
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005604 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005605
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005606 if (!il->is_open)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005607 return;
5608
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005609 il->is_open = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005610
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005611 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005612
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005613 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005614
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02005615 /* User space software may expect getting rfkill changes
5616 * even if interface is down */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02005617 _il_wr(il, CSR_INT, 0xFFFFFFFF);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005618 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005619
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005620 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005621}
5622
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005623void il4965_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005624{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005625 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005626
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005627 D_MACDUMP("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005628
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005629 D_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005630 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
5631
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005632 if (il4965_tx_skb(il, skb))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005633 dev_kfree_skb_any(skb);
5634
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005635 D_MACDUMP("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005636}
5637
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005638void il4965_mac_update_tkip_key(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005639 struct ieee80211_vif *vif,
5640 struct ieee80211_key_conf *keyconf,
5641 struct ieee80211_sta *sta,
5642 u32 iv32, u16 *phase1key)
5643{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005644 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005645 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005646
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005647 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005648
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005649 il4965_update_tkip_key(il, vif_priv->ctx, keyconf, sta,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005650 iv32, phase1key);
5651
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005652 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005653}
5654
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005655int il4965_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005656 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
5657 struct ieee80211_key_conf *key)
5658{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005659 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005660 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
5661 struct il_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005662 int ret;
5663 u8 sta_id;
5664 bool is_default_wep_key = false;
5665
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005666 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005667
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005668 if (il->cfg->mod_params->sw_crypto) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005669 D_MAC80211("leave - hwcrypto disabled\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005670 return -EOPNOTSUPP;
5671 }
5672
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005673 sta_id = il_sta_id_or_broadcast(il, vif_priv->ctx, sta);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005674 if (sta_id == IL_INVALID_STATION)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005675 return -EINVAL;
5676
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005677 mutex_lock(&il->mutex);
5678 il_scan_cancel_timeout(il, 100);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005679
5680 /*
5681 * If we are getting WEP group key and we didn't receive any key mapping
5682 * so far, we are in legacy wep mode (group key only), otherwise we are
5683 * in 1X mode.
5684 * In legacy wep mode, we use another host command to the uCode.
5685 */
5686 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
5687 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
5688 !sta) {
5689 if (cmd == SET_KEY)
5690 is_default_wep_key = !ctx->key_mapping_keys;
5691 else
5692 is_default_wep_key =
5693 (key->hw_key_idx == HW_KEY_DEFAULT);
5694 }
5695
5696 switch (cmd) {
5697 case SET_KEY:
5698 if (is_default_wep_key)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005699 ret = il4965_set_default_wep_key(il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005700 vif_priv->ctx, key);
5701 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005702 ret = il4965_set_dynamic_key(il, vif_priv->ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005703 key, sta_id);
5704
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005705 D_MAC80211("enable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005706 break;
5707 case DISABLE_KEY:
5708 if (is_default_wep_key)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005709 ret = il4965_remove_default_wep_key(il, ctx, key);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005710 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005711 ret = il4965_remove_dynamic_key(il, ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005712 key, sta_id);
5713
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005714 D_MAC80211("disable hwcrypto key\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005715 break;
5716 default:
5717 ret = -EINVAL;
5718 }
5719
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005720 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005721 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005722
5723 return ret;
5724}
5725
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005726int il4965_mac_ampdu_action(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005727 struct ieee80211_vif *vif,
5728 enum ieee80211_ampdu_mlme_action action,
5729 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
5730 u8 buf_size)
5731{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005732 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005733 int ret = -EINVAL;
5734
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005735 D_HT("A-MPDU action on addr %pM tid %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005736 sta->addr, tid);
5737
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005738 if (!(il->cfg->sku & IL_SKU_N))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005739 return -EACCES;
5740
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005741 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005742
5743 switch (action) {
5744 case IEEE80211_AMPDU_RX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005745 D_HT("start Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005746 ret = il4965_sta_rx_agg_start(il, sta, tid, *ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005747 break;
5748 case IEEE80211_AMPDU_RX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005749 D_HT("stop Rx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005750 ret = il4965_sta_rx_agg_stop(il, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005751 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005752 ret = 0;
5753 break;
5754 case IEEE80211_AMPDU_TX_START:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005755 D_HT("start Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005756 ret = il4965_tx_agg_start(il, vif, sta, tid, ssn);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005757 break;
5758 case IEEE80211_AMPDU_TX_STOP:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005759 D_HT("stop Tx\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005760 ret = il4965_tx_agg_stop(il, vif, sta, tid);
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005761 if (test_bit(S_EXIT_PENDING, &il->status))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005762 ret = 0;
5763 break;
5764 case IEEE80211_AMPDU_TX_OPERATIONAL:
5765 ret = 0;
5766 break;
5767 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005768 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005769
5770 return ret;
5771}
5772
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005773int il4965_mac_sta_add(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005774 struct ieee80211_vif *vif,
5775 struct ieee80211_sta *sta)
5776{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005777 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005778 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
5779 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005780 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
5781 int ret;
5782 u8 sta_id;
5783
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005784 D_INFO("received request to add station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005785 sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005786 mutex_lock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005787 D_INFO("proceeding to add station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005788 sta->addr);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005789 sta_priv->common.sta_id = IL_INVALID_STATION;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005790
5791 atomic_set(&sta_priv->pending_frames, 0);
5792
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005793 ret = il_add_station_common(il, vif_priv->ctx, sta->addr,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005794 is_ap, sta, &sta_id);
5795 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02005796 IL_ERR("Unable to add station %pM (%d)\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005797 sta->addr, ret);
5798 /* Should we return success if return code is EEXIST ? */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005799 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005800 return ret;
5801 }
5802
5803 sta_priv->common.sta_id = sta_id;
5804
5805 /* Initialize rate scaling */
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005806 D_INFO("Initializing rate scaling for station %pM\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005807 sta->addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005808 il4965_rs_rate_init(il, sta, sta_id);
5809 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005810
5811 return 0;
5812}
5813
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005814void il4965_mac_channel_switch(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005815 struct ieee80211_channel_switch *ch_switch)
5816{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005817 struct il_priv *il = hw->priv;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005818 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005819 struct ieee80211_conf *conf = &hw->conf;
5820 struct ieee80211_channel *channel = ch_switch->channel;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005821 struct il_ht_config *ht_conf = &il->current_ht_config;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005822
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01005823 struct il_rxon_context *ctx = &il->ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005824 u16 ch;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005825
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005826 D_MAC80211("enter\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005827
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005828 mutex_lock(&il->mutex);
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005829
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005830 if (il_is_rfkill(il))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005831 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005832
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005833 if (test_bit(S_EXIT_PENDING, &il->status) ||
5834 test_bit(S_SCANNING, &il->status) ||
5835 test_bit(S_CHANNEL_SWITCH_PENDING, &il->status))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005836 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005837
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005838 if (!il_is_associated_ctx(ctx))
Stanislaw Gruszka28a6e572011-04-28 11:51:32 +02005839 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005840
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005841 if (!il->cfg->ops->lib->set_channel_switch)
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005842 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005843
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005844 ch = channel->hw_value;
5845 if (le16_to_cpu(ctx->active.channel) == ch)
5846 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005847
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005848 ch_info = il_get_channel_info(il, channel->band, ch);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005849 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005850 D_MAC80211("invalid channel\n");
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005851 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005852 }
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005853
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005854 spin_lock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005855
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005856 il->current_ht_config.smps = conf->smps_mode;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005857
5858 /* Configure HT40 channels */
5859 ctx->ht.enabled = conf_is_ht(conf);
5860 if (ctx->ht.enabled) {
5861 if (conf_is_ht40_minus(conf)) {
5862 ctx->ht.extension_chan_offset =
5863 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
5864 ctx->ht.is_40mhz = true;
5865 } else if (conf_is_ht40_plus(conf)) {
5866 ctx->ht.extension_chan_offset =
5867 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
5868 ctx->ht.is_40mhz = true;
5869 } else {
5870 ctx->ht.extension_chan_offset =
5871 IEEE80211_HT_PARAM_CHA_SEC_NONE;
5872 ctx->ht.is_40mhz = false;
5873 }
5874 } else
5875 ctx->ht.is_40mhz = false;
5876
5877 if ((le16_to_cpu(ctx->staging.channel) != ch))
5878 ctx->staging.flags = 0;
5879
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005880 il_set_rxon_channel(il, channel, ctx);
5881 il_set_rxon_ht(il, ht_conf);
5882 il_set_flags_for_band(il, ctx, channel->band, ctx->vif);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005883
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005884 spin_unlock_irq(&il->lock);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005885
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005886 il_set_rate(il);
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005887 /*
5888 * at this point, staging_rxon has the
5889 * configuration for channel switch
5890 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005891 set_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005892 il->switch_channel = cpu_to_le16(ch);
5893 if (il->cfg->ops->lib->set_channel_switch(il, ch_switch)) {
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005894 clear_bit(S_CHANNEL_SWITCH_PENDING, &il->status);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005895 il->switch_channel = 0;
Stanislaw Gruszka7f1f9742011-06-08 15:28:29 +02005896 ieee80211_chswitch_done(ctx->vif, false);
5897 }
5898
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005899out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005900 mutex_unlock(&il->mutex);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005901 D_MAC80211("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005902}
5903
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005904void il4965_configure_filter(struct ieee80211_hw *hw,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005905 unsigned int changed_flags,
5906 unsigned int *total_flags,
5907 u64 multicast)
5908{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005909 struct il_priv *il = hw->priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005910 __le32 filter_or = 0, filter_nand = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005911
5912#define CHK(test, flag) do { \
5913 if (*total_flags & (test)) \
5914 filter_or |= (flag); \
5915 else \
5916 filter_nand |= (flag); \
5917 } while (0)
5918
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01005919 D_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005920 changed_flags, *total_flags);
5921
5922 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
5923 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
5924 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
5925 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
5926
5927#undef CHK
5928
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005929 mutex_lock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005930
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005931 il->ctx.staging.filter_flags &= ~filter_nand;
5932 il->ctx.staging.filter_flags |= filter_or;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005933
Stanislaw Gruszka17d6e552011-08-29 12:52:20 +02005934 /*
5935 * Not committing directly because hardware can perform a scan,
5936 * but we'll eventually commit the filter flags change anyway.
5937 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005938
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005939 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005940
5941 /*
5942 * Receiving all multicast frames is always enabled by the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005943 * default flags setup in il_connection_init_rx_config()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005944 * since we currently do not support programming multicast
5945 * filters into the device.
5946 */
5947 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
5948 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
5949}
5950
5951/*****************************************************************************
5952 *
5953 * driver setup and teardown
5954 *
5955 *****************************************************************************/
5956
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02005957static void il4965_bg_txpower_work(struct work_struct *work)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005958{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005959 struct il_priv *il = container_of(work, struct il_priv,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005960 txpower_work);
5961
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005962 mutex_lock(&il->mutex);
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005963
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005964 /* If a scan happened to start before we got here
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02005965 * then just return; the stats notification will
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005966 * kick off another scheduled work to compensate for
5967 * any temperature delta we missed here. */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01005968 if (test_bit(S_EXIT_PENDING, &il->status) ||
5969 test_bit(S_SCANNING, &il->status))
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005970 goto out;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005971
5972 /* Regardless of if we are associated, we must reconfigure the
5973 * TX power since frames can be sent on non-radar channels while
5974 * not associated */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005975 il->cfg->ops->lib->send_tx_power(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005976
5977 /* Update last_temperature to keep is_calib_needed from running
5978 * when it isn't needed... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005979 il->last_temperature = il->temperature;
Stanislaw Gruszkaf3257572011-04-28 11:36:54 +02005980out:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005981 mutex_unlock(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005982}
5983
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005984static void il4965_setup_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005985{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005986 il->workqueue = create_singlethread_workqueue(DRV_NAME);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005987
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005988 init_waitqueue_head(&il->wait_command_queue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005989
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005990 INIT_WORK(&il->restart, il4965_bg_restart);
5991 INIT_WORK(&il->rx_replenish, il4965_bg_rx_replenish);
5992 INIT_WORK(&il->run_time_calib_work, il4965_bg_run_time_calib_work);
5993 INIT_DELAYED_WORK(&il->init_alive_start, il4965_bg_init_alive_start);
5994 INIT_DELAYED_WORK(&il->alive_start, il4965_bg_alive_start);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005995
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005996 il_setup_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005997
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02005998 INIT_WORK(&il->txpower_work, il4965_bg_txpower_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08005999
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02006000 init_timer(&il->stats_periodic);
6001 il->stats_periodic.data = (unsigned long)il;
6002 il->stats_periodic.function = il4965_bg_stats_periodic;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006003
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006004 init_timer(&il->watchdog);
6005 il->watchdog.data = (unsigned long)il;
6006 il->watchdog.function = il_bg_watchdog;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006007
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006008 tasklet_init(&il->irq_tasklet, (void (*)(unsigned long))
6009 il4965_irq_tasklet, (unsigned long)il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006010}
6011
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006012static void il4965_cancel_deferred_work(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006013{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006014 cancel_work_sync(&il->txpower_work);
6015 cancel_delayed_work_sync(&il->init_alive_start);
6016 cancel_delayed_work(&il->alive_start);
6017 cancel_work_sync(&il->run_time_calib_work);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006018
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006019 il_cancel_scan_deferred_work(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006020
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02006021 del_timer_sync(&il->stats_periodic);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006022}
6023
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006024static void il4965_init_hw_rates(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006025 struct ieee80211_rate *rates)
6026{
6027 int i;
6028
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02006029 for (i = 0; i < RATE_COUNT_LEGACY; i++) {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02006030 rates[i].bitrate = il_rates[i].ieee * 5;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01006031 rates[i].hw_value = i; /* Rate scaling will work on idxes */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006032 rates[i].hw_value_short = i;
6033 rates[i].flags = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006034 if ((i >= IL_FIRST_CCK_RATE) && (i <= IL_LAST_CCK_RATE)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006035 /*
6036 * If CCK != 1M then set short preamble rate flag.
6037 */
6038 rates[i].flags |=
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02006039 (il_rates[i].plcp == RATE_1M_PLCP) ?
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006040 0 : IEEE80211_RATE_SHORT_PREAMBLE;
6041 }
6042 }
6043}
6044/*
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006045 * Acquire il->lock before calling this function !
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006046 */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01006047void il4965_set_wr_ptrs(struct il_priv *il, int txq_id, u32 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006048{
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02006049 il_wr(il, HBUS_TARG_WRPTR,
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01006050 (idx & 0xff) | (txq_id << 8));
6051 il_wr_prph(il, IL49_SCD_QUEUE_RDPTR(txq_id), idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006052}
6053
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006054void il4965_tx_queue_set_status(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006055 struct il_tx_queue *txq,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006056 int tx_fifo_id, int scd_retry)
6057{
6058 int txq_id = txq->q.id;
6059
6060 /* Find out whether to activate Tx queue */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006061 int active = test_bit(txq_id, &il->txq_ctx_active_msk) ? 1 : 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006062
6063 /* Set up and activate */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006064 il_wr_prph(il, IL49_SCD_QUEUE_STATUS_BITS(txq_id),
6065 (active << IL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
6066 (tx_fifo_id << IL49_SCD_QUEUE_STTS_REG_POS_TXF) |
6067 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_WSL) |
6068 (scd_retry << IL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
6069 IL49_SCD_QUEUE_STTS_REG_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006070
6071 txq->sched_retry = scd_retry;
6072
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006073 D_INFO("%s %s Queue %d on AC %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006074 active ? "Activate" : "Deactivate",
6075 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
6076}
6077
6078
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006079static int il4965_init_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006080{
6081 int ret;
6082
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006083 spin_lock_init(&il->sta_lock);
6084 spin_lock_init(&il->hcmd_lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006085
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006086 INIT_LIST_HEAD(&il->free_frames);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006087
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006088 mutex_init(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006089
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006090 il->ieee_channels = NULL;
6091 il->ieee_rates = NULL;
6092 il->band = IEEE80211_BAND_2GHZ;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006093
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006094 il->iw_mode = NL80211_IFTYPE_STATION;
6095 il->current_ht_config.smps = IEEE80211_SMPS_STATIC;
6096 il->missed_beacon_threshold = IL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006097
6098 /* initialize force reset */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006099 il->force_reset.reset_duration = IL_DELAY_NEXT_FORCE_FW_RELOAD;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006100
6101 /* Choose which receivers/antennas to use */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006102 if (il->cfg->ops->hcmd->set_rxon_chain)
6103 il->cfg->ops->hcmd->set_rxon_chain(il,
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006104 &il->ctx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006105
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006106 il_init_scan_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006107
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006108 ret = il_init_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006109 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006110 IL_ERR("initializing regulatory failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006111 goto err;
6112 }
6113
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006114 ret = il_init_geos(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006115 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006116 IL_ERR("initializing geos failed: %d\n", ret);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006117 goto err_free_channel_map;
6118 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006119 il4965_init_hw_rates(il, il->ieee_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006120
6121 return 0;
6122
6123err_free_channel_map:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006124 il_free_channel_map(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006125err:
6126 return ret;
6127}
6128
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006129static void il4965_uninit_drv(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006130{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006131 il4965_calib_free_results(il);
6132 il_free_geos(il);
6133 il_free_channel_map(il);
6134 kfree(il->scan_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006135}
6136
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006137static void il4965_hw_detect(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006138{
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006139 il->hw_rev = _il_rd(il, CSR_HW_REV);
6140 il->hw_wa_rev = _il_rd(il, CSR_HW_REV_WA_REG);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006141 il->rev_id = il->pci_dev->revision;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006142 D_INFO("HW Revision ID = 0x%X\n", il->rev_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006143}
6144
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006145static int il4965_set_hw_params(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006146{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006147 il->hw_params.max_rxq_size = RX_QUEUE_SIZE;
6148 il->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
6149 if (il->cfg->mod_params->amsdu_size_8K)
6150 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_8K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006151 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006152 il->hw_params.rx_page_order = get_order(IL_RX_BUF_SIZE_4K);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006153
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006154 il->hw_params.max_beacon_itrvl = IL_MAX_UCODE_BEACON_INTERVAL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006155
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006156 if (il->cfg->mod_params->disable_11n)
6157 il->cfg->sku &= ~IL_SKU_N;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006158
6159 /* Device-specific setup */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006160 return il->cfg->ops->lib->set_hw_params(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006161}
6162
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006163static const u8 il4965_bss_ac_to_fifo[] = {
6164 IL_TX_FIFO_VO,
6165 IL_TX_FIFO_VI,
6166 IL_TX_FIFO_BE,
6167 IL_TX_FIFO_BK,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006168};
6169
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006170static const u8 il4965_bss_ac_to_queue[] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006171 0, 1, 2, 3,
6172};
6173
6174static int
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006175il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006176{
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006177 int err = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006178 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006179 struct ieee80211_hw *hw;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006180 struct il_cfg *cfg = (struct il_cfg *)(ent->driver_data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006181 unsigned long flags;
6182 u16 pci_cmd;
6183
6184 /************************
6185 * 1. Allocating HW data
6186 ************************/
6187
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006188 hw = il_alloc_all(cfg);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006189 if (!hw) {
6190 err = -ENOMEM;
6191 goto out;
6192 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006193 il = hw->priv;
6194 /* At this point both hw and il are allocated. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006195
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006196 il->ctx.ctxid = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006197
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006198 il->ctx.always_active = true;
6199 il->ctx.is_active = true;
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02006200 il->ctx.rxon_cmd = C_RXON;
6201 il->ctx.rxon_timing_cmd = C_RXON_TIMING;
6202 il->ctx.rxon_assoc_cmd = C_RXON_ASSOC;
6203 il->ctx.qos_cmd = C_QOS_PARAM;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006204 il->ctx.ap_sta_id = IL_AP_ID;
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02006205 il->ctx.wep_key_cmd = C_WEPKEY;
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006206 il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
6207 il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
6208 il->ctx.exclusive_interface_modes =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006209 BIT(NL80211_IFTYPE_ADHOC);
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006210 il->ctx.interface_modes =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006211 BIT(NL80211_IFTYPE_STATION);
Stanislaw Gruszka7c2cde22011-11-15 11:29:04 +01006212 il->ctx.ap_devtype = RXON_DEV_TYPE_AP;
6213 il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
6214 il->ctx.station_devtype = RXON_DEV_TYPE_ESS;
6215 il->ctx.unused_devtype = RXON_DEV_TYPE_ESS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006216
6217 SET_IEEE80211_DEV(hw, &pdev->dev);
6218
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006219 D_INFO("*** LOAD DRIVER ***\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006220 il->cfg = cfg;
6221 il->pci_dev = pdev;
6222 il->inta_mask = CSR_INI_SET_MASK;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006223
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006224 if (il_alloc_traffic_mem(il))
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006225 IL_ERR("Not enough memory to generate traffic log\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006226
6227 /**************************
6228 * 2. Initializing PCI bus
6229 **************************/
6230 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
6231 PCIE_LINK_STATE_CLKPM);
6232
6233 if (pci_enable_device(pdev)) {
6234 err = -ENODEV;
6235 goto out_ieee80211_free_hw;
6236 }
6237
6238 pci_set_master(pdev);
6239
6240 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
6241 if (!err)
6242 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
6243 if (err) {
6244 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6245 if (!err)
6246 err = pci_set_consistent_dma_mask(pdev,
6247 DMA_BIT_MASK(32));
6248 /* both attempts failed: */
6249 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006250 IL_WARN("No suitable DMA available.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006251 goto out_pci_disable_device;
6252 }
6253 }
6254
6255 err = pci_request_regions(pdev, DRV_NAME);
6256 if (err)
6257 goto out_pci_disable_device;
6258
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006259 pci_set_drvdata(pdev, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006260
6261
6262 /***********************
6263 * 3. Read REV register
6264 ***********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006265 il->hw_base = pci_iomap(pdev, 0, 0);
6266 if (!il->hw_base) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006267 err = -ENODEV;
6268 goto out_pci_release_regions;
6269 }
6270
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006271 D_INFO("pci_resource_len = 0x%08llx\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006272 (unsigned long long) pci_resource_len(pdev, 0));
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006273 D_INFO("pci_resource_base = %p\n", il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006274
6275 /* these spin locks will be used in apm_ops.init and EEPROM access
6276 * we should init now
6277 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006278 spin_lock_init(&il->reg_lock);
6279 spin_lock_init(&il->lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006280
6281 /*
6282 * stop and reset the on-board processor just in case it is in a
6283 * strange state ... like being left stranded by a primary kernel
6284 * and this is now the kdump kernel trying to start up
6285 */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006286 _il_wr(il, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006287
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006288 il4965_hw_detect(il);
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006289 IL_INFO("Detected %s, REV=0x%X\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006290 il->cfg->name, il->hw_rev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006291
6292 /* We disable the RETRY_TIMEOUT register (0x41) to keep
6293 * PCI Tx retries from interfering with C3 CPU state */
6294 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
6295
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006296 il4965_prepare_card_hw(il);
6297 if (!il->hw_ready) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006298 IL_WARN("Failed, HW not ready\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006299 goto out_iounmap;
6300 }
6301
6302 /*****************
6303 * 4. Read EEPROM
6304 *****************/
6305 /* Read the EEPROM */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006306 err = il_eeprom_init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006307 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006308 IL_ERR("Unable to init EEPROM\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006309 goto out_iounmap;
6310 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006311 err = il4965_eeprom_check_version(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006312 if (err)
6313 goto out_free_eeprom;
6314
6315 if (err)
6316 goto out_free_eeprom;
6317
6318 /* extract MAC Address */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006319 il4965_eeprom_get_mac(il, il->addresses[0].addr);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006320 D_INFO("MAC address: %pM\n", il->addresses[0].addr);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006321 il->hw->wiphy->addresses = il->addresses;
6322 il->hw->wiphy->n_addresses = 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006323
6324 /************************
6325 * 5. Setup HW constants
6326 ************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006327 if (il4965_set_hw_params(il)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006328 IL_ERR("failed to set hw parameters\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006329 goto out_free_eeprom;
6330 }
6331
6332 /*******************
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006333 * 6. Setup il
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006334 *******************/
6335
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006336 err = il4965_init_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006337 if (err)
6338 goto out_free_eeprom;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006339 /* At this point both hw and il are initialized. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006340
6341 /********************
6342 * 7. Setup services
6343 ********************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006344 spin_lock_irqsave(&il->lock, flags);
6345 il_disable_interrupts(il);
6346 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006347
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006348 pci_enable_msi(il->pci_dev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006349
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006350 err = request_irq(il->pci_dev->irq, il_isr,
6351 IRQF_SHARED, DRV_NAME, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006352 if (err) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02006353 IL_ERR("Error allocating IRQ %d\n", il->pci_dev->irq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006354 goto out_disable_msi;
6355 }
6356
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006357 il4965_setup_deferred_work(il);
Stanislaw Gruszkad0c72342011-08-30 15:39:42 +02006358 il4965_setup_handlers(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006359
6360 /*********************************************
6361 * 8. Enable interrupts and read RFKILL state
6362 *********************************************/
6363
Stanislaw Gruszkaa078a1f2011-04-28 11:51:25 +02006364 /* enable rfkill interrupt: hw bug w/a */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006365 pci_read_config_word(il->pci_dev, PCI_COMMAND, &pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006366 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
6367 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006368 pci_write_config_word(il->pci_dev, PCI_COMMAND, pci_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006369 }
6370
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006371 il_enable_rfkill_int(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006372
6373 /* If platform's RF_KILL switch is NOT set to KILL */
Stanislaw Gruszka841b2cc2011-08-24 15:14:03 +02006374 if (_il_rd(il, CSR_GP_CNTRL) &
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006375 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006376 clear_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006377 else
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006378 set_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006379
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006380 wiphy_rfkill_set_hw_state(il->hw->wiphy,
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006381 test_bit(S_RF_KILL_HW, &il->status));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006382
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006383 il_power_initialize(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006384
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006385 init_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006386
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006387 err = il4965_request_firmware(il, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006388 if (err)
6389 goto out_destroy_workqueue;
6390
6391 return 0;
6392
6393 out_destroy_workqueue:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006394 destroy_workqueue(il->workqueue);
6395 il->workqueue = NULL;
6396 free_irq(il->pci_dev->irq, il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006397 out_disable_msi:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006398 pci_disable_msi(il->pci_dev);
6399 il4965_uninit_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006400 out_free_eeprom:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006401 il_eeprom_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006402 out_iounmap:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006403 pci_iounmap(pdev, il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006404 out_pci_release_regions:
6405 pci_set_drvdata(pdev, NULL);
6406 pci_release_regions(pdev);
6407 out_pci_disable_device:
6408 pci_disable_device(pdev);
6409 out_ieee80211_free_hw:
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006410 il_free_traffic_mem(il);
6411 ieee80211_free_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006412 out:
6413 return err;
6414}
6415
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006416static void __devexit il4965_pci_remove(struct pci_dev *pdev)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006417{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006418 struct il_priv *il = pci_get_drvdata(pdev);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006419 unsigned long flags;
6420
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006421 if (!il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006422 return;
6423
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006424 wait_for_completion(&il->_4965.firmware_loading_complete);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006425
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01006426 D_INFO("*** UNLOAD DRIVER ***\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006427
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006428 il_dbgfs_unregister(il);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006429 sysfs_remove_group(&pdev->dev.kobj, &il_attribute_group);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006430
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006431 /* ieee80211_unregister_hw call wil cause il_mac_stop to
6432 * to be called and il4965_down since we are removing the device
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006433 * we need to set S_EXIT_PENDING bit.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006434 */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01006435 set_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006436
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006437 il_leds_exit(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006438
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006439 if (il->mac80211_registered) {
6440 ieee80211_unregister_hw(il->hw);
6441 il->mac80211_registered = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006442 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006443 il4965_down(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006444 }
6445
6446 /*
6447 * Make sure device is reset to low power before unloading driver.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006448 * This may be redundant with il4965_down(), but there are paths to
6449 * run il4965_down() without calling apm_ops.stop(), and there are
6450 * paths to avoid running il4965_down() at all before leaving driver.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006451 * This (inexpensive) call *makes sure* device is reset.
6452 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006453 il_apm_stop(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006454
6455 /* make sure we flush any pending irq or
6456 * tasklet for the driver
6457 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006458 spin_lock_irqsave(&il->lock, flags);
6459 il_disable_interrupts(il);
6460 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006461
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006462 il4965_synchronize_irq(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006463
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006464 il4965_dealloc_ucode_pci(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006465
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006466 if (il->rxq.bd)
6467 il4965_rx_queue_free(il, &il->rxq);
6468 il4965_hw_txq_ctx_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006469
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006470 il_eeprom_free(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006471
6472
6473 /*netif_stop_queue(dev); */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006474 flush_workqueue(il->workqueue);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006475
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006476 /* ieee80211_unregister_hw calls il_mac_stop, which flushes
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006477 * il->workqueue... so we can't take down the workqueue
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006478 * until now... */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006479 destroy_workqueue(il->workqueue);
6480 il->workqueue = NULL;
6481 il_free_traffic_mem(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006482
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006483 free_irq(il->pci_dev->irq, il);
6484 pci_disable_msi(il->pci_dev);
6485 pci_iounmap(pdev, il->hw_base);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006486 pci_release_regions(pdev);
6487 pci_disable_device(pdev);
6488 pci_set_drvdata(pdev, NULL);
6489
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006490 il4965_uninit_drv(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006491
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006492 dev_kfree_skb(il->beacon_skb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006493
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006494 ieee80211_free_hw(il->hw);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006495}
6496
6497/*
6498 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006499 * must be called under il->lock and mac access
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006500 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02006501void il4965_txq_set_sched(struct il_priv *il, u32 mask)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006502{
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006503 il_wr_prph(il, IL49_SCD_TXFACT, mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006504}
6505
6506/*****************************************************************************
6507 *
6508 * driver and module entry point
6509 *
6510 *****************************************************************************/
6511
6512/* Hardware specific file defines the PCI IDs table for that hardware module */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006513static DEFINE_PCI_DEVICE_TABLE(il4965_hw_card_ids) = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006514 {IL_PCI_DEVICE(0x4229, PCI_ANY_ID, il4965_cfg)},
6515 {IL_PCI_DEVICE(0x4230, PCI_ANY_ID, il4965_cfg)},
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006516 {0}
6517};
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006518MODULE_DEVICE_TABLE(pci, il4965_hw_card_ids);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006519
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006520static struct pci_driver il4965_driver = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006521 .name = DRV_NAME,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006522 .id_table = il4965_hw_card_ids,
6523 .probe = il4965_pci_probe,
6524 .remove = __devexit_p(il4965_pci_remove),
6525 .driver.pm = IL_LEGACY_PM_OPS,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006526};
6527
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006528static int __init il4965_init(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006529{
6530
6531 int ret;
6532 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
6533 pr_info(DRV_COPYRIGHT "\n");
6534
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006535 ret = il4965_rate_control_register();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006536 if (ret) {
6537 pr_err("Unable to register rate control algorithm: %d\n", ret);
6538 return ret;
6539 }
6540
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006541 ret = pci_register_driver(&il4965_driver);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006542 if (ret) {
6543 pr_err("Unable to initialize PCI module\n");
6544 goto error_register;
6545 }
6546
6547 return ret;
6548
6549error_register:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006550 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006551 return ret;
6552}
6553
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006554static void __exit il4965_exit(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006555{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006556 pci_unregister_driver(&il4965_driver);
6557 il4965_rate_control_unregister();
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006558}
6559
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006560module_exit(il4965_exit);
6561module_init(il4965_init);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006562
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01006563#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02006564module_param_named(debug, il_debug_level, uint, S_IRUGO | S_IWUSR);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006565MODULE_PARM_DESC(debug, "debug output mask");
6566#endif
6567
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006568module_param_named(swcrypto, il4965_mod_params.sw_crypto, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006569MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006570module_param_named(queues_num, il4965_mod_params.num_of_queues, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006571MODULE_PARM_DESC(queues_num, "number of hw queues.");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006572module_param_named(11n_disable, il4965_mod_params.disable_11n, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006573MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006574module_param_named(amsdu_size_8K, il4965_mod_params.amsdu_size_8K,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006575 int, S_IRUGO);
6576MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02006577module_param_named(fw_restart, il4965_mod_params.restart_fw, int, S_IRUGO);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08006578MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");