]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/irq.c
x86/fixup_irq: Use cpu_online_mask instead of cpu_all_mask
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / irq.c
CommitLineData
6b39ba77
TG
1/*
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>
4722d194 7#include <linux/of.h>
6b39ba77 8#include <linux/seq_file.h>
6a02e710 9#include <linux/smp.h>
7c1d7cdc 10#include <linux/ftrace.h>
ca444564 11#include <linux/delay.h>
69c60c88 12#include <linux/export.h>
6b39ba77 13
7b6aa335 14#include <asm/apic.h>
6b39ba77 15#include <asm/io_apic.h>
c3d80000 16#include <asm/irq.h>
7c1d7cdc 17#include <asm/idle.h>
01ca79f1 18#include <asm/mce.h>
2c1b284e 19#include <asm/hw_irq.h>
6b39ba77
TG
20
21atomic_t irq_err_count;
22
acaabe79 23/* Function pointer for generic interrupt vector handling */
4a4de9c7 24void (*x86_platform_ipi_callback)(void) = NULL;
acaabe79 25
249f6d9e
TG
26/*
27 * 'what should we do if we get a hw irq event on an illegal vector'.
28 * each architecture has to answer this themselves.
29 */
30void ack_bad_irq(unsigned int irq)
31{
edea7148
CG
32 if (printk_ratelimit())
33 pr_err("unexpected IRQ trap at vector %02x\n", irq);
249f6d9e 34
249f6d9e
TG
35 /*
36 * Currently unexpected vectors happen only on SMP and APIC.
37 * We _must_ ack these because every local APIC has only N
38 * irq slots per priority level, and a 'hanging, unacked' IRQ
39 * holds up an irq slot - in excessive cases (when multiple
40 * unexpected vectors occur) that might lock up the APIC
41 * completely.
42 * But only ack when the APIC is enabled -AK
43 */
08306ce6 44 ack_APIC_irq();
249f6d9e
TG
45}
46
1b437c8c 47#define irq_stats(x) (&per_cpu(irq_stat, x))
6b39ba77 48/*
517e4981 49 * /proc/interrupts printing for arch specific interrupts
6b39ba77 50 */
517e4981 51int arch_show_interrupts(struct seq_file *p, int prec)
6b39ba77
TG
52{
53 int j;
54
7a81d9a7 55 seq_printf(p, "%*s: ", prec, "NMI");
6b39ba77
TG
56 for_each_online_cpu(j)
57 seq_printf(p, "%10u ", irq_stats(j)->__nmi_count);
58 seq_printf(p, " Non-maskable interrupts\n");
59#ifdef CONFIG_X86_LOCAL_APIC
7a81d9a7 60 seq_printf(p, "%*s: ", prec, "LOC");
6b39ba77
TG
61 for_each_online_cpu(j)
62 seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs);
63 seq_printf(p, " Local timer interrupts\n");
474e56b8
JSR
64
65 seq_printf(p, "%*s: ", prec, "SPU");
66 for_each_online_cpu(j)
67 seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count);
68 seq_printf(p, " Spurious interrupts\n");
89ccf465 69 seq_printf(p, "%*s: ", prec, "PMI");
241771ef
IM
70 for_each_online_cpu(j)
71 seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
89ccf465 72 seq_printf(p, " Performance monitoring interrupts\n");
e360adbe 73 seq_printf(p, "%*s: ", prec, "IWI");
b6276f35 74 for_each_online_cpu(j)
e360adbe
PZ
75 seq_printf(p, "%10u ", irq_stats(j)->apic_irq_work_irqs);
76 seq_printf(p, " IRQ work interrupts\n");
346b46be
FLVC
77 seq_printf(p, "%*s: ", prec, "RTR");
78 for_each_online_cpu(j)
b49d7d87 79 seq_printf(p, "%10u ", irq_stats(j)->icr_read_retry_count);
346b46be 80 seq_printf(p, " APIC ICR read retries\n");
6b39ba77 81#endif
4a4de9c7 82 if (x86_platform_ipi_callback) {
59d13812 83 seq_printf(p, "%*s: ", prec, "PLT");
acaabe79 84 for_each_online_cpu(j)
4a4de9c7 85 seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis);
acaabe79
DS
86 seq_printf(p, " Platform interrupts\n");
87 }
6b39ba77 88#ifdef CONFIG_SMP
7a81d9a7 89 seq_printf(p, "%*s: ", prec, "RES");
6b39ba77
TG
90 for_each_online_cpu(j)
91 seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
92 seq_printf(p, " Rescheduling interrupts\n");
7a81d9a7 93 seq_printf(p, "%*s: ", prec, "CAL");
6b39ba77
TG
94 for_each_online_cpu(j)
95 seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
96 seq_printf(p, " Function call interrupts\n");
7a81d9a7 97 seq_printf(p, "%*s: ", prec, "TLB");
6b39ba77
TG
98 for_each_online_cpu(j)
99 seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
100 seq_printf(p, " TLB shootdowns\n");
101#endif
0444c9bd 102#ifdef CONFIG_X86_THERMAL_VECTOR
7a81d9a7 103 seq_printf(p, "%*s: ", prec, "TRM");
6b39ba77
TG
104 for_each_online_cpu(j)
105 seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
106 seq_printf(p, " Thermal event interrupts\n");
0444c9bd
JB
107#endif
108#ifdef CONFIG_X86_MCE_THRESHOLD
7a81d9a7 109 seq_printf(p, "%*s: ", prec, "THR");
6b39ba77
TG
110 for_each_online_cpu(j)
111 seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
112 seq_printf(p, " Threshold APIC interrupts\n");
01ca79f1 113#endif
c1ebf835 114#ifdef CONFIG_X86_MCE
01ca79f1
AK
115 seq_printf(p, "%*s: ", prec, "MCE");
116 for_each_online_cpu(j)
117 seq_printf(p, "%10u ", per_cpu(mce_exception_count, j));
118 seq_printf(p, " Machine check exceptions\n");
ca84f696
AK
119 seq_printf(p, "%*s: ", prec, "MCP");
120 for_each_online_cpu(j)
121 seq_printf(p, "%10u ", per_cpu(mce_poll_count, j));
122 seq_printf(p, " Machine check polls\n");
6b39ba77 123#endif
7a81d9a7 124 seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
6b39ba77 125#if defined(CONFIG_X86_IO_APIC)
7a81d9a7 126 seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
6b39ba77
TG
127#endif
128 return 0;
129}
130
6b39ba77
TG
131/*
132 * /proc/stat helpers
133 */
134u64 arch_irq_stat_cpu(unsigned int cpu)
135{
136 u64 sum = irq_stats(cpu)->__nmi_count;
137
138#ifdef CONFIG_X86_LOCAL_APIC
139 sum += irq_stats(cpu)->apic_timer_irqs;
474e56b8 140 sum += irq_stats(cpu)->irq_spurious_count;
241771ef 141 sum += irq_stats(cpu)->apic_perf_irqs;
e360adbe 142 sum += irq_stats(cpu)->apic_irq_work_irqs;
b49d7d87 143 sum += irq_stats(cpu)->icr_read_retry_count;
6b39ba77 144#endif
4a4de9c7
DS
145 if (x86_platform_ipi_callback)
146 sum += irq_stats(cpu)->x86_platform_ipis;
6b39ba77
TG
147#ifdef CONFIG_SMP
148 sum += irq_stats(cpu)->irq_resched_count;
149 sum += irq_stats(cpu)->irq_call_count;
150 sum += irq_stats(cpu)->irq_tlb_count;
151#endif
0444c9bd 152#ifdef CONFIG_X86_THERMAL_VECTOR
6b39ba77 153 sum += irq_stats(cpu)->irq_thermal_count;
0444c9bd
JB
154#endif
155#ifdef CONFIG_X86_MCE_THRESHOLD
6b39ba77 156 sum += irq_stats(cpu)->irq_threshold_count;
8051dbd2 157#endif
c1ebf835 158#ifdef CONFIG_X86_MCE
8051dbd2
HS
159 sum += per_cpu(mce_exception_count, cpu);
160 sum += per_cpu(mce_poll_count, cpu);
6b39ba77
TG
161#endif
162 return sum;
163}
164
165u64 arch_irq_stat(void)
166{
167 u64 sum = atomic_read(&irq_err_count);
168
169#ifdef CONFIG_X86_IO_APIC
170 sum += atomic_read(&irq_mis_count);
171#endif
172 return sum;
173}
c3d80000 174
7c1d7cdc
JF
175
176/*
177 * do_IRQ handles all normal device IRQ's (the special
178 * SMP cross-CPU interrupts have their own specific
179 * handlers).
180 */
181unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
182{
183 struct pt_regs *old_regs = set_irq_regs(regs);
184
185 /* high bit used in ret_from_ code */
186 unsigned vector = ~regs->orig_ax;
187 unsigned irq;
188
7c1d7cdc 189 irq_enter();
98ad1cc1 190 exit_idle();
7c1d7cdc 191
0a3aee0d 192 irq = __this_cpu_read(vector_irq[vector]);
7c1d7cdc
JF
193
194 if (!handle_irq(irq, regs)) {
08306ce6 195 ack_APIC_irq();
7c1d7cdc
JF
196
197 if (printk_ratelimit())
edea7148
CG
198 pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
199 __func__, smp_processor_id(), vector, irq);
7c1d7cdc
JF
200 }
201
202 irq_exit();
203
204 set_irq_regs(old_regs);
205 return 1;
206}
207
acaabe79 208/*
4a4de9c7 209 * Handler for X86_PLATFORM_IPI_VECTOR.
acaabe79 210 */
4a4de9c7 211void smp_x86_platform_ipi(struct pt_regs *regs)
acaabe79
DS
212{
213 struct pt_regs *old_regs = set_irq_regs(regs);
214
215 ack_APIC_irq();
216
acaabe79
DS
217 irq_enter();
218
98ad1cc1
FW
219 exit_idle();
220
4a4de9c7 221 inc_irq_stat(x86_platform_ipis);
acaabe79 222
4a4de9c7
DS
223 if (x86_platform_ipi_callback)
224 x86_platform_ipi_callback();
acaabe79
DS
225
226 irq_exit();
227
228 set_irq_regs(old_regs);
229}
230
c3d80000 231EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
7a7732bc
SS
232
233#ifdef CONFIG_HOTPLUG_CPU
234/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
235void fixup_irqs(void)
236{
5231a686 237 unsigned int irq, vector;
7a7732bc
SS
238 static int warned;
239 struct irq_desc *desc;
a3c08e5d 240 struct irq_data *data;
51c43ac6 241 struct irq_chip *chip;
7a7732bc
SS
242
243 for_each_irq_desc(irq, desc) {
244 int break_affinity = 0;
245 int set_affinity = 1;
246 const struct cpumask *affinity;
247
248 if (!desc)
249 continue;
250 if (irq == 2)
251 continue;
252
253 /* interrupt's are disabled at this point */
239007b8 254 raw_spin_lock(&desc->lock);
7a7732bc 255
51c43ac6 256 data = irq_desc_get_irq_data(desc);
a3c08e5d 257 affinity = data->affinity;
b87ba87c 258 if (!irq_has_action(irq) || irqd_is_per_cpu(data) ||
58bff947 259 cpumask_subset(affinity, cpu_online_mask)) {
239007b8 260 raw_spin_unlock(&desc->lock);
7a7732bc
SS
261 continue;
262 }
263
a5e74b84
SS
264 /*
265 * Complete the irq move. This cpu is going down and for
266 * non intr-remapping case, we can't wait till this interrupt
267 * arrives at this cpu before completing the irq move.
268 */
269 irq_force_complete_move(irq);
270
7a7732bc
SS
271 if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
272 break_affinity = 1;
2530cd4f 273 affinity = cpu_online_mask;
7a7732bc
SS
274 }
275
51c43ac6
TG
276 chip = irq_data_get_irq_chip(data);
277 if (!irqd_can_move_in_process_context(data) && chip->irq_mask)
278 chip->irq_mask(data);
7a7732bc 279
51c43ac6
TG
280 if (chip->irq_set_affinity)
281 chip->irq_set_affinity(data, affinity, true);
7a7732bc
SS
282 else if (!(warned++))
283 set_affinity = 0;
284
99dd5497
LC
285 /*
286 * We unmask if the irq was not marked masked by the
287 * core code. That respects the lazy irq disable
288 * behaviour.
289 */
983bbf1a 290 if (!irqd_can_move_in_process_context(data) &&
99dd5497 291 !irqd_irq_masked(data) && chip->irq_unmask)
51c43ac6 292 chip->irq_unmask(data);
7a7732bc 293
239007b8 294 raw_spin_unlock(&desc->lock);
7a7732bc
SS
295
296 if (break_affinity && set_affinity)
c767a54b 297 pr_notice("Broke affinity for irq %i\n", irq);
7a7732bc 298 else if (!set_affinity)
c767a54b 299 pr_notice("Cannot set affinity for irq %i\n", irq);
7a7732bc
SS
300 }
301
5231a686
SS
302 /*
303 * We can remove mdelay() and then send spuriuous interrupts to
304 * new cpu targets for all the irqs that were handled previously by
305 * this cpu. While it works, I have seen spurious interrupt messages
306 * (nothing wrong but still...).
307 *
308 * So for now, retain mdelay(1) and check the IRR and then send those
309 * interrupts to new targets as this cpu is already offlined...
310 */
7a7732bc 311 mdelay(1);
5231a686
SS
312
313 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
314 unsigned int irr;
315
0a3aee0d 316 if (__this_cpu_read(vector_irq[vector]) < 0)
5231a686
SS
317 continue;
318
319 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
320 if (irr & (1 << (vector % 32))) {
0a3aee0d 321 irq = __this_cpu_read(vector_irq[vector]);
5231a686 322
5117348d 323 desc = irq_to_desc(irq);
51c43ac6
TG
324 data = irq_desc_get_irq_data(desc);
325 chip = irq_data_get_irq_chip(data);
239007b8 326 raw_spin_lock(&desc->lock);
51c43ac6
TG
327 if (chip->irq_retrigger)
328 chip->irq_retrigger(data);
239007b8 329 raw_spin_unlock(&desc->lock);
5231a686 330 }
1d44b30f 331 __this_cpu_write(vector_irq[vector], -1);
5231a686 332 }
7a7732bc
SS
333}
334#endif