blob: d833d1b962a51992faaf8fbe6acab8b3d63a5a39 [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>
Andres Salomon4722d192010-11-12 05:45:26 +00007#include <linux/of.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +02008#include <linux/seq_file.h>
Jaswinder Singh Rajput6a02e712009-01-04 16:22:17 +05309#include <linux/smp.h>
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -080010#include <linux/ftrace.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020011
Ingo Molnar7b6aa332009-02-17 13:58:15 +010012#include <asm/apic.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020013#include <asm/io_apic.h>
Ingo Molnarc3d80002008-12-23 15:15:17 +010014#include <asm/irq.h>
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -080015#include <asm/idle.h>
Andi Kleen01ca79f2009-05-27 21:56:52 +020016#include <asm/mce.h>
Jaswinder Singh Rajput2c1b2842009-04-11 00:03:10 +053017#include <asm/hw_irq.h>
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020018
19atomic_t irq_err_count;
20
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060021/* Function pointer for generic interrupt vector handling */
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050022void (*x86_platform_ipi_callback)(void) = NULL;
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060023
Thomas Gleixner249f6d92008-10-16 12:18:50 +020024/*
25 * 'what should we do if we get a hw irq event on an illegal vector'.
26 * each architecture has to answer this themselves.
27 */
28void ack_bad_irq(unsigned int irq)
29{
Cyrill Gorcunovedea7142009-04-12 20:47:39 +040030 if (printk_ratelimit())
31 pr_err("unexpected IRQ trap at vector %02x\n", irq);
Thomas Gleixner249f6d92008-10-16 12:18:50 +020032
Thomas Gleixner249f6d92008-10-16 12:18:50 +020033 /*
34 * Currently unexpected vectors happen only on SMP and APIC.
35 * We _must_ ack these because every local APIC has only N
36 * irq slots per priority level, and a 'hanging, unacked' IRQ
37 * holds up an irq slot - in excessive cases (when multiple
38 * unexpected vectors occur) that might lock up the APIC
39 * completely.
40 * But only ack when the APIC is enabled -AK
41 */
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +040042 ack_APIC_irq();
Thomas Gleixner249f6d92008-10-16 12:18:50 +020043}
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");
Li Hong89ccf462009-10-14 18:50:39 +080067 seq_printf(p, "%*s: ", prec, "PMI");
Ingo Molnar241771e2008-12-03 10:39:53 +010068 for_each_online_cpu(j)
69 seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
Li Hong89ccf462009-10-14 18:50:39 +080070 seq_printf(p, " Performance monitoring interrupts\n");
Peter Zijlstrae360adb2010-10-14 14:01:34 +080071 seq_printf(p, "%*s: ", prec, "IWI");
Peter Zijlstrab6276f32009-04-06 11:45:03 +020072 for_each_online_cpu(j)
Peter Zijlstrae360adb2010-10-14 14:01:34 +080073 seq_printf(p, "%10u ", irq_stats(j)->apic_irq_work_irqs);
74 seq_printf(p, " IRQ work interrupts\n");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020075#endif
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050076 if (x86_platform_ipi_callback) {
Hidetoshi Seto59d13812009-03-25 10:50:34 +090077 seq_printf(p, "%*s: ", prec, "PLT");
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060078 for_each_online_cpu(j)
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050079 seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis);
Dimitri Sivanichacaabe72009-03-04 12:56:05 -060080 seq_printf(p, " Platform interrupts\n");
81 }
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020082#ifdef CONFIG_SMP
Jan Beulich7a81d9a2009-03-12 12:45:15 +000083 seq_printf(p, "%*s: ", prec, "RES");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020084 for_each_online_cpu(j)
85 seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
86 seq_printf(p, " Rescheduling interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000087 seq_printf(p, "%*s: ", prec, "CAL");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020088 for_each_online_cpu(j)
89 seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
90 seq_printf(p, " Function call interrupts\n");
Jan Beulich7a81d9a2009-03-12 12:45:15 +000091 seq_printf(p, "%*s: ", prec, "TLB");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020092 for_each_online_cpu(j)
93 seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
94 seq_printf(p, " TLB shootdowns\n");
95#endif
Jan Beulich0444c9b2009-11-20 14:03:05 +000096#ifdef CONFIG_X86_THERMAL_VECTOR
Jan Beulich7a81d9a2009-03-12 12:45:15 +000097 seq_printf(p, "%*s: ", prec, "TRM");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +020098 for_each_online_cpu(j)
99 seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
100 seq_printf(p, " Thermal event interrupts\n");
Jan Beulich0444c9b2009-11-20 14:03:05 +0000101#endif
102#ifdef CONFIG_X86_MCE_THRESHOLD
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000103 seq_printf(p, "%*s: ", prec, "THR");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200104 for_each_online_cpu(j)
105 seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
106 seq_printf(p, " Threshold APIC interrupts\n");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200107#endif
Andi Kleenc1ebf832009-07-09 00:31:41 +0200108#ifdef CONFIG_X86_MCE
Andi Kleen01ca79f2009-05-27 21:56:52 +0200109 seq_printf(p, "%*s: ", prec, "MCE");
110 for_each_online_cpu(j)
111 seq_printf(p, "%10u ", per_cpu(mce_exception_count, j));
112 seq_printf(p, " Machine check exceptions\n");
Andi Kleenca84f692009-05-27 21:56:57 +0200113 seq_printf(p, "%*s: ", prec, "MCP");
114 for_each_online_cpu(j)
115 seq_printf(p, "%10u ", per_cpu(mce_poll_count, j));
116 seq_printf(p, " Machine check polls\n");
Andi Kleen01ca79f2009-05-27 21:56:52 +0200117#endif
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000118 seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200119#if defined(CONFIG_X86_IO_APIC)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000120 seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200121#endif
122 return 0;
123}
124
125int show_interrupts(struct seq_file *p, void *v)
126{
127 unsigned long flags, any_count = 0;
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000128 int i = *(loff_t *) v, j, prec;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200129 struct irqaction *action;
130 struct irq_desc *desc;
131
132 if (i > nr_irqs)
133 return 0;
134
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000135 for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)
136 j *= 10;
137
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200138 if (i == nr_irqs)
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000139 return show_other_interrupts(p, prec);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200140
141 /* print header */
142 if (i == 0) {
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000143 seq_printf(p, "%*s", prec + 8, "");
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200144 for_each_online_cpu(j)
Ingo Molnare9f95e62008-10-21 15:49:59 +0200145 seq_printf(p, "CPU%-8d", j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200146 seq_putc(p, '\n');
147 }
148
149 desc = irq_to_desc(i);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800150 if (!desc)
151 return 0;
152
Thomas Gleixner239007b2009-11-17 16:46:45 +0100153 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200154 for_each_online_cpu(j)
155 any_count |= kstat_irqs_cpu(i, j);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200156 action = desc->action;
157 if (!action && !any_count)
158 goto out;
159
Jan Beulich7a81d9a2009-03-12 12:45:15 +0000160 seq_printf(p, "%*d: ", prec, i);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200161 for_each_online_cpu(j)
162 seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200163 seq_printf(p, " %8s", desc->irq_data.chip->name);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200164 seq_printf(p, "-%-8s", desc->name);
165
166 if (action) {
167 seq_printf(p, " %s", action->name);
168 while ((action = action->next) != NULL)
169 seq_printf(p, ", %s", action->name);
170 }
171
172 seq_putc(p, '\n');
173out:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100174 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200175 return 0;
176}
177
178/*
179 * /proc/stat helpers
180 */
181u64 arch_irq_stat_cpu(unsigned int cpu)
182{
183 u64 sum = irq_stats(cpu)->__nmi_count;
184
185#ifdef CONFIG_X86_LOCAL_APIC
186 sum += irq_stats(cpu)->apic_timer_irqs;
Jaswinder Singh Rajput474e56b2009-03-23 02:08:34 +0530187 sum += irq_stats(cpu)->irq_spurious_count;
Ingo Molnar241771e2008-12-03 10:39:53 +0100188 sum += irq_stats(cpu)->apic_perf_irqs;
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800189 sum += irq_stats(cpu)->apic_irq_work_irqs;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200190#endif
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500191 if (x86_platform_ipi_callback)
192 sum += irq_stats(cpu)->x86_platform_ipis;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200193#ifdef CONFIG_SMP
194 sum += irq_stats(cpu)->irq_resched_count;
195 sum += irq_stats(cpu)->irq_call_count;
196 sum += irq_stats(cpu)->irq_tlb_count;
197#endif
Jan Beulich0444c9b2009-11-20 14:03:05 +0000198#ifdef CONFIG_X86_THERMAL_VECTOR
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200199 sum += irq_stats(cpu)->irq_thermal_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +0000200#endif
201#ifdef CONFIG_X86_MCE_THRESHOLD
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200202 sum += irq_stats(cpu)->irq_threshold_count;
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200203#endif
Andi Kleenc1ebf832009-07-09 00:31:41 +0200204#ifdef CONFIG_X86_MCE
Hidetoshi Seto8051dbd2009-06-02 16:53:23 +0900205 sum += per_cpu(mce_exception_count, cpu);
206 sum += per_cpu(mce_poll_count, cpu);
207#endif
Thomas Gleixner6b39ba72008-10-16 11:32:24 +0200208 return sum;
209}
210
211u64 arch_irq_stat(void)
212{
213 u64 sum = atomic_read(&irq_err_count);
214
215#ifdef CONFIG_X86_IO_APIC
216 sum += atomic_read(&irq_mis_count);
217#endif
218 return sum;
219}
Ingo Molnarc3d80002008-12-23 15:15:17 +0100220
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800221
222/*
223 * do_IRQ handles all normal device IRQ's (the special
224 * SMP cross-CPU interrupts have their own specific
225 * handlers).
226 */
227unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
228{
229 struct pt_regs *old_regs = set_irq_regs(regs);
230
231 /* high bit used in ret_from_ code */
232 unsigned vector = ~regs->orig_ax;
233 unsigned irq;
234
235 exit_idle();
236 irq_enter();
237
238 irq = __get_cpu_var(vector_irq)[vector];
239
240 if (!handle_irq(irq, regs)) {
Cyrill Gorcunov08306ce2009-04-12 20:47:41 +0400241 ack_APIC_irq();
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800242
243 if (printk_ratelimit())
Cyrill Gorcunovedea7142009-04-12 20:47:39 +0400244 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
245 __func__, smp_processor_id(), vector, irq);
Jeremy Fitzhardinge7c1d7cd2009-02-06 14:09:41 -0800246 }
247
248 irq_exit();
249
250 set_irq_regs(old_regs);
251 return 1;
252}
253
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600254/*
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500255 * Handler for X86_PLATFORM_IPI_VECTOR.
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600256 */
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500257void smp_x86_platform_ipi(struct pt_regs *regs)
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600258{
259 struct pt_regs *old_regs = set_irq_regs(regs);
260
261 ack_APIC_irq();
262
263 exit_idle();
264
265 irq_enter();
266
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500267 inc_irq_stat(x86_platform_ipis);
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600268
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500269 if (x86_platform_ipi_callback)
270 x86_platform_ipi_callback();
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600271
272 irq_exit();
273
274 set_irq_regs(old_regs);
275}
276
Ingo Molnarc3d80002008-12-23 15:15:17 +0100277EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800278
Andres Salomon4722d192010-11-12 05:45:26 +0000279#ifdef CONFIG_OF
280unsigned int irq_create_of_mapping(struct device_node *controller,
281 const u32 *intspec, unsigned int intsize)
282{
283 return intspec[0];
284}
285EXPORT_SYMBOL_GPL(irq_create_of_mapping);
286#endif
287
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800288#ifdef CONFIG_HOTPLUG_CPU
289/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
290void fixup_irqs(void)
291{
Suresh Siddha5231a682009-10-26 14:24:36 -0800292 unsigned int irq, vector;
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800293 static int warned;
294 struct irq_desc *desc;
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200295 struct irq_data *data;
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800296
297 for_each_irq_desc(irq, desc) {
298 int break_affinity = 0;
299 int set_affinity = 1;
300 const struct cpumask *affinity;
301
302 if (!desc)
303 continue;
304 if (irq == 2)
305 continue;
306
307 /* interrupt's are disabled at this point */
Thomas Gleixner239007b2009-11-17 16:46:45 +0100308 raw_spin_lock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800309
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200310 data = &desc->irq_data;
311 affinity = data->affinity;
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800312 if (!irq_has_action(irq) ||
313 cpumask_equal(affinity, cpu_online_mask)) {
Thomas Gleixner239007b2009-11-17 16:46:45 +0100314 raw_spin_unlock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800315 continue;
316 }
317
Suresh Siddhaa5e74b82009-10-26 14:24:34 -0800318 /*
319 * Complete the irq move. This cpu is going down and for
320 * non intr-remapping case, we can't wait till this interrupt
321 * arrives at this cpu before completing the irq move.
322 */
323 irq_force_complete_move(irq);
324
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800325 if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
326 break_affinity = 1;
327 affinity = cpu_all_mask;
328 }
329
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200330 if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_mask)
331 data->chip->irq_mask(data);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800332
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200333 if (data->chip->irq_set_affinity)
334 data->chip->irq_set_affinity(data, affinity, true);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800335 else if (!(warned++))
336 set_affinity = 0;
337
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200338 if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_unmask)
339 data->chip->irq_unmask(data);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800340
Thomas Gleixner239007b2009-11-17 16:46:45 +0100341 raw_spin_unlock(&desc->lock);
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800342
343 if (break_affinity && set_affinity)
344 printk("Broke affinity for irq %i\n", irq);
345 else if (!set_affinity)
346 printk("Cannot set affinity for irq %i\n", irq);
347 }
348
Suresh Siddha5231a682009-10-26 14:24:36 -0800349 /*
350 * We can remove mdelay() and then send spuriuous interrupts to
351 * new cpu targets for all the irqs that were handled previously by
352 * this cpu. While it works, I have seen spurious interrupt messages
353 * (nothing wrong but still...).
354 *
355 * So for now, retain mdelay(1) and check the IRR and then send those
356 * interrupts to new targets as this cpu is already offlined...
357 */
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800358 mdelay(1);
Suresh Siddha5231a682009-10-26 14:24:36 -0800359
360 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
361 unsigned int irr;
362
363 if (__get_cpu_var(vector_irq)[vector] < 0)
364 continue;
365
366 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
367 if (irr & (1 << (vector % 32))) {
368 irq = __get_cpu_var(vector_irq)[vector];
369
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200370 data = irq_get_irq_data(irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100371 raw_spin_lock(&desc->lock);
Thomas Gleixnera3c08e52010-10-08 20:24:58 +0200372 if (data->chip->irq_retrigger)
373 data->chip->irq_retrigger(data);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100374 raw_spin_unlock(&desc->lock);
Suresh Siddha5231a682009-10-26 14:24:36 -0800375 }
376 }
Suresh Siddha7a7732b2009-10-26 14:24:31 -0800377}
378#endif