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