1 /******************************************************************************
5 * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
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 *****************************************************************************/
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/etherdevice.h>
32 #include <linux/sched.h>
33 #include <linux/gfp.h>
34 #include <net/mac80211.h>
39 #include "iwl-helpers.h"
41 #define ICT_COUNT (PAGE_SIZE/sizeof(u32))
44 void iwl_free_isr_ict(struct iwl_priv
*priv
)
46 if (priv
->_agn
.ict_tbl_vir
) {
47 dma_free_coherent(&priv
->pci_dev
->dev
,
48 (sizeof(u32
) * ICT_COUNT
) + PAGE_SIZE
,
49 priv
->_agn
.ict_tbl_vir
,
50 priv
->_agn
.ict_tbl_dma
);
51 priv
->_agn
.ict_tbl_vir
= NULL
;
56 /* allocate dram shared table it is a PAGE_SIZE aligned
57 * also reset all data related to ICT table interrupt.
59 int iwl_alloc_isr_ict(struct iwl_priv
*priv
)
62 if (priv
->cfg
->base_params
->use_isr_legacy
)
64 /* allocate shrared data table */
65 priv
->_agn
.ict_tbl_vir
=
66 dma_alloc_coherent(&priv
->pci_dev
->dev
,
67 (sizeof(u32
) * ICT_COUNT
) + PAGE_SIZE
,
68 &priv
->_agn
.ict_tbl_dma
, GFP_KERNEL
);
69 if (!priv
->_agn
.ict_tbl_vir
)
72 /* align table to PAGE_SIZE boundry */
73 priv
->_agn
.aligned_ict_tbl_dma
= ALIGN(priv
->_agn
.ict_tbl_dma
, PAGE_SIZE
);
75 IWL_DEBUG_ISR(priv
, "ict dma addr %Lx dma aligned %Lx diff %d\n",
76 (unsigned long long)priv
->_agn
.ict_tbl_dma
,
77 (unsigned long long)priv
->_agn
.aligned_ict_tbl_dma
,
78 (int)(priv
->_agn
.aligned_ict_tbl_dma
- priv
->_agn
.ict_tbl_dma
));
80 priv
->_agn
.ict_tbl
= priv
->_agn
.ict_tbl_vir
+
81 (priv
->_agn
.aligned_ict_tbl_dma
- priv
->_agn
.ict_tbl_dma
);
83 IWL_DEBUG_ISR(priv
, "ict vir addr %p vir aligned %p diff %d\n",
84 priv
->_agn
.ict_tbl
, priv
->_agn
.ict_tbl_vir
,
85 (int)(priv
->_agn
.aligned_ict_tbl_dma
- priv
->_agn
.ict_tbl_dma
));
87 /* reset table and index to all 0 */
88 memset(priv
->_agn
.ict_tbl_vir
,0, (sizeof(u32
) * ICT_COUNT
) + PAGE_SIZE
);
89 priv
->_agn
.ict_index
= 0;
91 /* add periodic RX interrupt */
92 priv
->inta_mask
|= CSR_INT_BIT_RX_PERIODIC
;
96 /* Device is going up inform it about using ICT interrupt table,
97 * also we need to tell the driver to start using ICT interrupt.
99 int iwl_reset_ict(struct iwl_priv
*priv
)
104 if (!priv
->_agn
.ict_tbl_vir
)
107 spin_lock_irqsave(&priv
->lock
, flags
);
108 iwl_disable_interrupts(priv
);
110 memset(&priv
->_agn
.ict_tbl
[0], 0, sizeof(u32
) * ICT_COUNT
);
112 val
= priv
->_agn
.aligned_ict_tbl_dma
>> PAGE_SHIFT
;
114 val
|= CSR_DRAM_INT_TBL_ENABLE
;
115 val
|= CSR_DRAM_INIT_TBL_WRAP_CHECK
;
117 IWL_DEBUG_ISR(priv
, "CSR_DRAM_INT_TBL_REG =0x%X "
118 "aligned dma address %Lx\n",
119 val
, (unsigned long long)priv
->_agn
.aligned_ict_tbl_dma
);
121 iwl_write32(priv
, CSR_DRAM_INT_TBL_REG
, val
);
122 priv
->_agn
.use_ict
= true;
123 priv
->_agn
.ict_index
= 0;
124 iwl_write32(priv
, CSR_INT
, priv
->inta_mask
);
125 iwl_enable_interrupts(priv
);
126 spin_unlock_irqrestore(&priv
->lock
, flags
);
131 /* Device is going down disable ict interrupt usage */
132 void iwl_disable_ict(struct iwl_priv
*priv
)
136 spin_lock_irqsave(&priv
->lock
, flags
);
137 priv
->_agn
.use_ict
= false;
138 spin_unlock_irqrestore(&priv
->lock
, flags
);
141 static irqreturn_t
iwl_isr(int irq
, void *data
)
143 struct iwl_priv
*priv
= data
;
146 #ifdef CONFIG_IWLWIFI_DEBUG
152 spin_lock_irqsave(&priv
->lock
, flags
);
154 /* Disable (but don't clear!) interrupts here to avoid
155 * back-to-back ISRs and sporadic interrupts from our NIC.
156 * If we have something to service, the tasklet will re-enable ints.
157 * If we *don't* have something, we'll re-enable before leaving here. */
158 inta_mask
= iwl_read32(priv
, CSR_INT_MASK
); /* just for debug */
159 iwl_write32(priv
, CSR_INT_MASK
, 0x00000000);
161 /* Discover which interrupts are active/pending */
162 inta
= iwl_read32(priv
, CSR_INT
);
164 /* Ignore interrupt if there's nothing in NIC to service.
165 * This may be due to IRQ shared with another device,
166 * or due to sporadic interrupts thrown from our NIC. */
168 IWL_DEBUG_ISR(priv
, "Ignore interrupt, inta == 0\n");
172 if ((inta
== 0xFFFFFFFF) || ((inta
& 0xFFFFFFF0) == 0xa5a5a5a0)) {
173 /* Hardware disappeared. It might have already raised
175 IWL_WARN(priv
, "HARDWARE GONE?? INTA == 0x%08x\n", inta
);
179 #ifdef CONFIG_IWLWIFI_DEBUG
180 if (iwl_get_debug_level(priv
) & (IWL_DL_ISR
)) {
181 inta_fh
= iwl_read32(priv
, CSR_FH_INT_STATUS
);
182 IWL_DEBUG_ISR(priv
, "ISR inta 0x%08x, enabled 0x%08x, "
183 "fh 0x%08x\n", inta
, inta_mask
, inta_fh
);
187 priv
->_agn
.inta
|= inta
;
188 /* iwl_irq_tasklet() will service interrupts and re-enable them */
190 tasklet_schedule(&priv
->irq_tasklet
);
191 else if (test_bit(STATUS_INT_ENABLED
, &priv
->status
) && !priv
->_agn
.inta
)
192 iwl_enable_interrupts(priv
);
195 spin_unlock_irqrestore(&priv
->lock
, flags
);
199 /* re-enable interrupts here since we don't have anything to service. */
200 /* only Re-enable if diabled by irq and no schedules tasklet. */
201 if (test_bit(STATUS_INT_ENABLED
, &priv
->status
) && !priv
->_agn
.inta
)
202 iwl_enable_interrupts(priv
);
204 spin_unlock_irqrestore(&priv
->lock
, flags
);
208 /* interrupt handler using ict table, with this interrupt driver will
209 * stop using INTA register to get device's interrupt, reading this register
210 * is expensive, device will write interrupts in ICT dram table, increment
211 * index then will fire interrupt to driver, driver will OR all ICT table
212 * entries from current index up to table entry with 0 value. the result is
213 * the interrupt we need to service, driver will set the entries back to 0 and
216 irqreturn_t
iwl_isr_ict(int irq
, void *data
)
218 struct iwl_priv
*priv
= data
;
226 /* dram interrupt table not set yet,
227 * use legacy interrupt.
229 if (!priv
->_agn
.use_ict
)
230 return iwl_isr(irq
, data
);
232 spin_lock_irqsave(&priv
->lock
, flags
);
234 /* Disable (but don't clear!) interrupts here to avoid
235 * back-to-back ISRs and sporadic interrupts from our NIC.
236 * If we have something to service, the tasklet will re-enable ints.
237 * If we *don't* have something, we'll re-enable before leaving here.
239 inta_mask
= iwl_read32(priv
, CSR_INT_MASK
); /* just for debug */
240 iwl_write32(priv
, CSR_INT_MASK
, 0x00000000);
243 /* Ignore interrupt if there's nothing in NIC to service.
244 * This may be due to IRQ shared with another device,
245 * or due to sporadic interrupts thrown from our NIC. */
246 if (!priv
->_agn
.ict_tbl
[priv
->_agn
.ict_index
]) {
247 IWL_DEBUG_ISR(priv
, "Ignore interrupt, inta == 0\n");
251 /* read all entries that not 0 start with ict_index */
252 while (priv
->_agn
.ict_tbl
[priv
->_agn
.ict_index
]) {
254 val
|= le32_to_cpu(priv
->_agn
.ict_tbl
[priv
->_agn
.ict_index
]);
255 IWL_DEBUG_ISR(priv
, "ICT index %d value 0x%08X\n",
256 priv
->_agn
.ict_index
,
257 le32_to_cpu(priv
->_agn
.ict_tbl
[priv
->_agn
.ict_index
]));
258 priv
->_agn
.ict_tbl
[priv
->_agn
.ict_index
] = 0;
259 priv
->_agn
.ict_index
= iwl_queue_inc_wrap(priv
->_agn
.ict_index
,
264 /* We should not get this value, just ignore it. */
265 if (val
== 0xffffffff)
269 * this is a w/a for a h/w bug. the h/w bug may cause the Rx bit
270 * (bit 15 before shifting it to 31) to clear when using interrupt
271 * coalescing. fortunately, bits 18 and 19 stay set when this happens
272 * so we use them to decide on the real state of the Rx bit.
273 * In order words, bit 15 is set if bit 18 or bit 19 are set.
278 inta
= (0xff & val
) | ((0xff00 & val
) << 16);
279 IWL_DEBUG_ISR(priv
, "ISR inta 0x%08x, enabled 0x%08x ict 0x%08x\n",
280 inta
, inta_mask
, val
);
282 inta
&= priv
->inta_mask
;
283 priv
->_agn
.inta
|= inta
;
285 /* iwl_irq_tasklet() will service interrupts and re-enable them */
287 tasklet_schedule(&priv
->irq_tasklet
);
288 else if (test_bit(STATUS_INT_ENABLED
, &priv
->status
) && !priv
->_agn
.inta
) {
289 /* Allow interrupt if was disabled by this handler and
290 * no tasklet was schedules, We should not enable interrupt,
291 * tasklet will enable it.
293 iwl_enable_interrupts(priv
);
296 spin_unlock_irqrestore(&priv
->lock
, flags
);
300 /* re-enable interrupts here since we don't have anything to service.
301 * only Re-enable if disabled by irq.
303 if (test_bit(STATUS_INT_ENABLED
, &priv
->status
) && !priv
->_agn
.inta
)
304 iwl_enable_interrupts(priv
);
306 spin_unlock_irqrestore(&priv
->lock
, flags
);