2 * Common interrupt code for 32 and 64 bit
5 #include <linux/interrupt.h>
6 #include <linux/kernel_stat.h>
8 #include <linux/seq_file.h>
10 #include <linux/ftrace.h>
13 #include <asm/io_apic.h>
17 #include <asm/hw_irq.h>
19 atomic_t irq_err_count
;
21 /* Function pointer for generic interrupt vector handling */
22 void (*x86_platform_ipi_callback
)(void) = NULL
;
25 * 'what should we do if we get a hw irq event on an illegal vector'.
26 * each architecture has to answer this themselves.
28 void ack_bad_irq(unsigned int irq
)
30 if (printk_ratelimit())
31 pr_err("unexpected IRQ trap at vector %02x\n", irq
);
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
40 * But only ack when the APIC is enabled -AK
45 #define irq_stats(x) (&per_cpu(irq_stat, x))
47 * /proc/interrupts printing:
49 static int show_other_interrupts(struct seq_file
*p
, int prec
)
53 seq_printf(p
, "%*s: ", prec
, "NMI");
54 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
58 seq_printf(p
, "%*s: ", prec
, "LOC");
59 for_each_online_cpu(j
)
60 seq_printf(p
, "%10u ", irq_stats(j
)->apic_timer_irqs
);
61 seq_printf(p
, " Local timer interrupts\n");
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");
67 seq_printf(p
, "%*s: ", prec
, "PMI");
68 for_each_online_cpu(j
)
69 seq_printf(p
, "%10u ", irq_stats(j
)->apic_perf_irqs
);
70 seq_printf(p
, " Performance monitoring interrupts\n");
71 seq_printf(p
, "%*s: ", prec
, "IWI");
72 for_each_online_cpu(j
)
73 seq_printf(p
, "%10u ", irq_stats(j
)->apic_irq_work_irqs
);
74 seq_printf(p
, " IRQ work interrupts\n");
76 if (x86_platform_ipi_callback
) {
77 seq_printf(p
, "%*s: ", prec
, "PLT");
78 for_each_online_cpu(j
)
79 seq_printf(p
, "%10u ", irq_stats(j
)->x86_platform_ipis
);
80 seq_printf(p
, " Platform interrupts\n");
83 seq_printf(p
, "%*s: ", prec
, "RES");
84 for_each_online_cpu(j
)
85 seq_printf(p
, "%10u ", irq_stats(j
)->irq_resched_count
);
86 seq_printf(p
, " Rescheduling interrupts\n");
87 seq_printf(p
, "%*s: ", prec
, "CAL");
88 for_each_online_cpu(j
)
89 seq_printf(p
, "%10u ", irq_stats(j
)->irq_call_count
);
90 seq_printf(p
, " Function call interrupts\n");
91 seq_printf(p
, "%*s: ", prec
, "TLB");
92 for_each_online_cpu(j
)
93 seq_printf(p
, "%10u ", irq_stats(j
)->irq_tlb_count
);
94 seq_printf(p
, " TLB shootdowns\n");
96 #ifdef CONFIG_X86_THERMAL_VECTOR
97 seq_printf(p
, "%*s: ", prec
, "TRM");
98 for_each_online_cpu(j
)
99 seq_printf(p
, "%10u ", irq_stats(j
)->irq_thermal_count
);
100 seq_printf(p
, " Thermal event interrupts\n");
102 #ifdef CONFIG_X86_MCE_THRESHOLD
103 seq_printf(p
, "%*s: ", prec
, "THR");
104 for_each_online_cpu(j
)
105 seq_printf(p
, "%10u ", irq_stats(j
)->irq_threshold_count
);
106 seq_printf(p
, " Threshold APIC interrupts\n");
108 #ifdef CONFIG_X86_MCE
109 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");
113 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");
118 seq_printf(p
, "%*s: %10u\n", prec
, "ERR", atomic_read(&irq_err_count
));
119 #if defined(CONFIG_X86_IO_APIC)
120 seq_printf(p
, "%*s: %10u\n", prec
, "MIS", atomic_read(&irq_mis_count
));
125 int show_interrupts(struct seq_file
*p
, void *v
)
127 unsigned long flags
, any_count
= 0;
128 int i
= *(loff_t
*) v
, j
, prec
;
129 struct irqaction
*action
;
130 struct irq_desc
*desc
;
135 for (prec
= 3, j
= 1000; prec
< 10 && j
<= nr_irqs
; ++prec
)
139 return show_other_interrupts(p
, prec
);
143 seq_printf(p
, "%*s", prec
+ 8, "");
144 for_each_online_cpu(j
)
145 seq_printf(p
, "CPU%-8d", j
);
149 desc
= irq_to_desc(i
);
153 raw_spin_lock_irqsave(&desc
->lock
, flags
);
154 for_each_online_cpu(j
)
155 any_count
|= kstat_irqs_cpu(i
, j
);
156 action
= desc
->action
;
157 if (!action
&& !any_count
)
160 seq_printf(p
, "%*d: ", prec
, i
);
161 for_each_online_cpu(j
)
162 seq_printf(p
, "%10u ", kstat_irqs_cpu(i
, j
));
163 seq_printf(p
, " %8s", desc
->irq_data
.chip
->name
);
164 seq_printf(p
, "-%-8s", desc
->name
);
167 seq_printf(p
, " %s", action
->name
);
168 while ((action
= action
->next
) != NULL
)
169 seq_printf(p
, ", %s", action
->name
);
174 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
181 u64
arch_irq_stat_cpu(unsigned int cpu
)
183 u64 sum
= irq_stats(cpu
)->__nmi_count
;
185 #ifdef CONFIG_X86_LOCAL_APIC
186 sum
+= irq_stats(cpu
)->apic_timer_irqs
;
187 sum
+= irq_stats(cpu
)->irq_spurious_count
;
188 sum
+= irq_stats(cpu
)->apic_perf_irqs
;
189 sum
+= irq_stats(cpu
)->apic_irq_work_irqs
;
191 if (x86_platform_ipi_callback
)
192 sum
+= irq_stats(cpu
)->x86_platform_ipis
;
194 sum
+= irq_stats(cpu
)->irq_resched_count
;
195 sum
+= irq_stats(cpu
)->irq_call_count
;
196 sum
+= irq_stats(cpu
)->irq_tlb_count
;
198 #ifdef CONFIG_X86_THERMAL_VECTOR
199 sum
+= irq_stats(cpu
)->irq_thermal_count
;
201 #ifdef CONFIG_X86_MCE_THRESHOLD
202 sum
+= irq_stats(cpu
)->irq_threshold_count
;
204 #ifdef CONFIG_X86_MCE
205 sum
+= per_cpu(mce_exception_count
, cpu
);
206 sum
+= per_cpu(mce_poll_count
, cpu
);
211 u64
arch_irq_stat(void)
213 u64 sum
= atomic_read(&irq_err_count
);
215 #ifdef CONFIG_X86_IO_APIC
216 sum
+= atomic_read(&irq_mis_count
);
223 * do_IRQ handles all normal device IRQ's (the special
224 * SMP cross-CPU interrupts have their own specific
227 unsigned int __irq_entry
do_IRQ(struct pt_regs
*regs
)
229 struct pt_regs
*old_regs
= set_irq_regs(regs
);
231 /* high bit used in ret_from_ code */
232 unsigned vector
= ~regs
->orig_ax
;
238 irq
= __this_cpu_read(vector_irq
[vector
]);
240 if (!handle_irq(irq
, regs
)) {
243 if (printk_ratelimit())
244 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
245 __func__
, smp_processor_id(), vector
, irq
);
250 set_irq_regs(old_regs
);
255 * Handler for X86_PLATFORM_IPI_VECTOR.
257 void smp_x86_platform_ipi(struct pt_regs
*regs
)
259 struct pt_regs
*old_regs
= set_irq_regs(regs
);
267 inc_irq_stat(x86_platform_ipis
);
269 if (x86_platform_ipi_callback
)
270 x86_platform_ipi_callback();
274 set_irq_regs(old_regs
);
277 EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq
);
279 #ifdef CONFIG_HOTPLUG_CPU
280 /* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
281 void fixup_irqs(void)
283 unsigned int irq
, vector
;
285 struct irq_desc
*desc
;
286 struct irq_data
*data
;
288 for_each_irq_desc(irq
, desc
) {
289 int break_affinity
= 0;
290 int set_affinity
= 1;
291 const struct cpumask
*affinity
;
298 /* interrupt's are disabled at this point */
299 raw_spin_lock(&desc
->lock
);
301 data
= &desc
->irq_data
;
302 affinity
= data
->affinity
;
303 if (!irq_has_action(irq
) ||
304 cpumask_equal(affinity
, cpu_online_mask
)) {
305 raw_spin_unlock(&desc
->lock
);
310 * Complete the irq move. This cpu is going down and for
311 * non intr-remapping case, we can't wait till this interrupt
312 * arrives at this cpu before completing the irq move.
314 irq_force_complete_move(irq
);
316 if (cpumask_any_and(affinity
, cpu_online_mask
) >= nr_cpu_ids
) {
318 affinity
= cpu_all_mask
;
321 if (!(desc
->status
& IRQ_MOVE_PCNTXT
) && data
->chip
->irq_mask
)
322 data
->chip
->irq_mask(data
);
324 if (data
->chip
->irq_set_affinity
)
325 data
->chip
->irq_set_affinity(data
, affinity
, true);
326 else if (!(warned
++))
329 if (!(desc
->status
& IRQ_MOVE_PCNTXT
) && data
->chip
->irq_unmask
)
330 data
->chip
->irq_unmask(data
);
332 raw_spin_unlock(&desc
->lock
);
334 if (break_affinity
&& set_affinity
)
335 printk("Broke affinity for irq %i\n", irq
);
336 else if (!set_affinity
)
337 printk("Cannot set affinity for irq %i\n", irq
);
341 * We can remove mdelay() and then send spuriuous interrupts to
342 * new cpu targets for all the irqs that were handled previously by
343 * this cpu. While it works, I have seen spurious interrupt messages
344 * (nothing wrong but still...).
346 * So for now, retain mdelay(1) and check the IRR and then send those
347 * interrupts to new targets as this cpu is already offlined...
351 for (vector
= FIRST_EXTERNAL_VECTOR
; vector
< NR_VECTORS
; vector
++) {
354 if (__this_cpu_read(vector_irq
[vector
]) < 0)
357 irr
= apic_read(APIC_IRR
+ (vector
/ 32 * 0x10));
358 if (irr
& (1 << (vector
% 32))) {
359 irq
= __this_cpu_read(vector_irq
[vector
]);
361 desc
= irq_to_desc(irq
);
362 data
= &desc
->irq_data
;
363 raw_spin_lock(&desc
->lock
);
364 if (data
->chip
->irq_retrigger
)
365 data
->chip
->irq_retrigger(data
);
366 raw_spin_unlock(&desc
->lock
);