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>
11 #include <linux/delay.h>
12 #include <linux/export.h>
15 #include <asm/io_apic.h>
19 #include <asm/hw_irq.h>
21 #define CREATE_TRACE_POINTS
22 #include <trace/events/irq_vectors.h>
24 atomic_t irq_err_count
;
26 /* Function pointer for generic interrupt vector handling */
27 void (*x86_platform_ipi_callback
)(void) = NULL
;
30 * 'what should we do if we get a hw irq event on an illegal vector'.
31 * each architecture has to answer this themselves.
33 void ack_bad_irq(unsigned int irq
)
35 if (printk_ratelimit())
36 pr_err("unexpected IRQ trap at vector %02x\n", irq
);
39 * Currently unexpected vectors happen only on SMP and APIC.
40 * We _must_ ack these because every local APIC has only N
41 * irq slots per priority level, and a 'hanging, unacked' IRQ
42 * holds up an irq slot - in excessive cases (when multiple
43 * unexpected vectors occur) that might lock up the APIC
45 * But only ack when the APIC is enabled -AK
50 #define irq_stats(x) (&per_cpu(irq_stat, x))
52 * /proc/interrupts printing for arch specific interrupts
54 int arch_show_interrupts(struct seq_file
*p
, int prec
)
58 seq_printf(p
, "%*s: ", prec
, "NMI");
59 for_each_online_cpu(j
)
60 seq_printf(p
, "%10u ", irq_stats(j
)->__nmi_count
);
61 seq_printf(p
, " Non-maskable interrupts\n");
62 #ifdef CONFIG_X86_LOCAL_APIC
63 seq_printf(p
, "%*s: ", prec
, "LOC");
64 for_each_online_cpu(j
)
65 seq_printf(p
, "%10u ", irq_stats(j
)->apic_timer_irqs
);
66 seq_printf(p
, " Local timer interrupts\n");
68 seq_printf(p
, "%*s: ", prec
, "SPU");
69 for_each_online_cpu(j
)
70 seq_printf(p
, "%10u ", irq_stats(j
)->irq_spurious_count
);
71 seq_printf(p
, " Spurious interrupts\n");
72 seq_printf(p
, "%*s: ", prec
, "PMI");
73 for_each_online_cpu(j
)
74 seq_printf(p
, "%10u ", irq_stats(j
)->apic_perf_irqs
);
75 seq_printf(p
, " Performance monitoring interrupts\n");
76 seq_printf(p
, "%*s: ", prec
, "IWI");
77 for_each_online_cpu(j
)
78 seq_printf(p
, "%10u ", irq_stats(j
)->apic_irq_work_irqs
);
79 seq_printf(p
, " IRQ work interrupts\n");
81 if (x86_platform_ipi_callback
) {
82 seq_printf(p
, "%*s: ", prec
, "PLT");
83 for_each_online_cpu(j
)
84 seq_printf(p
, "%10u ", irq_stats(j
)->x86_platform_ipis
);
85 seq_printf(p
, " Platform interrupts\n");
88 seq_printf(p
, "%*s: ", prec
, "RES");
89 for_each_online_cpu(j
)
90 seq_printf(p
, "%10u ", irq_stats(j
)->irq_resched_count
);
91 seq_printf(p
, " Rescheduling interrupts\n");
92 seq_printf(p
, "%*s: ", prec
, "CAL");
93 for_each_online_cpu(j
)
94 seq_printf(p
, "%10u ", irq_stats(j
)->irq_call_count
);
95 seq_printf(p
, " Function call interrupts\n");
96 seq_printf(p
, "%*s: ", prec
, "TLB");
97 for_each_online_cpu(j
)
98 seq_printf(p
, "%10u ", irq_stats(j
)->irq_tlb_count
);
99 seq_printf(p
, " TLB shootdowns\n");
101 #ifdef CONFIG_X86_THERMAL_VECTOR
102 seq_printf(p
, "%*s: ", prec
, "TRM");
103 for_each_online_cpu(j
)
104 seq_printf(p
, "%10u ", irq_stats(j
)->irq_thermal_count
);
105 seq_printf(p
, " Thermal event interrupts\n");
107 #ifdef CONFIG_X86_MCE_THRESHOLD
108 seq_printf(p
, "%*s: ", prec
, "THR");
109 for_each_online_cpu(j
)
110 seq_printf(p
, "%10u ", irq_stats(j
)->irq_threshold_count
);
111 seq_printf(p
, " Threshold APIC interrupts\n");
113 #ifdef CONFIG_X86_MCE
114 seq_printf(p
, "%*s: ", prec
, "MCE");
115 for_each_online_cpu(j
)
116 seq_printf(p
, "%10u ", per_cpu(mce_exception_count
, j
));
117 seq_printf(p
, " Machine check exceptions\n");
118 seq_printf(p
, "%*s: ", prec
, "MCP");
119 for_each_online_cpu(j
)
120 seq_printf(p
, "%10u ", per_cpu(mce_poll_count
, j
));
121 seq_printf(p
, " Machine check polls\n");
123 seq_printf(p
, "%*s: %10u\n", prec
, "ERR", atomic_read(&irq_err_count
));
124 #if defined(CONFIG_X86_IO_APIC)
125 seq_printf(p
, "%*s: %10u\n", prec
, "MIS", atomic_read(&irq_mis_count
));
133 u64
arch_irq_stat_cpu(unsigned int cpu
)
135 u64 sum
= irq_stats(cpu
)->__nmi_count
;
137 #ifdef CONFIG_X86_LOCAL_APIC
138 sum
+= irq_stats(cpu
)->apic_timer_irqs
;
139 sum
+= irq_stats(cpu
)->irq_spurious_count
;
140 sum
+= irq_stats(cpu
)->apic_perf_irqs
;
141 sum
+= irq_stats(cpu
)->apic_irq_work_irqs
;
143 if (x86_platform_ipi_callback
)
144 sum
+= irq_stats(cpu
)->x86_platform_ipis
;
146 sum
+= irq_stats(cpu
)->irq_resched_count
;
147 sum
+= irq_stats(cpu
)->irq_call_count
;
148 sum
+= irq_stats(cpu
)->irq_tlb_count
;
150 #ifdef CONFIG_X86_THERMAL_VECTOR
151 sum
+= irq_stats(cpu
)->irq_thermal_count
;
153 #ifdef CONFIG_X86_MCE_THRESHOLD
154 sum
+= irq_stats(cpu
)->irq_threshold_count
;
156 #ifdef CONFIG_X86_MCE
157 sum
+= per_cpu(mce_exception_count
, cpu
);
158 sum
+= per_cpu(mce_poll_count
, cpu
);
163 u64
arch_irq_stat(void)
165 u64 sum
= atomic_read(&irq_err_count
);
167 #ifdef CONFIG_X86_IO_APIC
168 sum
+= atomic_read(&irq_mis_count
);
175 * do_IRQ handles all normal device IRQ's (the special
176 * SMP cross-CPU interrupts have their own specific
179 unsigned int __irq_entry
do_IRQ(struct pt_regs
*regs
)
181 struct pt_regs
*old_regs
= set_irq_regs(regs
);
183 /* high bit used in ret_from_ code */
184 unsigned vector
= ~regs
->orig_ax
;
190 irq
= __this_cpu_read(vector_irq
[vector
]);
192 if (!handle_irq(irq
, regs
)) {
195 if (printk_ratelimit())
196 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
197 __func__
, smp_processor_id(), vector
, irq
);
202 set_irq_regs(old_regs
);
207 * Handler for X86_PLATFORM_IPI_VECTOR.
209 void smp_x86_platform_ipi(struct pt_regs
*regs
)
211 struct pt_regs
*old_regs
= set_irq_regs(regs
);
218 trace_irq_vector_entry(X86_PLATFORM_IPI_VECTOR
);
219 inc_irq_stat(x86_platform_ipis
);
221 if (x86_platform_ipi_callback
)
222 x86_platform_ipi_callback();
224 trace_irq_vector_exit(X86_PLATFORM_IPI_VECTOR
);
227 set_irq_regs(old_regs
);
230 EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq
);
232 #ifdef CONFIG_HOTPLUG_CPU
233 /* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
234 void fixup_irqs(void)
236 unsigned int irq
, vector
;
238 struct irq_desc
*desc
;
239 struct irq_data
*data
;
240 struct irq_chip
*chip
;
242 for_each_irq_desc(irq
, desc
) {
243 int break_affinity
= 0;
244 int set_affinity
= 1;
245 const struct cpumask
*affinity
;
252 /* interrupt's are disabled at this point */
253 raw_spin_lock(&desc
->lock
);
255 data
= irq_desc_get_irq_data(desc
);
256 affinity
= data
->affinity
;
257 if (!irq_has_action(irq
) || irqd_is_per_cpu(data
) ||
258 cpumask_subset(affinity
, cpu_online_mask
)) {
259 raw_spin_unlock(&desc
->lock
);
264 * Complete the irq move. This cpu is going down and for
265 * non intr-remapping case, we can't wait till this interrupt
266 * arrives at this cpu before completing the irq move.
268 irq_force_complete_move(irq
);
270 if (cpumask_any_and(affinity
, cpu_online_mask
) >= nr_cpu_ids
) {
272 affinity
= cpu_all_mask
;
275 chip
= irq_data_get_irq_chip(data
);
276 if (!irqd_can_move_in_process_context(data
) && chip
->irq_mask
)
277 chip
->irq_mask(data
);
279 if (chip
->irq_set_affinity
)
280 chip
->irq_set_affinity(data
, affinity
, true);
281 else if (!(warned
++))
284 if (!irqd_can_move_in_process_context(data
) &&
285 !irqd_irq_disabled(data
) && chip
->irq_unmask
)
286 chip
->irq_unmask(data
);
288 raw_spin_unlock(&desc
->lock
);
290 if (break_affinity
&& set_affinity
)
291 printk("Broke affinity for irq %i\n", irq
);
292 else if (!set_affinity
)
293 printk("Cannot set affinity for irq %i\n", irq
);
297 * We can remove mdelay() and then send spuriuous interrupts to
298 * new cpu targets for all the irqs that were handled previously by
299 * this cpu. While it works, I have seen spurious interrupt messages
300 * (nothing wrong but still...).
302 * So for now, retain mdelay(1) and check the IRR and then send those
303 * interrupts to new targets as this cpu is already offlined...
307 for (vector
= FIRST_EXTERNAL_VECTOR
; vector
< NR_VECTORS
; vector
++) {
310 if (__this_cpu_read(vector_irq
[vector
]) < 0)
313 irr
= apic_read(APIC_IRR
+ (vector
/ 32 * 0x10));
314 if (irr
& (1 << (vector
% 32))) {
315 irq
= __this_cpu_read(vector_irq
[vector
]);
317 desc
= irq_to_desc(irq
);
318 data
= irq_desc_get_irq_data(desc
);
319 chip
= irq_data_get_irq_chip(data
);
320 raw_spin_lock(&desc
->lock
);
321 if (chip
->irq_retrigger
)
322 chip
->irq_retrigger(data
);
323 raw_spin_unlock(&desc
->lock
);