blob: b94c95370b7bb2792cf69c07ae42751db9ff8545 [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
2 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08003 * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved.
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29#include <linux/sched.h>
30#include <linux/wait.h>
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -070031#include <linux/gfp.h>
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070032
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070033/*TODO: Remove include to iwl-core.h*/
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070034#include "iwl-core.h"
35#include "iwl-io.h"
Johannes Bergc17d0682011-09-15 11:46:42 -070036#include "iwl-trans-pcie-int.h"
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070037
Gregory Greenmana5916972012-01-10 19:22:56 +020038#ifdef CONFIG_IWLWIFI_IDI
39#include "iwl-amfh.h"
40#endif
41
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070042/******************************************************************************
43 *
44 * RX path functions
45 *
46 ******************************************************************************/
47
48/*
49 * Rx theory of operation
50 *
51 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
52 * each of which point to Receive Buffers to be filled by the NIC. These get
53 * used not only for Rx frames, but for any command response or notification
54 * from the NIC. The driver and NIC manage the Rx buffers by means
55 * of indexes into the circular buffer.
56 *
57 * Rx Queue Indexes
58 * The host/firmware share two index registers for managing the Rx buffers.
59 *
60 * The READ index maps to the first position that the firmware may be writing
61 * to -- the driver can read up to (but not including) this position and get
62 * good data.
63 * The READ index is managed by the firmware once the card is enabled.
64 *
65 * The WRITE index maps to the last position the driver has read from -- the
66 * position preceding WRITE is the last slot the firmware can place a packet.
67 *
68 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
69 * WRITE = READ.
70 *
71 * During initialization, the host sets up the READ queue position to the first
72 * INDEX position, and WRITE to the last (READ - 1 wrapped)
73 *
74 * When the firmware places a packet in a buffer, it will advance the READ index
75 * and fire the RX interrupt. The driver can then query the READ index and
76 * process as many packets as possible, moving the WRITE index forward as it
77 * resets the Rx queue buffers with new memory.
78 *
79 * The management in the driver is as follows:
80 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
81 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
82 * to replenish the iwl->rxq->rx_free.
83 * + In iwl_rx_replenish (scheduled) if 'processed' != 'read' then the
84 * iwl->rxq is replenished and the READ INDEX is updated (updating the
85 * 'processed' and 'read' driver indexes as well)
86 * + A received packet is processed and handed to the kernel network stack,
87 * detached from the iwl->rxq. The driver 'processed' index is updated.
88 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
89 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
90 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
91 * were enough free buffers and RX_STALLED is set it is cleared.
92 *
93 *
94 * Driver sequence:
95 *
96 * iwl_rx_queue_alloc() Allocates rx_free
97 * iwl_rx_replenish() Replenishes rx_free list from rx_used, and calls
98 * iwl_rx_queue_restock
99 * iwl_rx_queue_restock() Moves available buffers from rx_free into Rx
100 * queue, updates firmware pointers, and updates
101 * the WRITE index. If insufficient rx_free buffers
102 * are available, schedules iwl_rx_replenish
103 *
104 * -- enable interrupts --
105 * ISR - iwl_rx() Detach iwl_rx_mem_buffers from pool up to the
106 * READ INDEX, detaching the SKB from the pool.
107 * Moves the packet buffer from queue to rx_used.
108 * Calls iwl_rx_queue_restock to refill any empty
109 * slots.
110 * ...
111 *
112 */
113
114/**
115 * iwl_rx_queue_space - Return number of free slots available in queue.
116 */
117static int iwl_rx_queue_space(const struct iwl_rx_queue *q)
118{
119 int s = q->read - q->write;
120 if (s <= 0)
121 s += RX_QUEUE_SIZE;
122 /* keep some buffer to not confuse full and empty queue */
123 s -= 2;
124 if (s < 0)
125 s = 0;
126 return s;
127}
128
129/**
130 * iwl_rx_queue_update_write_ptr - Update the write pointer for the RX queue
131 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700132void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700133 struct iwl_rx_queue *q)
134{
135 unsigned long flags;
136 u32 reg;
137
138 spin_lock_irqsave(&q->lock, flags);
139
140 if (q->need_update == 0)
141 goto exit_unlock;
142
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700143 if (hw_params(trans).shadow_reg_enable) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700144 /* shadow register enabled */
145 /* Device expects a multiple of 8 */
146 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700147 iwl_write32(bus(trans), FH_RSCSR_CHNL0_WPTR, q->write_actual);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700148 } else {
149 /* If power-saving is in use, make sure device is awake */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700150 if (test_bit(STATUS_POWER_PMI, &trans->shrd->status)) {
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700151 reg = iwl_read32(bus(trans), CSR_UCODE_DRV_GP1);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700152
153 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700154 IWL_DEBUG_INFO(trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700155 "Rx queue requesting wakeup,"
156 " GP1 = 0x%x\n", reg);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700157 iwl_set_bit(bus(trans), CSR_GP_CNTRL,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700158 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
159 goto exit_unlock;
160 }
161
162 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700163 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700164 q->write_actual);
165
166 /* Else device is assumed to be awake */
167 } else {
168 /* Device expects a multiple of 8 */
169 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700170 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700171 q->write_actual);
172 }
173 }
174 q->need_update = 0;
175
176 exit_unlock:
177 spin_unlock_irqrestore(&q->lock, flags);
178}
179
180/**
181 * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
182 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700183static inline __le32 iwlagn_dma_addr2rbd_ptr(dma_addr_t dma_addr)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700184{
185 return cpu_to_le32((u32)(dma_addr >> 8));
186}
187
188/**
189 * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool
190 *
191 * If there are slots in the RX queue that need to be restocked,
192 * and we have free pre-allocated buffers, fill the ranks as much
193 * as we can, pulling from rx_free.
194 *
195 * This moves the 'write' index forward to catch up with 'processed', and
196 * also updates the memory address in the firmware to reference the new
197 * target buffer.
198 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700199static void iwlagn_rx_queue_restock(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700200{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700201 struct iwl_trans_pcie *trans_pcie =
202 IWL_TRANS_GET_PCIE_TRANS(trans);
203
204 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700205 struct list_head *element;
206 struct iwl_rx_mem_buffer *rxb;
207 unsigned long flags;
208
209 spin_lock_irqsave(&rxq->lock, flags);
210 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
211 /* The overwritten rxb must be a used one */
212 rxb = rxq->queue[rxq->write];
213 BUG_ON(rxb && rxb->page);
214
215 /* Get next free Rx buffer, remove from free list */
216 element = rxq->rx_free.next;
217 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
218 list_del(element);
219
220 /* Point to Rx buffer via next RBD in circular buffer */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700221 rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(rxb->page_dma);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700222 rxq->queue[rxq->write] = rxb;
223 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
224 rxq->free_count--;
225 }
226 spin_unlock_irqrestore(&rxq->lock, flags);
227 /* If the pre-allocated buffer pool is dropping low, schedule to
228 * refill it */
229 if (rxq->free_count <= RX_LOW_WATERMARK)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700230 queue_work(trans->shrd->workqueue, &trans_pcie->rx_replenish);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700231
232
233 /* If we've added more space for the firmware to place data, tell it.
234 * Increment device's write pointer in multiples of 8. */
235 if (rxq->write_actual != (rxq->write & ~0x7)) {
236 spin_lock_irqsave(&rxq->lock, flags);
237 rxq->need_update = 1;
238 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700239 iwl_rx_queue_update_write_ptr(trans, rxq);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700240 }
241}
242
243/**
244 * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free
245 *
246 * When moving to rx_free an SKB is allocated for the slot.
247 *
248 * Also restock the Rx queue via iwl_rx_queue_restock.
249 * This is called as a scheduled work item (except for during initialization)
250 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700251static void iwlagn_rx_allocate(struct iwl_trans *trans, gfp_t priority)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700252{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700253 struct iwl_trans_pcie *trans_pcie =
254 IWL_TRANS_GET_PCIE_TRANS(trans);
255
256 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700257 struct list_head *element;
258 struct iwl_rx_mem_buffer *rxb;
259 struct page *page;
260 unsigned long flags;
261 gfp_t gfp_mask = priority;
262
263 while (1) {
264 spin_lock_irqsave(&rxq->lock, flags);
265 if (list_empty(&rxq->rx_used)) {
266 spin_unlock_irqrestore(&rxq->lock, flags);
267 return;
268 }
269 spin_unlock_irqrestore(&rxq->lock, flags);
270
271 if (rxq->free_count > RX_LOW_WATERMARK)
272 gfp_mask |= __GFP_NOWARN;
273
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700274 if (hw_params(trans).rx_page_order > 0)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700275 gfp_mask |= __GFP_COMP;
276
277 /* Alloc a new receive buffer */
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700278 page = alloc_pages(gfp_mask,
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700279 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700280 if (!page) {
281 if (net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700282 IWL_DEBUG_INFO(trans, "alloc_pages failed, "
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700283 "order: %d\n",
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700284 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700285
286 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
287 net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700288 IWL_CRIT(trans, "Failed to alloc_pages with %s."
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700289 "Only %u free buffers remaining.\n",
290 priority == GFP_ATOMIC ?
291 "GFP_ATOMIC" : "GFP_KERNEL",
292 rxq->free_count);
293 /* We don't reschedule replenish work here -- we will
294 * call the restock method and if it still needs
295 * more buffers it will schedule replenish */
296 return;
297 }
298
299 spin_lock_irqsave(&rxq->lock, flags);
300
301 if (list_empty(&rxq->rx_used)) {
302 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700303 __free_pages(page, hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700304 return;
305 }
306 element = rxq->rx_used.next;
307 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
308 list_del(element);
309
310 spin_unlock_irqrestore(&rxq->lock, flags);
311
312 BUG_ON(rxb->page);
313 rxb->page = page;
314 /* Get physical address of the RB */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700315 rxb->page_dma = dma_map_page(bus(trans)->dev, page, 0,
316 PAGE_SIZE << hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700317 DMA_FROM_DEVICE);
318 /* dma address must be no more than 36 bits */
319 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
320 /* and also 256 byte aligned! */
321 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
322
323 spin_lock_irqsave(&rxq->lock, flags);
324
325 list_add_tail(&rxb->list, &rxq->rx_free);
326 rxq->free_count++;
327
328 spin_unlock_irqrestore(&rxq->lock, flags);
329 }
330}
331
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700332void iwlagn_rx_replenish(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700333{
334 unsigned long flags;
335
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700336 iwlagn_rx_allocate(trans, GFP_KERNEL);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700337
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700338 spin_lock_irqsave(&trans->shrd->lock, flags);
339 iwlagn_rx_queue_restock(trans);
340 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700341}
342
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700343static void iwlagn_rx_replenish_now(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700344{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700345 iwlagn_rx_allocate(trans, GFP_ATOMIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700346
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700347 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700348}
349
350void iwl_bg_rx_replenish(struct work_struct *data)
351{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700352 struct iwl_trans_pcie *trans_pcie =
353 container_of(data, struct iwl_trans_pcie, rx_replenish);
354 struct iwl_trans *trans = trans_pcie->trans;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700355
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700356 if (test_bit(STATUS_EXIT_PENDING, &trans->shrd->status))
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700357 return;
358
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700359 mutex_lock(&trans->shrd->mutex);
360 iwlagn_rx_replenish(trans);
361 mutex_unlock(&trans->shrd->mutex);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700362}
363
364/**
365 * iwl_rx_handle - Main entry function for receiving responses from uCode
366 *
367 * Uses the priv->rx_handlers callback function array to invoke
368 * the appropriate handlers, including command responses,
369 * frame-received notifications, and other notifications.
370 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700371static void iwl_rx_handle(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700372{
373 struct iwl_rx_mem_buffer *rxb;
374 struct iwl_rx_packet *pkt;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700375 struct iwl_trans_pcie *trans_pcie =
376 IWL_TRANS_GET_PCIE_TRANS(trans);
377 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700378 struct iwl_tx_queue *txq = &trans_pcie->txq[trans->shrd->cmd_queue];
379 struct iwl_device_cmd *cmd;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700380 u32 r, i;
381 int reclaim;
382 unsigned long flags;
383 u8 fill_rx = 0;
384 u32 count = 8;
385 int total_empty;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700386 int index, cmd_index;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700387
388 /* uCode's read index (stored in shared DRAM) indicates the last Rx
389 * buffer that the driver may process (last buffer filled by ucode). */
390 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
391 i = rxq->read;
392
393 /* Rx interrupt, but nothing sent from uCode */
394 if (i == r)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700395 IWL_DEBUG_RX(trans, "r = %d, i = %d\n", r, i);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700396
397 /* calculate total frames need to be restock after handling RX */
398 total_empty = r - rxq->write_actual;
399 if (total_empty < 0)
400 total_empty += RX_QUEUE_SIZE;
401
402 if (total_empty > (RX_QUEUE_SIZE / 2))
403 fill_rx = 1;
404
405 while (i != r) {
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700406 int len, err;
Emmanuel Grumbachd56da922011-09-22 07:15:36 -0700407 u16 sequence;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700408
409 rxb = rxq->queue[i];
410
411 /* If an RXB doesn't have a Rx queue slot associated with it,
412 * then a bug has been introduced in the queue refilling
413 * routines -- catch it here */
414 if (WARN_ON(rxb == NULL)) {
415 i = (i + 1) & RX_QUEUE_MASK;
416 continue;
417 }
418
419 rxq->queue[i] = NULL;
420
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700421 dma_unmap_page(bus(trans)->dev, rxb->page_dma,
422 PAGE_SIZE << hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700423 DMA_FROM_DEVICE);
424 pkt = rxb_addr(rxb);
425
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700426 IWL_DEBUG_RX(trans, "r = %d, i = %d, %s, 0x%02x\n", r,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700427 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
428
429 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
430 len += sizeof(u32); /* account for status word */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700431 trace_iwlwifi_dev_rx(priv(trans), pkt, len);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700432
433 /* Reclaim a command buffer only if this packet is a response
434 * to a (driver-originated) command.
435 * If the packet (e.g. Rx frame) originated from uCode,
436 * there is no command buffer to reclaim.
437 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
438 * but apparently a few don't get set; catch them here. */
439 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
440 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
441 (pkt->hdr.cmd != REPLY_RX) &&
442 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
443 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
444 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
445 (pkt->hdr.cmd != REPLY_TX);
446
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700447 sequence = le16_to_cpu(pkt->hdr.sequence);
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700448 index = SEQ_TO_INDEX(sequence);
449 cmd_index = get_cmd_index(&txq->q, index);
450
451 if (reclaim)
452 cmd = txq->cmd[cmd_index];
453 else
454 cmd = NULL;
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700455
456 /* warn if this is cmd response / notification and the uCode
457 * didn't set the SEQ_RX_FRAME for a frame that is
Emmanuel Grumbachd56da922011-09-22 07:15:36 -0700458 * uCode-originated
459 * If you saw this code after the second half of 2012, then
460 * please remove it
461 */
462 WARN(pkt->hdr.cmd != REPLY_TX && reclaim == false &&
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700463 (!(pkt->hdr.sequence & SEQ_RX_FRAME)),
464 "reclaim is false, SEQ_RX_FRAME unset: %s\n",
465 get_cmd_string(pkt->hdr.cmd));
466
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700467 err = iwl_rx_dispatch(priv(trans), rxb, cmd);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700468
469 /*
470 * XXX: After here, we should always check rxb->page
471 * against NULL before touching it or its virtual
472 * memory (pkt). Because some rx_handler might have
473 * already taken or freed the pages.
474 */
475
476 if (reclaim) {
477 /* Invoke any callbacks, transfer the buffer to caller,
478 * and fire off the (possibly) blocking
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700479 * iwl_trans_send_cmd()
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700480 * as we reclaim the driver command queue */
481 if (rxb->page)
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700482 iwl_tx_cmd_complete(trans, rxb, err);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700483 else
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700484 IWL_WARN(trans, "Claim null rxb?\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700485 }
486
487 /* Reuse the page if possible. For notification packets and
488 * SKBs that fail to Rx correctly, add them back into the
489 * rx_free list for reuse later. */
490 spin_lock_irqsave(&rxq->lock, flags);
491 if (rxb->page != NULL) {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700492 rxb->page_dma = dma_map_page(bus(trans)->dev, rxb->page,
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700493 0, PAGE_SIZE <<
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700494 hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700495 DMA_FROM_DEVICE);
496 list_add_tail(&rxb->list, &rxq->rx_free);
497 rxq->free_count++;
498 } else
499 list_add_tail(&rxb->list, &rxq->rx_used);
500
501 spin_unlock_irqrestore(&rxq->lock, flags);
502
503 i = (i + 1) & RX_QUEUE_MASK;
504 /* If there are a lot of unused frames,
505 * restock the Rx queue so ucode wont assert. */
506 if (fill_rx) {
507 count++;
508 if (count >= 8) {
509 rxq->read = i;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700510 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700511 count = 0;
512 }
513 }
514 }
515
516 /* Backtrack one entry */
517 rxq->read = i;
518 if (fill_rx)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700519 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700520 else
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700521 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700522}
523
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700524static const char * const desc_lookup_text[] = {
525 "OK",
526 "FAIL",
527 "BAD_PARAM",
528 "BAD_CHECKSUM",
529 "NMI_INTERRUPT_WDG",
530 "SYSASSERT",
531 "FATAL_ERROR",
532 "BAD_COMMAND",
533 "HW_ERROR_TUNE_LOCK",
534 "HW_ERROR_TEMPERATURE",
535 "ILLEGAL_CHAN_FREQ",
536 "VCC_NOT_STABLE",
537 "FH_ERROR",
538 "NMI_INTERRUPT_HOST",
539 "NMI_INTERRUPT_ACTION_PT",
540 "NMI_INTERRUPT_UNKNOWN",
541 "UCODE_VERSION_MISMATCH",
542 "HW_ERROR_ABS_LOCK",
543 "HW_ERROR_CAL_LOCK_FAIL",
544 "NMI_INTERRUPT_INST_ACTION_PT",
545 "NMI_INTERRUPT_DATA_ACTION_PT",
546 "NMI_TRM_HW_ER",
547 "NMI_INTERRUPT_TRM",
548 "NMI_INTERRUPT_BREAK_POINT",
549 "DEBUG_0",
550 "DEBUG_1",
551 "DEBUG_2",
552 "DEBUG_3",
553};
554
555static struct { char *name; u8 num; } advanced_lookup[] = {
556 { "NMI_INTERRUPT_WDG", 0x34 },
557 { "SYSASSERT", 0x35 },
558 { "UCODE_VERSION_MISMATCH", 0x37 },
559 { "BAD_COMMAND", 0x38 },
560 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
561 { "FATAL_ERROR", 0x3D },
562 { "NMI_TRM_HW_ERR", 0x46 },
563 { "NMI_INTERRUPT_TRM", 0x4C },
564 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
565 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
566 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
567 { "NMI_INTERRUPT_HOST", 0x66 },
568 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
569 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
570 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
571 { "ADVANCED_SYSASSERT", 0 },
572};
573
574static const char *desc_lookup(u32 num)
575{
576 int i;
577 int max = ARRAY_SIZE(desc_lookup_text);
578
579 if (num < max)
580 return desc_lookup_text[num];
581
582 max = ARRAY_SIZE(advanced_lookup) - 1;
583 for (i = 0; i < max; i++) {
584 if (advanced_lookup[i].num == num)
585 break;
586 }
587 return advanced_lookup[i].name;
588}
589
590#define ERROR_START_OFFSET (1 * sizeof(u32))
591#define ERROR_ELEM_SIZE (7 * sizeof(u32))
592
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700593static void iwl_dump_nic_error_log(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700594{
595 u32 base;
596 struct iwl_error_event_table table;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700597 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700598 struct iwl_trans_pcie *trans_pcie =
599 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700600
Don Fryae6130f2011-11-30 16:12:59 -0800601 base = trans->shrd->device_pointers.error_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800602 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700603 if (!base)
604 base = priv->init_errlog_ptr;
605 } else {
606 if (!base)
607 base = priv->inst_errlog_ptr;
608 }
609
610 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700611 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700612 "Not valid error log pointer 0x%08X for %s uCode\n",
613 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800614 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700615 ? "Init" : "RT");
616 return;
617 }
618
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700619 iwl_read_targ_mem_words(bus(priv), base, &table, sizeof(table));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700620
621 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700622 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
623 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
624 trans->shrd->status, table.valid);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700625 }
626
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700627 trans_pcie->isr_stats.err_code = table.error_id;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700628
629 trace_iwlwifi_dev_ucode_error(priv, table.error_id, table.tsf_low,
630 table.data1, table.data2, table.line,
631 table.blink1, table.blink2, table.ilink1,
632 table.ilink2, table.bcon_time, table.gp1,
633 table.gp2, table.gp3, table.ucode_ver,
634 table.hw_ver, table.brd_ver);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700635 IWL_ERR(trans, "0x%08X | %-28s\n", table.error_id,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700636 desc_lookup(table.error_id));
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700637 IWL_ERR(trans, "0x%08X | uPc\n", table.pc);
638 IWL_ERR(trans, "0x%08X | branchlink1\n", table.blink1);
639 IWL_ERR(trans, "0x%08X | branchlink2\n", table.blink2);
640 IWL_ERR(trans, "0x%08X | interruptlink1\n", table.ilink1);
641 IWL_ERR(trans, "0x%08X | interruptlink2\n", table.ilink2);
642 IWL_ERR(trans, "0x%08X | data1\n", table.data1);
643 IWL_ERR(trans, "0x%08X | data2\n", table.data2);
644 IWL_ERR(trans, "0x%08X | line\n", table.line);
645 IWL_ERR(trans, "0x%08X | beacon time\n", table.bcon_time);
646 IWL_ERR(trans, "0x%08X | tsf low\n", table.tsf_low);
647 IWL_ERR(trans, "0x%08X | tsf hi\n", table.tsf_hi);
648 IWL_ERR(trans, "0x%08X | time gp1\n", table.gp1);
649 IWL_ERR(trans, "0x%08X | time gp2\n", table.gp2);
650 IWL_ERR(trans, "0x%08X | time gp3\n", table.gp3);
651 IWL_ERR(trans, "0x%08X | uCode version\n", table.ucode_ver);
652 IWL_ERR(trans, "0x%08X | hw version\n", table.hw_ver);
653 IWL_ERR(trans, "0x%08X | board version\n", table.brd_ver);
654 IWL_ERR(trans, "0x%08X | hcmd\n", table.hcmd);
Wey-Yi Guyd332f592011-11-30 12:32:42 -0800655
656 IWL_ERR(trans, "0x%08X | isr0\n", table.isr0);
657 IWL_ERR(trans, "0x%08X | isr1\n", table.isr1);
658 IWL_ERR(trans, "0x%08X | isr2\n", table.isr2);
659 IWL_ERR(trans, "0x%08X | isr3\n", table.isr3);
660 IWL_ERR(trans, "0x%08X | isr4\n", table.isr4);
661 IWL_ERR(trans, "0x%08X | isr_pref\n", table.isr_pref);
662 IWL_ERR(trans, "0x%08X | wait_event\n", table.wait_event);
663 IWL_ERR(trans, "0x%08X | l2p_control\n", table.l2p_control);
664 IWL_ERR(trans, "0x%08X | l2p_duration\n", table.l2p_duration);
665 IWL_ERR(trans, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
666 IWL_ERR(trans, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
667 IWL_ERR(trans, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
668 IWL_ERR(trans, "0x%08X | timestamp\n", table.u_timestamp);
669 IWL_ERR(trans, "0x%08X | flow_handler\n", table.flow_handler);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700670}
671
672/**
673 * iwl_irq_handle_error - called for HW or SW error interrupt from card
674 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700675static void iwl_irq_handle_error(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700676{
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700677 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700678 /* W/A for WiFi/WiMAX coex and WiMAX own the RF */
Don Fry38622412011-12-16 07:07:36 -0800679 if (cfg(priv)->internal_wimax_coex &&
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700680 (!(iwl_read_prph(bus(trans), APMG_CLK_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700681 APMS_CLK_VAL_MRB_FUNC_MODE) ||
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700682 (iwl_read_prph(bus(trans), APMG_PS_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700683 APMG_PS_CTRL_VAL_RESET_REQ))) {
684 /*
685 * Keep the restart process from trying to send host
686 * commands by clearing the ready bit.
687 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700688 clear_bit(STATUS_READY, &trans->shrd->status);
689 clear_bit(STATUS_HCMD_ACTIVE, &trans->shrd->status);
Johannes Bergeffd4d92011-09-15 11:46:52 -0700690 wake_up(&priv->shrd->wait_command_queue);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700691 IWL_ERR(trans, "RF is used by WiMAX\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700692 return;
693 }
694
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700695 IWL_ERR(trans, "Loaded firmware version: %s\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700696 priv->hw->wiphy->fw_version);
697
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700698 iwl_dump_nic_error_log(trans);
699 iwl_dump_csr(trans);
700 iwl_dump_fh(trans, NULL, false);
701 iwl_dump_nic_event_log(trans, false, NULL, false);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700702#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700703 if (iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS)
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700704 iwl_print_rx_config_cmd(priv(trans), IWL_RXON_CTX_BSS);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700705#endif
706
707 iwlagn_fw_error(priv, false);
708}
709
710#define EVENT_START_OFFSET (4 * sizeof(u32))
711
712/**
713 * iwl_print_event_log - Dump error event log to syslog
714 *
715 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700716static int iwl_print_event_log(struct iwl_trans *trans, u32 start_idx,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700717 u32 num_events, u32 mode,
718 int pos, char **buf, size_t bufsz)
719{
720 u32 i;
721 u32 base; /* SRAM byte address of event log header */
722 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
723 u32 ptr; /* SRAM byte address of log data */
724 u32 ev, time, data; /* event log data */
725 unsigned long reg_flags;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700726 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700727
728 if (num_events == 0)
729 return pos;
730
Don Fryae6130f2011-11-30 16:12:59 -0800731 base = trans->shrd->device_pointers.log_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800732 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700733 if (!base)
734 base = priv->init_evtlog_ptr;
735 } else {
736 if (!base)
737 base = priv->inst_evtlog_ptr;
738 }
739
740 if (mode == 0)
741 event_size = 2 * sizeof(u32);
742 else
743 event_size = 3 * sizeof(u32);
744
745 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
746
747 /* Make sure device is powered up for SRAM reads */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700748 spin_lock_irqsave(&bus(trans)->reg_lock, reg_flags);
749 iwl_grab_nic_access(bus(trans));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700750
751 /* Set starting address; reads will auto-increment */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700752 iwl_write32(bus(trans), HBUS_TARG_MEM_RADDR, ptr);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700753 rmb();
754
755 /* "time" is actually "data" for mode 0 (no timestamp).
756 * place event id # at far right for easier visual parsing. */
757 for (i = 0; i < num_events; i++) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700758 ev = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
759 time = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700760 if (mode == 0) {
761 /* data, ev */
762 if (bufsz) {
763 pos += scnprintf(*buf + pos, bufsz - pos,
764 "EVT_LOG:0x%08x:%04u\n",
765 time, ev);
766 } else {
767 trace_iwlwifi_dev_ucode_event(priv, 0,
768 time, ev);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700769 IWL_ERR(trans, "EVT_LOG:0x%08x:%04u\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700770 time, ev);
771 }
772 } else {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700773 data = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700774 if (bufsz) {
775 pos += scnprintf(*buf + pos, bufsz - pos,
776 "EVT_LOGT:%010u:0x%08x:%04u\n",
777 time, data, ev);
778 } else {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700779 IWL_ERR(trans, "EVT_LOGT:%010u:0x%08x:%04u\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700780 time, data, ev);
781 trace_iwlwifi_dev_ucode_event(priv, time,
782 data, ev);
783 }
784 }
785 }
786
787 /* Allow device to power down */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700788 iwl_release_nic_access(bus(trans));
789 spin_unlock_irqrestore(&bus(trans)->reg_lock, reg_flags);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700790 return pos;
791}
792
793/**
794 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
795 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700796static int iwl_print_last_event_logs(struct iwl_trans *trans, u32 capacity,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700797 u32 num_wraps, u32 next_entry,
798 u32 size, u32 mode,
799 int pos, char **buf, size_t bufsz)
800{
801 /*
802 * display the newest DEFAULT_LOG_ENTRIES entries
803 * i.e the entries just before the next ont that uCode would fill.
804 */
805 if (num_wraps) {
806 if (next_entry < size) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700807 pos = iwl_print_event_log(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700808 capacity - (size - next_entry),
809 size - next_entry, mode,
810 pos, buf, bufsz);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700811 pos = iwl_print_event_log(trans, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700812 next_entry, mode,
813 pos, buf, bufsz);
814 } else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700815 pos = iwl_print_event_log(trans, next_entry - size,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700816 size, mode, pos, buf, bufsz);
817 } else {
818 if (next_entry < size) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700819 pos = iwl_print_event_log(trans, 0, next_entry,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700820 mode, pos, buf, bufsz);
821 } else {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700822 pos = iwl_print_event_log(trans, next_entry - size,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700823 size, mode, pos, buf, bufsz);
824 }
825 }
826 return pos;
827}
828
829#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
830
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700831int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700832 char **buf, bool display)
833{
834 u32 base; /* SRAM byte address of event log header */
835 u32 capacity; /* event log capacity in # entries */
836 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
837 u32 num_wraps; /* # times uCode wrapped to top of log */
838 u32 next_entry; /* index of next entry to be written by uCode */
839 u32 size; /* # entries that we'll print */
840 u32 logsize;
841 int pos = 0;
842 size_t bufsz = 0;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700843 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700844
Don Fryae6130f2011-11-30 16:12:59 -0800845 base = trans->shrd->device_pointers.log_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800846 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700847 logsize = priv->init_evtlog_size;
848 if (!base)
849 base = priv->init_evtlog_ptr;
850 } else {
851 logsize = priv->inst_evtlog_size;
852 if (!base)
853 base = priv->inst_evtlog_ptr;
854 }
855
856 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700857 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700858 "Invalid event log pointer 0x%08X for %s uCode\n",
859 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800860 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700861 ? "Init" : "RT");
862 return -EINVAL;
863 }
864
865 /* event log header */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700866 capacity = iwl_read_targ_mem(bus(trans), base);
867 mode = iwl_read_targ_mem(bus(trans), base + (1 * sizeof(u32)));
868 num_wraps = iwl_read_targ_mem(bus(trans), base + (2 * sizeof(u32)));
869 next_entry = iwl_read_targ_mem(bus(trans), base + (3 * sizeof(u32)));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700870
871 if (capacity > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700872 IWL_ERR(trans, "Log capacity %d is bogus, limit to %d "
873 "entries\n", capacity, logsize);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700874 capacity = logsize;
875 }
876
877 if (next_entry > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700878 IWL_ERR(trans, "Log write index %d is bogus, limit to %d\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700879 next_entry, logsize);
880 next_entry = logsize;
881 }
882
883 size = num_wraps ? capacity : next_entry;
884
885 /* bail out if nothing in log */
886 if (size == 0) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700887 IWL_ERR(trans, "Start IWL Event Log Dump: nothing in log\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700888 return pos;
889 }
890
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700891#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700892 if (!(iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS) && !full_log)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700893 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
894 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
895#else
896 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
897 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
898#endif
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700899 IWL_ERR(trans, "Start IWL Event Log Dump: display last %u entries\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700900 size);
901
902#ifdef CONFIG_IWLWIFI_DEBUG
903 if (display) {
904 if (full_log)
905 bufsz = capacity * 48;
906 else
907 bufsz = size * 48;
908 *buf = kmalloc(bufsz, GFP_KERNEL);
909 if (!*buf)
910 return -ENOMEM;
911 }
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700912 if ((iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS) || full_log) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700913 /*
914 * if uCode has wrapped back to top of log,
915 * start at the oldest entry,
916 * i.e the next one that uCode would fill.
917 */
918 if (num_wraps)
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700919 pos = iwl_print_event_log(trans, next_entry,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700920 capacity - next_entry, mode,
921 pos, buf, bufsz);
922 /* (then/else) start at top of log */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700923 pos = iwl_print_event_log(trans, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700924 next_entry, mode, pos, buf, bufsz);
925 } else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700926 pos = iwl_print_last_event_logs(trans, capacity, num_wraps,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700927 next_entry, size, mode,
928 pos, buf, bufsz);
929#else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700930 pos = iwl_print_last_event_logs(trans, capacity, num_wraps,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700931 next_entry, size, mode,
932 pos, buf, bufsz);
933#endif
934 return pos;
935}
936
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700937/* tasklet for iwlagn interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700938void iwl_irq_tasklet(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700939{
940 u32 inta = 0;
941 u32 handled = 0;
942 unsigned long flags;
943 u32 i;
944#ifdef CONFIG_IWLWIFI_DEBUG
945 u32 inta_mask;
946#endif
947
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700948 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700949 struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
950
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700951
952 spin_lock_irqsave(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700953
954 /* Ack/clear/reset pending uCode interrupts.
955 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
956 */
957 /* There is a hardware bug in the interrupt mask function that some
958 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
959 * they are disabled in the CSR_INT_MASK register. Furthermore the
960 * ICT interrupt handling mechanism has another bug that might cause
961 * these unmasked interrupts fail to be detected. We workaround the
962 * hardware bugs here by ACKing all the possible interrupts so that
963 * interrupt coalescing can still be achieved.
964 */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700965 iwl_write32(bus(trans), CSR_INT,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700966 trans_pcie->inta | ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700967
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700968 inta = trans_pcie->inta;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700969
970#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700971 if (iwl_get_debug_level(trans->shrd) & IWL_DL_ISR) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700972 /* just for debug */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700973 inta_mask = iwl_read32(bus(trans), CSR_INT_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700974 IWL_DEBUG_ISR(trans, "inta 0x%08x, enabled 0x%08x\n ",
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700975 inta, inta_mask);
976 }
977#endif
978
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700979 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700980
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700981 /* saved interrupt in inta variable now we can reset trans_pcie->inta */
982 trans_pcie->inta = 0;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700983
984 /* Now service all interrupt bits discovered above. */
985 if (inta & CSR_INT_BIT_HW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700986 IWL_ERR(trans, "Hardware error detected. Restarting.\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700987
988 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700989 iwl_disable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700990
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700991 isr_stats->hw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700992 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700993
994 handled |= CSR_INT_BIT_HW_ERR;
995
996 return;
997 }
998
999#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001000 if (iwl_get_debug_level(trans->shrd) & (IWL_DL_ISR)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001001 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1002 if (inta & CSR_INT_BIT_SCD) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001003 IWL_DEBUG_ISR(trans, "Scheduler finished to transmit "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001004 "the frame/frames.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001005 isr_stats->sch++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001006 }
1007
1008 /* Alive notification via Rx interrupt will do the real work */
1009 if (inta & CSR_INT_BIT_ALIVE) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001010 IWL_DEBUG_ISR(trans, "Alive interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001011 isr_stats->alive++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001012 }
1013 }
1014#endif
1015 /* Safely ignore these bits for debug checks below */
1016 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1017
1018 /* HW RF KILL switch toggled */
1019 if (inta & CSR_INT_BIT_RF_KILL) {
1020 int hw_rf_kill = 0;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001021 if (!(iwl_read32(bus(trans), CSR_GP_CNTRL) &
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001022 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1023 hw_rf_kill = 1;
1024
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001025 IWL_WARN(trans, "RF_KILL bit toggled to %s.\n",
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001026 hw_rf_kill ? "disable radio" : "enable radio");
1027
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001028 isr_stats->rfkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001029
1030 /* driver only loads ucode once setting the interface up.
1031 * the driver allows loading the ucode even if the radio
1032 * is killed. Hence update the killswitch state here. The
1033 * rfkill handler will care about restarting if needed.
1034 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001035 if (!test_bit(STATUS_ALIVE, &trans->shrd->status)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001036 if (hw_rf_kill)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001037 set_bit(STATUS_RF_KILL_HW,
1038 &trans->shrd->status);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001039 else
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001040 clear_bit(STATUS_RF_KILL_HW,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001041 &trans->shrd->status);
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001042 iwl_set_hw_rfkill_state(priv(trans), hw_rf_kill);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001043 }
1044
1045 handled |= CSR_INT_BIT_RF_KILL;
1046 }
1047
1048 /* Chip got too hot and stopped itself */
1049 if (inta & CSR_INT_BIT_CT_KILL) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001050 IWL_ERR(trans, "Microcode CT kill error detected.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001051 isr_stats->ctkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001052 handled |= CSR_INT_BIT_CT_KILL;
1053 }
1054
1055 /* Error detected by uCode */
1056 if (inta & CSR_INT_BIT_SW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001057 IWL_ERR(trans, "Microcode SW error detected. "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001058 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001059 isr_stats->sw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -07001060 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001061 handled |= CSR_INT_BIT_SW_ERR;
1062 }
1063
1064 /* uCode wakes up after power-down sleep */
1065 if (inta & CSR_INT_BIT_WAKEUP) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001066 IWL_DEBUG_ISR(trans, "Wakeup interrupt\n");
1067 iwl_rx_queue_update_write_ptr(trans, &trans_pcie->rxq);
1068 for (i = 0; i < hw_params(trans).max_txq_num; i++)
Emmanuel Grumbachfd656932011-08-25 23:11:19 -07001069 iwl_txq_update_write_ptr(trans,
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001070 &trans_pcie->txq[i]);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001071
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001072 isr_stats->wakeup++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001073
1074 handled |= CSR_INT_BIT_WAKEUP;
1075 }
1076
1077 /* All uCode command responses, including Tx command responses,
1078 * Rx "responses" (frame-received notification), and other
1079 * notifications from uCode come through here*/
1080 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1081 CSR_INT_BIT_RX_PERIODIC)) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001082 IWL_DEBUG_ISR(trans, "Rx interrupt\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001083 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1084 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001085 iwl_write32(bus(trans), CSR_FH_INT_STATUS,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001086 CSR_FH_INT_RX_MASK);
1087 }
1088 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1089 handled |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001090 iwl_write32(bus(trans),
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001091 CSR_INT, CSR_INT_BIT_RX_PERIODIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001092 }
1093 /* Sending RX interrupt require many steps to be done in the
1094 * the device:
1095 * 1- write interrupt to current index in ICT table.
1096 * 2- dma RX frame.
1097 * 3- update RX shared data to indicate last write index.
1098 * 4- send interrupt.
1099 * This could lead to RX race, driver could receive RX interrupt
1100 * but the shared data changes does not reflect this;
1101 * periodic interrupt will detect any dangling Rx activity.
1102 */
1103
1104 /* Disable periodic interrupt; we use it as just a one-shot. */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001105 iwl_write8(bus(trans), CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001106 CSR_INT_PERIODIC_DIS);
Gregory Greenmana5916972012-01-10 19:22:56 +02001107#ifdef CONFIG_IWLWIFI_IDI
1108 iwl_amfh_rx_handler();
1109#else
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001110 iwl_rx_handle(trans);
Gregory Greenmana5916972012-01-10 19:22:56 +02001111#endif
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001112 /*
1113 * Enable periodic interrupt in 8 msec only if we received
1114 * real RX interrupt (instead of just periodic int), to catch
1115 * any dangling Rx interrupt. If it was just the periodic
1116 * interrupt, there was no dangling Rx activity, and no need
1117 * to extend the periodic interrupt; one-shot is enough.
1118 */
1119 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001120 iwl_write8(bus(trans), CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001121 CSR_INT_PERIODIC_ENA);
1122
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001123 isr_stats->rx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001124 }
1125
1126 /* This "Tx" DMA channel is used only for loading uCode */
1127 if (inta & CSR_INT_BIT_FH_TX) {
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001128 iwl_write32(bus(trans), CSR_FH_INT_STATUS, CSR_FH_INT_TX_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001129 IWL_DEBUG_ISR(trans, "uCode load interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001130 isr_stats->tx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001131 handled |= CSR_INT_BIT_FH_TX;
1132 /* Wake up uCode load routine, now that load is complete */
Gregory Greenmana5916972012-01-10 19:22:56 +02001133#ifdef CONFIG_IWLWIFI_IDI
1134 trans->shrd->trans->ucode_write_complete = 1;
1135#else
Don Fry5703ddb2011-11-10 06:55:07 -08001136 trans->ucode_write_complete = 1;
Gregory Greenmana5916972012-01-10 19:22:56 +02001137#endif
Johannes Bergeffd4d92011-09-15 11:46:52 -07001138 wake_up(&trans->shrd->wait_command_queue);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001139 }
1140
1141 if (inta & ~handled) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001142 IWL_ERR(trans, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001143 isr_stats->unhandled++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001144 }
1145
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001146 if (inta & ~(trans_pcie->inta_mask)) {
1147 IWL_WARN(trans, "Disabled INTA bits 0x%08x were pending\n",
1148 inta & ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001149 }
1150
1151 /* Re-enable all interrupts */
1152 /* only Re-enable if disabled by irq */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001153 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status))
1154 iwl_enable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001155 /* Re-enable RF_KILL if it occurred */
1156 else if (handled & CSR_INT_BIT_RF_KILL)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001157 iwl_enable_rfkill_int(priv(trans));
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001158}
1159
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001160/******************************************************************************
1161 *
1162 * ICT functions
1163 *
1164 ******************************************************************************/
Johannes Berg10667132011-12-19 14:00:59 -08001165
1166/* a device (PCI-E) page is 4096 bytes long */
1167#define ICT_SHIFT 12
1168#define ICT_SIZE (1 << ICT_SHIFT)
1169#define ICT_COUNT (ICT_SIZE / sizeof(u32))
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001170
1171/* Free dram table */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001172void iwl_free_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001173{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001174 struct iwl_trans_pcie *trans_pcie =
1175 IWL_TRANS_GET_PCIE_TRANS(trans);
1176
Johannes Berg10667132011-12-19 14:00:59 -08001177 if (trans_pcie->ict_tbl) {
1178 dma_free_coherent(bus(trans)->dev, ICT_SIZE,
1179 trans_pcie->ict_tbl,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001180 trans_pcie->ict_tbl_dma);
Johannes Berg10667132011-12-19 14:00:59 -08001181 trans_pcie->ict_tbl = NULL;
1182 trans_pcie->ict_tbl_dma = 0;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001183 }
1184}
1185
1186
Johannes Berg10667132011-12-19 14:00:59 -08001187/*
1188 * allocate dram shared table, it is an aligned memory
1189 * block of ICT_SIZE.
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001190 * also reset all data related to ICT table interrupt.
1191 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001192int iwl_alloc_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001193{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001194 struct iwl_trans_pcie *trans_pcie =
1195 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001196
Johannes Berg10667132011-12-19 14:00:59 -08001197 trans_pcie->ict_tbl =
1198 dma_alloc_coherent(bus(trans)->dev, ICT_SIZE,
1199 &trans_pcie->ict_tbl_dma,
1200 GFP_KERNEL);
1201 if (!trans_pcie->ict_tbl)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001202 return -ENOMEM;
1203
Johannes Berg10667132011-12-19 14:00:59 -08001204 /* just an API sanity check ... it is guaranteed to be aligned */
1205 if (WARN_ON(trans_pcie->ict_tbl_dma & (ICT_SIZE - 1))) {
1206 iwl_free_isr_ict(trans);
1207 return -EINVAL;
1208 }
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001209
Johannes Berg10667132011-12-19 14:00:59 -08001210 IWL_DEBUG_ISR(trans, "ict dma addr %Lx\n",
1211 (unsigned long long)trans_pcie->ict_tbl_dma);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001212
Johannes Berg10667132011-12-19 14:00:59 -08001213 IWL_DEBUG_ISR(trans, "ict vir addr %p\n", trans_pcie->ict_tbl);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001214
1215 /* reset table and index to all 0 */
Johannes Berg10667132011-12-19 14:00:59 -08001216 memset(trans_pcie->ict_tbl, 0, ICT_SIZE);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001217 trans_pcie->ict_index = 0;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001218
1219 /* add periodic RX interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001220 trans_pcie->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001221 return 0;
1222}
1223
1224/* Device is going up inform it about using ICT interrupt table,
1225 * also we need to tell the driver to start using ICT interrupt.
1226 */
Emmanuel Grumbached6a3802012-01-02 16:10:08 +02001227void iwl_reset_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001228{
1229 u32 val;
1230 unsigned long flags;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001231 struct iwl_trans_pcie *trans_pcie =
1232 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001233
Johannes Berg10667132011-12-19 14:00:59 -08001234 if (!trans_pcie->ict_tbl)
Emmanuel Grumbached6a3802012-01-02 16:10:08 +02001235 return;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001236
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001237 spin_lock_irqsave(&trans->shrd->lock, flags);
1238 iwl_disable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001239
Johannes Berg10667132011-12-19 14:00:59 -08001240 memset(trans_pcie->ict_tbl, 0, ICT_SIZE);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001241
Johannes Berg10667132011-12-19 14:00:59 -08001242 val = trans_pcie->ict_tbl_dma >> ICT_SHIFT;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001243
1244 val |= CSR_DRAM_INT_TBL_ENABLE;
1245 val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1246
Johannes Berg10667132011-12-19 14:00:59 -08001247 IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%x\n", val);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001248
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001249 iwl_write32(bus(trans), CSR_DRAM_INT_TBL_REG, val);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001250 trans_pcie->use_ict = true;
1251 trans_pcie->ict_index = 0;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001252 iwl_write32(bus(trans), CSR_INT, trans_pcie->inta_mask);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001253 iwl_enable_interrupts(trans);
1254 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001255}
1256
1257/* Device is going down disable ict interrupt usage */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001258void iwl_disable_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001259{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001260 struct iwl_trans_pcie *trans_pcie =
1261 IWL_TRANS_GET_PCIE_TRANS(trans);
1262
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001263 unsigned long flags;
1264
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001265 spin_lock_irqsave(&trans->shrd->lock, flags);
1266 trans_pcie->use_ict = false;
1267 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001268}
1269
1270static irqreturn_t iwl_isr(int irq, void *data)
1271{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001272 struct iwl_trans *trans = data;
1273 struct iwl_trans_pcie *trans_pcie;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001274 u32 inta, inta_mask;
1275 unsigned long flags;
1276#ifdef CONFIG_IWLWIFI_DEBUG
1277 u32 inta_fh;
1278#endif
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001279 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001280 return IRQ_NONE;
1281
Johannes Bergb80667e2011-12-09 07:26:13 -08001282 trace_iwlwifi_dev_irq(priv(trans));
1283
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001284 trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1285
1286 spin_lock_irqsave(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001287
1288 /* Disable (but don't clear!) interrupts here to avoid
1289 * back-to-back ISRs and sporadic interrupts from our NIC.
1290 * If we have something to service, the tasklet will re-enable ints.
1291 * If we *don't* have something, we'll re-enable before leaving here. */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001292 inta_mask = iwl_read32(bus(trans), CSR_INT_MASK); /* just for debug */
1293 iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001294
1295 /* Discover which interrupts are active/pending */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001296 inta = iwl_read32(bus(trans), CSR_INT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001297
1298 /* Ignore interrupt if there's nothing in NIC to service.
1299 * This may be due to IRQ shared with another device,
1300 * or due to sporadic interrupts thrown from our NIC. */
1301 if (!inta) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001302 IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n");
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001303 goto none;
1304 }
1305
1306 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1307 /* Hardware disappeared. It might have already raised
1308 * an interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001309 IWL_WARN(trans, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001310 goto unplugged;
1311 }
1312
1313#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001314 if (iwl_get_debug_level(trans->shrd) & (IWL_DL_ISR)) {
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001315 inta_fh = iwl_read32(bus(trans), CSR_FH_INT_STATUS);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001316 IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x, "
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001317 "fh 0x%08x\n", inta, inta_mask, inta_fh);
1318 }
1319#endif
1320
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001321 trans_pcie->inta |= inta;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001322 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1323 if (likely(inta))
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001324 tasklet_schedule(&trans_pcie->irq_tasklet);
1325 else if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1326 !trans_pcie->inta)
1327 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001328
1329 unplugged:
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001330 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001331 return IRQ_HANDLED;
1332
1333 none:
1334 /* re-enable interrupts here since we don't have anything to service. */
1335 /* only Re-enable if disabled by irq and no schedules tasklet. */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001336 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1337 !trans_pcie->inta)
1338 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001339
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001340 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001341 return IRQ_NONE;
1342}
1343
1344/* interrupt handler using ict table, with this interrupt driver will
1345 * stop using INTA register to get device's interrupt, reading this register
1346 * is expensive, device will write interrupts in ICT dram table, increment
1347 * index then will fire interrupt to driver, driver will OR all ICT table
1348 * entries from current index up to table entry with 0 value. the result is
1349 * the interrupt we need to service, driver will set the entries back to 0 and
1350 * set index.
1351 */
1352irqreturn_t iwl_isr_ict(int irq, void *data)
1353{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001354 struct iwl_trans *trans = data;
1355 struct iwl_trans_pcie *trans_pcie;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001356 u32 inta, inta_mask;
1357 u32 val = 0;
Johannes Bergb80667e2011-12-09 07:26:13 -08001358 u32 read;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001359 unsigned long flags;
1360
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001361 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001362 return IRQ_NONE;
1363
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001364 trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1365
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001366 /* dram interrupt table not set yet,
1367 * use legacy interrupt.
1368 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001369 if (!trans_pcie->use_ict)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001370 return iwl_isr(irq, data);
1371
Johannes Bergb80667e2011-12-09 07:26:13 -08001372 trace_iwlwifi_dev_irq(priv(trans));
1373
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001374 spin_lock_irqsave(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001375
1376 /* Disable (but don't clear!) interrupts here to avoid
1377 * back-to-back ISRs and sporadic interrupts from our NIC.
1378 * If we have something to service, the tasklet will re-enable ints.
1379 * If we *don't* have something, we'll re-enable before leaving here.
1380 */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001381 inta_mask = iwl_read32(bus(trans), CSR_INT_MASK); /* just for debug */
1382 iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001383
1384
1385 /* Ignore interrupt if there's nothing in NIC to service.
1386 * This may be due to IRQ shared with another device,
1387 * or due to sporadic interrupts thrown from our NIC. */
Johannes Bergb80667e2011-12-09 07:26:13 -08001388 read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]);
1389 trace_iwlwifi_dev_ict_read(priv(trans), trans_pcie->ict_index, read);
1390 if (!read) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001391 IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n");
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001392 goto none;
1393 }
1394
Johannes Bergb80667e2011-12-09 07:26:13 -08001395 /*
1396 * Collect all entries up to the first 0, starting from ict_index;
1397 * note we already read at ict_index.
1398 */
1399 do {
1400 val |= read;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001401 IWL_DEBUG_ISR(trans, "ICT index %d value 0x%08X\n",
Johannes Bergb80667e2011-12-09 07:26:13 -08001402 trans_pcie->ict_index, read);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001403 trans_pcie->ict_tbl[trans_pcie->ict_index] = 0;
1404 trans_pcie->ict_index =
1405 iwl_queue_inc_wrap(trans_pcie->ict_index, ICT_COUNT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001406
Johannes Bergb80667e2011-12-09 07:26:13 -08001407 read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]);
1408 trace_iwlwifi_dev_ict_read(priv(trans), trans_pcie->ict_index,
1409 read);
1410 } while (read);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001411
1412 /* We should not get this value, just ignore it. */
1413 if (val == 0xffffffff)
1414 val = 0;
1415
1416 /*
1417 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit
1418 * (bit 15 before shifting it to 31) to clear when using interrupt
1419 * coalescing. fortunately, bits 18 and 19 stay set when this happens
1420 * so we use them to decide on the real state of the Rx bit.
1421 * In order words, bit 15 is set if bit 18 or bit 19 are set.
1422 */
1423 if (val & 0xC0000)
1424 val |= 0x8000;
1425
1426 inta = (0xff & val) | ((0xff00 & val) << 16);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001427 IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001428 inta, inta_mask, val);
1429
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001430 inta &= trans_pcie->inta_mask;
1431 trans_pcie->inta |= inta;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001432
1433 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1434 if (likely(inta))
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001435 tasklet_schedule(&trans_pcie->irq_tasklet);
1436 else if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
Johannes Bergb80667e2011-12-09 07:26:13 -08001437 !trans_pcie->inta) {
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001438 /* Allow interrupt if was disabled by this handler and
1439 * no tasklet was schedules, We should not enable interrupt,
1440 * tasklet will enable it.
1441 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001442 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001443 }
1444
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001445 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001446 return IRQ_HANDLED;
1447
1448 none:
1449 /* re-enable interrupts here since we don't have anything to service.
1450 * only Re-enable if disabled by irq.
1451 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001452 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
Johannes Bergb80667e2011-12-09 07:26:13 -08001453 !trans_pcie->inta)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001454 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001455
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001456 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001457 return IRQ_NONE;
1458}