7ca55669047458311d3bd90cae820d4b40a70464
[deliverable/linux.git] / arch / x86 / kernel / io_apic.c
1 /*
2 * Intel IO-APIC support for multi-Pentium hosts.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
5 *
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
8 *
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
14 *
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
21 */
22
23 #include <linux/mm.h>
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/sysdev.h>
34 #include <linux/msi.h>
35 #include <linux/htirq.h>
36 #include <linux/freezer.h>
37 #include <linux/kthread.h>
38 #include <linux/jiffies.h> /* time_after() */
39 #ifdef CONFIG_ACPI
40 #include <acpi/acpi_bus.h>
41 #endif
42 #include <linux/bootmem.h>
43 #include <linux/dmar.h>
44
45 #include <asm/idle.h>
46 #include <asm/io.h>
47 #include <asm/smp.h>
48 #include <asm/desc.h>
49 #include <asm/proto.h>
50 #include <asm/acpi.h>
51 #include <asm/dma.h>
52 #include <asm/timer.h>
53 #include <asm/i8259.h>
54 #include <asm/nmi.h>
55 #include <asm/msidef.h>
56 #include <asm/hypertransport.h>
57 #include <asm/setup.h>
58 #include <asm/irq_remapping.h>
59
60 #include <mach_ipi.h>
61 #include <mach_apic.h>
62 #include <mach_apicdef.h>
63
64 #define __apicdebuginit(type) static type __init
65
66 /*
67 * Is the SiS APIC rmw bug present ?
68 * -1 = don't know, 0 = no, 1 = yes
69 */
70 int sis_apic_bug = -1;
71
72 static DEFINE_SPINLOCK(ioapic_lock);
73 static DEFINE_SPINLOCK(vector_lock);
74
75 /*
76 * # of IRQ routing registers
77 */
78 int nr_ioapic_registers[MAX_IO_APICS];
79
80 /* I/O APIC entries */
81 struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
82 int nr_ioapics;
83
84 /* MP IRQ source entries */
85 struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
86
87 /* # of MP IRQ source entries */
88 int mp_irq_entries;
89
90 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
91 int mp_bus_id_to_type[MAX_MP_BUSSES];
92 #endif
93
94 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
95
96 int skip_ioapic_setup;
97
98 static int __init parse_noapic(char *str)
99 {
100 /* disable IO-APIC */
101 disable_ioapic_setup();
102 return 0;
103 }
104 early_param("noapic", parse_noapic);
105
106 struct irq_cfg;
107 struct irq_pin_list;
108 struct irq_cfg {
109 unsigned int irq;
110 #ifdef CONFIG_HAVE_SPARSE_IRQ
111 struct irq_cfg *next;
112 #endif
113 struct irq_pin_list *irq_2_pin;
114 cpumask_t domain;
115 cpumask_t old_domain;
116 unsigned move_cleanup_count;
117 u8 vector;
118 u8 move_in_progress : 1;
119 };
120
121 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
122 static struct irq_cfg irq_cfg_legacy[] __initdata = {
123 [0] = { .irq = 0, .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
124 [1] = { .irq = 1, .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
125 [2] = { .irq = 2, .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
126 [3] = { .irq = 3, .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
127 [4] = { .irq = 4, .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
128 [5] = { .irq = 5, .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
129 [6] = { .irq = 6, .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
130 [7] = { .irq = 7, .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
131 [8] = { .irq = 8, .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
132 [9] = { .irq = 9, .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
133 [10] = { .irq = 10, .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
134 [11] = { .irq = 11, .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
135 [12] = { .irq = 12, .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
136 [13] = { .irq = 13, .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
137 [14] = { .irq = 14, .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
138 [15] = { .irq = 15, .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
139 };
140
141 static struct irq_cfg irq_cfg_init = { .irq = -1U, };
142
143 static void init_one_irq_cfg(struct irq_cfg *cfg)
144 {
145 memcpy(cfg, &irq_cfg_init, sizeof(struct irq_cfg));
146 }
147
148 static struct irq_cfg *irq_cfgx;
149
150 /*
151 * Protect the irq_cfgx_free freelist:
152 */
153 static DEFINE_SPINLOCK(irq_cfg_lock);
154
155 #ifdef CONFIG_HAVE_SPARSE_IRQ
156 static struct irq_cfg *irq_cfgx_free;
157 #endif
158 static void __init init_work(void *data)
159 {
160 struct dyn_array *da = data;
161 struct irq_cfg *cfg;
162 int legacy_count;
163 int i;
164
165 cfg = *da->name;
166
167 memcpy(cfg, irq_cfg_legacy, sizeof(irq_cfg_legacy));
168
169 legacy_count = sizeof(irq_cfg_legacy)/sizeof(irq_cfg_legacy[0]);
170 for (i = legacy_count; i < *da->nr; i++)
171 init_one_irq_cfg(&cfg[i]);
172
173 #ifdef CONFIG_HAVE_SPARSE_IRQ
174 for (i = 1; i < *da->nr; i++)
175 cfg[i-1].next = &cfg[i];
176
177 irq_cfgx_free = &irq_cfgx[legacy_count];
178 irq_cfgx[legacy_count - 1].next = NULL;
179 #endif
180 }
181
182 #ifdef CONFIG_HAVE_SPARSE_IRQ
183 /* need to be biger than size of irq_cfg_legacy */
184 static int nr_irq_cfg = 32;
185
186 static int __init parse_nr_irq_cfg(char *arg)
187 {
188 if (arg) {
189 nr_irq_cfg = simple_strtoul(arg, NULL, 0);
190 if (nr_irq_cfg < 32)
191 nr_irq_cfg = 32;
192 }
193 return 0;
194 }
195
196 early_param("nr_irq_cfg", parse_nr_irq_cfg);
197
198 #define for_each_irq_cfg(irqX, cfg) \
199 for (cfg = irq_cfgx, irqX = cfg->irq; cfg; cfg = cfg->next, irqX = cfg ? cfg->irq : -1U)
200
201
202 DEFINE_DYN_ARRAY(irq_cfgx, sizeof(struct irq_cfg), nr_irq_cfg, PAGE_SIZE, init_work);
203
204 static struct irq_cfg *irq_cfg(unsigned int irq)
205 {
206 struct irq_cfg *cfg;
207
208 cfg = irq_cfgx;
209 while (cfg) {
210 if (cfg->irq == irq)
211 return cfg;
212
213 cfg = cfg->next;
214 }
215
216 return NULL;
217 }
218
219 static struct irq_cfg *irq_cfg_alloc(unsigned int irq)
220 {
221 struct irq_cfg *cfg, *cfg_pri;
222 unsigned long flags;
223 int count = 0;
224 int i;
225
226 cfg_pri = cfg = irq_cfgx;
227 while (cfg) {
228 if (cfg->irq == irq)
229 return cfg;
230
231 cfg_pri = cfg;
232 cfg = cfg->next;
233 count++;
234 }
235
236 spin_lock_irqsave(&irq_cfg_lock, flags);
237 if (!irq_cfgx_free) {
238 unsigned long phys;
239 unsigned long total_bytes;
240 /*
241 * we run out of pre-allocate ones, allocate more
242 */
243 printk(KERN_DEBUG "try to get more irq_cfg %d\n", nr_irq_cfg);
244
245 total_bytes = sizeof(struct irq_cfg) * nr_irq_cfg;
246 if (after_bootmem)
247 cfg = kzalloc(total_bytes, GFP_ATOMIC);
248 else
249 cfg = __alloc_bootmem_nopanic(total_bytes, PAGE_SIZE, 0);
250
251 if (!cfg)
252 panic("please boot with nr_irq_cfg= %d\n", count * 2);
253
254 phys = __pa(cfg);
255 printk(KERN_DEBUG "irq_irq ==> [%#lx - %#lx]\n", phys, phys + total_bytes);
256
257 for (i = 0; i < nr_irq_cfg; i++)
258 init_one_irq_cfg(&cfg[i]);
259
260 for (i = 1; i < nr_irq_cfg; i++)
261 cfg[i-1].next = &cfg[i];
262
263 irq_cfgx_free = cfg;
264 }
265
266 cfg = irq_cfgx_free;
267 irq_cfgx_free = irq_cfgx_free->next;
268 cfg->next = NULL;
269 if (cfg_pri)
270 cfg_pri->next = cfg;
271 else
272 irq_cfgx = cfg;
273 cfg->irq = irq;
274
275 spin_unlock_irqrestore(&irq_cfg_lock, flags);
276
277 printk(KERN_DEBUG "found new irq_cfg for irq %d\n", cfg->irq);
278 #ifdef CONFIG_HAVE_SPARSE_IRQ_DEBUG
279 {
280 /* dump the results */
281 struct irq_cfg *cfg;
282 unsigned long phys;
283 unsigned long bytes = sizeof(struct irq_cfg);
284
285 printk(KERN_DEBUG "=========================== %d\n", irq);
286 printk(KERN_DEBUG "irq_cfg dump after get that for %d\n", irq);
287 for_each_irq_cfg(cfg) {
288 phys = __pa(cfg);
289 printk(KERN_DEBUG "irq_cfg %d ==> [%#lx - %#lx]\n", cfg->irq, phys, phys + bytes);
290 }
291 printk(KERN_DEBUG "===========================\n");
292 }
293 #endif
294 return cfg;
295 }
296 #else
297
298 #define for_each_irq_cfg(irq, cfg) \
299 for (irq = 0, cfg = &irq_cfgx[irq]; irq < nr_irqs; irq++, cfg = &irq_cfgx[irq])
300
301 DEFINE_DYN_ARRAY(irq_cfgx, sizeof(struct irq_cfg), nr_irqs, PAGE_SIZE, init_work);
302
303 struct irq_cfg *irq_cfg(unsigned int irq)
304 {
305 if (irq < nr_irqs)
306 return &irq_cfgx[irq];
307
308 return NULL;
309 }
310 struct irq_cfg *irq_cfg_alloc(unsigned int irq)
311 {
312 return irq_cfg(irq);
313 }
314
315 #endif
316 /*
317 * This is performance-critical, we want to do it O(1)
318 *
319 * the indexing order of this array favors 1:1 mappings
320 * between pins and IRQs.
321 */
322
323 struct irq_pin_list {
324 int apic, pin;
325 struct irq_pin_list *next;
326 };
327
328 static struct irq_pin_list *irq_2_pin_head;
329 /* fill one page ? */
330 static int nr_irq_2_pin = 0x100;
331 static struct irq_pin_list *irq_2_pin_ptr;
332 static void __init irq_2_pin_init_work(void *data)
333 {
334 struct dyn_array *da = data;
335 struct irq_pin_list *pin;
336 int i;
337
338 pin = *da->name;
339
340 for (i = 1; i < *da->nr; i++)
341 pin[i-1].next = &pin[i];
342
343 irq_2_pin_ptr = &pin[0];
344 }
345 DEFINE_DYN_ARRAY(irq_2_pin_head, sizeof(struct irq_pin_list), nr_irq_2_pin, PAGE_SIZE, irq_2_pin_init_work);
346
347 static struct irq_pin_list *get_one_free_irq_2_pin(void)
348 {
349 struct irq_pin_list *pin;
350 int i;
351
352 pin = irq_2_pin_ptr;
353
354 if (pin) {
355 irq_2_pin_ptr = pin->next;
356 pin->next = NULL;
357 return pin;
358 }
359
360 /*
361 * we run out of pre-allocate ones, allocate more
362 */
363 printk(KERN_DEBUG "try to get more irq_2_pin %d\n", nr_irq_2_pin);
364
365 if (after_bootmem)
366 pin = kzalloc(sizeof(struct irq_pin_list)*nr_irq_2_pin,
367 GFP_ATOMIC);
368 else
369 pin = __alloc_bootmem_nopanic(sizeof(struct irq_pin_list) *
370 nr_irq_2_pin, PAGE_SIZE, 0);
371
372 if (!pin)
373 panic("can not get more irq_2_pin\n");
374
375 for (i = 1; i < nr_irq_2_pin; i++)
376 pin[i-1].next = &pin[i];
377
378 irq_2_pin_ptr = pin->next;
379 pin->next = NULL;
380
381 return pin;
382 }
383
384 struct io_apic {
385 unsigned int index;
386 unsigned int unused[3];
387 unsigned int data;
388 };
389
390 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
391 {
392 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
393 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
394 }
395
396 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
397 {
398 struct io_apic __iomem *io_apic = io_apic_base(apic);
399 writel(reg, &io_apic->index);
400 return readl(&io_apic->data);
401 }
402
403 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
404 {
405 struct io_apic __iomem *io_apic = io_apic_base(apic);
406 writel(reg, &io_apic->index);
407 writel(value, &io_apic->data);
408 }
409
410 /*
411 * Re-write a value: to be used for read-modify-write
412 * cycles where the read already set up the index register.
413 *
414 * Older SiS APIC requires we rewrite the index register
415 */
416 static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
417 {
418 struct io_apic __iomem *io_apic = io_apic_base(apic);
419 if (sis_apic_bug)
420 writel(reg, &io_apic->index);
421 writel(value, &io_apic->data);
422 }
423
424 static bool io_apic_level_ack_pending(unsigned int irq)
425 {
426 struct irq_pin_list *entry;
427 unsigned long flags;
428 struct irq_cfg *cfg = irq_cfg(irq);
429
430 spin_lock_irqsave(&ioapic_lock, flags);
431 entry = cfg->irq_2_pin;
432 for (;;) {
433 unsigned int reg;
434 int pin;
435
436 if (!entry)
437 break;
438 pin = entry->pin;
439 reg = io_apic_read(entry->apic, 0x10 + pin*2);
440 /* Is the remote IRR bit set? */
441 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
442 spin_unlock_irqrestore(&ioapic_lock, flags);
443 return true;
444 }
445 if (!entry->next)
446 break;
447 entry = entry->next;
448 }
449 spin_unlock_irqrestore(&ioapic_lock, flags);
450
451 return false;
452 }
453
454 union entry_union {
455 struct { u32 w1, w2; };
456 struct IO_APIC_route_entry entry;
457 };
458
459 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
460 {
461 union entry_union eu;
462 unsigned long flags;
463 spin_lock_irqsave(&ioapic_lock, flags);
464 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
465 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
466 spin_unlock_irqrestore(&ioapic_lock, flags);
467 return eu.entry;
468 }
469
470 /*
471 * When we write a new IO APIC routing entry, we need to write the high
472 * word first! If the mask bit in the low word is clear, we will enable
473 * the interrupt, and we need to make sure the entry is fully populated
474 * before that happens.
475 */
476 static void
477 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
478 {
479 union entry_union eu;
480 eu.entry = e;
481 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
482 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
483 }
484
485 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
486 {
487 unsigned long flags;
488 spin_lock_irqsave(&ioapic_lock, flags);
489 __ioapic_write_entry(apic, pin, e);
490 spin_unlock_irqrestore(&ioapic_lock, flags);
491 }
492
493 /*
494 * When we mask an IO APIC routing entry, we need to write the low
495 * word first, in order to set the mask bit before we change the
496 * high bits!
497 */
498 static void ioapic_mask_entry(int apic, int pin)
499 {
500 unsigned long flags;
501 union entry_union eu = { .entry.mask = 1 };
502
503 spin_lock_irqsave(&ioapic_lock, flags);
504 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
505 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
506 spin_unlock_irqrestore(&ioapic_lock, flags);
507 }
508
509 #ifdef CONFIG_SMP
510 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
511 {
512 int apic, pin;
513 struct irq_cfg *cfg;
514 struct irq_pin_list *entry;
515
516 cfg = irq_cfg(irq);
517 entry = cfg->irq_2_pin;
518 for (;;) {
519 unsigned int reg;
520
521 if (!entry)
522 break;
523
524 apic = entry->apic;
525 pin = entry->pin;
526 #ifdef CONFIG_INTR_REMAP
527 /*
528 * With interrupt-remapping, destination information comes
529 * from interrupt-remapping table entry.
530 */
531 if (!irq_remapped(irq))
532 io_apic_write(apic, 0x11 + pin*2, dest);
533 #else
534 io_apic_write(apic, 0x11 + pin*2, dest);
535 #endif
536 reg = io_apic_read(apic, 0x10 + pin*2);
537 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
538 reg |= vector;
539 io_apic_modify(apic, 0x10 + pin*2, reg);
540 if (!entry->next)
541 break;
542 entry = entry->next;
543 }
544 }
545
546 static int assign_irq_vector(int irq, cpumask_t mask);
547
548 static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
549 {
550 struct irq_cfg *cfg;
551 unsigned long flags;
552 unsigned int dest;
553 cpumask_t tmp;
554 struct irq_desc *desc;
555
556 cpus_and(tmp, mask, cpu_online_map);
557 if (cpus_empty(tmp))
558 return;
559
560 cfg = irq_cfg(irq);
561 if (assign_irq_vector(irq, mask))
562 return;
563
564 cpus_and(tmp, cfg->domain, mask);
565 dest = cpu_mask_to_apicid(tmp);
566 /*
567 * Only the high 8 bits are valid.
568 */
569 dest = SET_APIC_LOGICAL_ID(dest);
570
571 desc = irq_to_desc(irq);
572 spin_lock_irqsave(&ioapic_lock, flags);
573 __target_IO_APIC_irq(irq, dest, cfg->vector);
574 desc->affinity = mask;
575 spin_unlock_irqrestore(&ioapic_lock, flags);
576 }
577 #endif /* CONFIG_SMP */
578
579 /*
580 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
581 * shared ISA-space IRQs, so we have to support them. We are super
582 * fast in the common case, and fast for shared ISA-space IRQs.
583 */
584 static void add_pin_to_irq(unsigned int irq, int apic, int pin)
585 {
586 struct irq_cfg *cfg;
587 struct irq_pin_list *entry;
588
589 /* first time to refer irq_cfg, so with new */
590 cfg = irq_cfg_alloc(irq);
591 entry = cfg->irq_2_pin;
592 if (!entry) {
593 entry = get_one_free_irq_2_pin();
594 cfg->irq_2_pin = entry;
595 entry->apic = apic;
596 entry->pin = pin;
597 printk(KERN_DEBUG " 0 add_pin_to_irq: irq %d --> apic %d pin %d\n", irq, apic, pin);
598 return;
599 }
600
601 while (entry->next) {
602 /* not again, please */
603 if (entry->apic == apic && entry->pin == pin)
604 return;
605
606 entry = entry->next;
607 }
608
609 entry->next = get_one_free_irq_2_pin();
610 entry = entry->next;
611 entry->apic = apic;
612 entry->pin = pin;
613 printk(KERN_DEBUG " x add_pin_to_irq: irq %d --> apic %d pin %d\n", irq, apic, pin);
614 }
615
616 /*
617 * Reroute an IRQ to a different pin.
618 */
619 static void __init replace_pin_at_irq(unsigned int irq,
620 int oldapic, int oldpin,
621 int newapic, int newpin)
622 {
623 struct irq_cfg *cfg = irq_cfg(irq);
624 struct irq_pin_list *entry = cfg->irq_2_pin;
625 int replaced = 0;
626
627 while (entry) {
628 if (entry->apic == oldapic && entry->pin == oldpin) {
629 entry->apic = newapic;
630 entry->pin = newpin;
631 replaced = 1;
632 /* every one is different, right? */
633 break;
634 }
635 entry = entry->next;
636 }
637
638 /* why? call replace before add? */
639 if (!replaced)
640 add_pin_to_irq(irq, newapic, newpin);
641 }
642
643 #define __DO_ACTION(R, ACTION_ENABLE, ACTION_DISABLE, FINAL) \
644 \
645 { \
646 int pin; \
647 struct irq_cfg *cfg; \
648 struct irq_pin_list *entry; \
649 \
650 cfg = irq_cfg(irq); \
651 entry = cfg->irq_2_pin; \
652 for (;;) { \
653 unsigned int reg; \
654 if (!entry) \
655 break; \
656 pin = entry->pin; \
657 reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
658 reg ACTION_DISABLE; \
659 reg ACTION_ENABLE; \
660 io_apic_modify(entry->apic, 0x10 + R + pin*2, reg); \
661 FINAL; \
662 if (!entry->next) \
663 break; \
664 entry = entry->next; \
665 } \
666 }
667
668 #define DO_ACTION(name,R, ACTION_ENABLE, ACTION_DISABLE, FINAL) \
669 \
670 static void name##_IO_APIC_irq (unsigned int irq) \
671 __DO_ACTION(R, ACTION_ENABLE, ACTION_DISABLE, FINAL)
672
673 /* mask = 0 */
674 DO_ACTION(__unmask, 0, |= 0, &= ~IO_APIC_REDIR_MASKED, )
675
676 #ifdef CONFIG_X86_64
677 /*
678 * Synchronize the IO-APIC and the CPU by doing
679 * a dummy read from the IO-APIC
680 */
681 static inline void io_apic_sync(unsigned int apic)
682 {
683 struct io_apic __iomem *io_apic = io_apic_base(apic);
684 readl(&io_apic->data);
685 }
686
687 /* mask = 1 */
688 DO_ACTION(__mask, 0, |= IO_APIC_REDIR_MASKED, &= ~0, io_apic_sync(entry->apic))
689
690 #else
691
692 /* mask = 1 */
693 DO_ACTION(__mask, 0, |= IO_APIC_REDIR_MASKED, &= ~0, )
694
695 /* mask = 1, trigger = 0 */
696 DO_ACTION(__mask_and_edge, 0, |= IO_APIC_REDIR_MASKED, &= ~IO_APIC_REDIR_LEVEL_TRIGGER, )
697
698 /* mask = 0, trigger = 1 */
699 DO_ACTION(__unmask_and_level, 0, |= IO_APIC_REDIR_LEVEL_TRIGGER, &= ~IO_APIC_REDIR_MASKED, )
700
701 #endif
702
703 static void mask_IO_APIC_irq (unsigned int irq)
704 {
705 unsigned long flags;
706
707 spin_lock_irqsave(&ioapic_lock, flags);
708 __mask_IO_APIC_irq(irq);
709 spin_unlock_irqrestore(&ioapic_lock, flags);
710 }
711
712 static void unmask_IO_APIC_irq (unsigned int irq)
713 {
714 unsigned long flags;
715
716 spin_lock_irqsave(&ioapic_lock, flags);
717 __unmask_IO_APIC_irq(irq);
718 spin_unlock_irqrestore(&ioapic_lock, flags);
719 }
720
721 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
722 {
723 struct IO_APIC_route_entry entry;
724
725 /* Check delivery_mode to be sure we're not clearing an SMI pin */
726 entry = ioapic_read_entry(apic, pin);
727 if (entry.delivery_mode == dest_SMI)
728 return;
729 /*
730 * Disable it in the IO-APIC irq-routing table:
731 */
732 ioapic_mask_entry(apic, pin);
733 }
734
735 static void clear_IO_APIC (void)
736 {
737 int apic, pin;
738
739 for (apic = 0; apic < nr_ioapics; apic++)
740 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
741 clear_IO_APIC_pin(apic, pin);
742 }
743
744 #if !defined(CONFIG_SMP) && defined(CONFIG_X86_32)
745 void send_IPI_self(int vector)
746 {
747 unsigned int cfg;
748
749 /*
750 * Wait for idle.
751 */
752 apic_wait_icr_idle();
753 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
754 /*
755 * Send the IPI. The write to APIC_ICR fires this off.
756 */
757 apic_write(APIC_ICR, cfg);
758 }
759 #endif /* !CONFIG_SMP && CONFIG_X86_32*/
760
761 #ifdef CONFIG_X86_32
762 /*
763 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
764 * specific CPU-side IRQs.
765 */
766
767 #define MAX_PIRQS 8
768 static int pirq_entries [MAX_PIRQS];
769 static int pirqs_enabled;
770
771 static int __init ioapic_pirq_setup(char *str)
772 {
773 int i, max;
774 int ints[MAX_PIRQS+1];
775
776 get_options(str, ARRAY_SIZE(ints), ints);
777
778 for (i = 0; i < MAX_PIRQS; i++)
779 pirq_entries[i] = -1;
780
781 pirqs_enabled = 1;
782 apic_printk(APIC_VERBOSE, KERN_INFO
783 "PIRQ redirection, working around broken MP-BIOS.\n");
784 max = MAX_PIRQS;
785 if (ints[0] < MAX_PIRQS)
786 max = ints[0];
787
788 for (i = 0; i < max; i++) {
789 apic_printk(APIC_VERBOSE, KERN_DEBUG
790 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
791 /*
792 * PIRQs are mapped upside down, usually.
793 */
794 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
795 }
796 return 1;
797 }
798
799 __setup("pirq=", ioapic_pirq_setup);
800 #endif /* CONFIG_X86_32 */
801
802 #ifdef CONFIG_INTR_REMAP
803 /* I/O APIC RTE contents at the OS boot up */
804 static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
805
806 /*
807 * Saves and masks all the unmasked IO-APIC RTE's
808 */
809 int save_mask_IO_APIC_setup(void)
810 {
811 union IO_APIC_reg_01 reg_01;
812 unsigned long flags;
813 int apic, pin;
814
815 /*
816 * The number of IO-APIC IRQ registers (== #pins):
817 */
818 for (apic = 0; apic < nr_ioapics; apic++) {
819 spin_lock_irqsave(&ioapic_lock, flags);
820 reg_01.raw = io_apic_read(apic, 1);
821 spin_unlock_irqrestore(&ioapic_lock, flags);
822 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
823 }
824
825 for (apic = 0; apic < nr_ioapics; apic++) {
826 early_ioapic_entries[apic] =
827 kzalloc(sizeof(struct IO_APIC_route_entry) *
828 nr_ioapic_registers[apic], GFP_KERNEL);
829 if (!early_ioapic_entries[apic])
830 return -ENOMEM;
831 }
832
833 for (apic = 0; apic < nr_ioapics; apic++)
834 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
835 struct IO_APIC_route_entry entry;
836
837 entry = early_ioapic_entries[apic][pin] =
838 ioapic_read_entry(apic, pin);
839 if (!entry.mask) {
840 entry.mask = 1;
841 ioapic_write_entry(apic, pin, entry);
842 }
843 }
844 return 0;
845 }
846
847 void restore_IO_APIC_setup(void)
848 {
849 int apic, pin;
850
851 for (apic = 0; apic < nr_ioapics; apic++)
852 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
853 ioapic_write_entry(apic, pin,
854 early_ioapic_entries[apic][pin]);
855 }
856
857 void reinit_intr_remapped_IO_APIC(int intr_remapping)
858 {
859 /*
860 * for now plain restore of previous settings.
861 * TBD: In the case of OS enabling interrupt-remapping,
862 * IO-APIC RTE's need to be setup to point to interrupt-remapping
863 * table entries. for now, do a plain restore, and wait for
864 * the setup_IO_APIC_irqs() to do proper initialization.
865 */
866 restore_IO_APIC_setup();
867 }
868 #endif
869
870 /*
871 * Find the IRQ entry number of a certain pin.
872 */
873 static int find_irq_entry(int apic, int pin, int type)
874 {
875 int i;
876
877 for (i = 0; i < mp_irq_entries; i++)
878 if (mp_irqs[i].mp_irqtype == type &&
879 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
880 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
881 mp_irqs[i].mp_dstirq == pin)
882 return i;
883
884 return -1;
885 }
886
887 /*
888 * Find the pin to which IRQ[irq] (ISA) is connected
889 */
890 static int __init find_isa_irq_pin(int irq, int type)
891 {
892 int i;
893
894 for (i = 0; i < mp_irq_entries; i++) {
895 int lbus = mp_irqs[i].mp_srcbus;
896
897 if (test_bit(lbus, mp_bus_not_pci) &&
898 (mp_irqs[i].mp_irqtype == type) &&
899 (mp_irqs[i].mp_srcbusirq == irq))
900
901 return mp_irqs[i].mp_dstirq;
902 }
903 return -1;
904 }
905
906 static int __init find_isa_irq_apic(int irq, int type)
907 {
908 int i;
909
910 for (i = 0; i < mp_irq_entries; i++) {
911 int lbus = mp_irqs[i].mp_srcbus;
912
913 if (test_bit(lbus, mp_bus_not_pci) &&
914 (mp_irqs[i].mp_irqtype == type) &&
915 (mp_irqs[i].mp_srcbusirq == irq))
916 break;
917 }
918 if (i < mp_irq_entries) {
919 int apic;
920 for(apic = 0; apic < nr_ioapics; apic++) {
921 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
922 return apic;
923 }
924 }
925
926 return -1;
927 }
928
929 /*
930 * Find a specific PCI IRQ entry.
931 * Not an __init, possibly needed by modules
932 */
933 static int pin_2_irq(int idx, int apic, int pin);
934
935 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
936 {
937 int apic, i, best_guess = -1;
938
939 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
940 bus, slot, pin);
941 if (test_bit(bus, mp_bus_not_pci)) {
942 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
943 return -1;
944 }
945 for (i = 0; i < mp_irq_entries; i++) {
946 int lbus = mp_irqs[i].mp_srcbus;
947
948 for (apic = 0; apic < nr_ioapics; apic++)
949 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
950 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
951 break;
952
953 if (!test_bit(lbus, mp_bus_not_pci) &&
954 !mp_irqs[i].mp_irqtype &&
955 (bus == lbus) &&
956 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
957 int irq = pin_2_irq(i,apic,mp_irqs[i].mp_dstirq);
958
959 if (!(apic || IO_APIC_IRQ(irq)))
960 continue;
961
962 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
963 return irq;
964 /*
965 * Use the first all-but-pin matching entry as a
966 * best-guess fuzzy result for broken mptables.
967 */
968 if (best_guess < 0)
969 best_guess = irq;
970 }
971 }
972 return best_guess;
973 }
974
975 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
976
977 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
978 /*
979 * EISA Edge/Level control register, ELCR
980 */
981 static int EISA_ELCR(unsigned int irq)
982 {
983 if (irq < 16) {
984 unsigned int port = 0x4d0 + (irq >> 3);
985 return (inb(port) >> (irq & 7)) & 1;
986 }
987 apic_printk(APIC_VERBOSE, KERN_INFO
988 "Broken MPtable reports ISA irq %d\n", irq);
989 return 0;
990 }
991
992 #endif
993
994 /* ISA interrupts are always polarity zero edge triggered,
995 * when listed as conforming in the MP table. */
996
997 #define default_ISA_trigger(idx) (0)
998 #define default_ISA_polarity(idx) (0)
999
1000 /* EISA interrupts are always polarity zero and can be edge or level
1001 * trigger depending on the ELCR value. If an interrupt is listed as
1002 * EISA conforming in the MP table, that means its trigger type must
1003 * be read in from the ELCR */
1004
1005 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
1006 #define default_EISA_polarity(idx) default_ISA_polarity(idx)
1007
1008 /* PCI interrupts are always polarity one level triggered,
1009 * when listed as conforming in the MP table. */
1010
1011 #define default_PCI_trigger(idx) (1)
1012 #define default_PCI_polarity(idx) (1)
1013
1014 /* MCA interrupts are always polarity zero level triggered,
1015 * when listed as conforming in the MP table. */
1016
1017 #define default_MCA_trigger(idx) (1)
1018 #define default_MCA_polarity(idx) default_ISA_polarity(idx)
1019
1020 static int MPBIOS_polarity(int idx)
1021 {
1022 int bus = mp_irqs[idx].mp_srcbus;
1023 int polarity;
1024
1025 /*
1026 * Determine IRQ line polarity (high active or low active):
1027 */
1028 switch (mp_irqs[idx].mp_irqflag & 3)
1029 {
1030 case 0: /* conforms, ie. bus-type dependent polarity */
1031 if (test_bit(bus, mp_bus_not_pci))
1032 polarity = default_ISA_polarity(idx);
1033 else
1034 polarity = default_PCI_polarity(idx);
1035 break;
1036 case 1: /* high active */
1037 {
1038 polarity = 0;
1039 break;
1040 }
1041 case 2: /* reserved */
1042 {
1043 printk(KERN_WARNING "broken BIOS!!\n");
1044 polarity = 1;
1045 break;
1046 }
1047 case 3: /* low active */
1048 {
1049 polarity = 1;
1050 break;
1051 }
1052 default: /* invalid */
1053 {
1054 printk(KERN_WARNING "broken BIOS!!\n");
1055 polarity = 1;
1056 break;
1057 }
1058 }
1059 return polarity;
1060 }
1061
1062 static int MPBIOS_trigger(int idx)
1063 {
1064 int bus = mp_irqs[idx].mp_srcbus;
1065 int trigger;
1066
1067 /*
1068 * Determine IRQ trigger mode (edge or level sensitive):
1069 */
1070 switch ((mp_irqs[idx].mp_irqflag>>2) & 3)
1071 {
1072 case 0: /* conforms, ie. bus-type dependent */
1073 if (test_bit(bus, mp_bus_not_pci))
1074 trigger = default_ISA_trigger(idx);
1075 else
1076 trigger = default_PCI_trigger(idx);
1077 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1078 switch (mp_bus_id_to_type[bus]) {
1079 case MP_BUS_ISA: /* ISA pin */
1080 {
1081 /* set before the switch */
1082 break;
1083 }
1084 case MP_BUS_EISA: /* EISA pin */
1085 {
1086 trigger = default_EISA_trigger(idx);
1087 break;
1088 }
1089 case MP_BUS_PCI: /* PCI pin */
1090 {
1091 /* set before the switch */
1092 break;
1093 }
1094 case MP_BUS_MCA: /* MCA pin */
1095 {
1096 trigger = default_MCA_trigger(idx);
1097 break;
1098 }
1099 default:
1100 {
1101 printk(KERN_WARNING "broken BIOS!!\n");
1102 trigger = 1;
1103 break;
1104 }
1105 }
1106 #endif
1107 break;
1108 case 1: /* edge */
1109 {
1110 trigger = 0;
1111 break;
1112 }
1113 case 2: /* reserved */
1114 {
1115 printk(KERN_WARNING "broken BIOS!!\n");
1116 trigger = 1;
1117 break;
1118 }
1119 case 3: /* level */
1120 {
1121 trigger = 1;
1122 break;
1123 }
1124 default: /* invalid */
1125 {
1126 printk(KERN_WARNING "broken BIOS!!\n");
1127 trigger = 0;
1128 break;
1129 }
1130 }
1131 return trigger;
1132 }
1133
1134 static inline int irq_polarity(int idx)
1135 {
1136 return MPBIOS_polarity(idx);
1137 }
1138
1139 static inline int irq_trigger(int idx)
1140 {
1141 return MPBIOS_trigger(idx);
1142 }
1143
1144 int (*ioapic_renumber_irq)(int ioapic, int irq);
1145 static int pin_2_irq(int idx, int apic, int pin)
1146 {
1147 int irq, i;
1148 int bus = mp_irqs[idx].mp_srcbus;
1149
1150 /*
1151 * Debugging check, we are in big trouble if this message pops up!
1152 */
1153 if (mp_irqs[idx].mp_dstirq != pin)
1154 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1155
1156 if (test_bit(bus, mp_bus_not_pci)) {
1157 irq = mp_irqs[idx].mp_srcbusirq;
1158 } else {
1159 /*
1160 * PCI IRQs are mapped in order
1161 */
1162 i = irq = 0;
1163 while (i < apic)
1164 irq += nr_ioapic_registers[i++];
1165 irq += pin;
1166 /*
1167 * For MPS mode, so far only needed by ES7000 platform
1168 */
1169 if (ioapic_renumber_irq)
1170 irq = ioapic_renumber_irq(apic, irq);
1171 }
1172
1173 #ifdef CONFIG_X86_32
1174 /*
1175 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1176 */
1177 if ((pin >= 16) && (pin <= 23)) {
1178 if (pirq_entries[pin-16] != -1) {
1179 if (!pirq_entries[pin-16]) {
1180 apic_printk(APIC_VERBOSE, KERN_DEBUG
1181 "disabling PIRQ%d\n", pin-16);
1182 } else {
1183 irq = pirq_entries[pin-16];
1184 apic_printk(APIC_VERBOSE, KERN_DEBUG
1185 "using PIRQ%d -> IRQ %d\n",
1186 pin-16, irq);
1187 }
1188 }
1189 }
1190 #endif
1191
1192 return irq;
1193 }
1194
1195 void lock_vector_lock(void)
1196 {
1197 /* Used to the online set of cpus does not change
1198 * during assign_irq_vector.
1199 */
1200 spin_lock(&vector_lock);
1201 }
1202
1203 void unlock_vector_lock(void)
1204 {
1205 spin_unlock(&vector_lock);
1206 }
1207
1208 static int __assign_irq_vector(int irq, cpumask_t mask)
1209 {
1210 /*
1211 * NOTE! The local APIC isn't very good at handling
1212 * multiple interrupts at the same interrupt level.
1213 * As the interrupt level is determined by taking the
1214 * vector number and shifting that right by 4, we
1215 * want to spread these out a bit so that they don't
1216 * all fall in the same interrupt level.
1217 *
1218 * Also, we've got to be careful not to trash gate
1219 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1220 */
1221 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1222 unsigned int old_vector;
1223 int cpu;
1224 struct irq_cfg *cfg;
1225
1226 cfg = irq_cfg(irq);
1227
1228 /* Only try and allocate irqs on cpus that are present */
1229 cpus_and(mask, mask, cpu_online_map);
1230
1231 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1232 return -EBUSY;
1233
1234 old_vector = cfg->vector;
1235 if (old_vector) {
1236 cpumask_t tmp;
1237 cpus_and(tmp, cfg->domain, mask);
1238 if (!cpus_empty(tmp))
1239 return 0;
1240 }
1241
1242 for_each_cpu_mask_nr(cpu, mask) {
1243 cpumask_t domain, new_mask;
1244 int new_cpu;
1245 int vector, offset;
1246
1247 domain = vector_allocation_domain(cpu);
1248 cpus_and(new_mask, domain, cpu_online_map);
1249
1250 vector = current_vector;
1251 offset = current_offset;
1252 next:
1253 vector += 8;
1254 if (vector >= first_system_vector) {
1255 /* If we run out of vectors on large boxen, must share them. */
1256 offset = (offset + 1) % 8;
1257 vector = FIRST_DEVICE_VECTOR + offset;
1258 }
1259 if (unlikely(current_vector == vector))
1260 continue;
1261 #ifdef CONFIG_X86_64
1262 if (vector == IA32_SYSCALL_VECTOR)
1263 goto next;
1264 #else
1265 if (vector == SYSCALL_VECTOR)
1266 goto next;
1267 #endif
1268 for_each_cpu_mask_nr(new_cpu, new_mask)
1269 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1270 goto next;
1271 /* Found one! */
1272 current_vector = vector;
1273 current_offset = offset;
1274 if (old_vector) {
1275 cfg->move_in_progress = 1;
1276 cfg->old_domain = cfg->domain;
1277 }
1278 for_each_cpu_mask_nr(new_cpu, new_mask)
1279 per_cpu(vector_irq, new_cpu)[vector] = irq;
1280 cfg->vector = vector;
1281 cfg->domain = domain;
1282 return 0;
1283 }
1284 return -ENOSPC;
1285 }
1286
1287 static int assign_irq_vector(int irq, cpumask_t mask)
1288 {
1289 int err;
1290 unsigned long flags;
1291
1292 spin_lock_irqsave(&vector_lock, flags);
1293 err = __assign_irq_vector(irq, mask);
1294 spin_unlock_irqrestore(&vector_lock, flags);
1295 return err;
1296 }
1297
1298 static void __clear_irq_vector(int irq)
1299 {
1300 struct irq_cfg *cfg;
1301 cpumask_t mask;
1302 int cpu, vector;
1303
1304 cfg = irq_cfg(irq);
1305 BUG_ON(!cfg->vector);
1306
1307 vector = cfg->vector;
1308 cpus_and(mask, cfg->domain, cpu_online_map);
1309 for_each_cpu_mask_nr(cpu, mask)
1310 per_cpu(vector_irq, cpu)[vector] = -1;
1311
1312 cfg->vector = 0;
1313 cpus_clear(cfg->domain);
1314 }
1315
1316 void __setup_vector_irq(int cpu)
1317 {
1318 /* Initialize vector_irq on a new cpu */
1319 /* This function must be called with vector_lock held */
1320 int irq, vector;
1321 struct irq_cfg *cfg;
1322
1323 /* Mark the inuse vectors */
1324 for_each_irq_cfg(irq, cfg) {
1325 if (!cpu_isset(cpu, cfg->domain))
1326 continue;
1327 vector = cfg->vector;
1328 per_cpu(vector_irq, cpu)[vector] = irq;
1329 }
1330 /* Mark the free vectors */
1331 for (vector = 0; vector < NR_VECTORS; ++vector) {
1332 irq = per_cpu(vector_irq, cpu)[vector];
1333 if (irq < 0)
1334 continue;
1335
1336 cfg = irq_cfg(irq);
1337 if (!cpu_isset(cpu, cfg->domain))
1338 per_cpu(vector_irq, cpu)[vector] = -1;
1339 }
1340 }
1341
1342 static struct irq_chip ioapic_chip;
1343 #ifdef CONFIG_INTR_REMAP
1344 static struct irq_chip ir_ioapic_chip;
1345 #endif
1346
1347 #define IOAPIC_AUTO -1
1348 #define IOAPIC_EDGE 0
1349 #define IOAPIC_LEVEL 1
1350
1351 #ifdef CONFIG_X86_32
1352 static inline int IO_APIC_irq_trigger(int irq)
1353 {
1354 int apic, idx, pin;
1355
1356 for (apic = 0; apic < nr_ioapics; apic++) {
1357 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1358 idx = find_irq_entry(apic, pin, mp_INT);
1359 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1360 return irq_trigger(idx);
1361 }
1362 }
1363 /*
1364 * nonexistent IRQs are edge default
1365 */
1366 return 0;
1367 }
1368 #else
1369 static inline int IO_APIC_irq_trigger(int irq)
1370 {
1371 return 1;
1372 }
1373 #endif
1374
1375 static void ioapic_register_intr(int irq, unsigned long trigger)
1376 {
1377 struct irq_desc *desc;
1378
1379 /* first time to use this irq_desc */
1380 if (irq < 16)
1381 desc = irq_to_desc(irq);
1382 else
1383 desc = irq_to_desc_alloc(irq);
1384
1385 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1386 trigger == IOAPIC_LEVEL)
1387 desc->status |= IRQ_LEVEL;
1388 else
1389 desc->status &= ~IRQ_LEVEL;
1390
1391 #ifdef CONFIG_INTR_REMAP
1392 if (irq_remapped(irq)) {
1393 desc->status |= IRQ_MOVE_PCNTXT;
1394 if (trigger)
1395 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1396 handle_fasteoi_irq,
1397 "fasteoi");
1398 else
1399 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1400 handle_edge_irq, "edge");
1401 return;
1402 }
1403 #endif
1404 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1405 trigger == IOAPIC_LEVEL)
1406 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1407 handle_fasteoi_irq,
1408 "fasteoi");
1409 else
1410 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1411 handle_edge_irq, "edge");
1412 }
1413
1414 static int setup_ioapic_entry(int apic, int irq,
1415 struct IO_APIC_route_entry *entry,
1416 unsigned int destination, int trigger,
1417 int polarity, int vector)
1418 {
1419 /*
1420 * add it to the IO-APIC irq-routing table:
1421 */
1422 memset(entry,0,sizeof(*entry));
1423
1424 #ifdef CONFIG_INTR_REMAP
1425 if (intr_remapping_enabled) {
1426 struct intel_iommu *iommu = map_ioapic_to_ir(apic);
1427 struct irte irte;
1428 struct IR_IO_APIC_route_entry *ir_entry =
1429 (struct IR_IO_APIC_route_entry *) entry;
1430 int index;
1431
1432 if (!iommu)
1433 panic("No mapping iommu for ioapic %d\n", apic);
1434
1435 index = alloc_irte(iommu, irq, 1);
1436 if (index < 0)
1437 panic("Failed to allocate IRTE for ioapic %d\n", apic);
1438
1439 memset(&irte, 0, sizeof(irte));
1440
1441 irte.present = 1;
1442 irte.dst_mode = INT_DEST_MODE;
1443 irte.trigger_mode = trigger;
1444 irte.dlvry_mode = INT_DELIVERY_MODE;
1445 irte.vector = vector;
1446 irte.dest_id = IRTE_DEST(destination);
1447
1448 modify_irte(irq, &irte);
1449
1450 ir_entry->index2 = (index >> 15) & 0x1;
1451 ir_entry->zero = 0;
1452 ir_entry->format = 1;
1453 ir_entry->index = (index & 0x7fff);
1454 } else
1455 #endif
1456 {
1457 entry->delivery_mode = INT_DELIVERY_MODE;
1458 entry->dest_mode = INT_DEST_MODE;
1459 entry->dest = destination;
1460 }
1461
1462 entry->mask = 0; /* enable IRQ */
1463 entry->trigger = trigger;
1464 entry->polarity = polarity;
1465 entry->vector = vector;
1466
1467 /* Mask level triggered irqs.
1468 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1469 */
1470 if (trigger)
1471 entry->mask = 1;
1472 return 0;
1473 }
1474
1475 static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
1476 int trigger, int polarity)
1477 {
1478 struct irq_cfg *cfg;
1479 struct IO_APIC_route_entry entry;
1480 cpumask_t mask;
1481
1482 if (!IO_APIC_IRQ(irq))
1483 return;
1484
1485 cfg = irq_cfg(irq);
1486
1487 mask = TARGET_CPUS;
1488 if (assign_irq_vector(irq, mask))
1489 return;
1490
1491 cpus_and(mask, cfg->domain, mask);
1492
1493 apic_printk(APIC_VERBOSE,KERN_DEBUG
1494 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1495 "IRQ %d Mode:%i Active:%i)\n",
1496 apic, mp_ioapics[apic].mp_apicid, pin, cfg->vector,
1497 irq, trigger, polarity);
1498
1499
1500 if (setup_ioapic_entry(mp_ioapics[apic].mp_apicid, irq, &entry,
1501 cpu_mask_to_apicid(mask), trigger, polarity,
1502 cfg->vector)) {
1503 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1504 mp_ioapics[apic].mp_apicid, pin);
1505 __clear_irq_vector(irq);
1506 return;
1507 }
1508
1509 ioapic_register_intr(irq, trigger);
1510 if (irq < 16)
1511 disable_8259A_irq(irq);
1512
1513 ioapic_write_entry(apic, pin, entry);
1514 }
1515
1516 static void __init setup_IO_APIC_irqs(void)
1517 {
1518 int apic, pin, idx, irq, first_notcon = 1;
1519
1520 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1521
1522 for (apic = 0; apic < nr_ioapics; apic++) {
1523 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1524
1525 idx = find_irq_entry(apic,pin,mp_INT);
1526 if (idx == -1) {
1527 if (first_notcon) {
1528 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mp_apicid, pin);
1529 first_notcon = 0;
1530 } else
1531 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mp_apicid, pin);
1532 continue;
1533 }
1534 if (!first_notcon) {
1535 apic_printk(APIC_VERBOSE, " not connected.\n");
1536 first_notcon = 1;
1537 }
1538
1539 irq = pin_2_irq(idx, apic, pin);
1540 #ifdef CONFIG_X86_32
1541 if (multi_timer_check(apic, irq))
1542 continue;
1543 #endif
1544 add_pin_to_irq(irq, apic, pin);
1545
1546 setup_IO_APIC_irq(apic, pin, irq,
1547 irq_trigger(idx), irq_polarity(idx));
1548 }
1549 }
1550
1551 if (!first_notcon)
1552 apic_printk(APIC_VERBOSE, " not connected.\n");
1553 }
1554
1555 /*
1556 * Set up the timer pin, possibly with the 8259A-master behind.
1557 */
1558 static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1559 int vector)
1560 {
1561 struct IO_APIC_route_entry entry;
1562
1563 #ifdef CONFIG_INTR_REMAP
1564 if (intr_remapping_enabled)
1565 return;
1566 #endif
1567
1568 memset(&entry, 0, sizeof(entry));
1569
1570 /*
1571 * We use logical delivery to get the timer IRQ
1572 * to the first CPU.
1573 */
1574 entry.dest_mode = INT_DEST_MODE;
1575 entry.mask = 1; /* mask IRQ now */
1576 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
1577 entry.delivery_mode = INT_DELIVERY_MODE;
1578 entry.polarity = 0;
1579 entry.trigger = 0;
1580 entry.vector = vector;
1581
1582 /*
1583 * The timer IRQ doesn't have to know that behind the
1584 * scene we may have a 8259A-master in AEOI mode ...
1585 */
1586 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1587
1588 /*
1589 * Add it to the IO-APIC irq-routing table:
1590 */
1591 ioapic_write_entry(apic, pin, entry);
1592 }
1593
1594
1595 __apicdebuginit(void) print_IO_APIC(void)
1596 {
1597 int apic, i;
1598 union IO_APIC_reg_00 reg_00;
1599 union IO_APIC_reg_01 reg_01;
1600 union IO_APIC_reg_02 reg_02;
1601 union IO_APIC_reg_03 reg_03;
1602 unsigned long flags;
1603 struct irq_cfg *cfg;
1604 unsigned int irq;
1605
1606 if (apic_verbosity == APIC_QUIET)
1607 return;
1608
1609 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1610 for (i = 0; i < nr_ioapics; i++)
1611 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1612 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
1613
1614 /*
1615 * We are a bit conservative about what we expect. We have to
1616 * know about every hardware change ASAP.
1617 */
1618 printk(KERN_INFO "testing the IO APIC.......................\n");
1619
1620 for (apic = 0; apic < nr_ioapics; apic++) {
1621
1622 spin_lock_irqsave(&ioapic_lock, flags);
1623 reg_00.raw = io_apic_read(apic, 0);
1624 reg_01.raw = io_apic_read(apic, 1);
1625 if (reg_01.bits.version >= 0x10)
1626 reg_02.raw = io_apic_read(apic, 2);
1627 if (reg_01.bits.version >= 0x20)
1628 reg_03.raw = io_apic_read(apic, 3);
1629 spin_unlock_irqrestore(&ioapic_lock, flags);
1630
1631 printk("\n");
1632 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
1633 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1634 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1635 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1636 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1637
1638 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
1639 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1640
1641 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1642 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1643
1644 /*
1645 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1646 * but the value of reg_02 is read as the previous read register
1647 * value, so ignore it if reg_02 == reg_01.
1648 */
1649 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1650 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1651 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1652 }
1653
1654 /*
1655 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1656 * or reg_03, but the value of reg_0[23] is read as the previous read
1657 * register value, so ignore it if reg_03 == reg_0[12].
1658 */
1659 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1660 reg_03.raw != reg_01.raw) {
1661 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1662 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1663 }
1664
1665 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1666
1667 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1668 " Stat Dmod Deli Vect: \n");
1669
1670 for (i = 0; i <= reg_01.bits.entries; i++) {
1671 struct IO_APIC_route_entry entry;
1672
1673 entry = ioapic_read_entry(apic, i);
1674
1675 printk(KERN_DEBUG " %02x %03X ",
1676 i,
1677 entry.dest
1678 );
1679
1680 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1681 entry.mask,
1682 entry.trigger,
1683 entry.irr,
1684 entry.polarity,
1685 entry.delivery_status,
1686 entry.dest_mode,
1687 entry.delivery_mode,
1688 entry.vector
1689 );
1690 }
1691 }
1692 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1693 for_each_irq_cfg(irq, cfg) {
1694 struct irq_pin_list *entry = cfg->irq_2_pin;
1695 if (!entry)
1696 continue;
1697 printk(KERN_DEBUG "IRQ%d ", irq);
1698 for (;;) {
1699 printk("-> %d:%d", entry->apic, entry->pin);
1700 if (!entry->next)
1701 break;
1702 entry = entry->next;
1703 }
1704 printk("\n");
1705 }
1706
1707 printk(KERN_INFO ".................................... done.\n");
1708
1709 return;
1710 }
1711
1712 __apicdebuginit(void) print_APIC_bitfield(int base)
1713 {
1714 unsigned int v;
1715 int i, j;
1716
1717 if (apic_verbosity == APIC_QUIET)
1718 return;
1719
1720 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1721 for (i = 0; i < 8; i++) {
1722 v = apic_read(base + i*0x10);
1723 for (j = 0; j < 32; j++) {
1724 if (v & (1<<j))
1725 printk("1");
1726 else
1727 printk("0");
1728 }
1729 printk("\n");
1730 }
1731 }
1732
1733 __apicdebuginit(void) print_local_APIC(void *dummy)
1734 {
1735 unsigned int v, ver, maxlvt;
1736 u64 icr;
1737
1738 if (apic_verbosity == APIC_QUIET)
1739 return;
1740
1741 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1742 smp_processor_id(), hard_smp_processor_id());
1743 v = apic_read(APIC_ID);
1744 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
1745 v = apic_read(APIC_LVR);
1746 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1747 ver = GET_APIC_VERSION(v);
1748 maxlvt = lapic_get_maxlvt();
1749
1750 v = apic_read(APIC_TASKPRI);
1751 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1752
1753 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1754 v = apic_read(APIC_ARBPRI);
1755 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1756 v & APIC_ARBPRI_MASK);
1757 v = apic_read(APIC_PROCPRI);
1758 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1759 }
1760
1761 v = apic_read(APIC_EOI);
1762 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1763 v = apic_read(APIC_RRR);
1764 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1765 v = apic_read(APIC_LDR);
1766 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1767 v = apic_read(APIC_DFR);
1768 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1769 v = apic_read(APIC_SPIV);
1770 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1771
1772 printk(KERN_DEBUG "... APIC ISR field:\n");
1773 print_APIC_bitfield(APIC_ISR);
1774 printk(KERN_DEBUG "... APIC TMR field:\n");
1775 print_APIC_bitfield(APIC_TMR);
1776 printk(KERN_DEBUG "... APIC IRR field:\n");
1777 print_APIC_bitfield(APIC_IRR);
1778
1779 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1780 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1781 apic_write(APIC_ESR, 0);
1782
1783 v = apic_read(APIC_ESR);
1784 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1785 }
1786
1787 icr = apic_icr_read();
1788 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1789 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1790
1791 v = apic_read(APIC_LVTT);
1792 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1793
1794 if (maxlvt > 3) { /* PC is LVT#4. */
1795 v = apic_read(APIC_LVTPC);
1796 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1797 }
1798 v = apic_read(APIC_LVT0);
1799 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1800 v = apic_read(APIC_LVT1);
1801 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1802
1803 if (maxlvt > 2) { /* ERR is LVT#3. */
1804 v = apic_read(APIC_LVTERR);
1805 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1806 }
1807
1808 v = apic_read(APIC_TMICT);
1809 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1810 v = apic_read(APIC_TMCCT);
1811 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1812 v = apic_read(APIC_TDCR);
1813 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1814 printk("\n");
1815 }
1816
1817 __apicdebuginit(void) print_all_local_APICs(void)
1818 {
1819 int cpu;
1820
1821 preempt_disable();
1822 for_each_online_cpu(cpu)
1823 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1824 preempt_enable();
1825 }
1826
1827 __apicdebuginit(void) print_PIC(void)
1828 {
1829 unsigned int v;
1830 unsigned long flags;
1831
1832 if (apic_verbosity == APIC_QUIET)
1833 return;
1834
1835 printk(KERN_DEBUG "\nprinting PIC contents\n");
1836
1837 spin_lock_irqsave(&i8259A_lock, flags);
1838
1839 v = inb(0xa1) << 8 | inb(0x21);
1840 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1841
1842 v = inb(0xa0) << 8 | inb(0x20);
1843 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1844
1845 outb(0x0b,0xa0);
1846 outb(0x0b,0x20);
1847 v = inb(0xa0) << 8 | inb(0x20);
1848 outb(0x0a,0xa0);
1849 outb(0x0a,0x20);
1850
1851 spin_unlock_irqrestore(&i8259A_lock, flags);
1852
1853 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1854
1855 v = inb(0x4d1) << 8 | inb(0x4d0);
1856 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1857 }
1858
1859 __apicdebuginit(int) print_all_ICs(void)
1860 {
1861 print_PIC();
1862 print_all_local_APICs();
1863 print_IO_APIC();
1864
1865 return 0;
1866 }
1867
1868 fs_initcall(print_all_ICs);
1869
1870
1871 /* Where if anywhere is the i8259 connect in external int mode */
1872 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1873
1874 void __init enable_IO_APIC(void)
1875 {
1876 union IO_APIC_reg_01 reg_01;
1877 int i8259_apic, i8259_pin;
1878 int apic;
1879 unsigned long flags;
1880
1881 #ifdef CONFIG_X86_32
1882 int i;
1883 if (!pirqs_enabled)
1884 for (i = 0; i < MAX_PIRQS; i++)
1885 pirq_entries[i] = -1;
1886 #endif
1887
1888 /*
1889 * The number of IO-APIC IRQ registers (== #pins):
1890 */
1891 for (apic = 0; apic < nr_ioapics; apic++) {
1892 spin_lock_irqsave(&ioapic_lock, flags);
1893 reg_01.raw = io_apic_read(apic, 1);
1894 spin_unlock_irqrestore(&ioapic_lock, flags);
1895 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1896 }
1897 for(apic = 0; apic < nr_ioapics; apic++) {
1898 int pin;
1899 /* See if any of the pins is in ExtINT mode */
1900 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1901 struct IO_APIC_route_entry entry;
1902 entry = ioapic_read_entry(apic, pin);
1903
1904 /* If the interrupt line is enabled and in ExtInt mode
1905 * I have found the pin where the i8259 is connected.
1906 */
1907 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1908 ioapic_i8259.apic = apic;
1909 ioapic_i8259.pin = pin;
1910 goto found_i8259;
1911 }
1912 }
1913 }
1914 found_i8259:
1915 /* Look to see what if the MP table has reported the ExtINT */
1916 /* If we could not find the appropriate pin by looking at the ioapic
1917 * the i8259 probably is not connected the ioapic but give the
1918 * mptable a chance anyway.
1919 */
1920 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1921 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1922 /* Trust the MP table if nothing is setup in the hardware */
1923 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1924 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1925 ioapic_i8259.pin = i8259_pin;
1926 ioapic_i8259.apic = i8259_apic;
1927 }
1928 /* Complain if the MP table and the hardware disagree */
1929 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1930 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1931 {
1932 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1933 }
1934
1935 /*
1936 * Do not trust the IO-APIC being empty at bootup
1937 */
1938 clear_IO_APIC();
1939 }
1940
1941 /*
1942 * Not an __init, needed by the reboot code
1943 */
1944 void disable_IO_APIC(void)
1945 {
1946 /*
1947 * Clear the IO-APIC before rebooting:
1948 */
1949 clear_IO_APIC();
1950
1951 /*
1952 * If the i8259 is routed through an IOAPIC
1953 * Put that IOAPIC in virtual wire mode
1954 * so legacy interrupts can be delivered.
1955 */
1956 if (ioapic_i8259.pin != -1) {
1957 struct IO_APIC_route_entry entry;
1958
1959 memset(&entry, 0, sizeof(entry));
1960 entry.mask = 0; /* Enabled */
1961 entry.trigger = 0; /* Edge */
1962 entry.irr = 0;
1963 entry.polarity = 0; /* High */
1964 entry.delivery_status = 0;
1965 entry.dest_mode = 0; /* Physical */
1966 entry.delivery_mode = dest_ExtINT; /* ExtInt */
1967 entry.vector = 0;
1968 entry.dest = read_apic_id();
1969
1970 /*
1971 * Add it to the IO-APIC irq-routing table:
1972 */
1973 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
1974 }
1975
1976 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1977 }
1978
1979 #ifdef CONFIG_X86_32
1980 /*
1981 * function to set the IO-APIC physical IDs based on the
1982 * values stored in the MPC table.
1983 *
1984 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1985 */
1986
1987 static void __init setup_ioapic_ids_from_mpc(void)
1988 {
1989 union IO_APIC_reg_00 reg_00;
1990 physid_mask_t phys_id_present_map;
1991 int apic;
1992 int i;
1993 unsigned char old_id;
1994 unsigned long flags;
1995
1996 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
1997 return;
1998
1999 /*
2000 * Don't check I/O APIC IDs for xAPIC systems. They have
2001 * no meaning without the serial APIC bus.
2002 */
2003 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2004 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2005 return;
2006 /*
2007 * This is broken; anything with a real cpu count has to
2008 * circumvent this idiocy regardless.
2009 */
2010 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
2011
2012 /*
2013 * Set the IOAPIC ID to the value stored in the MPC table.
2014 */
2015 for (apic = 0; apic < nr_ioapics; apic++) {
2016
2017 /* Read the register 0 value */
2018 spin_lock_irqsave(&ioapic_lock, flags);
2019 reg_00.raw = io_apic_read(apic, 0);
2020 spin_unlock_irqrestore(&ioapic_lock, flags);
2021
2022 old_id = mp_ioapics[apic].mp_apicid;
2023
2024 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
2025 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
2026 apic, mp_ioapics[apic].mp_apicid);
2027 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2028 reg_00.bits.ID);
2029 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
2030 }
2031
2032 /*
2033 * Sanity check, is the ID really free? Every APIC in a
2034 * system must have a unique ID or we get lots of nice
2035 * 'stuck on smp_invalidate_needed IPI wait' messages.
2036 */
2037 if (check_apicid_used(phys_id_present_map,
2038 mp_ioapics[apic].mp_apicid)) {
2039 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
2040 apic, mp_ioapics[apic].mp_apicid);
2041 for (i = 0; i < get_physical_broadcast(); i++)
2042 if (!physid_isset(i, phys_id_present_map))
2043 break;
2044 if (i >= get_physical_broadcast())
2045 panic("Max APIC ID exceeded!\n");
2046 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2047 i);
2048 physid_set(i, phys_id_present_map);
2049 mp_ioapics[apic].mp_apicid = i;
2050 } else {
2051 physid_mask_t tmp;
2052 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
2053 apic_printk(APIC_VERBOSE, "Setting %d in the "
2054 "phys_id_present_map\n",
2055 mp_ioapics[apic].mp_apicid);
2056 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2057 }
2058
2059
2060 /*
2061 * We need to adjust the IRQ routing table
2062 * if the ID changed.
2063 */
2064 if (old_id != mp_ioapics[apic].mp_apicid)
2065 for (i = 0; i < mp_irq_entries; i++)
2066 if (mp_irqs[i].mp_dstapic == old_id)
2067 mp_irqs[i].mp_dstapic
2068 = mp_ioapics[apic].mp_apicid;
2069
2070 /*
2071 * Read the right value from the MPC table and
2072 * write it into the ID register.
2073 */
2074 apic_printk(APIC_VERBOSE, KERN_INFO
2075 "...changing IO-APIC physical APIC ID to %d ...",
2076 mp_ioapics[apic].mp_apicid);
2077
2078 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
2079 spin_lock_irqsave(&ioapic_lock, flags);
2080
2081 /*
2082 * Sanity check
2083 */
2084 spin_lock_irqsave(&ioapic_lock, flags);
2085 reg_00.raw = io_apic_read(apic, 0);
2086 spin_unlock_irqrestore(&ioapic_lock, flags);
2087 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
2088 printk("could not set ID!\n");
2089 else
2090 apic_printk(APIC_VERBOSE, " ok.\n");
2091 }
2092 }
2093 #endif
2094
2095 int no_timer_check __initdata;
2096
2097 static int __init notimercheck(char *s)
2098 {
2099 no_timer_check = 1;
2100 return 1;
2101 }
2102 __setup("no_timer_check", notimercheck);
2103
2104 /*
2105 * There is a nasty bug in some older SMP boards, their mptable lies
2106 * about the timer IRQ. We do the following to work around the situation:
2107 *
2108 * - timer IRQ defaults to IO-APIC IRQ
2109 * - if this function detects that timer IRQs are defunct, then we fall
2110 * back to ISA timer IRQs
2111 */
2112 static int __init timer_irq_works(void)
2113 {
2114 unsigned long t1 = jiffies;
2115 unsigned long flags;
2116
2117 if (no_timer_check)
2118 return 1;
2119
2120 local_save_flags(flags);
2121 local_irq_enable();
2122 /* Let ten ticks pass... */
2123 mdelay((10 * 1000) / HZ);
2124 local_irq_restore(flags);
2125
2126 /*
2127 * Expect a few ticks at least, to be sure some possible
2128 * glue logic does not lock up after one or two first
2129 * ticks in a non-ExtINT mode. Also the local APIC
2130 * might have cached one ExtINT interrupt. Finally, at
2131 * least one tick may be lost due to delays.
2132 */
2133
2134 /* jiffies wrap? */
2135 if (time_after(jiffies, t1 + 4))
2136 return 1;
2137 return 0;
2138 }
2139
2140 /*
2141 * In the SMP+IOAPIC case it might happen that there are an unspecified
2142 * number of pending IRQ events unhandled. These cases are very rare,
2143 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2144 * better to do it this way as thus we do not have to be aware of
2145 * 'pending' interrupts in the IRQ path, except at this point.
2146 */
2147 /*
2148 * Edge triggered needs to resend any interrupt
2149 * that was delayed but this is now handled in the device
2150 * independent code.
2151 */
2152
2153 /*
2154 * Starting up a edge-triggered IO-APIC interrupt is
2155 * nasty - we need to make sure that we get the edge.
2156 * If it is already asserted for some reason, we need
2157 * return 1 to indicate that is was pending.
2158 *
2159 * This is not complete - we should be able to fake
2160 * an edge even if it isn't on the 8259A...
2161 */
2162
2163 static unsigned int startup_ioapic_irq(unsigned int irq)
2164 {
2165 int was_pending = 0;
2166 unsigned long flags;
2167
2168 spin_lock_irqsave(&ioapic_lock, flags);
2169 if (irq < 16) {
2170 disable_8259A_irq(irq);
2171 if (i8259A_irq_pending(irq))
2172 was_pending = 1;
2173 }
2174 __unmask_IO_APIC_irq(irq);
2175 spin_unlock_irqrestore(&ioapic_lock, flags);
2176
2177 return was_pending;
2178 }
2179
2180 #ifdef CONFIG_X86_64
2181 static int ioapic_retrigger_irq(unsigned int irq)
2182 {
2183
2184 struct irq_cfg *cfg = irq_cfg(irq);
2185 unsigned long flags;
2186
2187 spin_lock_irqsave(&vector_lock, flags);
2188 send_IPI_mask(cpumask_of_cpu(first_cpu(cfg->domain)), cfg->vector);
2189 spin_unlock_irqrestore(&vector_lock, flags);
2190
2191 return 1;
2192 }
2193 #else
2194 static int ioapic_retrigger_irq(unsigned int irq)
2195 {
2196 send_IPI_self(irq_cfg(irq)->vector);
2197
2198 return 1;
2199 }
2200 #endif
2201
2202 /*
2203 * Level and edge triggered IO-APIC interrupts need different handling,
2204 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2205 * handled with the level-triggered descriptor, but that one has slightly
2206 * more overhead. Level-triggered interrupts cannot be handled with the
2207 * edge-triggered handler, without risking IRQ storms and other ugly
2208 * races.
2209 */
2210
2211 #ifdef CONFIG_SMP
2212
2213 #ifdef CONFIG_INTR_REMAP
2214 static void ir_irq_migration(struct work_struct *work);
2215
2216 static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration);
2217
2218 /*
2219 * Migrate the IO-APIC irq in the presence of intr-remapping.
2220 *
2221 * For edge triggered, irq migration is a simple atomic update(of vector
2222 * and cpu destination) of IRTE and flush the hardware cache.
2223 *
2224 * For level triggered, we need to modify the io-apic RTE aswell with the update
2225 * vector information, along with modifying IRTE with vector and destination.
2226 * So irq migration for level triggered is little bit more complex compared to
2227 * edge triggered migration. But the good news is, we use the same algorithm
2228 * for level triggered migration as we have today, only difference being,
2229 * we now initiate the irq migration from process context instead of the
2230 * interrupt context.
2231 *
2232 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2233 * suppression) to the IO-APIC, level triggered irq migration will also be
2234 * as simple as edge triggered migration and we can do the irq migration
2235 * with a simple atomic update to IO-APIC RTE.
2236 */
2237 static void migrate_ioapic_irq(int irq, cpumask_t mask)
2238 {
2239 struct irq_cfg *cfg;
2240 struct irq_desc *desc;
2241 cpumask_t tmp, cleanup_mask;
2242 struct irte irte;
2243 int modify_ioapic_rte;
2244 unsigned int dest;
2245 unsigned long flags;
2246
2247 cpus_and(tmp, mask, cpu_online_map);
2248 if (cpus_empty(tmp))
2249 return;
2250
2251 if (get_irte(irq, &irte))
2252 return;
2253
2254 if (assign_irq_vector(irq, mask))
2255 return;
2256
2257 cfg = irq_cfg(irq);
2258 cpus_and(tmp, cfg->domain, mask);
2259 dest = cpu_mask_to_apicid(tmp);
2260
2261 desc = irq_to_desc(irq);
2262 modify_ioapic_rte = desc->status & IRQ_LEVEL;
2263 if (modify_ioapic_rte) {
2264 spin_lock_irqsave(&ioapic_lock, flags);
2265 __target_IO_APIC_irq(irq, dest, cfg->vector);
2266 spin_unlock_irqrestore(&ioapic_lock, flags);
2267 }
2268
2269 irte.vector = cfg->vector;
2270 irte.dest_id = IRTE_DEST(dest);
2271
2272 /*
2273 * Modified the IRTE and flushes the Interrupt entry cache.
2274 */
2275 modify_irte(irq, &irte);
2276
2277 if (cfg->move_in_progress) {
2278 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2279 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2280 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2281 cfg->move_in_progress = 0;
2282 }
2283
2284 desc->affinity = mask;
2285 }
2286
2287 static int migrate_irq_remapped_level(int irq)
2288 {
2289 int ret = -1;
2290 struct irq_desc *desc = irq_to_desc(irq);
2291
2292 mask_IO_APIC_irq(irq);
2293
2294 if (io_apic_level_ack_pending(irq)) {
2295 /*
2296 * Interrupt in progress. Migrating irq now will change the
2297 * vector information in the IO-APIC RTE and that will confuse
2298 * the EOI broadcast performed by cpu.
2299 * So, delay the irq migration to the next instance.
2300 */
2301 schedule_delayed_work(&ir_migration_work, 1);
2302 goto unmask;
2303 }
2304
2305 /* everthing is clear. we have right of way */
2306 migrate_ioapic_irq(irq, desc->pending_mask);
2307
2308 ret = 0;
2309 desc->status &= ~IRQ_MOVE_PENDING;
2310 cpus_clear(desc->pending_mask);
2311
2312 unmask:
2313 unmask_IO_APIC_irq(irq);
2314 return ret;
2315 }
2316
2317 static void ir_irq_migration(struct work_struct *work)
2318 {
2319 unsigned int irq;
2320 struct irq_desc *desc;
2321
2322 for_each_irq_desc(irq, desc) {
2323 if (desc->status & IRQ_MOVE_PENDING) {
2324 unsigned long flags;
2325
2326 spin_lock_irqsave(&desc->lock, flags);
2327 if (!desc->chip->set_affinity ||
2328 !(desc->status & IRQ_MOVE_PENDING)) {
2329 desc->status &= ~IRQ_MOVE_PENDING;
2330 spin_unlock_irqrestore(&desc->lock, flags);
2331 continue;
2332 }
2333
2334 desc->chip->set_affinity(irq, desc->pending_mask);
2335 spin_unlock_irqrestore(&desc->lock, flags);
2336 }
2337 }
2338 }
2339
2340 /*
2341 * Migrates the IRQ destination in the process context.
2342 */
2343 static void set_ir_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
2344 {
2345 struct irq_desc *desc = irq_to_desc(irq);
2346
2347 if (desc->status & IRQ_LEVEL) {
2348 desc->status |= IRQ_MOVE_PENDING;
2349 desc->pending_mask = mask;
2350 migrate_irq_remapped_level(irq);
2351 return;
2352 }
2353
2354 migrate_ioapic_irq(irq, mask);
2355 }
2356 #endif
2357
2358 asmlinkage void smp_irq_move_cleanup_interrupt(void)
2359 {
2360 unsigned vector, me;
2361 ack_APIC_irq();
2362 #ifdef CONFIG_X86_64
2363 exit_idle();
2364 #endif
2365 irq_enter();
2366
2367 me = smp_processor_id();
2368 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2369 unsigned int irq;
2370 struct irq_desc *desc;
2371 struct irq_cfg *cfg;
2372 irq = __get_cpu_var(vector_irq)[vector];
2373
2374 desc = irq_to_desc(irq);
2375 if (!desc)
2376 continue;
2377
2378 cfg = irq_cfg(irq);
2379 spin_lock(&desc->lock);
2380 if (!cfg->move_cleanup_count)
2381 goto unlock;
2382
2383 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
2384 goto unlock;
2385
2386 __get_cpu_var(vector_irq)[vector] = -1;
2387 cfg->move_cleanup_count--;
2388 unlock:
2389 spin_unlock(&desc->lock);
2390 }
2391
2392 irq_exit();
2393 }
2394
2395 static void irq_complete_move(unsigned int irq)
2396 {
2397 struct irq_cfg *cfg = irq_cfg(irq);
2398 unsigned vector, me;
2399
2400 if (likely(!cfg->move_in_progress))
2401 return;
2402
2403 vector = ~get_irq_regs()->orig_ax;
2404 me = smp_processor_id();
2405 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain)) {
2406 cpumask_t cleanup_mask;
2407
2408 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2409 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2410 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2411 cfg->move_in_progress = 0;
2412 }
2413 }
2414 #else
2415 static inline void irq_complete_move(unsigned int irq) {}
2416 #endif
2417 #ifdef CONFIG_INTR_REMAP
2418 static void ack_x2apic_level(unsigned int irq)
2419 {
2420 ack_x2APIC_irq();
2421 }
2422
2423 static void ack_x2apic_edge(unsigned int irq)
2424 {
2425 ack_x2APIC_irq();
2426 }
2427 #endif
2428
2429 static void ack_apic_edge(unsigned int irq)
2430 {
2431 irq_complete_move(irq);
2432 move_native_irq(irq);
2433 ack_APIC_irq();
2434 }
2435
2436 #ifdef CONFIG_X86_32
2437 atomic_t irq_mis_count;
2438 #endif
2439
2440 static void ack_apic_level(unsigned int irq)
2441 {
2442 #ifdef CONFIG_X86_32
2443 unsigned long v;
2444 int i;
2445 #endif
2446 int do_unmask_irq = 0;
2447
2448 irq_complete_move(irq);
2449 #ifdef CONFIG_GENERIC_PENDING_IRQ
2450 /* If we are moving the irq we need to mask it */
2451 if (unlikely(irq_to_desc(irq)->status & IRQ_MOVE_PENDING)) {
2452 do_unmask_irq = 1;
2453 mask_IO_APIC_irq(irq);
2454 }
2455 #endif
2456
2457 #ifdef CONFIG_X86_32
2458 /*
2459 * It appears there is an erratum which affects at least version 0x11
2460 * of I/O APIC (that's the 82093AA and cores integrated into various
2461 * chipsets). Under certain conditions a level-triggered interrupt is
2462 * erroneously delivered as edge-triggered one but the respective IRR
2463 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2464 * message but it will never arrive and further interrupts are blocked
2465 * from the source. The exact reason is so far unknown, but the
2466 * phenomenon was observed when two consecutive interrupt requests
2467 * from a given source get delivered to the same CPU and the source is
2468 * temporarily disabled in between.
2469 *
2470 * A workaround is to simulate an EOI message manually. We achieve it
2471 * by setting the trigger mode to edge and then to level when the edge
2472 * trigger mode gets detected in the TMR of a local APIC for a
2473 * level-triggered interrupt. We mask the source for the time of the
2474 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2475 * The idea is from Manfred Spraul. --macro
2476 */
2477 i = irq_cfg(irq)->vector;
2478
2479 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2480 #endif
2481
2482 /*
2483 * We must acknowledge the irq before we move it or the acknowledge will
2484 * not propagate properly.
2485 */
2486 ack_APIC_irq();
2487
2488 /* Now we can move and renable the irq */
2489 if (unlikely(do_unmask_irq)) {
2490 /* Only migrate the irq if the ack has been received.
2491 *
2492 * On rare occasions the broadcast level triggered ack gets
2493 * delayed going to ioapics, and if we reprogram the
2494 * vector while Remote IRR is still set the irq will never
2495 * fire again.
2496 *
2497 * To prevent this scenario we read the Remote IRR bit
2498 * of the ioapic. This has two effects.
2499 * - On any sane system the read of the ioapic will
2500 * flush writes (and acks) going to the ioapic from
2501 * this cpu.
2502 * - We get to see if the ACK has actually been delivered.
2503 *
2504 * Based on failed experiments of reprogramming the
2505 * ioapic entry from outside of irq context starting
2506 * with masking the ioapic entry and then polling until
2507 * Remote IRR was clear before reprogramming the
2508 * ioapic I don't trust the Remote IRR bit to be
2509 * completey accurate.
2510 *
2511 * However there appears to be no other way to plug
2512 * this race, so if the Remote IRR bit is not
2513 * accurate and is causing problems then it is a hardware bug
2514 * and you can go talk to the chipset vendor about it.
2515 */
2516 if (!io_apic_level_ack_pending(irq))
2517 move_masked_irq(irq);
2518 unmask_IO_APIC_irq(irq);
2519 }
2520
2521 #ifdef CONFIG_X86_32
2522 if (!(v & (1 << (i & 0x1f)))) {
2523 atomic_inc(&irq_mis_count);
2524 spin_lock(&ioapic_lock);
2525 __mask_and_edge_IO_APIC_irq(irq);
2526 __unmask_and_level_IO_APIC_irq(irq);
2527 spin_unlock(&ioapic_lock);
2528 }
2529 #endif
2530 }
2531
2532 static struct irq_chip ioapic_chip __read_mostly = {
2533 .name = "IO-APIC",
2534 .startup = startup_ioapic_irq,
2535 .mask = mask_IO_APIC_irq,
2536 .unmask = unmask_IO_APIC_irq,
2537 .ack = ack_apic_edge,
2538 .eoi = ack_apic_level,
2539 #ifdef CONFIG_SMP
2540 .set_affinity = set_ioapic_affinity_irq,
2541 #endif
2542 .retrigger = ioapic_retrigger_irq,
2543 };
2544
2545 #ifdef CONFIG_INTR_REMAP
2546 static struct irq_chip ir_ioapic_chip __read_mostly = {
2547 .name = "IR-IO-APIC",
2548 .startup = startup_ioapic_irq,
2549 .mask = mask_IO_APIC_irq,
2550 .unmask = unmask_IO_APIC_irq,
2551 .ack = ack_x2apic_edge,
2552 .eoi = ack_x2apic_level,
2553 #ifdef CONFIG_SMP
2554 .set_affinity = set_ir_ioapic_affinity_irq,
2555 #endif
2556 .retrigger = ioapic_retrigger_irq,
2557 };
2558 #endif
2559
2560 static inline void init_IO_APIC_traps(void)
2561 {
2562 int irq;
2563 struct irq_desc *desc;
2564 struct irq_cfg *cfg;
2565
2566 /*
2567 * NOTE! The local APIC isn't very good at handling
2568 * multiple interrupts at the same interrupt level.
2569 * As the interrupt level is determined by taking the
2570 * vector number and shifting that right by 4, we
2571 * want to spread these out a bit so that they don't
2572 * all fall in the same interrupt level.
2573 *
2574 * Also, we've got to be careful not to trash gate
2575 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2576 */
2577 for_each_irq_cfg(irq, cfg) {
2578 if (IO_APIC_IRQ(irq) && !cfg->vector) {
2579 /*
2580 * Hmm.. We don't have an entry for this,
2581 * so default to an old-fashioned 8259
2582 * interrupt if we can..
2583 */
2584 if (irq < 16)
2585 make_8259A_irq(irq);
2586 else {
2587 desc = irq_to_desc(irq);
2588 /* Strange. Oh, well.. */
2589 desc->chip = &no_irq_chip;
2590 }
2591 }
2592 }
2593 }
2594
2595 /*
2596 * The local APIC irq-chip implementation:
2597 */
2598
2599 static void mask_lapic_irq(unsigned int irq)
2600 {
2601 unsigned long v;
2602
2603 v = apic_read(APIC_LVT0);
2604 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
2605 }
2606
2607 static void unmask_lapic_irq(unsigned int irq)
2608 {
2609 unsigned long v;
2610
2611 v = apic_read(APIC_LVT0);
2612 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
2613 }
2614
2615 static void ack_lapic_irq (unsigned int irq)
2616 {
2617 ack_APIC_irq();
2618 }
2619
2620 static struct irq_chip lapic_chip __read_mostly = {
2621 .name = "local-APIC",
2622 .mask = mask_lapic_irq,
2623 .unmask = unmask_lapic_irq,
2624 .ack = ack_lapic_irq,
2625 };
2626
2627 static void lapic_register_intr(int irq)
2628 {
2629 struct irq_desc *desc;
2630
2631 desc = irq_to_desc(irq);
2632 desc->status &= ~IRQ_LEVEL;
2633 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2634 "edge");
2635 }
2636
2637 static void __init setup_nmi(void)
2638 {
2639 /*
2640 * Dirty trick to enable the NMI watchdog ...
2641 * We put the 8259A master into AEOI mode and
2642 * unmask on all local APICs LVT0 as NMI.
2643 *
2644 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2645 * is from Maciej W. Rozycki - so we do not have to EOI from
2646 * the NMI handler or the timer interrupt.
2647 */
2648 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2649
2650 enable_NMI_through_LVT0();
2651
2652 apic_printk(APIC_VERBOSE, " done.\n");
2653 }
2654
2655 /*
2656 * This looks a bit hackish but it's about the only one way of sending
2657 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2658 * not support the ExtINT mode, unfortunately. We need to send these
2659 * cycles as some i82489DX-based boards have glue logic that keeps the
2660 * 8259A interrupt line asserted until INTA. --macro
2661 */
2662 static inline void __init unlock_ExtINT_logic(void)
2663 {
2664 int apic, pin, i;
2665 struct IO_APIC_route_entry entry0, entry1;
2666 unsigned char save_control, save_freq_select;
2667
2668 pin = find_isa_irq_pin(8, mp_INT);
2669 if (pin == -1) {
2670 WARN_ON_ONCE(1);
2671 return;
2672 }
2673 apic = find_isa_irq_apic(8, mp_INT);
2674 if (apic == -1) {
2675 WARN_ON_ONCE(1);
2676 return;
2677 }
2678
2679 entry0 = ioapic_read_entry(apic, pin);
2680 clear_IO_APIC_pin(apic, pin);
2681
2682 memset(&entry1, 0, sizeof(entry1));
2683
2684 entry1.dest_mode = 0; /* physical delivery */
2685 entry1.mask = 0; /* unmask IRQ now */
2686 entry1.dest = hard_smp_processor_id();
2687 entry1.delivery_mode = dest_ExtINT;
2688 entry1.polarity = entry0.polarity;
2689 entry1.trigger = 0;
2690 entry1.vector = 0;
2691
2692 ioapic_write_entry(apic, pin, entry1);
2693
2694 save_control = CMOS_READ(RTC_CONTROL);
2695 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2696 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2697 RTC_FREQ_SELECT);
2698 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2699
2700 i = 100;
2701 while (i-- > 0) {
2702 mdelay(10);
2703 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2704 i -= 10;
2705 }
2706
2707 CMOS_WRITE(save_control, RTC_CONTROL);
2708 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2709 clear_IO_APIC_pin(apic, pin);
2710
2711 ioapic_write_entry(apic, pin, entry0);
2712 }
2713
2714 static int disable_timer_pin_1 __initdata;
2715 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2716 static int __init disable_timer_pin_setup(char *arg)
2717 {
2718 disable_timer_pin_1 = 1;
2719 return 0;
2720 }
2721 early_param("disable_timer_pin_1", disable_timer_pin_setup);
2722
2723 int timer_through_8259 __initdata;
2724
2725 /*
2726 * This code may look a bit paranoid, but it's supposed to cooperate with
2727 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2728 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2729 * fanatically on his truly buggy board.
2730 *
2731 * FIXME: really need to revamp this for all platforms.
2732 */
2733 static inline void __init check_timer(void)
2734 {
2735 struct irq_cfg *cfg = irq_cfg(0);
2736 int apic1, pin1, apic2, pin2;
2737 unsigned long flags;
2738 unsigned int ver;
2739 int no_pin1 = 0;
2740
2741 local_irq_save(flags);
2742
2743 ver = apic_read(APIC_LVR);
2744 ver = GET_APIC_VERSION(ver);
2745
2746 /*
2747 * get/set the timer IRQ vector:
2748 */
2749 disable_8259A_irq(0);
2750 assign_irq_vector(0, TARGET_CPUS);
2751
2752 /*
2753 * As IRQ0 is to be enabled in the 8259A, the virtual
2754 * wire has to be disabled in the local APIC. Also
2755 * timer interrupts need to be acknowledged manually in
2756 * the 8259A for the i82489DX when using the NMI
2757 * watchdog as that APIC treats NMIs as level-triggered.
2758 * The AEOI mode will finish them in the 8259A
2759 * automatically.
2760 */
2761 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2762 init_8259A(1);
2763 #ifdef CONFIG_X86_32
2764 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2765 #endif
2766
2767 pin1 = find_isa_irq_pin(0, mp_INT);
2768 apic1 = find_isa_irq_apic(0, mp_INT);
2769 pin2 = ioapic_i8259.pin;
2770 apic2 = ioapic_i8259.apic;
2771
2772 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2773 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2774 cfg->vector, apic1, pin1, apic2, pin2);
2775
2776 /*
2777 * Some BIOS writers are clueless and report the ExtINTA
2778 * I/O APIC input from the cascaded 8259A as the timer
2779 * interrupt input. So just in case, if only one pin
2780 * was found above, try it both directly and through the
2781 * 8259A.
2782 */
2783 if (pin1 == -1) {
2784 #ifdef CONFIG_INTR_REMAP
2785 if (intr_remapping_enabled)
2786 panic("BIOS bug: timer not connected to IO-APIC");
2787 #endif
2788 pin1 = pin2;
2789 apic1 = apic2;
2790 no_pin1 = 1;
2791 } else if (pin2 == -1) {
2792 pin2 = pin1;
2793 apic2 = apic1;
2794 }
2795
2796 if (pin1 != -1) {
2797 /*
2798 * Ok, does IRQ0 through the IOAPIC work?
2799 */
2800 if (no_pin1) {
2801 add_pin_to_irq(0, apic1, pin1);
2802 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
2803 }
2804 unmask_IO_APIC_irq(0);
2805 if (timer_irq_works()) {
2806 if (nmi_watchdog == NMI_IO_APIC) {
2807 setup_nmi();
2808 enable_8259A_irq(0);
2809 }
2810 if (disable_timer_pin_1 > 0)
2811 clear_IO_APIC_pin(0, pin1);
2812 goto out;
2813 }
2814 #ifdef CONFIG_INTR_REMAP
2815 if (intr_remapping_enabled)
2816 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2817 #endif
2818 clear_IO_APIC_pin(apic1, pin1);
2819 if (!no_pin1)
2820 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2821 "8254 timer not connected to IO-APIC\n");
2822
2823 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2824 "(IRQ0) through the 8259A ...\n");
2825 apic_printk(APIC_QUIET, KERN_INFO
2826 "..... (found apic %d pin %d) ...\n", apic2, pin2);
2827 /*
2828 * legacy devices should be connected to IO APIC #0
2829 */
2830 replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
2831 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
2832 unmask_IO_APIC_irq(0);
2833 enable_8259A_irq(0);
2834 if (timer_irq_works()) {
2835 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
2836 timer_through_8259 = 1;
2837 if (nmi_watchdog == NMI_IO_APIC) {
2838 disable_8259A_irq(0);
2839 setup_nmi();
2840 enable_8259A_irq(0);
2841 }
2842 goto out;
2843 }
2844 /*
2845 * Cleanup, just in case ...
2846 */
2847 disable_8259A_irq(0);
2848 clear_IO_APIC_pin(apic2, pin2);
2849 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
2850 }
2851
2852 if (nmi_watchdog == NMI_IO_APIC) {
2853 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2854 "through the IO-APIC - disabling NMI Watchdog!\n");
2855 nmi_watchdog = NMI_NONE;
2856 }
2857 #ifdef CONFIG_X86_32
2858 timer_ack = 0;
2859 #endif
2860
2861 apic_printk(APIC_QUIET, KERN_INFO
2862 "...trying to set up timer as Virtual Wire IRQ...\n");
2863
2864 lapic_register_intr(0);
2865 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
2866 enable_8259A_irq(0);
2867
2868 if (timer_irq_works()) {
2869 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2870 goto out;
2871 }
2872 disable_8259A_irq(0);
2873 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
2874 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
2875
2876 apic_printk(APIC_QUIET, KERN_INFO
2877 "...trying to set up timer as ExtINT IRQ...\n");
2878
2879 init_8259A(0);
2880 make_8259A_irq(0);
2881 apic_write(APIC_LVT0, APIC_DM_EXTINT);
2882
2883 unlock_ExtINT_logic();
2884
2885 if (timer_irq_works()) {
2886 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2887 goto out;
2888 }
2889 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
2890 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2891 "report. Then try booting with the 'noapic' option.\n");
2892 out:
2893 local_irq_restore(flags);
2894 }
2895
2896 /*
2897 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2898 * to devices. However there may be an I/O APIC pin available for
2899 * this interrupt regardless. The pin may be left unconnected, but
2900 * typically it will be reused as an ExtINT cascade interrupt for
2901 * the master 8259A. In the MPS case such a pin will normally be
2902 * reported as an ExtINT interrupt in the MP table. With ACPI
2903 * there is no provision for ExtINT interrupts, and in the absence
2904 * of an override it would be treated as an ordinary ISA I/O APIC
2905 * interrupt, that is edge-triggered and unmasked by default. We
2906 * used to do this, but it caused problems on some systems because
2907 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2908 * the same ExtINT cascade interrupt to drive the local APIC of the
2909 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2910 * the I/O APIC in all cases now. No actual device should request
2911 * it anyway. --macro
2912 */
2913 #define PIC_IRQS (1 << PIC_CASCADE_IR)
2914
2915 void __init setup_IO_APIC(void)
2916 {
2917
2918 #ifdef CONFIG_X86_32
2919 enable_IO_APIC();
2920 #else
2921 /*
2922 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2923 */
2924 #endif
2925
2926 io_apic_irqs = ~PIC_IRQS;
2927
2928 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
2929 /*
2930 * Set up IO-APIC IRQ routing.
2931 */
2932 #ifdef CONFIG_X86_32
2933 if (!acpi_ioapic)
2934 setup_ioapic_ids_from_mpc();
2935 #endif
2936 sync_Arb_IDs();
2937 setup_IO_APIC_irqs();
2938 init_IO_APIC_traps();
2939 check_timer();
2940 }
2941
2942 /*
2943 * Called after all the initialization is done. If we didnt find any
2944 * APIC bugs then we can allow the modify fast path
2945 */
2946
2947 static int __init io_apic_bug_finalize(void)
2948 {
2949 if (sis_apic_bug == -1)
2950 sis_apic_bug = 0;
2951 return 0;
2952 }
2953
2954 late_initcall(io_apic_bug_finalize);
2955
2956 struct sysfs_ioapic_data {
2957 struct sys_device dev;
2958 struct IO_APIC_route_entry entry[0];
2959 };
2960 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2961
2962 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
2963 {
2964 struct IO_APIC_route_entry *entry;
2965 struct sysfs_ioapic_data *data;
2966 int i;
2967
2968 data = container_of(dev, struct sysfs_ioapic_data, dev);
2969 entry = data->entry;
2970 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
2971 *entry = ioapic_read_entry(dev->id, i);
2972
2973 return 0;
2974 }
2975
2976 static int ioapic_resume(struct sys_device *dev)
2977 {
2978 struct IO_APIC_route_entry *entry;
2979 struct sysfs_ioapic_data *data;
2980 unsigned long flags;
2981 union IO_APIC_reg_00 reg_00;
2982 int i;
2983
2984 data = container_of(dev, struct sysfs_ioapic_data, dev);
2985 entry = data->entry;
2986
2987 spin_lock_irqsave(&ioapic_lock, flags);
2988 reg_00.raw = io_apic_read(dev->id, 0);
2989 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
2990 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
2991 io_apic_write(dev->id, 0, reg_00.raw);
2992 }
2993 spin_unlock_irqrestore(&ioapic_lock, flags);
2994 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
2995 ioapic_write_entry(dev->id, i, entry[i]);
2996
2997 return 0;
2998 }
2999
3000 static struct sysdev_class ioapic_sysdev_class = {
3001 .name = "ioapic",
3002 .suspend = ioapic_suspend,
3003 .resume = ioapic_resume,
3004 };
3005
3006 static int __init ioapic_init_sysfs(void)
3007 {
3008 struct sys_device * dev;
3009 int i, size, error;
3010
3011 error = sysdev_class_register(&ioapic_sysdev_class);
3012 if (error)
3013 return error;
3014
3015 for (i = 0; i < nr_ioapics; i++ ) {
3016 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
3017 * sizeof(struct IO_APIC_route_entry);
3018 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
3019 if (!mp_ioapic_data[i]) {
3020 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3021 continue;
3022 }
3023 dev = &mp_ioapic_data[i]->dev;
3024 dev->id = i;
3025 dev->cls = &ioapic_sysdev_class;
3026 error = sysdev_register(dev);
3027 if (error) {
3028 kfree(mp_ioapic_data[i]);
3029 mp_ioapic_data[i] = NULL;
3030 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3031 continue;
3032 }
3033 }
3034
3035 return 0;
3036 }
3037
3038 device_initcall(ioapic_init_sysfs);
3039
3040 /*
3041 * Dynamic irq allocate and deallocation
3042 */
3043 unsigned int create_irq_nr(unsigned int irq_want)
3044 {
3045 /* Allocate an unused irq */
3046 unsigned int irq;
3047 unsigned int new;
3048 unsigned long flags;
3049 struct irq_cfg *cfg_new;
3050
3051 #ifndef CONFIG_HAVE_SPARSE_IRQ
3052 irq_want = nr_irqs - 1;
3053 #endif
3054
3055 irq = 0;
3056 spin_lock_irqsave(&vector_lock, flags);
3057 for (new = irq_want; new > 0; new--) {
3058 if (platform_legacy_irq(new))
3059 continue;
3060 cfg_new = irq_cfg(new);
3061 if (cfg_new && cfg_new->vector != 0)
3062 continue;
3063 /* check if need to create one */
3064 if (!cfg_new)
3065 cfg_new = irq_cfg_alloc(new);
3066 if (__assign_irq_vector(new, TARGET_CPUS) == 0)
3067 irq = new;
3068 break;
3069 }
3070 spin_unlock_irqrestore(&vector_lock, flags);
3071
3072 if (irq > 0) {
3073 dynamic_irq_init(irq);
3074 }
3075 return irq;
3076 }
3077
3078 int create_irq(void)
3079 {
3080 int irq;
3081
3082 irq = create_irq_nr(nr_irqs - 1);
3083
3084 if (irq == 0)
3085 irq = -1;
3086
3087 return irq;
3088 }
3089
3090 void destroy_irq(unsigned int irq)
3091 {
3092 unsigned long flags;
3093
3094 dynamic_irq_cleanup(irq);
3095
3096 #ifdef CONFIG_INTR_REMAP
3097 free_irte(irq);
3098 #endif
3099 spin_lock_irqsave(&vector_lock, flags);
3100 __clear_irq_vector(irq);
3101 spin_unlock_irqrestore(&vector_lock, flags);
3102 }
3103
3104 /*
3105 * MSI message composition
3106 */
3107 #ifdef CONFIG_PCI_MSI
3108 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
3109 {
3110 struct irq_cfg *cfg;
3111 int err;
3112 unsigned dest;
3113 cpumask_t tmp;
3114
3115 tmp = TARGET_CPUS;
3116 err = assign_irq_vector(irq, tmp);
3117 if (err)
3118 return err;
3119
3120 cfg = irq_cfg(irq);
3121 cpus_and(tmp, cfg->domain, tmp);
3122 dest = cpu_mask_to_apicid(tmp);
3123
3124 #ifdef CONFIG_INTR_REMAP
3125 if (irq_remapped(irq)) {
3126 struct irte irte;
3127 int ir_index;
3128 u16 sub_handle;
3129
3130 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3131 BUG_ON(ir_index == -1);
3132
3133 memset (&irte, 0, sizeof(irte));
3134
3135 irte.present = 1;
3136 irte.dst_mode = INT_DEST_MODE;
3137 irte.trigger_mode = 0; /* edge */
3138 irte.dlvry_mode = INT_DELIVERY_MODE;
3139 irte.vector = cfg->vector;
3140 irte.dest_id = IRTE_DEST(dest);
3141
3142 modify_irte(irq, &irte);
3143
3144 msg->address_hi = MSI_ADDR_BASE_HI;
3145 msg->data = sub_handle;
3146 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3147 MSI_ADDR_IR_SHV |
3148 MSI_ADDR_IR_INDEX1(ir_index) |
3149 MSI_ADDR_IR_INDEX2(ir_index);
3150 } else
3151 #endif
3152 {
3153 msg->address_hi = MSI_ADDR_BASE_HI;
3154 msg->address_lo =
3155 MSI_ADDR_BASE_LO |
3156 ((INT_DEST_MODE == 0) ?
3157 MSI_ADDR_DEST_MODE_PHYSICAL:
3158 MSI_ADDR_DEST_MODE_LOGICAL) |
3159 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3160 MSI_ADDR_REDIRECTION_CPU:
3161 MSI_ADDR_REDIRECTION_LOWPRI) |
3162 MSI_ADDR_DEST_ID(dest);
3163
3164 msg->data =
3165 MSI_DATA_TRIGGER_EDGE |
3166 MSI_DATA_LEVEL_ASSERT |
3167 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3168 MSI_DATA_DELIVERY_FIXED:
3169 MSI_DATA_DELIVERY_LOWPRI) |
3170 MSI_DATA_VECTOR(cfg->vector);
3171 }
3172 return err;
3173 }
3174
3175 #ifdef CONFIG_SMP
3176 static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
3177 {
3178 struct irq_cfg *cfg;
3179 struct msi_msg msg;
3180 unsigned int dest;
3181 cpumask_t tmp;
3182 struct irq_desc *desc;
3183
3184 cpus_and(tmp, mask, cpu_online_map);
3185 if (cpus_empty(tmp))
3186 return;
3187
3188 if (assign_irq_vector(irq, mask))
3189 return;
3190
3191 cfg = irq_cfg(irq);
3192 cpus_and(tmp, cfg->domain, mask);
3193 dest = cpu_mask_to_apicid(tmp);
3194
3195 read_msi_msg(irq, &msg);
3196
3197 msg.data &= ~MSI_DATA_VECTOR_MASK;
3198 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3199 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3200 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3201
3202 write_msi_msg(irq, &msg);
3203 desc = irq_to_desc(irq);
3204 desc->affinity = mask;
3205 }
3206
3207 #ifdef CONFIG_INTR_REMAP
3208 /*
3209 * Migrate the MSI irq to another cpumask. This migration is
3210 * done in the process context using interrupt-remapping hardware.
3211 */
3212 static void ir_set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
3213 {
3214 struct irq_cfg *cfg;
3215 unsigned int dest;
3216 cpumask_t tmp, cleanup_mask;
3217 struct irte irte;
3218 struct irq_desc *desc;
3219
3220 cpus_and(tmp, mask, cpu_online_map);
3221 if (cpus_empty(tmp))
3222 return;
3223
3224 if (get_irte(irq, &irte))
3225 return;
3226
3227 if (assign_irq_vector(irq, mask))
3228 return;
3229
3230 cfg = irq_cfg(irq);
3231 cpus_and(tmp, cfg->domain, mask);
3232 dest = cpu_mask_to_apicid(tmp);
3233
3234 irte.vector = cfg->vector;
3235 irte.dest_id = IRTE_DEST(dest);
3236
3237 /*
3238 * atomically update the IRTE with the new destination and vector.
3239 */
3240 modify_irte(irq, &irte);
3241
3242 /*
3243 * After this point, all the interrupts will start arriving
3244 * at the new destination. So, time to cleanup the previous
3245 * vector allocation.
3246 */
3247 if (cfg->move_in_progress) {
3248 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
3249 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
3250 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
3251 cfg->move_in_progress = 0;
3252 }
3253
3254 desc = irq_to_desc(irq);
3255 desc->affinity = mask;
3256 }
3257 #endif
3258 #endif /* CONFIG_SMP */
3259
3260 /*
3261 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3262 * which implement the MSI or MSI-X Capability Structure.
3263 */
3264 static struct irq_chip msi_chip = {
3265 .name = "PCI-MSI",
3266 .unmask = unmask_msi_irq,
3267 .mask = mask_msi_irq,
3268 .ack = ack_apic_edge,
3269 #ifdef CONFIG_SMP
3270 .set_affinity = set_msi_irq_affinity,
3271 #endif
3272 .retrigger = ioapic_retrigger_irq,
3273 };
3274
3275 #ifdef CONFIG_INTR_REMAP
3276 static struct irq_chip msi_ir_chip = {
3277 .name = "IR-PCI-MSI",
3278 .unmask = unmask_msi_irq,
3279 .mask = mask_msi_irq,
3280 .ack = ack_x2apic_edge,
3281 #ifdef CONFIG_SMP
3282 .set_affinity = ir_set_msi_irq_affinity,
3283 #endif
3284 .retrigger = ioapic_retrigger_irq,
3285 };
3286
3287 /*
3288 * Map the PCI dev to the corresponding remapping hardware unit
3289 * and allocate 'nvec' consecutive interrupt-remapping table entries
3290 * in it.
3291 */
3292 static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3293 {
3294 struct intel_iommu *iommu;
3295 int index;
3296
3297 iommu = map_dev_to_ir(dev);
3298 if (!iommu) {
3299 printk(KERN_ERR
3300 "Unable to map PCI %s to iommu\n", pci_name(dev));
3301 return -ENOENT;
3302 }
3303
3304 index = alloc_irte(iommu, irq, nvec);
3305 if (index < 0) {
3306 printk(KERN_ERR
3307 "Unable to allocate %d IRTE for PCI %s\n", nvec,
3308 pci_name(dev));
3309 return -ENOSPC;
3310 }
3311 return index;
3312 }
3313 #endif
3314
3315 static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc, int irq)
3316 {
3317 int ret;
3318 struct msi_msg msg;
3319
3320 ret = msi_compose_msg(dev, irq, &msg);
3321 if (ret < 0)
3322 return ret;
3323
3324 set_irq_msi(irq, desc);
3325 write_msi_msg(irq, &msg);
3326
3327 #ifdef CONFIG_INTR_REMAP
3328 if (irq_remapped(irq)) {
3329 struct irq_desc *desc = irq_to_desc(irq);
3330 /*
3331 * irq migration in process context
3332 */
3333 desc->status |= IRQ_MOVE_PCNTXT;
3334 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3335 } else
3336 #endif
3337 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
3338
3339 return 0;
3340 }
3341
3342 static unsigned int build_irq_for_pci_dev(struct pci_dev *dev)
3343 {
3344 unsigned int irq;
3345
3346 irq = dev->bus->number;
3347 irq <<= 8;
3348 irq |= dev->devfn;
3349 irq <<= 12;
3350
3351 return irq;
3352 }
3353
3354 int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
3355 {
3356 unsigned int irq;
3357 int ret;
3358 unsigned int irq_want;
3359
3360 irq_want = build_irq_for_pci_dev(dev) + 0x100;
3361
3362 irq = create_irq_nr(irq_want);
3363 if (irq == 0)
3364 return -1;
3365
3366 #ifdef CONFIG_INTR_REMAP
3367 if (!intr_remapping_enabled)
3368 goto no_ir;
3369
3370 ret = msi_alloc_irte(dev, irq, 1);
3371 if (ret < 0)
3372 goto error;
3373 no_ir:
3374 #endif
3375 ret = setup_msi_irq(dev, desc, irq);
3376 if (ret < 0) {
3377 destroy_irq(irq);
3378 return ret;
3379 }
3380 return 0;
3381
3382 #ifdef CONFIG_INTR_REMAP
3383 error:
3384 destroy_irq(irq);
3385 return ret;
3386 #endif
3387 }
3388
3389 int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3390 {
3391 unsigned int irq;
3392 int ret, sub_handle;
3393 struct msi_desc *desc;
3394 unsigned int irq_want;
3395
3396 #ifdef CONFIG_INTR_REMAP
3397 struct intel_iommu *iommu = 0;
3398 int index = 0;
3399 #endif
3400
3401 irq_want = build_irq_for_pci_dev(dev) + 0x100;
3402 sub_handle = 0;
3403 list_for_each_entry(desc, &dev->msi_list, list) {
3404 irq = create_irq_nr(irq_want--);
3405 if (irq == 0)
3406 return -1;
3407 #ifdef CONFIG_INTR_REMAP
3408 if (!intr_remapping_enabled)
3409 goto no_ir;
3410
3411 if (!sub_handle) {
3412 /*
3413 * allocate the consecutive block of IRTE's
3414 * for 'nvec'
3415 */
3416 index = msi_alloc_irte(dev, irq, nvec);
3417 if (index < 0) {
3418 ret = index;
3419 goto error;
3420 }
3421 } else {
3422 iommu = map_dev_to_ir(dev);
3423 if (!iommu) {
3424 ret = -ENOENT;
3425 goto error;
3426 }
3427 /*
3428 * setup the mapping between the irq and the IRTE
3429 * base index, the sub_handle pointing to the
3430 * appropriate interrupt remap table entry.
3431 */
3432 set_irte_irq(irq, iommu, index, sub_handle);
3433 }
3434 no_ir:
3435 #endif
3436 ret = setup_msi_irq(dev, desc, irq);
3437 if (ret < 0)
3438 goto error;
3439 sub_handle++;
3440 }
3441 return 0;
3442
3443 error:
3444 destroy_irq(irq);
3445 return ret;
3446 }
3447
3448 void arch_teardown_msi_irq(unsigned int irq)
3449 {
3450 destroy_irq(irq);
3451 }
3452
3453 #ifdef CONFIG_DMAR
3454 #ifdef CONFIG_SMP
3455 static void dmar_msi_set_affinity(unsigned int irq, cpumask_t mask)
3456 {
3457 struct irq_cfg *cfg;
3458 struct msi_msg msg;
3459 unsigned int dest;
3460 cpumask_t tmp;
3461 struct irq_desc *desc;
3462
3463 cpus_and(tmp, mask, cpu_online_map);
3464 if (cpus_empty(tmp))
3465 return;
3466
3467 if (assign_irq_vector(irq, mask))
3468 return;
3469
3470 cfg = irq_cfg(irq);
3471 cpus_and(tmp, cfg->domain, mask);
3472 dest = cpu_mask_to_apicid(tmp);
3473
3474 dmar_msi_read(irq, &msg);
3475
3476 msg.data &= ~MSI_DATA_VECTOR_MASK;
3477 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3478 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3479 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3480
3481 dmar_msi_write(irq, &msg);
3482 desc = irq_to_desc(irq);
3483 desc->affinity = mask;
3484 }
3485 #endif /* CONFIG_SMP */
3486
3487 struct irq_chip dmar_msi_type = {
3488 .name = "DMAR_MSI",
3489 .unmask = dmar_msi_unmask,
3490 .mask = dmar_msi_mask,
3491 .ack = ack_apic_edge,
3492 #ifdef CONFIG_SMP
3493 .set_affinity = dmar_msi_set_affinity,
3494 #endif
3495 .retrigger = ioapic_retrigger_irq,
3496 };
3497
3498 int arch_setup_dmar_msi(unsigned int irq)
3499 {
3500 int ret;
3501 struct msi_msg msg;
3502
3503 ret = msi_compose_msg(NULL, irq, &msg);
3504 if (ret < 0)
3505 return ret;
3506 dmar_msi_write(irq, &msg);
3507 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3508 "edge");
3509 return 0;
3510 }
3511 #endif
3512
3513 #endif /* CONFIG_PCI_MSI */
3514 /*
3515 * Hypertransport interrupt support
3516 */
3517 #ifdef CONFIG_HT_IRQ
3518
3519 #ifdef CONFIG_SMP
3520
3521 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
3522 {
3523 struct ht_irq_msg msg;
3524 fetch_ht_irq_msg(irq, &msg);
3525
3526 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
3527 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
3528
3529 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
3530 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
3531
3532 write_ht_irq_msg(irq, &msg);
3533 }
3534
3535 static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
3536 {
3537 struct irq_cfg *cfg;
3538 unsigned int dest;
3539 cpumask_t tmp;
3540 struct irq_desc *desc;
3541
3542 cpus_and(tmp, mask, cpu_online_map);
3543 if (cpus_empty(tmp))
3544 return;
3545
3546 if (assign_irq_vector(irq, mask))
3547 return;
3548
3549 cfg = irq_cfg(irq);
3550 cpus_and(tmp, cfg->domain, mask);
3551 dest = cpu_mask_to_apicid(tmp);
3552
3553 target_ht_irq(irq, dest, cfg->vector);
3554 desc = irq_to_desc(irq);
3555 desc->affinity = mask;
3556 }
3557 #endif
3558
3559 static struct irq_chip ht_irq_chip = {
3560 .name = "PCI-HT",
3561 .mask = mask_ht_irq,
3562 .unmask = unmask_ht_irq,
3563 .ack = ack_apic_edge,
3564 #ifdef CONFIG_SMP
3565 .set_affinity = set_ht_irq_affinity,
3566 #endif
3567 .retrigger = ioapic_retrigger_irq,
3568 };
3569
3570 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3571 {
3572 struct irq_cfg *cfg;
3573 int err;
3574 cpumask_t tmp;
3575
3576 tmp = TARGET_CPUS;
3577 err = assign_irq_vector(irq, tmp);
3578 if (!err) {
3579 struct ht_irq_msg msg;
3580 unsigned dest;
3581
3582 cfg = irq_cfg(irq);
3583 cpus_and(tmp, cfg->domain, tmp);
3584 dest = cpu_mask_to_apicid(tmp);
3585
3586 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
3587
3588 msg.address_lo =
3589 HT_IRQ_LOW_BASE |
3590 HT_IRQ_LOW_DEST_ID(dest) |
3591 HT_IRQ_LOW_VECTOR(cfg->vector) |
3592 ((INT_DEST_MODE == 0) ?
3593 HT_IRQ_LOW_DM_PHYSICAL :
3594 HT_IRQ_LOW_DM_LOGICAL) |
3595 HT_IRQ_LOW_RQEOI_EDGE |
3596 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3597 HT_IRQ_LOW_MT_FIXED :
3598 HT_IRQ_LOW_MT_ARBITRATED) |
3599 HT_IRQ_LOW_IRQ_MASKED;
3600
3601 write_ht_irq_msg(irq, &msg);
3602
3603 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3604 handle_edge_irq, "edge");
3605 }
3606 return err;
3607 }
3608 #endif /* CONFIG_HT_IRQ */
3609
3610 int __init io_apic_get_redir_entries (int ioapic)
3611 {
3612 union IO_APIC_reg_01 reg_01;
3613 unsigned long flags;
3614
3615 spin_lock_irqsave(&ioapic_lock, flags);
3616 reg_01.raw = io_apic_read(ioapic, 1);
3617 spin_unlock_irqrestore(&ioapic_lock, flags);
3618
3619 return reg_01.bits.entries;
3620 }
3621
3622 int __init probe_nr_irqs(void)
3623 {
3624 int idx;
3625 int nr = 0;
3626
3627 for (idx = 0; idx < nr_ioapics; idx++)
3628 nr += io_apic_get_redir_entries(idx);
3629
3630 /* double it for hotplug and msi and nmi */
3631 nr <<= 1;
3632
3633 /* something wrong ? */
3634 if (nr < 32)
3635 nr = 32;
3636
3637 return nr;
3638 }
3639
3640 /* --------------------------------------------------------------------------
3641 ACPI-based IOAPIC Configuration
3642 -------------------------------------------------------------------------- */
3643
3644 #ifdef CONFIG_ACPI
3645
3646 #ifdef CONFIG_X86_32
3647 int __init io_apic_get_unique_id(int ioapic, int apic_id)
3648 {
3649 union IO_APIC_reg_00 reg_00;
3650 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3651 physid_mask_t tmp;
3652 unsigned long flags;
3653 int i = 0;
3654
3655 /*
3656 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3657 * buses (one for LAPICs, one for IOAPICs), where predecessors only
3658 * supports up to 16 on one shared APIC bus.
3659 *
3660 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3661 * advantage of new APIC bus architecture.
3662 */
3663
3664 if (physids_empty(apic_id_map))
3665 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
3666
3667 spin_lock_irqsave(&ioapic_lock, flags);
3668 reg_00.raw = io_apic_read(ioapic, 0);
3669 spin_unlock_irqrestore(&ioapic_lock, flags);
3670
3671 if (apic_id >= get_physical_broadcast()) {
3672 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3673 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3674 apic_id = reg_00.bits.ID;
3675 }
3676
3677 /*
3678 * Every APIC in a system must have a unique ID or we get lots of nice
3679 * 'stuck on smp_invalidate_needed IPI wait' messages.
3680 */
3681 if (check_apicid_used(apic_id_map, apic_id)) {
3682
3683 for (i = 0; i < get_physical_broadcast(); i++) {
3684 if (!check_apicid_used(apic_id_map, i))
3685 break;
3686 }
3687
3688 if (i == get_physical_broadcast())
3689 panic("Max apic_id exceeded!\n");
3690
3691 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3692 "trying %d\n", ioapic, apic_id, i);
3693
3694 apic_id = i;
3695 }
3696
3697 tmp = apicid_to_cpu_present(apic_id);
3698 physids_or(apic_id_map, apic_id_map, tmp);
3699
3700 if (reg_00.bits.ID != apic_id) {
3701 reg_00.bits.ID = apic_id;
3702
3703 spin_lock_irqsave(&ioapic_lock, flags);
3704 io_apic_write(ioapic, 0, reg_00.raw);
3705 reg_00.raw = io_apic_read(ioapic, 0);
3706 spin_unlock_irqrestore(&ioapic_lock, flags);
3707
3708 /* Sanity check */
3709 if (reg_00.bits.ID != apic_id) {
3710 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3711 return -1;
3712 }
3713 }
3714
3715 apic_printk(APIC_VERBOSE, KERN_INFO
3716 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3717
3718 return apic_id;
3719 }
3720
3721 int __init io_apic_get_version(int ioapic)
3722 {
3723 union IO_APIC_reg_01 reg_01;
3724 unsigned long flags;
3725
3726 spin_lock_irqsave(&ioapic_lock, flags);
3727 reg_01.raw = io_apic_read(ioapic, 1);
3728 spin_unlock_irqrestore(&ioapic_lock, flags);
3729
3730 return reg_01.bits.version;
3731 }
3732 #endif
3733
3734 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
3735 {
3736 if (!IO_APIC_IRQ(irq)) {
3737 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3738 ioapic);
3739 return -EINVAL;
3740 }
3741
3742 /*
3743 * IRQs < 16 are already in the irq_2_pin[] map
3744 */
3745 if (irq >= 16)
3746 add_pin_to_irq(irq, ioapic, pin);
3747
3748 setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
3749
3750 return 0;
3751 }
3752
3753
3754 int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
3755 {
3756 int i;
3757
3758 if (skip_ioapic_setup)
3759 return -1;
3760
3761 for (i = 0; i < mp_irq_entries; i++)
3762 if (mp_irqs[i].mp_irqtype == mp_INT &&
3763 mp_irqs[i].mp_srcbusirq == bus_irq)
3764 break;
3765 if (i >= mp_irq_entries)
3766 return -1;
3767
3768 *trigger = irq_trigger(i);
3769 *polarity = irq_polarity(i);
3770 return 0;
3771 }
3772
3773 #endif /* CONFIG_ACPI */
3774
3775 /*
3776 * This function currently is only a helper for the i386 smp boot process where
3777 * we need to reprogram the ioredtbls to cater for the cpus which have come online
3778 * so mask in all cases should simply be TARGET_CPUS
3779 */
3780 #ifdef CONFIG_SMP
3781 void __init setup_ioapic_dest(void)
3782 {
3783 int pin, ioapic, irq, irq_entry;
3784 struct irq_cfg *cfg;
3785
3786 if (skip_ioapic_setup == 1)
3787 return;
3788
3789 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
3790 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
3791 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3792 if (irq_entry == -1)
3793 continue;
3794 irq = pin_2_irq(irq_entry, ioapic, pin);
3795
3796 /* setup_IO_APIC_irqs could fail to get vector for some device
3797 * when you have too many devices, because at that time only boot
3798 * cpu is online.
3799 */
3800 cfg = irq_cfg(irq);
3801 if (!cfg->vector)
3802 setup_IO_APIC_irq(ioapic, pin, irq,
3803 irq_trigger(irq_entry),
3804 irq_polarity(irq_entry));
3805 #ifdef CONFIG_INTR_REMAP
3806 else if (intr_remapping_enabled)
3807 set_ir_ioapic_affinity_irq(irq, TARGET_CPUS);
3808 #endif
3809 else
3810 set_ioapic_affinity_irq(irq, TARGET_CPUS);
3811 }
3812
3813 }
3814 }
3815 #endif
3816
3817 #define IOAPIC_RESOURCE_NAME_SIZE 11
3818
3819 static struct resource *ioapic_resources;
3820
3821 static struct resource * __init ioapic_setup_resources(void)
3822 {
3823 unsigned long n;
3824 struct resource *res;
3825 char *mem;
3826 int i;
3827
3828 if (nr_ioapics <= 0)
3829 return NULL;
3830
3831 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3832 n *= nr_ioapics;
3833
3834 mem = alloc_bootmem(n);
3835 res = (void *)mem;
3836
3837 if (mem != NULL) {
3838 mem += sizeof(struct resource) * nr_ioapics;
3839
3840 for (i = 0; i < nr_ioapics; i++) {
3841 res[i].name = mem;
3842 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
3843 sprintf(mem, "IOAPIC %u", i);
3844 mem += IOAPIC_RESOURCE_NAME_SIZE;
3845 }
3846 }
3847
3848 ioapic_resources = res;
3849
3850 return res;
3851 }
3852
3853 void __init ioapic_init_mappings(void)
3854 {
3855 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
3856 int i;
3857 struct resource *ioapic_res;
3858
3859 ioapic_res = ioapic_setup_resources();
3860 for (i = 0; i < nr_ioapics; i++) {
3861 if (smp_found_config) {
3862 ioapic_phys = mp_ioapics[i].mp_apicaddr;
3863 #ifdef CONFIG_X86_32
3864 if (!ioapic_phys) {
3865 printk(KERN_ERR
3866 "WARNING: bogus zero IO-APIC "
3867 "address found in MPTABLE, "
3868 "disabling IO/APIC support!\n");
3869 smp_found_config = 0;
3870 skip_ioapic_setup = 1;
3871 goto fake_ioapic_page;
3872 }
3873 #endif
3874 } else {
3875 #ifdef CONFIG_X86_32
3876 fake_ioapic_page:
3877 #endif
3878 ioapic_phys = (unsigned long)
3879 alloc_bootmem_pages(PAGE_SIZE);
3880 ioapic_phys = __pa(ioapic_phys);
3881 }
3882 set_fixmap_nocache(idx, ioapic_phys);
3883 apic_printk(APIC_VERBOSE,
3884 "mapped IOAPIC to %08lx (%08lx)\n",
3885 __fix_to_virt(idx), ioapic_phys);
3886 idx++;
3887
3888 if (ioapic_res != NULL) {
3889 ioapic_res->start = ioapic_phys;
3890 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
3891 ioapic_res++;
3892 }
3893 }
3894 }
3895
3896 static int __init ioapic_insert_resources(void)
3897 {
3898 int i;
3899 struct resource *r = ioapic_resources;
3900
3901 if (!r) {
3902 printk(KERN_ERR
3903 "IO APIC resources could be not be allocated.\n");
3904 return -1;
3905 }
3906
3907 for (i = 0; i < nr_ioapics; i++) {
3908 insert_resource(&iomem_resource, r);
3909 r++;
3910 }
3911
3912 return 0;
3913 }
3914
3915 /* Insert the IO APIC resources after PCI initialization has occured to handle
3916 * IO APICS that are mapped in on a BAR in PCI space. */
3917 late_initcall(ioapic_insert_resources);
This page took 0.124883 seconds and 4 git commands to generate.