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