| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1 | /****************************************************************************** | 
 | 2 |  * | 
| Wey-Yi Guy | fb4961d | 2012-01-06 13:16:33 -0800 | [diff] [blame] | 3 |  * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved. | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 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 Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 31 | #include <linux/gfp.h> | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 32 |  | 
| Johannes Berg | 1b29dc9 | 2012-03-06 13:30:50 -0800 | [diff] [blame] | 33 | #include "iwl-prph.h" | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 34 | #include "iwl-io.h" | 
| Johannes Berg | c17d068 | 2011-09-15 11:46:42 -0700 | [diff] [blame] | 35 | #include "iwl-trans-pcie-int.h" | 
| Emmanuel Grumbach | db70f29 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 36 | #include "iwl-op-mode.h" | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 37 |  | 
| Gregory Greenman | a591697 | 2012-01-10 19:22:56 +0200 | [diff] [blame] | 38 | #ifdef CONFIG_IWLWIFI_IDI | 
 | 39 | #include "iwl-amfh.h" | 
 | 40 | #endif | 
 | 41 |  | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 42 | /****************************************************************************** | 
 | 43 |  * | 
 | 44 |  * RX path functions | 
 | 45 |  * | 
 | 46 |  ******************************************************************************/ | 
 | 47 |  | 
 | 48 | /* | 
 | 49 |  * Rx theory of operation | 
 | 50 |  * | 
 | 51 |  * Driver allocates a circular buffer of Receive Buffer Descriptors (RBDs), | 
 | 52 |  * each of which point to Receive Buffers to be filled by the NIC.  These get | 
 | 53 |  * used not only for Rx frames, but for any command response or notification | 
 | 54 |  * from the NIC.  The driver and NIC manage the Rx buffers by means | 
 | 55 |  * of indexes into the circular buffer. | 
 | 56 |  * | 
 | 57 |  * Rx Queue Indexes | 
 | 58 |  * The host/firmware share two index registers for managing the Rx buffers. | 
 | 59 |  * | 
 | 60 |  * The READ index maps to the first position that the firmware may be writing | 
 | 61 |  * to -- the driver can read up to (but not including) this position and get | 
 | 62 |  * good data. | 
 | 63 |  * The READ index is managed by the firmware once the card is enabled. | 
 | 64 |  * | 
 | 65 |  * The WRITE index maps to the last position the driver has read from -- the | 
 | 66 |  * position preceding WRITE is the last slot the firmware can place a packet. | 
 | 67 |  * | 
 | 68 |  * The queue is empty (no good data) if WRITE = READ - 1, and is full if | 
 | 69 |  * WRITE = READ. | 
 | 70 |  * | 
 | 71 |  * During initialization, the host sets up the READ queue position to the first | 
 | 72 |  * INDEX position, and WRITE to the last (READ - 1 wrapped) | 
 | 73 |  * | 
 | 74 |  * When the firmware places a packet in a buffer, it will advance the READ index | 
 | 75 |  * and fire the RX interrupt.  The driver can then query the READ index and | 
 | 76 |  * process as many packets as possible, moving the WRITE index forward as it | 
 | 77 |  * resets the Rx queue buffers with new memory. | 
 | 78 |  * | 
 | 79 |  * The management in the driver is as follows: | 
 | 80 |  * + A list of pre-allocated SKBs is stored in iwl->rxq->rx_free.  When | 
 | 81 |  *   iwl->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled | 
 | 82 |  *   to replenish the iwl->rxq->rx_free. | 
 | 83 |  * + In iwl_rx_replenish (scheduled) if 'processed' != 'read' then the | 
 | 84 |  *   iwl->rxq is replenished and the READ INDEX is updated (updating the | 
 | 85 |  *   'processed' and 'read' driver indexes as well) | 
 | 86 |  * + A received packet is processed and handed to the kernel network stack, | 
 | 87 |  *   detached from the iwl->rxq.  The driver 'processed' index is updated. | 
 | 88 |  * + The Host/Firmware iwl->rxq is replenished at tasklet time from the rx_free | 
 | 89 |  *   list. If there are no allocated buffers in iwl->rxq->rx_free, the READ | 
 | 90 |  *   INDEX is not incremented and iwl->status(RX_STALLED) is set.  If there | 
 | 91 |  *   were enough free buffers and RX_STALLED is set it is cleared. | 
 | 92 |  * | 
 | 93 |  * | 
 | 94 |  * Driver sequence: | 
 | 95 |  * | 
 | 96 |  * iwl_rx_queue_alloc()   Allocates rx_free | 
 | 97 |  * iwl_rx_replenish()     Replenishes rx_free list from rx_used, and calls | 
 | 98 |  *                            iwl_rx_queue_restock | 
 | 99 |  * iwl_rx_queue_restock() Moves available buffers from rx_free into Rx | 
 | 100 |  *                            queue, updates firmware pointers, and updates | 
 | 101 |  *                            the WRITE index.  If insufficient rx_free buffers | 
 | 102 |  *                            are available, schedules iwl_rx_replenish | 
 | 103 |  * | 
 | 104 |  * -- enable interrupts -- | 
 | 105 |  * ISR - iwl_rx()         Detach iwl_rx_mem_buffers from pool up to the | 
 | 106 |  *                            READ INDEX, detaching the SKB from the pool. | 
 | 107 |  *                            Moves the packet buffer from queue to rx_used. | 
 | 108 |  *                            Calls iwl_rx_queue_restock to refill any empty | 
 | 109 |  *                            slots. | 
 | 110 |  * ... | 
 | 111 |  * | 
 | 112 |  */ | 
 | 113 |  | 
 | 114 | /** | 
 | 115 |  * iwl_rx_queue_space - Return number of free slots available in queue. | 
 | 116 |  */ | 
 | 117 | static int iwl_rx_queue_space(const struct iwl_rx_queue *q) | 
 | 118 | { | 
 | 119 | 	int s = q->read - q->write; | 
 | 120 | 	if (s <= 0) | 
 | 121 | 		s += RX_QUEUE_SIZE; | 
 | 122 | 	/* keep some buffer to not confuse full and empty queue */ | 
 | 123 | 	s -= 2; | 
 | 124 | 	if (s < 0) | 
 | 125 | 		s = 0; | 
 | 126 | 	return s; | 
 | 127 | } | 
 | 128 |  | 
 | 129 | /** | 
 | 130 |  * iwl_rx_queue_update_write_ptr - Update the write pointer for the RX queue | 
 | 131 |  */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 132 | void iwl_rx_queue_update_write_ptr(struct iwl_trans *trans, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 133 | 			struct iwl_rx_queue *q) | 
 | 134 | { | 
 | 135 | 	unsigned long flags; | 
 | 136 | 	u32 reg; | 
 | 137 |  | 
 | 138 | 	spin_lock_irqsave(&q->lock, flags); | 
 | 139 |  | 
 | 140 | 	if (q->need_update == 0) | 
 | 141 | 		goto exit_unlock; | 
 | 142 |  | 
| Johannes Berg | 0dde86b | 2012-03-06 13:30:46 -0800 | [diff] [blame] | 143 | 	if (cfg(trans)->base_params->shadow_reg_enable) { | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 144 | 		/* shadow register enabled */ | 
 | 145 | 		/* Device expects a multiple of 8 */ | 
 | 146 | 		q->write_actual = (q->write & ~0x7); | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 147 | 		iwl_write32(trans, FH_RSCSR_CHNL0_WPTR, q->write_actual); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 148 | 	} else { | 
 | 149 | 		/* If power-saving is in use, make sure device is awake */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 150 | 		if (test_bit(STATUS_POWER_PMI, &trans->shrd->status)) { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 151 | 			reg = iwl_read32(trans, CSR_UCODE_DRV_GP1); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 152 |  | 
 | 153 | 			if (reg & CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP) { | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 154 | 				IWL_DEBUG_INFO(trans, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 155 | 					"Rx queue requesting wakeup," | 
 | 156 | 					" GP1 = 0x%x\n", reg); | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 157 | 				iwl_set_bit(trans, CSR_GP_CNTRL, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 158 | 					CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ); | 
 | 159 | 				goto exit_unlock; | 
 | 160 | 			} | 
 | 161 |  | 
 | 162 | 			q->write_actual = (q->write & ~0x7); | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 163 | 			iwl_write_direct32(trans, FH_RSCSR_CHNL0_WPTR, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 164 | 					q->write_actual); | 
 | 165 |  | 
 | 166 | 		/* Else device is assumed to be awake */ | 
 | 167 | 		} else { | 
 | 168 | 			/* Device expects a multiple of 8 */ | 
 | 169 | 			q->write_actual = (q->write & ~0x7); | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 170 | 			iwl_write_direct32(trans, FH_RSCSR_CHNL0_WPTR, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 171 | 				q->write_actual); | 
 | 172 | 		} | 
 | 173 | 	} | 
 | 174 | 	q->need_update = 0; | 
 | 175 |  | 
 | 176 |  exit_unlock: | 
 | 177 | 	spin_unlock_irqrestore(&q->lock, flags); | 
 | 178 | } | 
 | 179 |  | 
 | 180 | /** | 
 | 181 |  * iwlagn_dma_addr2rbd_ptr - convert a DMA address to a uCode read buffer ptr | 
 | 182 |  */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 183 | static inline __le32 iwlagn_dma_addr2rbd_ptr(dma_addr_t dma_addr) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 184 | { | 
 | 185 | 	return cpu_to_le32((u32)(dma_addr >> 8)); | 
 | 186 | } | 
 | 187 |  | 
 | 188 | /** | 
 | 189 |  * iwlagn_rx_queue_restock - refill RX queue from pre-allocated pool | 
 | 190 |  * | 
 | 191 |  * If there are slots in the RX queue that need to be restocked, | 
 | 192 |  * and we have free pre-allocated buffers, fill the ranks as much | 
 | 193 |  * as we can, pulling from rx_free. | 
 | 194 |  * | 
 | 195 |  * This moves the 'write' index forward to catch up with 'processed', and | 
 | 196 |  * also updates the memory address in the firmware to reference the new | 
 | 197 |  * target buffer. | 
 | 198 |  */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 199 | static void iwlagn_rx_queue_restock(struct iwl_trans *trans) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 200 | { | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 201 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 202 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 203 |  | 
 | 204 | 	struct iwl_rx_queue *rxq = &trans_pcie->rxq; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 205 | 	struct list_head *element; | 
 | 206 | 	struct iwl_rx_mem_buffer *rxb; | 
 | 207 | 	unsigned long flags; | 
 | 208 |  | 
 | 209 | 	spin_lock_irqsave(&rxq->lock, flags); | 
 | 210 | 	while ((iwl_rx_queue_space(rxq) > 0) && (rxq->free_count)) { | 
 | 211 | 		/* The overwritten rxb must be a used one */ | 
 | 212 | 		rxb = rxq->queue[rxq->write]; | 
 | 213 | 		BUG_ON(rxb && rxb->page); | 
 | 214 |  | 
 | 215 | 		/* Get next free Rx buffer, remove from free list */ | 
 | 216 | 		element = rxq->rx_free.next; | 
 | 217 | 		rxb = list_entry(element, struct iwl_rx_mem_buffer, list); | 
 | 218 | 		list_del(element); | 
 | 219 |  | 
 | 220 | 		/* Point to Rx buffer via next RBD in circular buffer */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 221 | 		rxq->bd[rxq->write] = iwlagn_dma_addr2rbd_ptr(rxb->page_dma); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 222 | 		rxq->queue[rxq->write] = rxb; | 
 | 223 | 		rxq->write = (rxq->write + 1) & RX_QUEUE_MASK; | 
 | 224 | 		rxq->free_count--; | 
 | 225 | 	} | 
 | 226 | 	spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 227 | 	/* If the pre-allocated buffer pool is dropping low, schedule to | 
 | 228 | 	 * refill it */ | 
 | 229 | 	if (rxq->free_count <= RX_LOW_WATERMARK) | 
| Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 230 | 		schedule_work(&trans_pcie->rx_replenish); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 231 |  | 
 | 232 |  | 
 | 233 | 	/* If we've added more space for the firmware to place data, tell it. | 
 | 234 | 	 * Increment device's write pointer in multiples of 8. */ | 
 | 235 | 	if (rxq->write_actual != (rxq->write & ~0x7)) { | 
 | 236 | 		spin_lock_irqsave(&rxq->lock, flags); | 
 | 237 | 		rxq->need_update = 1; | 
 | 238 | 		spin_unlock_irqrestore(&rxq->lock, flags); | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 239 | 		iwl_rx_queue_update_write_ptr(trans, rxq); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 240 | 	} | 
 | 241 | } | 
 | 242 |  | 
 | 243 | /** | 
 | 244 |  * iwlagn_rx_replenish - Move all used packet from rx_used to rx_free | 
 | 245 |  * | 
 | 246 |  * When moving to rx_free an SKB is allocated for the slot. | 
 | 247 |  * | 
 | 248 |  * Also restock the Rx queue via iwl_rx_queue_restock. | 
 | 249 |  * This is called as a scheduled work item (except for during initialization) | 
 | 250 |  */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 251 | static void iwlagn_rx_allocate(struct iwl_trans *trans, gfp_t priority) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 252 | { | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 253 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 254 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 255 |  | 
 | 256 | 	struct iwl_rx_queue *rxq = &trans_pcie->rxq; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 257 | 	struct list_head *element; | 
 | 258 | 	struct iwl_rx_mem_buffer *rxb; | 
 | 259 | 	struct page *page; | 
 | 260 | 	unsigned long flags; | 
 | 261 | 	gfp_t gfp_mask = priority; | 
 | 262 |  | 
 | 263 | 	while (1) { | 
 | 264 | 		spin_lock_irqsave(&rxq->lock, flags); | 
 | 265 | 		if (list_empty(&rxq->rx_used)) { | 
 | 266 | 			spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 267 | 			return; | 
 | 268 | 		} | 
 | 269 | 		spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 270 |  | 
 | 271 | 		if (rxq->free_count > RX_LOW_WATERMARK) | 
 | 272 | 			gfp_mask |= __GFP_NOWARN; | 
 | 273 |  | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 274 | 		if (hw_params(trans).rx_page_order > 0) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 275 | 			gfp_mask |= __GFP_COMP; | 
 | 276 |  | 
 | 277 | 		/* Alloc a new receive buffer */ | 
| Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 278 | 		page = alloc_pages(gfp_mask, | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 279 | 				  hw_params(trans).rx_page_order); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 280 | 		if (!page) { | 
 | 281 | 			if (net_ratelimit()) | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 282 | 				IWL_DEBUG_INFO(trans, "alloc_pages failed, " | 
| Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 283 | 					   "order: %d\n", | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 284 | 					   hw_params(trans).rx_page_order); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 285 |  | 
 | 286 | 			if ((rxq->free_count <= RX_LOW_WATERMARK) && | 
 | 287 | 			    net_ratelimit()) | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 288 | 				IWL_CRIT(trans, "Failed to alloc_pages with %s." | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 289 | 					 "Only %u free buffers remaining.\n", | 
 | 290 | 					 priority == GFP_ATOMIC ? | 
 | 291 | 					 "GFP_ATOMIC" : "GFP_KERNEL", | 
 | 292 | 					 rxq->free_count); | 
 | 293 | 			/* We don't reschedule replenish work here -- we will | 
 | 294 | 			 * call the restock method and if it still needs | 
 | 295 | 			 * more buffers it will schedule replenish */ | 
 | 296 | 			return; | 
 | 297 | 		} | 
 | 298 |  | 
 | 299 | 		spin_lock_irqsave(&rxq->lock, flags); | 
 | 300 |  | 
 | 301 | 		if (list_empty(&rxq->rx_used)) { | 
 | 302 | 			spin_unlock_irqrestore(&rxq->lock, flags); | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 303 | 			__free_pages(page, hw_params(trans).rx_page_order); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 304 | 			return; | 
 | 305 | 		} | 
 | 306 | 		element = rxq->rx_used.next; | 
 | 307 | 		rxb = list_entry(element, struct iwl_rx_mem_buffer, list); | 
 | 308 | 		list_del(element); | 
 | 309 |  | 
 | 310 | 		spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 311 |  | 
 | 312 | 		BUG_ON(rxb->page); | 
 | 313 | 		rxb->page = page; | 
 | 314 | 		/* Get physical address of the RB */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 315 | 		rxb->page_dma = dma_map_page(trans->dev, page, 0, | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 316 | 				PAGE_SIZE << hw_params(trans).rx_page_order, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 317 | 				DMA_FROM_DEVICE); | 
 | 318 | 		/* dma address must be no more than 36 bits */ | 
 | 319 | 		BUG_ON(rxb->page_dma & ~DMA_BIT_MASK(36)); | 
 | 320 | 		/* and also 256 byte aligned! */ | 
 | 321 | 		BUG_ON(rxb->page_dma & DMA_BIT_MASK(8)); | 
 | 322 |  | 
 | 323 | 		spin_lock_irqsave(&rxq->lock, flags); | 
 | 324 |  | 
 | 325 | 		list_add_tail(&rxb->list, &rxq->rx_free); | 
 | 326 | 		rxq->free_count++; | 
 | 327 |  | 
 | 328 | 		spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 329 | 	} | 
 | 330 | } | 
 | 331 |  | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 332 | void iwlagn_rx_replenish(struct iwl_trans *trans) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 333 | { | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 334 | 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 335 | 	unsigned long flags; | 
 | 336 |  | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 337 | 	iwlagn_rx_allocate(trans, GFP_KERNEL); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 338 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 339 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 340 | 	iwlagn_rx_queue_restock(trans); | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 341 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 342 | } | 
 | 343 |  | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 344 | static void iwlagn_rx_replenish_now(struct iwl_trans *trans) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 345 | { | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 346 | 	iwlagn_rx_allocate(trans, GFP_ATOMIC); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 347 |  | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 348 | 	iwlagn_rx_queue_restock(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 349 | } | 
 | 350 |  | 
 | 351 | void iwl_bg_rx_replenish(struct work_struct *data) | 
 | 352 | { | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 353 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 354 | 	    container_of(data, struct iwl_trans_pcie, rx_replenish); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 355 |  | 
| Johannes Berg | 1ee158d | 2012-02-17 10:07:44 -0800 | [diff] [blame] | 356 | 	iwlagn_rx_replenish(trans_pcie->trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 357 | } | 
 | 358 |  | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 359 | static void iwl_rx_handle_rxbuf(struct iwl_trans *trans, | 
 | 360 | 				struct iwl_rx_mem_buffer *rxb) | 
 | 361 | { | 
 | 362 | 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 363 | 	struct iwl_rx_queue *rxq = &trans_pcie->rxq; | 
| Meenakshi Venkataraman | c6f600f | 2012-03-08 11:29:12 -0800 | [diff] [blame] | 364 | 	struct iwl_tx_queue *txq = &trans_pcie->txq[trans_pcie->cmd_queue]; | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 365 | 	struct iwl_device_cmd *cmd; | 
 | 366 | 	unsigned long flags; | 
 | 367 | 	int len, err; | 
 | 368 | 	u16 sequence; | 
 | 369 | 	struct iwl_rx_cmd_buffer rxcb; | 
 | 370 | 	struct iwl_rx_packet *pkt; | 
 | 371 | 	bool reclaim; | 
 | 372 | 	int index, cmd_index; | 
 | 373 |  | 
 | 374 | 	if (WARN_ON(!rxb)) | 
 | 375 | 		return; | 
 | 376 |  | 
 | 377 | 	dma_unmap_page(trans->dev, rxb->page_dma, | 
 | 378 | 		       PAGE_SIZE << hw_params(trans).rx_page_order, | 
 | 379 | 		       DMA_FROM_DEVICE); | 
 | 380 |  | 
 | 381 | 	rxcb._page = rxb->page; | 
 | 382 | 	pkt = rxb_addr(&rxcb); | 
 | 383 |  | 
 | 384 | 	IWL_DEBUG_RX(trans, "%s, 0x%02x\n", | 
 | 385 | 		     get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd); | 
 | 386 |  | 
 | 387 |  | 
 | 388 | 	len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK; | 
 | 389 | 	len += sizeof(u32); /* account for status word */ | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 390 | 	trace_iwlwifi_dev_rx(trans->dev, pkt, len); | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 391 |  | 
 | 392 | 	/* Reclaim a command buffer only if this packet is a response | 
 | 393 | 	 *   to a (driver-originated) command. | 
 | 394 | 	 * If the packet (e.g. Rx frame) originated from uCode, | 
 | 395 | 	 *   there is no command buffer to reclaim. | 
 | 396 | 	 * Ucode should set SEQ_RX_FRAME bit if ucode-originated, | 
 | 397 | 	 *   but apparently a few don't get set; catch them here. */ | 
| Johannes Berg | d663ee7 | 2012-03-10 13:00:07 -0800 | [diff] [blame] | 398 | 	reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME); | 
 | 399 | 	if (reclaim) { | 
 | 400 | 		int i; | 
 | 401 |  | 
 | 402 | 		for (i = 0; i < trans_pcie->n_no_reclaim_cmds; i++) { | 
 | 403 | 			if (trans_pcie->no_reclaim_cmds[i] == pkt->hdr.cmd) { | 
 | 404 | 				reclaim = false; | 
 | 405 | 				break; | 
 | 406 | 			} | 
 | 407 | 		} | 
 | 408 | 	} | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 409 |  | 
 | 410 | 	sequence = le16_to_cpu(pkt->hdr.sequence); | 
 | 411 | 	index = SEQ_TO_INDEX(sequence); | 
 | 412 | 	cmd_index = get_cmd_index(&txq->q, index); | 
 | 413 |  | 
 | 414 | 	if (reclaim) | 
 | 415 | 		cmd = txq->cmd[cmd_index]; | 
 | 416 | 	else | 
 | 417 | 		cmd = NULL; | 
 | 418 |  | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 419 | 	err = iwl_op_mode_rx(trans->op_mode, &rxcb, cmd); | 
 | 420 |  | 
 | 421 | 	/* | 
 | 422 | 	 * XXX: After here, we should always check rxcb._page | 
 | 423 | 	 * against NULL before touching it or its virtual | 
 | 424 | 	 * memory (pkt). Because some rx_handler might have | 
 | 425 | 	 * already taken or freed the pages. | 
 | 426 | 	 */ | 
 | 427 |  | 
 | 428 | 	if (reclaim) { | 
 | 429 | 		/* Invoke any callbacks, transfer the buffer to caller, | 
 | 430 | 		 * and fire off the (possibly) blocking | 
 | 431 | 		 * iwl_trans_send_cmd() | 
 | 432 | 		 * as we reclaim the driver command queue */ | 
 | 433 | 		if (rxcb._page) | 
 | 434 | 			iwl_tx_cmd_complete(trans, &rxcb, err); | 
 | 435 | 		else | 
 | 436 | 			IWL_WARN(trans, "Claim null rxb?\n"); | 
 | 437 | 	} | 
 | 438 |  | 
 | 439 | 	/* page was stolen from us */ | 
 | 440 | 	if (rxcb._page == NULL) | 
 | 441 | 		rxb->page = NULL; | 
 | 442 |  | 
 | 443 | 	/* Reuse the page if possible. For notification packets and | 
 | 444 | 	 * SKBs that fail to Rx correctly, add them back into the | 
 | 445 | 	 * rx_free list for reuse later. */ | 
 | 446 | 	spin_lock_irqsave(&rxq->lock, flags); | 
 | 447 | 	if (rxb->page != NULL) { | 
 | 448 | 		rxb->page_dma = | 
 | 449 | 			dma_map_page(trans->dev, rxb->page, 0, | 
 | 450 | 				PAGE_SIZE << hw_params(trans).rx_page_order, | 
 | 451 | 				DMA_FROM_DEVICE); | 
 | 452 | 		list_add_tail(&rxb->list, &rxq->rx_free); | 
 | 453 | 		rxq->free_count++; | 
 | 454 | 	} else | 
 | 455 | 		list_add_tail(&rxb->list, &rxq->rx_used); | 
 | 456 | 	spin_unlock_irqrestore(&rxq->lock, flags); | 
 | 457 | } | 
 | 458 |  | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 459 | /** | 
 | 460 |  * iwl_rx_handle - Main entry function for receiving responses from uCode | 
 | 461 |  * | 
 | 462 |  * Uses the priv->rx_handlers callback function array to invoke | 
 | 463 |  * the appropriate handlers, including command responses, | 
 | 464 |  * frame-received notifications, and other notifications. | 
 | 465 |  */ | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 466 | static void iwl_rx_handle(struct iwl_trans *trans) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 467 | { | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 468 | 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 469 | 	struct iwl_rx_queue *rxq = &trans_pcie->rxq; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 470 | 	u32 r, i; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 471 | 	u8 fill_rx = 0; | 
 | 472 | 	u32 count = 8; | 
 | 473 | 	int total_empty; | 
 | 474 |  | 
 | 475 | 	/* uCode's read index (stored in shared DRAM) indicates the last Rx | 
 | 476 | 	 * buffer that the driver may process (last buffer filled by ucode). */ | 
 | 477 | 	r = le16_to_cpu(rxq->rb_stts->closed_rb_num) &  0x0FFF; | 
 | 478 | 	i = rxq->read; | 
 | 479 |  | 
 | 480 | 	/* Rx interrupt, but nothing sent from uCode */ | 
 | 481 | 	if (i == r) | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 482 | 		IWL_DEBUG_RX(trans, "r = %d, i = %d\n", r, i); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 483 |  | 
 | 484 | 	/* calculate total frames need to be restock after handling RX */ | 
 | 485 | 	total_empty = r - rxq->write_actual; | 
 | 486 | 	if (total_empty < 0) | 
 | 487 | 		total_empty += RX_QUEUE_SIZE; | 
 | 488 |  | 
 | 489 | 	if (total_empty > (RX_QUEUE_SIZE / 2)) | 
 | 490 | 		fill_rx = 1; | 
 | 491 |  | 
 | 492 | 	while (i != r) { | 
| Johannes Berg | 48a2d66 | 2012-03-05 11:24:39 -0800 | [diff] [blame] | 493 | 		struct iwl_rx_mem_buffer *rxb; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 494 |  | 
 | 495 | 		rxb = rxq->queue[i]; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 496 | 		rxq->queue[i] = NULL; | 
 | 497 |  | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 498 | 		IWL_DEBUG_RX(trans, "rxbuf: r = %d, i = %d (%p)\n", rxb); | 
| Johannes Berg | 48a2d66 | 2012-03-05 11:24:39 -0800 | [diff] [blame] | 499 |  | 
| Johannes Berg | df2f321 | 2012-03-05 11:24:40 -0800 | [diff] [blame] | 500 | 		iwl_rx_handle_rxbuf(trans, rxb); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 501 |  | 
 | 502 | 		i = (i + 1) & RX_QUEUE_MASK; | 
 | 503 | 		/* If there are a lot of unused frames, | 
 | 504 | 		 * restock the Rx queue so ucode wont assert. */ | 
 | 505 | 		if (fill_rx) { | 
 | 506 | 			count++; | 
 | 507 | 			if (count >= 8) { | 
 | 508 | 				rxq->read = i; | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 509 | 				iwlagn_rx_replenish_now(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 510 | 				count = 0; | 
 | 511 | 			} | 
 | 512 | 		} | 
 | 513 | 	} | 
 | 514 |  | 
 | 515 | 	/* Backtrack one entry */ | 
 | 516 | 	rxq->read = i; | 
 | 517 | 	if (fill_rx) | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 518 | 		iwlagn_rx_replenish_now(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 519 | 	else | 
| Emmanuel Grumbach | 5a878bf | 2011-08-25 23:10:51 -0700 | [diff] [blame] | 520 | 		iwlagn_rx_queue_restock(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 521 | } | 
 | 522 |  | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 523 | static const char * const desc_lookup_text[] = { | 
 | 524 | 	"OK", | 
 | 525 | 	"FAIL", | 
 | 526 | 	"BAD_PARAM", | 
 | 527 | 	"BAD_CHECKSUM", | 
 | 528 | 	"NMI_INTERRUPT_WDG", | 
 | 529 | 	"SYSASSERT", | 
 | 530 | 	"FATAL_ERROR", | 
 | 531 | 	"BAD_COMMAND", | 
 | 532 | 	"HW_ERROR_TUNE_LOCK", | 
 | 533 | 	"HW_ERROR_TEMPERATURE", | 
 | 534 | 	"ILLEGAL_CHAN_FREQ", | 
 | 535 | 	"VCC_NOT_STABLE", | 
 | 536 | 	"FH_ERROR", | 
 | 537 | 	"NMI_INTERRUPT_HOST", | 
 | 538 | 	"NMI_INTERRUPT_ACTION_PT", | 
 | 539 | 	"NMI_INTERRUPT_UNKNOWN", | 
 | 540 | 	"UCODE_VERSION_MISMATCH", | 
 | 541 | 	"HW_ERROR_ABS_LOCK", | 
 | 542 | 	"HW_ERROR_CAL_LOCK_FAIL", | 
 | 543 | 	"NMI_INTERRUPT_INST_ACTION_PT", | 
 | 544 | 	"NMI_INTERRUPT_DATA_ACTION_PT", | 
 | 545 | 	"NMI_TRM_HW_ER", | 
 | 546 | 	"NMI_INTERRUPT_TRM", | 
 | 547 | 	"NMI_INTERRUPT_BREAK_POINT", | 
 | 548 | 	"DEBUG_0", | 
 | 549 | 	"DEBUG_1", | 
 | 550 | 	"DEBUG_2", | 
 | 551 | 	"DEBUG_3", | 
 | 552 | }; | 
 | 553 |  | 
 | 554 | static struct { char *name; u8 num; } advanced_lookup[] = { | 
 | 555 | 	{ "NMI_INTERRUPT_WDG", 0x34 }, | 
 | 556 | 	{ "SYSASSERT", 0x35 }, | 
 | 557 | 	{ "UCODE_VERSION_MISMATCH", 0x37 }, | 
 | 558 | 	{ "BAD_COMMAND", 0x38 }, | 
 | 559 | 	{ "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C }, | 
 | 560 | 	{ "FATAL_ERROR", 0x3D }, | 
 | 561 | 	{ "NMI_TRM_HW_ERR", 0x46 }, | 
 | 562 | 	{ "NMI_INTERRUPT_TRM", 0x4C }, | 
 | 563 | 	{ "NMI_INTERRUPT_BREAK_POINT", 0x54 }, | 
 | 564 | 	{ "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C }, | 
 | 565 | 	{ "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 }, | 
 | 566 | 	{ "NMI_INTERRUPT_HOST", 0x66 }, | 
 | 567 | 	{ "NMI_INTERRUPT_ACTION_PT", 0x7C }, | 
 | 568 | 	{ "NMI_INTERRUPT_UNKNOWN", 0x84 }, | 
 | 569 | 	{ "NMI_INTERRUPT_INST_ACTION_PT", 0x86 }, | 
 | 570 | 	{ "ADVANCED_SYSASSERT", 0 }, | 
 | 571 | }; | 
 | 572 |  | 
 | 573 | static const char *desc_lookup(u32 num) | 
 | 574 | { | 
 | 575 | 	int i; | 
 | 576 | 	int max = ARRAY_SIZE(desc_lookup_text); | 
 | 577 |  | 
 | 578 | 	if (num < max) | 
 | 579 | 		return desc_lookup_text[num]; | 
 | 580 |  | 
 | 581 | 	max = ARRAY_SIZE(advanced_lookup) - 1; | 
 | 582 | 	for (i = 0; i < max; i++) { | 
 | 583 | 		if (advanced_lookup[i].num == num) | 
 | 584 | 			break; | 
 | 585 | 	} | 
 | 586 | 	return advanced_lookup[i].name; | 
 | 587 | } | 
 | 588 |  | 
 | 589 | #define ERROR_START_OFFSET  (1 * sizeof(u32)) | 
 | 590 | #define ERROR_ELEM_SIZE     (7 * sizeof(u32)) | 
 | 591 |  | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 592 | static void iwl_dump_nic_error_log(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 593 | { | 
 | 594 | 	u32 base; | 
 | 595 | 	struct iwl_error_event_table table; | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 596 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 597 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 598 |  | 
| Don Fry | ae6130f | 2011-11-30 16:12:59 -0800 | [diff] [blame] | 599 | 	base = trans->shrd->device_pointers.error_event_table; | 
| Don Fry | 3d6acef | 2011-11-28 17:05:01 -0800 | [diff] [blame] | 600 | 	if (trans->shrd->ucode_type == IWL_UCODE_INIT) { | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 601 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 602 | 			base = trans->shrd->fw->init_errlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 603 | 	} else { | 
 | 604 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 605 | 			base = trans->shrd->fw->inst_errlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 606 | 	} | 
 | 607 |  | 
 | 608 | 	if (!iwlagn_hw_valid_rtc_data_addr(base)) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 609 | 		IWL_ERR(trans, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 610 | 			"Not valid error log pointer 0x%08X for %s uCode\n", | 
 | 611 | 			base, | 
| Don Fry | 3d6acef | 2011-11-28 17:05:01 -0800 | [diff] [blame] | 612 | 			(trans->shrd->ucode_type == IWL_UCODE_INIT) | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 613 | 					? "Init" : "RT"); | 
 | 614 | 		return; | 
 | 615 | 	} | 
 | 616 |  | 
| Don Fry | 8655112 | 2012-02-07 14:03:55 -0800 | [diff] [blame] | 617 | 	iwl_read_targ_mem_words(trans, base, &table, sizeof(table)); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 618 |  | 
 | 619 | 	if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 620 | 		IWL_ERR(trans, "Start IWL Error Log Dump:\n"); | 
 | 621 | 		IWL_ERR(trans, "Status: 0x%08lX, count: %d\n", | 
 | 622 | 			trans->shrd->status, table.valid); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 623 | 	} | 
 | 624 |  | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 625 | 	trans_pcie->isr_stats.err_code = table.error_id; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 626 |  | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 627 | 	trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 628 | 				      table.data1, table.data2, table.line, | 
 | 629 | 				      table.blink1, table.blink2, table.ilink1, | 
 | 630 | 				      table.ilink2, table.bcon_time, table.gp1, | 
 | 631 | 				      table.gp2, table.gp3, table.ucode_ver, | 
 | 632 | 				      table.hw_ver, table.brd_ver); | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 633 | 	IWL_ERR(trans, "0x%08X | %-28s\n", table.error_id, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 634 | 		desc_lookup(table.error_id)); | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 635 | 	IWL_ERR(trans, "0x%08X | uPc\n", table.pc); | 
 | 636 | 	IWL_ERR(trans, "0x%08X | branchlink1\n", table.blink1); | 
 | 637 | 	IWL_ERR(trans, "0x%08X | branchlink2\n", table.blink2); | 
 | 638 | 	IWL_ERR(trans, "0x%08X | interruptlink1\n", table.ilink1); | 
 | 639 | 	IWL_ERR(trans, "0x%08X | interruptlink2\n", table.ilink2); | 
 | 640 | 	IWL_ERR(trans, "0x%08X | data1\n", table.data1); | 
 | 641 | 	IWL_ERR(trans, "0x%08X | data2\n", table.data2); | 
 | 642 | 	IWL_ERR(trans, "0x%08X | line\n", table.line); | 
 | 643 | 	IWL_ERR(trans, "0x%08X | beacon time\n", table.bcon_time); | 
 | 644 | 	IWL_ERR(trans, "0x%08X | tsf low\n", table.tsf_low); | 
 | 645 | 	IWL_ERR(trans, "0x%08X | tsf hi\n", table.tsf_hi); | 
 | 646 | 	IWL_ERR(trans, "0x%08X | time gp1\n", table.gp1); | 
 | 647 | 	IWL_ERR(trans, "0x%08X | time gp2\n", table.gp2); | 
 | 648 | 	IWL_ERR(trans, "0x%08X | time gp3\n", table.gp3); | 
 | 649 | 	IWL_ERR(trans, "0x%08X | uCode version\n", table.ucode_ver); | 
 | 650 | 	IWL_ERR(trans, "0x%08X | hw version\n", table.hw_ver); | 
 | 651 | 	IWL_ERR(trans, "0x%08X | board version\n", table.brd_ver); | 
 | 652 | 	IWL_ERR(trans, "0x%08X | hcmd\n", table.hcmd); | 
| Wey-Yi Guy | d332f59 | 2011-11-30 12:32:42 -0800 | [diff] [blame] | 653 |  | 
 | 654 | 	IWL_ERR(trans, "0x%08X | isr0\n", table.isr0); | 
 | 655 | 	IWL_ERR(trans, "0x%08X | isr1\n", table.isr1); | 
 | 656 | 	IWL_ERR(trans, "0x%08X | isr2\n", table.isr2); | 
 | 657 | 	IWL_ERR(trans, "0x%08X | isr3\n", table.isr3); | 
 | 658 | 	IWL_ERR(trans, "0x%08X | isr4\n", table.isr4); | 
 | 659 | 	IWL_ERR(trans, "0x%08X | isr_pref\n", table.isr_pref); | 
 | 660 | 	IWL_ERR(trans, "0x%08X | wait_event\n", table.wait_event); | 
 | 661 | 	IWL_ERR(trans, "0x%08X | l2p_control\n", table.l2p_control); | 
 | 662 | 	IWL_ERR(trans, "0x%08X | l2p_duration\n", table.l2p_duration); | 
 | 663 | 	IWL_ERR(trans, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid); | 
 | 664 | 	IWL_ERR(trans, "0x%08X | l2p_addr_match\n", table.l2p_addr_match); | 
 | 665 | 	IWL_ERR(trans, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel); | 
 | 666 | 	IWL_ERR(trans, "0x%08X | timestamp\n", table.u_timestamp); | 
 | 667 | 	IWL_ERR(trans, "0x%08X | flow_handler\n", table.flow_handler); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 668 | } | 
 | 669 |  | 
 | 670 | /** | 
 | 671 |  * iwl_irq_handle_error - called for HW or SW error interrupt from card | 
 | 672 |  */ | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 673 | static void iwl_irq_handle_error(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 674 | { | 
 | 675 | 	/* W/A for WiFi/WiMAX coex and WiMAX own the RF */ | 
| Emmanuel Grumbach | ff6e75c | 2012-02-12 15:21:08 +0200 | [diff] [blame] | 676 | 	if (cfg(trans)->internal_wimax_coex && | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 677 | 	    (!(iwl_read_prph(trans, APMG_CLK_CTRL_REG) & | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 678 | 			APMS_CLK_VAL_MRB_FUNC_MODE) || | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 679 | 	     (iwl_read_prph(trans, APMG_PS_CTRL_REG) & | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 680 | 			APMG_PS_CTRL_VAL_RESET_REQ))) { | 
 | 681 | 		/* | 
 | 682 | 		 * Keep the restart process from trying to send host | 
 | 683 | 		 * commands by clearing the ready bit. | 
 | 684 | 		 */ | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 685 | 		clear_bit(STATUS_READY, &trans->shrd->status); | 
 | 686 | 		clear_bit(STATUS_HCMD_ACTIVE, &trans->shrd->status); | 
| Meenakshi Venkataraman | 69a10b2 | 2012-03-10 13:00:09 -0800 | [diff] [blame] | 687 | 		wake_up(&trans->wait_command_queue); | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 688 | 		IWL_ERR(trans, "RF is used by WiMAX\n"); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 689 | 		return; | 
 | 690 | 	} | 
 | 691 |  | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 692 | 	IWL_ERR(trans, "Loaded firmware version: %s\n", | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 693 | 		trans->shrd->fw->fw_version); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 694 |  | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 695 | 	iwl_dump_nic_error_log(trans); | 
 | 696 | 	iwl_dump_csr(trans); | 
 | 697 | 	iwl_dump_fh(trans, NULL, false); | 
 | 698 | 	iwl_dump_nic_event_log(trans, false, NULL, false); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 699 |  | 
| Emmanuel Grumbach | bcb9321 | 2012-02-09 16:08:15 +0200 | [diff] [blame] | 700 | 	iwl_op_mode_nic_error(trans->op_mode); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 701 | } | 
 | 702 |  | 
 | 703 | #define EVENT_START_OFFSET  (4 * sizeof(u32)) | 
 | 704 |  | 
 | 705 | /** | 
 | 706 |  * iwl_print_event_log - Dump error event log to syslog | 
 | 707 |  * | 
 | 708 |  */ | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 709 | static int iwl_print_event_log(struct iwl_trans *trans, u32 start_idx, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 710 | 			       u32 num_events, u32 mode, | 
 | 711 | 			       int pos, char **buf, size_t bufsz) | 
 | 712 | { | 
 | 713 | 	u32 i; | 
 | 714 | 	u32 base;       /* SRAM byte address of event log header */ | 
 | 715 | 	u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */ | 
 | 716 | 	u32 ptr;        /* SRAM byte address of log data */ | 
 | 717 | 	u32 ev, time, data; /* event log data */ | 
 | 718 | 	unsigned long reg_flags; | 
 | 719 |  | 
 | 720 | 	if (num_events == 0) | 
 | 721 | 		return pos; | 
 | 722 |  | 
| Don Fry | ae6130f | 2011-11-30 16:12:59 -0800 | [diff] [blame] | 723 | 	base = trans->shrd->device_pointers.log_event_table; | 
| Don Fry | 3d6acef | 2011-11-28 17:05:01 -0800 | [diff] [blame] | 724 | 	if (trans->shrd->ucode_type == IWL_UCODE_INIT) { | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 725 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 726 | 			base = trans->shrd->fw->init_evtlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 727 | 	} else { | 
 | 728 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 729 | 			base = trans->shrd->fw->inst_evtlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 730 | 	} | 
 | 731 |  | 
 | 732 | 	if (mode == 0) | 
 | 733 | 		event_size = 2 * sizeof(u32); | 
 | 734 | 	else | 
 | 735 | 		event_size = 3 * sizeof(u32); | 
 | 736 |  | 
 | 737 | 	ptr = base + EVENT_START_OFFSET + (start_idx * event_size); | 
 | 738 |  | 
 | 739 | 	/* Make sure device is powered up for SRAM reads */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 740 | 	spin_lock_irqsave(&trans->reg_lock, reg_flags); | 
| Stanislaw Gruszka | bfe4b80 | 2012-03-07 09:52:24 -0800 | [diff] [blame] | 741 | 	if (unlikely(!iwl_grab_nic_access(trans))) | 
 | 742 | 		goto out_unlock; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 743 |  | 
 | 744 | 	/* Set starting address; reads will auto-increment */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 745 | 	iwl_write32(trans, HBUS_TARG_MEM_RADDR, ptr); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 746 |  | 
 | 747 | 	/* "time" is actually "data" for mode 0 (no timestamp). | 
 | 748 | 	* place event id # at far right for easier visual parsing. */ | 
 | 749 | 	for (i = 0; i < num_events; i++) { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 750 | 		ev = iwl_read32(trans, HBUS_TARG_MEM_RDAT); | 
 | 751 | 		time = iwl_read32(trans, HBUS_TARG_MEM_RDAT); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 752 | 		if (mode == 0) { | 
 | 753 | 			/* data, ev */ | 
 | 754 | 			if (bufsz) { | 
 | 755 | 				pos += scnprintf(*buf + pos, bufsz - pos, | 
 | 756 | 						"EVT_LOG:0x%08x:%04u\n", | 
 | 757 | 						time, ev); | 
 | 758 | 			} else { | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 759 | 				trace_iwlwifi_dev_ucode_event(trans->dev, 0, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 760 | 					time, ev); | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 761 | 				IWL_ERR(trans, "EVT_LOG:0x%08x:%04u\n", | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 762 | 					time, ev); | 
 | 763 | 			} | 
 | 764 | 		} else { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 765 | 			data = iwl_read32(trans, HBUS_TARG_MEM_RDAT); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 766 | 			if (bufsz) { | 
 | 767 | 				pos += scnprintf(*buf + pos, bufsz - pos, | 
 | 768 | 						"EVT_LOGT:%010u:0x%08x:%04u\n", | 
 | 769 | 						 time, data, ev); | 
 | 770 | 			} else { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 771 | 				IWL_ERR(trans, "EVT_LOGT:%010u:0x%08x:%04u\n", | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 772 | 					time, data, ev); | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 773 | 				trace_iwlwifi_dev_ucode_event(trans->dev, time, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 774 | 					data, ev); | 
 | 775 | 			} | 
 | 776 | 		} | 
 | 777 | 	} | 
 | 778 |  | 
 | 779 | 	/* Allow device to power down */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 780 | 	iwl_release_nic_access(trans); | 
| Stanislaw Gruszka | bfe4b80 | 2012-03-07 09:52:24 -0800 | [diff] [blame] | 781 | out_unlock: | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 782 | 	spin_unlock_irqrestore(&trans->reg_lock, reg_flags); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 783 | 	return pos; | 
 | 784 | } | 
 | 785 |  | 
 | 786 | /** | 
 | 787 |  * iwl_print_last_event_logs - Dump the newest # of event log to syslog | 
 | 788 |  */ | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 789 | static int iwl_print_last_event_logs(struct iwl_trans *trans, u32 capacity, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 790 | 				    u32 num_wraps, u32 next_entry, | 
 | 791 | 				    u32 size, u32 mode, | 
 | 792 | 				    int pos, char **buf, size_t bufsz) | 
 | 793 | { | 
 | 794 | 	/* | 
 | 795 | 	 * display the newest DEFAULT_LOG_ENTRIES entries | 
 | 796 | 	 * i.e the entries just before the next ont that uCode would fill. | 
 | 797 | 	 */ | 
 | 798 | 	if (num_wraps) { | 
 | 799 | 		if (next_entry < size) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 800 | 			pos = iwl_print_event_log(trans, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 801 | 						capacity - (size - next_entry), | 
 | 802 | 						size - next_entry, mode, | 
 | 803 | 						pos, buf, bufsz); | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 804 | 			pos = iwl_print_event_log(trans, 0, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 805 | 						  next_entry, mode, | 
 | 806 | 						  pos, buf, bufsz); | 
 | 807 | 		} else | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 808 | 			pos = iwl_print_event_log(trans, next_entry - size, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 809 | 						  size, mode, pos, buf, bufsz); | 
 | 810 | 	} else { | 
 | 811 | 		if (next_entry < size) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 812 | 			pos = iwl_print_event_log(trans, 0, next_entry, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 813 | 						  mode, pos, buf, bufsz); | 
 | 814 | 		} else { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 815 | 			pos = iwl_print_event_log(trans, next_entry - size, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 816 | 						  size, mode, pos, buf, bufsz); | 
 | 817 | 		} | 
 | 818 | 	} | 
 | 819 | 	return pos; | 
 | 820 | } | 
 | 821 |  | 
 | 822 | #define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20) | 
 | 823 |  | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 824 | int iwl_dump_nic_event_log(struct iwl_trans *trans, bool full_log, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 825 | 			    char **buf, bool display) | 
 | 826 | { | 
 | 827 | 	u32 base;       /* SRAM byte address of event log header */ | 
 | 828 | 	u32 capacity;   /* event log capacity in # entries */ | 
 | 829 | 	u32 mode;       /* 0 - no timestamp, 1 - timestamp recorded */ | 
 | 830 | 	u32 num_wraps;  /* # times uCode wrapped to top of log */ | 
 | 831 | 	u32 next_entry; /* index of next entry to be written by uCode */ | 
 | 832 | 	u32 size;       /* # entries that we'll print */ | 
 | 833 | 	u32 logsize; | 
 | 834 | 	int pos = 0; | 
 | 835 | 	size_t bufsz = 0; | 
 | 836 |  | 
| Don Fry | ae6130f | 2011-11-30 16:12:59 -0800 | [diff] [blame] | 837 | 	base = trans->shrd->device_pointers.log_event_table; | 
| Don Fry | 3d6acef | 2011-11-28 17:05:01 -0800 | [diff] [blame] | 838 | 	if (trans->shrd->ucode_type == IWL_UCODE_INIT) { | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 839 | 		logsize = trans->shrd->fw->init_evtlog_size; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 840 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 841 | 			base = trans->shrd->fw->init_evtlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 842 | 	} else { | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 843 | 		logsize = trans->shrd->fw->inst_evtlog_size; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 844 | 		if (!base) | 
| Johannes Berg | 0692fe4 | 2012-03-06 13:30:37 -0800 | [diff] [blame] | 845 | 			base = trans->shrd->fw->inst_evtlog_ptr; | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 846 | 	} | 
 | 847 |  | 
 | 848 | 	if (!iwlagn_hw_valid_rtc_data_addr(base)) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 849 | 		IWL_ERR(trans, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 850 | 			"Invalid event log pointer 0x%08X for %s uCode\n", | 
 | 851 | 			base, | 
| Don Fry | 3d6acef | 2011-11-28 17:05:01 -0800 | [diff] [blame] | 852 | 			(trans->shrd->ucode_type == IWL_UCODE_INIT) | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 853 | 					? "Init" : "RT"); | 
 | 854 | 		return -EINVAL; | 
 | 855 | 	} | 
 | 856 |  | 
 | 857 | 	/* event log header */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 858 | 	capacity = iwl_read_targ_mem(trans, base); | 
 | 859 | 	mode = iwl_read_targ_mem(trans, base + (1 * sizeof(u32))); | 
 | 860 | 	num_wraps = iwl_read_targ_mem(trans, base + (2 * sizeof(u32))); | 
 | 861 | 	next_entry = iwl_read_targ_mem(trans, base + (3 * sizeof(u32))); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 862 |  | 
 | 863 | 	if (capacity > logsize) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 864 | 		IWL_ERR(trans, "Log capacity %d is bogus, limit to %d " | 
 | 865 | 			"entries\n", capacity, logsize); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 866 | 		capacity = logsize; | 
 | 867 | 	} | 
 | 868 |  | 
 | 869 | 	if (next_entry > logsize) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 870 | 		IWL_ERR(trans, "Log write index %d is bogus, limit to %d\n", | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 871 | 			next_entry, logsize); | 
 | 872 | 		next_entry = logsize; | 
 | 873 | 	} | 
 | 874 |  | 
 | 875 | 	size = num_wraps ? capacity : next_entry; | 
 | 876 |  | 
 | 877 | 	/* bail out if nothing in log */ | 
 | 878 | 	if (size == 0) { | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 879 | 		IWL_ERR(trans, "Start IWL Event Log Dump: nothing in log\n"); | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 880 | 		return pos; | 
 | 881 | 	} | 
 | 882 |  | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 883 | #ifdef CONFIG_IWLWIFI_DEBUG | 
| Johannes Berg | a8bceb3 | 2012-03-05 11:24:30 -0800 | [diff] [blame] | 884 | 	if (!(iwl_have_debug_level(IWL_DL_FW_ERRORS)) && !full_log) | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 885 | 		size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) | 
 | 886 | 			? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; | 
 | 887 | #else | 
 | 888 | 	size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES) | 
 | 889 | 		? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size; | 
 | 890 | #endif | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 891 | 	IWL_ERR(trans, "Start IWL Event Log Dump: display last %u entries\n", | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 892 | 		size); | 
 | 893 |  | 
 | 894 | #ifdef CONFIG_IWLWIFI_DEBUG | 
 | 895 | 	if (display) { | 
 | 896 | 		if (full_log) | 
 | 897 | 			bufsz = capacity * 48; | 
 | 898 | 		else | 
 | 899 | 			bufsz = size * 48; | 
 | 900 | 		*buf = kmalloc(bufsz, GFP_KERNEL); | 
 | 901 | 		if (!*buf) | 
 | 902 | 			return -ENOMEM; | 
 | 903 | 	} | 
| Johannes Berg | a8bceb3 | 2012-03-05 11:24:30 -0800 | [diff] [blame] | 904 | 	if (iwl_have_debug_level(IWL_DL_FW_ERRORS) || full_log) { | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 905 | 		/* | 
 | 906 | 		 * if uCode has wrapped back to top of log, | 
 | 907 | 		 * start at the oldest entry, | 
 | 908 | 		 * i.e the next one that uCode would fill. | 
 | 909 | 		 */ | 
 | 910 | 		if (num_wraps) | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 911 | 			pos = iwl_print_event_log(trans, next_entry, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 912 | 						capacity - next_entry, mode, | 
 | 913 | 						pos, buf, bufsz); | 
 | 914 | 		/* (then/else) start at top of log */ | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 915 | 		pos = iwl_print_event_log(trans, 0, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 916 | 					  next_entry, mode, pos, buf, bufsz); | 
 | 917 | 	} else | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 918 | 		pos = iwl_print_last_event_logs(trans, capacity, num_wraps, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 919 | 						next_entry, size, mode, | 
 | 920 | 						pos, buf, bufsz); | 
 | 921 | #else | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 922 | 	pos = iwl_print_last_event_logs(trans, capacity, num_wraps, | 
| Emmanuel Grumbach | 7ff9470 | 2011-08-25 23:10:54 -0700 | [diff] [blame] | 923 | 					next_entry, size, mode, | 
 | 924 | 					pos, buf, bufsz); | 
 | 925 | #endif | 
 | 926 | 	return pos; | 
 | 927 | } | 
 | 928 |  | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 929 | /* tasklet for iwlagn interrupt */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 930 | void iwl_irq_tasklet(struct iwl_trans *trans) | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 931 | { | 
 | 932 | 	u32 inta = 0; | 
 | 933 | 	u32 handled = 0; | 
 | 934 | 	unsigned long flags; | 
 | 935 | 	u32 i; | 
 | 936 | #ifdef CONFIG_IWLWIFI_DEBUG | 
 | 937 | 	u32 inta_mask; | 
 | 938 | #endif | 
 | 939 |  | 
| Emmanuel Grumbach | 3e10cae | 2011-09-06 09:31:18 -0700 | [diff] [blame] | 940 | 	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 941 | 	struct isr_statistics *isr_stats = &trans_pcie->isr_stats; | 
 | 942 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 943 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 944 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 945 |  | 
 | 946 | 	/* Ack/clear/reset pending uCode interrupts. | 
 | 947 | 	 * Note:  Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS, | 
 | 948 | 	 */ | 
 | 949 | 	/* There is a hardware bug in the interrupt mask function that some | 
 | 950 | 	 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if | 
 | 951 | 	 * they are disabled in the CSR_INT_MASK register. Furthermore the | 
 | 952 | 	 * ICT interrupt handling mechanism has another bug that might cause | 
 | 953 | 	 * these unmasked interrupts fail to be detected. We workaround the | 
 | 954 | 	 * hardware bugs here by ACKing all the possible interrupts so that | 
 | 955 | 	 * interrupt coalescing can still be achieved. | 
 | 956 | 	 */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 957 | 	iwl_write32(trans, CSR_INT, | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 958 | 		trans_pcie->inta | ~trans_pcie->inta_mask); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 959 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 960 | 	inta = trans_pcie->inta; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 961 |  | 
 | 962 | #ifdef CONFIG_IWLWIFI_DEBUG | 
| Johannes Berg | a8bceb3 | 2012-03-05 11:24:30 -0800 | [diff] [blame] | 963 | 	if (iwl_have_debug_level(IWL_DL_ISR)) { | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 964 | 		/* just for debug */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 965 | 		inta_mask = iwl_read32(trans, CSR_INT_MASK); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 966 | 		IWL_DEBUG_ISR(trans, "inta 0x%08x, enabled 0x%08x\n ", | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 967 | 				inta, inta_mask); | 
 | 968 | 	} | 
 | 969 | #endif | 
 | 970 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 971 | 	/* saved interrupt in inta variable now we can reset trans_pcie->inta */ | 
 | 972 | 	trans_pcie->inta = 0; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 973 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 974 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Johannes Berg | b49ba04 | 2012-01-19 08:20:57 -0800 | [diff] [blame] | 975 |  | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 976 | 	/* Now service all interrupt bits discovered above. */ | 
 | 977 | 	if (inta & CSR_INT_BIT_HW_ERR) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 978 | 		IWL_ERR(trans, "Hardware error detected.  Restarting.\n"); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 979 |  | 
 | 980 | 		/* Tell the device to stop sending interrupts */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 981 | 		iwl_disable_interrupts(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 982 |  | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 983 | 		isr_stats->hw++; | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 984 | 		iwl_irq_handle_error(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 985 |  | 
 | 986 | 		handled |= CSR_INT_BIT_HW_ERR; | 
 | 987 |  | 
 | 988 | 		return; | 
 | 989 | 	} | 
 | 990 |  | 
 | 991 | #ifdef CONFIG_IWLWIFI_DEBUG | 
| Johannes Berg | a8bceb3 | 2012-03-05 11:24:30 -0800 | [diff] [blame] | 992 | 	if (iwl_have_debug_level(IWL_DL_ISR)) { | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 993 | 		/* NIC fires this, but we don't use it, redundant with WAKEUP */ | 
 | 994 | 		if (inta & CSR_INT_BIT_SCD) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 995 | 			IWL_DEBUG_ISR(trans, "Scheduler finished to transmit " | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 996 | 				      "the frame/frames.\n"); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 997 | 			isr_stats->sch++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 998 | 		} | 
 | 999 |  | 
 | 1000 | 		/* Alive notification via Rx interrupt will do the real work */ | 
 | 1001 | 		if (inta & CSR_INT_BIT_ALIVE) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1002 | 			IWL_DEBUG_ISR(trans, "Alive interrupt\n"); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1003 | 			isr_stats->alive++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1004 | 		} | 
 | 1005 | 	} | 
 | 1006 | #endif | 
 | 1007 | 	/* Safely ignore these bits for debug checks below */ | 
 | 1008 | 	inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE); | 
 | 1009 |  | 
 | 1010 | 	/* HW RF KILL switch toggled */ | 
 | 1011 | 	if (inta & CSR_INT_BIT_RF_KILL) { | 
| Johannes Berg | c9eec95 | 2012-03-06 13:30:43 -0800 | [diff] [blame] | 1012 | 		bool hw_rfkill; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1013 |  | 
| Johannes Berg | c9eec95 | 2012-03-06 13:30:43 -0800 | [diff] [blame] | 1014 | 		hw_rfkill = !(iwl_read32(trans, CSR_GP_CNTRL) & | 
 | 1015 | 				CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1016 | 		IWL_WARN(trans, "RF_KILL bit toggled to %s.\n", | 
| Johannes Berg | c9eec95 | 2012-03-06 13:30:43 -0800 | [diff] [blame] | 1017 | 				hw_rfkill ? "disable radio" : "enable radio"); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1018 |  | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1019 | 		isr_stats->rfkill++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1020 |  | 
| Johannes Berg | c9eec95 | 2012-03-06 13:30:43 -0800 | [diff] [blame] | 1021 | 		iwl_op_mode_hw_rf_kill(trans->op_mode, hw_rfkill); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1022 |  | 
 | 1023 | 		handled |= CSR_INT_BIT_RF_KILL; | 
 | 1024 | 	} | 
 | 1025 |  | 
 | 1026 | 	/* Chip got too hot and stopped itself */ | 
 | 1027 | 	if (inta & CSR_INT_BIT_CT_KILL) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1028 | 		IWL_ERR(trans, "Microcode CT kill error detected.\n"); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1029 | 		isr_stats->ctkill++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1030 | 		handled |= CSR_INT_BIT_CT_KILL; | 
 | 1031 | 	} | 
 | 1032 |  | 
 | 1033 | 	/* Error detected by uCode */ | 
 | 1034 | 	if (inta & CSR_INT_BIT_SW_ERR) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1035 | 		IWL_ERR(trans, "Microcode SW error detected. " | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1036 | 			" Restarting 0x%X.\n", inta); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1037 | 		isr_stats->sw++; | 
| Emmanuel Grumbach | 6bb7884 | 2011-08-25 23:11:09 -0700 | [diff] [blame] | 1038 | 		iwl_irq_handle_error(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1039 | 		handled |= CSR_INT_BIT_SW_ERR; | 
 | 1040 | 	} | 
 | 1041 |  | 
 | 1042 | 	/* uCode wakes up after power-down sleep */ | 
 | 1043 | 	if (inta & CSR_INT_BIT_WAKEUP) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1044 | 		IWL_DEBUG_ISR(trans, "Wakeup interrupt\n"); | 
 | 1045 | 		iwl_rx_queue_update_write_ptr(trans, &trans_pcie->rxq); | 
| Wey-Yi Guy | 1745e44 | 2012-03-09 11:13:40 -0800 | [diff] [blame] | 1046 | 		for (i = 0; i < cfg(trans)->base_params->num_of_queues; i++) | 
| Emmanuel Grumbach | fd65693 | 2011-08-25 23:11:19 -0700 | [diff] [blame] | 1047 | 			iwl_txq_update_write_ptr(trans, | 
| Emmanuel Grumbach | 8ad71be | 2011-08-25 23:11:32 -0700 | [diff] [blame] | 1048 | 						 &trans_pcie->txq[i]); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1049 |  | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1050 | 		isr_stats->wakeup++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1051 |  | 
 | 1052 | 		handled |= CSR_INT_BIT_WAKEUP; | 
 | 1053 | 	} | 
 | 1054 |  | 
 | 1055 | 	/* All uCode command responses, including Tx command responses, | 
 | 1056 | 	 * Rx "responses" (frame-received notification), and other | 
 | 1057 | 	 * notifications from uCode come through here*/ | 
 | 1058 | 	if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX | | 
 | 1059 | 			CSR_INT_BIT_RX_PERIODIC)) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1060 | 		IWL_DEBUG_ISR(trans, "Rx interrupt\n"); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1061 | 		if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) { | 
 | 1062 | 			handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX); | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1063 | 			iwl_write32(trans, CSR_FH_INT_STATUS, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1064 | 					CSR_FH_INT_RX_MASK); | 
 | 1065 | 		} | 
 | 1066 | 		if (inta & CSR_INT_BIT_RX_PERIODIC) { | 
 | 1067 | 			handled |= CSR_INT_BIT_RX_PERIODIC; | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1068 | 			iwl_write32(trans, | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1069 | 				CSR_INT, CSR_INT_BIT_RX_PERIODIC); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1070 | 		} | 
 | 1071 | 		/* Sending RX interrupt require many steps to be done in the | 
 | 1072 | 		 * the device: | 
 | 1073 | 		 * 1- write interrupt to current index in ICT table. | 
 | 1074 | 		 * 2- dma RX frame. | 
 | 1075 | 		 * 3- update RX shared data to indicate last write index. | 
 | 1076 | 		 * 4- send interrupt. | 
 | 1077 | 		 * This could lead to RX race, driver could receive RX interrupt | 
 | 1078 | 		 * but the shared data changes does not reflect this; | 
 | 1079 | 		 * periodic interrupt will detect any dangling Rx activity. | 
 | 1080 | 		 */ | 
 | 1081 |  | 
 | 1082 | 		/* Disable periodic interrupt; we use it as just a one-shot. */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1083 | 		iwl_write8(trans, CSR_INT_PERIODIC_REG, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1084 | 			    CSR_INT_PERIODIC_DIS); | 
| Gregory Greenman | a591697 | 2012-01-10 19:22:56 +0200 | [diff] [blame] | 1085 | #ifdef CONFIG_IWLWIFI_IDI | 
 | 1086 | 		iwl_amfh_rx_handler(); | 
 | 1087 | #else | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1088 | 		iwl_rx_handle(trans); | 
| Gregory Greenman | a591697 | 2012-01-10 19:22:56 +0200 | [diff] [blame] | 1089 | #endif | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1090 | 		/* | 
 | 1091 | 		 * Enable periodic interrupt in 8 msec only if we received | 
 | 1092 | 		 * real RX interrupt (instead of just periodic int), to catch | 
 | 1093 | 		 * any dangling Rx interrupt.  If it was just the periodic | 
 | 1094 | 		 * interrupt, there was no dangling Rx activity, and no need | 
 | 1095 | 		 * to extend the periodic interrupt; one-shot is enough. | 
 | 1096 | 		 */ | 
 | 1097 | 		if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1098 | 			iwl_write8(trans, CSR_INT_PERIODIC_REG, | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1099 | 				    CSR_INT_PERIODIC_ENA); | 
 | 1100 |  | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1101 | 		isr_stats->rx++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1102 | 	} | 
 | 1103 |  | 
 | 1104 | 	/* This "Tx" DMA channel is used only for loading uCode */ | 
 | 1105 | 	if (inta & CSR_INT_BIT_FH_TX) { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1106 | 		iwl_write32(trans, CSR_FH_INT_STATUS, CSR_FH_INT_TX_MASK); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1107 | 		IWL_DEBUG_ISR(trans, "uCode load interrupt\n"); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1108 | 		isr_stats->tx++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1109 | 		handled |= CSR_INT_BIT_FH_TX; | 
 | 1110 | 		/* Wake up uCode load routine, now that load is complete */ | 
| Johannes Berg | 13df1aa | 2012-03-06 13:31:00 -0800 | [diff] [blame] | 1111 | 		trans_pcie->ucode_write_complete = true; | 
 | 1112 | 		wake_up(&trans_pcie->ucode_write_waitq); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1113 | 	} | 
 | 1114 |  | 
 | 1115 | 	if (inta & ~handled) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1116 | 		IWL_ERR(trans, "Unhandled INTA bits 0x%08x\n", inta & ~handled); | 
| Emmanuel Grumbach | 1f7b617 | 2011-08-25 23:10:59 -0700 | [diff] [blame] | 1117 | 		isr_stats->unhandled++; | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1118 | 	} | 
 | 1119 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1120 | 	if (inta & ~(trans_pcie->inta_mask)) { | 
 | 1121 | 		IWL_WARN(trans, "Disabled INTA bits 0x%08x were pending\n", | 
 | 1122 | 			 inta & ~trans_pcie->inta_mask); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1123 | 	} | 
 | 1124 |  | 
 | 1125 | 	/* Re-enable all interrupts */ | 
 | 1126 | 	/* only Re-enable if disabled by irq */ | 
| Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1127 | 	if (test_bit(STATUS_INT_ENABLED, &trans_pcie->status)) | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1128 | 		iwl_enable_interrupts(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1129 | 	/* Re-enable RF_KILL if it occurred */ | 
| Stanislaw Gruszka | 8722c89 | 2012-03-07 09:52:28 -0800 | [diff] [blame] | 1130 | 	else if (handled & CSR_INT_BIT_RF_KILL) | 
 | 1131 | 		iwl_enable_rfkill_int(trans); | 
| Emmanuel Grumbach | ab697a9 | 2011-07-11 07:35:34 -0700 | [diff] [blame] | 1132 | } | 
 | 1133 |  | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1134 | /****************************************************************************** | 
 | 1135 |  * | 
 | 1136 |  * ICT functions | 
 | 1137 |  * | 
 | 1138 |  ******************************************************************************/ | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1139 |  | 
 | 1140 | /* a device (PCI-E) page is 4096 bytes long */ | 
 | 1141 | #define ICT_SHIFT	12 | 
 | 1142 | #define ICT_SIZE	(1 << ICT_SHIFT) | 
 | 1143 | #define ICT_COUNT	(ICT_SIZE / sizeof(u32)) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1144 |  | 
 | 1145 | /* Free dram table */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1146 | void iwl_free_isr_ict(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1147 | { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1148 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 1149 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 1150 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1151 | 	if (trans_pcie->ict_tbl) { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1152 | 		dma_free_coherent(trans->dev, ICT_SIZE, | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1153 | 				  trans_pcie->ict_tbl, | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1154 | 				  trans_pcie->ict_tbl_dma); | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1155 | 		trans_pcie->ict_tbl = NULL; | 
 | 1156 | 		trans_pcie->ict_tbl_dma = 0; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1157 | 	} | 
 | 1158 | } | 
 | 1159 |  | 
 | 1160 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1161 | /* | 
 | 1162 |  * allocate dram shared table, it is an aligned memory | 
 | 1163 |  * block of ICT_SIZE. | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1164 |  * also reset all data related to ICT table interrupt. | 
 | 1165 |  */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1166 | int iwl_alloc_isr_ict(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1167 | { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1168 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 1169 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1170 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1171 | 	trans_pcie->ict_tbl = | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1172 | 		dma_alloc_coherent(trans->dev, ICT_SIZE, | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1173 | 				   &trans_pcie->ict_tbl_dma, | 
 | 1174 | 				   GFP_KERNEL); | 
 | 1175 | 	if (!trans_pcie->ict_tbl) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1176 | 		return -ENOMEM; | 
 | 1177 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1178 | 	/* just an API sanity check ... it is guaranteed to be aligned */ | 
 | 1179 | 	if (WARN_ON(trans_pcie->ict_tbl_dma & (ICT_SIZE - 1))) { | 
 | 1180 | 		iwl_free_isr_ict(trans); | 
 | 1181 | 		return -EINVAL; | 
 | 1182 | 	} | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1183 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1184 | 	IWL_DEBUG_ISR(trans, "ict dma addr %Lx\n", | 
 | 1185 | 		      (unsigned long long)trans_pcie->ict_tbl_dma); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1186 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1187 | 	IWL_DEBUG_ISR(trans, "ict vir addr %p\n", trans_pcie->ict_tbl); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1188 |  | 
 | 1189 | 	/* reset table and index to all 0 */ | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1190 | 	memset(trans_pcie->ict_tbl, 0, ICT_SIZE); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1191 | 	trans_pcie->ict_index = 0; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1192 |  | 
 | 1193 | 	/* add periodic RX interrupt */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1194 | 	trans_pcie->inta_mask |= CSR_INT_BIT_RX_PERIODIC; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1195 | 	return 0; | 
 | 1196 | } | 
 | 1197 |  | 
 | 1198 | /* Device is going up inform it about using ICT interrupt table, | 
 | 1199 |  * also we need to tell the driver to start using ICT interrupt. | 
 | 1200 |  */ | 
| Emmanuel Grumbach | ed6a380 | 2012-01-02 16:10:08 +0200 | [diff] [blame] | 1201 | void iwl_reset_ict(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1202 | { | 
 | 1203 | 	u32 val; | 
 | 1204 | 	unsigned long flags; | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1205 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 1206 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1207 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1208 | 	if (!trans_pcie->ict_tbl) | 
| Emmanuel Grumbach | ed6a380 | 2012-01-02 16:10:08 +0200 | [diff] [blame] | 1209 | 		return; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1210 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1211 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1212 | 	iwl_disable_interrupts(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1213 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1214 | 	memset(trans_pcie->ict_tbl, 0, ICT_SIZE); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1215 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1216 | 	val = trans_pcie->ict_tbl_dma >> ICT_SHIFT; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1217 |  | 
 | 1218 | 	val |= CSR_DRAM_INT_TBL_ENABLE; | 
 | 1219 | 	val |= CSR_DRAM_INIT_TBL_WRAP_CHECK; | 
 | 1220 |  | 
| Johannes Berg | 1066713 | 2011-12-19 14:00:59 -0800 | [diff] [blame] | 1221 | 	IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%x\n", val); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1222 |  | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1223 | 	iwl_write32(trans, CSR_DRAM_INT_TBL_REG, val); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1224 | 	trans_pcie->use_ict = true; | 
 | 1225 | 	trans_pcie->ict_index = 0; | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1226 | 	iwl_write32(trans, CSR_INT, trans_pcie->inta_mask); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1227 | 	iwl_enable_interrupts(trans); | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1228 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1229 | } | 
 | 1230 |  | 
 | 1231 | /* Device is going down disable ict interrupt usage */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1232 | void iwl_disable_ict(struct iwl_trans *trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1233 | { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1234 | 	struct iwl_trans_pcie *trans_pcie = | 
 | 1235 | 		IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 1236 |  | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1237 | 	unsigned long flags; | 
 | 1238 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1239 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1240 | 	trans_pcie->use_ict = false; | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1241 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1242 | } | 
 | 1243 |  | 
 | 1244 | static irqreturn_t iwl_isr(int irq, void *data) | 
 | 1245 | { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1246 | 	struct iwl_trans *trans = data; | 
 | 1247 | 	struct iwl_trans_pcie *trans_pcie; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1248 | 	u32 inta, inta_mask; | 
 | 1249 | 	unsigned long flags; | 
 | 1250 | #ifdef CONFIG_IWLWIFI_DEBUG | 
 | 1251 | 	u32 inta_fh; | 
 | 1252 | #endif | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1253 | 	if (!trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1254 | 		return IRQ_NONE; | 
 | 1255 |  | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 1256 | 	trace_iwlwifi_dev_irq(trans->dev); | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1257 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1258 | 	trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 1259 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1260 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1261 |  | 
 | 1262 | 	/* Disable (but don't clear!) interrupts here to avoid | 
 | 1263 | 	 *    back-to-back ISRs and sporadic interrupts from our NIC. | 
 | 1264 | 	 * If we have something to service, the tasklet will re-enable ints. | 
 | 1265 | 	 * If we *don't* have something, we'll re-enable before leaving here. */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1266 | 	inta_mask = iwl_read32(trans, CSR_INT_MASK);  /* just for debug */ | 
 | 1267 | 	iwl_write32(trans, CSR_INT_MASK, 0x00000000); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1268 |  | 
 | 1269 | 	/* Discover which interrupts are active/pending */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1270 | 	inta = iwl_read32(trans, CSR_INT); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1271 |  | 
 | 1272 | 	/* Ignore interrupt if there's nothing in NIC to service. | 
 | 1273 | 	 * This may be due to IRQ shared with another device, | 
 | 1274 | 	 * or due to sporadic interrupts thrown from our NIC. */ | 
 | 1275 | 	if (!inta) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1276 | 		IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n"); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1277 | 		goto none; | 
 | 1278 | 	} | 
 | 1279 |  | 
 | 1280 | 	if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) { | 
 | 1281 | 		/* Hardware disappeared. It might have already raised | 
 | 1282 | 		 * an interrupt */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1283 | 		IWL_WARN(trans, "HARDWARE GONE?? INTA == 0x%08x\n", inta); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1284 | 		goto unplugged; | 
 | 1285 | 	} | 
 | 1286 |  | 
 | 1287 | #ifdef CONFIG_IWLWIFI_DEBUG | 
| Johannes Berg | a8bceb3 | 2012-03-05 11:24:30 -0800 | [diff] [blame] | 1288 | 	if (iwl_have_debug_level(IWL_DL_ISR)) { | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1289 | 		inta_fh = iwl_read32(trans, CSR_FH_INT_STATUS); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1290 | 		IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x, " | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1291 | 			      "fh 0x%08x\n", inta, inta_mask, inta_fh); | 
 | 1292 | 	} | 
 | 1293 | #endif | 
 | 1294 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1295 | 	trans_pcie->inta |= inta; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1296 | 	/* iwl_irq_tasklet() will service interrupts and re-enable them */ | 
 | 1297 | 	if (likely(inta)) | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1298 | 		tasklet_schedule(&trans_pcie->irq_tasklet); | 
| Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1299 | 	else if (test_bit(STATUS_INT_ENABLED, &trans_pcie->status) && | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1300 | 			!trans_pcie->inta) | 
 | 1301 | 		iwl_enable_interrupts(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1302 |  | 
 | 1303 |  unplugged: | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1304 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1305 | 	return IRQ_HANDLED; | 
 | 1306 |  | 
 | 1307 |  none: | 
 | 1308 | 	/* re-enable interrupts here since we don't have anything to service. */ | 
 | 1309 | 	/* only Re-enable if disabled by irq  and no schedules tasklet. */ | 
| Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1310 | 	if (test_bit(STATUS_INT_ENABLED, &trans_pcie->status) && | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1311 | 		!trans_pcie->inta) | 
 | 1312 | 		iwl_enable_interrupts(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1313 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1314 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1315 | 	return IRQ_NONE; | 
 | 1316 | } | 
 | 1317 |  | 
 | 1318 | /* interrupt handler using ict table, with this interrupt driver will | 
 | 1319 |  * stop using INTA register to get device's interrupt, reading this register | 
 | 1320 |  * is expensive, device will write interrupts in ICT dram table, increment | 
 | 1321 |  * index then will fire interrupt to driver, driver will OR all ICT table | 
 | 1322 |  * entries from current index up to table entry with 0 value. the result is | 
 | 1323 |  * the interrupt we need to service, driver will set the entries back to 0 and | 
 | 1324 |  * set index. | 
 | 1325 |  */ | 
 | 1326 | irqreturn_t iwl_isr_ict(int irq, void *data) | 
 | 1327 | { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1328 | 	struct iwl_trans *trans = data; | 
 | 1329 | 	struct iwl_trans_pcie *trans_pcie; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1330 | 	u32 inta, inta_mask; | 
 | 1331 | 	u32 val = 0; | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1332 | 	u32 read; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1333 | 	unsigned long flags; | 
 | 1334 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1335 | 	if (!trans) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1336 | 		return IRQ_NONE; | 
 | 1337 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1338 | 	trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); | 
 | 1339 |  | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1340 | 	/* dram interrupt table not set yet, | 
 | 1341 | 	 * use legacy interrupt. | 
 | 1342 | 	 */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1343 | 	if (!trans_pcie->use_ict) | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1344 | 		return iwl_isr(irq, data); | 
 | 1345 |  | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 1346 | 	trace_iwlwifi_dev_irq(trans->dev); | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1347 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1348 | 	spin_lock_irqsave(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1349 |  | 
 | 1350 | 	/* Disable (but don't clear!) interrupts here to avoid | 
 | 1351 | 	 * back-to-back ISRs and sporadic interrupts from our NIC. | 
 | 1352 | 	 * If we have something to service, the tasklet will re-enable ints. | 
 | 1353 | 	 * If we *don't* have something, we'll re-enable before leaving here. | 
 | 1354 | 	 */ | 
| Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 1355 | 	inta_mask = iwl_read32(trans, CSR_INT_MASK);  /* just for debug */ | 
 | 1356 | 	iwl_write32(trans, CSR_INT_MASK, 0x00000000); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1357 |  | 
 | 1358 |  | 
 | 1359 | 	/* Ignore interrupt if there's nothing in NIC to service. | 
 | 1360 | 	 * This may be due to IRQ shared with another device, | 
 | 1361 | 	 * or due to sporadic interrupts thrown from our NIC. */ | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1362 | 	read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]); | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 1363 | 	trace_iwlwifi_dev_ict_read(trans->dev, trans_pcie->ict_index, read); | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1364 | 	if (!read) { | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1365 | 		IWL_DEBUG_ISR(trans, "Ignore interrupt, inta == 0\n"); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1366 | 		goto none; | 
 | 1367 | 	} | 
 | 1368 |  | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1369 | 	/* | 
 | 1370 | 	 * Collect all entries up to the first 0, starting from ict_index; | 
 | 1371 | 	 * note we already read at ict_index. | 
 | 1372 | 	 */ | 
 | 1373 | 	do { | 
 | 1374 | 		val |= read; | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1375 | 		IWL_DEBUG_ISR(trans, "ICT index %d value 0x%08X\n", | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1376 | 				trans_pcie->ict_index, read); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1377 | 		trans_pcie->ict_tbl[trans_pcie->ict_index] = 0; | 
 | 1378 | 		trans_pcie->ict_index = | 
 | 1379 | 			iwl_queue_inc_wrap(trans_pcie->ict_index, ICT_COUNT); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1380 |  | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1381 | 		read = le32_to_cpu(trans_pcie->ict_tbl[trans_pcie->ict_index]); | 
| Johannes Berg | 6c1011e | 2012-03-06 13:30:48 -0800 | [diff] [blame] | 1382 | 		trace_iwlwifi_dev_ict_read(trans->dev, trans_pcie->ict_index, | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1383 | 					   read); | 
 | 1384 | 	} while (read); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1385 |  | 
 | 1386 | 	/* We should not get this value, just ignore it. */ | 
 | 1387 | 	if (val == 0xffffffff) | 
 | 1388 | 		val = 0; | 
 | 1389 |  | 
 | 1390 | 	/* | 
 | 1391 | 	 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit | 
 | 1392 | 	 * (bit 15 before shifting it to 31) to clear when using interrupt | 
 | 1393 | 	 * coalescing. fortunately, bits 18 and 19 stay set when this happens | 
 | 1394 | 	 * so we use them to decide on the real state of the Rx bit. | 
 | 1395 | 	 * In order words, bit 15 is set if bit 18 or bit 19 are set. | 
 | 1396 | 	 */ | 
 | 1397 | 	if (val & 0xC0000) | 
 | 1398 | 		val |= 0x8000; | 
 | 1399 |  | 
 | 1400 | 	inta = (0xff & val) | ((0xff00 & val) << 16); | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1401 | 	IWL_DEBUG_ISR(trans, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n", | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1402 | 			inta, inta_mask, val); | 
 | 1403 |  | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1404 | 	inta &= trans_pcie->inta_mask; | 
 | 1405 | 	trans_pcie->inta |= inta; | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1406 |  | 
 | 1407 | 	/* iwl_irq_tasklet() will service interrupts and re-enable them */ | 
 | 1408 | 	if (likely(inta)) | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1409 | 		tasklet_schedule(&trans_pcie->irq_tasklet); | 
| Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1410 | 	else if (test_bit(STATUS_INT_ENABLED, &trans_pcie->status) && | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1411 | 		 !trans_pcie->inta) { | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1412 | 		/* Allow interrupt if was disabled by this handler and | 
 | 1413 | 		 * no tasklet was schedules, We should not enable interrupt, | 
 | 1414 | 		 * tasklet will enable it. | 
 | 1415 | 		 */ | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1416 | 		iwl_enable_interrupts(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1417 | 	} | 
 | 1418 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1419 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1420 | 	return IRQ_HANDLED; | 
 | 1421 |  | 
 | 1422 |  none: | 
 | 1423 | 	/* re-enable interrupts here since we don't have anything to service. | 
 | 1424 | 	 * only Re-enable if disabled by irq. | 
 | 1425 | 	 */ | 
| Don Fry | 8362640 | 2012-03-07 09:52:37 -0800 | [diff] [blame] | 1426 | 	if (test_bit(STATUS_INT_ENABLED, &trans_pcie->status) && | 
| Johannes Berg | b80667e | 2011-12-09 07:26:13 -0800 | [diff] [blame] | 1427 | 	    !trans_pcie->inta) | 
| Emmanuel Grumbach | 0c32576 | 2011-08-25 23:10:53 -0700 | [diff] [blame] | 1428 | 		iwl_enable_interrupts(trans); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1429 |  | 
| Johannes Berg | 7b11488 | 2012-02-05 13:55:11 -0800 | [diff] [blame] | 1430 | 	spin_unlock_irqrestore(&trans_pcie->irq_lock, flags); | 
| Emmanuel Grumbach | 1a361cd | 2011-07-11 07:44:57 -0700 | [diff] [blame] | 1431 | 	return IRQ_NONE; | 
 | 1432 | } |