blob: 33a933b78e525284587ed04eadeb78267879a0e2 [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
2 *
Wey-Yi Guyfb4961d2012-01-06 13:16:33 -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 Grumbachdb70f292012-02-09 16:08:15 +020037#include "iwl-op-mode.h"
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070038
Gregory Greenmana5916972012-01-10 19:22:56 +020039#ifdef CONFIG_IWLWIFI_IDI
40#include "iwl-amfh.h"
41#endif
42
Emmanuel Grumbachab697a92011-07-11 07:35:34 -070043/******************************************************************************
44 *
45 * RX path functions
46 *
47 ******************************************************************************/
48
49/*
50 * Rx theory of operation
51 *
52 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
53 * each of which point to Receive Buffers to be filled by the NIC. These get
54 * used not only for Rx frames, but for any command response or notification
55 * from the NIC. The driver and NIC manage the Rx buffers by means
56 * of indexes into the circular buffer.
57 *
58 * Rx Queue Indexes
59 * The host/firmware share two index registers for managing the Rx buffers.
60 *
61 * The READ index maps to the first position that the firmware may be writing
62 * to -- the driver can read up to (but not including) this position and get
63 * good data.
64 * The READ index is managed by the firmware once the card is enabled.
65 *
66 * The WRITE index maps to the last position the driver has read from -- the
67 * position preceding WRITE is the last slot the firmware can place a packet.
68 *
69 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
70 * WRITE = READ.
71 *
72 * During initialization, the host sets up the READ queue position to the first
73 * INDEX position, and WRITE to the last (READ - 1 wrapped)
74 *
75 * When the firmware places a packet in a buffer, it will advance the READ index
76 * and fire the RX interrupt. The driver can then query the READ index and
77 * process as many packets as possible, moving the WRITE index forward as it
78 * resets the Rx queue buffers with new memory.
79 *
80 * The management in the driver is as follows:
81 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
82 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
83 * to replenish the iwl->rxq->rx_free.
84 * + In iwl_rx_replenish (scheduled) if 'processed' != 'read' then the
85 * iwl->rxq is replenished and the READ INDEX is updated (updating the
86 * 'processed' and 'read' driver indexes as well)
87 * + A received packet is processed and handed to the kernel network stack,
88 * detached from the iwl->rxq. The driver 'processed' index is updated.
89 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
90 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
91 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
92 * were enough free buffers and RX_STALLED is set it is cleared.
93 *
94 *
95 * Driver sequence:
96 *
97 * iwl_rx_queue_alloc() Allocates rx_free
98 * iwl_rx_replenish() Replenishes rx_free list from rx_used, and calls
99 * iwl_rx_queue_restock
100 * iwl_rx_queue_restock() Moves available buffers from rx_free into Rx
101 * queue, updates firmware pointers, and updates
102 * the WRITE index. If insufficient rx_free buffers
103 * are available, schedules iwl_rx_replenish
104 *
105 * -- enable interrupts --
106 * ISR - iwl_rx() Detach iwl_rx_mem_buffers from pool up to the
107 * READ INDEX, detaching the SKB from the pool.
108 * Moves the packet buffer from queue to rx_used.
109 * Calls iwl_rx_queue_restock to refill any empty
110 * slots.
111 * ...
112 *
113 */
114
115/**
116 * iwl_rx_queue_space - Return number of free slots available in queue.
117 */
118static int iwl_rx_queue_space(const struct iwl_rx_queue *q)
119{
120 int s = q->read - q->write;
121 if (s <= 0)
122 s += RX_QUEUE_SIZE;
123 /* keep some buffer to not confuse full and empty queue */
124 s -= 2;
125 if (s < 0)
126 s = 0;
127 return s;
128}
129
130/**
131 * iwl_rx_queue_update_write_ptr - Update the write pointer for the RX queue
132 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700133void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700134 struct iwl_rx_queue *q)
135{
136 unsigned long flags;
137 u32 reg;
138
139 spin_lock_irqsave(&q->lock, flags);
140
141 if (q->need_update == 0)
142 goto exit_unlock;
143
Johannes Berg0dde86b2012-03-06 13:30:46 -0800144 if (cfg(trans)->base_params->shadow_reg_enable) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700145 /* shadow register enabled */
146 /* Device expects a multiple of 8 */
147 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200148 iwl_write32(trans, FH_RSCSR_CHNL0_WPTR, q->write_actual);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700149 } else {
150 /* If power-saving is in use, make sure device is awake */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700151 if (test_bit(STATUS_POWER_PMI, &trans->shrd->status)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200152 reg = iwl_read32(trans, CSR_UCODE_DRV_GP1);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700153
154 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700155 IWL_DEBUG_INFO(trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700156 "Rx queue requesting wakeup,"
157 " GP1 = 0x%x\n", reg);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200158 iwl_set_bit(trans, CSR_GP_CNTRL,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700159 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
160 goto exit_unlock;
161 }
162
163 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200164 iwl_write_direct32(trans, FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700165 q->write_actual);
166
167 /* Else device is assumed to be awake */
168 } else {
169 /* Device expects a multiple of 8 */
170 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200171 iwl_write_direct32(trans, FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700172 q->write_actual);
173 }
174 }
175 q->need_update = 0;
176
177 exit_unlock:
178 spin_unlock_irqrestore(&q->lock, flags);
179}
180
181/**
182 * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
183 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700184static inline __le32 iwlagn_dma_addr2rbd_ptr(dma_addr_t dma_addr)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700185{
186 return cpu_to_le32((u32)(dma_addr >> 8));
187}
188
189/**
190 * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool
191 *
192 * If there are slots in the RX queue that need to be restocked,
193 * and we have free pre-allocated buffers, fill the ranks as much
194 * as we can, pulling from rx_free.
195 *
196 * This moves the 'write' index forward to catch up with 'processed', and
197 * also updates the memory address in the firmware to reference the new
198 * target buffer.
199 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700200static void iwlagn_rx_queue_restock(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700201{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700202 struct iwl_trans_pcie *trans_pcie =
203 IWL_TRANS_GET_PCIE_TRANS(trans);
204
205 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700206 struct list_head *element;
207 struct iwl_rx_mem_buffer *rxb;
208 unsigned long flags;
209
210 spin_lock_irqsave(&rxq->lock, flags);
211 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
212 /* The overwritten rxb must be a used one */
213 rxb = rxq->queue[rxq->write];
214 BUG_ON(rxb && rxb->page);
215
216 /* Get next free Rx buffer, remove from free list */
217 element = rxq->rx_free.next;
218 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
219 list_del(element);
220
221 /* Point to Rx buffer via next RBD in circular buffer */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700222 rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(rxb->page_dma);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700223 rxq->queue[rxq->write] = rxb;
224 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
225 rxq->free_count--;
226 }
227 spin_unlock_irqrestore(&rxq->lock, flags);
228 /* If the pre-allocated buffer pool is dropping low, schedule to
229 * refill it */
230 if (rxq->free_count <= RX_LOW_WATERMARK)
Johannes Berg1ee158d2012-02-17 10:07:44 -0800231 schedule_work(&trans_pcie->rx_replenish);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700232
233
234 /* If we've added more space for the firmware to place data, tell it.
235 * Increment device's write pointer in multiples of 8. */
236 if (rxq->write_actual != (rxq->write & ~0x7)) {
237 spin_lock_irqsave(&rxq->lock, flags);
238 rxq->need_update = 1;
239 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700240 iwl_rx_queue_update_write_ptr(trans, rxq);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700241 }
242}
243
244/**
245 * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free
246 *
247 * When moving to rx_free an SKB is allocated for the slot.
248 *
249 * Also restock the Rx queue via iwl_rx_queue_restock.
250 * This is called as a scheduled work item (except for during initialization)
251 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700252static void iwlagn_rx_allocate(struct iwl_trans *trans, gfp_t priority)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700253{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700254 struct iwl_trans_pcie *trans_pcie =
255 IWL_TRANS_GET_PCIE_TRANS(trans);
256
257 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700258 struct list_head *element;
259 struct iwl_rx_mem_buffer *rxb;
260 struct page *page;
261 unsigned long flags;
262 gfp_t gfp_mask = priority;
263
264 while (1) {
265 spin_lock_irqsave(&rxq->lock, flags);
266 if (list_empty(&rxq->rx_used)) {
267 spin_unlock_irqrestore(&rxq->lock, flags);
268 return;
269 }
270 spin_unlock_irqrestore(&rxq->lock, flags);
271
272 if (rxq->free_count > RX_LOW_WATERMARK)
273 gfp_mask |= __GFP_NOWARN;
274
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700275 if (hw_params(trans).rx_page_order > 0)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700276 gfp_mask |= __GFP_COMP;
277
278 /* Alloc a new receive buffer */
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700279 page = alloc_pages(gfp_mask,
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700280 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700281 if (!page) {
282 if (net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700283 IWL_DEBUG_INFO(trans, "alloc_pages failed, "
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700284 "order: %d\n",
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700285 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700286
287 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
288 net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700289 IWL_CRIT(trans, "Failed to alloc_pages with %s."
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700290 "Only %u free buffers remaining.\n",
291 priority == GFP_ATOMIC ?
292 "GFP_ATOMIC" : "GFP_KERNEL",
293 rxq->free_count);
294 /* We don't reschedule replenish work here -- we will
295 * call the restock method and if it still needs
296 * more buffers it will schedule replenish */
297 return;
298 }
299
300 spin_lock_irqsave(&rxq->lock, flags);
301
302 if (list_empty(&rxq->rx_used)) {
303 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700304 __free_pages(page, hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700305 return;
306 }
307 element = rxq->rx_used.next;
308 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
309 list_del(element);
310
311 spin_unlock_irqrestore(&rxq->lock, flags);
312
313 BUG_ON(rxb->page);
314 rxb->page = page;
315 /* Get physical address of the RB */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200316 rxb->page_dma = dma_map_page(trans->dev, page, 0,
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700317 PAGE_SIZE << hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700318 DMA_FROM_DEVICE);
319 /* dma address must be no more than 36 bits */
320 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
321 /* and also 256 byte aligned! */
322 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
323
324 spin_lock_irqsave(&rxq->lock, flags);
325
326 list_add_tail(&rxb->list, &rxq->rx_free);
327 rxq->free_count++;
328
329 spin_unlock_irqrestore(&rxq->lock, flags);
330 }
331}
332
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700333void iwlagn_rx_replenish(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700334{
Johannes Berg7b114882012-02-05 13:55:11 -0800335 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700336 unsigned long flags;
337
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700338 iwlagn_rx_allocate(trans, GFP_KERNEL);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700339
Johannes Berg7b114882012-02-05 13:55:11 -0800340 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700341 iwlagn_rx_queue_restock(trans);
Johannes Berg7b114882012-02-05 13:55:11 -0800342 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700343}
344
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700345static void iwlagn_rx_replenish_now(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700346{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700347 iwlagn_rx_allocate(trans, GFP_ATOMIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700348
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700349 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700350}
351
352void iwl_bg_rx_replenish(struct work_struct *data)
353{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700354 struct iwl_trans_pcie *trans_pcie =
355 container_of(data, struct iwl_trans_pcie, rx_replenish);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700356
Johannes Berg1ee158d2012-02-17 10:07:44 -0800357 iwlagn_rx_replenish(trans_pcie->trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700358}
359
Johannes Bergdf2f3212012-03-05 11:24:40 -0800360static void iwl_rx_handle_rxbuf(struct iwl_trans *trans,
361 struct iwl_rx_mem_buffer *rxb)
362{
363 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
364 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
365 struct iwl_tx_queue *txq = &trans_pcie->txq[trans->shrd->cmd_queue];
366 struct iwl_device_cmd *cmd;
367 unsigned long flags;
368 int len, err;
369 u16 sequence;
370 struct iwl_rx_cmd_buffer rxcb;
371 struct iwl_rx_packet *pkt;
372 bool reclaim;
373 int index, cmd_index;
374
375 if (WARN_ON(!rxb))
376 return;
377
378 dma_unmap_page(trans->dev, rxb->page_dma,
379 PAGE_SIZE << hw_params(trans).rx_page_order,
380 DMA_FROM_DEVICE);
381
382 rxcb._page = rxb->page;
383 pkt = rxb_addr(&rxcb);
384
385 IWL_DEBUG_RX(trans, "%s, 0x%02x\n",
386 get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
387
388
389 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
390 len += sizeof(u32); /* account for status word */
Johannes Berg6c1011e2012-03-06 13:30:48 -0800391 trace_iwlwifi_dev_rx(trans->dev, pkt, len);
Johannes Bergdf2f3212012-03-05 11:24:40 -0800392
393 /* Reclaim a command buffer only if this packet is a response
394 * to a (driver-originated) command.
395 * If the packet (e.g. Rx frame) originated from uCode,
396 * there is no command buffer to reclaim.
397 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
398 * but apparently a few don't get set; catch them here. */
399 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
400 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
401 (pkt->hdr.cmd != REPLY_RX) &&
402 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
403 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
404 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
405 (pkt->hdr.cmd != REPLY_TX);
406
407 sequence = le16_to_cpu(pkt->hdr.sequence);
408 index = SEQ_TO_INDEX(sequence);
409 cmd_index = get_cmd_index(&txq->q, index);
410
411 if (reclaim)
412 cmd = txq->cmd[cmd_index];
413 else
414 cmd = NULL;
415
416 /* warn if this is cmd response / notification and the uCode
417 * didn't set the SEQ_RX_FRAME for a frame that is
418 * uCode-originated
419 * If you saw this code after the second half of 2012, then
420 * please remove it
421 */
422 WARN(pkt->hdr.cmd != REPLY_TX && reclaim == false &&
423 (!(pkt->hdr.sequence & SEQ_RX_FRAME)),
424 "reclaim is false, SEQ_RX_FRAME unset: %s\n",
425 get_cmd_string(pkt->hdr.cmd));
426
427 err = iwl_op_mode_rx(trans->op_mode, &rxcb, cmd);
428
429 /*
430 * XXX: After here, we should always check rxcb._page
431 * against NULL before touching it or its virtual
432 * memory (pkt). Because some rx_handler might have
433 * already taken or freed the pages.
434 */
435
436 if (reclaim) {
437 /* Invoke any callbacks, transfer the buffer to caller,
438 * and fire off the (possibly) blocking
439 * iwl_trans_send_cmd()
440 * as we reclaim the driver command queue */
441 if (rxcb._page)
442 iwl_tx_cmd_complete(trans, &rxcb, err);
443 else
444 IWL_WARN(trans, "Claim null rxb?\n");
445 }
446
447 /* page was stolen from us */
448 if (rxcb._page == NULL)
449 rxb->page = NULL;
450
451 /* Reuse the page if possible. For notification packets and
452 * SKBs that fail to Rx correctly, add them back into the
453 * rx_free list for reuse later. */
454 spin_lock_irqsave(&rxq->lock, flags);
455 if (rxb->page != NULL) {
456 rxb->page_dma =
457 dma_map_page(trans->dev, rxb->page, 0,
458 PAGE_SIZE << hw_params(trans).rx_page_order,
459 DMA_FROM_DEVICE);
460 list_add_tail(&rxb->list, &rxq->rx_free);
461 rxq->free_count++;
462 } else
463 list_add_tail(&rxb->list, &rxq->rx_used);
464 spin_unlock_irqrestore(&rxq->lock, flags);
465}
466
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700467/**
468 * iwl_rx_handle - Main entry function for receiving responses from uCode
469 *
470 * Uses the priv->rx_handlers callback function array to invoke
471 * the appropriate handlers, including command responses,
472 * frame-received notifications, and other notifications.
473 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700474static void iwl_rx_handle(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700475{
Johannes Bergdf2f3212012-03-05 11:24:40 -0800476 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700477 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700478 u32 r, i;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700479 u8 fill_rx = 0;
480 u32 count = 8;
481 int total_empty;
482
483 /* uCode's read index (stored in shared DRAM) indicates the last Rx
484 * buffer that the driver may process (last buffer filled by ucode). */
485 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
486 i = rxq->read;
487
488 /* Rx interrupt, but nothing sent from uCode */
489 if (i == r)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700490 IWL_DEBUG_RX(trans, "r = %d, i = %d\n", r, i);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700491
492 /* calculate total frames need to be restock after handling RX */
493 total_empty = r - rxq->write_actual;
494 if (total_empty < 0)
495 total_empty += RX_QUEUE_SIZE;
496
497 if (total_empty > (RX_QUEUE_SIZE / 2))
498 fill_rx = 1;
499
500 while (i != r) {
Johannes Berg48a2d662012-03-05 11:24:39 -0800501 struct iwl_rx_mem_buffer *rxb;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700502
503 rxb = rxq->queue[i];
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700504 rxq->queue[i] = NULL;
505
Johannes Bergdf2f3212012-03-05 11:24:40 -0800506 IWL_DEBUG_RX(trans, "rxbuf: r = %d, i = %d (%p)\n", rxb);
Johannes Berg48a2d662012-03-05 11:24:39 -0800507
Johannes Bergdf2f3212012-03-05 11:24:40 -0800508 iwl_rx_handle_rxbuf(trans, rxb);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700509
510 i = (i + 1) & RX_QUEUE_MASK;
511 /* If there are a lot of unused frames,
512 * restock the Rx queue so ucode wont assert. */
513 if (fill_rx) {
514 count++;
515 if (count >= 8) {
516 rxq->read = i;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700517 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700518 count = 0;
519 }
520 }
521 }
522
523 /* Backtrack one entry */
524 rxq->read = i;
525 if (fill_rx)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700526 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700527 else
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700528 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700529}
530
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700531static const char * const desc_lookup_text[] = {
532 "OK",
533 "FAIL",
534 "BAD_PARAM",
535 "BAD_CHECKSUM",
536 "NMI_INTERRUPT_WDG",
537 "SYSASSERT",
538 "FATAL_ERROR",
539 "BAD_COMMAND",
540 "HW_ERROR_TUNE_LOCK",
541 "HW_ERROR_TEMPERATURE",
542 "ILLEGAL_CHAN_FREQ",
543 "VCC_NOT_STABLE",
544 "FH_ERROR",
545 "NMI_INTERRUPT_HOST",
546 "NMI_INTERRUPT_ACTION_PT",
547 "NMI_INTERRUPT_UNKNOWN",
548 "UCODE_VERSION_MISMATCH",
549 "HW_ERROR_ABS_LOCK",
550 "HW_ERROR_CAL_LOCK_FAIL",
551 "NMI_INTERRUPT_INST_ACTION_PT",
552 "NMI_INTERRUPT_DATA_ACTION_PT",
553 "NMI_TRM_HW_ER",
554 "NMI_INTERRUPT_TRM",
555 "NMI_INTERRUPT_BREAK_POINT",
556 "DEBUG_0",
557 "DEBUG_1",
558 "DEBUG_2",
559 "DEBUG_3",
560};
561
562static struct { char *name; u8 num; } advanced_lookup[] = {
563 { "NMI_INTERRUPT_WDG", 0x34 },
564 { "SYSASSERT", 0x35 },
565 { "UCODE_VERSION_MISMATCH", 0x37 },
566 { "BAD_COMMAND", 0x38 },
567 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
568 { "FATAL_ERROR", 0x3D },
569 { "NMI_TRM_HW_ERR", 0x46 },
570 { "NMI_INTERRUPT_TRM", 0x4C },
571 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
572 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
573 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
574 { "NMI_INTERRUPT_HOST", 0x66 },
575 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
576 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
577 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
578 { "ADVANCED_SYSASSERT", 0 },
579};
580
581static const char *desc_lookup(u32 num)
582{
583 int i;
584 int max = ARRAY_SIZE(desc_lookup_text);
585
586 if (num < max)
587 return desc_lookup_text[num];
588
589 max = ARRAY_SIZE(advanced_lookup) - 1;
590 for (i = 0; i < max; i++) {
591 if (advanced_lookup[i].num == num)
592 break;
593 }
594 return advanced_lookup[i].name;
595}
596
597#define ERROR_START_OFFSET (1 * sizeof(u32))
598#define ERROR_ELEM_SIZE (7 * sizeof(u32))
599
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700600static void iwl_dump_nic_error_log(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700601{
602 u32 base;
603 struct iwl_error_event_table table;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700604 struct iwl_trans_pcie *trans_pcie =
605 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700606
Don Fryae6130f2011-11-30 16:12:59 -0800607 base = trans->shrd->device_pointers.error_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800608 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700609 if (!base)
Johannes Berg0692fe42012-03-06 13:30:37 -0800610 base = trans->shrd->fw->init_errlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700611 } else {
612 if (!base)
Johannes Berg0692fe42012-03-06 13:30:37 -0800613 base = trans->shrd->fw->inst_errlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700614 }
615
616 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700617 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700618 "Not valid error log pointer 0x%08X for %s uCode\n",
619 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800620 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700621 ? "Init" : "RT");
622 return;
623 }
624
Don Fry86551122012-02-07 14:03:55 -0800625 iwl_read_targ_mem_words(trans, base, &table, sizeof(table));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700626
627 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700628 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
629 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
630 trans->shrd->status, table.valid);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700631 }
632
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700633 trans_pcie->isr_stats.err_code = table.error_id;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700634
Johannes Berg6c1011e2012-03-06 13:30:48 -0800635 trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700636 table.data1, table.data2, table.line,
637 table.blink1, table.blink2, table.ilink1,
638 table.ilink2, table.bcon_time, table.gp1,
639 table.gp2, table.gp3, table.ucode_ver,
640 table.hw_ver, table.brd_ver);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700641 IWL_ERR(trans, "0x%08X | %-28s\n", table.error_id,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700642 desc_lookup(table.error_id));
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700643 IWL_ERR(trans, "0x%08X | uPc\n", table.pc);
644 IWL_ERR(trans, "0x%08X | branchlink1\n", table.blink1);
645 IWL_ERR(trans, "0x%08X | branchlink2\n", table.blink2);
646 IWL_ERR(trans, "0x%08X | interruptlink1\n", table.ilink1);
647 IWL_ERR(trans, "0x%08X | interruptlink2\n", table.ilink2);
648 IWL_ERR(trans, "0x%08X | data1\n", table.data1);
649 IWL_ERR(trans, "0x%08X | data2\n", table.data2);
650 IWL_ERR(trans, "0x%08X | line\n", table.line);
651 IWL_ERR(trans, "0x%08X | beacon time\n", table.bcon_time);
652 IWL_ERR(trans, "0x%08X | tsf low\n", table.tsf_low);
653 IWL_ERR(trans, "0x%08X | tsf hi\n", table.tsf_hi);
654 IWL_ERR(trans, "0x%08X | time gp1\n", table.gp1);
655 IWL_ERR(trans, "0x%08X | time gp2\n", table.gp2);
656 IWL_ERR(trans, "0x%08X | time gp3\n", table.gp3);
657 IWL_ERR(trans, "0x%08X | uCode version\n", table.ucode_ver);
658 IWL_ERR(trans, "0x%08X | hw version\n", table.hw_ver);
659 IWL_ERR(trans, "0x%08X | board version\n", table.brd_ver);
660 IWL_ERR(trans, "0x%08X | hcmd\n", table.hcmd);
Wey-Yi Guyd332f592011-11-30 12:32:42 -0800661
662 IWL_ERR(trans, "0x%08X | isr0\n", table.isr0);
663 IWL_ERR(trans, "0x%08X | isr1\n", table.isr1);
664 IWL_ERR(trans, "0x%08X | isr2\n", table.isr2);
665 IWL_ERR(trans, "0x%08X | isr3\n", table.isr3);
666 IWL_ERR(trans, "0x%08X | isr4\n", table.isr4);
667 IWL_ERR(trans, "0x%08X | isr_pref\n", table.isr_pref);
668 IWL_ERR(trans, "0x%08X | wait_event\n", table.wait_event);
669 IWL_ERR(trans, "0x%08X | l2p_control\n", table.l2p_control);
670 IWL_ERR(trans, "0x%08X | l2p_duration\n", table.l2p_duration);
671 IWL_ERR(trans, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
672 IWL_ERR(trans, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
673 IWL_ERR(trans, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
674 IWL_ERR(trans, "0x%08X | timestamp\n", table.u_timestamp);
675 IWL_ERR(trans, "0x%08X | flow_handler\n", table.flow_handler);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700676}
677
678/**
679 * iwl_irq_handle_error - called for HW or SW error interrupt from card
680 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700681static void iwl_irq_handle_error(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700682{
683 /* W/A for WiFi/WiMAX coex and WiMAX own the RF */
Emmanuel Grumbachff6e75c2012-02-12 15:21:08 +0200684 if (cfg(trans)->internal_wimax_coex &&
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200685 (!(iwl_read_prph(trans, APMG_CLK_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700686 APMS_CLK_VAL_MRB_FUNC_MODE) ||
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200687 (iwl_read_prph(trans, APMG_PS_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700688 APMG_PS_CTRL_VAL_RESET_REQ))) {
689 /*
690 * Keep the restart process from trying to send host
691 * commands by clearing the ready bit.
692 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700693 clear_bit(STATUS_READY, &trans->shrd->status);
694 clear_bit(STATUS_HCMD_ACTIVE, &trans->shrd->status);
Emmanuel Grumbachff6e75c2012-02-12 15:21:08 +0200695 wake_up(&trans->shrd->wait_command_queue);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700696 IWL_ERR(trans, "RF is used by WiMAX\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700697 return;
698 }
699
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700700 IWL_ERR(trans, "Loaded firmware version: %s\n",
Johannes Berg0692fe42012-03-06 13:30:37 -0800701 trans->shrd->fw->fw_version);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700702
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700703 iwl_dump_nic_error_log(trans);
704 iwl_dump_csr(trans);
705 iwl_dump_fh(trans, NULL, false);
706 iwl_dump_nic_event_log(trans, false, NULL, false);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700707
Emmanuel Grumbachbcb93212012-02-09 16:08:15 +0200708 iwl_op_mode_nic_error(trans->op_mode);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700709}
710
711#define EVENT_START_OFFSET (4 * sizeof(u32))
712
713/**
714 * iwl_print_event_log - Dump error event log to syslog
715 *
716 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700717static int iwl_print_event_log(struct iwl_trans *trans, u32 start_idx,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700718 u32 num_events, u32 mode,
719 int pos, char **buf, size_t bufsz)
720{
721 u32 i;
722 u32 base; /* SRAM byte address of event log header */
723 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
724 u32 ptr; /* SRAM byte address of log data */
725 u32 ev, time, data; /* event log data */
726 unsigned long reg_flags;
727
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)
Johannes Berg0692fe42012-03-06 13:30:37 -0800734 base = trans->shrd->fw->init_evtlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700735 } else {
736 if (!base)
Johannes Berg0692fe42012-03-06 13:30:37 -0800737 base = trans->shrd->fw->inst_evtlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700738 }
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 Grumbach1042db22012-01-03 16:56:15 +0200748 spin_lock_irqsave(&trans->reg_lock, reg_flags);
749 iwl_grab_nic_access(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700750
751 /* Set starting address; reads will auto-increment */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200752 iwl_write32(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 Grumbach1042db22012-01-03 16:56:15 +0200758 ev = iwl_read32(trans, HBUS_TARG_MEM_RDAT);
759 time = iwl_read32(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 {
Johannes Berg6c1011e2012-03-06 13:30:48 -0800767 trace_iwlwifi_dev_ucode_event(trans->dev, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700768 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 Grumbach1042db22012-01-03 16:56:15 +0200773 data = iwl_read32(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);
Johannes Berg6c1011e2012-03-06 13:30:48 -0800781 trace_iwlwifi_dev_ucode_event(trans->dev, time,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700782 data, ev);
783 }
784 }
785 }
786
787 /* Allow device to power down */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200788 iwl_release_nic_access(trans);
789 spin_unlock_irqrestore(&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;
843
Don Fryae6130f2011-11-30 16:12:59 -0800844 base = trans->shrd->device_pointers.log_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800845 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Johannes Berg0692fe42012-03-06 13:30:37 -0800846 logsize = trans->shrd->fw->init_evtlog_size;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700847 if (!base)
Johannes Berg0692fe42012-03-06 13:30:37 -0800848 base = trans->shrd->fw->init_evtlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700849 } else {
Johannes Berg0692fe42012-03-06 13:30:37 -0800850 logsize = trans->shrd->fw->inst_evtlog_size;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700851 if (!base)
Johannes Berg0692fe42012-03-06 13:30:37 -0800852 base = trans->shrd->fw->inst_evtlog_ptr;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700853 }
854
855 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700856 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700857 "Invalid event log pointer 0x%08X for %s uCode\n",
858 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800859 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700860 ? "Init" : "RT");
861 return -EINVAL;
862 }
863
864 /* event log header */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200865 capacity = iwl_read_targ_mem(trans, base);
866 mode = iwl_read_targ_mem(trans, base + (1 * sizeof(u32)));
867 num_wraps = iwl_read_targ_mem(trans, base + (2 * sizeof(u32)));
868 next_entry = iwl_read_targ_mem(trans, base + (3 * sizeof(u32)));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700869
870 if (capacity > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700871 IWL_ERR(trans, "Log capacity %d is bogus, limit to %d "
872 "entries\n", capacity, logsize);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700873 capacity = logsize;
874 }
875
876 if (next_entry > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700877 IWL_ERR(trans, "Log write index %d is bogus, limit to %d\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700878 next_entry, logsize);
879 next_entry = logsize;
880 }
881
882 size = num_wraps ? capacity : next_entry;
883
884 /* bail out if nothing in log */
885 if (size == 0) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700886 IWL_ERR(trans, "Start IWL Event Log Dump: nothing in log\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700887 return pos;
888 }
889
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700890#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berga8bceb32012-03-05 11:24:30 -0800891 if (!(iwl_have_debug_level(IWL_DL_FW_ERRORS)) && !full_log)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700892 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
893 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
894#else
895 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
896 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
897#endif
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700898 IWL_ERR(trans, "Start IWL Event Log Dump: display last %u entries\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700899 size);
900
901#ifdef CONFIG_IWLWIFI_DEBUG
902 if (display) {
903 if (full_log)
904 bufsz = capacity * 48;
905 else
906 bufsz = size * 48;
907 *buf = kmalloc(bufsz, GFP_KERNEL);
908 if (!*buf)
909 return -ENOMEM;
910 }
Johannes Berga8bceb32012-03-05 11:24:30 -0800911 if (iwl_have_debug_level(IWL_DL_FW_ERRORS) || full_log) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700912 /*
913 * if uCode has wrapped back to top of log,
914 * start at the oldest entry,
915 * i.e the next one that uCode would fill.
916 */
917 if (num_wraps)
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700918 pos = iwl_print_event_log(trans, next_entry,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700919 capacity - next_entry, mode,
920 pos, buf, bufsz);
921 /* (then/else) start at top of log */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700922 pos = iwl_print_event_log(trans, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700923 next_entry, mode, pos, buf, bufsz);
924 } else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700925 pos = iwl_print_last_event_logs(trans, capacity, num_wraps,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700926 next_entry, size, mode,
927 pos, buf, bufsz);
928#else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700929 pos = iwl_print_last_event_logs(trans, capacity, num_wraps,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700930 next_entry, size, mode,
931 pos, buf, bufsz);
932#endif
933 return pos;
934}
935
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700936/* tasklet for iwlagn interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700937void iwl_irq_tasklet(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700938{
939 u32 inta = 0;
940 u32 handled = 0;
941 unsigned long flags;
942 u32 i;
943#ifdef CONFIG_IWLWIFI_DEBUG
944 u32 inta_mask;
945#endif
946
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700947 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700948 struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
949
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700950
Johannes Berg7b114882012-02-05 13:55:11 -0800951 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700952
953 /* Ack/clear/reset pending uCode interrupts.
954 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
955 */
956 /* There is a hardware bug in the interrupt mask function that some
957 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
958 * they are disabled in the CSR_INT_MASK register. Furthermore the
959 * ICT interrupt handling mechanism has another bug that might cause
960 * these unmasked interrupts fail to be detected. We workaround the
961 * hardware bugs here by ACKing all the possible interrupts so that
962 * interrupt coalescing can still be achieved.
963 */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200964 iwl_write32(trans, CSR_INT,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700965 trans_pcie->inta | ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700966
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700967 inta = trans_pcie->inta;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700968
969#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berga8bceb32012-03-05 11:24:30 -0800970 if (iwl_have_debug_level(IWL_DL_ISR)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700971 /* just for debug */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200972 inta_mask = iwl_read32(trans, CSR_INT_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700973 IWL_DEBUG_ISR(trans, "inta 0x%08x, enabled 0x%08x\n ",
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700974 inta, inta_mask);
975 }
976#endif
977
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700978 /* saved interrupt in inta variable now we can reset trans_pcie->inta */
979 trans_pcie->inta = 0;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700980
Johannes Berg7b114882012-02-05 13:55:11 -0800981 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Johannes Bergb49ba042012-01-19 08:20:57 -0800982
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700983 /* Now service all interrupt bits discovered above. */
984 if (inta & CSR_INT_BIT_HW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700985 IWL_ERR(trans, "Hardware error detected. Restarting.\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700986
987 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700988 iwl_disable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700989
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700990 isr_stats->hw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700991 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700992
993 handled |= CSR_INT_BIT_HW_ERR;
994
995 return;
996 }
997
998#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berga8bceb32012-03-05 11:24:30 -0800999 if (iwl_have_debug_level(IWL_DL_ISR)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001000 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1001 if (inta & CSR_INT_BIT_SCD) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001002 IWL_DEBUG_ISR(trans, "Scheduler finished to transmit "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001003 "the frame/frames.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001004 isr_stats->sch++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001005 }
1006
1007 /* Alive notification via Rx interrupt will do the real work */
1008 if (inta & CSR_INT_BIT_ALIVE) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001009 IWL_DEBUG_ISR(trans, "Alive interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001010 isr_stats->alive++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001011 }
1012 }
1013#endif
1014 /* Safely ignore these bits for debug checks below */
1015 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1016
1017 /* HW RF KILL switch toggled */
1018 if (inta & CSR_INT_BIT_RF_KILL) {
Johannes Bergc9eec952012-03-06 13:30:43 -08001019 bool hw_rfkill;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001020
Johannes Bergc9eec952012-03-06 13:30:43 -08001021 hw_rfkill = !(iwl_read32(trans, CSR_GP_CNTRL) &
1022 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001023 IWL_WARN(trans, "RF_KILL bit toggled to %s.\n",
Johannes Bergc9eec952012-03-06 13:30:43 -08001024 hw_rfkill ? "disable radio" : "enable radio");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001025
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001026 isr_stats->rfkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001027
Johannes Bergc9eec952012-03-06 13:30:43 -08001028 iwl_op_mode_hw_rf_kill(trans->op_mode, hw_rfkill);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001029
1030 handled |= CSR_INT_BIT_RF_KILL;
1031 }
1032
1033 /* Chip got too hot and stopped itself */
1034 if (inta & CSR_INT_BIT_CT_KILL) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001035 IWL_ERR(trans, "Microcode CT kill error detected.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001036 isr_stats->ctkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001037 handled |= CSR_INT_BIT_CT_KILL;
1038 }
1039
1040 /* Error detected by uCode */
1041 if (inta & CSR_INT_BIT_SW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001042 IWL_ERR(trans, "Microcode SW error detected. "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001043 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001044 isr_stats->sw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -07001045 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001046 handled |= CSR_INT_BIT_SW_ERR;
1047 }
1048
1049 /* uCode wakes up after power-down sleep */
1050 if (inta & CSR_INT_BIT_WAKEUP) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001051 IWL_DEBUG_ISR(trans, "Wakeup interrupt\n");
1052 iwl_rx_queue_update_write_ptr(trans, &trans_pcie->rxq);
1053 for (i = 0; i < hw_params(trans).max_txq_num; i++)
Emmanuel Grumbachfd656932011-08-25 23:11:19 -07001054 iwl_txq_update_write_ptr(trans,
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001055 &trans_pcie->txq[i]);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001056
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001057 isr_stats->wakeup++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001058
1059 handled |= CSR_INT_BIT_WAKEUP;
1060 }
1061
1062 /* All uCode command responses, including Tx command responses,
1063 * Rx "responses" (frame-received notification), and other
1064 * notifications from uCode come through here*/
1065 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1066 CSR_INT_BIT_RX_PERIODIC)) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001067 IWL_DEBUG_ISR(trans, "Rx interrupt\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001068 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1069 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001070 iwl_write32(trans, CSR_FH_INT_STATUS,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001071 CSR_FH_INT_RX_MASK);
1072 }
1073 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1074 handled |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001075 iwl_write32(trans,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001076 CSR_INT, CSR_INT_BIT_RX_PERIODIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001077 }
1078 /* Sending RX interrupt require many steps to be done in the
1079 * the device:
1080 * 1- write interrupt to current index in ICT table.
1081 * 2- dma RX frame.
1082 * 3- update RX shared data to indicate last write index.
1083 * 4- send interrupt.
1084 * This could lead to RX race, driver could receive RX interrupt
1085 * but the shared data changes does not reflect this;
1086 * periodic interrupt will detect any dangling Rx activity.
1087 */
1088
1089 /* Disable periodic interrupt; we use it as just a one-shot. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001090 iwl_write8(trans, CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001091 CSR_INT_PERIODIC_DIS);
Gregory Greenmana5916972012-01-10 19:22:56 +02001092#ifdef CONFIG_IWLWIFI_IDI
1093 iwl_amfh_rx_handler();
1094#else
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001095 iwl_rx_handle(trans);
Gregory Greenmana5916972012-01-10 19:22:56 +02001096#endif
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001097 /*
1098 * Enable periodic interrupt in 8 msec only if we received
1099 * real RX interrupt (instead of just periodic int), to catch
1100 * any dangling Rx interrupt. If it was just the periodic
1101 * interrupt, there was no dangling Rx activity, and no need
1102 * to extend the periodic interrupt; one-shot is enough.
1103 */
1104 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001105 iwl_write8(trans, CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001106 CSR_INT_PERIODIC_ENA);
1107
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001108 isr_stats->rx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001109 }
1110
1111 /* This "Tx" DMA channel is used only for loading uCode */
1112 if (inta & CSR_INT_BIT_FH_TX) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001113 iwl_write32(trans, CSR_FH_INT_STATUS, CSR_FH_INT_TX_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001114 IWL_DEBUG_ISR(trans, "uCode load interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001115 isr_stats->tx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001116 handled |= CSR_INT_BIT_FH_TX;
1117 /* Wake up uCode load routine, now that load is complete */
Don Fry5703ddb2011-11-10 06:55:07 -08001118 trans->ucode_write_complete = 1;
Johannes Bergeffd4d92011-09-15 11:46:52 -07001119 wake_up(&trans->shrd->wait_command_queue);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001120 }
1121
1122 if (inta & ~handled) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001123 IWL_ERR(trans, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001124 isr_stats->unhandled++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001125 }
1126
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001127 if (inta & ~(trans_pcie->inta_mask)) {
1128 IWL_WARN(trans, "Disabled INTA bits 0x%08x were pending\n",
1129 inta & ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001130 }
1131
1132 /* Re-enable all interrupts */
1133 /* only Re-enable if disabled by irq */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001134 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status))
1135 iwl_enable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001136 /* Re-enable RF_KILL if it occurred */
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +02001137 else if (handled & CSR_INT_BIT_RF_KILL) {
1138 IWL_DEBUG_ISR(trans, "Enabling rfkill interrupt\n");
1139 iwl_write32(trans, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
1140 }
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001141}
1142
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001143/******************************************************************************
1144 *
1145 * ICT functions
1146 *
1147 ******************************************************************************/
Johannes Berg10667132011-12-19 14:00:59 -08001148
1149/* a device (PCI-E) page is 4096 bytes long */
1150#define ICT_SHIFT 12
1151#define ICT_SIZE (1 << ICT_SHIFT)
1152#define ICT_COUNT (ICT_SIZE / sizeof(u32))
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001153
1154/* Free dram table */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001155void iwl_free_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001156{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001157 struct iwl_trans_pcie *trans_pcie =
1158 IWL_TRANS_GET_PCIE_TRANS(trans);
1159
Johannes Berg10667132011-12-19 14:00:59 -08001160 if (trans_pcie->ict_tbl) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001161 dma_free_coherent(trans->dev, ICT_SIZE,
Johannes Berg10667132011-12-19 14:00:59 -08001162 trans_pcie->ict_tbl,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001163 trans_pcie->ict_tbl_dma);
Johannes Berg10667132011-12-19 14:00:59 -08001164 trans_pcie->ict_tbl = NULL;
1165 trans_pcie->ict_tbl_dma = 0;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001166 }
1167}
1168
1169
Johannes Berg10667132011-12-19 14:00:59 -08001170/*
1171 * allocate dram shared table, it is an aligned memory
1172 * block of ICT_SIZE.
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001173 * also reset all data related to ICT table interrupt.
1174 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001175int iwl_alloc_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001176{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001177 struct iwl_trans_pcie *trans_pcie =
1178 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001179
Johannes Berg10667132011-12-19 14:00:59 -08001180 trans_pcie->ict_tbl =
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001181 dma_alloc_coherent(trans->dev, ICT_SIZE,
Johannes Berg10667132011-12-19 14:00:59 -08001182 &trans_pcie->ict_tbl_dma,
1183 GFP_KERNEL);
1184 if (!trans_pcie->ict_tbl)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001185 return -ENOMEM;
1186
Johannes Berg10667132011-12-19 14:00:59 -08001187 /* just an API sanity check ... it is guaranteed to be aligned */
1188 if (WARN_ON(trans_pcie->ict_tbl_dma & (ICT_SIZE - 1))) {
1189 iwl_free_isr_ict(trans);
1190 return -EINVAL;
1191 }
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001192
Johannes Berg10667132011-12-19 14:00:59 -08001193 IWL_DEBUG_ISR(trans, "ict dma addr %Lx\n",
1194 (unsigned long long)trans_pcie->ict_tbl_dma);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001195
Johannes Berg10667132011-12-19 14:00:59 -08001196 IWL_DEBUG_ISR(trans, "ict vir addr %p\n", trans_pcie->ict_tbl);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001197
1198 /* reset table and index to all 0 */
Johannes Berg10667132011-12-19 14:00:59 -08001199 memset(trans_pcie->ict_tbl, 0, ICT_SIZE);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001200 trans_pcie->ict_index = 0;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001201
1202 /* add periodic RX interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001203 trans_pcie->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001204 return 0;
1205}
1206
1207/* Device is going up inform it about using ICT interrupt table,
1208 * also we need to tell the driver to start using ICT interrupt.
1209 */
Emmanuel Grumbached6a3802012-01-02 16:10:08 +02001210void iwl_reset_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001211{
1212 u32 val;
1213 unsigned long flags;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001214 struct iwl_trans_pcie *trans_pcie =
1215 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001216
Johannes Berg10667132011-12-19 14:00:59 -08001217 if (!trans_pcie->ict_tbl)
Emmanuel Grumbached6a3802012-01-02 16:10:08 +02001218 return;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001219
Johannes Berg7b114882012-02-05 13:55:11 -08001220 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001221 iwl_disable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001222
Johannes Berg10667132011-12-19 14:00:59 -08001223 memset(trans_pcie->ict_tbl, 0, ICT_SIZE);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001224
Johannes Berg10667132011-12-19 14:00:59 -08001225 val = trans_pcie->ict_tbl_dma >> ICT_SHIFT;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001226
1227 val |= CSR_DRAM_INT_TBL_ENABLE;
1228 val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1229
Johannes Berg10667132011-12-19 14:00:59 -08001230 IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%x\n", val);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001231
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001232 iwl_write32(trans, CSR_DRAM_INT_TBL_REG, val);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001233 trans_pcie->use_ict = true;
1234 trans_pcie->ict_index = 0;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001235 iwl_write32(trans, CSR_INT, trans_pcie->inta_mask);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001236 iwl_enable_interrupts(trans);
Johannes Berg7b114882012-02-05 13:55:11 -08001237 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001238}
1239
1240/* Device is going down disable ict interrupt usage */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001241void iwl_disable_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001242{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001243 struct iwl_trans_pcie *trans_pcie =
1244 IWL_TRANS_GET_PCIE_TRANS(trans);
1245
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001246 unsigned long flags;
1247
Johannes Berg7b114882012-02-05 13:55:11 -08001248 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001249 trans_pcie->use_ict = false;
Johannes Berg7b114882012-02-05 13:55:11 -08001250 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001251}
1252
1253static irqreturn_t iwl_isr(int irq, void *data)
1254{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001255 struct iwl_trans *trans = data;
1256 struct iwl_trans_pcie *trans_pcie;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001257 u32 inta, inta_mask;
1258 unsigned long flags;
1259#ifdef CONFIG_IWLWIFI_DEBUG
1260 u32 inta_fh;
1261#endif
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001262 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001263 return IRQ_NONE;
1264
Johannes Berg6c1011e2012-03-06 13:30:48 -08001265 trace_iwlwifi_dev_irq(trans->dev);
Johannes Bergb80667e2011-12-09 07:26:13 -08001266
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001267 trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1268
Johannes Berg7b114882012-02-05 13:55:11 -08001269 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001270
1271 /* Disable (but don't clear!) interrupts here to avoid
1272 * back-to-back ISRs and sporadic interrupts from our NIC.
1273 * If we have something to service, the tasklet will re-enable ints.
1274 * If we *don't* have something, we'll re-enable before leaving here. */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001275 inta_mask = iwl_read32(trans, CSR_INT_MASK); /* just for debug */
1276 iwl_write32(trans, CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001277
1278 /* Discover which interrupts are active/pending */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001279 inta = iwl_read32(trans, CSR_INT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001280
1281 /* Ignore interrupt if there's nothing in NIC to service.
1282 * This may be due to IRQ shared with another device,
1283 * or due to sporadic interrupts thrown from our NIC. */
1284 if (!inta) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001285 IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n");
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001286 goto none;
1287 }
1288
1289 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
1290 /* Hardware disappeared. It might have already raised
1291 * an interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001292 IWL_WARN(trans, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001293 goto unplugged;
1294 }
1295
1296#ifdef CONFIG_IWLWIFI_DEBUG
Johannes Berga8bceb32012-03-05 11:24:30 -08001297 if (iwl_have_debug_level(IWL_DL_ISR)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001298 inta_fh = iwl_read32(trans, CSR_FH_INT_STATUS);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001299 IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x, "
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001300 "fh 0x%08x\n", inta, inta_mask, inta_fh);
1301 }
1302#endif
1303
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001304 trans_pcie->inta |= inta;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001305 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1306 if (likely(inta))
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001307 tasklet_schedule(&trans_pcie->irq_tasklet);
1308 else if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1309 !trans_pcie->inta)
1310 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001311
1312 unplugged:
Johannes Berg7b114882012-02-05 13:55:11 -08001313 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001314 return IRQ_HANDLED;
1315
1316 none:
1317 /* re-enable interrupts here since we don't have anything to service. */
1318 /* only Re-enable if disabled by irq and no schedules tasklet. */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001319 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1320 !trans_pcie->inta)
1321 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001322
Johannes Berg7b114882012-02-05 13:55:11 -08001323 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001324 return IRQ_NONE;
1325}
1326
1327/* interrupt handler using ict table, with this interrupt driver will
1328 * stop using INTA register to get device's interrupt, reading this register
1329 * is expensive, device will write interrupts in ICT dram table, increment
1330 * index then will fire interrupt to driver, driver will OR all ICT table
1331 * entries from current index up to table entry with 0 value. the result is
1332 * the interrupt we need to service, driver will set the entries back to 0 and
1333 * set index.
1334 */
1335irqreturn_t iwl_isr_ict(int irq, void *data)
1336{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001337 struct iwl_trans *trans = data;
1338 struct iwl_trans_pcie *trans_pcie;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001339 u32 inta, inta_mask;
1340 u32 val = 0;
Johannes Bergb80667e2011-12-09 07:26:13 -08001341 u32 read;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001342 unsigned long flags;
1343
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001344 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001345 return IRQ_NONE;
1346
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001347 trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1348
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001349 /* dram interrupt table not set yet,
1350 * use legacy interrupt.
1351 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001352 if (!trans_pcie->use_ict)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001353 return iwl_isr(irq, data);
1354
Johannes Berg6c1011e2012-03-06 13:30:48 -08001355 trace_iwlwifi_dev_irq(trans->dev);
Johannes Bergb80667e2011-12-09 07:26:13 -08001356
Johannes Berg7b114882012-02-05 13:55:11 -08001357 spin_lock_irqsave(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001358
1359 /* Disable (but don't clear!) interrupts here to avoid
1360 * back-to-back ISRs and sporadic interrupts from our NIC.
1361 * If we have something to service, the tasklet will re-enable ints.
1362 * If we *don't* have something, we'll re-enable before leaving here.
1363 */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +02001364 inta_mask = iwl_read32(trans, CSR_INT_MASK); /* just for debug */
1365 iwl_write32(trans, CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001366
1367
1368 /* Ignore interrupt if there's nothing in NIC to service.
1369 * This may be due to IRQ shared with another device,
1370 * or due to sporadic interrupts thrown from our NIC. */
Johannes Bergb80667e2011-12-09 07:26:13 -08001371 read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]);
Johannes Berg6c1011e2012-03-06 13:30:48 -08001372 trace_iwlwifi_dev_ict_read(trans->dev, trans_pcie->ict_index, read);
Johannes Bergb80667e2011-12-09 07:26:13 -08001373 if (!read) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001374 IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n");
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001375 goto none;
1376 }
1377
Johannes Bergb80667e2011-12-09 07:26:13 -08001378 /*
1379 * Collect all entries up to the first 0, starting from ict_index;
1380 * note we already read at ict_index.
1381 */
1382 do {
1383 val |= read;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001384 IWL_DEBUG_ISR(trans, "ICT index %d value 0x%08X\n",
Johannes Bergb80667e2011-12-09 07:26:13 -08001385 trans_pcie->ict_index, read);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001386 trans_pcie->ict_tbl[trans_pcie->ict_index] = 0;
1387 trans_pcie->ict_index =
1388 iwl_queue_inc_wrap(trans_pcie->ict_index, ICT_COUNT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001389
Johannes Bergb80667e2011-12-09 07:26:13 -08001390 read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]);
Johannes Berg6c1011e2012-03-06 13:30:48 -08001391 trace_iwlwifi_dev_ict_read(trans->dev, trans_pcie->ict_index,
Johannes Bergb80667e2011-12-09 07:26:13 -08001392 read);
1393 } while (read);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001394
1395 /* We should not get this value, just ignore it. */
1396 if (val == 0xffffffff)
1397 val = 0;
1398
1399 /*
1400 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit
1401 * (bit 15 before shifting it to 31) to clear when using interrupt
1402 * coalescing. fortunately, bits 18 and 19 stay set when this happens
1403 * so we use them to decide on the real state of the Rx bit.
1404 * In order words, bit 15 is set if bit 18 or bit 19 are set.
1405 */
1406 if (val & 0xC0000)
1407 val |= 0x8000;
1408
1409 inta = (0xff & val) | ((0xff00 & val) << 16);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001410 IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001411 inta, inta_mask, val);
1412
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001413 inta &= trans_pcie->inta_mask;
1414 trans_pcie->inta |= inta;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001415
1416 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1417 if (likely(inta))
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001418 tasklet_schedule(&trans_pcie->irq_tasklet);
1419 else if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
Johannes Bergb80667e2011-12-09 07:26:13 -08001420 !trans_pcie->inta) {
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001421 /* Allow interrupt if was disabled by this handler and
1422 * no tasklet was schedules, We should not enable interrupt,
1423 * tasklet will enable it.
1424 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001425 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001426 }
1427
Johannes Berg7b114882012-02-05 13:55:11 -08001428 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001429 return IRQ_HANDLED;
1430
1431 none:
1432 /* re-enable interrupts here since we don't have anything to service.
1433 * only Re-enable if disabled by irq.
1434 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001435 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
Johannes Bergb80667e2011-12-09 07:26:13 -08001436 !trans_pcie->inta)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001437 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001438
Johannes Berg7b114882012-02-05 13:55:11 -08001439 spin_unlock_irqrestore(&trans_pcie->irq_lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001440 return IRQ_NONE;
1441}