1 /******************************************************************************
5 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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.
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.
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,
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
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>
38 #include "iwl-helpers.h"
39 #include "iwl-4965-hw.h"
43 void il4965_check_abort_status(struct il_priv
*il
,
44 u8 frame_count
, u32 status
)
46 if (frame_count
== 1 && status
== TX_STATUS_FAIL_RFKILL_FLUSH
) {
47 IL_ERR("Tx flush command to flush out all frames\n");
48 if (!test_bit(STATUS_EXIT_PENDING
, &il
->status
))
49 queue_work(il
->workqueue
, &il
->tx_flush
);
56 struct il_mod_params il4965_mod_params
= {
59 /* the rest are 0 by default */
62 void il4965_rx_queue_reset(struct il_priv
*il
, struct il_rx_queue
*rxq
)
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
) {
74 pci_unmap_page(il
->pci_dev
, rxq
->pool
[i
].page_dma
,
75 PAGE_SIZE
<< il
->hw_params
.rx_page_order
,
77 __il_free_pages(il
, rxq
->pool
[i
].page
);
78 rxq
->pool
[i
].page
= NULL
;
80 list_add_tail(&rxq
->pool
[i
].list
, &rxq
->rx_used
);
83 for (i
= 0; i
< RX_QUEUE_SIZE
; i
++)
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;
91 spin_unlock_irqrestore(&rxq
->lock
, flags
);
94 int il4965_rx_init(struct il_priv
*il
, struct il_rx_queue
*rxq
)
97 const u32 rfdnlog
= RX_QUEUE_SIZE_LOG
; /* 256 RBDs */
100 if (il
->cfg
->mod_params
->amsdu_size_8K
)
101 rb_size
= FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_8K
;
103 rb_size
= FH_RCSR_RX_CONFIG_REG_VAL_RB_SIZE_4K
;
106 il_wr(il
, FH_MEM_RCSR_CHNL0_CONFIG_REG
, 0);
108 /* Reset driver's Rx queue write index */
109 il_wr(il
, FH_RSCSR_CHNL0_RBDCB_WPTR_REG
, 0);
111 /* Tell device where to find RBD circular buffer in DRAM */
112 il_wr(il
, FH_RSCSR_CHNL0_RBDCB_BASE_REG
,
113 (u32
)(rxq
->bd_dma
>> 8));
115 /* Tell device where in DRAM to update its Rx status */
116 il_wr(il
, FH_RSCSR_CHNL0_STTS_WPTR_REG
,
117 rxq
->rb_stts_dma
>> 4);
120 * Direct rx interrupts to hosts
121 * Rx buffer size 4 or 8k
125 il_wr(il
, FH_MEM_RCSR_CHNL0_CONFIG_REG
,
126 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
|
130 (rb_timeout
<< FH_RCSR_RX_CONFIG_REG_IRQ_RBTH_POS
)|
131 (rfdnlog
<< FH_RCSR_RX_CONFIG_RBDCB_SIZE_POS
));
133 /* Set interrupt coalescing timer to default (2048 usecs) */
134 il_write8(il
, CSR_INT_COALESCING
, IL_HOST_INT_TIMEOUT_DEF
);
139 static void il4965_set_pwr_vmain(struct il_priv
*il
)
142 * (for documentation purposes)
143 * to set power to V_AUX, do:
145 if (pci_pme_capable(il->pci_dev, PCI_D3cold))
146 il_set_bits_mask_prph(il, APMG_PS_CTRL_REG,
147 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
148 ~APMG_PS_CTRL_MSK_PWR_SRC);
151 il_set_bits_mask_prph(il
, APMG_PS_CTRL_REG
,
152 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN
,
153 ~APMG_PS_CTRL_MSK_PWR_SRC
);
156 int il4965_hw_nic_init(struct il_priv
*il
)
159 struct il_rx_queue
*rxq
= &il
->rxq
;
163 spin_lock_irqsave(&il
->lock
, flags
);
164 il
->cfg
->ops
->lib
->apm_ops
.init(il
);
166 /* Set interrupt coalescing calibration timer to default (512 usecs) */
167 il_write8(il
, CSR_INT_COALESCING
, IL_HOST_INT_CALIB_TIMEOUT_DEF
);
169 spin_unlock_irqrestore(&il
->lock
, flags
);
171 il4965_set_pwr_vmain(il
);
173 il
->cfg
->ops
->lib
->apm_ops
.config(il
);
175 /* Allocate the RX queue, or reset if it is already allocated */
177 ret
= il_rx_queue_alloc(il
);
179 IL_ERR("Unable to initialize Rx queue\n");
183 il4965_rx_queue_reset(il
, rxq
);
185 il4965_rx_replenish(il
);
187 il4965_rx_init(il
, rxq
);
189 spin_lock_irqsave(&il
->lock
, flags
);
191 rxq
->need_update
= 1;
192 il_rx_queue_update_write_ptr(il
, rxq
);
194 spin_unlock_irqrestore(&il
->lock
, flags
);
196 /* Allocate or reset and init all Tx and Command queues */
198 ret
= il4965_txq_ctx_alloc(il
);
202 il4965_txq_ctx_reset(il
);
204 set_bit(STATUS_INIT
, &il
->status
);
210 * il4965_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
212 static inline __le32
il4965_dma_addr2rbd_ptr(struct il_priv
*il
,
215 return cpu_to_le32((u32
)(dma_addr
>> 8));
219 * il4965_rx_queue_restock - refill RX queue from pre-allocated pool
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.
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
229 void il4965_rx_queue_restock(struct il_priv
*il
)
231 struct il_rx_queue
*rxq
= &il
->rxq
;
232 struct list_head
*element
;
233 struct il_rx_mem_buffer
*rxb
;
236 spin_lock_irqsave(&rxq
->lock
, flags
);
237 while (il_rx_queue_space(rxq
) > 0 && rxq
->free_count
) {
238 /* The overwritten rxb must be a used one */
239 rxb
= rxq
->queue
[rxq
->write
];
240 BUG_ON(rxb
&& rxb
->page
);
242 /* Get next free Rx buffer, remove from free list */
243 element
= rxq
->rx_free
.next
;
244 rxb
= list_entry(element
, struct il_rx_mem_buffer
, list
);
247 /* Point to Rx buffer via next RBD in circular buffer */
248 rxq
->bd
[rxq
->write
] = il4965_dma_addr2rbd_ptr(il
,
250 rxq
->queue
[rxq
->write
] = rxb
;
251 rxq
->write
= (rxq
->write
+ 1) & RX_QUEUE_MASK
;
254 spin_unlock_irqrestore(&rxq
->lock
, flags
);
255 /* If the pre-allocated buffer pool is dropping low, schedule to
257 if (rxq
->free_count
<= RX_LOW_WATERMARK
)
258 queue_work(il
->workqueue
, &il
->rx_replenish
);
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
);
267 il_rx_queue_update_write_ptr(il
, rxq
);
272 * il4965_rx_replenish - Move all used packet from rx_used to rx_free
274 * When moving to rx_free an SKB is allocated for the slot.
276 * Also restock the Rx queue via il_rx_queue_restock.
277 * This is called as a scheduled work item (except for during initialization)
279 static void il4965_rx_allocate(struct il_priv
*il
, gfp_t priority
)
281 struct il_rx_queue
*rxq
= &il
->rxq
;
282 struct list_head
*element
;
283 struct il_rx_mem_buffer
*rxb
;
286 gfp_t gfp_mask
= priority
;
289 spin_lock_irqsave(&rxq
->lock
, flags
);
290 if (list_empty(&rxq
->rx_used
)) {
291 spin_unlock_irqrestore(&rxq
->lock
, flags
);
294 spin_unlock_irqrestore(&rxq
->lock
, flags
);
296 if (rxq
->free_count
> RX_LOW_WATERMARK
)
297 gfp_mask
|= __GFP_NOWARN
;
299 if (il
->hw_params
.rx_page_order
> 0)
300 gfp_mask
|= __GFP_COMP
;
302 /* Alloc a new receive buffer */
303 page
= alloc_pages(gfp_mask
, il
->hw_params
.rx_page_order
);
306 D_INFO("alloc_pages failed, "
308 il
->hw_params
.rx_page_order
);
310 if (rxq
->free_count
<= RX_LOW_WATERMARK
&&
313 "Failed to alloc_pages with %s. "
314 "Only %u free buffers remaining.\n",
315 priority
== GFP_ATOMIC
?
316 "GFP_ATOMIC" : "GFP_KERNEL",
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 */
324 spin_lock_irqsave(&rxq
->lock
, flags
);
326 if (list_empty(&rxq
->rx_used
)) {
327 spin_unlock_irqrestore(&rxq
->lock
, flags
);
328 __free_pages(page
, il
->hw_params
.rx_page_order
);
331 element
= rxq
->rx_used
.next
;
332 rxb
= list_entry(element
, struct il_rx_mem_buffer
, list
);
335 spin_unlock_irqrestore(&rxq
->lock
, flags
);
339 /* Get physical address of the RB */
340 rxb
->page_dma
= pci_map_page(il
->pci_dev
, page
, 0,
341 PAGE_SIZE
<< il
->hw_params
.rx_page_order
,
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));
348 spin_lock_irqsave(&rxq
->lock
, flags
);
350 list_add_tail(&rxb
->list
, &rxq
->rx_free
);
352 il
->alloc_rxb_page
++;
354 spin_unlock_irqrestore(&rxq
->lock
, flags
);
358 void il4965_rx_replenish(struct il_priv
*il
)
362 il4965_rx_allocate(il
, GFP_KERNEL
);
364 spin_lock_irqsave(&il
->lock
, flags
);
365 il4965_rx_queue_restock(il
);
366 spin_unlock_irqrestore(&il
->lock
, flags
);
369 void il4965_rx_replenish_now(struct il_priv
*il
)
371 il4965_rx_allocate(il
, GFP_ATOMIC
);
373 il4965_rx_queue_restock(il
);
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
381 void il4965_rx_queue_free(struct il_priv
*il
, struct il_rx_queue
*rxq
)
384 for (i
= 0; i
< RX_QUEUE_SIZE
+ RX_FREE_BUFFERS
; i
++) {
385 if (rxq
->pool
[i
].page
!= NULL
) {
386 pci_unmap_page(il
->pci_dev
, rxq
->pool
[i
].page_dma
,
387 PAGE_SIZE
<< il
->hw_params
.rx_page_order
,
389 __il_free_pages(il
, rxq
->pool
[i
].page
);
390 rxq
->pool
[i
].page
= NULL
;
394 dma_free_coherent(&il
->pci_dev
->dev
, 4 * RX_QUEUE_SIZE
, rxq
->bd
,
396 dma_free_coherent(&il
->pci_dev
->dev
, sizeof(struct il_rb_status
),
397 rxq
->rb_stts
, rxq
->rb_stts_dma
);
402 int il4965_rxq_stop(struct il_priv
*il
)
406 il_wr(il
, FH_MEM_RCSR_CHNL0_CONFIG_REG
, 0);
407 il_poll_bit(il
, FH_MEM_RSSR_RX_STATUS_REG
,
408 FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE
, 1000);
413 int il4965_hwrate_to_mac80211_idx(u32 rate_n_flags
, enum ieee80211_band band
)
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);
422 /* Legacy rate format, search for match in table */
424 if (band
== IEEE80211_BAND_5GHZ
)
425 band_offset
= IL_FIRST_OFDM_RATE
;
426 for (idx
= band_offset
; idx
< IL_RATE_COUNT_LEGACY
; idx
++)
427 if (il_rates
[idx
].plcp
== (rate_n_flags
& 0xFF))
428 return idx
- band_offset
;
434 static int il4965_calc_rssi(struct il_priv
*il
,
435 struct il_rx_phy_res
*rx_resp
)
437 /* data from PHY/DSP regarding signal strength, etc.,
438 * contents are always there, not configurable by host. */
439 struct il4965_rx_non_cfg_phy
*ncphy
=
440 (struct il4965_rx_non_cfg_phy
*)rx_resp
->non_cfg_phy_buf
;
441 u32 agc
= (le16_to_cpu(ncphy
->agc_info
) & IL49_AGC_DB_MASK
)
445 (le16_to_cpu(rx_resp
->phy_flags
) & IL49_RX_PHY_FLAGS_ANTENNAE_MASK
)
446 >> IL49_RX_PHY_FLAGS_ANTENNAE_OFFSET
;
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
);
459 D_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
460 ncphy
->rssi_info
[0], ncphy
->rssi_info
[2], ncphy
->rssi_info
[4],
463 /* dBm = max_rssi dB - agc dB - constant.
464 * Higher AGC (higher radio gain) means lower signal. */
465 return max_rssi
- agc
- IL4965_RSSI_OFFSET
;
469 static u32
il4965_translate_rx_status(struct il_priv
*il
, u32 decrypt_in
)
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
);
478 decrypt_out
|= (decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
);
480 /* packet was not encrypted */
481 if ((decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) ==
482 RX_RES_STATUS_SEC_TYPE_NONE
)
485 /* packet was encrypted with unknown alg */
486 if ((decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) ==
487 RX_RES_STATUS_SEC_TYPE_ERR
)
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
)
495 switch (decrypt_in
& RX_RES_STATUS_SEC_TYPE_MSK
) {
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
))
501 decrypt_out
|= RX_RES_STATUS_BAD_ICV_MIC
;
503 decrypt_out
|= RX_RES_STATUS_DECRYPT_OK
;
507 case RX_RES_STATUS_SEC_TYPE_TKIP
:
508 if (!(decrypt_in
& RX_MPDU_RES_STATUS_TTAK_OK
)) {
510 decrypt_out
|= RX_RES_STATUS_BAD_KEY_TTAK
;
513 /* fall through if TTAK OK */
515 if (!(decrypt_in
& RX_MPDU_RES_STATUS_ICV_OK
))
516 decrypt_out
|= RX_RES_STATUS_BAD_ICV_MIC
;
518 decrypt_out
|= RX_RES_STATUS_DECRYPT_OK
;
522 D_RX("decrypt_in:0x%x decrypt_out = 0x%x\n",
523 decrypt_in
, decrypt_out
);
528 static void il4965_pass_packet_to_mac80211(struct il_priv
*il
,
529 struct ieee80211_hdr
*hdr
,
532 struct il_rx_mem_buffer
*rxb
,
533 struct ieee80211_rx_status
*stats
)
536 __le16 fc
= hdr
->frame_control
;
538 /* We only process data packets if the interface is open */
539 if (unlikely(!il
->is_open
)) {
541 "Dropping packet while interface is not open.\n");
545 /* In case of HW accelerated crypto and bad decryption, drop */
546 if (!il
->cfg
->mod_params
->sw_crypto
&&
547 il_set_decrypted_flag(il
, hdr
, ampdu_status
, stats
))
550 skb
= dev_alloc_skb(128);
552 IL_ERR("dev_alloc_skb failed\n");
556 skb_add_rx_frag(skb
, 0, rxb
->page
, (void *)hdr
- rxb_addr(rxb
), len
);
558 il_update_stats(il
, false, fc
, len
);
559 memcpy(IEEE80211_SKB_RXCB(skb
), stats
, sizeof(*stats
));
561 ieee80211_rx(il
->hw
, skb
);
562 il
->alloc_rxb_page
--;
566 /* Called for REPLY_RX (legacy ABG frames), or
567 * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */
568 void il4965_rx_reply_rx(struct il_priv
*il
,
569 struct il_rx_mem_buffer
*rxb
)
571 struct ieee80211_hdr
*header
;
572 struct ieee80211_rx_status rx_status
;
573 struct il_rx_pkt
*pkt
= rxb_addr(rxb
);
574 struct il_rx_phy_res
*phy_res
;
575 __le32 rx_pkt_status
;
576 struct il_rx_mpdu_res_start
*amsdu
;
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
585 * command and cached in il->last_phy_res
587 * Here we set up local variables depending on which command is
590 if (pkt
->hdr
.cmd
== REPLY_RX
) {
591 phy_res
= (struct il_rx_phy_res
*)pkt
->u
.raw
;
592 header
= (struct ieee80211_hdr
*)(pkt
->u
.raw
+ sizeof(*phy_res
)
593 + phy_res
->cfg_phy_cnt
);
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
);
600 if (!il
->_4965
.last_phy_res_valid
) {
601 IL_ERR("MPDU frame without cached PHY data\n");
604 phy_res
= &il
->_4965
.last_phy_res
;
605 amsdu
= (struct il_rx_mpdu_res_start
*)pkt
->u
.raw
;
606 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
);
609 ampdu_status
= il4965_translate_rx_status(il
,
610 le32_to_cpu(rx_pkt_status
));
613 if ((unlikely(phy_res
->cfg_phy_cnt
> 20))) {
614 D_DROP("dsp size out of range [0,20]: %d/n",
615 phy_res
->cfg_phy_cnt
);
619 if (!(rx_pkt_status
& RX_RES_STATUS_NO_CRC32_ERROR
) ||
620 !(rx_pkt_status
& RX_RES_STATUS_NO_RXE_OVERFLOW
)) {
621 D_RX("Bad CRC or FIFO: 0x%08X.\n",
622 le32_to_cpu(rx_pkt_status
));
626 /* This will be used in several places later */
627 rate_n_flags
= le32_to_cpu(phy_res
->rate_n_flags
);
629 /* rx_status carries information about the packet to mac80211 */
630 rx_status
.mactime
= le64_to_cpu(phy_res
->timestamp
);
631 rx_status
.band
= (phy_res
->phy_flags
& RX_RES_PHY_FLAGS_BAND_24_MSK
) ?
632 IEEE80211_BAND_2GHZ
: IEEE80211_BAND_5GHZ
;
634 ieee80211_channel_to_frequency(le16_to_cpu(phy_res
->channel
),
637 il4965_hwrate_to_mac80211_idx(rate_n_flags
, rx_status
.band
);
640 /* TSF isn't reliable. In order to allow smooth user experience,
641 * this W/A doesn't propagate it to the mac80211 */
642 /*rx_status.flag |= RX_FLAG_MACTIME_MPDU;*/
644 il
->ucode_beacon_time
= le32_to_cpu(phy_res
->beacon_time_stamp
);
646 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
647 rx_status
.signal
= il4965_calc_rssi(il
, phy_res
);
649 il_dbg_log_rx_data_frame(il
, len
, header
);
650 D_STATS("Rssi %d, TSF %llu\n",
651 rx_status
.signal
, (unsigned long long)rx_status
.mactime
);
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.
662 * I think this field should be removed in favor of a
663 * new 802.11n radiotap field "RX chains" that is defined
667 (le16_to_cpu(phy_res
->phy_flags
) & RX_RES_PHY_FLAGS_ANTENNA_MSK
)
668 >> RX_RES_PHY_FLAGS_ANTENNA_POS
;
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
;
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
;
682 il4965_pass_packet_to_mac80211(il
, header
, len
, ampdu_status
,
686 /* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
687 * This will be used later in il_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
688 void il4965_rx_reply_rx_phy(struct il_priv
*il
,
689 struct il_rx_mem_buffer
*rxb
)
691 struct il_rx_pkt
*pkt
= rxb_addr(rxb
);
692 il
->_4965
.last_phy_res_valid
= true;
693 memcpy(&il
->_4965
.last_phy_res
, pkt
->u
.raw
,
694 sizeof(struct il_rx_phy_res
));
697 static int il4965_get_channels_for_scan(struct il_priv
*il
,
698 struct ieee80211_vif
*vif
,
699 enum ieee80211_band band
,
700 u8 is_active
, u8 n_probes
,
701 struct il_scan_channel
*scan_ch
)
703 struct ieee80211_channel
*chan
;
704 const struct ieee80211_supported_band
*sband
;
705 const struct il_channel_info
*ch_info
;
706 u16 passive_dwell
= 0;
707 u16 active_dwell
= 0;
711 sband
= il_get_hw_mode(il
, band
);
715 active_dwell
= il_get_active_dwell_time(il
, band
, n_probes
);
716 passive_dwell
= il_get_passive_dwell_time(il
, band
, vif
);
718 if (passive_dwell
<= active_dwell
)
719 passive_dwell
= active_dwell
+ 1;
721 for (i
= 0, added
= 0; i
< il
->scan_request
->n_channels
; i
++) {
722 chan
= il
->scan_request
->channels
[i
];
724 if (chan
->band
!= band
)
727 channel
= chan
->hw_value
;
728 scan_ch
->channel
= cpu_to_le16(channel
);
730 ch_info
= il_get_channel_info(il
, band
, channel
);
731 if (!il_is_channel_valid(ch_info
)) {
733 "Channel %d is INVALID for this band.\n",
738 if (!is_active
|| il_is_channel_passive(ch_info
) ||
739 (chan
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
))
740 scan_ch
->type
= SCAN_CHANNEL_TYPE_PASSIVE
;
742 scan_ch
->type
= SCAN_CHANNEL_TYPE_ACTIVE
;
745 scan_ch
->type
|= IL_SCAN_PROBE_MASK(n_probes
);
747 scan_ch
->active_dwell
= cpu_to_le16(active_dwell
);
748 scan_ch
->passive_dwell
= cpu_to_le16(passive_dwell
);
750 /* Set txpower levels to defaults */
751 scan_ch
->dsp_atten
= 110;
753 /* NOTE: if we were doing 6Mb OFDM for scans we'd use
755 * scan_ch->tx_gain = ((1 << 5) | (2 << 3)) | 3;
757 if (band
== IEEE80211_BAND_5GHZ
)
758 scan_ch
->tx_gain
= ((1 << 5) | (3 << 3)) | 3;
760 scan_ch
->tx_gain
= ((1 << 5) | (5 << 3));
762 D_SCAN("Scanning ch=%d prob=0x%X [%s %d]\n",
763 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
);
773 D_SCAN("total channels to scan %d\n", added
);
777 int il4965_request_scan(struct il_priv
*il
, struct ieee80211_vif
*vif
)
779 struct il_host_cmd cmd
= {
780 .id
= REPLY_SCAN_CMD
,
781 .len
= sizeof(struct il_scan_cmd
),
782 .flags
= CMD_SIZE_HUGE
,
784 struct il_scan_cmd
*scan
;
785 struct il_rxon_context
*ctx
= &il
->ctx
;
789 enum ieee80211_band band
;
791 u8 rx_ant
= il
->hw_params
.valid_rx_ant
;
793 bool is_active
= false;
796 u8 scan_tx_antennas
= il
->hw_params
.valid_tx_ant
;
799 lockdep_assert_held(&il
->mutex
);
802 ctx
= il_rxon_ctx_from_vif(vif
);
805 il
->scan_cmd
= kmalloc(sizeof(struct il_scan_cmd
) +
806 IL_MAX_SCAN_SIZE
, GFP_KERNEL
);
809 "fail to allocate memory for scan\n");
814 memset(scan
, 0, sizeof(struct il_scan_cmd
) + IL_MAX_SCAN_SIZE
);
816 scan
->quiet_plcp_th
= IL_PLCP_QUIET_THRESH
;
817 scan
->quiet_time
= IL_ACTIVE_QUIET_TIME
;
819 if (il_is_any_associated(il
)) {
822 u32 suspend_time
= 100;
823 u32 scan_suspend_time
= 100;
825 D_INFO("Scanning while associated...\n");
826 interval
= vif
->bss_conf
.beacon_int
;
828 scan
->suspend_time
= 0;
829 scan
->max_out_time
= cpu_to_le32(200 * 1024);
831 interval
= suspend_time
;
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
);
837 D_SCAN("suspend_time 0x%X beacon interval %d\n",
838 scan_suspend_time
, interval
);
841 if (il
->scan_request
->n_ssids
) {
843 D_SCAN("Kicking off active scan\n");
844 for (i
= 0; i
< il
->scan_request
->n_ssids
; i
++) {
845 /* always does wildcard anyway */
846 if (!il
->scan_request
->ssids
[i
].ssid_len
)
848 scan
->direct_scan
[p
].id
= WLAN_EID_SSID
;
849 scan
->direct_scan
[p
].len
=
850 il
->scan_request
->ssids
[i
].ssid_len
;
851 memcpy(scan
->direct_scan
[p
].ssid
,
852 il
->scan_request
->ssids
[i
].ssid
,
853 il
->scan_request
->ssids
[i
].ssid_len
);
859 D_SCAN("Start passive scan.\n");
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
;
865 switch (il
->scan_band
) {
866 case IEEE80211_BAND_2GHZ
:
867 scan
->flags
= RXON_FLG_BAND_24G_MSK
| RXON_FLG_AUTO_DETECT_MSK
;
868 chan_mod
= le32_to_cpu(
869 il
->ctx
.active
.flags
&
870 RXON_FLG_CHANNEL_MODE_MSK
)
871 >> RXON_FLG_CHANNEL_MODE_POS
;
872 if (chan_mod
== CHANNEL_MODE_PURE_40
) {
873 rate
= IL_RATE_6M_PLCP
;
875 rate
= IL_RATE_1M_PLCP
;
876 rate_flags
= RATE_MCS_CCK_MSK
;
879 case IEEE80211_BAND_5GHZ
:
880 rate
= IL_RATE_6M_PLCP
;
883 IL_WARN("Invalid scan band\n");
888 * If active scanning is requested but a certain channel is
889 * marked passive, we can do active scanning if we detect
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
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
901 * the aforementioned issue. Thus use IL_GOOD_CRC_TH_NEVER
902 * here instead of IL_GOOD_CRC_TH_DISABLED.
904 scan
->good_CRC_th
= is_active
? IL_GOOD_CRC_TH_DEFAULT
:
905 IL_GOOD_CRC_TH_NEVER
;
907 band
= il
->scan_band
;
909 if (il
->cfg
->scan_rx_antennas
[band
])
910 rx_ant
= il
->cfg
->scan_rx_antennas
[band
];
912 il
->scan_tx_ant
[band
] = il4965_toggle_tx_ant(il
,
913 il
->scan_tx_ant
[band
],
915 rate_flags
|= il4965_ant_idx_to_flags(il
->scan_tx_ant
[band
]);
916 scan
->tx_cmd
.rate_n_flags
= il4965_hw_set_rate_n_flags(rate
, rate_flags
);
918 /* In power save mode use one chain, otherwise use all chains */
919 if (test_bit(STATUS_POWER_PMI
, &il
->status
)) {
920 /* rx_ant has been set to all valid chains previously */
921 active_chains
= rx_ant
&
922 ((u8
)(il
->chain_noise_data
.active_chains
));
924 active_chains
= rx_ant
;
926 D_SCAN("chain_noise_data.active_chains: %u\n",
927 il
->chain_noise_data
.active_chains
);
929 rx_ant
= il4965_first_antenna(active_chains
);
932 /* MIMO is not used here, but value is required */
933 rx_chain
|= il
->hw_params
.valid_rx_ant
<< RXON_RX_CHAIN_VALID_POS
;
934 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
);
939 cmd_len
= il_fill_probe_req(il
,
940 (struct ieee80211_mgmt
*)scan
->data
,
942 il
->scan_request
->ie
,
943 il
->scan_request
->ie_len
,
944 IL_MAX_SCAN_SIZE
- sizeof(*scan
));
945 scan
->tx_cmd
.len
= cpu_to_le16(cmd_len
);
947 scan
->filter_flags
|= (RXON_FILTER_ACCEPT_GRP_MSK
|
948 RXON_FILTER_BCON_AWARE_MSK
);
950 scan
->channel_count
= il4965_get_channels_for_scan(il
, vif
, band
,
952 (void *)&scan
->data
[cmd_len
]);
953 if (scan
->channel_count
== 0) {
954 D_SCAN("channel count %d\n", scan
->channel_count
);
958 cmd
.len
+= le16_to_cpu(scan
->tx_cmd
.len
) +
959 scan
->channel_count
* sizeof(struct il_scan_channel
);
961 scan
->len
= cpu_to_le16(cmd
.len
);
963 set_bit(STATUS_SCAN_HW
, &il
->status
);
965 ret
= il_send_cmd_sync(il
, &cmd
);
967 clear_bit(STATUS_SCAN_HW
, &il
->status
);
972 int il4965_manage_ibss_station(struct il_priv
*il
,
973 struct ieee80211_vif
*vif
, bool add
)
975 struct il_vif_priv
*vif_priv
= (void *)vif
->drv_priv
;
978 return il4965_add_bssid_station(il
, vif_priv
->ctx
,
980 &vif_priv
->ibss_bssid_sta_id
);
981 return il_remove_station(il
, vif_priv
->ibss_bssid_sta_id
,
982 vif
->bss_conf
.bssid
);
985 void il4965_free_tfds_in_queue(struct il_priv
*il
,
986 int sta_id
, int tid
, int freed
)
988 lockdep_assert_held(&il
->sta_lock
);
990 if (il
->stations
[sta_id
].tid
[tid
].tfds_in_queue
>= freed
)
991 il
->stations
[sta_id
].tid
[tid
].tfds_in_queue
-= freed
;
993 D_TX("free more than tfds_in_queue (%u:%d)\n",
994 il
->stations
[sta_id
].tid
[tid
].tfds_in_queue
,
996 il
->stations
[sta_id
].tid
[tid
].tfds_in_queue
= 0;
1000 #define IL_TX_QUEUE_MSK 0xfffff
1002 static bool il4965_is_single_rx_stream(struct il_priv
*il
)
1004 return il
->current_ht_config
.smps
== IEEE80211_SMPS_STATIC
||
1005 il
->current_ht_config
.single_chain_sufficient
;
1008 #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
1014 * Determine how many receiver/antenna chains to use.
1016 * More provides better reception via diversity. Fewer saves power
1017 * at the expense of throughput, but only when not in powersave to
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.
1023 static int il4965_get_active_rx_chain_count(struct il_priv
*il
)
1025 /* # of Rx chains to use when expecting MIMO. */
1026 if (il4965_is_single_rx_stream(il
))
1027 return IL_NUM_RX_CHAINS_SINGLE
;
1029 return IL_NUM_RX_CHAINS_MULTIPLE
;
1033 * When we are in power saving mode, unless device support spatial
1034 * multiplexing power save, use the active count for rx chain count.
1037 il4965_get_idle_rx_chain_count(struct il_priv
*il
, int active_cnt
)
1039 /* # Rx chains when idling, depending on SMPS mode */
1040 switch (il
->current_ht_config
.smps
) {
1041 case IEEE80211_SMPS_STATIC
:
1042 case IEEE80211_SMPS_DYNAMIC
:
1043 return IL_NUM_IDLE_CHAINS_SINGLE
;
1044 case IEEE80211_SMPS_OFF
:
1047 WARN(1, "invalid SMPS mode %d",
1048 il
->current_ht_config
.smps
);
1053 /* up to 4 chains */
1054 static u8
il4965_count_chain_bitmap(u32 chain_bitmap
)
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;
1065 * il4965_set_rxon_chain - Set up Rx chain usage in "staging" RXON image
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.
1070 void il4965_set_rxon_chain(struct il_priv
*il
, struct il_rxon_context
*ctx
)
1072 bool is_single
= il4965_is_single_rx_stream(il
);
1073 bool is_cam
= !test_bit(STATUS_POWER_PMI
, &il
->status
);
1074 u8 idle_rx_cnt
, active_rx_cnt
, valid_rx_cnt
;
1078 /* Tell uCode which antennas are actually connected.
1079 * Before first association, we assume all antennas are connected.
1080 * Just after first association, il4965_chain_noise_calibration()
1081 * checks which antennas actually *are* connected. */
1082 if (il
->chain_noise_data
.active_chains
)
1083 active_chains
= il
->chain_noise_data
.active_chains
;
1085 active_chains
= il
->hw_params
.valid_rx_ant
;
1087 rx_chain
= active_chains
<< RXON_RX_CHAIN_VALID_POS
;
1089 /* How many receivers should we use? */
1090 active_rx_cnt
= il4965_get_active_rx_chain_count(il
);
1091 idle_rx_cnt
= il4965_get_idle_rx_chain_count(il
, active_rx_cnt
);
1094 /* correct rx chain count according hw settings
1095 * and chain noise calibration
1097 valid_rx_cnt
= il4965_count_chain_bitmap(active_chains
);
1098 if (valid_rx_cnt
< active_rx_cnt
)
1099 active_rx_cnt
= valid_rx_cnt
;
1101 if (valid_rx_cnt
< idle_rx_cnt
)
1102 idle_rx_cnt
= valid_rx_cnt
;
1104 rx_chain
|= active_rx_cnt
<< RXON_RX_CHAIN_MIMO_CNT_POS
;
1105 rx_chain
|= idle_rx_cnt
<< RXON_RX_CHAIN_CNT_POS
;
1107 ctx
->staging
.rx_chain
= cpu_to_le16(rx_chain
);
1109 if (!is_single
&& active_rx_cnt
>= IL_NUM_RX_CHAINS_SINGLE
&& is_cam
)
1110 ctx
->staging
.rx_chain
|= RXON_RX_CHAIN_MIMO_FORCE_MSK
;
1112 ctx
->staging
.rx_chain
&= ~RXON_RX_CHAIN_MIMO_FORCE_MSK
;
1114 D_ASSOC("rx_chain=0x%X active=%d idle=%d\n",
1115 ctx
->staging
.rx_chain
,
1116 active_rx_cnt
, idle_rx_cnt
);
1118 WARN_ON(active_rx_cnt
== 0 || idle_rx_cnt
== 0 ||
1119 active_rx_cnt
< idle_rx_cnt
);
1122 u8
il4965_toggle_tx_ant(struct il_priv
*il
, u8 ant
, u8 valid
)
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
))
1135 static const char *il4965_get_fh_string(int cmd
)
1138 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
);
1152 int il4965_dump_fh(struct il_priv
*il
, char **buf
, bool display
)
1155 #ifdef CONFIG_IWLEGACY_DEBUG
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
1170 #ifdef CONFIG_IWLEGACY_DEBUG
1172 bufsz
= ARRAY_SIZE(fh_tbl
) * 48 + 40;
1173 *buf
= kmalloc(bufsz
, GFP_KERNEL
);
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
,
1181 il4965_get_fh_string(fh_tbl
[i
]),
1182 il_rd(il
, fh_tbl
[i
]));
1187 IL_ERR("FH register values:\n");
1188 for (i
= 0; i
< ARRAY_SIZE(fh_tbl
); i
++) {
1189 IL_ERR(" %34s: 0X%08x\n",
1190 il4965_get_fh_string(fh_tbl
[i
]),
1191 il_rd(il
, fh_tbl
[i
]));