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