blob: 91fd0c70a18abddc28eff75e287c70dd5d37af7d [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 */
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050021void (*x86_platform_ipi_callback)(void) = NULL;
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060022
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 Sivanich4a4de9c2009-10-14 09:22:57 -050075 if (x86_platform_ipi_callback) {
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)
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050078 seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis);
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060079 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
Jan Beulich0444c9b2009-11-20 14:03:05 +000095#ifdef CONFIG_X86_THERMAL_VECTOR
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");
Jan Beulich0444c9b2009-11-20 14:03:05 +0000100#endif
101#ifdef CONFIG_X86_MCE_THRESHOLD
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000102 seq_printf(p, "%*s: ", prec, "THR");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200103 for_each_online_cpu(j)
104 seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
105 seq_printf(p, " Threshold APIC interrupts\n");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200106#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 Gleixner239007b2009-11-17 16:46:45 +0100152 raw_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:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100173 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200174 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 Sivanich4a4de9c2009-10-14 09:22:57 -0500190 if (x86_platform_ipi_callback)
191 sum += irq_stats(cpu)->x86_platform_ipis;
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
Jan Beulich0444c9b2009-11-20 14:03:05 +0000197#ifdef CONFIG_X86_THERMAL_VECTOR
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200198 sum += irq_stats(cpu)->irq_thermal_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +0000199#endif
200#ifdef CONFIG_X86_MCE_THRESHOLD
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200201 sum += irq_stats(cpu)->irq_threshold_count;
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
247 irq_exit();
248
249 set_irq_regs(old_regs);
250 return 1;
251}
252
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600253/*
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500254 * Handler for X86_PLATFORM_IPI_VECTOR.
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600255 */
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500256void smp_x86_platform_ipi(struct pt_regs *regs)
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600257{
258 struct pt_regs *old_regs = set_irq_regs(regs);
259
260 ack_APIC_irq();
261
262 exit_idle();
263
264 irq_enter();
265
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500266 inc_irq_stat(x86_platform_ipis);
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600267
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500268 if (x86_platform_ipi_callback)
269 x86_platform_ipi_callback();
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600270
271 irq_exit();
272
273 set_irq_regs(old_regs);
274}
275
Ingo Molnarc3d80002008-12-23 15:15:17 +0100276EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800277
278#ifdef CONFIG_HOTPLUG_CPU
279/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
280void fixup_irqs(void)
281{
Suresh Siddha5231a682009-10-26 14:24:36 -0800282 unsigned int irq, vector;
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800283 static int warned;
284 struct irq_desc *desc;
285
286 for_each_irq_desc(irq, desc) {
287 int break_affinity = 0;
288 int set_affinity = 1;
289 const struct cpumask *affinity;
290
291 if (!desc)
292 continue;
293 if (irq == 2)
294 continue;
295
296 /* interrupt's are disabled at this point */
Thomas Gleixner239007b2009-11-17 16:46:45 +0100297 raw_spin_lock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800298
299 affinity = desc->affinity;
300 if (!irq_has_action(irq) ||
301 cpumask_equal(affinity, cpu_online_mask)) {
Thomas Gleixner239007b2009-11-17 16:46:45 +0100302 raw_spin_unlock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800303 continue;
304 }
305
Suresh Siddhaa5e74b82009-10-26 14:24:34 -0800306 /*
307 * Complete the irq move. This cpu is going down and for
308 * non intr-remapping case, we can't wait till this interrupt
309 * arrives at this cpu before completing the irq move.
310 */
311 irq_force_complete_move(irq);
312
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800313 if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
314 break_affinity = 1;
315 affinity = cpu_all_mask;
316 }
317
Suresh Siddha84e21492009-10-26 14:24:32 -0800318 if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->mask)
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800319 desc->chip->mask(irq);
320
321 if (desc->chip->set_affinity)
322 desc->chip->set_affinity(irq, affinity);
323 else if (!(warned++))
324 set_affinity = 0;
325
Suresh Siddha84e21492009-10-26 14:24:32 -0800326 if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->unmask)
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800327 desc->chip->unmask(irq);
328
Thomas Gleixner239007b2009-11-17 16:46:45 +0100329 raw_spin_unlock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800330
331 if (break_affinity && set_affinity)
332 printk("Broke affinity for irq %i\n", irq);
333 else if (!set_affinity)
334 printk("Cannot set affinity for irq %i\n", irq);
335 }
336
Suresh Siddha5231a682009-10-26 14:24:36 -0800337 /*
338 * We can remove mdelay() and then send spuriuous interrupts to
339 * new cpu targets for all the irqs that were handled previously by
340 * this cpu. While it works, I have seen spurious interrupt messages
341 * (nothing wrong but still...).
342 *
343 * So for now, retain mdelay(1) and check the IRR and then send those
344 * interrupts to new targets as this cpu is already offlined...
345 */
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800346 mdelay(1);
Suresh Siddha5231a682009-10-26 14:24:36 -0800347
348 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
349 unsigned int irr;
350
351 if (__get_cpu_var(vector_irq)[vector] < 0)
352 continue;
353
354 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
355 if (irr & (1 << (vector % 32))) {
356 irq = __get_cpu_var(vector_irq)[vector];
357
358 desc = irq_to_desc(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100359 raw_spin_lock(&desc->lock);
Suresh Siddha5231a682009-10-26 14:24:36 -0800360 if (desc->chip->retrigger)
361 desc->chip->retrigger(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100362 raw_spin_unlock(&desc->lock);
Suresh Siddha5231a682009-10-26 14:24:36 -0800363 }
364 }
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800365}
366#endif