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