blob: 468acd04aa2ec12d3907145e005e28dd9776337f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
3 *
4 * This file contains the lowest level x86-specific interrupt
5 * entry, irq-stacks and irq statistics code. All the remaining
6 * irq logic is done by the generic kernel/irq/ code and
7 * by the x86-specific irq controller code. (e.g. i8259.c and
8 * io_apic.c.)
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/seq_file.h>
13#include <linux/interrupt.h>
14#include <linux/kernel_stat.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070015#include <linux/notifier.h>
16#include <linux/cpu.h>
17#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Thomas Gleixnere05d7232007-02-16 01:27:58 -080019#include <asm/apic.h>
20#include <asm/uaccess.h>
21
Fenghua Yuf34e3b62007-07-19 01:48:13 -070022DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023EXPORT_PER_CPU_SYMBOL(irq_stat);
24
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +020025DEFINE_PER_CPU(struct pt_regs *, irq_regs);
26EXPORT_PER_CPU_SYMBOL(irq_regs);
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/*
29 * 'what should we do if we get a hw irq event on an illegal vector'.
30 * each architecture has to answer this themselves.
31 */
32void ack_bad_irq(unsigned int irq)
33{
Thomas Gleixnere05d7232007-02-16 01:27:58 -080034 printk(KERN_ERR "unexpected IRQ trap at vector %02x\n", irq);
35
36#ifdef CONFIG_X86_LOCAL_APIC
37 /*
38 * Currently unexpected vectors happen only on SMP and APIC.
39 * We _must_ ack these because every local APIC has only N
40 * irq slots per priority level, and a 'hanging, unacked' IRQ
41 * holds up an irq slot - in excessive cases (when multiple
42 * unexpected vectors occur) that might lock up the APIC
43 * completely.
44 * But only ack when the APIC is enabled -AK
45 */
46 if (cpu_has_apic)
47 ack_APIC_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#endif
Thomas Gleixnere05d7232007-02-16 01:27:58 -080049}
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#ifdef CONFIG_4KSTACKS
52/*
53 * per-CPU IRQ handling contexts (thread information and stack)
54 */
55union irq_ctx {
56 struct thread_info tinfo;
57 u32 stack[THREAD_SIZE/sizeof(u32)];
58};
59
Andreas Mohr22722052006-06-23 02:05:30 -070060static union irq_ctx *hardirq_ctx[NR_CPUS] __read_mostly;
61static union irq_ctx *softirq_ctx[NR_CPUS] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif
63
64/*
65 * do_IRQ handles all normal device IRQ's (the special
66 * SMP cross-CPU interrupts have their own specific
67 * handlers).
68 */
Harvey Harrison75604d72008-01-30 13:31:17 +010069unsigned int do_IRQ(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
David Howells7d12e782006-10-05 14:55:46 +010071 struct pt_regs *old_regs;
Rusty Russell19eadf92006-06-27 02:53:44 -070072 /* high bit used in ret_from_ code */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010073 int irq = ~regs->orig_ax;
Ingo Molnarf5b9ed72006-10-04 02:16:26 -070074 struct irq_desc *desc = irq_desc + irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#ifdef CONFIG_4KSTACKS
76 union irq_ctx *curctx, *irqctx;
77 u32 *isp;
78#endif
79
Andrew Mortona052b682006-06-28 04:26:43 -070080 if (unlikely((unsigned)irq >= NR_IRQS)) {
81 printk(KERN_EMERG "%s: cannot handle IRQ %d\n",
Harvey Harrison77bf90e2008-03-03 11:37:23 -080082 __func__, irq);
Andrew Mortona052b682006-06-28 04:26:43 -070083 BUG();
84 }
85
David Howells7d12e782006-10-05 14:55:46 +010086 old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 irq_enter();
88#ifdef CONFIG_DEBUG_STACKOVERFLOW
89 /* Debugging check for stack overflow: is there less than 1KB free? */
90 {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010091 long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 __asm__ __volatile__("andl %%esp,%0" :
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010094 "=r" (sp) : "0" (THREAD_SIZE - 1));
95 if (unlikely(sp < (sizeof(struct thread_info) + STACK_WARN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 printk("do_IRQ: stack overflow: %ld\n",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010097 sp - sizeof(struct thread_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 dump_stack();
99 }
100 }
101#endif
102
103#ifdef CONFIG_4KSTACKS
104
105 curctx = (union irq_ctx *) current_thread_info();
106 irqctx = hardirq_ctx[smp_processor_id()];
107
108 /*
109 * this is where we switch to the IRQ stack. However, if we are
110 * already using the IRQ stack (because we interrupted a hardirq
111 * handler) we can't do that and just have to keep using the
112 * current stack (which is the irq stack already after all)
113 */
114 if (curctx != irqctx) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100115 int arg1, arg2, bx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* build the stack frame on the IRQ stack */
118 isp = (u32*) ((char*)irqctx + sizeof(*irqctx));
119 irqctx->tinfo.task = curctx->tinfo.task;
120 irqctx->tinfo.previous_esp = current_stack_pointer;
121
Björn Steinbrinka5d157e2006-06-25 16:24:40 +0200122 /*
123 * Copy the softirq bits in preempt_count so that the
124 * softirq checks work in the hardirq context.
125 */
126 irqctx->tinfo.preempt_count =
Andrew Morton91bf4602006-06-27 02:55:09 -0700127 (irqctx->tinfo.preempt_count & ~SOFTIRQ_MASK) |
128 (curctx->tinfo.preempt_count & SOFTIRQ_MASK);
Björn Steinbrinka5d157e2006-06-25 16:24:40 +0200129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 asm volatile(
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100131 " xchgl %%ebx,%%esp \n"
132 " call *%%edi \n"
133 " movl %%ebx,%%esp \n"
134 : "=a" (arg1), "=d" (arg2), "=b" (bx)
David Howells7d12e782006-10-05 14:55:46 +0100135 : "0" (irq), "1" (desc), "2" (isp),
Ingo Molnarf5b9ed72006-10-04 02:16:26 -0700136 "D" (desc->handle_irq)
Jan Beulich5065dba2008-04-22 16:16:50 +0100137 : "memory", "cc", "ecx"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 );
139 } else
140#endif
David Howells7d12e782006-10-05 14:55:46 +0100141 desc->handle_irq(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 irq_exit();
David Howells7d12e782006-10-05 14:55:46 +0100144 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 1;
146}
147
148#ifdef CONFIG_4KSTACKS
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static char softirq_stack[NR_CPUS * THREAD_SIZE]
Robert P. J. Day09fce8a2007-07-21 17:11:41 +0200151 __attribute__((__section__(".bss.page_aligned")));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153static char hardirq_stack[NR_CPUS * THREAD_SIZE]
Robert P. J. Day09fce8a2007-07-21 17:11:41 +0200154 __attribute__((__section__(".bss.page_aligned")));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/*
157 * allocate per-cpu stacks for hardirq and for softirq processing
158 */
159void irq_ctx_init(int cpu)
160{
161 union irq_ctx *irqctx;
162
163 if (hardirq_ctx[cpu])
164 return;
165
166 irqctx = (union irq_ctx*) &hardirq_stack[cpu*THREAD_SIZE];
167 irqctx->tinfo.task = NULL;
168 irqctx->tinfo.exec_domain = NULL;
169 irqctx->tinfo.cpu = cpu;
170 irqctx->tinfo.preempt_count = HARDIRQ_OFFSET;
171 irqctx->tinfo.addr_limit = MAKE_MM_SEG(0);
172
173 hardirq_ctx[cpu] = irqctx;
174
175 irqctx = (union irq_ctx*) &softirq_stack[cpu*THREAD_SIZE];
176 irqctx->tinfo.task = NULL;
177 irqctx->tinfo.exec_domain = NULL;
178 irqctx->tinfo.cpu = cpu;
Ingo Molnar55f327f2006-07-03 00:24:43 -0700179 irqctx->tinfo.preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 irqctx->tinfo.addr_limit = MAKE_MM_SEG(0);
181
182 softirq_ctx[cpu] = irqctx;
183
184 printk("CPU %u irqstacks, hard=%p soft=%p\n",
185 cpu,hardirq_ctx[cpu],softirq_ctx[cpu]);
186}
187
Li Shaohuae1367da2005-06-25 14:54:56 -0700188void irq_ctx_exit(int cpu)
189{
190 hardirq_ctx[cpu] = NULL;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193asmlinkage void do_softirq(void)
194{
195 unsigned long flags;
196 struct thread_info *curctx;
197 union irq_ctx *irqctx;
198 u32 *isp;
199
200 if (in_interrupt())
201 return;
202
203 local_irq_save(flags);
204
205 if (local_softirq_pending()) {
206 curctx = current_thread_info();
207 irqctx = softirq_ctx[smp_processor_id()];
208 irqctx->tinfo.task = curctx->task;
209 irqctx->tinfo.previous_esp = current_stack_pointer;
210
211 /* build the stack frame on the softirq stack */
212 isp = (u32*) ((char*)irqctx + sizeof(*irqctx));
213
214 asm volatile(
215 " xchgl %%ebx,%%esp \n"
216 " call __do_softirq \n"
217 " movl %%ebx,%%esp \n"
218 : "=b"(isp)
219 : "0"(isp)
220 : "memory", "cc", "edx", "ecx", "eax"
221 );
Ingo Molnar55f327f2006-07-03 00:24:43 -0700222 /*
223 * Shouldnt happen, we returned above if in_interrupt():
224 */
225 WARN_ON_ONCE(softirq_count());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 local_irq_restore(flags);
229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
231
232/*
233 * Interrupt statistics:
234 */
235
236atomic_t irq_err_count;
237
238/*
239 * /proc/interrupts printing:
240 */
241
242int show_interrupts(struct seq_file *p, void *v)
243{
244 int i = *(loff_t *) v, j;
245 struct irqaction * action;
246 unsigned long flags;
247
248 if (i == 0) {
249 seq_printf(p, " ");
Natalie Protasevich9f40a722005-10-30 14:59:32 -0800250 for_each_online_cpu(j)
Jan Beulichbdbdaa72006-06-26 13:59:23 +0200251 seq_printf(p, "CPU%-8d",j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 seq_putc(p, '\n');
253 }
254
255 if (i < NR_IRQS) {
Jan Beulich072f5d82007-10-17 18:04:40 +0200256 unsigned any_count = 0;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 spin_lock_irqsave(&irq_desc[i].lock, flags);
Jan Beulich072f5d82007-10-17 18:04:40 +0200259#ifndef CONFIG_SMP
260 any_count = kstat_irqs(i);
261#else
262 for_each_online_cpu(j)
263 any_count |= kstat_cpu(j).irqs[i];
264#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 action = irq_desc[i].action;
Jan Beulich072f5d82007-10-17 18:04:40 +0200266 if (!action && !any_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 goto skip;
268 seq_printf(p, "%3d: ",i);
269#ifndef CONFIG_SMP
270 seq_printf(p, "%10u ", kstat_irqs(i));
271#else
Natalie Protasevich9f40a722005-10-30 14:59:32 -0800272 for_each_online_cpu(j)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700273 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274#endif
Ingo Molnarf5b9ed72006-10-04 02:16:26 -0700275 seq_printf(p, " %8s", irq_desc[i].chip->name);
Ingo Molnara460e742006-10-17 00:10:03 -0700276 seq_printf(p, "-%-8s", irq_desc[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Jan Beulich072f5d82007-10-17 18:04:40 +0200278 if (action) {
279 seq_printf(p, " %s", action->name);
280 while ((action = action->next) != NULL)
281 seq_printf(p, ", %s", action->name);
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 seq_putc(p, '\n');
285skip:
286 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
287 } else if (i == NR_IRQS) {
288 seq_printf(p, "NMI: ");
Natalie Protasevich9f40a722005-10-30 14:59:32 -0800289 for_each_online_cpu(j)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700290 seq_printf(p, "%10u ", nmi_count(j));
Joe Korty38e760a2007-10-17 18:04:40 +0200291 seq_printf(p, " Non-maskable interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#ifdef CONFIG_X86_LOCAL_APIC
293 seq_printf(p, "LOC: ");
Natalie Protasevich9f40a722005-10-30 14:59:32 -0800294 for_each_online_cpu(j)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700295 seq_printf(p, "%10u ",
296 per_cpu(irq_stat,j).apic_timer_irqs);
Joe Korty38e760a2007-10-17 18:04:40 +0200297 seq_printf(p, " Local timer interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#endif
Joe Korty38e760a2007-10-17 18:04:40 +0200299#ifdef CONFIG_SMP
300 seq_printf(p, "RES: ");
301 for_each_online_cpu(j)
302 seq_printf(p, "%10u ",
303 per_cpu(irq_stat,j).irq_resched_count);
304 seq_printf(p, " Rescheduling interrupts\n");
305 seq_printf(p, "CAL: ");
306 for_each_online_cpu(j)
307 seq_printf(p, "%10u ",
308 per_cpu(irq_stat,j).irq_call_count);
309 seq_printf(p, " function call interrupts\n");
310 seq_printf(p, "TLB: ");
311 for_each_online_cpu(j)
312 seq_printf(p, "%10u ",
313 per_cpu(irq_stat,j).irq_tlb_count);
314 seq_printf(p, " TLB shootdowns\n");
315#endif
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200316#ifdef CONFIG_X86_MCE
Joe Korty38e760a2007-10-17 18:04:40 +0200317 seq_printf(p, "TRM: ");
318 for_each_online_cpu(j)
319 seq_printf(p, "%10u ",
320 per_cpu(irq_stat,j).irq_thermal_count);
321 seq_printf(p, " Thermal event interrupts\n");
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200322#endif
323#ifdef CONFIG_X86_LOCAL_APIC
Joe Korty38e760a2007-10-17 18:04:40 +0200324 seq_printf(p, "SPU: ");
325 for_each_online_cpu(j)
326 seq_printf(p, "%10u ",
327 per_cpu(irq_stat,j).irq_spurious_count);
328 seq_printf(p, " Spurious interrupts\n");
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200329#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
331#if defined(CONFIG_X86_IO_APIC)
332 seq_printf(p, "MIS: %10u\n", atomic_read(&irq_mis_count));
333#endif
334 }
335 return 0;
336}
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700337
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200338/*
339 * /proc/stat helpers
340 */
341u64 arch_irq_stat_cpu(unsigned int cpu)
342{
343 u64 sum = nmi_count(cpu);
344
345#ifdef CONFIG_X86_LOCAL_APIC
346 sum += per_cpu(irq_stat, cpu).apic_timer_irqs;
347#endif
348#ifdef CONFIG_SMP
349 sum += per_cpu(irq_stat, cpu).irq_resched_count;
350 sum += per_cpu(irq_stat, cpu).irq_call_count;
351 sum += per_cpu(irq_stat, cpu).irq_tlb_count;
352#endif
353#ifdef CONFIG_X86_MCE
354 sum += per_cpu(irq_stat, cpu).irq_thermal_count;
355#endif
356#ifdef CONFIG_X86_LOCAL_APIC
357 sum += per_cpu(irq_stat, cpu).irq_spurious_count;
358#endif
359 return sum;
360}
361
362u64 arch_irq_stat(void)
363{
364 u64 sum = atomic_read(&irq_err_count);
365
366#ifdef CONFIG_X86_IO_APIC
367 sum += atomic_read(&irq_mis_count);
368#endif
369 return sum;
370}
371
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700372#ifdef CONFIG_HOTPLUG_CPU
373#include <mach_apic.h>
374
375void fixup_irqs(cpumask_t map)
376{
377 unsigned int irq;
378 static int warned;
379
380 for (irq = 0; irq < NR_IRQS; irq++) {
381 cpumask_t mask;
382 if (irq == 2)
383 continue;
384
Ingo Molnara53da522006-06-29 02:24:38 -0700385 cpus_and(mask, irq_desc[irq].affinity, map);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700386 if (any_online_cpu(mask) == NR_CPUS) {
387 printk("Breaking affinity for irq %i\n", irq);
388 mask = map;
389 }
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700390 if (irq_desc[irq].chip->set_affinity)
391 irq_desc[irq].chip->set_affinity(irq, mask);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700392 else if (irq_desc[irq].action && !(warned++))
393 printk("Cannot set affinity for irq %i\n", irq);
394 }
395
396#if 0
397 barrier();
398 /* Ingo Molnar says: "after the IO-APIC masks have been redirected
399 [note the nop - the interrupt-enable boundary on x86 is two
400 instructions from sti] - to flush out pending hardirqs and
401 IPIs. After this point nothing is supposed to reach this CPU." */
402 __asm__ __volatile__("sti; nop; cli");
403 barrier();
404#else
405 /* That doesn't seem sufficient. Give it 1ms. */
406 local_irq_enable();
407 mdelay(1);
408 local_irq_disable();
409#endif
410}
411#endif
412