blob: 86fb2c8e065a335b4c793c8271bd4a273e8f3318 [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>
Andi Kleen01ca79f2009-05-27 21:56:52 +020015#include <asm/mce.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053016#include <asm/hw_irq.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020017
18atomic_t irq_err_count;
19
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060020/* Function pointer for generic interrupt vector handling */
21void (*generic_interrupt_extension)(void) = NULL;
22
Thomas Gleixner249f6d92008-10-16 12:18:50 +020023/*
24 * 'what should we do if we get a hw irq event on an illegal vector'.
25 * each architecture has to answer this themselves.
26 */
27void ack_bad_irq(unsigned int irq)
28{
Cyrill Gorcunovedea7142009-04-12 20:47:39 +040029 if (printk_ratelimit())
30 pr_err("unexpected IRQ trap at vector %02x\n", irq);
Thomas Gleixner249f6d92008-10-16 12:18:50 +020031
Thomas Gleixner249f6d92008-10-16 12:18:50 +020032 /*
33 * Currently unexpected vectors happen only on SMP and APIC.
34 * We _must_ ack these because every local APIC has only N
35 * irq slots per priority level, and a 'hanging, unacked' IRQ
36 * holds up an irq slot - in excessive cases (when multiple
37 * unexpected vectors occur) that might lock up the APIC
38 * completely.
39 * But only ack when the APIC is enabled -AK
40 */
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +040041 ack_APIC_irq();
Thomas Gleixner249f6d92008-10-16 12:18:50 +020042}
43
Brian Gerst1b437c82009-01-19 00:38:57 +090044#define irq_stats(x) (&per_cpu(irq_stat, x))
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020045/*
46 * /proc/interrupts printing:
47 */
Jan Beulich7a81d9a2009-03-12 12:45:15 +000048static int show_other_interrupts(struct seq_file *p, int prec)
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020049{
50 int j;
51
Jan Beulich7a81d9a2009-03-12 12:45:15 +000052 seq_printf(p, "%*s: ", prec, "NMI");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020053 for_each_online_cpu(j)
54 seq_printf(p, "%10u ", irq_stats(j)->__nmi_count);
55 seq_printf(p, " Non-maskable interrupts\n");
56#ifdef CONFIG_X86_LOCAL_APIC
Jan Beulich7a81d9a2009-03-12 12:45:15 +000057 seq_printf(p, "%*s: ", prec, "LOC");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020058 for_each_online_cpu(j)
59 seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs);
60 seq_printf(p, " Local timer interrupts\n");
Jaswinder Singh Rajput474e56b2009-03-23 02:08:34 +053061
62 seq_printf(p, "%*s: ", prec, "SPU");
63 for_each_online_cpu(j)
64 seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count);
65 seq_printf(p, " Spurious interrupts\n");
Li Hong89ccf462009-10-14 18:50:39 +080066 seq_printf(p, "%*s: ", prec, "PMI");
Ingo Molnar241771e2008-12-03 10:39:53 +010067 for_each_online_cpu(j)
68 seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
Li Hong89ccf462009-10-14 18:50:39 +080069 seq_printf(p, " Performance monitoring interrupts\n");
Luis Henriques0f3fd872009-04-13 20:24:50 +010070 seq_printf(p, "%*s: ", prec, "PND");
Peter Zijlstrab6276f32009-04-06 11:45:03 +020071 for_each_online_cpu(j)
72 seq_printf(p, "%10u ", irq_stats(j)->apic_pending_irqs);
73 seq_printf(p, " Performance pending work\n");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020074#endif
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060075 if (generic_interrupt_extension) {
Hidetoshi Seto59d13812009-03-25 10:50:34 +090076 seq_printf(p, "%*s: ", prec, "PLT");
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060077 for_each_online_cpu(j)
78 seq_printf(p, "%10u ", irq_stats(j)->generic_irqs);
79 seq_printf(p, " Platform interrupts\n");
80 }
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020081#ifdef CONFIG_SMP
Jan Beulich7a81d9a2009-03-12 12:45:15 +000082 seq_printf(p, "%*s: ", prec, "RES");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020083 for_each_online_cpu(j)
84 seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
85 seq_printf(p, " Rescheduling interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000086 seq_printf(p, "%*s: ", prec, "CAL");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020087 for_each_online_cpu(j)
88 seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
89 seq_printf(p, " Function call interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000090 seq_printf(p, "%*s: ", prec, "TLB");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020091 for_each_online_cpu(j)
92 seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
93 seq_printf(p, " TLB shootdowns\n");
94#endif
95#ifdef CONFIG_X86_MCE
Jan Beulich7a81d9a2009-03-12 12:45:15 +000096 seq_printf(p, "%*s: ", prec, "TRM");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020097 for_each_online_cpu(j)
98 seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
99 seq_printf(p, " Thermal event interrupts\n");
Andi Kleen4efc0672009-04-28 19:07:31 +0200100# ifdef CONFIG_X86_MCE_THRESHOLD
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000101 seq_printf(p, "%*s: ", prec, "THR");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200102 for_each_online_cpu(j)
103 seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
104 seq_printf(p, " Threshold APIC interrupts\n");
105# endif
106#endif
Andi Kleenc1ebf832009-07-09 00:31:41 +0200107#ifdef CONFIG_X86_MCE
Andi Kleen01ca79f2009-05-27 21:56:52 +0200108 seq_printf(p, "%*s: ", prec, "MCE");
109 for_each_online_cpu(j)
110 seq_printf(p, "%10u ", per_cpu(mce_exception_count, j));
111 seq_printf(p, " Machine check exceptions\n");
Andi Kleenca84f692009-05-27 21:56:57 +0200112 seq_printf(p, "%*s: ", prec, "MCP");
113 for_each_online_cpu(j)
114 seq_printf(p, "%10u ", per_cpu(mce_poll_count, j));
115 seq_printf(p, " Machine check polls\n");
Andi Kleen01ca79f2009-05-27 21:56:52 +0200116#endif
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000117 seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200118#if defined(CONFIG_X86_IO_APIC)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000119 seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200120#endif
121 return 0;
122}
123
124int show_interrupts(struct seq_file *p, void *v)
125{
126 unsigned long flags, any_count = 0;
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000127 int i = *(loff_t *) v, j, prec;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200128 struct irqaction *action;
129 struct irq_desc *desc;
130
131 if (i > nr_irqs)
132 return 0;
133
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000134 for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)
135 j *= 10;
136
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200137 if (i == nr_irqs)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000138 return show_other_interrupts(p, prec);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200139
140 /* print header */
141 if (i == 0) {
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000142 seq_printf(p, "%*s", prec + 8, "");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200143 for_each_online_cpu(j)
Ingo Molnare9f95e62008-10-21 15:49:59 +0200144 seq_printf(p, "CPU%-8d", j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200145 seq_putc(p, '\n');
146 }
147
148 desc = irq_to_desc(i);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800149 if (!desc)
150 return 0;
151
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200152 spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200153 for_each_online_cpu(j)
154 any_count |= kstat_irqs_cpu(i, j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200155 action = desc->action;
156 if (!action && !any_count)
157 goto out;
158
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000159 seq_printf(p, "%*d: ", prec, i);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200160 for_each_online_cpu(j)
161 seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200162 seq_printf(p, " %8s", desc->chip->name);
163 seq_printf(p, "-%-8s", desc->name);
164
165 if (action) {
166 seq_printf(p, " %s", action->name);
167 while ((action = action->next) != NULL)
168 seq_printf(p, ", %s", action->name);
169 }
170
171 seq_putc(p, '\n');
172out:
173 spin_unlock_irqrestore(&desc->lock, flags);
174 return 0;
175}
176
177/*
178 * /proc/stat helpers
179 */
180u64 arch_irq_stat_cpu(unsigned int cpu)
181{
182 u64 sum = irq_stats(cpu)->__nmi_count;
183
184#ifdef CONFIG_X86_LOCAL_APIC
185 sum += irq_stats(cpu)->apic_timer_irqs;
Jaswinder Singh Rajput474e56b2009-03-23 02:08:34 +0530186 sum += irq_stats(cpu)->irq_spurious_count;
Ingo Molnar241771e2008-12-03 10:39:53 +0100187 sum += irq_stats(cpu)->apic_perf_irqs;
Peter Zijlstrab6276f32009-04-06 11:45:03 +0200188 sum += irq_stats(cpu)->apic_pending_irqs;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200189#endif
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600190 if (generic_interrupt_extension)
191 sum += irq_stats(cpu)->generic_irqs;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200192#ifdef CONFIG_SMP
193 sum += irq_stats(cpu)->irq_resched_count;
194 sum += irq_stats(cpu)->irq_call_count;
195 sum += irq_stats(cpu)->irq_tlb_count;
196#endif
197#ifdef CONFIG_X86_MCE
198 sum += irq_stats(cpu)->irq_thermal_count;
Andi Kleen4efc0672009-04-28 19:07:31 +0200199# ifdef CONFIG_X86_MCE_THRESHOLD
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200200 sum += irq_stats(cpu)->irq_threshold_count;
Cyrill Gorcunovedea7142009-04-12 20:47:39 +0400201# endif
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200202#endif
Andi Kleenc1ebf832009-07-09 00:31:41 +0200203#ifdef CONFIG_X86_MCE
Hidetoshi Seto8051dbd2009-06-02 16:53:23 +0900204 sum += per_cpu(mce_exception_count, cpu);
205 sum += per_cpu(mce_poll_count, cpu);
206#endif
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200207 return sum;
208}
209
210u64 arch_irq_stat(void)
211{
212 u64 sum = atomic_read(&irq_err_count);
213
214#ifdef CONFIG_X86_IO_APIC
215 sum += atomic_read(&irq_mis_count);
216#endif
217 return sum;
218}
Ingo Molnarc3d80002008-12-23 15:15:17 +0100219
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800220
221/*
222 * do_IRQ handles all normal device IRQ's (the special
223 * SMP cross-CPU interrupts have their own specific
224 * handlers).
225 */
226unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
227{
228 struct pt_regs *old_regs = set_irq_regs(regs);
229
230 /* high bit used in ret_from_ code */
231 unsigned vector = ~regs->orig_ax;
232 unsigned irq;
233
234 exit_idle();
235 irq_enter();
236
237 irq = __get_cpu_var(vector_irq)[vector];
238
239 if (!handle_irq(irq, regs)) {
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400240 ack_APIC_irq();
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800241
242 if (printk_ratelimit())
Cyrill Gorcunovedea7142009-04-12 20:47:39 +0400243 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
244 __func__, smp_processor_id(), vector, irq);
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800245 }
246
Arjan van de Ven9bcbdd92009-10-08 06:40:41 -0700247 run_local_timers();
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800248 irq_exit();
249
250 set_irq_regs(old_regs);
251 return 1;
252}
253
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600254/*
255 * Handler for GENERIC_INTERRUPT_VECTOR.
256 */
257void smp_generic_interrupt(struct pt_regs *regs)
258{
259 struct pt_regs *old_regs = set_irq_regs(regs);
260
261 ack_APIC_irq();
262
263 exit_idle();
264
265 irq_enter();
266
267 inc_irq_stat(generic_irqs);
268
269 if (generic_interrupt_extension)
270 generic_interrupt_extension();
271
Arjan van de Ven9bcbdd92009-10-08 06:40:41 -0700272 run_local_timers();
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600273 irq_exit();
274
275 set_irq_regs(old_regs);
276}
277
Ingo Molnarc3d80002008-12-23 15:15:17 +0100278EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);