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