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