blob: 6603492e8b717f06360ea1a0c4fdc301da96abe2 [file] [log] [blame]
Thomas Gleixner6b39ba72008-10-16 11:32:24 +02001/*
2 * Common interrupt code for 32 and 64 bit
3 */
4#include <linux/cpu.h>
5#include <linux/interrupt.h>
6#include <linux/kernel_stat.h>
7#include <linux/seq_file.h>
Jaswinder Singh Rajput6a02e712009-01-04 16:22:17 +05308#include <linux/smp.h>
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -08009#include <linux/ftrace.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020010
Ingo Molnar7b6aa332009-02-17 13:58:15 +010011#include <asm/apic.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020012#include <asm/io_apic.h>
Ingo Molnarc3d80002008-12-23 15:15:17 +010013#include <asm/irq.h>
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -080014#include <asm/idle.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020015
16atomic_t irq_err_count;
17
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060018/* Function pointer for generic interrupt vector handling */
19void (*generic_interrupt_extension)(void) = NULL;
20
Thomas Gleixner249f6d92008-10-16 12:18:50 +020021/*
22 * 'what should we do if we get a hw irq event on an illegal vector'.
23 * each architecture has to answer this themselves.
24 */
25void ack_bad_irq(unsigned int irq)
26{
Cyrill Gorcunovedea7142009-04-12 20:47:39 +040027 if (printk_ratelimit())
28 pr_err("unexpected IRQ trap at vector %02x\n", irq);
Thomas Gleixner249f6d92008-10-16 12:18:50 +020029
30#ifdef CONFIG_X86_LOCAL_APIC
31 /*
32 * Currently unexpected vectors happen only on SMP and APIC.
33 * We _must_ ack these because every local APIC has only N
34 * irq slots per priority level, and a 'hanging, unacked' IRQ
35 * holds up an irq slot - in excessive cases (when multiple
36 * unexpected vectors occur) that might lock up the APIC
37 * completely.
38 * But only ack when the APIC is enabled -AK
39 */
40 if (cpu_has_apic)
41 ack_APIC_irq();
42#endif
43}
44
Brian Gerst1b437c82009-01-19 00:38:57 +090045#define irq_stats(x) (&per_cpu(irq_stat, x))
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020046/*
47 * /proc/interrupts printing:
48 */
Jan Beulich7a81d9a2009-03-12 12:45:15 +000049static int show_other_interrupts(struct seq_file *p, int prec)
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020050{
51 int j;
52
Jan Beulich7a81d9a2009-03-12 12:45:15 +000053 seq_printf(p, "%*s: ", prec, "NMI");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020054 for_each_online_cpu(j)
55 seq_printf(p, "%10u ", irq_stats(j)->__nmi_count);
56 seq_printf(p, " Non-maskable interrupts\n");
57#ifdef CONFIG_X86_LOCAL_APIC
Jan Beulich7a81d9a2009-03-12 12:45:15 +000058 seq_printf(p, "%*s: ", prec, "LOC");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020059 for_each_online_cpu(j)
60 seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs);
61 seq_printf(p, " Local timer interrupts\n");
Jaswinder Singh Rajput474e56b2009-03-23 02:08:34 +053062
63 seq_printf(p, "%*s: ", prec, "SPU");
64 for_each_online_cpu(j)
65 seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count);
66 seq_printf(p, " Spurious interrupts\n");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020067#endif
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060068 if (generic_interrupt_extension) {
69 seq_printf(p, "PLT: ");
70 for_each_online_cpu(j)
71 seq_printf(p, "%10u ", irq_stats(j)->generic_irqs);
72 seq_printf(p, " Platform interrupts\n");
73 }
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020074#ifdef CONFIG_SMP
Jan Beulich7a81d9a2009-03-12 12:45:15 +000075 seq_printf(p, "%*s: ", prec, "RES");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020076 for_each_online_cpu(j)
77 seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
78 seq_printf(p, " Rescheduling interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000079 seq_printf(p, "%*s: ", prec, "CAL");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020080 for_each_online_cpu(j)
81 seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
82 seq_printf(p, " Function call interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000083 seq_printf(p, "%*s: ", prec, "TLB");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020084 for_each_online_cpu(j)
85 seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
86 seq_printf(p, " TLB shootdowns\n");
87#endif
88#ifdef CONFIG_X86_MCE
Jan Beulich7a81d9a2009-03-12 12:45:15 +000089 seq_printf(p, "%*s: ", prec, "TRM");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020090 for_each_online_cpu(j)
91 seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
92 seq_printf(p, " Thermal event interrupts\n");
93# ifdef CONFIG_X86_64
Jan Beulich7a81d9a2009-03-12 12:45:15 +000094 seq_printf(p, "%*s: ", prec, "THR");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020095 for_each_online_cpu(j)
96 seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
97 seq_printf(p, " Threshold APIC interrupts\n");
98# endif
99#endif
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000100 seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200101#if defined(CONFIG_X86_IO_APIC)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000102 seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200103#endif
104 return 0;
105}
106
107int show_interrupts(struct seq_file *p, void *v)
108{
109 unsigned long flags, any_count = 0;
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000110 int i = *(loff_t *) v, j, prec;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200111 struct irqaction *action;
112 struct irq_desc *desc;
113
114 if (i > nr_irqs)
115 return 0;
116
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000117 for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)
118 j *= 10;
119
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200120 if (i == nr_irqs)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000121 return show_other_interrupts(p, prec);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200122
123 /* print header */
124 if (i == 0) {
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000125 seq_printf(p, "%*s", prec + 8, "");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200126 for_each_online_cpu(j)
Ingo Molnare9f95e62008-10-21 15:49:59 +0200127 seq_printf(p, "CPU%-8d", j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200128 seq_putc(p, '\n');
129 }
130
131 desc = irq_to_desc(i);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800132 if (!desc)
133 return 0;
134
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200135 spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200136 for_each_online_cpu(j)
137 any_count |= kstat_irqs_cpu(i, j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200138 action = desc->action;
139 if (!action && !any_count)
140 goto out;
141
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000142 seq_printf(p, "%*d: ", prec, i);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200143 for_each_online_cpu(j)
144 seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200145 seq_printf(p, " %8s", desc->chip->name);
146 seq_printf(p, "-%-8s", desc->name);
147
148 if (action) {
149 seq_printf(p, " %s", action->name);
150 while ((action = action->next) != NULL)
151 seq_printf(p, ", %s", action->name);
152 }
153
154 seq_putc(p, '\n');
155out:
156 spin_unlock_irqrestore(&desc->lock, flags);
157 return 0;
158}
159
160/*
161 * /proc/stat helpers
162 */
163u64 arch_irq_stat_cpu(unsigned int cpu)
164{
165 u64 sum = irq_stats(cpu)->__nmi_count;
166
167#ifdef CONFIG_X86_LOCAL_APIC
168 sum += irq_stats(cpu)->apic_timer_irqs;
Jaswinder Singh Rajput474e56b2009-03-23 02:08:34 +0530169 sum += irq_stats(cpu)->irq_spurious_count;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200170#endif
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600171 if (generic_interrupt_extension)
172 sum += irq_stats(cpu)->generic_irqs;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200173#ifdef CONFIG_SMP
174 sum += irq_stats(cpu)->irq_resched_count;
175 sum += irq_stats(cpu)->irq_call_count;
176 sum += irq_stats(cpu)->irq_tlb_count;
177#endif
178#ifdef CONFIG_X86_MCE
179 sum += irq_stats(cpu)->irq_thermal_count;
180# ifdef CONFIG_X86_64
181 sum += irq_stats(cpu)->irq_threshold_count;
Cyrill Gorcunovedea7142009-04-12 20:47:39 +0400182# endif
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200183#endif
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200184 return sum;
185}
186
187u64 arch_irq_stat(void)
188{
189 u64 sum = atomic_read(&irq_err_count);
190
191#ifdef CONFIG_X86_IO_APIC
192 sum += atomic_read(&irq_mis_count);
193#endif
194 return sum;
195}
Ingo Molnarc3d80002008-12-23 15:15:17 +0100196
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800197
198/*
199 * do_IRQ handles all normal device IRQ's (the special
200 * SMP cross-CPU interrupts have their own specific
201 * handlers).
202 */
203unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
204{
205 struct pt_regs *old_regs = set_irq_regs(regs);
206
207 /* high bit used in ret_from_ code */
208 unsigned vector = ~regs->orig_ax;
209 unsigned irq;
210
211 exit_idle();
212 irq_enter();
213
214 irq = __get_cpu_var(vector_irq)[vector];
215
216 if (!handle_irq(irq, regs)) {
217#ifdef CONFIG_X86_64
218 if (!disable_apic)
219 ack_APIC_irq();
220#endif
221
222 if (printk_ratelimit())
Cyrill Gorcunovedea7142009-04-12 20:47:39 +0400223 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
224 __func__, smp_processor_id(), vector, irq);
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800225 }
226
227 irq_exit();
228
229 set_irq_regs(old_regs);
230 return 1;
231}
232
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600233/*
234 * Handler for GENERIC_INTERRUPT_VECTOR.
235 */
236void smp_generic_interrupt(struct pt_regs *regs)
237{
238 struct pt_regs *old_regs = set_irq_regs(regs);
239
240 ack_APIC_irq();
241
242 exit_idle();
243
244 irq_enter();
245
246 inc_irq_stat(generic_irqs);
247
248 if (generic_interrupt_extension)
249 generic_interrupt_extension();
250
251 irq_exit();
252
253 set_irq_regs(old_regs);
254}
255
Ingo Molnarc3d80002008-12-23 15:15:17 +0100256EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);