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