blob: da4ea244ca21f29a153cd3ba9d0d2c789afdacae [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
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#include <linux/etherdevice.h>
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/init.h>
33#include <linux/sched.h>
34
35#include "iwl-dev.h"
36#include "iwl-core.h"
37#include "iwl-io.h"
38#include "iwl-helpers.h"
39#include "iwl-4965-hw.h"
40#include "iwl-4965.h"
41#include "iwl-sta.h"
42
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020043void il4965_check_abort_status(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080044 u8 frame_count, u32 status)
45{
46 if (frame_count == 1 && status == TX_STATUS_FAIL_RFKILL_FLUSH) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +020047 IL_ERR("Tx flush command to flush out all frames\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020048 if (!test_bit(STATUS_EXIT_PENDING, &il->status))
49 queue_work(il->workqueue, &il->tx_flush);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080050 }
51}
52
53/*
54 * EEPROM
55 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020056struct il_mod_params il4965_mod_params = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080057 .amsdu_size_8K = 1,
58 .restart_fw = 1,
59 /* the rest are 0 by default */
60};
61
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020062void il4965_rx_queue_reset(struct il_priv *il, struct il_rx_queue *rxq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080063{
64 unsigned long flags;
65 int i;
66 spin_lock_irqsave(&rxq->lock, flags);
67 INIT_LIST_HEAD(&rxq->rx_free);
68 INIT_LIST_HEAD(&rxq->rx_used);
69 /* Fill the rx_used queue with _all_ of the Rx buffers */
70 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
71 /* In the reset function, these buffers may have been allocated
72 * to an SKB, so we need to unmap and free potential storage */
73 if (rxq->pool[i].page != NULL) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020074 pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
75 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080076 PCI_DMA_FROMDEVICE);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020077 __il_free_pages(il, rxq->pool[i].page);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080078 rxq->pool[i].page = NULL;
79 }
80 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
81 }
82
83 for (i = 0; i < RX_QUEUE_SIZE; i++)
84 rxq->queue[i] = NULL;
85
86 /* Set us so that we have processed and used all buffers, but have
87 * not restocked the Rx queue with fresh buffers */
88 rxq->read = rxq->write = 0;
89 rxq->write_actual = 0;
90 rxq->free_count = 0;
91 spin_unlock_irqrestore(&rxq->lock, flags);
92}
93
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +020094int il4965_rx_init(struct il_priv *il, struct il_rx_queue *rxq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080095{
96 u32 rb_size;
97 const u32 rfdnlog = RX_QUEUE_SIZE_LOG; /* 256 RBDs */
98 u32 rb_timeout = 0;
99
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200100 if (il->cfg->mod_params->amsdu_size_8K)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800101 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K;
102 else
103 rb_size = FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K;
104
105 /* Stop Rx DMA */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200106 il_wr(il, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800107
108 /* Reset driver's Rx queue write index */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200109 il_wr(il, FH_RSCSR_CHNL0_RBDCB_WPTR_REG, 0);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800110
111 /* Tell device where to find RBD circular buffer in DRAM */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200112 il_wr(il, FH_RSCSR_CHNL0_RBDCB_BASE_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800113 (u32)(rxq->bd_dma >> 8));
114
115 /* Tell device where in DRAM to update its Rx status */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200116 il_wr(il, FH_RSCSR_CHNL0_STTS_WPTR_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800117 rxq->rb_stts_dma >> 4);
118
119 /* Enable Rx DMA
120 * Direct rx interrupts to hosts
121 * Rx buffer size 4 or 8k
122 * RB timeout 0x10
123 * 256 RBDs
124 */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200125 il_wr(il, FH_MEM_RCSR_CHNL0_CONFIG_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800126 FH_RCSR_RX_CONFIG_CHNL_EN_ENABLE_VAL |
127 FH_RCSR_CHNL0_RX_CONFIG_IRQ_DEST_INT_HOST_VAL |
128 FH_RCSR_CHNL0_RX_CONFIG_SINGLE_FRAME_MSK |
129 rb_size|
130 (rb_timeout << FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS)|
131 (rfdnlog << FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS));
132
133 /* Set interrupt coalescing timer to default (2048 usecs) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200134 il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_TIMEOUT_DEF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800135
136 return 0;
137}
138
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200139static void il4965_set_pwr_vmain(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800140{
141/*
142 * (for documentation purposes)
143 * to set power to V_AUX, do:
144
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200145 if (pci_pme_capable(il->pci_dev, PCI_D3cold))
146 il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800147 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
148 ~APMG_PS_CTRL_MSK_PWR_SRC);
149 */
150
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200151 il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800152 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
153 ~APMG_PS_CTRL_MSK_PWR_SRC);
154}
155
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200156int il4965_hw_nic_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800157{
158 unsigned long flags;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200159 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800160 int ret;
161
162 /* nic_init */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200163 spin_lock_irqsave(&il->lock, flags);
164 il->cfg->ops->lib->apm_ops.init(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800165
166 /* Set interrupt coalescing calibration timer to default (512 usecs) */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200167 il_write8(il, CSR_INT_COALESCING, IL_HOST_INT_CALIB_TIMEOUT_DEF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800168
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200169 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800170
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200171 il4965_set_pwr_vmain(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800172
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200173 il->cfg->ops->lib->apm_ops.config(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800174
175 /* Allocate the RX queue, or reset if it is already allocated */
176 if (!rxq->bd) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200177 ret = il_rx_queue_alloc(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800178 if (ret) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200179 IL_ERR("Unable to initialize Rx queue\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800180 return -ENOMEM;
181 }
182 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200183 il4965_rx_queue_reset(il, rxq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800184
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200185 il4965_rx_replenish(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800186
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200187 il4965_rx_init(il, rxq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800188
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200189 spin_lock_irqsave(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800190
191 rxq->need_update = 1;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200192 il_rx_queue_update_write_ptr(il, rxq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800193
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200194 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800195
196 /* Allocate or reset and init all Tx and Command queues */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200197 if (!il->txq) {
198 ret = il4965_txq_ctx_alloc(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800199 if (ret)
200 return ret;
201 } else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200202 il4965_txq_ctx_reset(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800203
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200204 set_bit(STATUS_INIT, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800205
206 return 0;
207}
208
209/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200210 * il4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800211 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200212static inline __le32 il4965_dma_addr2rbd_ptr(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800213 dma_addr_t dma_addr)
214{
215 return cpu_to_le32((u32)(dma_addr >> 8));
216}
217
218/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200219 * il4965_rx_queue_restock - refill RX queue from pre-allocated pool
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800220 *
221 * If there are slots in the RX queue that need to be restocked,
222 * and we have free pre-allocated buffers, fill the ranks as much
223 * as we can, pulling from rx_free.
224 *
225 * This moves the 'write' index forward to catch up with 'processed', and
226 * also updates the memory address in the firmware to reference the new
227 * target buffer.
228 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200229void il4965_rx_queue_restock(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800230{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200231 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800232 struct list_head *element;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200233 struct il_rx_mem_buffer *rxb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800234 unsigned long flags;
235
236 spin_lock_irqsave(&rxq->lock, flags);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200237 while (il_rx_queue_space(rxq) > 0 && rxq->free_count) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800238 /* The overwritten rxb must be a used one */
239 rxb = rxq->queue[rxq->write];
240 BUG_ON(rxb && rxb->page);
241
242 /* Get next free Rx buffer, remove from free list */
243 element = rxq->rx_free.next;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200244 rxb = list_entry(element, struct il_rx_mem_buffer, list);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800245 list_del(element);
246
247 /* Point to Rx buffer via next RBD in circular buffer */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200248 rxq->bd[rxq->write] = il4965_dma_addr2rbd_ptr(il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800249 rxb->page_dma);
250 rxq->queue[rxq->write] = rxb;
251 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
252 rxq->free_count--;
253 }
254 spin_unlock_irqrestore(&rxq->lock, flags);
255 /* If the pre-allocated buffer pool is dropping low, schedule to
256 * refill it */
257 if (rxq->free_count <= RX_LOW_WATERMARK)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200258 queue_work(il->workqueue, &il->rx_replenish);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800259
260
261 /* If we've added more space for the firmware to place data, tell it.
262 * Increment device's write pointer in multiples of 8. */
263 if (rxq->write_actual != (rxq->write & ~0x7)) {
264 spin_lock_irqsave(&rxq->lock, flags);
265 rxq->need_update = 1;
266 spin_unlock_irqrestore(&rxq->lock, flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200267 il_rx_queue_update_write_ptr(il, rxq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800268 }
269}
270
271/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200272 * il4965_rx_replenish - Move all used packet from rx_used to rx_free
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800273 *
274 * When moving to rx_free an SKB is allocated for the slot.
275 *
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200276 * Also restock the Rx queue via il_rx_queue_restock.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800277 * This is called as a scheduled work item (except for during initialization)
278 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200279static void il4965_rx_allocate(struct il_priv *il, gfp_t priority)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800280{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200281 struct il_rx_queue *rxq = &il->rxq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800282 struct list_head *element;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200283 struct il_rx_mem_buffer *rxb;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800284 struct page *page;
285 unsigned long flags;
286 gfp_t gfp_mask = priority;
287
288 while (1) {
289 spin_lock_irqsave(&rxq->lock, flags);
290 if (list_empty(&rxq->rx_used)) {
291 spin_unlock_irqrestore(&rxq->lock, flags);
292 return;
293 }
294 spin_unlock_irqrestore(&rxq->lock, flags);
295
296 if (rxq->free_count > RX_LOW_WATERMARK)
297 gfp_mask |= __GFP_NOWARN;
298
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200299 if (il->hw_params.rx_page_order > 0)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800300 gfp_mask |= __GFP_COMP;
301
302 /* Alloc a new receive buffer */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200303 page = alloc_pages(gfp_mask, il->hw_params.rx_page_order);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800304 if (!page) {
305 if (net_ratelimit())
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100306 D_INFO("alloc_pages failed, "
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800307 "order: %d\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200308 il->hw_params.rx_page_order);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800309
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200310 if (rxq->free_count <= RX_LOW_WATERMARK &&
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800311 net_ratelimit())
Stanislaw Gruszkab6297cd2011-08-18 22:27:04 +0200312 IL_ERR(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800313 "Failed to alloc_pages with %s. "
314 "Only %u free buffers remaining.\n",
315 priority == GFP_ATOMIC ?
316 "GFP_ATOMIC" : "GFP_KERNEL",
317 rxq->free_count);
318 /* We don't reschedule replenish work here -- we will
319 * call the restock method and if it still needs
320 * more buffers it will schedule replenish */
321 return;
322 }
323
324 spin_lock_irqsave(&rxq->lock, flags);
325
326 if (list_empty(&rxq->rx_used)) {
327 spin_unlock_irqrestore(&rxq->lock, flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200328 __free_pages(page, il->hw_params.rx_page_order);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800329 return;
330 }
331 element = rxq->rx_used.next;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200332 rxb = list_entry(element, struct il_rx_mem_buffer, list);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800333 list_del(element);
334
335 spin_unlock_irqrestore(&rxq->lock, flags);
336
337 BUG_ON(rxb->page);
338 rxb->page = page;
339 /* Get physical address of the RB */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200340 rxb->page_dma = pci_map_page(il->pci_dev, page, 0,
341 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800342 PCI_DMA_FROMDEVICE);
343 /* dma address must be no more than 36 bits */
344 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
345 /* and also 256 byte aligned! */
346 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
347
348 spin_lock_irqsave(&rxq->lock, flags);
349
350 list_add_tail(&rxb->list, &rxq->rx_free);
351 rxq->free_count++;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200352 il->alloc_rxb_page++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800353
354 spin_unlock_irqrestore(&rxq->lock, flags);
355 }
356}
357
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200358void il4965_rx_replenish(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800359{
360 unsigned long flags;
361
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200362 il4965_rx_allocate(il, GFP_KERNEL);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800363
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200364 spin_lock_irqsave(&il->lock, flags);
365 il4965_rx_queue_restock(il);
366 spin_unlock_irqrestore(&il->lock, flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800367}
368
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200369void il4965_rx_replenish_now(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800370{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200371 il4965_rx_allocate(il, GFP_ATOMIC);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800372
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200373 il4965_rx_queue_restock(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800374}
375
376/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
377 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
378 * This free routine walks the list of POOL entries and if SKB is set to
379 * non NULL it is unmapped and freed
380 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200381void il4965_rx_queue_free(struct il_priv *il, struct il_rx_queue *rxq)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800382{
383 int i;
384 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
385 if (rxq->pool[i].page != NULL) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200386 pci_unmap_page(il->pci_dev, rxq->pool[i].page_dma,
387 PAGE_SIZE << il->hw_params.rx_page_order,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800388 PCI_DMA_FROMDEVICE);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200389 __il_free_pages(il, rxq->pool[i].page);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800390 rxq->pool[i].page = NULL;
391 }
392 }
393
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200394 dma_free_coherent(&il->pci_dev->dev, 4 * RX_QUEUE_SIZE, rxq->bd,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800395 rxq->bd_dma);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200396 dma_free_coherent(&il->pci_dev->dev, sizeof(struct il_rb_status),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800397 rxq->rb_stts, rxq->rb_stts_dma);
398 rxq->bd = NULL;
399 rxq->rb_stts = NULL;
400}
401
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200402int il4965_rxq_stop(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800403{
404
405 /* stop Rx DMA */
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +0200406 il_wr(il, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
407 il_poll_bit(il, FH_MEM_RSSR_RX_STATUS_REG,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800408 FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE, 1000);
409
410 return 0;
411}
412
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200413int il4965_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800414{
415 int idx = 0;
416 int band_offset = 0;
417
418 /* HT rate format: mac80211 wants an MCS number, which is just LSB */
419 if (rate_n_flags & RATE_MCS_HT_MSK) {
420 idx = (rate_n_flags & 0xff);
421 return idx;
422 /* Legacy rate format, search for match in table */
423 } else {
424 if (band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200425 band_offset = IL_FIRST_OFDM_RATE;
426 for (idx = band_offset; idx < IL_RATE_COUNT_LEGACY; idx++)
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200427 if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800428 return idx - band_offset;
429 }
430
431 return -1;
432}
433
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200434static int il4965_calc_rssi(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200435 struct il_rx_phy_res *rx_resp)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800436{
437 /* data from PHY/DSP regarding signal strength, etc.,
438 * contents are always there, not configurable by host. */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200439 struct il4965_rx_non_cfg_phy *ncphy =
440 (struct il4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100441 u32 agc = (le16_to_cpu(ncphy->agc_info) & IL49_AGC_DB_MASK)
442 >> IL49_AGC_DB_POS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800443
444 u32 valid_antennae =
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100445 (le16_to_cpu(rx_resp->phy_flags) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK)
446 >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800447 u8 max_rssi = 0;
448 u32 i;
449
450 /* Find max rssi among 3 possible receivers.
451 * These values are measured by the digital signal processor (DSP).
452 * They should stay fairly constant even as the signal strength varies,
453 * if the radio's automatic gain control (AGC) is working right.
454 * AGC value (see below) will provide the "interesting" info. */
455 for (i = 0; i < 3; i++)
456 if (valid_antennae & (1 << i))
457 max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
458
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100459 D_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800460 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
461 max_rssi, agc);
462
463 /* dBm = max_rssi dB - agc dB - constant.
464 * Higher AGC (higher radio gain) means lower signal. */
Stanislaw Gruszkad3175162011-11-15 11:25:42 +0100465 return max_rssi - agc - IL4965_RSSI_OFFSET;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800466}
467
468
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200469static u32 il4965_translate_rx_status(struct il_priv *il, u32 decrypt_in)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800470{
471 u32 decrypt_out = 0;
472
473 if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
474 RX_RES_STATUS_STATION_FOUND)
475 decrypt_out |= (RX_RES_STATUS_STATION_FOUND |
476 RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
477
478 decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK);
479
480 /* packet was not encrypted */
481 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
482 RX_RES_STATUS_SEC_TYPE_NONE)
483 return decrypt_out;
484
485 /* packet was encrypted with unknown alg */
486 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
487 RX_RES_STATUS_SEC_TYPE_ERR)
488 return decrypt_out;
489
490 /* decryption was not done in HW */
491 if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
492 RX_MPDU_RES_STATUS_DEC_DONE_MSK)
493 return decrypt_out;
494
495 switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) {
496
497 case RX_RES_STATUS_SEC_TYPE_CCMP:
498 /* alg is CCM: check MIC only */
499 if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK))
500 /* Bad MIC */
501 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
502 else
503 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
504
505 break;
506
507 case RX_RES_STATUS_SEC_TYPE_TKIP:
508 if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) {
509 /* Bad TTAK */
510 decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK;
511 break;
512 }
513 /* fall through if TTAK OK */
514 default:
515 if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK))
516 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
517 else
518 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
519 break;
520 }
521
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100522 D_RX("decrypt_in:0x%x decrypt_out = 0x%x\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800523 decrypt_in, decrypt_out);
524
525 return decrypt_out;
526}
527
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200528static void il4965_pass_packet_to_mac80211(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800529 struct ieee80211_hdr *hdr,
530 u16 len,
531 u32 ampdu_status,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200532 struct il_rx_mem_buffer *rxb,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800533 struct ieee80211_rx_status *stats)
534{
535 struct sk_buff *skb;
536 __le16 fc = hdr->frame_control;
537
538 /* We only process data packets if the interface is open */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200539 if (unlikely(!il->is_open)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100540 D_DROP(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800541 "Dropping packet while interface is not open.\n");
542 return;
543 }
544
545 /* In case of HW accelerated crypto and bad decryption, drop */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200546 if (!il->cfg->mod_params->sw_crypto &&
547 il_set_decrypted_flag(il, hdr, ampdu_status, stats))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800548 return;
549
550 skb = dev_alloc_skb(128);
551 if (!skb) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200552 IL_ERR("dev_alloc_skb failed\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800553 return;
554 }
555
556 skb_add_rx_frag(skb, 0, rxb->page, (void *)hdr - rxb_addr(rxb), len);
557
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200558 il_update_stats(il, false, fc, len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800559 memcpy(IEEE80211_SKB_RXCB(skb), stats, sizeof(*stats));
560
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200561 ieee80211_rx(il->hw, skb);
562 il->alloc_rxb_page--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800563 rxb->page = NULL;
564}
565
566/* Called for REPLY_RX (legacy ABG frames), or
567 * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200568void il4965_rx_reply_rx(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200569 struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800570{
571 struct ieee80211_hdr *header;
572 struct ieee80211_rx_status rx_status;
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200573 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200574 struct il_rx_phy_res *phy_res;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800575 __le32 rx_pkt_status;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200576 struct il_rx_mpdu_res_start *amsdu;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800577 u32 len;
578 u32 ampdu_status;
579 u32 rate_n_flags;
580
581 /**
582 * REPLY_RX and REPLY_RX_MPDU_CMD are handled differently.
583 * REPLY_RX: physical layer info is in this buffer
584 * REPLY_RX_MPDU_CMD: physical layer info was sent in separate
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200585 * command and cached in il->last_phy_res
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800586 *
587 * Here we set up local variables depending on which command is
588 * received.
589 */
590 if (pkt->hdr.cmd == REPLY_RX) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200591 phy_res = (struct il_rx_phy_res *)pkt->u.raw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800592 header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*phy_res)
593 + phy_res->cfg_phy_cnt);
594
595 len = le16_to_cpu(phy_res->byte_count);
596 rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*phy_res) +
597 phy_res->cfg_phy_cnt + len);
598 ampdu_status = le32_to_cpu(rx_pkt_status);
599 } else {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200600 if (!il->_4965.last_phy_res_valid) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200601 IL_ERR("MPDU frame without cached PHY data\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800602 return;
603 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200604 phy_res = &il->_4965.last_phy_res;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200605 amsdu = (struct il_rx_mpdu_res_start *)pkt->u.raw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800606 header = (struct ieee80211_hdr *)(pkt->u.raw + sizeof(*amsdu));
607 len = le16_to_cpu(amsdu->byte_count);
608 rx_pkt_status = *(__le32 *)(pkt->u.raw + sizeof(*amsdu) + len);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200609 ampdu_status = il4965_translate_rx_status(il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800610 le32_to_cpu(rx_pkt_status));
611 }
612
613 if ((unlikely(phy_res->cfg_phy_cnt > 20))) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100614 D_DROP("dsp size out of range [0,20]: %d/n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800615 phy_res->cfg_phy_cnt);
616 return;
617 }
618
619 if (!(rx_pkt_status & RX_RES_STATUS_NO_CRC32_ERROR) ||
620 !(rx_pkt_status & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100621 D_RX("Bad CRC or FIFO: 0x%08X.\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800622 le32_to_cpu(rx_pkt_status));
623 return;
624 }
625
626 /* This will be used in several places later */
627 rate_n_flags = le32_to_cpu(phy_res->rate_n_flags);
628
629 /* rx_status carries information about the packet to mac80211 */
630 rx_status.mactime = le64_to_cpu(phy_res->timestamp);
Stanislaw Gruszkaaac11c12011-05-24 16:28:55 +0200631 rx_status.band = (phy_res->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ?
632 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800633 rx_status.freq =
634 ieee80211_channel_to_frequency(le16_to_cpu(phy_res->channel),
635 rx_status.band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800636 rx_status.rate_idx =
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200637 il4965_hwrate_to_mac80211_idx(rate_n_flags, rx_status.band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800638 rx_status.flag = 0;
639
640 /* TSF isn't reliable. In order to allow smooth user experience,
641 * this W/A doesn't propagate it to the mac80211 */
Johannes Berg6ebacbb2011-02-23 15:06:08 +0100642 /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800643
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200644 il->ucode_beacon_time = le32_to_cpu(phy_res->beacon_time_stamp);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800645
646 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200647 rx_status.signal = il4965_calc_rssi(il, phy_res);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800648
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200649 il_dbg_log_rx_data_frame(il, len, header);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100650 D_STATS("Rssi %d, TSF %llu\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800651 rx_status.signal, (unsigned long long)rx_status.mactime);
652
653 /*
654 * "antenna number"
655 *
656 * It seems that the antenna field in the phy flags value
657 * is actually a bit field. This is undefined by radiotap,
658 * it wants an actual antenna number but I always get "7"
659 * for most legacy frames I receive indicating that the
660 * same frame was received on all three RX chains.
661 *
662 * I think this field should be removed in favor of a
663 * new 802.11n radiotap field "RX chains" that is defined
664 * as a bitmask.
665 */
666 rx_status.antenna =
667 (le16_to_cpu(phy_res->phy_flags) & RX_RES_PHY_FLAGS_ANTENNA_MSK)
668 >> RX_RES_PHY_FLAGS_ANTENNA_POS;
669
670 /* set the preamble flag if appropriate */
671 if (phy_res->phy_flags & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
672 rx_status.flag |= RX_FLAG_SHORTPRE;
673
674 /* Set up the HT phy flags */
675 if (rate_n_flags & RATE_MCS_HT_MSK)
676 rx_status.flag |= RX_FLAG_HT;
677 if (rate_n_flags & RATE_MCS_HT40_MSK)
678 rx_status.flag |= RX_FLAG_40MHZ;
679 if (rate_n_flags & RATE_MCS_SGI_MSK)
680 rx_status.flag |= RX_FLAG_SHORT_GI;
681
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200682 il4965_pass_packet_to_mac80211(il, header, len, ampdu_status,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800683 rxb, &rx_status);
684}
685
686/* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200687 * This will be used later in il_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200688void il4965_rx_reply_rx_phy(struct il_priv *il,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200689 struct il_rx_mem_buffer *rxb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800690{
Stanislaw Gruszkadcae1c62011-08-26 14:36:21 +0200691 struct il_rx_pkt *pkt = rxb_addr(rxb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200692 il->_4965.last_phy_res_valid = true;
693 memcpy(&il->_4965.last_phy_res, pkt->u.raw,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200694 sizeof(struct il_rx_phy_res));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800695}
696
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200697static int il4965_get_channels_for_scan(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800698 struct ieee80211_vif *vif,
699 enum ieee80211_band band,
700 u8 is_active, u8 n_probes,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200701 struct il_scan_channel *scan_ch)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800702{
703 struct ieee80211_channel *chan;
704 const struct ieee80211_supported_band *sband;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200705 const struct il_channel_info *ch_info;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800706 u16 passive_dwell = 0;
707 u16 active_dwell = 0;
708 int added, i;
709 u16 channel;
710
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200711 sband = il_get_hw_mode(il, band);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800712 if (!sband)
713 return 0;
714
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200715 active_dwell = il_get_active_dwell_time(il, band, n_probes);
716 passive_dwell = il_get_passive_dwell_time(il, band, vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800717
718 if (passive_dwell <= active_dwell)
719 passive_dwell = active_dwell + 1;
720
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200721 for (i = 0, added = 0; i < il->scan_request->n_channels; i++) {
722 chan = il->scan_request->channels[i];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800723
724 if (chan->band != band)
725 continue;
726
727 channel = chan->hw_value;
728 scan_ch->channel = cpu_to_le16(channel);
729
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200730 ch_info = il_get_channel_info(il, band, channel);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200731 if (!il_is_channel_valid(ch_info)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100732 D_SCAN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800733 "Channel %d is INVALID for this band.\n",
734 channel);
735 continue;
736 }
737
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200738 if (!is_active || il_is_channel_passive(ch_info) ||
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800739 (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN))
740 scan_ch->type = SCAN_CHANNEL_TYPE_PASSIVE;
741 else
742 scan_ch->type = SCAN_CHANNEL_TYPE_ACTIVE;
743
744 if (n_probes)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200745 scan_ch->type |= IL_SCAN_PROBE_MASK(n_probes);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800746
747 scan_ch->active_dwell = cpu_to_le16(active_dwell);
748 scan_ch->passive_dwell = cpu_to_le16(passive_dwell);
749
750 /* Set txpower levels to defaults */
751 scan_ch->dsp_atten = 110;
752
753 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
754 * power level:
755 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
756 */
757 if (band == IEEE80211_BAND_5GHZ)
758 scan_ch->tx_gain = ((1 << 5) | (3 << 3)) | 3;
759 else
760 scan_ch->tx_gain = ((1 << 5) | (5 << 3));
761
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100762 D_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800763 channel, le32_to_cpu(scan_ch->type),
764 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
765 "ACTIVE" : "PASSIVE",
766 (scan_ch->type & SCAN_CHANNEL_TYPE_ACTIVE) ?
767 active_dwell : passive_dwell);
768
769 scan_ch++;
770 added++;
771 }
772
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100773 D_SCAN("total channels to scan %d\n", added);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800774 return added;
775}
776
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200777int il4965_request_scan(struct il_priv *il, struct ieee80211_vif *vif)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800778{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200779 struct il_host_cmd cmd = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800780 .id = REPLY_SCAN_CMD,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200781 .len = sizeof(struct il_scan_cmd),
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800782 .flags = CMD_SIZE_HUGE,
783 };
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200784 struct il_scan_cmd *scan;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200785 struct il_rxon_context *ctx = &il->contexts[IL_RXON_CTX_BSS];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800786 u32 rate_flags = 0;
787 u16 cmd_len;
788 u16 rx_chain = 0;
789 enum ieee80211_band band;
790 u8 n_probes = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200791 u8 rx_ant = il->hw_params.valid_rx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800792 u8 rate;
793 bool is_active = false;
794 int chan_mod;
795 u8 active_chains;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200796 u8 scan_tx_antennas = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800797 int ret;
798
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200799 lockdep_assert_held(&il->mutex);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800800
801 if (vif)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200802 ctx = il_rxon_ctx_from_vif(vif);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800803
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200804 if (!il->scan_cmd) {
805 il->scan_cmd = kmalloc(sizeof(struct il_scan_cmd) +
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200806 IL_MAX_SCAN_SIZE, GFP_KERNEL);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200807 if (!il->scan_cmd) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100808 D_SCAN(
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800809 "fail to allocate memory for scan\n");
810 return -ENOMEM;
811 }
812 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200813 scan = il->scan_cmd;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200814 memset(scan, 0, sizeof(struct il_scan_cmd) + IL_MAX_SCAN_SIZE);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800815
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200816 scan->quiet_plcp_th = IL_PLCP_QUIET_THRESH;
817 scan->quiet_time = IL_ACTIVE_QUIET_TIME;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800818
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200819 if (il_is_any_associated(il)) {
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +0200820 u16 interval;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800821 u32 extra;
822 u32 suspend_time = 100;
823 u32 scan_suspend_time = 100;
824
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100825 D_INFO("Scanning while associated...\n");
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +0200826 interval = vif->bss_conf.beacon_int;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800827
828 scan->suspend_time = 0;
829 scan->max_out_time = cpu_to_le32(200 * 1024);
830 if (!interval)
831 interval = suspend_time;
832
833 extra = (suspend_time / interval) << 22;
834 scan_suspend_time = (extra |
835 ((suspend_time % interval) * 1024));
836 scan->suspend_time = cpu_to_le32(scan_suspend_time);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100837 D_SCAN("suspend_time 0x%X beacon interval %d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800838 scan_suspend_time, interval);
839 }
840
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200841 if (il->scan_request->n_ssids) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800842 int i, p = 0;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100843 D_SCAN("Kicking off active scan\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200844 for (i = 0; i < il->scan_request->n_ssids; i++) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800845 /* always does wildcard anyway */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200846 if (!il->scan_request->ssids[i].ssid_len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800847 continue;
848 scan->direct_scan[p].id = WLAN_EID_SSID;
849 scan->direct_scan[p].len =
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200850 il->scan_request->ssids[i].ssid_len;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800851 memcpy(scan->direct_scan[p].ssid,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200852 il->scan_request->ssids[i].ssid,
853 il->scan_request->ssids[i].ssid_len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800854 n_probes++;
855 p++;
856 }
857 is_active = true;
858 } else
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100859 D_SCAN("Start passive scan.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800860
861 scan->tx_cmd.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK;
862 scan->tx_cmd.sta_id = ctx->bcast_sta_id;
863 scan->tx_cmd.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
864
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200865 switch (il->scan_band) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800866 case IEEE80211_BAND_2GHZ:
867 scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
868 chan_mod = le32_to_cpu(
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200869 il->contexts[IL_RXON_CTX_BSS].active.flags &
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800870 RXON_FLG_CHANNEL_MODE_MSK)
871 >> RXON_FLG_CHANNEL_MODE_POS;
872 if (chan_mod == CHANNEL_MODE_PURE_40) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200873 rate = IL_RATE_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800874 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200875 rate = IL_RATE_1M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800876 rate_flags = RATE_MCS_CCK_MSK;
877 }
878 break;
879 case IEEE80211_BAND_5GHZ:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200880 rate = IL_RATE_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800881 break;
882 default:
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200883 IL_WARN("Invalid scan band\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800884 return -EIO;
885 }
886
887 /*
888 * If active scanning is requested but a certain channel is
889 * marked passive, we can do active scanning if we detect
890 * transmissions.
891 *
892 * There is an issue with some firmware versions that triggers
893 * a sysassert on a "good CRC threshold" of zero (== disabled),
894 * on a radar channel even though this means that we should NOT
895 * send probes.
896 *
897 * The "good CRC threshold" is the number of frames that we
898 * need to receive during our dwell time on a channel before
899 * sending out probes -- setting this to a huge value will
900 * mean we never reach it, but at the same time work around
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200901 * the aforementioned issue. Thus use IL_GOOD_CRC_TH_NEVER
902 * here instead of IL_GOOD_CRC_TH_DISABLED.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800903 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200904 scan->good_CRC_th = is_active ? IL_GOOD_CRC_TH_DEFAULT :
905 IL_GOOD_CRC_TH_NEVER;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800906
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200907 band = il->scan_band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800908
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200909 if (il->cfg->scan_rx_antennas[band])
910 rx_ant = il->cfg->scan_rx_antennas[band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800911
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200912 il->scan_tx_ant[band] = il4965_toggle_tx_ant(il,
913 il->scan_tx_ant[band],
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800914 scan_tx_antennas);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200915 rate_flags |= il4965_ant_idx_to_flags(il->scan_tx_ant[band]);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200916 scan->tx_cmd.rate_n_flags = il4965_hw_set_rate_n_flags(rate, rate_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800917
918 /* In power save mode use one chain, otherwise use all chains */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200919 if (test_bit(STATUS_POWER_PMI, &il->status)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800920 /* rx_ant has been set to all valid chains previously */
921 active_chains = rx_ant &
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200922 ((u8)(il->chain_noise_data.active_chains));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800923 if (!active_chains)
924 active_chains = rx_ant;
925
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100926 D_SCAN("chain_noise_data.active_chains: %u\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200927 il->chain_noise_data.active_chains);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800928
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200929 rx_ant = il4965_first_antenna(active_chains);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800930 }
931
932 /* MIMO is not used here, but value is required */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200933 rx_chain |= il->hw_params.valid_rx_ant << RXON_RX_CHAIN_VALID_POS;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800934 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_MIMO_SEL_POS;
935 rx_chain |= rx_ant << RXON_RX_CHAIN_FORCE_SEL_POS;
936 rx_chain |= 0x1 << RXON_RX_CHAIN_DRIVER_FORCE_POS;
937 scan->rx_chain = cpu_to_le16(rx_chain);
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +0200938
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200939 cmd_len = il_fill_probe_req(il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800940 (struct ieee80211_mgmt *)scan->data,
941 vif->addr,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200942 il->scan_request->ie,
943 il->scan_request->ie_len,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200944 IL_MAX_SCAN_SIZE - sizeof(*scan));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800945 scan->tx_cmd.len = cpu_to_le16(cmd_len);
946
947 scan->filter_flags |= (RXON_FILTER_ACCEPT_GRP_MSK |
948 RXON_FILTER_BCON_AWARE_MSK);
949
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200950 scan->channel_count = il4965_get_channels_for_scan(il, vif, band,
Stanislaw Gruszkadd6d2a82011-06-08 15:28:26 +0200951 is_active, n_probes,
952 (void *)&scan->data[cmd_len]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800953 if (scan->channel_count == 0) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100954 D_SCAN("channel count %d\n", scan->channel_count);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800955 return -EIO;
956 }
957
958 cmd.len += le16_to_cpu(scan->tx_cmd.len) +
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200959 scan->channel_count * sizeof(struct il_scan_channel);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800960 cmd.data = scan;
961 scan->len = cpu_to_le16(cmd.len);
962
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200963 set_bit(STATUS_SCAN_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800964
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200965 ret = il_send_cmd_sync(il, &cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800966 if (ret)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200967 clear_bit(STATUS_SCAN_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800968
969 return ret;
970}
971
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200972int il4965_manage_ibss_station(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800973 struct ieee80211_vif *vif, bool add)
974{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200975 struct il_vif_priv *vif_priv = (void *)vif->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800976
977 if (add)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200978 return il4965_add_bssid_station(il, vif_priv->ctx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800979 vif->bss_conf.bssid,
980 &vif_priv->ibss_bssid_sta_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200981 return il_remove_station(il, vif_priv->ibss_bssid_sta_id,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800982 vif->bss_conf.bssid);
983}
984
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200985void il4965_free_tfds_in_queue(struct il_priv *il,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800986 int sta_id, int tid, int freed)
987{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200988 lockdep_assert_held(&il->sta_lock);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800989
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200990 if (il->stations[sta_id].tid[tid].tfds_in_queue >= freed)
991 il->stations[sta_id].tid[tid].tfds_in_queue -= freed;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800992 else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100993 D_TX("free more than tfds_in_queue (%u:%d)\n",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200994 il->stations[sta_id].tid[tid].tfds_in_queue,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800995 freed);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200996 il->stations[sta_id].tid[tid].tfds_in_queue = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800997 }
998}
999
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001000#define IL_TX_QUEUE_MSK 0xfffff
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001001
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001002static bool il4965_is_single_rx_stream(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001003{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001004 return il->current_ht_config.smps == IEEE80211_SMPS_STATIC ||
1005 il->current_ht_config.single_chain_sufficient;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001006}
1007
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001008#define IL_NUM_RX_CHAINS_MULTIPLE 3
1009#define IL_NUM_RX_CHAINS_SINGLE 2
1010#define IL_NUM_IDLE_CHAINS_DUAL 2
1011#define IL_NUM_IDLE_CHAINS_SINGLE 1
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001012
1013/*
1014 * Determine how many receiver/antenna chains to use.
1015 *
1016 * More provides better reception via diversity. Fewer saves power
1017 * at the expense of throughput, but only when not in powersave to
1018 * start with.
1019 *
1020 * MIMO (dual stream) requires at least 2, but works better with 3.
1021 * This does not determine *which* chains to use, just how many.
1022 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001023static int il4965_get_active_rx_chain_count(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001024{
1025 /* # of Rx chains to use when expecting MIMO. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001026 if (il4965_is_single_rx_stream(il))
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001027 return IL_NUM_RX_CHAINS_SINGLE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001028 else
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001029 return IL_NUM_RX_CHAINS_MULTIPLE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001030}
1031
1032/*
1033 * When we are in power saving mode, unless device support spatial
1034 * multiplexing power save, use the active count for rx chain count.
1035 */
1036static int
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001037il4965_get_idle_rx_chain_count(struct il_priv *il, int active_cnt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001038{
1039 /* # Rx chains when idling, depending on SMPS mode */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001040 switch (il->current_ht_config.smps) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001041 case IEEE80211_SMPS_STATIC:
1042 case IEEE80211_SMPS_DYNAMIC:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001043 return IL_NUM_IDLE_CHAINS_SINGLE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001044 case IEEE80211_SMPS_OFF:
1045 return active_cnt;
1046 default:
1047 WARN(1, "invalid SMPS mode %d",
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001048 il->current_ht_config.smps);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001049 return active_cnt;
1050 }
1051}
1052
1053/* up to 4 chains */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001054static u8 il4965_count_chain_bitmap(u32 chain_bitmap)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001055{
1056 u8 res;
1057 res = (chain_bitmap & BIT(0)) >> 0;
1058 res += (chain_bitmap & BIT(1)) >> 1;
1059 res += (chain_bitmap & BIT(2)) >> 2;
1060 res += (chain_bitmap & BIT(3)) >> 3;
1061 return res;
1062}
1063
1064/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001065 * il4965_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001066 *
1067 * Selects how many and which Rx receivers/antennas/chains to use.
1068 * This should not be used for scan command ... it puts data in wrong place.
1069 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001070void il4965_set_rxon_chain(struct il_priv *il, struct il_rxon_context *ctx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001071{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001072 bool is_single = il4965_is_single_rx_stream(il);
1073 bool is_cam = !test_bit(STATUS_POWER_PMI, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001074 u8 idle_rx_cnt, active_rx_cnt, valid_rx_cnt;
1075 u32 active_chains;
1076 u16 rx_chain;
1077
1078 /* Tell uCode which antennas are actually connected.
1079 * Before first association, we assume all antennas are connected.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001080 * Just after first association, il4965_chain_noise_calibration()
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001081 * checks which antennas actually *are* connected. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001082 if (il->chain_noise_data.active_chains)
1083 active_chains = il->chain_noise_data.active_chains;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001084 else
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001085 active_chains = il->hw_params.valid_rx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001086
1087 rx_chain = active_chains << RXON_RX_CHAIN_VALID_POS;
1088
1089 /* How many receivers should we use? */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001090 active_rx_cnt = il4965_get_active_rx_chain_count(il);
1091 idle_rx_cnt = il4965_get_idle_rx_chain_count(il, active_rx_cnt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001092
1093
1094 /* correct rx chain count according hw settings
1095 * and chain noise calibration
1096 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001097 valid_rx_cnt = il4965_count_chain_bitmap(active_chains);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001098 if (valid_rx_cnt < active_rx_cnt)
1099 active_rx_cnt = valid_rx_cnt;
1100
1101 if (valid_rx_cnt < idle_rx_cnt)
1102 idle_rx_cnt = valid_rx_cnt;
1103
1104 rx_chain |= active_rx_cnt << RXON_RX_CHAIN_MIMO_CNT_POS;
1105 rx_chain |= idle_rx_cnt << RXON_RX_CHAIN_CNT_POS;
1106
1107 ctx->staging.rx_chain = cpu_to_le16(rx_chain);
1108
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001109 if (!is_single && active_rx_cnt >= IL_NUM_RX_CHAINS_SINGLE && is_cam)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001110 ctx->staging.rx_chain |= RXON_RX_CHAIN_MIMO_FORCE_MSK;
1111 else
1112 ctx->staging.rx_chain &= ~RXON_RX_CHAIN_MIMO_FORCE_MSK;
1113
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001114 D_ASSOC("rx_chain=0x%X active=%d idle=%d\n",
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001115 ctx->staging.rx_chain,
1116 active_rx_cnt, idle_rx_cnt);
1117
1118 WARN_ON(active_rx_cnt == 0 || idle_rx_cnt == 0 ||
1119 active_rx_cnt < idle_rx_cnt);
1120}
1121
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001122u8 il4965_toggle_tx_ant(struct il_priv *il, u8 ant, u8 valid)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001123{
1124 int i;
1125 u8 ind = ant;
1126
1127 for (i = 0; i < RATE_ANT_NUM - 1; i++) {
1128 ind = (ind + 1) < RATE_ANT_NUM ? ind + 1 : 0;
1129 if (valid & BIT(ind))
1130 return ind;
1131 }
1132 return ant;
1133}
1134
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001135static const char *il4965_get_fh_string(int cmd)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001136{
1137 switch (cmd) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001138 IL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG);
1139 IL_CMD(FH_RSCSR_CHNL0_RBDCB_BASE_REG);
1140 IL_CMD(FH_RSCSR_CHNL0_WPTR);
1141 IL_CMD(FH_MEM_RCSR_CHNL0_CONFIG_REG);
1142 IL_CMD(FH_MEM_RSSR_SHARED_CTRL_REG);
1143 IL_CMD(FH_MEM_RSSR_RX_STATUS_REG);
1144 IL_CMD(FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV);
1145 IL_CMD(FH_TSSR_TX_STATUS_REG);
1146 IL_CMD(FH_TSSR_TX_ERROR_REG);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001147 default:
1148 return "UNKNOWN";
1149 }
1150}
1151
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001152int il4965_dump_fh(struct il_priv *il, char **buf, bool display)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001153{
1154 int i;
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001155#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001156 int pos = 0;
1157 size_t bufsz = 0;
1158#endif
1159 static const u32 fh_tbl[] = {
1160 FH_RSCSR_CHNL0_STTS_WPTR_REG,
1161 FH_RSCSR_CHNL0_RBDCB_BASE_REG,
1162 FH_RSCSR_CHNL0_WPTR,
1163 FH_MEM_RCSR_CHNL0_CONFIG_REG,
1164 FH_MEM_RSSR_SHARED_CTRL_REG,
1165 FH_MEM_RSSR_RX_STATUS_REG,
1166 FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV,
1167 FH_TSSR_TX_STATUS_REG,
1168 FH_TSSR_TX_ERROR_REG
1169 };
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001170#ifdef CONFIG_IWLEGACY_DEBUG
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001171 if (display) {
1172 bufsz = ARRAY_SIZE(fh_tbl) * 48 + 40;
1173 *buf = kmalloc(bufsz, GFP_KERNEL);
1174 if (!*buf)
1175 return -ENOMEM;
1176 pos += scnprintf(*buf + pos, bufsz - pos,
1177 "FH register values:\n");
1178 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
1179 pos += scnprintf(*buf + pos, bufsz - pos,
1180 " %34s: 0X%08x\n",
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001181 il4965_get_fh_string(fh_tbl[i]),
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02001182 il_rd(il, fh_tbl[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001183 }
1184 return pos;
1185 }
1186#endif
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001187 IL_ERR("FH register values:\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001188 for (i = 0; i < ARRAY_SIZE(fh_tbl); i++) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001189 IL_ERR(" %34s: 0X%08x\n",
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001190 il4965_get_fh_string(fh_tbl[i]),
Stanislaw Gruszka0c1a94e2011-08-24 17:37:16 +02001191 il_rd(il, fh_tbl[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001192 }
1193 return 0;
1194}