]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/apic/vector.c
x86, irq: Move IOAPIC related declarations from hw_irq.h into io_apic.h
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / apic / vector.c
CommitLineData
74afab7a
JL
1/*
2 * Local APIC related interfaces to support IOAPIC, MSI, HT_IRQ etc.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
5 * Moved from arch/x86/kernel/apic/io_apic.c.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/interrupt.h>
12#include <linux/init.h>
13#include <linux/compiler.h>
14#include <linux/irqdomain.h>
15#include <linux/slab.h>
16#include <asm/hw_irq.h>
17#include <asm/apic.h>
18#include <asm/i8259.h>
19#include <asm/desc.h>
20#include <asm/irq_remapping.h>
21
22static DEFINE_RAW_SPINLOCK(vector_lock);
23
24void lock_vector_lock(void)
25{
26 /* Used to the online set of cpus does not change
27 * during assign_irq_vector.
28 */
29 raw_spin_lock(&vector_lock);
30}
31
32void unlock_vector_lock(void)
33{
34 raw_spin_unlock(&vector_lock);
35}
36
37struct irq_cfg *irq_cfg(unsigned int irq)
38{
39 return irq_get_chip_data(irq);
40}
41
42struct irq_cfg *irqd_cfg(struct irq_data *irq_data)
43{
44 return irq_data->chip_data;
45}
46
47static struct irq_cfg *alloc_irq_cfg(unsigned int irq, int node)
48{
49 struct irq_cfg *cfg;
50
51 cfg = kzalloc_node(sizeof(*cfg), GFP_KERNEL, node);
52 if (!cfg)
53 return NULL;
54 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_KERNEL, node))
55 goto out_cfg;
56 if (!zalloc_cpumask_var_node(&cfg->old_domain, GFP_KERNEL, node))
57 goto out_domain;
58#ifdef CONFIG_X86_IO_APIC
59 INIT_LIST_HEAD(&cfg->irq_2_pin);
60#endif
61 return cfg;
62out_domain:
63 free_cpumask_var(cfg->domain);
64out_cfg:
65 kfree(cfg);
66 return NULL;
67}
68
69struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node)
70{
71 int res = irq_alloc_desc_at(at, node);
72 struct irq_cfg *cfg;
73
74 if (res < 0) {
75 if (res != -EEXIST)
76 return NULL;
77 cfg = irq_cfg(at);
78 if (cfg)
79 return cfg;
80 }
81
82 cfg = alloc_irq_cfg(at, node);
83 if (cfg)
84 irq_set_chip_data(at, cfg);
85 else
86 irq_free_desc(at);
87 return cfg;
88}
89
90static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg)
91{
92 if (!cfg)
93 return;
94 irq_set_chip_data(at, NULL);
95 free_cpumask_var(cfg->domain);
96 free_cpumask_var(cfg->old_domain);
97 kfree(cfg);
98}
99
100static int
101__assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
102{
103 /*
104 * NOTE! The local APIC isn't very good at handling
105 * multiple interrupts at the same interrupt level.
106 * As the interrupt level is determined by taking the
107 * vector number and shifting that right by 4, we
108 * want to spread these out a bit so that they don't
109 * all fall in the same interrupt level.
110 *
111 * Also, we've got to be careful not to trash gate
112 * 0x80, because int 0x80 is hm, kind of importantish. ;)
113 */
114 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
115 static int current_offset = VECTOR_OFFSET_START % 16;
116 int cpu, err;
117 cpumask_var_t tmp_mask;
118
119 if (cfg->move_in_progress)
120 return -EBUSY;
121
122 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
123 return -ENOMEM;
124
125 /* Only try and allocate irqs on cpus that are present */
126 err = -ENOSPC;
127 cpumask_clear(cfg->old_domain);
128 cpu = cpumask_first_and(mask, cpu_online_mask);
129 while (cpu < nr_cpu_ids) {
130 int new_cpu, vector, offset;
131
132 apic->vector_allocation_domain(cpu, tmp_mask, mask);
133
134 if (cpumask_subset(tmp_mask, cfg->domain)) {
135 err = 0;
136 if (cpumask_equal(tmp_mask, cfg->domain))
137 break;
138 /*
139 * New cpumask using the vector is a proper subset of
140 * the current in use mask. So cleanup the vector
141 * allocation for the members that are not used anymore.
142 */
143 cpumask_andnot(cfg->old_domain, cfg->domain, tmp_mask);
144 cfg->move_in_progress =
145 cpumask_intersects(cfg->old_domain, cpu_online_mask);
146 cpumask_and(cfg->domain, cfg->domain, tmp_mask);
147 break;
148 }
149
150 vector = current_vector;
151 offset = current_offset;
152next:
153 vector += 16;
154 if (vector >= first_system_vector) {
155 offset = (offset + 1) % 16;
156 vector = FIRST_EXTERNAL_VECTOR + offset;
157 }
158
159 if (unlikely(current_vector == vector)) {
160 cpumask_or(cfg->old_domain, cfg->old_domain, tmp_mask);
161 cpumask_andnot(tmp_mask, mask, cfg->old_domain);
162 cpu = cpumask_first_and(tmp_mask, cpu_online_mask);
163 continue;
164 }
165
166 if (test_bit(vector, used_vectors))
167 goto next;
168
169 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask) {
170 if (per_cpu(vector_irq, new_cpu)[vector] >
171 VECTOR_UNDEFINED)
172 goto next;
173 }
174 /* Found one! */
175 current_vector = vector;
176 current_offset = offset;
177 if (cfg->vector) {
178 cpumask_copy(cfg->old_domain, cfg->domain);
179 cfg->move_in_progress =
180 cpumask_intersects(cfg->old_domain, cpu_online_mask);
181 }
182 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
183 per_cpu(vector_irq, new_cpu)[vector] = irq;
184 cfg->vector = vector;
185 cpumask_copy(cfg->domain, tmp_mask);
186 err = 0;
187 break;
188 }
189 free_cpumask_var(tmp_mask);
190
191 return err;
192}
193
194int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
195{
196 int err;
197 unsigned long flags;
198
199 raw_spin_lock_irqsave(&vector_lock, flags);
200 err = __assign_irq_vector(irq, cfg, mask);
201 raw_spin_unlock_irqrestore(&vector_lock, flags);
202 return err;
203}
204
205void clear_irq_vector(int irq, struct irq_cfg *cfg)
206{
207 int cpu, vector;
208 unsigned long flags;
209
210 raw_spin_lock_irqsave(&vector_lock, flags);
211 BUG_ON(!cfg->vector);
212
213 vector = cfg->vector;
214 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
215 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
216
217 cfg->vector = 0;
218 cpumask_clear(cfg->domain);
219
220 if (likely(!cfg->move_in_progress)) {
221 raw_spin_unlock_irqrestore(&vector_lock, flags);
222 return;
223 }
224
225 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
226 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
227 vector++) {
228 if (per_cpu(vector_irq, cpu)[vector] != irq)
229 continue;
230 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
231 break;
232 }
233 }
234 cfg->move_in_progress = 0;
235 raw_spin_unlock_irqrestore(&vector_lock, flags);
236}
237
238static void __setup_vector_irq(int cpu)
239{
240 /* Initialize vector_irq on a new cpu */
241 int irq, vector;
242 struct irq_cfg *cfg;
243
244 /*
245 * vector_lock will make sure that we don't run into irq vector
246 * assignments that might be happening on another cpu in parallel,
247 * while we setup our initial vector to irq mappings.
248 */
249 raw_spin_lock(&vector_lock);
250 /* Mark the inuse vectors */
251 for_each_active_irq(irq) {
252 cfg = irq_cfg(irq);
253 if (!cfg)
254 continue;
255
256 if (!cpumask_test_cpu(cpu, cfg->domain))
257 continue;
258 vector = cfg->vector;
259 per_cpu(vector_irq, cpu)[vector] = irq;
260 }
261 /* Mark the free vectors */
262 for (vector = 0; vector < NR_VECTORS; ++vector) {
263 irq = per_cpu(vector_irq, cpu)[vector];
264 if (irq <= VECTOR_UNDEFINED)
265 continue;
266
267 cfg = irq_cfg(irq);
268 if (!cpumask_test_cpu(cpu, cfg->domain))
269 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNDEFINED;
270 }
271 raw_spin_unlock(&vector_lock);
272}
273
274/*
275 * Setup the vector to irq mappings.
276 */
277void setup_vector_irq(int cpu)
278{
279 int irq;
280
281 /*
282 * On most of the platforms, legacy PIC delivers the interrupts on the
283 * boot cpu. But there are certain platforms where PIC interrupts are
284 * delivered to multiple cpu's. If the legacy IRQ is handled by the
285 * legacy PIC, for the new cpu that is coming online, setup the static
286 * legacy vector to irq mapping:
287 */
288 for (irq = 0; irq < nr_legacy_irqs(); irq++)
289 per_cpu(vector_irq, cpu)[IRQ0_VECTOR + irq] = irq;
290
291 __setup_vector_irq(cpu);
292}
293
294int apic_retrigger_irq(struct irq_data *data)
295{
296 struct irq_cfg *cfg = data->chip_data;
297 unsigned long flags;
298 int cpu;
299
300 raw_spin_lock_irqsave(&vector_lock, flags);
301 cpu = cpumask_first_and(cfg->domain, cpu_online_mask);
302 apic->send_IPI_mask(cpumask_of(cpu), cfg->vector);
303 raw_spin_unlock_irqrestore(&vector_lock, flags);
304
305 return 1;
306}
307
308void apic_ack_edge(struct irq_data *data)
309{
310 irq_complete_move(data->chip_data);
311 irq_move_irq(data);
312 ack_APIC_irq();
313}
314
315/*
316 * Either sets data->affinity to a valid value, and returns
317 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
318 * leaves data->affinity untouched.
319 */
320int apic_set_affinity(struct irq_data *data, const struct cpumask *mask,
321 unsigned int *dest_id)
322{
323 struct irq_cfg *cfg = data->chip_data;
324 unsigned int irq = data->irq;
325 int err;
326
327 if (!config_enabled(CONFIG_SMP))
328 return -EPERM;
329
330 if (!cpumask_intersects(mask, cpu_online_mask))
331 return -EINVAL;
332
333 err = assign_irq_vector(irq, cfg, mask);
334 if (err)
335 return err;
336
337 err = apic->cpu_mask_to_apicid_and(mask, cfg->domain, dest_id);
338 if (err) {
339 if (assign_irq_vector(irq, cfg, data->affinity))
340 pr_err("Failed to recover vector for irq %d\n", irq);
341 return err;
342 }
343
344 cpumask_copy(data->affinity, mask);
345
346 return 0;
347}
348
349#ifdef CONFIG_SMP
350void send_cleanup_vector(struct irq_cfg *cfg)
351{
352 cpumask_var_t cleanup_mask;
353
354 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
355 unsigned int i;
356
357 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
358 apic->send_IPI_mask(cpumask_of(i),
359 IRQ_MOVE_CLEANUP_VECTOR);
360 } else {
361 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
362 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
363 free_cpumask_var(cleanup_mask);
364 }
365 cfg->move_in_progress = 0;
366}
367
368asmlinkage __visible void smp_irq_move_cleanup_interrupt(void)
369{
370 unsigned vector, me;
371
372 ack_APIC_irq();
373 irq_enter();
374 exit_idle();
375
376 me = smp_processor_id();
377 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
378 int irq;
379 unsigned int irr;
380 struct irq_desc *desc;
381 struct irq_cfg *cfg;
382
383 irq = __this_cpu_read(vector_irq[vector]);
384
385 if (irq <= VECTOR_UNDEFINED)
386 continue;
387
388 desc = irq_to_desc(irq);
389 if (!desc)
390 continue;
391
392 cfg = irq_cfg(irq);
393 if (!cfg)
394 continue;
395
396 raw_spin_lock(&desc->lock);
397
398 /*
399 * Check if the irq migration is in progress. If so, we
400 * haven't received the cleanup request yet for this irq.
401 */
402 if (cfg->move_in_progress)
403 goto unlock;
404
405 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
406 goto unlock;
407
408 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
409 /*
410 * Check if the vector that needs to be cleanedup is
411 * registered at the cpu's IRR. If so, then this is not
412 * the best time to clean it up. Lets clean it up in the
413 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
414 * to myself.
415 */
416 if (irr & (1 << (vector % 32))) {
417 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
418 goto unlock;
419 }
420 __this_cpu_write(vector_irq[vector], VECTOR_UNDEFINED);
421unlock:
422 raw_spin_unlock(&desc->lock);
423 }
424
425 irq_exit();
426}
427
428static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
429{
430 unsigned me;
431
432 if (likely(!cfg->move_in_progress))
433 return;
434
435 me = smp_processor_id();
436
437 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
438 send_cleanup_vector(cfg);
439}
440
441void irq_complete_move(struct irq_cfg *cfg)
442{
443 __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
444}
445
446void irq_force_complete_move(int irq)
447{
448 struct irq_cfg *cfg = irq_cfg(irq);
449
450 if (!cfg)
451 return;
452
453 __irq_complete_move(cfg, cfg->vector);
454}
74afab7a
JL
455#endif
456
457/*
458 * Dynamic irq allocate and deallocation. Should be replaced by irq domains!
459 */
460int arch_setup_hwirq(unsigned int irq, int node)
461{
462 struct irq_cfg *cfg;
463 unsigned long flags;
464 int ret;
465
466 cfg = alloc_irq_cfg(irq, node);
467 if (!cfg)
468 return -ENOMEM;
469
470 raw_spin_lock_irqsave(&vector_lock, flags);
471 ret = __assign_irq_vector(irq, cfg, apic->target_cpus());
472 raw_spin_unlock_irqrestore(&vector_lock, flags);
473
474 if (!ret)
475 irq_set_chip_data(irq, cfg);
476 else
477 free_irq_cfg(irq, cfg);
478 return ret;
479}
480
481void arch_teardown_hwirq(unsigned int irq)
482{
483 struct irq_cfg *cfg = irq_cfg(irq);
484
485 free_remapped_irq(irq);
486 clear_irq_vector(irq, cfg);
487 free_irq_cfg(irq, cfg);
488}
489
490static void __init print_APIC_field(int base)
491{
492 int i;
493
494 printk(KERN_DEBUG);
495
496 for (i = 0; i < 8; i++)
497 pr_cont("%08x", apic_read(base + i*0x10));
498
499 pr_cont("\n");
500}
501
502static void __init print_local_APIC(void *dummy)
503{
504 unsigned int i, v, ver, maxlvt;
505 u64 icr;
506
849d3569
JL
507 pr_debug("printing local APIC contents on CPU#%d/%d:\n",
508 smp_processor_id(), hard_smp_processor_id());
74afab7a 509 v = apic_read(APIC_ID);
849d3569 510 pr_info("... APIC ID: %08x (%01x)\n", v, read_apic_id());
74afab7a 511 v = apic_read(APIC_LVR);
849d3569 512 pr_info("... APIC VERSION: %08x\n", v);
74afab7a
JL
513 ver = GET_APIC_VERSION(v);
514 maxlvt = lapic_get_maxlvt();
515
516 v = apic_read(APIC_TASKPRI);
849d3569 517 pr_debug("... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
74afab7a
JL
518
519 /* !82489DX */
520 if (APIC_INTEGRATED(ver)) {
521 if (!APIC_XAPIC(ver)) {
522 v = apic_read(APIC_ARBPRI);
849d3569
JL
523 pr_debug("... APIC ARBPRI: %08x (%02x)\n",
524 v, v & APIC_ARBPRI_MASK);
74afab7a
JL
525 }
526 v = apic_read(APIC_PROCPRI);
849d3569 527 pr_debug("... APIC PROCPRI: %08x\n", v);
74afab7a
JL
528 }
529
530 /*
531 * Remote read supported only in the 82489DX and local APIC for
532 * Pentium processors.
533 */
534 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
535 v = apic_read(APIC_RRR);
849d3569 536 pr_debug("... APIC RRR: %08x\n", v);
74afab7a
JL
537 }
538
539 v = apic_read(APIC_LDR);
849d3569 540 pr_debug("... APIC LDR: %08x\n", v);
74afab7a
JL
541 if (!x2apic_enabled()) {
542 v = apic_read(APIC_DFR);
849d3569 543 pr_debug("... APIC DFR: %08x\n", v);
74afab7a
JL
544 }
545 v = apic_read(APIC_SPIV);
849d3569 546 pr_debug("... APIC SPIV: %08x\n", v);
74afab7a 547
849d3569 548 pr_debug("... APIC ISR field:\n");
74afab7a 549 print_APIC_field(APIC_ISR);
849d3569 550 pr_debug("... APIC TMR field:\n");
74afab7a 551 print_APIC_field(APIC_TMR);
849d3569 552 pr_debug("... APIC IRR field:\n");
74afab7a
JL
553 print_APIC_field(APIC_IRR);
554
555 /* !82489DX */
556 if (APIC_INTEGRATED(ver)) {
557 /* Due to the Pentium erratum 3AP. */
558 if (maxlvt > 3)
559 apic_write(APIC_ESR, 0);
560
561 v = apic_read(APIC_ESR);
849d3569 562 pr_debug("... APIC ESR: %08x\n", v);
74afab7a
JL
563 }
564
565 icr = apic_icr_read();
849d3569
JL
566 pr_debug("... APIC ICR: %08x\n", (u32)icr);
567 pr_debug("... APIC ICR2: %08x\n", (u32)(icr >> 32));
74afab7a
JL
568
569 v = apic_read(APIC_LVTT);
849d3569 570 pr_debug("... APIC LVTT: %08x\n", v);
74afab7a
JL
571
572 if (maxlvt > 3) {
573 /* PC is LVT#4. */
574 v = apic_read(APIC_LVTPC);
849d3569 575 pr_debug("... APIC LVTPC: %08x\n", v);
74afab7a
JL
576 }
577 v = apic_read(APIC_LVT0);
849d3569 578 pr_debug("... APIC LVT0: %08x\n", v);
74afab7a 579 v = apic_read(APIC_LVT1);
849d3569 580 pr_debug("... APIC LVT1: %08x\n", v);
74afab7a
JL
581
582 if (maxlvt > 2) {
583 /* ERR is LVT#3. */
584 v = apic_read(APIC_LVTERR);
849d3569 585 pr_debug("... APIC LVTERR: %08x\n", v);
74afab7a
JL
586 }
587
588 v = apic_read(APIC_TMICT);
849d3569 589 pr_debug("... APIC TMICT: %08x\n", v);
74afab7a 590 v = apic_read(APIC_TMCCT);
849d3569 591 pr_debug("... APIC TMCCT: %08x\n", v);
74afab7a 592 v = apic_read(APIC_TDCR);
849d3569 593 pr_debug("... APIC TDCR: %08x\n", v);
74afab7a
JL
594
595 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
596 v = apic_read(APIC_EFEAT);
597 maxlvt = (v >> 16) & 0xff;
849d3569 598 pr_debug("... APIC EFEAT: %08x\n", v);
74afab7a 599 v = apic_read(APIC_ECTRL);
849d3569 600 pr_debug("... APIC ECTRL: %08x\n", v);
74afab7a
JL
601 for (i = 0; i < maxlvt; i++) {
602 v = apic_read(APIC_EILVTn(i));
849d3569 603 pr_debug("... APIC EILVT%d: %08x\n", i, v);
74afab7a
JL
604 }
605 }
606 pr_cont("\n");
607}
608
609static void __init print_local_APICs(int maxcpu)
610{
611 int cpu;
612
613 if (!maxcpu)
614 return;
615
616 preempt_disable();
617 for_each_online_cpu(cpu) {
618 if (cpu >= maxcpu)
619 break;
620 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
621 }
622 preempt_enable();
623}
624
625static void __init print_PIC(void)
626{
627 unsigned int v;
628 unsigned long flags;
629
630 if (!nr_legacy_irqs())
631 return;
632
849d3569 633 pr_debug("\nprinting PIC contents\n");
74afab7a
JL
634
635 raw_spin_lock_irqsave(&i8259A_lock, flags);
636
637 v = inb(0xa1) << 8 | inb(0x21);
849d3569 638 pr_debug("... PIC IMR: %04x\n", v);
74afab7a
JL
639
640 v = inb(0xa0) << 8 | inb(0x20);
849d3569 641 pr_debug("... PIC IRR: %04x\n", v);
74afab7a
JL
642
643 outb(0x0b, 0xa0);
644 outb(0x0b, 0x20);
645 v = inb(0xa0) << 8 | inb(0x20);
646 outb(0x0a, 0xa0);
647 outb(0x0a, 0x20);
648
649 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
650
849d3569 651 pr_debug("... PIC ISR: %04x\n", v);
74afab7a
JL
652
653 v = inb(0x4d1) << 8 | inb(0x4d0);
849d3569 654 pr_debug("... PIC ELCR: %04x\n", v);
74afab7a
JL
655}
656
657static int show_lapic __initdata = 1;
658static __init int setup_show_lapic(char *arg)
659{
660 int num = -1;
661
662 if (strcmp(arg, "all") == 0) {
663 show_lapic = CONFIG_NR_CPUS;
664 } else {
665 get_option(&arg, &num);
666 if (num >= 0)
667 show_lapic = num;
668 }
669
670 return 1;
671}
672__setup("show_lapic=", setup_show_lapic);
673
674static int __init print_ICs(void)
675{
676 if (apic_verbosity == APIC_QUIET)
677 return 0;
678
679 print_PIC();
680
681 /* don't print out if apic is not there */
682 if (!cpu_has_apic && !apic_from_smp_config())
683 return 0;
684
685 print_local_APICs(show_lapic);
686 print_IO_APICs();
687
688 return 0;
689}
690
691late_initcall(print_ICs);