blob: a0d43d6636f38df0f89459d9671e84dbfe104ec8 [file] [log] [blame]
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
4 *
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
38/******************************************************************************
39 *
40 * RX path functions
41 *
42 ******************************************************************************/
43
44/*
45 * Rx theory of operation
46 *
47 * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs),
48 * each of which point to Receive Buffers to be filled by the NIC. These get
49 * used not only for Rx frames, but for any command response or notification
50 * from the NIC. The driver and NIC manage the Rx buffers by means
51 * of indexes into the circular buffer.
52 *
53 * Rx Queue Indexes
54 * The host/firmware share two index registers for managing the Rx buffers.
55 *
56 * The READ index maps to the first position that the firmware may be writing
57 * to -- the driver can read up to (but not including) this position and get
58 * good data.
59 * The READ index is managed by the firmware once the card is enabled.
60 *
61 * The WRITE index maps to the last position the driver has read from -- the
62 * position preceding WRITE is the last slot the firmware can place a packet.
63 *
64 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
65 * WRITE = READ.
66 *
67 * During initialization, the host sets up the READ queue position to the first
68 * INDEX position, and WRITE to the last (READ - 1 wrapped)
69 *
70 * When the firmware places a packet in a buffer, it will advance the READ index
71 * and fire the RX interrupt. The driver can then query the READ index and
72 * process as many packets as possible, moving the WRITE index forward as it
73 * resets the Rx queue buffers with new memory.
74 *
75 * The management in the driver is as follows:
76 * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free. When
77 * iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
78 * to replenish the iwl->rxq->rx_free.
79 * + In iwl_rx_replenish (scheduled) if 'processed' != 'read' then the
80 * iwl->rxq is replenished and the READ INDEX is updated (updating the
81 * 'processed' and 'read' driver indexes as well)
82 * + A received packet is processed and handed to the kernel network stack,
83 * detached from the iwl->rxq. The driver 'processed' index is updated.
84 * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free
85 * list. If there are no allocated buffers in iwl->rxq->rx_free, the READ
86 * INDEX is not incremented and iwl->status(RX_STALLED) is set. If there
87 * were enough free buffers and RX_STALLED is set it is cleared.
88 *
89 *
90 * Driver sequence:
91 *
92 * iwl_rx_queue_alloc() Allocates rx_free
93 * iwl_rx_replenish() Replenishes rx_free list from rx_used, and calls
94 * iwl_rx_queue_restock
95 * iwl_rx_queue_restock() Moves available buffers from rx_free into Rx
96 * queue, updates firmware pointers, and updates
97 * the WRITE index. If insufficient rx_free buffers
98 * are available, schedules iwl_rx_replenish
99 *
100 * -- enable interrupts --
101 * ISR - iwl_rx() Detach iwl_rx_mem_buffers from pool up to the
102 * READ INDEX, detaching the SKB from the pool.
103 * Moves the packet buffer from queue to rx_used.
104 * Calls iwl_rx_queue_restock to refill any empty
105 * slots.
106 * ...
107 *
108 */
109
110/**
111 * iwl_rx_queue_space - Return number of free slots available in queue.
112 */
113static int iwl_rx_queue_space(const struct iwl_rx_queue *q)
114{
115 int s = q->read - q->write;
116 if (s <= 0)
117 s += RX_QUEUE_SIZE;
118 /* keep some buffer to not confuse full and empty queue */
119 s -= 2;
120 if (s < 0)
121 s = 0;
122 return s;
123}
124
125/**
126 * iwl_rx_queue_update_write_ptr - Update the write pointer for the RX queue
127 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700128void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700129 struct iwl_rx_queue *q)
130{
131 unsigned long flags;
132 u32 reg;
133
134 spin_lock_irqsave(&q->lock, flags);
135
136 if (q->need_update == 0)
137 goto exit_unlock;
138
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700139 if (hw_params(trans).shadow_reg_enable) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700140 /* shadow register enabled */
141 /* Device expects a multiple of 8 */
142 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700143 iwl_write32(bus(trans), FH_RSCSR_CHNL0_WPTR, q->write_actual);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700144 } else {
145 /* If power-saving is in use, make sure device is awake */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700146 if (test_bit(STATUS_POWER_PMI, &trans->shrd->status)) {
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700147 reg = iwl_read32(bus(trans), CSR_UCODE_DRV_GP1);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700148
149 if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700150 IWL_DEBUG_INFO(trans,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700151 "Rx queue requesting wakeup,"
152 " GP1 = 0x%x\n", reg);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700153 iwl_set_bit(bus(trans), CSR_GP_CNTRL,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700154 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
155 goto exit_unlock;
156 }
157
158 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700159 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700160 q->write_actual);
161
162 /* Else device is assumed to be awake */
163 } else {
164 /* Device expects a multiple of 8 */
165 q->write_actual = (q->write & ~0x7);
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700166 iwl_write_direct32(bus(trans), FH_RSCSR_CHNL0_WPTR,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700167 q->write_actual);
168 }
169 }
170 q->need_update = 0;
171
172 exit_unlock:
173 spin_unlock_irqrestore(&q->lock, flags);
174}
175
176/**
177 * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr
178 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700179static inline __le32 iwlagn_dma_addr2rbd_ptr(dma_addr_t dma_addr)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700180{
181 return cpu_to_le32((u32)(dma_addr >> 8));
182}
183
184/**
185 * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool
186 *
187 * If there are slots in the RX queue that need to be restocked,
188 * and we have free pre-allocated buffers, fill the ranks as much
189 * as we can, pulling from rx_free.
190 *
191 * This moves the 'write' index forward to catch up with 'processed', and
192 * also updates the memory address in the firmware to reference the new
193 * target buffer.
194 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700195static void iwlagn_rx_queue_restock(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700196{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700197 struct iwl_trans_pcie *trans_pcie =
198 IWL_TRANS_GET_PCIE_TRANS(trans);
199
200 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700201 struct list_head *element;
202 struct iwl_rx_mem_buffer *rxb;
203 unsigned long flags;
204
205 spin_lock_irqsave(&rxq->lock, flags);
206 while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
207 /* The overwritten rxb must be a used one */
208 rxb = rxq->queue[rxq->write];
209 BUG_ON(rxb && rxb->page);
210
211 /* Get next free Rx buffer, remove from free list */
212 element = rxq->rx_free.next;
213 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
214 list_del(element);
215
216 /* Point to Rx buffer via next RBD in circular buffer */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700217 rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(rxb->page_dma);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700218 rxq->queue[rxq->write] = rxb;
219 rxq->write = (rxq->write + 1) & RX_QUEUE_MASK;
220 rxq->free_count--;
221 }
222 spin_unlock_irqrestore(&rxq->lock, flags);
223 /* If the pre-allocated buffer pool is dropping low, schedule to
224 * refill it */
225 if (rxq->free_count <= RX_LOW_WATERMARK)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700226 queue_work(trans->shrd->workqueue, &trans_pcie->rx_replenish);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700227
228
229 /* If we've added more space for the firmware to place data, tell it.
230 * Increment device's write pointer in multiples of 8. */
231 if (rxq->write_actual != (rxq->write & ~0x7)) {
232 spin_lock_irqsave(&rxq->lock, flags);
233 rxq->need_update = 1;
234 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700235 iwl_rx_queue_update_write_ptr(trans, rxq);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700236 }
237}
238
239/**
240 * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free
241 *
242 * When moving to rx_free an SKB is allocated for the slot.
243 *
244 * Also restock the Rx queue via iwl_rx_queue_restock.
245 * This is called as a scheduled work item (except for during initialization)
246 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700247static void iwlagn_rx_allocate(struct iwl_trans *trans, gfp_t priority)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700248{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700249 struct iwl_trans_pcie *trans_pcie =
250 IWL_TRANS_GET_PCIE_TRANS(trans);
251
252 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700253 struct list_head *element;
254 struct iwl_rx_mem_buffer *rxb;
255 struct page *page;
256 unsigned long flags;
257 gfp_t gfp_mask = priority;
258
259 while (1) {
260 spin_lock_irqsave(&rxq->lock, flags);
261 if (list_empty(&rxq->rx_used)) {
262 spin_unlock_irqrestore(&rxq->lock, flags);
263 return;
264 }
265 spin_unlock_irqrestore(&rxq->lock, flags);
266
267 if (rxq->free_count > RX_LOW_WATERMARK)
268 gfp_mask |= __GFP_NOWARN;
269
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700270 if (hw_params(trans).rx_page_order > 0)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700271 gfp_mask |= __GFP_COMP;
272
273 /* Alloc a new receive buffer */
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700274 page = alloc_pages(gfp_mask,
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700275 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700276 if (!page) {
277 if (net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700278 IWL_DEBUG_INFO(trans, "alloc_pages failed, "
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700279 "order: %d\n",
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700280 hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700281
282 if ((rxq->free_count <= RX_LOW_WATERMARK) &&
283 net_ratelimit())
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700284 IWL_CRIT(trans, "Failed to alloc_pages with %s."
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700285 "Only %u free buffers remaining.\n",
286 priority == GFP_ATOMIC ?
287 "GFP_ATOMIC" : "GFP_KERNEL",
288 rxq->free_count);
289 /* We don't reschedule replenish work here -- we will
290 * call the restock method and if it still needs
291 * more buffers it will schedule replenish */
292 return;
293 }
294
295 spin_lock_irqsave(&rxq->lock, flags);
296
297 if (list_empty(&rxq->rx_used)) {
298 spin_unlock_irqrestore(&rxq->lock, flags);
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700299 __free_pages(page, hw_params(trans).rx_page_order);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700300 return;
301 }
302 element = rxq->rx_used.next;
303 rxb = list_entry(element, struct iwl_rx_mem_buffer, list);
304 list_del(element);
305
306 spin_unlock_irqrestore(&rxq->lock, flags);
307
308 BUG_ON(rxb->page);
309 rxb->page = page;
310 /* Get physical address of the RB */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700311 rxb->page_dma = dma_map_page(bus(trans)->dev, page, 0,
312 PAGE_SIZE << hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700313 DMA_FROM_DEVICE);
314 /* dma address must be no more than 36 bits */
315 BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36));
316 /* and also 256 byte aligned! */
317 BUG_ON(rxb->page_dma & DMA_BIT_MASK(8));
318
319 spin_lock_irqsave(&rxq->lock, flags);
320
321 list_add_tail(&rxb->list, &rxq->rx_free);
322 rxq->free_count++;
323
324 spin_unlock_irqrestore(&rxq->lock, flags);
325 }
326}
327
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700328void iwlagn_rx_replenish(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700329{
330 unsigned long flags;
331
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700332 iwlagn_rx_allocate(trans, GFP_KERNEL);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700333
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700334 spin_lock_irqsave(&trans->shrd->lock, flags);
335 iwlagn_rx_queue_restock(trans);
336 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700337}
338
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700339static void iwlagn_rx_replenish_now(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700340{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700341 iwlagn_rx_allocate(trans, GFP_ATOMIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700342
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700343 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700344}
345
346void iwl_bg_rx_replenish(struct work_struct *data)
347{
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700348 struct iwl_trans_pcie *trans_pcie =
349 container_of(data, struct iwl_trans_pcie, rx_replenish);
350 struct iwl_trans *trans = trans_pcie->trans;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700351
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700352 if (test_bit(STATUS_EXIT_PENDING, &trans->shrd->status))
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700353 return;
354
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700355 mutex_lock(&trans->shrd->mutex);
356 iwlagn_rx_replenish(trans);
357 mutex_unlock(&trans->shrd->mutex);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700358}
359
360/**
361 * iwl_rx_handle - Main entry function for receiving responses from uCode
362 *
363 * Uses the priv->rx_handlers callback function array to invoke
364 * the appropriate handlers, including command responses,
365 * frame-received notifications, and other notifications.
366 */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700367static void iwl_rx_handle(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700368{
369 struct iwl_rx_mem_buffer *rxb;
370 struct iwl_rx_packet *pkt;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700371 struct iwl_trans_pcie *trans_pcie =
372 IWL_TRANS_GET_PCIE_TRANS(trans);
373 struct iwl_rx_queue *rxq = &trans_pcie->rxq;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700374 struct iwl_tx_queue *txq = &trans_pcie->txq[trans->shrd->cmd_queue];
375 struct iwl_device_cmd *cmd;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700376 u32 r, i;
377 int reclaim;
378 unsigned long flags;
379 u8 fill_rx = 0;
380 u32 count = 8;
381 int total_empty;
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700382 int index, cmd_index;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700383
384 /* uCode's read index (stored in shared DRAM) indicates the last Rx
385 * buffer that the driver may process (last buffer filled by ucode). */
386 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
387 i = rxq->read;
388
389 /* Rx interrupt, but nothing sent from uCode */
390 if (i == r)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700391 IWL_DEBUG_RX(trans, "r = %d, i = %d\n", r, i);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700392
393 /* calculate total frames need to be restock after handling RX */
394 total_empty = r - rxq->write_actual;
395 if (total_empty < 0)
396 total_empty += RX_QUEUE_SIZE;
397
398 if (total_empty > (RX_QUEUE_SIZE / 2))
399 fill_rx = 1;
400
401 while (i != r) {
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700402 int len, err;
Emmanuel Grumbachd56da922011-09-22 07:15:36 -0700403 u16 sequence;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700404
405 rxb = rxq->queue[i];
406
407 /* If an RXB doesn't have a Rx queue slot associated with it,
408 * then a bug has been introduced in the queue refilling
409 * routines -- catch it here */
410 if (WARN_ON(rxb == NULL)) {
411 i = (i + 1) & RX_QUEUE_MASK;
412 continue;
413 }
414
415 rxq->queue[i] = NULL;
416
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700417 dma_unmap_page(bus(trans)->dev, rxb->page_dma,
418 PAGE_SIZE << hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700419 DMA_FROM_DEVICE);
420 pkt = rxb_addr(rxb);
421
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700422 IWL_DEBUG_RX(trans, "r = %d, i = %d, %s, 0x%02x\n", r,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700423 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
424
425 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
426 len += sizeof(u32); /* account for status word */
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700427 trace_iwlwifi_dev_rx(priv(trans), pkt, len);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700428
429 /* Reclaim a command buffer only if this packet is a response
430 * to a (driver-originated) command.
431 * If the packet (e.g. Rx frame) originated from uCode,
432 * there is no command buffer to reclaim.
433 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
434 * but apparently a few don't get set; catch them here. */
435 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
436 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
437 (pkt->hdr.cmd != REPLY_RX) &&
438 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
439 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
440 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
441 (pkt->hdr.cmd != REPLY_TX);
442
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700443 sequence = le16_to_cpu(pkt->hdr.sequence);
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700444 index = SEQ_TO_INDEX(sequence);
445 cmd_index = get_cmd_index(&txq->q, index);
446
447 if (reclaim)
448 cmd = txq->cmd[cmd_index];
449 else
450 cmd = NULL;
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700451
452 /* warn if this is cmd response / notification and the uCode
453 * didn't set the SEQ_RX_FRAME for a frame that is
Emmanuel Grumbachd56da922011-09-22 07:15:36 -0700454 * uCode-originated
455 * If you saw this code after the second half of 2012, then
456 * please remove it
457 */
458 WARN(pkt->hdr.cmd != REPLY_TX && reclaim == false &&
Emmanuel Grumbach17a68dd2011-09-15 11:46:28 -0700459 (!(pkt->hdr.sequence & SEQ_RX_FRAME)),
460 "reclaim is false, SEQ_RX_FRAME unset: %s\n",
461 get_cmd_string(pkt->hdr.cmd));
462
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700463 err = iwl_rx_dispatch(priv(trans), rxb, cmd);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700464
465 /*
466 * XXX: After here, we should always check rxb->page
467 * against NULL before touching it or its virtual
468 * memory (pkt). Because some rx_handler might have
469 * already taken or freed the pages.
470 */
471
472 if (reclaim) {
473 /* Invoke any callbacks, transfer the buffer to caller,
474 * and fire off the (possibly) blocking
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700475 * iwl_trans_send_cmd()
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700476 * as we reclaim the driver command queue */
477 if (rxb->page)
Emmanuel Grumbach247c61d2011-09-20 15:37:23 -0700478 iwl_tx_cmd_complete(trans, rxb, err);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700479 else
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700480 IWL_WARN(trans, "Claim null rxb?\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700481 }
482
483 /* Reuse the page if possible. For notification packets and
484 * SKBs that fail to Rx correctly, add them back into the
485 * rx_free list for reuse later. */
486 spin_lock_irqsave(&rxq->lock, flags);
487 if (rxb->page != NULL) {
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700488 rxb->page_dma = dma_map_page(bus(trans)->dev, rxb->page,
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700489 0, PAGE_SIZE <<
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700490 hw_params(trans).rx_page_order,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700491 DMA_FROM_DEVICE);
492 list_add_tail(&rxb->list, &rxq->rx_free);
493 rxq->free_count++;
494 } else
495 list_add_tail(&rxb->list, &rxq->rx_used);
496
497 spin_unlock_irqrestore(&rxq->lock, flags);
498
499 i = (i + 1) & RX_QUEUE_MASK;
500 /* If there are a lot of unused frames,
501 * restock the Rx queue so ucode wont assert. */
502 if (fill_rx) {
503 count++;
504 if (count >= 8) {
505 rxq->read = i;
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700506 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700507 count = 0;
508 }
509 }
510 }
511
512 /* Backtrack one entry */
513 rxq->read = i;
514 if (fill_rx)
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700515 iwlagn_rx_replenish_now(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700516 else
Emmanuel Grumbach5a878bf2011-08-25 23:10:51 -0700517 iwlagn_rx_queue_restock(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700518}
519
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700520static const char * const desc_lookup_text[] = {
521 "OK",
522 "FAIL",
523 "BAD_PARAM",
524 "BAD_CHECKSUM",
525 "NMI_INTERRUPT_WDG",
526 "SYSASSERT",
527 "FATAL_ERROR",
528 "BAD_COMMAND",
529 "HW_ERROR_TUNE_LOCK",
530 "HW_ERROR_TEMPERATURE",
531 "ILLEGAL_CHAN_FREQ",
532 "VCC_NOT_STABLE",
533 "FH_ERROR",
534 "NMI_INTERRUPT_HOST",
535 "NMI_INTERRUPT_ACTION_PT",
536 "NMI_INTERRUPT_UNKNOWN",
537 "UCODE_VERSION_MISMATCH",
538 "HW_ERROR_ABS_LOCK",
539 "HW_ERROR_CAL_LOCK_FAIL",
540 "NMI_INTERRUPT_INST_ACTION_PT",
541 "NMI_INTERRUPT_DATA_ACTION_PT",
542 "NMI_TRM_HW_ER",
543 "NMI_INTERRUPT_TRM",
544 "NMI_INTERRUPT_BREAK_POINT",
545 "DEBUG_0",
546 "DEBUG_1",
547 "DEBUG_2",
548 "DEBUG_3",
549};
550
551static struct { char *name; u8 num; } advanced_lookup[] = {
552 { "NMI_INTERRUPT_WDG", 0x34 },
553 { "SYSASSERT", 0x35 },
554 { "UCODE_VERSION_MISMATCH", 0x37 },
555 { "BAD_COMMAND", 0x38 },
556 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
557 { "FATAL_ERROR", 0x3D },
558 { "NMI_TRM_HW_ERR", 0x46 },
559 { "NMI_INTERRUPT_TRM", 0x4C },
560 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
561 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
562 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
563 { "NMI_INTERRUPT_HOST", 0x66 },
564 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
565 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
566 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
567 { "ADVANCED_SYSASSERT", 0 },
568};
569
570static const char *desc_lookup(u32 num)
571{
572 int i;
573 int max = ARRAY_SIZE(desc_lookup_text);
574
575 if (num < max)
576 return desc_lookup_text[num];
577
578 max = ARRAY_SIZE(advanced_lookup) - 1;
579 for (i = 0; i < max; i++) {
580 if (advanced_lookup[i].num == num)
581 break;
582 }
583 return advanced_lookup[i].name;
584}
585
586#define ERROR_START_OFFSET (1 * sizeof(u32))
587#define ERROR_ELEM_SIZE (7 * sizeof(u32))
588
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700589static void iwl_dump_nic_error_log(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700590{
591 u32 base;
592 struct iwl_error_event_table table;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700593 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700594 struct iwl_trans_pcie *trans_pcie =
595 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700596
597 base = priv->device_pointers.error_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800598 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700599 if (!base)
600 base = priv->init_errlog_ptr;
601 } else {
602 if (!base)
603 base = priv->inst_errlog_ptr;
604 }
605
606 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700607 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700608 "Not valid error log pointer 0x%08X for %s uCode\n",
609 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800610 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700611 ? "Init" : "RT");
612 return;
613 }
614
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700615 iwl_read_targ_mem_words(bus(priv), base, &table, sizeof(table));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700616
617 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700618 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
619 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
620 trans->shrd->status, table.valid);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700621 }
622
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700623 trans_pcie->isr_stats.err_code = table.error_id;
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700624
625 trace_iwlwifi_dev_ucode_error(priv, table.error_id, table.tsf_low,
626 table.data1, table.data2, table.line,
627 table.blink1, table.blink2, table.ilink1,
628 table.ilink2, table.bcon_time, table.gp1,
629 table.gp2, table.gp3, table.ucode_ver,
630 table.hw_ver, table.brd_ver);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700631 IWL_ERR(trans, "0x%08X | %-28s\n", table.error_id,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700632 desc_lookup(table.error_id));
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700633 IWL_ERR(trans, "0x%08X | uPc\n", table.pc);
634 IWL_ERR(trans, "0x%08X | branchlink1\n", table.blink1);
635 IWL_ERR(trans, "0x%08X | branchlink2\n", table.blink2);
636 IWL_ERR(trans, "0x%08X | interruptlink1\n", table.ilink1);
637 IWL_ERR(trans, "0x%08X | interruptlink2\n", table.ilink2);
638 IWL_ERR(trans, "0x%08X | data1\n", table.data1);
639 IWL_ERR(trans, "0x%08X | data2\n", table.data2);
640 IWL_ERR(trans, "0x%08X | line\n", table.line);
641 IWL_ERR(trans, "0x%08X | beacon time\n", table.bcon_time);
642 IWL_ERR(trans, "0x%08X | tsf low\n", table.tsf_low);
643 IWL_ERR(trans, "0x%08X | tsf hi\n", table.tsf_hi);
644 IWL_ERR(trans, "0x%08X | time gp1\n", table.gp1);
645 IWL_ERR(trans, "0x%08X | time gp2\n", table.gp2);
646 IWL_ERR(trans, "0x%08X | time gp3\n", table.gp3);
647 IWL_ERR(trans, "0x%08X | uCode version\n", table.ucode_ver);
648 IWL_ERR(trans, "0x%08X | hw version\n", table.hw_ver);
649 IWL_ERR(trans, "0x%08X | board version\n", table.brd_ver);
650 IWL_ERR(trans, "0x%08X | hcmd\n", table.hcmd);
Wey-Yi Guyd332f592011-11-30 12:32:42 -0800651
652 IWL_ERR(trans, "0x%08X | isr0\n", table.isr0);
653 IWL_ERR(trans, "0x%08X | isr1\n", table.isr1);
654 IWL_ERR(trans, "0x%08X | isr2\n", table.isr2);
655 IWL_ERR(trans, "0x%08X | isr3\n", table.isr3);
656 IWL_ERR(trans, "0x%08X | isr4\n", table.isr4);
657 IWL_ERR(trans, "0x%08X | isr_pref\n", table.isr_pref);
658 IWL_ERR(trans, "0x%08X | wait_event\n", table.wait_event);
659 IWL_ERR(trans, "0x%08X | l2p_control\n", table.l2p_control);
660 IWL_ERR(trans, "0x%08X | l2p_duration\n", table.l2p_duration);
661 IWL_ERR(trans, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
662 IWL_ERR(trans, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
663 IWL_ERR(trans, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
664 IWL_ERR(trans, "0x%08X | timestamp\n", table.u_timestamp);
665 IWL_ERR(trans, "0x%08X | flow_handler\n", table.flow_handler);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700666}
667
668/**
669 * iwl_irq_handle_error - called for HW or SW error interrupt from card
670 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700671static void iwl_irq_handle_error(struct iwl_trans *trans)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700672{
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700673 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700674 /* W/A for WiFi/WiMAX coex and WiMAX own the RF */
675 if (priv->cfg->internal_wimax_coex &&
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700676 (!(iwl_read_prph(bus(trans), APMG_CLK_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700677 APMS_CLK_VAL_MRB_FUNC_MODE) ||
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700678 (iwl_read_prph(bus(trans), APMG_PS_CTRL_REG) &
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700679 APMG_PS_CTRL_VAL_RESET_REQ))) {
680 /*
681 * Keep the restart process from trying to send host
682 * commands by clearing the ready bit.
683 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700684 clear_bit(STATUS_READY, &trans->shrd->status);
685 clear_bit(STATUS_HCMD_ACTIVE, &trans->shrd->status);
Johannes Bergeffd4d92011-09-15 11:46:52 -0700686 wake_up(&priv->shrd->wait_command_queue);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700687 IWL_ERR(trans, "RF is used by WiMAX\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700688 return;
689 }
690
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700691 IWL_ERR(trans, "Loaded firmware version: %s\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700692 priv->hw->wiphy->fw_version);
693
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700694 iwl_dump_nic_error_log(trans);
695 iwl_dump_csr(trans);
696 iwl_dump_fh(trans, NULL, false);
697 iwl_dump_nic_event_log(trans, false, NULL, false);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700698#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700699 if (iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS)
Emmanuel Grumbach522376d2011-09-06 09:31:19 -0700700 iwl_print_rx_config_cmd(priv(trans), IWL_RXON_CTX_BSS);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700701#endif
702
703 iwlagn_fw_error(priv, false);
704}
705
706#define EVENT_START_OFFSET (4 * sizeof(u32))
707
708/**
709 * iwl_print_event_log - Dump error event log to syslog
710 *
711 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700712static int iwl_print_event_log(struct iwl_trans *trans, u32 start_idx,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700713 u32 num_events, u32 mode,
714 int pos, char **buf, size_t bufsz)
715{
716 u32 i;
717 u32 base; /* SRAM byte address of event log header */
718 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
719 u32 ptr; /* SRAM byte address of log data */
720 u32 ev, time, data; /* event log data */
721 unsigned long reg_flags;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700722 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700723
724 if (num_events == 0)
725 return pos;
726
727 base = priv->device_pointers.log_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800728 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700729 if (!base)
730 base = priv->init_evtlog_ptr;
731 } else {
732 if (!base)
733 base = priv->inst_evtlog_ptr;
734 }
735
736 if (mode == 0)
737 event_size = 2 * sizeof(u32);
738 else
739 event_size = 3 * sizeof(u32);
740
741 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
742
743 /* Make sure device is powered up for SRAM reads */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700744 spin_lock_irqsave(&bus(trans)->reg_lock, reg_flags);
745 iwl_grab_nic_access(bus(trans));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700746
747 /* Set starting address; reads will auto-increment */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700748 iwl_write32(bus(trans), HBUS_TARG_MEM_RADDR, ptr);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700749 rmb();
750
751 /* "time" is actually "data" for mode 0 (no timestamp).
752 * place event id # at far right for easier visual parsing. */
753 for (i = 0; i < num_events; i++) {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700754 ev = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
755 time = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700756 if (mode == 0) {
757 /* data, ev */
758 if (bufsz) {
759 pos += scnprintf(*buf + pos, bufsz - pos,
760 "EVT_LOG:0x%08x:%04u\n",
761 time, ev);
762 } else {
763 trace_iwlwifi_dev_ucode_event(priv, 0,
764 time, ev);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700765 IWL_ERR(trans, "EVT_LOG:0x%08x:%04u\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700766 time, ev);
767 }
768 } else {
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700769 data = iwl_read32(bus(trans), HBUS_TARG_MEM_RDAT);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700770 if (bufsz) {
771 pos += scnprintf(*buf + pos, bufsz - pos,
772 "EVT_LOGT:%010u:0x%08x:%04u\n",
773 time, data, ev);
774 } else {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700775 IWL_ERR(trans, "EVT_LOGT:%010u:0x%08x:%04u\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700776 time, data, ev);
777 trace_iwlwifi_dev_ucode_event(priv, time,
778 data, ev);
779 }
780 }
781 }
782
783 /* Allow device to power down */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700784 iwl_release_nic_access(bus(trans));
785 spin_unlock_irqrestore(&bus(trans)->reg_lock, reg_flags);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700786 return pos;
787}
788
789/**
790 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
791 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700792static int iwl_print_last_event_logs(struct iwl_trans *trans, u32 capacity,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700793 u32 num_wraps, u32 next_entry,
794 u32 size, u32 mode,
795 int pos, char **buf, size_t bufsz)
796{
797 /*
798 * display the newest DEFAULT_LOG_ENTRIES entries
799 * i.e the entries just before the next ont that uCode would fill.
800 */
801 if (num_wraps) {
802 if (next_entry < size) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700803 pos = iwl_print_event_log(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700804 capacity - (size - next_entry),
805 size - next_entry, mode,
806 pos, buf, bufsz);
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700807 pos = iwl_print_event_log(trans, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700808 next_entry, mode,
809 pos, buf, bufsz);
810 } else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700811 pos = iwl_print_event_log(trans, next_entry - size,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700812 size, mode, pos, buf, bufsz);
813 } else {
814 if (next_entry < size) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700815 pos = iwl_print_event_log(trans, 0, next_entry,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700816 mode, pos, buf, bufsz);
817 } else {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700818 pos = iwl_print_event_log(trans, next_entry - size,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700819 size, mode, pos, buf, bufsz);
820 }
821 }
822 return pos;
823}
824
825#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
826
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700827int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700828 char **buf, bool display)
829{
830 u32 base; /* SRAM byte address of event log header */
831 u32 capacity; /* event log capacity in # entries */
832 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
833 u32 num_wraps; /* # times uCode wrapped to top of log */
834 u32 next_entry; /* index of next entry to be written by uCode */
835 u32 size; /* # entries that we'll print */
836 u32 logsize;
837 int pos = 0;
838 size_t bufsz = 0;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700839 struct iwl_priv *priv = priv(trans);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700840
841 base = priv->device_pointers.log_event_table;
Don Fry3d6acef2011-11-28 17:05:01 -0800842 if (trans->shrd->ucode_type == IWL_UCODE_INIT) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700843 logsize = priv->init_evtlog_size;
844 if (!base)
845 base = priv->init_evtlog_ptr;
846 } else {
847 logsize = priv->inst_evtlog_size;
848 if (!base)
849 base = priv->inst_evtlog_ptr;
850 }
851
852 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700853 IWL_ERR(trans,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700854 "Invalid event log pointer 0x%08X for %s uCode\n",
855 base,
Don Fry3d6acef2011-11-28 17:05:01 -0800856 (trans->shrd->ucode_type == IWL_UCODE_INIT)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700857 ? "Init" : "RT");
858 return -EINVAL;
859 }
860
861 /* event log header */
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700862 capacity = iwl_read_targ_mem(bus(trans), base);
863 mode = iwl_read_targ_mem(bus(trans), base + (1 * sizeof(u32)));
864 num_wraps = iwl_read_targ_mem(bus(trans), base + (2 * sizeof(u32)));
865 next_entry = iwl_read_targ_mem(bus(trans), base + (3 * sizeof(u32)));
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700866
867 if (capacity > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700868 IWL_ERR(trans, "Log capacity %d is bogus, limit to %d "
869 "entries\n", capacity, logsize);
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700870 capacity = logsize;
871 }
872
873 if (next_entry > logsize) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700874 IWL_ERR(trans, "Log write index %d is bogus, limit to %d\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700875 next_entry, logsize);
876 next_entry = logsize;
877 }
878
879 size = num_wraps ? capacity : next_entry;
880
881 /* bail out if nothing in log */
882 if (size == 0) {
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700883 IWL_ERR(trans, "Start IWL Event Log Dump: nothing in log\n");
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700884 return pos;
885 }
886
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700887#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700888 if (!(iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS) && !full_log)
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700889 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
890 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
891#else
892 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
893 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
894#endif
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700895 IWL_ERR(trans, "Start IWL Event Log Dump: display last %u entries\n",
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700896 size);
897
898#ifdef CONFIG_IWLWIFI_DEBUG
899 if (display) {
900 if (full_log)
901 bufsz = capacity * 48;
902 else
903 bufsz = size * 48;
904 *buf = kmalloc(bufsz, GFP_KERNEL);
905 if (!*buf)
906 return -ENOMEM;
907 }
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700908 if ((iwl_get_debug_level(trans->shrd) & IWL_DL_FW_ERRORS) || full_log) {
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700909 /*
910 * if uCode has wrapped back to top of log,
911 * start at the oldest entry,
912 * i.e the next one that uCode would fill.
913 */
914 if (num_wraps)
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700915 pos = iwl_print_event_log(trans, next_entry,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700916 capacity - next_entry, mode,
917 pos, buf, bufsz);
918 /* (then/else) start at top of log */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700919 pos = iwl_print_event_log(trans, 0,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700920 next_entry, mode, pos, buf, bufsz);
921 } else
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700922 pos = iwl_print_last_event_logs(trans, capacity, num_wraps,
Emmanuel Grumbach7ff94702011-08-25 23:10:54 -0700923 next_entry, size, mode,
924 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#endif
930 return pos;
931}
932
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700933/* tasklet for iwlagn interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700934void iwl_irq_tasklet(struct iwl_trans *trans)
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700935{
936 u32 inta = 0;
937 u32 handled = 0;
938 unsigned long flags;
939 u32 i;
940#ifdef CONFIG_IWLWIFI_DEBUG
941 u32 inta_mask;
942#endif
943
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -0700944 struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700945 struct isr_statistics *isr_stats = &trans_pcie->isr_stats;
946
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700947
948 spin_lock_irqsave(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700949
950 /* Ack/clear/reset pending uCode interrupts.
951 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
952 */
953 /* There is a hardware bug in the interrupt mask function that some
954 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
955 * they are disabled in the CSR_INT_MASK register. Furthermore the
956 * ICT interrupt handling mechanism has another bug that might cause
957 * these unmasked interrupts fail to be detected. We workaround the
958 * hardware bugs here by ACKing all the possible interrupts so that
959 * interrupt coalescing can still be achieved.
960 */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700961 iwl_write32(bus(trans), CSR_INT,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700962 trans_pcie->inta | ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700963
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700964 inta = trans_pcie->inta;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700965
966#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700967 if (iwl_get_debug_level(trans->shrd) & IWL_DL_ISR) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700968 /* just for debug */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700969 inta_mask = iwl_read32(bus(trans), CSR_INT_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700970 IWL_DEBUG_ISR(trans, "inta 0x%08x, enabled 0x%08x\n ",
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700971 inta, inta_mask);
972 }
973#endif
974
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700975 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700976
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700977 /* saved interrupt in inta variable now we can reset trans_pcie->inta */
978 trans_pcie->inta = 0;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700979
980 /* Now service all interrupt bits discovered above. */
981 if (inta & CSR_INT_BIT_HW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700982 IWL_ERR(trans, "Hardware error detected. Restarting.\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700983
984 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700985 iwl_disable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700986
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700987 isr_stats->hw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -0700988 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700989
990 handled |= CSR_INT_BIT_HW_ERR;
991
992 return;
993 }
994
995#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700996 if (iwl_get_debug_level(trans->shrd) & (IWL_DL_ISR)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -0700997 /* NIC fires this, but we don't use it, redundant with WAKEUP */
998 if (inta & CSR_INT_BIT_SCD) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -0700999 IWL_DEBUG_ISR(trans, "Scheduler finished to transmit "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001000 "the frame/frames.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001001 isr_stats->sch++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001002 }
1003
1004 /* Alive notification via Rx interrupt will do the real work */
1005 if (inta & CSR_INT_BIT_ALIVE) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001006 IWL_DEBUG_ISR(trans, "Alive interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001007 isr_stats->alive++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001008 }
1009 }
1010#endif
1011 /* Safely ignore these bits for debug checks below */
1012 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1013
1014 /* HW RF KILL switch toggled */
1015 if (inta & CSR_INT_BIT_RF_KILL) {
1016 int hw_rf_kill = 0;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001017 if (!(iwl_read32(bus(trans), CSR_GP_CNTRL) &
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001018 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1019 hw_rf_kill = 1;
1020
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001021 IWL_WARN(trans, "RF_KILL bit toggled to %s.\n",
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001022 hw_rf_kill ? "disable radio" : "enable radio");
1023
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001024 isr_stats->rfkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001025
1026 /* driver only loads ucode once setting the interface up.
1027 * the driver allows loading the ucode even if the radio
1028 * is killed. Hence update the killswitch state here. The
1029 * rfkill handler will care about restarting if needed.
1030 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001031 if (!test_bit(STATUS_ALIVE, &trans->shrd->status)) {
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001032 if (hw_rf_kill)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001033 set_bit(STATUS_RF_KILL_HW,
1034 &trans->shrd->status);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001035 else
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -07001036 clear_bit(STATUS_RF_KILL_HW,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001037 &trans->shrd->status);
Emmanuel Grumbach3e10cae2011-09-06 09:31:18 -07001038 iwl_set_hw_rfkill_state(priv(trans), hw_rf_kill);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001039 }
1040
1041 handled |= CSR_INT_BIT_RF_KILL;
1042 }
1043
1044 /* Chip got too hot and stopped itself */
1045 if (inta & CSR_INT_BIT_CT_KILL) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001046 IWL_ERR(trans, "Microcode CT kill error detected.\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001047 isr_stats->ctkill++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001048 handled |= CSR_INT_BIT_CT_KILL;
1049 }
1050
1051 /* Error detected by uCode */
1052 if (inta & CSR_INT_BIT_SW_ERR) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001053 IWL_ERR(trans, "Microcode SW error detected. "
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001054 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001055 isr_stats->sw++;
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -07001056 iwl_irq_handle_error(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001057 handled |= CSR_INT_BIT_SW_ERR;
1058 }
1059
1060 /* uCode wakes up after power-down sleep */
1061 if (inta & CSR_INT_BIT_WAKEUP) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001062 IWL_DEBUG_ISR(trans, "Wakeup interrupt\n");
1063 iwl_rx_queue_update_write_ptr(trans, &trans_pcie->rxq);
1064 for (i = 0; i < hw_params(trans).max_txq_num; i++)
Emmanuel Grumbachfd656932011-08-25 23:11:19 -07001065 iwl_txq_update_write_ptr(trans,
Emmanuel Grumbach8ad71be2011-08-25 23:11:32 -07001066 &trans_pcie->txq[i]);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001067
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001068 isr_stats->wakeup++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001069
1070 handled |= CSR_INT_BIT_WAKEUP;
1071 }
1072
1073 /* All uCode command responses, including Tx command responses,
1074 * Rx "responses" (frame-received notification), and other
1075 * notifications from uCode come through here*/
1076 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1077 CSR_INT_BIT_RX_PERIODIC)) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001078 IWL_DEBUG_ISR(trans, "Rx interrupt\n");
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001079 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1080 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001081 iwl_write32(bus(trans), CSR_FH_INT_STATUS,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001082 CSR_FH_INT_RX_MASK);
1083 }
1084 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1085 handled |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001086 iwl_write32(bus(trans),
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001087 CSR_INT, CSR_INT_BIT_RX_PERIODIC);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001088 }
1089 /* Sending RX interrupt require many steps to be done in the
1090 * the device:
1091 * 1- write interrupt to current index in ICT table.
1092 * 2- dma RX frame.
1093 * 3- update RX shared data to indicate last write index.
1094 * 4- send interrupt.
1095 * This could lead to RX race, driver could receive RX interrupt
1096 * but the shared data changes does not reflect this;
1097 * periodic interrupt will detect any dangling Rx activity.
1098 */
1099
1100 /* Disable periodic interrupt; we use it as just a one-shot. */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001101 iwl_write8(bus(trans), CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001102 CSR_INT_PERIODIC_DIS);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001103 iwl_rx_handle(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001104
1105 /*
1106 * Enable periodic interrupt in 8 msec only if we received
1107 * real RX interrupt (instead of just periodic int), to catch
1108 * any dangling Rx interrupt. If it was just the periodic
1109 * interrupt, there was no dangling Rx activity, and no need
1110 * to extend the periodic interrupt; one-shot is enough.
1111 */
1112 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001113 iwl_write8(bus(trans), CSR_INT_PERIODIC_REG,
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001114 CSR_INT_PERIODIC_ENA);
1115
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001116 isr_stats->rx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001117 }
1118
1119 /* This "Tx" DMA channel is used only for loading uCode */
1120 if (inta & CSR_INT_BIT_FH_TX) {
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001121 iwl_write32(bus(trans), CSR_FH_INT_STATUS, CSR_FH_INT_TX_MASK);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001122 IWL_DEBUG_ISR(trans, "uCode load interrupt\n");
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001123 isr_stats->tx++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001124 handled |= CSR_INT_BIT_FH_TX;
1125 /* Wake up uCode load routine, now that load is complete */
Don Fry5703ddb2011-11-10 06:55:07 -08001126 trans->ucode_write_complete = 1;
Johannes Bergeffd4d92011-09-15 11:46:52 -07001127 wake_up(&trans->shrd->wait_command_queue);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001128 }
1129
1130 if (inta & ~handled) {
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001131 IWL_ERR(trans, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07001132 isr_stats->unhandled++;
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001133 }
1134
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001135 if (inta & ~(trans_pcie->inta_mask)) {
1136 IWL_WARN(trans, "Disabled INTA bits 0x%08x were pending\n",
1137 inta & ~trans_pcie->inta_mask);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001138 }
1139
1140 /* Re-enable all interrupts */
1141 /* only Re-enable if disabled by irq */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001142 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status))
1143 iwl_enable_interrupts(trans);
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001144 /* Re-enable RF_KILL if it occurred */
1145 else if (handled & CSR_INT_BIT_RF_KILL)
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001146 iwl_enable_rfkill_int(priv(trans));
Emmanuel Grumbachab697a92011-07-11 07:35:34 -07001147}
1148
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001149/******************************************************************************
1150 *
1151 * ICT functions
1152 *
1153 ******************************************************************************/
1154#define ICT_COUNT (PAGE_SIZE/sizeof(u32))
1155
1156/* Free dram table */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001157void iwl_free_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001158{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001159 struct iwl_trans_pcie *trans_pcie =
1160 IWL_TRANS_GET_PCIE_TRANS(trans);
1161
1162 if (trans_pcie->ict_tbl_vir) {
1163 dma_free_coherent(bus(trans)->dev,
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001164 (sizeof(u32) * ICT_COUNT) + PAGE_SIZE,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001165 trans_pcie->ict_tbl_vir,
1166 trans_pcie->ict_tbl_dma);
1167 trans_pcie->ict_tbl_vir = NULL;
1168 memset(&trans_pcie->ict_tbl_dma, 0,
1169 sizeof(trans_pcie->ict_tbl_dma));
1170 memset(&trans_pcie->aligned_ict_tbl_dma, 0,
1171 sizeof(trans_pcie->aligned_ict_tbl_dma));
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001172 }
1173}
1174
1175
1176/* allocate dram shared table it is a PAGE_SIZE aligned
1177 * also reset all data related to ICT table interrupt.
1178 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001179int iwl_alloc_isr_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001180{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001181 struct iwl_trans_pcie *trans_pcie =
1182 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001183
1184 /* allocate shrared data table */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001185 trans_pcie->ict_tbl_vir =
1186 dma_alloc_coherent(bus(trans)->dev,
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001187 (sizeof(u32) * ICT_COUNT) + PAGE_SIZE,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001188 &trans_pcie->ict_tbl_dma, GFP_KERNEL);
1189 if (!trans_pcie->ict_tbl_vir)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001190 return -ENOMEM;
1191
1192 /* align table to PAGE_SIZE boundary */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001193 trans_pcie->aligned_ict_tbl_dma =
1194 ALIGN(trans_pcie->ict_tbl_dma, PAGE_SIZE);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001195
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001196 IWL_DEBUG_ISR(trans, "ict dma addr %Lx dma aligned %Lx diff %d\n",
1197 (unsigned long long)trans_pcie->ict_tbl_dma,
1198 (unsigned long long)trans_pcie->aligned_ict_tbl_dma,
1199 (int)(trans_pcie->aligned_ict_tbl_dma -
1200 trans_pcie->ict_tbl_dma));
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001201
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001202 trans_pcie->ict_tbl = trans_pcie->ict_tbl_vir +
1203 (trans_pcie->aligned_ict_tbl_dma -
1204 trans_pcie->ict_tbl_dma);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001205
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001206 IWL_DEBUG_ISR(trans, "ict vir addr %p vir aligned %p diff %d\n",
1207 trans_pcie->ict_tbl, trans_pcie->ict_tbl_vir,
1208 (int)(trans_pcie->aligned_ict_tbl_dma -
1209 trans_pcie->ict_tbl_dma));
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001210
1211 /* reset table and index to all 0 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001212 memset(trans_pcie->ict_tbl_vir, 0,
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001213 (sizeof(u32) * ICT_COUNT) + PAGE_SIZE);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001214 trans_pcie->ict_index = 0;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001215
1216 /* add periodic RX interrupt */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001217 trans_pcie->inta_mask |= CSR_INT_BIT_RX_PERIODIC;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001218 return 0;
1219}
1220
1221/* Device is going up inform it about using ICT interrupt table,
1222 * also we need to tell the driver to start using ICT interrupt.
1223 */
Emmanuel Grumbach6bb78842011-08-25 23:11:09 -07001224int iwl_reset_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001225{
1226 u32 val;
1227 unsigned long flags;
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001228 struct iwl_trans_pcie *trans_pcie =
1229 IWL_TRANS_GET_PCIE_TRANS(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001230
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001231 if (!trans_pcie->ict_tbl_vir)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001232 return 0;
1233
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001234 spin_lock_irqsave(&trans->shrd->lock, flags);
1235 iwl_disable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001236
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001237 memset(&trans_pcie->ict_tbl[0], 0, sizeof(u32) * ICT_COUNT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001238
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001239 val = trans_pcie->aligned_ict_tbl_dma >> PAGE_SHIFT;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001240
1241 val |= CSR_DRAM_INT_TBL_ENABLE;
1242 val |= CSR_DRAM_INIT_TBL_WRAP_CHECK;
1243
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001244 IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%X "
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001245 "aligned dma address %Lx\n",
1246 val,
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001247 (unsigned long long)trans_pcie->aligned_ict_tbl_dma);
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 return 0;
1257}
1258
1259/* Device is going down disable ict interrupt usage */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001260void iwl_disable_ict(struct iwl_trans *trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001261{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001262 struct iwl_trans_pcie *trans_pcie =
1263 IWL_TRANS_GET_PCIE_TRANS(trans);
1264
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001265 unsigned long flags;
1266
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001267 spin_lock_irqsave(&trans->shrd->lock, flags);
1268 trans_pcie->use_ict = false;
1269 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001270}
1271
1272static irqreturn_t iwl_isr(int irq, void *data)
1273{
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001274 struct iwl_trans *trans = data;
1275 struct iwl_trans_pcie *trans_pcie;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001276 u32 inta, inta_mask;
1277 unsigned long flags;
1278#ifdef CONFIG_IWLWIFI_DEBUG
1279 u32 inta_fh;
1280#endif
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001281 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001282 return IRQ_NONE;
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;
1358 unsigned long flags;
1359
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001360 if (!trans)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001361 return IRQ_NONE;
1362
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001363 trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
1364
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001365 /* dram interrupt table not set yet,
1366 * use legacy interrupt.
1367 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001368 if (!trans_pcie->use_ict)
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001369 return iwl_isr(irq, data);
1370
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001371 spin_lock_irqsave(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001372
1373 /* Disable (but don't clear!) interrupts here to avoid
1374 * back-to-back ISRs and sporadic interrupts from our NIC.
1375 * If we have something to service, the tasklet will re-enable ints.
1376 * If we *don't* have something, we'll re-enable before leaving here.
1377 */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07001378 inta_mask = iwl_read32(bus(trans), CSR_INT_MASK); /* just for debug */
1379 iwl_write32(bus(trans), CSR_INT_MASK, 0x00000000);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001380
1381
1382 /* Ignore interrupt if there's nothing in NIC to service.
1383 * This may be due to IRQ shared with another device,
1384 * or due to sporadic interrupts thrown from our NIC. */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001385 if (!trans_pcie->ict_tbl[trans_pcie->ict_index]) {
1386 IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n");
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001387 goto none;
1388 }
1389
1390 /* read all entries that not 0 start with ict_index */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001391 while (trans_pcie->ict_tbl[trans_pcie->ict_index]) {
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001392
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001393 val |= le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]);
1394 IWL_DEBUG_ISR(trans, "ICT index %d value 0x%08X\n",
1395 trans_pcie->ict_index,
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001396 le32_to_cpu(
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001397 trans_pcie->ict_tbl[trans_pcie->ict_index]));
1398 trans_pcie->ict_tbl[trans_pcie->ict_index] = 0;
1399 trans_pcie->ict_index =
1400 iwl_queue_inc_wrap(trans_pcie->ict_index, ICT_COUNT);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001401
1402 }
1403
1404 /* We should not get this value, just ignore it. */
1405 if (val == 0xffffffff)
1406 val = 0;
1407
1408 /*
1409 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit
1410 * (bit 15 before shifting it to 31) to clear when using interrupt
1411 * coalescing. fortunately, bits 18 and 19 stay set when this happens
1412 * so we use them to decide on the real state of the Rx bit.
1413 * In order words, bit 15 is set if bit 18 or bit 19 are set.
1414 */
1415 if (val & 0xC0000)
1416 val |= 0x8000;
1417
1418 inta = (0xff & val) | ((0xff00 & val) << 16);
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001419 IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001420 inta, inta_mask, val);
1421
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001422 inta &= trans_pcie->inta_mask;
1423 trans_pcie->inta |= inta;
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001424
1425 /* iwl_irq_tasklet() will service interrupts and re-enable them */
1426 if (likely(inta))
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001427 tasklet_schedule(&trans_pcie->irq_tasklet);
1428 else if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1429 !trans_pcie->inta) {
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001430 /* Allow interrupt if was disabled by this handler and
1431 * no tasklet was schedules, We should not enable interrupt,
1432 * tasklet will enable it.
1433 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001434 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001435 }
1436
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001437 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001438 return IRQ_HANDLED;
1439
1440 none:
1441 /* re-enable interrupts here since we don't have anything to service.
1442 * only Re-enable if disabled by irq.
1443 */
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001444 if (test_bit(STATUS_INT_ENABLED, &trans->shrd->status) &&
1445 !trans_pcie->inta)
1446 iwl_enable_interrupts(trans);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001447
Emmanuel Grumbach0c325762011-08-25 23:10:53 -07001448 spin_unlock_irqrestore(&trans->shrd->lock, flags);
Emmanuel Grumbach1a361cd2011-07-11 07:44:57 -07001449 return IRQ_NONE;
1450}