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