1 /******************************************************************************
3 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
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.
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
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
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
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/sched.h>
30 #include <linux/wait.h>
31 #include <linux/gfp.h>
33 /*TODO: Remove include to iwl-core.h*/
36 #include "iwl-trans-pcie-int.h"
38 /******************************************************************************
42 ******************************************************************************/
45 * Rx theory of operation
47 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
48 * each of which point to Receive Buffers to be filled by the NIC. These get
49 * used not only for Rx frames, but for any command response or notification
50 * from the NIC. The driver and NIC manage the Rx buffers by means
51 * of indexes into the circular buffer.
54 * The host/firmware share two index registers for managing the Rx buffers.
56 * The READ index maps to the first position that the firmware may be writing
57 * to -- the driver can read up to (but not including) this position and get
59 * The READ index is managed by the firmware once the card is enabled.
61 * The WRITE index maps to the last position the driver has read from -- the
62 * position preceding WRITE is the last slot the firmware can place a packet.
64 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
67 * During initialization, the host sets up the READ queue position to the first
68 * INDEX position, and WRITE to the last (READ - 1 wrapped)
70 * When the firmware places a packet in a buffer, it will advance the READ index
71 * and fire the RX interrupt. The driver can then query the READ index and
72 * process as many packets as possible, moving the WRITE index forward as it
73 * resets the Rx queue buffers with new memory.
75 * The management in the driver is as follows:
76 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
77 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
78 * to replenish the iwl->rxq->rx_free.
79 * + In iwl_rx_replenish (scheduled) if 'processed' != 'read' then the
80 * iwl->rxq is replenished and the READ INDEX is updated (updating the
81 * 'processed' and 'read' driver indexes as well)
82 * + A received packet is processed and handed to the kernel network stack,
83 * detached from the iwl->rxq. The driver 'processed' index is updated.
84 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
85 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
86 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
87 * were enough free buffers and RX_STALLED is set it is cleared.
92 * iwl_rx_queue_alloc() Allocates rx_free
93 * iwl_rx_replenish() Replenishes rx_free list from rx_used, and calls
94 * iwl_rx_queue_restock
95 * iwl_rx_queue_restock() Moves available buffers from rx_free into Rx
96 * queue, updates firmware pointers, and updates
97 * the WRITE index. If insufficient rx_free buffers
98 * are available, schedules iwl_rx_replenish
100 * -- enable interrupts --
101 * ISR - iwl_rx() Detach iwl_rx_mem_buffers from pool up to the
102 * READ INDEX, detaching the SKB from the pool.
103 * Moves the packet buffer from queue to rx_used.
104 * Calls iwl_rx_queue_restock to refill any empty
111 * iwl_rx_queue_space - Return number of free slots available in queue.
113 static int iwl_rx_queue_space(const struct iwl_rx_queue
*q
)
115 int s
= q
->read
- q
->write
;
118 /* keep some buffer to not confuse full and empty queue */
126 * iwl_rx_queue_update_write_ptr - Update the write pointer for the RX queue
128 void iwl_rx_queue_update_write_ptr(struct iwl_trans
*trans
,
129 struct iwl_rx_queue
*q
)
134 spin_lock_irqsave(&q
->lock
, flags
);
136 if (q
->need_update
== 0)
139 if (hw_params(trans
).shadow_reg_enable
) {
140 /* shadow register enabled */
141 /* Device expects a multiple of 8 */
142 q
->write_actual
= (q
->write
& ~0x7);
143 iwl_write32(bus(trans
), FH_RSCSR_CHNL0_WPTR
, q
->write_actual
);
145 /* If power-saving is in use, make sure device is awake */
146 if (test_bit(STATUS_POWER_PMI
, &trans
->shrd
->status
)) {
147 reg
= iwl_read32(bus(trans
), CSR_UCODE_DRV_GP1
);
149 if (reg
& CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP
) {
150 IWL_DEBUG_INFO(trans
,
151 "Rx queue requesting wakeup,"
152 " GP1 = 0x%x\n", reg
);
153 iwl_set_bit(bus(trans
), CSR_GP_CNTRL
,
154 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ
);
158 q
->write_actual
= (q
->write
& ~0x7);
159 iwl_write_direct32(bus(trans
), FH_RSCSR_CHNL0_WPTR
,
162 /* Else device is assumed to be awake */
164 /* Device expects a multiple of 8 */
165 q
->write_actual
= (q
->write
& ~0x7);
166 iwl_write_direct32(bus(trans
), FH_RSCSR_CHNL0_WPTR
,
173 spin_unlock_irqrestore(&q
->lock
, flags
);
177 * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
179 static inline __le32
iwlagn_dma_addr2rbd_ptr(dma_addr_t dma_addr
)
181 return cpu_to_le32((u32
)(dma_addr
>> 8));
185 * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool
187 * If there are slots in the RX queue that need to be restocked,
188 * and we have free pre-allocated buffers, fill the ranks as much
189 * as we can, pulling from rx_free.
191 * This moves the 'write' index forward to catch up with 'processed', and
192 * also updates the memory address in the firmware to reference the new
195 static void iwlagn_rx_queue_restock(struct iwl_trans
*trans
)
197 struct iwl_trans_pcie
*trans_pcie
=
198 IWL_TRANS_GET_PCIE_TRANS(trans
);
200 struct iwl_rx_queue
*rxq
= &trans_pcie
->rxq
;
201 struct list_head
*element
;
202 struct iwl_rx_mem_buffer
*rxb
;
205 spin_lock_irqsave(&rxq
->lock
, flags
);
206 while ((iwl_rx_queue_space(rxq
) > 0) && (rxq
->free_count
)) {
207 /* The overwritten rxb must be a used one */
208 rxb
= rxq
->queue
[rxq
->write
];
209 BUG_ON(rxb
&& rxb
->page
);
211 /* Get next free Rx buffer, remove from free list */
212 element
= rxq
->rx_free
.next
;
213 rxb
= list_entry(element
, struct iwl_rx_mem_buffer
, list
);
216 /* Point to Rx buffer via next RBD in circular buffer */
217 rxq
->bd
[rxq
->write
] = iwlagn_dma_addr2rbd_ptr(rxb
->page_dma
);
218 rxq
->queue
[rxq
->write
] = rxb
;
219 rxq
->write
= (rxq
->write
+ 1) & RX_QUEUE_MASK
;
222 spin_unlock_irqrestore(&rxq
->lock
, flags
);
223 /* If the pre-allocated buffer pool is dropping low, schedule to
225 if (rxq
->free_count
<= RX_LOW_WATERMARK
)
226 queue_work(trans
->shrd
->workqueue
, &trans_pcie
->rx_replenish
);
229 /* If we've added more space for the firmware to place data, tell it.
230 * Increment device's write pointer in multiples of 8. */
231 if (rxq
->write_actual
!= (rxq
->write
& ~0x7)) {
232 spin_lock_irqsave(&rxq
->lock
, flags
);
233 rxq
->need_update
= 1;
234 spin_unlock_irqrestore(&rxq
->lock
, flags
);
235 iwl_rx_queue_update_write_ptr(trans
, rxq
);
240 * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free
242 * When moving to rx_free an SKB is allocated for the slot.
244 * Also restock the Rx queue via iwl_rx_queue_restock.
245 * This is called as a scheduled work item (except for during initialization)
247 static void iwlagn_rx_allocate(struct iwl_trans
*trans
, gfp_t priority
)
249 struct iwl_trans_pcie
*trans_pcie
=
250 IWL_TRANS_GET_PCIE_TRANS(trans
);
252 struct iwl_rx_queue
*rxq
= &trans_pcie
->rxq
;
253 struct list_head
*element
;
254 struct iwl_rx_mem_buffer
*rxb
;
257 gfp_t gfp_mask
= priority
;
260 spin_lock_irqsave(&rxq
->lock
, flags
);
261 if (list_empty(&rxq
->rx_used
)) {
262 spin_unlock_irqrestore(&rxq
->lock
, flags
);
265 spin_unlock_irqrestore(&rxq
->lock
, flags
);
267 if (rxq
->free_count
> RX_LOW_WATERMARK
)
268 gfp_mask
|= __GFP_NOWARN
;
270 if (hw_params(trans
).rx_page_order
> 0)
271 gfp_mask
|= __GFP_COMP
;
273 /* Alloc a new receive buffer */
274 page
= alloc_pages(gfp_mask
,
275 hw_params(trans
).rx_page_order
);
278 IWL_DEBUG_INFO(trans
, "alloc_pages failed, "
280 hw_params(trans
).rx_page_order
);
282 if ((rxq
->free_count
<= RX_LOW_WATERMARK
) &&
284 IWL_CRIT(trans
, "Failed to alloc_pages with %s."
285 "Only %u free buffers remaining.\n",
286 priority
== GFP_ATOMIC
?
287 "GFP_ATOMIC" : "GFP_KERNEL",
289 /* We don't reschedule replenish work here -- we will
290 * call the restock method and if it still needs
291 * more buffers it will schedule replenish */
295 spin_lock_irqsave(&rxq
->lock
, flags
);
297 if (list_empty(&rxq
->rx_used
)) {
298 spin_unlock_irqrestore(&rxq
->lock
, flags
);
299 __free_pages(page
, hw_params(trans
).rx_page_order
);
302 element
= rxq
->rx_used
.next
;
303 rxb
= list_entry(element
, struct iwl_rx_mem_buffer
, list
);
306 spin_unlock_irqrestore(&rxq
->lock
, flags
);
310 /* Get physical address of the RB */
311 rxb
->page_dma
= dma_map_page(bus(trans
)->dev
, page
, 0,
312 PAGE_SIZE
<< hw_params(trans
).rx_page_order
,
314 /* dma address must be no more than 36 bits */
315 BUG_ON(rxb
->page_dma
& ~DMA_BIT_MASK(36));
316 /* and also 256 byte aligned! */
317 BUG_ON(rxb
->page_dma
& DMA_BIT_MASK(8));
319 spin_lock_irqsave(&rxq
->lock
, flags
);
321 list_add_tail(&rxb
->list
, &rxq
->rx_free
);
324 spin_unlock_irqrestore(&rxq
->lock
, flags
);
328 void iwlagn_rx_replenish(struct iwl_trans
*trans
)
332 iwlagn_rx_allocate(trans
, GFP_KERNEL
);
334 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
335 iwlagn_rx_queue_restock(trans
);
336 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
339 static void iwlagn_rx_replenish_now(struct iwl_trans
*trans
)
341 iwlagn_rx_allocate(trans
, GFP_ATOMIC
);
343 iwlagn_rx_queue_restock(trans
);
346 void iwl_bg_rx_replenish(struct work_struct
*data
)
348 struct iwl_trans_pcie
*trans_pcie
=
349 container_of(data
, struct iwl_trans_pcie
, rx_replenish
);
350 struct iwl_trans
*trans
= trans_pcie
->trans
;
352 if (test_bit(STATUS_EXIT_PENDING
, &trans
->shrd
->status
))
355 mutex_lock(&trans
->shrd
->mutex
);
356 iwlagn_rx_replenish(trans
);
357 mutex_unlock(&trans
->shrd
->mutex
);
361 * iwl_rx_handle - Main entry function for receiving responses from uCode
363 * Uses the priv->rx_handlers callback function array to invoke
364 * the appropriate handlers, including command responses,
365 * frame-received notifications, and other notifications.
367 static void iwl_rx_handle(struct iwl_trans
*trans
)
369 struct iwl_rx_mem_buffer
*rxb
;
370 struct iwl_rx_packet
*pkt
;
371 struct iwl_trans_pcie
*trans_pcie
=
372 IWL_TRANS_GET_PCIE_TRANS(trans
);
373 struct iwl_rx_queue
*rxq
= &trans_pcie
->rxq
;
374 struct iwl_tx_queue
*txq
= &trans_pcie
->txq
[trans
->shrd
->cmd_queue
];
375 struct iwl_device_cmd
*cmd
;
382 int index
, cmd_index
;
384 /* uCode's read index (stored in shared DRAM) indicates the last Rx
385 * buffer that the driver may process (last buffer filled by ucode). */
386 r
= le16_to_cpu(rxq
->rb_stts
->closed_rb_num
) & 0x0FFF;
389 /* Rx interrupt, but nothing sent from uCode */
391 IWL_DEBUG_RX(trans
, "r = %d, i = %d\n", r
, i
);
393 /* calculate total frames need to be restock after handling RX */
394 total_empty
= r
- rxq
->write_actual
;
396 total_empty
+= RX_QUEUE_SIZE
;
398 if (total_empty
> (RX_QUEUE_SIZE
/ 2))
407 /* If an RXB doesn't have a Rx queue slot associated with it,
408 * then a bug has been introduced in the queue refilling
409 * routines -- catch it here */
410 if (WARN_ON(rxb
== NULL
)) {
411 i
= (i
+ 1) & RX_QUEUE_MASK
;
415 rxq
->queue
[i
] = NULL
;
417 dma_unmap_page(bus(trans
)->dev
, rxb
->page_dma
,
418 PAGE_SIZE
<< hw_params(trans
).rx_page_order
,
422 IWL_DEBUG_RX(trans
, "r = %d, i = %d, %s, 0x%02x\n", r
,
423 i
, get_cmd_string(pkt
->hdr
.cmd
), pkt
->hdr
.cmd
);
425 len
= le32_to_cpu(pkt
->len_n_flags
) & FH_RSCSR_FRAME_SIZE_MSK
;
426 len
+= sizeof(u32
); /* account for status word */
427 trace_iwlwifi_dev_rx(priv(trans
), pkt
, len
);
429 /* Reclaim a command buffer only if this packet is a response
430 * to a (driver-originated) command.
431 * If the packet (e.g. Rx frame) originated from uCode,
432 * there is no command buffer to reclaim.
433 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
434 * but apparently a few don't get set; catch them here. */
435 reclaim
= !(pkt
->hdr
.sequence
& SEQ_RX_FRAME
) &&
436 (pkt
->hdr
.cmd
!= REPLY_RX_PHY_CMD
) &&
437 (pkt
->hdr
.cmd
!= REPLY_RX
) &&
438 (pkt
->hdr
.cmd
!= REPLY_RX_MPDU_CMD
) &&
439 (pkt
->hdr
.cmd
!= REPLY_COMPRESSED_BA
) &&
440 (pkt
->hdr
.cmd
!= STATISTICS_NOTIFICATION
) &&
441 (pkt
->hdr
.cmd
!= REPLY_TX
);
443 sequence
= le16_to_cpu(pkt
->hdr
.sequence
);
444 index
= SEQ_TO_INDEX(sequence
);
445 cmd_index
= get_cmd_index(&txq
->q
, index
);
448 cmd
= txq
->cmd
[cmd_index
];
452 /* warn if this is cmd response / notification and the uCode
453 * didn't set the SEQ_RX_FRAME for a frame that is
455 * If you saw this code after the second half of 2012, then
458 WARN(pkt
->hdr
.cmd
!= REPLY_TX
&& reclaim
== false &&
459 (!(pkt
->hdr
.sequence
& SEQ_RX_FRAME
)),
460 "reclaim is false, SEQ_RX_FRAME unset: %s\n",
461 get_cmd_string(pkt
->hdr
.cmd
));
463 err
= iwl_rx_dispatch(priv(trans
), rxb
, cmd
);
466 * XXX: After here, we should always check rxb->page
467 * against NULL before touching it or its virtual
468 * memory (pkt). Because some rx_handler might have
469 * already taken or freed the pages.
473 /* Invoke any callbacks, transfer the buffer to caller,
474 * and fire off the (possibly) blocking
475 * iwl_trans_send_cmd()
476 * as we reclaim the driver command queue */
478 iwl_tx_cmd_complete(trans
, rxb
, err
);
480 IWL_WARN(trans
, "Claim null rxb?\n");
483 /* Reuse the page if possible. For notification packets and
484 * SKBs that fail to Rx correctly, add them back into the
485 * rx_free list for reuse later. */
486 spin_lock_irqsave(&rxq
->lock
, flags
);
487 if (rxb
->page
!= NULL
) {
488 rxb
->page_dma
= dma_map_page(bus(trans
)->dev
, rxb
->page
,
490 hw_params(trans
).rx_page_order
,
492 list_add_tail(&rxb
->list
, &rxq
->rx_free
);
495 list_add_tail(&rxb
->list
, &rxq
->rx_used
);
497 spin_unlock_irqrestore(&rxq
->lock
, flags
);
499 i
= (i
+ 1) & RX_QUEUE_MASK
;
500 /* If there are a lot of unused frames,
501 * restock the Rx queue so ucode wont assert. */
506 iwlagn_rx_replenish_now(trans
);
512 /* Backtrack one entry */
515 iwlagn_rx_replenish_now(trans
);
517 iwlagn_rx_queue_restock(trans
);
520 static const char * const desc_lookup_text
[] = {
529 "HW_ERROR_TUNE_LOCK",
530 "HW_ERROR_TEMPERATURE",
534 "NMI_INTERRUPT_HOST",
535 "NMI_INTERRUPT_ACTION_PT",
536 "NMI_INTERRUPT_UNKNOWN",
537 "UCODE_VERSION_MISMATCH",
539 "HW_ERROR_CAL_LOCK_FAIL",
540 "NMI_INTERRUPT_INST_ACTION_PT",
541 "NMI_INTERRUPT_DATA_ACTION_PT",
544 "NMI_INTERRUPT_BREAK_POINT",
551 static struct { char *name
; u8 num
; } advanced_lookup
[] = {
552 { "NMI_INTERRUPT_WDG", 0x34 },
553 { "SYSASSERT", 0x35 },
554 { "UCODE_VERSION_MISMATCH", 0x37 },
555 { "BAD_COMMAND", 0x38 },
556 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
557 { "FATAL_ERROR", 0x3D },
558 { "NMI_TRM_HW_ERR", 0x46 },
559 { "NMI_INTERRUPT_TRM", 0x4C },
560 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
561 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
562 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
563 { "NMI_INTERRUPT_HOST", 0x66 },
564 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
565 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
566 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
567 { "ADVANCED_SYSASSERT", 0 },
570 static const char *desc_lookup(u32 num
)
573 int max
= ARRAY_SIZE(desc_lookup_text
);
576 return desc_lookup_text
[num
];
578 max
= ARRAY_SIZE(advanced_lookup
) - 1;
579 for (i
= 0; i
< max
; i
++) {
580 if (advanced_lookup
[i
].num
== num
)
583 return advanced_lookup
[i
].name
;
586 #define ERROR_START_OFFSET (1 * sizeof(u32))
587 #define ERROR_ELEM_SIZE (7 * sizeof(u32))
589 static void iwl_dump_nic_error_log(struct iwl_trans
*trans
)
592 struct iwl_error_event_table table
;
593 struct iwl_priv
*priv
= priv(trans
);
594 struct iwl_trans_pcie
*trans_pcie
=
595 IWL_TRANS_GET_PCIE_TRANS(trans
);
597 base
= trans
->shrd
->device_pointers
.error_event_table
;
598 if (trans
->shrd
->ucode_type
== IWL_UCODE_INIT
) {
600 base
= priv
->init_errlog_ptr
;
603 base
= priv
->inst_errlog_ptr
;
606 if (!iwlagn_hw_valid_rtc_data_addr(base
)) {
608 "Not valid error log pointer 0x%08X for %s uCode\n",
610 (trans
->shrd
->ucode_type
== IWL_UCODE_INIT
)
615 iwl_read_targ_mem_words(bus(priv
), base
, &table
, sizeof(table
));
617 if (ERROR_START_OFFSET
<= table
.valid
* ERROR_ELEM_SIZE
) {
618 IWL_ERR(trans
, "Start IWL Error Log Dump:\n");
619 IWL_ERR(trans
, "Status: 0x%08lX, count: %d\n",
620 trans
->shrd
->status
, table
.valid
);
623 trans_pcie
->isr_stats
.err_code
= table
.error_id
;
625 trace_iwlwifi_dev_ucode_error(priv
, table
.error_id
, table
.tsf_low
,
626 table
.data1
, table
.data2
, table
.line
,
627 table
.blink1
, table
.blink2
, table
.ilink1
,
628 table
.ilink2
, table
.bcon_time
, table
.gp1
,
629 table
.gp2
, table
.gp3
, table
.ucode_ver
,
630 table
.hw_ver
, table
.brd_ver
);
631 IWL_ERR(trans
, "0x%08X | %-28s\n", table
.error_id
,
632 desc_lookup(table
.error_id
));
633 IWL_ERR(trans
, "0x%08X | uPc\n", table
.pc
);
634 IWL_ERR(trans
, "0x%08X | branchlink1\n", table
.blink1
);
635 IWL_ERR(trans
, "0x%08X | branchlink2\n", table
.blink2
);
636 IWL_ERR(trans
, "0x%08X | interruptlink1\n", table
.ilink1
);
637 IWL_ERR(trans
, "0x%08X | interruptlink2\n", table
.ilink2
);
638 IWL_ERR(trans
, "0x%08X | data1\n", table
.data1
);
639 IWL_ERR(trans
, "0x%08X | data2\n", table
.data2
);
640 IWL_ERR(trans
, "0x%08X | line\n", table
.line
);
641 IWL_ERR(trans
, "0x%08X | beacon time\n", table
.bcon_time
);
642 IWL_ERR(trans
, "0x%08X | tsf low\n", table
.tsf_low
);
643 IWL_ERR(trans
, "0x%08X | tsf hi\n", table
.tsf_hi
);
644 IWL_ERR(trans
, "0x%08X | time gp1\n", table
.gp1
);
645 IWL_ERR(trans
, "0x%08X | time gp2\n", table
.gp2
);
646 IWL_ERR(trans
, "0x%08X | time gp3\n", table
.gp3
);
647 IWL_ERR(trans
, "0x%08X | uCode version\n", table
.ucode_ver
);
648 IWL_ERR(trans
, "0x%08X | hw version\n", table
.hw_ver
);
649 IWL_ERR(trans
, "0x%08X | board version\n", table
.brd_ver
);
650 IWL_ERR(trans
, "0x%08X | hcmd\n", table
.hcmd
);
652 IWL_ERR(trans
, "0x%08X | isr0\n", table
.isr0
);
653 IWL_ERR(trans
, "0x%08X | isr1\n", table
.isr1
);
654 IWL_ERR(trans
, "0x%08X | isr2\n", table
.isr2
);
655 IWL_ERR(trans
, "0x%08X | isr3\n", table
.isr3
);
656 IWL_ERR(trans
, "0x%08X | isr4\n", table
.isr4
);
657 IWL_ERR(trans
, "0x%08X | isr_pref\n", table
.isr_pref
);
658 IWL_ERR(trans
, "0x%08X | wait_event\n", table
.wait_event
);
659 IWL_ERR(trans
, "0x%08X | l2p_control\n", table
.l2p_control
);
660 IWL_ERR(trans
, "0x%08X | l2p_duration\n", table
.l2p_duration
);
661 IWL_ERR(trans
, "0x%08X | l2p_mhvalid\n", table
.l2p_mhvalid
);
662 IWL_ERR(trans
, "0x%08X | l2p_addr_match\n", table
.l2p_addr_match
);
663 IWL_ERR(trans
, "0x%08X | lmpm_pmg_sel\n", table
.lmpm_pmg_sel
);
664 IWL_ERR(trans
, "0x%08X | timestamp\n", table
.u_timestamp
);
665 IWL_ERR(trans
, "0x%08X | flow_handler\n", table
.flow_handler
);
669 * iwl_irq_handle_error - called for HW or SW error interrupt from card
671 static void iwl_irq_handle_error(struct iwl_trans
*trans
)
673 struct iwl_priv
*priv
= priv(trans
);
674 /* W/A for WiFi/WiMAX coex and WiMAX own the RF */
675 if (cfg(priv
)->internal_wimax_coex
&&
676 (!(iwl_read_prph(bus(trans
), APMG_CLK_CTRL_REG
) &
677 APMS_CLK_VAL_MRB_FUNC_MODE
) ||
678 (iwl_read_prph(bus(trans
), APMG_PS_CTRL_REG
) &
679 APMG_PS_CTRL_VAL_RESET_REQ
))) {
681 * Keep the restart process from trying to send host
682 * commands by clearing the ready bit.
684 clear_bit(STATUS_READY
, &trans
->shrd
->status
);
685 clear_bit(STATUS_HCMD_ACTIVE
, &trans
->shrd
->status
);
686 wake_up(&priv
->shrd
->wait_command_queue
);
687 IWL_ERR(trans
, "RF is used by WiMAX\n");
691 IWL_ERR(trans
, "Loaded firmware version: %s\n",
692 priv
->hw
->wiphy
->fw_version
);
694 iwl_dump_nic_error_log(trans
);
696 iwl_dump_fh(trans
, NULL
, false);
697 iwl_dump_nic_event_log(trans
, false, NULL
, false);
698 #ifdef CONFIG_IWLWIFI_DEBUG
699 if (iwl_get_debug_level(trans
->shrd
) & IWL_DL_FW_ERRORS
)
700 iwl_print_rx_config_cmd(priv(trans
), IWL_RXON_CTX_BSS
);
703 iwlagn_fw_error(priv
, false);
706 #define EVENT_START_OFFSET (4 * sizeof(u32))
709 * iwl_print_event_log - Dump error event log to syslog
712 static int iwl_print_event_log(struct iwl_trans
*trans
, u32 start_idx
,
713 u32 num_events
, u32 mode
,
714 int pos
, char **buf
, size_t bufsz
)
717 u32 base
; /* SRAM byte address of event log header */
718 u32 event_size
; /* 2 u32s, or 3 u32s if timestamp recorded */
719 u32 ptr
; /* SRAM byte address of log data */
720 u32 ev
, time
, data
; /* event log data */
721 unsigned long reg_flags
;
722 struct iwl_priv
*priv
= priv(trans
);
727 base
= trans
->shrd
->device_pointers
.log_event_table
;
728 if (trans
->shrd
->ucode_type
== IWL_UCODE_INIT
) {
730 base
= priv
->init_evtlog_ptr
;
733 base
= priv
->inst_evtlog_ptr
;
737 event_size
= 2 * sizeof(u32
);
739 event_size
= 3 * sizeof(u32
);
741 ptr
= base
+ EVENT_START_OFFSET
+ (start_idx
* event_size
);
743 /* Make sure device is powered up for SRAM reads */
744 spin_lock_irqsave(&bus(trans
)->reg_lock
, reg_flags
);
745 iwl_grab_nic_access(bus(trans
));
747 /* Set starting address; reads will auto-increment */
748 iwl_write32(bus(trans
), HBUS_TARG_MEM_RADDR
, ptr
);
751 /* "time" is actually "data" for mode 0 (no timestamp).
752 * place event id # at far right for easier visual parsing. */
753 for (i
= 0; i
< num_events
; i
++) {
754 ev
= iwl_read32(bus(trans
), HBUS_TARG_MEM_RDAT
);
755 time
= iwl_read32(bus(trans
), HBUS_TARG_MEM_RDAT
);
759 pos
+= scnprintf(*buf
+ pos
, bufsz
- pos
,
760 "EVT_LOG:0x%08x:%04u\n",
763 trace_iwlwifi_dev_ucode_event(priv
, 0,
765 IWL_ERR(trans
, "EVT_LOG:0x%08x:%04u\n",
769 data
= iwl_read32(bus(trans
), HBUS_TARG_MEM_RDAT
);
771 pos
+= scnprintf(*buf
+ pos
, bufsz
- pos
,
772 "EVT_LOGT:%010u:0x%08x:%04u\n",
775 IWL_ERR(trans
, "EVT_LOGT:%010u:0x%08x:%04u\n",
777 trace_iwlwifi_dev_ucode_event(priv
, time
,
783 /* Allow device to power down */
784 iwl_release_nic_access(bus(trans
));
785 spin_unlock_irqrestore(&bus(trans
)->reg_lock
, reg_flags
);
790 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
792 static int iwl_print_last_event_logs(struct iwl_trans
*trans
, u32 capacity
,
793 u32 num_wraps
, u32 next_entry
,
795 int pos
, char **buf
, size_t bufsz
)
798 * display the newest DEFAULT_LOG_ENTRIES entries
799 * i.e the entries just before the next ont that uCode would fill.
802 if (next_entry
< size
) {
803 pos
= iwl_print_event_log(trans
,
804 capacity
- (size
- next_entry
),
805 size
- next_entry
, mode
,
807 pos
= iwl_print_event_log(trans
, 0,
811 pos
= iwl_print_event_log(trans
, next_entry
- size
,
812 size
, mode
, pos
, buf
, bufsz
);
814 if (next_entry
< size
) {
815 pos
= iwl_print_event_log(trans
, 0, next_entry
,
816 mode
, pos
, buf
, bufsz
);
818 pos
= iwl_print_event_log(trans
, next_entry
- size
,
819 size
, mode
, pos
, buf
, bufsz
);
825 #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
827 int iwl_dump_nic_event_log(struct iwl_trans
*trans
, bool full_log
,
828 char **buf
, bool display
)
830 u32 base
; /* SRAM byte address of event log header */
831 u32 capacity
; /* event log capacity in # entries */
832 u32 mode
; /* 0 - no timestamp, 1 - timestamp recorded */
833 u32 num_wraps
; /* # times uCode wrapped to top of log */
834 u32 next_entry
; /* index of next entry to be written by uCode */
835 u32 size
; /* # entries that we'll print */
839 struct iwl_priv
*priv
= priv(trans
);
841 base
= trans
->shrd
->device_pointers
.log_event_table
;
842 if (trans
->shrd
->ucode_type
== IWL_UCODE_INIT
) {
843 logsize
= priv
->init_evtlog_size
;
845 base
= priv
->init_evtlog_ptr
;
847 logsize
= priv
->inst_evtlog_size
;
849 base
= priv
->inst_evtlog_ptr
;
852 if (!iwlagn_hw_valid_rtc_data_addr(base
)) {
854 "Invalid event log pointer 0x%08X for %s uCode\n",
856 (trans
->shrd
->ucode_type
== IWL_UCODE_INIT
)
861 /* event log header */
862 capacity
= iwl_read_targ_mem(bus(trans
), base
);
863 mode
= iwl_read_targ_mem(bus(trans
), base
+ (1 * sizeof(u32
)));
864 num_wraps
= iwl_read_targ_mem(bus(trans
), base
+ (2 * sizeof(u32
)));
865 next_entry
= iwl_read_targ_mem(bus(trans
), base
+ (3 * sizeof(u32
)));
867 if (capacity
> logsize
) {
868 IWL_ERR(trans
, "Log capacity %d is bogus, limit to %d "
869 "entries\n", capacity
, logsize
);
873 if (next_entry
> logsize
) {
874 IWL_ERR(trans
, "Log write index %d is bogus, limit to %d\n",
875 next_entry
, logsize
);
876 next_entry
= logsize
;
879 size
= num_wraps
? capacity
: next_entry
;
881 /* bail out if nothing in log */
883 IWL_ERR(trans
, "Start IWL Event Log Dump: nothing in log\n");
887 #ifdef CONFIG_IWLWIFI_DEBUG
888 if (!(iwl_get_debug_level(trans
->shrd
) & IWL_DL_FW_ERRORS
) && !full_log
)
889 size
= (size
> DEFAULT_DUMP_EVENT_LOG_ENTRIES
)
890 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES
: size
;
892 size
= (size
> DEFAULT_DUMP_EVENT_LOG_ENTRIES
)
893 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES
: size
;
895 IWL_ERR(trans
, "Start IWL Event Log Dump: display last %u entries\n",
898 #ifdef CONFIG_IWLWIFI_DEBUG
901 bufsz
= capacity
* 48;
904 *buf
= kmalloc(bufsz
, GFP_KERNEL
);
908 if ((iwl_get_debug_level(trans
->shrd
) & IWL_DL_FW_ERRORS
) || full_log
) {
910 * if uCode has wrapped back to top of log,
911 * start at the oldest entry,
912 * i.e the next one that uCode would fill.
915 pos
= iwl_print_event_log(trans
, next_entry
,
916 capacity
- next_entry
, mode
,
918 /* (then/else) start at top of log */
919 pos
= iwl_print_event_log(trans
, 0,
920 next_entry
, mode
, pos
, buf
, bufsz
);
922 pos
= iwl_print_last_event_logs(trans
, capacity
, num_wraps
,
923 next_entry
, size
, mode
,
926 pos
= iwl_print_last_event_logs(trans
, capacity
, num_wraps
,
927 next_entry
, size
, mode
,
933 /* tasklet for iwlagn interrupt */
934 void iwl_irq_tasklet(struct iwl_trans
*trans
)
940 #ifdef CONFIG_IWLWIFI_DEBUG
944 struct iwl_trans_pcie
*trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
945 struct isr_statistics
*isr_stats
= &trans_pcie
->isr_stats
;
948 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
950 /* Ack/clear/reset pending uCode interrupts.
951 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
953 /* There is a hardware bug in the interrupt mask function that some
954 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
955 * they are disabled in the CSR_INT_MASK register. Furthermore the
956 * ICT interrupt handling mechanism has another bug that might cause
957 * these unmasked interrupts fail to be detected. We workaround the
958 * hardware bugs here by ACKing all the possible interrupts so that
959 * interrupt coalescing can still be achieved.
961 iwl_write32(bus(trans
), CSR_INT
,
962 trans_pcie
->inta
| ~trans_pcie
->inta_mask
);
964 inta
= trans_pcie
->inta
;
966 #ifdef CONFIG_IWLWIFI_DEBUG
967 if (iwl_get_debug_level(trans
->shrd
) & IWL_DL_ISR
) {
969 inta_mask
= iwl_read32(bus(trans
), CSR_INT_MASK
);
970 IWL_DEBUG_ISR(trans
, "inta 0x%08x, enabled 0x%08x\n ",
975 /* saved interrupt in inta variable now we can reset trans_pcie->inta */
976 trans_pcie
->inta
= 0;
978 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
980 /* Now service all interrupt bits discovered above. */
981 if (inta
& CSR_INT_BIT_HW_ERR
) {
982 IWL_ERR(trans
, "Hardware error detected. Restarting.\n");
984 /* Tell the device to stop sending interrupts */
985 iwl_disable_interrupts(trans
);
988 iwl_irq_handle_error(trans
);
990 handled
|= CSR_INT_BIT_HW_ERR
;
995 #ifdef CONFIG_IWLWIFI_DEBUG
996 if (iwl_get_debug_level(trans
->shrd
) & (IWL_DL_ISR
)) {
997 /* NIC fires this, but we don't use it, redundant with WAKEUP */
998 if (inta
& CSR_INT_BIT_SCD
) {
999 IWL_DEBUG_ISR(trans
, "Scheduler finished to transmit "
1000 "the frame/frames.\n");
1004 /* Alive notification via Rx interrupt will do the real work */
1005 if (inta
& CSR_INT_BIT_ALIVE
) {
1006 IWL_DEBUG_ISR(trans
, "Alive interrupt\n");
1011 /* Safely ignore these bits for debug checks below */
1012 inta
&= ~(CSR_INT_BIT_SCD
| CSR_INT_BIT_ALIVE
);
1014 /* HW RF KILL switch toggled */
1015 if (inta
& CSR_INT_BIT_RF_KILL
) {
1017 if (!(iwl_read32(bus(trans
), CSR_GP_CNTRL
) &
1018 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW
))
1021 IWL_WARN(trans
, "RF_KILL bit toggled to %s.\n",
1022 hw_rf_kill
? "disable radio" : "enable radio");
1024 isr_stats
->rfkill
++;
1026 /* driver only loads ucode once setting the interface up.
1027 * the driver allows loading the ucode even if the radio
1028 * is killed. Hence update the killswitch state here. The
1029 * rfkill handler will care about restarting if needed.
1031 if (!test_bit(STATUS_ALIVE
, &trans
->shrd
->status
)) {
1033 set_bit(STATUS_RF_KILL_HW
,
1034 &trans
->shrd
->status
);
1036 clear_bit(STATUS_RF_KILL_HW
,
1037 &trans
->shrd
->status
);
1038 iwl_set_hw_rfkill_state(priv(trans
), hw_rf_kill
);
1041 handled
|= CSR_INT_BIT_RF_KILL
;
1044 /* Chip got too hot and stopped itself */
1045 if (inta
& CSR_INT_BIT_CT_KILL
) {
1046 IWL_ERR(trans
, "Microcode CT kill error detected.\n");
1047 isr_stats
->ctkill
++;
1048 handled
|= CSR_INT_BIT_CT_KILL
;
1051 /* Error detected by uCode */
1052 if (inta
& CSR_INT_BIT_SW_ERR
) {
1053 IWL_ERR(trans
, "Microcode SW error detected. "
1054 " Restarting 0x%X.\n", inta
);
1056 iwl_irq_handle_error(trans
);
1057 handled
|= CSR_INT_BIT_SW_ERR
;
1060 /* uCode wakes up after power-down sleep */
1061 if (inta
& CSR_INT_BIT_WAKEUP
) {
1062 IWL_DEBUG_ISR(trans
, "Wakeup interrupt\n");
1063 iwl_rx_queue_update_write_ptr(trans
, &trans_pcie
->rxq
);
1064 for (i
= 0; i
< hw_params(trans
).max_txq_num
; i
++)
1065 iwl_txq_update_write_ptr(trans
,
1066 &trans_pcie
->txq
[i
]);
1068 isr_stats
->wakeup
++;
1070 handled
|= CSR_INT_BIT_WAKEUP
;
1073 /* All uCode command responses, including Tx command responses,
1074 * Rx "responses" (frame-received notification), and other
1075 * notifications from uCode come through here*/
1076 if (inta
& (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
|
1077 CSR_INT_BIT_RX_PERIODIC
)) {
1078 IWL_DEBUG_ISR(trans
, "Rx interrupt\n");
1079 if (inta
& (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
)) {
1080 handled
|= (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
);
1081 iwl_write32(bus(trans
), CSR_FH_INT_STATUS
,
1082 CSR_FH_INT_RX_MASK
);
1084 if (inta
& CSR_INT_BIT_RX_PERIODIC
) {
1085 handled
|= CSR_INT_BIT_RX_PERIODIC
;
1086 iwl_write32(bus(trans
),
1087 CSR_INT
, CSR_INT_BIT_RX_PERIODIC
);
1089 /* Sending RX interrupt require many steps to be done in the
1091 * 1- write interrupt to current index in ICT table.
1093 * 3- update RX shared data to indicate last write index.
1094 * 4- send interrupt.
1095 * This could lead to RX race, driver could receive RX interrupt
1096 * but the shared data changes does not reflect this;
1097 * periodic interrupt will detect any dangling Rx activity.
1100 /* Disable periodic interrupt; we use it as just a one-shot. */
1101 iwl_write8(bus(trans
), CSR_INT_PERIODIC_REG
,
1102 CSR_INT_PERIODIC_DIS
);
1103 iwl_rx_handle(trans
);
1106 * Enable periodic interrupt in 8 msec only if we received
1107 * real RX interrupt (instead of just periodic int), to catch
1108 * any dangling Rx interrupt. If it was just the periodic
1109 * interrupt, there was no dangling Rx activity, and no need
1110 * to extend the periodic interrupt; one-shot is enough.
1112 if (inta
& (CSR_INT_BIT_FH_RX
| CSR_INT_BIT_SW_RX
))
1113 iwl_write8(bus(trans
), CSR_INT_PERIODIC_REG
,
1114 CSR_INT_PERIODIC_ENA
);
1119 /* This "Tx" DMA channel is used only for loading uCode */
1120 if (inta
& CSR_INT_BIT_FH_TX
) {
1121 iwl_write32(bus(trans
), CSR_FH_INT_STATUS
, CSR_FH_INT_TX_MASK
);
1122 IWL_DEBUG_ISR(trans
, "uCode load interrupt\n");
1124 handled
|= CSR_INT_BIT_FH_TX
;
1125 /* Wake up uCode load routine, now that load is complete */
1126 trans
->ucode_write_complete
= 1;
1127 wake_up(&trans
->shrd
->wait_command_queue
);
1130 if (inta
& ~handled
) {
1131 IWL_ERR(trans
, "Unhandled INTA bits 0x%08x\n", inta
& ~handled
);
1132 isr_stats
->unhandled
++;
1135 if (inta
& ~(trans_pcie
->inta_mask
)) {
1136 IWL_WARN(trans
, "Disabled INTA bits 0x%08x were pending\n",
1137 inta
& ~trans_pcie
->inta_mask
);
1140 /* Re-enable all interrupts */
1141 /* only Re-enable if disabled by irq */
1142 if (test_bit(STATUS_INT_ENABLED
, &trans
->shrd
->status
))
1143 iwl_enable_interrupts(trans
);
1144 /* Re-enable RF_KILL if it occurred */
1145 else if (handled
& CSR_INT_BIT_RF_KILL
)
1146 iwl_enable_rfkill_int(priv(trans
));
1149 /******************************************************************************
1153 ******************************************************************************/
1155 /* a device (PCI-E) page is 4096 bytes long */
1156 #define ICT_SHIFT 12
1157 #define ICT_SIZE (1 << ICT_SHIFT)
1158 #define ICT_COUNT (ICT_SIZE / sizeof(u32))
1160 /* Free dram table */
1161 void iwl_free_isr_ict(struct iwl_trans
*trans
)
1163 struct iwl_trans_pcie
*trans_pcie
=
1164 IWL_TRANS_GET_PCIE_TRANS(trans
);
1166 if (trans_pcie
->ict_tbl
) {
1167 dma_free_coherent(bus(trans
)->dev
, ICT_SIZE
,
1168 trans_pcie
->ict_tbl
,
1169 trans_pcie
->ict_tbl_dma
);
1170 trans_pcie
->ict_tbl
= NULL
;
1171 trans_pcie
->ict_tbl_dma
= 0;
1177 * allocate dram shared table, it is an aligned memory
1178 * block of ICT_SIZE.
1179 * also reset all data related to ICT table interrupt.
1181 int iwl_alloc_isr_ict(struct iwl_trans
*trans
)
1183 struct iwl_trans_pcie
*trans_pcie
=
1184 IWL_TRANS_GET_PCIE_TRANS(trans
);
1186 trans_pcie
->ict_tbl
=
1187 dma_alloc_coherent(bus(trans
)->dev
, ICT_SIZE
,
1188 &trans_pcie
->ict_tbl_dma
,
1190 if (!trans_pcie
->ict_tbl
)
1193 /* just an API sanity check ... it is guaranteed to be aligned */
1194 if (WARN_ON(trans_pcie
->ict_tbl_dma
& (ICT_SIZE
- 1))) {
1195 iwl_free_isr_ict(trans
);
1199 IWL_DEBUG_ISR(trans
, "ict dma addr %Lx\n",
1200 (unsigned long long)trans_pcie
->ict_tbl_dma
);
1202 IWL_DEBUG_ISR(trans
, "ict vir addr %p\n", trans_pcie
->ict_tbl
);
1204 /* reset table and index to all 0 */
1205 memset(trans_pcie
->ict_tbl
, 0, ICT_SIZE
);
1206 trans_pcie
->ict_index
= 0;
1208 /* add periodic RX interrupt */
1209 trans_pcie
->inta_mask
|= CSR_INT_BIT_RX_PERIODIC
;
1213 /* Device is going up inform it about using ICT interrupt table,
1214 * also we need to tell the driver to start using ICT interrupt.
1216 int iwl_reset_ict(struct iwl_trans
*trans
)
1219 unsigned long flags
;
1220 struct iwl_trans_pcie
*trans_pcie
=
1221 IWL_TRANS_GET_PCIE_TRANS(trans
);
1223 if (!trans_pcie
->ict_tbl
)
1226 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
1227 iwl_disable_interrupts(trans
);
1229 memset(trans_pcie
->ict_tbl
, 0, ICT_SIZE
);
1231 val
= trans_pcie
->ict_tbl_dma
>> ICT_SHIFT
;
1233 val
|= CSR_DRAM_INT_TBL_ENABLE
;
1234 val
|= CSR_DRAM_INIT_TBL_WRAP_CHECK
;
1236 IWL_DEBUG_ISR(trans
, "CSR_DRAM_INT_TBL_REG =0x%x\n", val
);
1238 iwl_write32(bus(trans
), CSR_DRAM_INT_TBL_REG
, val
);
1239 trans_pcie
->use_ict
= true;
1240 trans_pcie
->ict_index
= 0;
1241 iwl_write32(bus(trans
), CSR_INT
, trans_pcie
->inta_mask
);
1242 iwl_enable_interrupts(trans
);
1243 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
1248 /* Device is going down disable ict interrupt usage */
1249 void iwl_disable_ict(struct iwl_trans
*trans
)
1251 struct iwl_trans_pcie
*trans_pcie
=
1252 IWL_TRANS_GET_PCIE_TRANS(trans
);
1254 unsigned long flags
;
1256 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
1257 trans_pcie
->use_ict
= false;
1258 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
1261 static irqreturn_t
iwl_isr(int irq
, void *data
)
1263 struct iwl_trans
*trans
= data
;
1264 struct iwl_trans_pcie
*trans_pcie
;
1265 u32 inta
, inta_mask
;
1266 unsigned long flags
;
1267 #ifdef CONFIG_IWLWIFI_DEBUG
1273 trace_iwlwifi_dev_irq(priv(trans
));
1275 trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1277 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
1279 /* Disable (but don't clear!) interrupts here to avoid
1280 * back-to-back ISRs and sporadic interrupts from our NIC.
1281 * If we have something to service, the tasklet will re-enable ints.
1282 * If we *don't* have something, we'll re-enable before leaving here. */
1283 inta_mask
= iwl_read32(bus(trans
), CSR_INT_MASK
); /* just for debug */
1284 iwl_write32(bus(trans
), CSR_INT_MASK
, 0x00000000);
1286 /* Discover which interrupts are active/pending */
1287 inta
= iwl_read32(bus(trans
), CSR_INT
);
1289 /* Ignore interrupt if there's nothing in NIC to service.
1290 * This may be due to IRQ shared with another device,
1291 * or due to sporadic interrupts thrown from our NIC. */
1293 IWL_DEBUG_ISR(trans
, "Ignore interrupt, inta == 0\n");
1297 if ((inta
== 0xFFFFFFFF) || ((inta
& 0xFFFFFFF0) == 0xa5a5a5a0)) {
1298 /* Hardware disappeared. It might have already raised
1300 IWL_WARN(trans
, "HARDWARE GONE?? INTA == 0x%08x\n", inta
);
1304 #ifdef CONFIG_IWLWIFI_DEBUG
1305 if (iwl_get_debug_level(trans
->shrd
) & (IWL_DL_ISR
)) {
1306 inta_fh
= iwl_read32(bus(trans
), CSR_FH_INT_STATUS
);
1307 IWL_DEBUG_ISR(trans
, "ISR inta 0x%08x, enabled 0x%08x, "
1308 "fh 0x%08x\n", inta
, inta_mask
, inta_fh
);
1312 trans_pcie
->inta
|= inta
;
1313 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1315 tasklet_schedule(&trans_pcie
->irq_tasklet
);
1316 else if (test_bit(STATUS_INT_ENABLED
, &trans
->shrd
->status
) &&
1318 iwl_enable_interrupts(trans
);
1321 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
1325 /* re-enable interrupts here since we don't have anything to service. */
1326 /* only Re-enable if disabled by irq and no schedules tasklet. */
1327 if (test_bit(STATUS_INT_ENABLED
, &trans
->shrd
->status
) &&
1329 iwl_enable_interrupts(trans
);
1331 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
1335 /* interrupt handler using ict table, with this interrupt driver will
1336 * stop using INTA register to get device's interrupt, reading this register
1337 * is expensive, device will write interrupts in ICT dram table, increment
1338 * index then will fire interrupt to driver, driver will OR all ICT table
1339 * entries from current index up to table entry with 0 value. the result is
1340 * the interrupt we need to service, driver will set the entries back to 0 and
1343 irqreturn_t
iwl_isr_ict(int irq
, void *data
)
1345 struct iwl_trans
*trans
= data
;
1346 struct iwl_trans_pcie
*trans_pcie
;
1347 u32 inta
, inta_mask
;
1350 unsigned long flags
;
1355 trans_pcie
= IWL_TRANS_GET_PCIE_TRANS(trans
);
1357 /* dram interrupt table not set yet,
1358 * use legacy interrupt.
1360 if (!trans_pcie
->use_ict
)
1361 return iwl_isr(irq
, data
);
1363 trace_iwlwifi_dev_irq(priv(trans
));
1365 spin_lock_irqsave(&trans
->shrd
->lock
, flags
);
1367 /* Disable (but don't clear!) interrupts here to avoid
1368 * back-to-back ISRs and sporadic interrupts from our NIC.
1369 * If we have something to service, the tasklet will re-enable ints.
1370 * If we *don't* have something, we'll re-enable before leaving here.
1372 inta_mask
= iwl_read32(bus(trans
), CSR_INT_MASK
); /* just for debug */
1373 iwl_write32(bus(trans
), CSR_INT_MASK
, 0x00000000);
1376 /* Ignore interrupt if there's nothing in NIC to service.
1377 * This may be due to IRQ shared with another device,
1378 * or due to sporadic interrupts thrown from our NIC. */
1379 read
= le32_to_cpu(trans_pcie
->ict_tbl
[trans_pcie
->ict_index
]);
1380 trace_iwlwifi_dev_ict_read(priv(trans
), trans_pcie
->ict_index
, read
);
1382 IWL_DEBUG_ISR(trans
, "Ignore interrupt, inta == 0\n");
1387 * Collect all entries up to the first 0, starting from ict_index;
1388 * note we already read at ict_index.
1392 IWL_DEBUG_ISR(trans
, "ICT index %d value 0x%08X\n",
1393 trans_pcie
->ict_index
, read
);
1394 trans_pcie
->ict_tbl
[trans_pcie
->ict_index
] = 0;
1395 trans_pcie
->ict_index
=
1396 iwl_queue_inc_wrap(trans_pcie
->ict_index
, ICT_COUNT
);
1398 read
= le32_to_cpu(trans_pcie
->ict_tbl
[trans_pcie
->ict_index
]);
1399 trace_iwlwifi_dev_ict_read(priv(trans
), trans_pcie
->ict_index
,
1403 /* We should not get this value, just ignore it. */
1404 if (val
== 0xffffffff)
1408 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit
1409 * (bit 15 before shifting it to 31) to clear when using interrupt
1410 * coalescing. fortunately, bits 18 and 19 stay set when this happens
1411 * so we use them to decide on the real state of the Rx bit.
1412 * In order words, bit 15 is set if bit 18 or bit 19 are set.
1417 inta
= (0xff & val
) | ((0xff00 & val
) << 16);
1418 IWL_DEBUG_ISR(trans
, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
1419 inta
, inta_mask
, val
);
1421 inta
&= trans_pcie
->inta_mask
;
1422 trans_pcie
->inta
|= inta
;
1424 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1426 tasklet_schedule(&trans_pcie
->irq_tasklet
);
1427 else if (test_bit(STATUS_INT_ENABLED
, &trans
->shrd
->status
) &&
1428 !trans_pcie
->inta
) {
1429 /* Allow interrupt if was disabled by this handler and
1430 * no tasklet was schedules, We should not enable interrupt,
1431 * tasklet will enable it.
1433 iwl_enable_interrupts(trans
);
1436 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);
1440 /* re-enable interrupts here since we don't have anything to service.
1441 * only Re-enable if disabled by irq.
1443 if (test_bit(STATUS_INT_ENABLED
, &trans
->shrd
->status
) &&
1445 iwl_enable_interrupts(trans
);
1447 spin_unlock_irqrestore(&trans
->shrd
->lock
, flags
);