]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/kernel/apic/io_apic.c
iommu/vt-d: Convert MSI remapping setup to remap_ops
[karo-tx-linux.git] / arch / x86 / kernel / apic / io_apic.c
1 /*
2  *      Intel IO-APIC support for multi-Pentium hosts.
3  *
4  *      Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
5  *
6  *      Many thanks to Stig Venaas for trying out countless experimental
7  *      patches and reporting/debugging problems patiently!
8  *
9  *      (c) 1999, Multiple IO-APIC support, developed by
10  *      Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11  *      Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12  *      further tested and cleaned up by Zach Brown <zab@redhat.com>
13  *      and Ingo Molnar <mingo@redhat.com>
14  *
15  *      Fixes
16  *      Maciej W. Rozycki       :       Bits for genuine 82489DX APICs;
17  *                                      thanks to Eric Gilmore
18  *                                      and Rolf G. Tews
19  *                                      for testing these extensively
20  *      Paul Diefenbaugh        :       Added full ACPI support
21  */
22
23 #include <linux/mm.h>
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/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 static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
1366                                unsigned int destination, int vector,
1367                                struct io_apic_irq_attr *attr)
1368 {
1369         if (intr_remapping_enabled)
1370                 return intr_setup_ioapic_entry(irq, entry, destination,
1371                                                vector, attr);
1372
1373         memset(entry, 0, sizeof(*entry));
1374
1375         entry->delivery_mode = apic->irq_delivery_mode;
1376         entry->dest_mode     = apic->irq_dest_mode;
1377         entry->dest          = destination;
1378         entry->vector        = vector;
1379         entry->mask          = 0;                       /* enable IRQ */
1380         entry->trigger       = attr->trigger;
1381         entry->polarity      = attr->polarity;
1382
1383         /*
1384          * Mask level triggered irqs.
1385          * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1386          */
1387         if (attr->trigger)
1388                 entry->mask = 1;
1389
1390         return 0;
1391 }
1392
1393 static void setup_ioapic_irq(unsigned int irq, struct irq_cfg *cfg,
1394                                 struct io_apic_irq_attr *attr)
1395 {
1396         struct IO_APIC_route_entry entry;
1397         unsigned int dest;
1398
1399         if (!IO_APIC_IRQ(irq))
1400                 return;
1401         /*
1402          * For legacy irqs, cfg->domain starts with cpu 0 for legacy
1403          * controllers like 8259. Now that IO-APIC can handle this irq, update
1404          * the cfg->domain.
1405          */
1406         if (irq < legacy_pic->nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain))
1407                 apic->vector_allocation_domain(0, cfg->domain);
1408
1409         if (assign_irq_vector(irq, cfg, apic->target_cpus()))
1410                 return;
1411
1412         dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
1413
1414         apic_printk(APIC_VERBOSE,KERN_DEBUG
1415                     "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1416                     "IRQ %d Mode:%i Active:%i Dest:%d)\n",
1417                     attr->ioapic, mpc_ioapic_id(attr->ioapic), attr->ioapic_pin,
1418                     cfg->vector, irq, attr->trigger, attr->polarity, dest);
1419
1420         if (setup_ioapic_entry(irq, &entry, dest, cfg->vector, attr)) {
1421                 pr_warn("Failed to setup ioapic entry for ioapic  %d, pin %d\n",
1422                         mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
1423                 __clear_irq_vector(irq, cfg);
1424
1425                 return;
1426         }
1427
1428         ioapic_register_intr(irq, cfg, attr->trigger);
1429         if (irq < legacy_pic->nr_legacy_irqs)
1430                 legacy_pic->mask(irq);
1431
1432         ioapic_write_entry(attr->ioapic, attr->ioapic_pin, entry);
1433 }
1434
1435 static bool __init io_apic_pin_not_connected(int idx, int ioapic_idx, int pin)
1436 {
1437         if (idx != -1)
1438                 return false;
1439
1440         apic_printk(APIC_VERBOSE, KERN_DEBUG " apic %d pin %d not connected\n",
1441                     mpc_ioapic_id(ioapic_idx), pin);
1442         return true;
1443 }
1444
1445 static void __init __io_apic_setup_irqs(unsigned int ioapic_idx)
1446 {
1447         int idx, node = cpu_to_node(0);
1448         struct io_apic_irq_attr attr;
1449         unsigned int pin, irq;
1450
1451         for (pin = 0; pin < ioapics[ioapic_idx].nr_registers; pin++) {
1452                 idx = find_irq_entry(ioapic_idx, pin, mp_INT);
1453                 if (io_apic_pin_not_connected(idx, ioapic_idx, pin))
1454                         continue;
1455
1456                 irq = pin_2_irq(idx, ioapic_idx, pin);
1457
1458                 if ((ioapic_idx > 0) && (irq > 16))
1459                         continue;
1460
1461                 /*
1462                  * Skip the timer IRQ if there's a quirk handler
1463                  * installed and if it returns 1:
1464                  */
1465                 if (apic->multi_timer_check &&
1466                     apic->multi_timer_check(ioapic_idx, irq))
1467                         continue;
1468
1469                 set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
1470                                      irq_polarity(idx));
1471
1472                 io_apic_setup_irq_pin(irq, node, &attr);
1473         }
1474 }
1475
1476 static void __init setup_IO_APIC_irqs(void)
1477 {
1478         unsigned int ioapic_idx;
1479
1480         apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1481
1482         for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1483                 __io_apic_setup_irqs(ioapic_idx);
1484 }
1485
1486 /*
1487  * for the gsit that is not in first ioapic
1488  * but could not use acpi_register_gsi()
1489  * like some special sci in IBM x3330
1490  */
1491 void setup_IO_APIC_irq_extra(u32 gsi)
1492 {
1493         int ioapic_idx = 0, pin, idx, irq, node = cpu_to_node(0);
1494         struct io_apic_irq_attr attr;
1495
1496         /*
1497          * Convert 'gsi' to 'ioapic.pin'.
1498          */
1499         ioapic_idx = mp_find_ioapic(gsi);
1500         if (ioapic_idx < 0)
1501                 return;
1502
1503         pin = mp_find_ioapic_pin(ioapic_idx, gsi);
1504         idx = find_irq_entry(ioapic_idx, pin, mp_INT);
1505         if (idx == -1)
1506                 return;
1507
1508         irq = pin_2_irq(idx, ioapic_idx, pin);
1509
1510         /* Only handle the non legacy irqs on secondary ioapics */
1511         if (ioapic_idx == 0 || irq < NR_IRQS_LEGACY)
1512                 return;
1513
1514         set_io_apic_irq_attr(&attr, ioapic_idx, pin, irq_trigger(idx),
1515                              irq_polarity(idx));
1516
1517         io_apic_setup_irq_pin_once(irq, node, &attr);
1518 }
1519
1520 /*
1521  * Set up the timer pin, possibly with the 8259A-master behind.
1522  */
1523 static void __init setup_timer_IRQ0_pin(unsigned int ioapic_idx,
1524                                          unsigned int pin, int vector)
1525 {
1526         struct IO_APIC_route_entry entry;
1527
1528         if (intr_remapping_enabled)
1529                 return;
1530
1531         memset(&entry, 0, sizeof(entry));
1532
1533         /*
1534          * We use logical delivery to get the timer IRQ
1535          * to the first CPU.
1536          */
1537         entry.dest_mode = apic->irq_dest_mode;
1538         entry.mask = 0;                 /* don't mask IRQ for edge */
1539         entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
1540         entry.delivery_mode = apic->irq_delivery_mode;
1541         entry.polarity = 0;
1542         entry.trigger = 0;
1543         entry.vector = vector;
1544
1545         /*
1546          * The timer IRQ doesn't have to know that behind the
1547          * scene we may have a 8259A-master in AEOI mode ...
1548          */
1549         irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
1550                                       "edge");
1551
1552         /*
1553          * Add it to the IO-APIC irq-routing table:
1554          */
1555         ioapic_write_entry(ioapic_idx, pin, entry);
1556 }
1557
1558 __apicdebuginit(void) print_IO_APIC(int ioapic_idx)
1559 {
1560         int i;
1561         union IO_APIC_reg_00 reg_00;
1562         union IO_APIC_reg_01 reg_01;
1563         union IO_APIC_reg_02 reg_02;
1564         union IO_APIC_reg_03 reg_03;
1565         unsigned long flags;
1566
1567         raw_spin_lock_irqsave(&ioapic_lock, flags);
1568         reg_00.raw = io_apic_read(ioapic_idx, 0);
1569         reg_01.raw = io_apic_read(ioapic_idx, 1);
1570         if (reg_01.bits.version >= 0x10)
1571                 reg_02.raw = io_apic_read(ioapic_idx, 2);
1572         if (reg_01.bits.version >= 0x20)
1573                 reg_03.raw = io_apic_read(ioapic_idx, 3);
1574         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1575
1576         printk("\n");
1577         printk(KERN_DEBUG "IO APIC #%d......\n", mpc_ioapic_id(ioapic_idx));
1578         printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1579         printk(KERN_DEBUG ".......    : physical APIC id: %02X\n", reg_00.bits.ID);
1580         printk(KERN_DEBUG ".......    : Delivery Type: %X\n", reg_00.bits.delivery_type);
1581         printk(KERN_DEBUG ".......    : LTS          : %X\n", reg_00.bits.LTS);
1582
1583         printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
1584         printk(KERN_DEBUG ".......     : max redirection entries: %02X\n",
1585                 reg_01.bits.entries);
1586
1587         printk(KERN_DEBUG ".......     : PRQ implemented: %X\n", reg_01.bits.PRQ);
1588         printk(KERN_DEBUG ".......     : IO APIC version: %02X\n",
1589                 reg_01.bits.version);
1590
1591         /*
1592          * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1593          * but the value of reg_02 is read as the previous read register
1594          * value, so ignore it if reg_02 == reg_01.
1595          */
1596         if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1597                 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1598                 printk(KERN_DEBUG ".......     : arbitration: %02X\n", reg_02.bits.arbitration);
1599         }
1600
1601         /*
1602          * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1603          * or reg_03, but the value of reg_0[23] is read as the previous read
1604          * register value, so ignore it if reg_03 == reg_0[12].
1605          */
1606         if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1607             reg_03.raw != reg_01.raw) {
1608                 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1609                 printk(KERN_DEBUG ".......     : Boot DT    : %X\n", reg_03.bits.boot_DT);
1610         }
1611
1612         printk(KERN_DEBUG ".... IRQ redirection table:\n");
1613
1614         if (intr_remapping_enabled) {
1615                 printk(KERN_DEBUG " NR Indx Fmt Mask Trig IRR"
1616                         " Pol Stat Indx2 Zero Vect:\n");
1617         } else {
1618                 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1619                         " Stat Dmod Deli Vect:\n");
1620         }
1621
1622         for (i = 0; i <= reg_01.bits.entries; i++) {
1623                 if (intr_remapping_enabled) {
1624                         struct IO_APIC_route_entry entry;
1625                         struct IR_IO_APIC_route_entry *ir_entry;
1626
1627                         entry = ioapic_read_entry(ioapic_idx, i);
1628                         ir_entry = (struct IR_IO_APIC_route_entry *) &entry;
1629                         printk(KERN_DEBUG " %02x %04X ",
1630                                 i,
1631                                 ir_entry->index
1632                         );
1633                         printk("%1d   %1d    %1d    %1d   %1d   "
1634                                 "%1d    %1d     %X    %02X\n",
1635                                 ir_entry->format,
1636                                 ir_entry->mask,
1637                                 ir_entry->trigger,
1638                                 ir_entry->irr,
1639                                 ir_entry->polarity,
1640                                 ir_entry->delivery_status,
1641                                 ir_entry->index2,
1642                                 ir_entry->zero,
1643                                 ir_entry->vector
1644                         );
1645                 } else {
1646                         struct IO_APIC_route_entry entry;
1647
1648                         entry = ioapic_read_entry(ioapic_idx, i);
1649                         printk(KERN_DEBUG " %02x %02X  ",
1650                                 i,
1651                                 entry.dest
1652                         );
1653                         printk("%1d    %1d    %1d   %1d   %1d    "
1654                                 "%1d    %1d    %02X\n",
1655                                 entry.mask,
1656                                 entry.trigger,
1657                                 entry.irr,
1658                                 entry.polarity,
1659                                 entry.delivery_status,
1660                                 entry.dest_mode,
1661                                 entry.delivery_mode,
1662                                 entry.vector
1663                         );
1664                 }
1665         }
1666 }
1667
1668 __apicdebuginit(void) print_IO_APICs(void)
1669 {
1670         int ioapic_idx;
1671         struct irq_cfg *cfg;
1672         unsigned int irq;
1673         struct irq_chip *chip;
1674
1675         printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1676         for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1677                 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1678                        mpc_ioapic_id(ioapic_idx),
1679                        ioapics[ioapic_idx].nr_registers);
1680
1681         /*
1682          * We are a bit conservative about what we expect.  We have to
1683          * know about every hardware change ASAP.
1684          */
1685         printk(KERN_INFO "testing the IO APIC.......................\n");
1686
1687         for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++)
1688                 print_IO_APIC(ioapic_idx);
1689
1690         printk(KERN_DEBUG "IRQ to pin mappings:\n");
1691         for_each_active_irq(irq) {
1692                 struct irq_pin_list *entry;
1693
1694                 chip = irq_get_chip(irq);
1695                 if (chip != &ioapic_chip)
1696                         continue;
1697
1698                 cfg = irq_get_chip_data(irq);
1699                 if (!cfg)
1700                         continue;
1701                 entry = cfg->irq_2_pin;
1702                 if (!entry)
1703                         continue;
1704                 printk(KERN_DEBUG "IRQ%d ", irq);
1705                 for_each_irq_pin(entry, cfg->irq_2_pin)
1706                         printk("-> %d:%d", entry->apic, entry->pin);
1707                 printk("\n");
1708         }
1709
1710         printk(KERN_INFO ".................................... done.\n");
1711 }
1712
1713 __apicdebuginit(void) print_APIC_field(int base)
1714 {
1715         int i;
1716
1717         printk(KERN_DEBUG);
1718
1719         for (i = 0; i < 8; i++)
1720                 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1721
1722         printk(KERN_CONT "\n");
1723 }
1724
1725 __apicdebuginit(void) print_local_APIC(void *dummy)
1726 {
1727         unsigned int i, v, ver, maxlvt;
1728         u64 icr;
1729
1730         printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1731                 smp_processor_id(), hard_smp_processor_id());
1732         v = apic_read(APIC_ID);
1733         printk(KERN_INFO "... APIC ID:      %08x (%01x)\n", v, read_apic_id());
1734         v = apic_read(APIC_LVR);
1735         printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1736         ver = GET_APIC_VERSION(v);
1737         maxlvt = lapic_get_maxlvt();
1738
1739         v = apic_read(APIC_TASKPRI);
1740         printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1741
1742         if (APIC_INTEGRATED(ver)) {                     /* !82489DX */
1743                 if (!APIC_XAPIC(ver)) {
1744                         v = apic_read(APIC_ARBPRI);
1745                         printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1746                                v & APIC_ARBPRI_MASK);
1747                 }
1748                 v = apic_read(APIC_PROCPRI);
1749                 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1750         }
1751
1752         /*
1753          * Remote read supported only in the 82489DX and local APIC for
1754          * Pentium processors.
1755          */
1756         if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1757                 v = apic_read(APIC_RRR);
1758                 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1759         }
1760
1761         v = apic_read(APIC_LDR);
1762         printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1763         if (!x2apic_enabled()) {
1764                 v = apic_read(APIC_DFR);
1765                 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1766         }
1767         v = apic_read(APIC_SPIV);
1768         printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1769
1770         printk(KERN_DEBUG "... APIC ISR field:\n");
1771         print_APIC_field(APIC_ISR);
1772         printk(KERN_DEBUG "... APIC TMR field:\n");
1773         print_APIC_field(APIC_TMR);
1774         printk(KERN_DEBUG "... APIC IRR field:\n");
1775         print_APIC_field(APIC_IRR);
1776
1777         if (APIC_INTEGRATED(ver)) {             /* !82489DX */
1778                 if (maxlvt > 3)         /* Due to the Pentium erratum 3AP. */
1779                         apic_write(APIC_ESR, 0);
1780
1781                 v = apic_read(APIC_ESR);
1782                 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1783         }
1784
1785         icr = apic_icr_read();
1786         printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1787         printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1788
1789         v = apic_read(APIC_LVTT);
1790         printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1791
1792         if (maxlvt > 3) {                       /* PC is LVT#4. */
1793                 v = apic_read(APIC_LVTPC);
1794                 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1795         }
1796         v = apic_read(APIC_LVT0);
1797         printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1798         v = apic_read(APIC_LVT1);
1799         printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1800
1801         if (maxlvt > 2) {                       /* ERR is LVT#3. */
1802                 v = apic_read(APIC_LVTERR);
1803                 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1804         }
1805
1806         v = apic_read(APIC_TMICT);
1807         printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1808         v = apic_read(APIC_TMCCT);
1809         printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1810         v = apic_read(APIC_TDCR);
1811         printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1812
1813         if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1814                 v = apic_read(APIC_EFEAT);
1815                 maxlvt = (v >> 16) & 0xff;
1816                 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1817                 v = apic_read(APIC_ECTRL);
1818                 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1819                 for (i = 0; i < maxlvt; i++) {
1820                         v = apic_read(APIC_EILVTn(i));
1821                         printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1822                 }
1823         }
1824         printk("\n");
1825 }
1826
1827 __apicdebuginit(void) print_local_APICs(int maxcpu)
1828 {
1829         int cpu;
1830
1831         if (!maxcpu)
1832                 return;
1833
1834         preempt_disable();
1835         for_each_online_cpu(cpu) {
1836                 if (cpu >= maxcpu)
1837                         break;
1838                 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1839         }
1840         preempt_enable();
1841 }
1842
1843 __apicdebuginit(void) print_PIC(void)
1844 {
1845         unsigned int v;
1846         unsigned long flags;
1847
1848         if (!legacy_pic->nr_legacy_irqs)
1849                 return;
1850
1851         printk(KERN_DEBUG "\nprinting PIC contents\n");
1852
1853         raw_spin_lock_irqsave(&i8259A_lock, flags);
1854
1855         v = inb(0xa1) << 8 | inb(0x21);
1856         printk(KERN_DEBUG "... PIC  IMR: %04x\n", v);
1857
1858         v = inb(0xa0) << 8 | inb(0x20);
1859         printk(KERN_DEBUG "... PIC  IRR: %04x\n", v);
1860
1861         outb(0x0b,0xa0);
1862         outb(0x0b,0x20);
1863         v = inb(0xa0) << 8 | inb(0x20);
1864         outb(0x0a,0xa0);
1865         outb(0x0a,0x20);
1866
1867         raw_spin_unlock_irqrestore(&i8259A_lock, flags);
1868
1869         printk(KERN_DEBUG "... PIC  ISR: %04x\n", v);
1870
1871         v = inb(0x4d1) << 8 | inb(0x4d0);
1872         printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1873 }
1874
1875 static int __initdata show_lapic = 1;
1876 static __init int setup_show_lapic(char *arg)
1877 {
1878         int num = -1;
1879
1880         if (strcmp(arg, "all") == 0) {
1881                 show_lapic = CONFIG_NR_CPUS;
1882         } else {
1883                 get_option(&arg, &num);
1884                 if (num >= 0)
1885                         show_lapic = num;
1886         }
1887
1888         return 1;
1889 }
1890 __setup("show_lapic=", setup_show_lapic);
1891
1892 __apicdebuginit(int) print_ICs(void)
1893 {
1894         if (apic_verbosity == APIC_QUIET)
1895                 return 0;
1896
1897         print_PIC();
1898
1899         /* don't print out if apic is not there */
1900         if (!cpu_has_apic && !apic_from_smp_config())
1901                 return 0;
1902
1903         print_local_APICs(show_lapic);
1904         print_IO_APICs();
1905
1906         return 0;
1907 }
1908
1909 late_initcall(print_ICs);
1910
1911
1912 /* Where if anywhere is the i8259 connect in external int mode */
1913 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1914
1915 void __init enable_IO_APIC(void)
1916 {
1917         int i8259_apic, i8259_pin;
1918         int apic;
1919
1920         if (!legacy_pic->nr_legacy_irqs)
1921                 return;
1922
1923         for(apic = 0; apic < nr_ioapics; apic++) {
1924                 int pin;
1925                 /* See if any of the pins is in ExtINT mode */
1926                 for (pin = 0; pin < ioapics[apic].nr_registers; pin++) {
1927                         struct IO_APIC_route_entry entry;
1928                         entry = ioapic_read_entry(apic, pin);
1929
1930                         /* If the interrupt line is enabled and in ExtInt mode
1931                          * I have found the pin where the i8259 is connected.
1932                          */
1933                         if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1934                                 ioapic_i8259.apic = apic;
1935                                 ioapic_i8259.pin  = pin;
1936                                 goto found_i8259;
1937                         }
1938                 }
1939         }
1940  found_i8259:
1941         /* Look to see what if the MP table has reported the ExtINT */
1942         /* If we could not find the appropriate pin by looking at the ioapic
1943          * the i8259 probably is not connected the ioapic but give the
1944          * mptable a chance anyway.
1945          */
1946         i8259_pin  = find_isa_irq_pin(0, mp_ExtINT);
1947         i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1948         /* Trust the MP table if nothing is setup in the hardware */
1949         if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1950                 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1951                 ioapic_i8259.pin  = i8259_pin;
1952                 ioapic_i8259.apic = i8259_apic;
1953         }
1954         /* Complain if the MP table and the hardware disagree */
1955         if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1956                 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1957         {
1958                 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1959         }
1960
1961         /*
1962          * Do not trust the IO-APIC being empty at bootup
1963          */
1964         clear_IO_APIC();
1965 }
1966
1967 /*
1968  * Not an __init, needed by the reboot code
1969  */
1970 void disable_IO_APIC(void)
1971 {
1972         /*
1973          * Clear the IO-APIC before rebooting:
1974          */
1975         clear_IO_APIC();
1976
1977         if (!legacy_pic->nr_legacy_irqs)
1978                 return;
1979
1980         /*
1981          * If the i8259 is routed through an IOAPIC
1982          * Put that IOAPIC in virtual wire mode
1983          * so legacy interrupts can be delivered.
1984          *
1985          * With interrupt-remapping, for now we will use virtual wire A mode,
1986          * as virtual wire B is little complex (need to configure both
1987          * IOAPIC RTE as well as interrupt-remapping table entry).
1988          * As this gets called during crash dump, keep this simple for now.
1989          */
1990         if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
1991                 struct IO_APIC_route_entry entry;
1992
1993                 memset(&entry, 0, sizeof(entry));
1994                 entry.mask            = 0; /* Enabled */
1995                 entry.trigger         = 0; /* Edge */
1996                 entry.irr             = 0;
1997                 entry.polarity        = 0; /* High */
1998                 entry.delivery_status = 0;
1999                 entry.dest_mode       = 0; /* Physical */
2000                 entry.delivery_mode   = dest_ExtINT; /* ExtInt */
2001                 entry.vector          = 0;
2002                 entry.dest            = read_apic_id();
2003
2004                 /*
2005                  * Add it to the IO-APIC irq-routing table:
2006                  */
2007                 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
2008         }
2009
2010         /*
2011          * Use virtual wire A mode when interrupt remapping is enabled.
2012          */
2013         if (cpu_has_apic || apic_from_smp_config())
2014                 disconnect_bsp_APIC(!intr_remapping_enabled &&
2015                                 ioapic_i8259.pin != -1);
2016 }
2017
2018 #ifdef CONFIG_X86_32
2019 /*
2020  * function to set the IO-APIC physical IDs based on the
2021  * values stored in the MPC table.
2022  *
2023  * by Matt Domsch <Matt_Domsch@dell.com>  Tue Dec 21 12:25:05 CST 1999
2024  */
2025 void __init setup_ioapic_ids_from_mpc_nocheck(void)
2026 {
2027         union IO_APIC_reg_00 reg_00;
2028         physid_mask_t phys_id_present_map;
2029         int ioapic_idx;
2030         int i;
2031         unsigned char old_id;
2032         unsigned long flags;
2033
2034         /*
2035          * This is broken; anything with a real cpu count has to
2036          * circumvent this idiocy regardless.
2037          */
2038         apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
2039
2040         /*
2041          * Set the IOAPIC ID to the value stored in the MPC table.
2042          */
2043         for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++) {
2044                 /* Read the register 0 value */
2045                 raw_spin_lock_irqsave(&ioapic_lock, flags);
2046                 reg_00.raw = io_apic_read(ioapic_idx, 0);
2047                 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2048
2049                 old_id = mpc_ioapic_id(ioapic_idx);
2050
2051                 if (mpc_ioapic_id(ioapic_idx) >= get_physical_broadcast()) {
2052                         printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
2053                                 ioapic_idx, mpc_ioapic_id(ioapic_idx));
2054                         printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2055                                 reg_00.bits.ID);
2056                         ioapics[ioapic_idx].mp_config.apicid = reg_00.bits.ID;
2057                 }
2058
2059                 /*
2060                  * Sanity check, is the ID really free? Every APIC in a
2061                  * system must have a unique ID or we get lots of nice
2062                  * 'stuck on smp_invalidate_needed IPI wait' messages.
2063                  */
2064                 if (apic->check_apicid_used(&phys_id_present_map,
2065                                             mpc_ioapic_id(ioapic_idx))) {
2066                         printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
2067                                 ioapic_idx, mpc_ioapic_id(ioapic_idx));
2068                         for (i = 0; i < get_physical_broadcast(); i++)
2069                                 if (!physid_isset(i, phys_id_present_map))
2070                                         break;
2071                         if (i >= get_physical_broadcast())
2072                                 panic("Max APIC ID exceeded!\n");
2073                         printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2074                                 i);
2075                         physid_set(i, phys_id_present_map);
2076                         ioapics[ioapic_idx].mp_config.apicid = i;
2077                 } else {
2078                         physid_mask_t tmp;
2079                         apic->apicid_to_cpu_present(mpc_ioapic_id(ioapic_idx),
2080                                                     &tmp);
2081                         apic_printk(APIC_VERBOSE, "Setting %d in the "
2082                                         "phys_id_present_map\n",
2083                                         mpc_ioapic_id(ioapic_idx));
2084                         physids_or(phys_id_present_map, phys_id_present_map, tmp);
2085                 }
2086
2087                 /*
2088                  * We need to adjust the IRQ routing table
2089                  * if the ID changed.
2090                  */
2091                 if (old_id != mpc_ioapic_id(ioapic_idx))
2092                         for (i = 0; i < mp_irq_entries; i++)
2093                                 if (mp_irqs[i].dstapic == old_id)
2094                                         mp_irqs[i].dstapic
2095                                                 = mpc_ioapic_id(ioapic_idx);
2096
2097                 /*
2098                  * Update the ID register according to the right value
2099                  * from the MPC table if they are different.
2100                  */
2101                 if (mpc_ioapic_id(ioapic_idx) == reg_00.bits.ID)
2102                         continue;
2103
2104                 apic_printk(APIC_VERBOSE, KERN_INFO
2105                         "...changing IO-APIC physical APIC ID to %d ...",
2106                         mpc_ioapic_id(ioapic_idx));
2107
2108                 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
2109                 raw_spin_lock_irqsave(&ioapic_lock, flags);
2110                 io_apic_write(ioapic_idx, 0, reg_00.raw);
2111                 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2112
2113                 /*
2114                  * Sanity check
2115                  */
2116                 raw_spin_lock_irqsave(&ioapic_lock, flags);
2117                 reg_00.raw = io_apic_read(ioapic_idx, 0);
2118                 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2119                 if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx))
2120                         printk("could not set ID!\n");
2121                 else
2122                         apic_printk(APIC_VERBOSE, " ok.\n");
2123         }
2124 }
2125
2126 void __init setup_ioapic_ids_from_mpc(void)
2127 {
2128
2129         if (acpi_ioapic)
2130                 return;
2131         /*
2132          * Don't check I/O APIC IDs for xAPIC systems.  They have
2133          * no meaning without the serial APIC bus.
2134          */
2135         if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2136                 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2137                 return;
2138         setup_ioapic_ids_from_mpc_nocheck();
2139 }
2140 #endif
2141
2142 int no_timer_check __initdata;
2143
2144 static int __init notimercheck(char *s)
2145 {
2146         no_timer_check = 1;
2147         return 1;
2148 }
2149 __setup("no_timer_check", notimercheck);
2150
2151 /*
2152  * There is a nasty bug in some older SMP boards, their mptable lies
2153  * about the timer IRQ. We do the following to work around the situation:
2154  *
2155  *      - timer IRQ defaults to IO-APIC IRQ
2156  *      - if this function detects that timer IRQs are defunct, then we fall
2157  *        back to ISA timer IRQs
2158  */
2159 static int __init timer_irq_works(void)
2160 {
2161         unsigned long t1 = jiffies;
2162         unsigned long flags;
2163
2164         if (no_timer_check)
2165                 return 1;
2166
2167         local_save_flags(flags);
2168         local_irq_enable();
2169         /* Let ten ticks pass... */
2170         mdelay((10 * 1000) / HZ);
2171         local_irq_restore(flags);
2172
2173         /*
2174          * Expect a few ticks at least, to be sure some possible
2175          * glue logic does not lock up after one or two first
2176          * ticks in a non-ExtINT mode.  Also the local APIC
2177          * might have cached one ExtINT interrupt.  Finally, at
2178          * least one tick may be lost due to delays.
2179          */
2180
2181         /* jiffies wrap? */
2182         if (time_after(jiffies, t1 + 4))
2183                 return 1;
2184         return 0;
2185 }
2186
2187 /*
2188  * In the SMP+IOAPIC case it might happen that there are an unspecified
2189  * number of pending IRQ events unhandled. These cases are very rare,
2190  * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2191  * better to do it this way as thus we do not have to be aware of
2192  * 'pending' interrupts in the IRQ path, except at this point.
2193  */
2194 /*
2195  * Edge triggered needs to resend any interrupt
2196  * that was delayed but this is now handled in the device
2197  * independent code.
2198  */
2199
2200 /*
2201  * Starting up a edge-triggered IO-APIC interrupt is
2202  * nasty - we need to make sure that we get the edge.
2203  * If it is already asserted for some reason, we need
2204  * return 1 to indicate that is was pending.
2205  *
2206  * This is not complete - we should be able to fake
2207  * an edge even if it isn't on the 8259A...
2208  */
2209
2210 static unsigned int startup_ioapic_irq(struct irq_data *data)
2211 {
2212         int was_pending = 0, irq = data->irq;
2213         unsigned long flags;
2214
2215         raw_spin_lock_irqsave(&ioapic_lock, flags);
2216         if (irq < legacy_pic->nr_legacy_irqs) {
2217                 legacy_pic->mask(irq);
2218                 if (legacy_pic->irq_pending(irq))
2219                         was_pending = 1;
2220         }
2221         __unmask_ioapic(data->chip_data);
2222         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2223
2224         return was_pending;
2225 }
2226
2227 static int ioapic_retrigger_irq(struct irq_data *data)
2228 {
2229         struct irq_cfg *cfg = data->chip_data;
2230         unsigned long flags;
2231
2232         raw_spin_lock_irqsave(&vector_lock, flags);
2233         apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
2234         raw_spin_unlock_irqrestore(&vector_lock, flags);
2235
2236         return 1;
2237 }
2238
2239 /*
2240  * Level and edge triggered IO-APIC interrupts need different handling,
2241  * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2242  * handled with the level-triggered descriptor, but that one has slightly
2243  * more overhead. Level-triggered interrupts cannot be handled with the
2244  * edge-triggered handler, without risking IRQ storms and other ugly
2245  * races.
2246  */
2247
2248 #ifdef CONFIG_SMP
2249 void send_cleanup_vector(struct irq_cfg *cfg)
2250 {
2251         cpumask_var_t cleanup_mask;
2252
2253         if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2254                 unsigned int i;
2255                 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2256                         apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2257         } else {
2258                 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2259                 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2260                 free_cpumask_var(cleanup_mask);
2261         }
2262         cfg->move_in_progress = 0;
2263 }
2264
2265 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
2266 {
2267         int apic, pin;
2268         struct irq_pin_list *entry;
2269         u8 vector = cfg->vector;
2270
2271         for_each_irq_pin(entry, cfg->irq_2_pin) {
2272                 unsigned int reg;
2273
2274                 apic = entry->apic;
2275                 pin = entry->pin;
2276                 /*
2277                  * With interrupt-remapping, destination information comes
2278                  * from interrupt-remapping table entry.
2279                  */
2280                 if (!irq_remapped(cfg))
2281                         io_apic_write(apic, 0x11 + pin*2, dest);
2282                 reg = io_apic_read(apic, 0x10 + pin*2);
2283                 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2284                 reg |= vector;
2285                 io_apic_modify(apic, 0x10 + pin*2, reg);
2286         }
2287 }
2288
2289 /*
2290  * Either sets data->affinity to a valid value, and returns
2291  * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
2292  * leaves data->affinity untouched.
2293  */
2294 int __ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2295                           unsigned int *dest_id)
2296 {
2297         struct irq_cfg *cfg = data->chip_data;
2298
2299         if (!cpumask_intersects(mask, cpu_online_mask))
2300                 return -1;
2301
2302         if (assign_irq_vector(data->irq, data->chip_data, mask))
2303                 return -1;
2304
2305         cpumask_copy(data->affinity, mask);
2306
2307         *dest_id = apic->cpu_mask_to_apicid_and(mask, cfg->domain);
2308         return 0;
2309 }
2310
2311 static int
2312 ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2313                     bool force)
2314 {
2315         unsigned int dest, irq = data->irq;
2316         unsigned long flags;
2317         int ret;
2318
2319         raw_spin_lock_irqsave(&ioapic_lock, flags);
2320         ret = __ioapic_set_affinity(data, mask, &dest);
2321         if (!ret) {
2322                 /* Only the high 8 bits are valid. */
2323                 dest = SET_APIC_LOGICAL_ID(dest);
2324                 __target_IO_APIC_irq(irq, dest, data->chip_data);
2325         }
2326         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2327         return ret;
2328 }
2329
2330 asmlinkage void smp_irq_move_cleanup_interrupt(void)
2331 {
2332         unsigned vector, me;
2333
2334         ack_APIC_irq();
2335         irq_enter();
2336         exit_idle();
2337
2338         me = smp_processor_id();
2339         for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2340                 unsigned int irq;
2341                 unsigned int irr;
2342                 struct irq_desc *desc;
2343                 struct irq_cfg *cfg;
2344                 irq = __this_cpu_read(vector_irq[vector]);
2345
2346                 if (irq == -1)
2347                         continue;
2348
2349                 desc = irq_to_desc(irq);
2350                 if (!desc)
2351                         continue;
2352
2353                 cfg = irq_cfg(irq);
2354                 raw_spin_lock(&desc->lock);
2355
2356                 /*
2357                  * Check if the irq migration is in progress. If so, we
2358                  * haven't received the cleanup request yet for this irq.
2359                  */
2360                 if (cfg->move_in_progress)
2361                         goto unlock;
2362
2363                 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
2364                         goto unlock;
2365
2366                 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2367                 /*
2368                  * Check if the vector that needs to be cleanedup is
2369                  * registered at the cpu's IRR. If so, then this is not
2370                  * the best time to clean it up. Lets clean it up in the
2371                  * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2372                  * to myself.
2373                  */
2374                 if (irr  & (1 << (vector % 32))) {
2375                         apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2376                         goto unlock;
2377                 }
2378                 __this_cpu_write(vector_irq[vector], -1);
2379 unlock:
2380                 raw_spin_unlock(&desc->lock);
2381         }
2382
2383         irq_exit();
2384 }
2385
2386 static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
2387 {
2388         unsigned me;
2389
2390         if (likely(!cfg->move_in_progress))
2391                 return;
2392
2393         me = smp_processor_id();
2394
2395         if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
2396                 send_cleanup_vector(cfg);
2397 }
2398
2399 static void irq_complete_move(struct irq_cfg *cfg)
2400 {
2401         __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
2402 }
2403
2404 void irq_force_complete_move(int irq)
2405 {
2406         struct irq_cfg *cfg = irq_get_chip_data(irq);
2407
2408         if (!cfg)
2409                 return;
2410
2411         __irq_complete_move(cfg, cfg->vector);
2412 }
2413 #else
2414 static inline void irq_complete_move(struct irq_cfg *cfg) { }
2415 #endif
2416
2417 static void ack_apic_edge(struct irq_data *data)
2418 {
2419         irq_complete_move(data->chip_data);
2420         irq_move_irq(data);
2421         ack_APIC_irq();
2422 }
2423
2424 atomic_t irq_mis_count;
2425
2426 #ifdef CONFIG_GENERIC_PENDING_IRQ
2427 static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
2428 {
2429         /* If we are moving the irq we need to mask it */
2430         if (unlikely(irqd_is_setaffinity_pending(data))) {
2431                 mask_ioapic(cfg);
2432                 return true;
2433         }
2434         return false;
2435 }
2436
2437 static inline void ioapic_irqd_unmask(struct irq_data *data,
2438                                       struct irq_cfg *cfg, bool masked)
2439 {
2440         if (unlikely(masked)) {
2441                 /* Only migrate the irq if the ack has been received.
2442                  *
2443                  * On rare occasions the broadcast level triggered ack gets
2444                  * delayed going to ioapics, and if we reprogram the
2445                  * vector while Remote IRR is still set the irq will never
2446                  * fire again.
2447                  *
2448                  * To prevent this scenario we read the Remote IRR bit
2449                  * of the ioapic.  This has two effects.
2450                  * - On any sane system the read of the ioapic will
2451                  *   flush writes (and acks) going to the ioapic from
2452                  *   this cpu.
2453                  * - We get to see if the ACK has actually been delivered.
2454                  *
2455                  * Based on failed experiments of reprogramming the
2456                  * ioapic entry from outside of irq context starting
2457                  * with masking the ioapic entry and then polling until
2458                  * Remote IRR was clear before reprogramming the
2459                  * ioapic I don't trust the Remote IRR bit to be
2460                  * completey accurate.
2461                  *
2462                  * However there appears to be no other way to plug
2463                  * this race, so if the Remote IRR bit is not
2464                  * accurate and is causing problems then it is a hardware bug
2465                  * and you can go talk to the chipset vendor about it.
2466                  */
2467                 if (!io_apic_level_ack_pending(cfg))
2468                         irq_move_masked_irq(data);
2469                 unmask_ioapic(cfg);
2470         }
2471 }
2472 #else
2473 static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
2474 {
2475         return false;
2476 }
2477 static inline void ioapic_irqd_unmask(struct irq_data *data,
2478                                       struct irq_cfg *cfg, bool masked)
2479 {
2480 }
2481 #endif
2482
2483 static void ack_apic_level(struct irq_data *data)
2484 {
2485         struct irq_cfg *cfg = data->chip_data;
2486         int i, irq = data->irq;
2487         unsigned long v;
2488         bool masked;
2489
2490         irq_complete_move(cfg);
2491         masked = ioapic_irqd_mask(data, cfg);
2492
2493         /*
2494          * It appears there is an erratum which affects at least version 0x11
2495          * of I/O APIC (that's the 82093AA and cores integrated into various
2496          * chipsets).  Under certain conditions a level-triggered interrupt is
2497          * erroneously delivered as edge-triggered one but the respective IRR
2498          * bit gets set nevertheless.  As a result the I/O unit expects an EOI
2499          * message but it will never arrive and further interrupts are blocked
2500          * from the source.  The exact reason is so far unknown, but the
2501          * phenomenon was observed when two consecutive interrupt requests
2502          * from a given source get delivered to the same CPU and the source is
2503          * temporarily disabled in between.
2504          *
2505          * A workaround is to simulate an EOI message manually.  We achieve it
2506          * by setting the trigger mode to edge and then to level when the edge
2507          * trigger mode gets detected in the TMR of a local APIC for a
2508          * level-triggered interrupt.  We mask the source for the time of the
2509          * operation to prevent an edge-triggered interrupt escaping meanwhile.
2510          * The idea is from Manfred Spraul.  --macro
2511          *
2512          * Also in the case when cpu goes offline, fixup_irqs() will forward
2513          * any unhandled interrupt on the offlined cpu to the new cpu
2514          * destination that is handling the corresponding interrupt. This
2515          * interrupt forwarding is done via IPI's. Hence, in this case also
2516          * level-triggered io-apic interrupt will be seen as an edge
2517          * interrupt in the IRR. And we can't rely on the cpu's EOI
2518          * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2519          * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2520          * supporting EOI register, we do an explicit EOI to clear the
2521          * remote IRR and on IO-APIC's which don't have an EOI register,
2522          * we use the above logic (mask+edge followed by unmask+level) from
2523          * Manfred Spraul to clear the remote IRR.
2524          */
2525         i = cfg->vector;
2526         v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2527
2528         /*
2529          * We must acknowledge the irq before we move it or the acknowledge will
2530          * not propagate properly.
2531          */
2532         ack_APIC_irq();
2533
2534         /*
2535          * Tail end of clearing remote IRR bit (either by delivering the EOI
2536          * message via io-apic EOI register write or simulating it using
2537          * mask+edge followed by unnask+level logic) manually when the
2538          * level triggered interrupt is seen as the edge triggered interrupt
2539          * at the cpu.
2540          */
2541         if (!(v & (1 << (i & 0x1f)))) {
2542                 atomic_inc(&irq_mis_count);
2543
2544                 eoi_ioapic_irq(irq, cfg);
2545         }
2546
2547         ioapic_irqd_unmask(data, cfg, masked);
2548 }
2549
2550 #ifdef CONFIG_IRQ_REMAP
2551 static void ir_ack_apic_edge(struct irq_data *data)
2552 {
2553         ack_APIC_irq();
2554 }
2555
2556 static void ir_ack_apic_level(struct irq_data *data)
2557 {
2558         ack_APIC_irq();
2559         eoi_ioapic_irq(data->irq, data->chip_data);
2560 }
2561
2562 static void ir_print_prefix(struct irq_data *data, struct seq_file *p)
2563 {
2564         seq_printf(p, " IR-%s", data->chip->name);
2565 }
2566
2567 static void irq_remap_modify_chip_defaults(struct irq_chip *chip)
2568 {
2569         chip->irq_print_chip = ir_print_prefix;
2570         chip->irq_ack = ir_ack_apic_edge;
2571         chip->irq_eoi = ir_ack_apic_level;
2572
2573 #ifdef CONFIG_SMP
2574         chip->irq_set_affinity = intr_set_affinity;
2575 #endif
2576 }
2577 #endif /* CONFIG_IRQ_REMAP */
2578
2579 static struct irq_chip ioapic_chip __read_mostly = {
2580         .name                   = "IO-APIC",
2581         .irq_startup            = startup_ioapic_irq,
2582         .irq_mask               = mask_ioapic_irq,
2583         .irq_unmask             = unmask_ioapic_irq,
2584         .irq_ack                = ack_apic_edge,
2585         .irq_eoi                = ack_apic_level,
2586 #ifdef CONFIG_SMP
2587         .irq_set_affinity       = ioapic_set_affinity,
2588 #endif
2589         .irq_retrigger          = ioapic_retrigger_irq,
2590 };
2591
2592 static inline void init_IO_APIC_traps(void)
2593 {
2594         struct irq_cfg *cfg;
2595         unsigned int irq;
2596
2597         /*
2598          * NOTE! The local APIC isn't very good at handling
2599          * multiple interrupts at the same interrupt level.
2600          * As the interrupt level is determined by taking the
2601          * vector number and shifting that right by 4, we
2602          * want to spread these out a bit so that they don't
2603          * all fall in the same interrupt level.
2604          *
2605          * Also, we've got to be careful not to trash gate
2606          * 0x80, because int 0x80 is hm, kind of importantish. ;)
2607          */
2608         for_each_active_irq(irq) {
2609                 cfg = irq_get_chip_data(irq);
2610                 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
2611                         /*
2612                          * Hmm.. We don't have an entry for this,
2613                          * so default to an old-fashioned 8259
2614                          * interrupt if we can..
2615                          */
2616                         if (irq < legacy_pic->nr_legacy_irqs)
2617                                 legacy_pic->make_irq(irq);
2618                         else
2619                                 /* Strange. Oh, well.. */
2620                                 irq_set_chip(irq, &no_irq_chip);
2621                 }
2622         }
2623 }
2624
2625 /*
2626  * The local APIC irq-chip implementation:
2627  */
2628
2629 static void mask_lapic_irq(struct irq_data *data)
2630 {
2631         unsigned long v;
2632
2633         v = apic_read(APIC_LVT0);
2634         apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
2635 }
2636
2637 static void unmask_lapic_irq(struct irq_data *data)
2638 {
2639         unsigned long v;
2640
2641         v = apic_read(APIC_LVT0);
2642         apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
2643 }
2644
2645 static void ack_lapic_irq(struct irq_data *data)
2646 {
2647         ack_APIC_irq();
2648 }
2649
2650 static struct irq_chip lapic_chip __read_mostly = {
2651         .name           = "local-APIC",
2652         .irq_mask       = mask_lapic_irq,
2653         .irq_unmask     = unmask_lapic_irq,
2654         .irq_ack        = ack_lapic_irq,
2655 };
2656
2657 static void lapic_register_intr(int irq)
2658 {
2659         irq_clear_status_flags(irq, IRQ_LEVEL);
2660         irq_set_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2661                                       "edge");
2662 }
2663
2664 /*
2665  * This looks a bit hackish but it's about the only one way of sending
2666  * a few INTA cycles to 8259As and any associated glue logic.  ICR does
2667  * not support the ExtINT mode, unfortunately.  We need to send these
2668  * cycles as some i82489DX-based boards have glue logic that keeps the
2669  * 8259A interrupt line asserted until INTA.  --macro
2670  */
2671 static inline void __init unlock_ExtINT_logic(void)
2672 {
2673         int apic, pin, i;
2674         struct IO_APIC_route_entry entry0, entry1;
2675         unsigned char save_control, save_freq_select;
2676
2677         pin  = find_isa_irq_pin(8, mp_INT);
2678         if (pin == -1) {
2679                 WARN_ON_ONCE(1);
2680                 return;
2681         }
2682         apic = find_isa_irq_apic(8, mp_INT);
2683         if (apic == -1) {
2684                 WARN_ON_ONCE(1);
2685                 return;
2686         }
2687
2688         entry0 = ioapic_read_entry(apic, pin);
2689         clear_IO_APIC_pin(apic, pin);
2690
2691         memset(&entry1, 0, sizeof(entry1));
2692
2693         entry1.dest_mode = 0;                   /* physical delivery */
2694         entry1.mask = 0;                        /* unmask IRQ now */
2695         entry1.dest = hard_smp_processor_id();
2696         entry1.delivery_mode = dest_ExtINT;
2697         entry1.polarity = entry0.polarity;
2698         entry1.trigger = 0;
2699         entry1.vector = 0;
2700
2701         ioapic_write_entry(apic, pin, entry1);
2702
2703         save_control = CMOS_READ(RTC_CONTROL);
2704         save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2705         CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2706                    RTC_FREQ_SELECT);
2707         CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2708
2709         i = 100;
2710         while (i-- > 0) {
2711                 mdelay(10);
2712                 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2713                         i -= 10;
2714         }
2715
2716         CMOS_WRITE(save_control, RTC_CONTROL);
2717         CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2718         clear_IO_APIC_pin(apic, pin);
2719
2720         ioapic_write_entry(apic, pin, entry0);
2721 }
2722
2723 static int disable_timer_pin_1 __initdata;
2724 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2725 static int __init disable_timer_pin_setup(char *arg)
2726 {
2727         disable_timer_pin_1 = 1;
2728         return 0;
2729 }
2730 early_param("disable_timer_pin_1", disable_timer_pin_setup);
2731
2732 int timer_through_8259 __initdata;
2733
2734 /*
2735  * This code may look a bit paranoid, but it's supposed to cooperate with
2736  * a wide range of boards and BIOS bugs.  Fortunately only the timer IRQ
2737  * is so screwy.  Thanks to Brian Perkins for testing/hacking this beast
2738  * fanatically on his truly buggy board.
2739  *
2740  * FIXME: really need to revamp this for all platforms.
2741  */
2742 static inline void __init check_timer(void)
2743 {
2744         struct irq_cfg *cfg = irq_get_chip_data(0);
2745         int node = cpu_to_node(0);
2746         int apic1, pin1, apic2, pin2;
2747         unsigned long flags;
2748         int no_pin1 = 0;
2749
2750         local_irq_save(flags);
2751
2752         /*
2753          * get/set the timer IRQ vector:
2754          */
2755         legacy_pic->mask(0);
2756         assign_irq_vector(0, cfg, apic->target_cpus());
2757
2758         /*
2759          * As IRQ0 is to be enabled in the 8259A, the virtual
2760          * wire has to be disabled in the local APIC.  Also
2761          * timer interrupts need to be acknowledged manually in
2762          * the 8259A for the i82489DX when using the NMI
2763          * watchdog as that APIC treats NMIs as level-triggered.
2764          * The AEOI mode will finish them in the 8259A
2765          * automatically.
2766          */
2767         apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2768         legacy_pic->init(1);
2769
2770         pin1  = find_isa_irq_pin(0, mp_INT);
2771         apic1 = find_isa_irq_apic(0, mp_INT);
2772         pin2  = ioapic_i8259.pin;
2773         apic2 = ioapic_i8259.apic;
2774
2775         apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2776                     "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2777                     cfg->vector, apic1, pin1, apic2, pin2);
2778
2779         /*
2780          * Some BIOS writers are clueless and report the ExtINTA
2781          * I/O APIC input from the cascaded 8259A as the timer
2782          * interrupt input.  So just in case, if only one pin
2783          * was found above, try it both directly and through the
2784          * 8259A.
2785          */
2786         if (pin1 == -1) {
2787                 if (intr_remapping_enabled)
2788                         panic("BIOS bug: timer not connected to IO-APIC");
2789                 pin1 = pin2;
2790                 apic1 = apic2;
2791                 no_pin1 = 1;
2792         } else if (pin2 == -1) {
2793                 pin2 = pin1;
2794                 apic2 = apic1;
2795         }
2796
2797         if (pin1 != -1) {
2798                 /*
2799                  * Ok, does IRQ0 through the IOAPIC work?
2800                  */
2801                 if (no_pin1) {
2802                         add_pin_to_irq_node(cfg, node, apic1, pin1);
2803                         setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
2804                 } else {
2805                         /* for edge trigger, setup_ioapic_irq already
2806                          * leave it unmasked.
2807                          * so only need to unmask if it is level-trigger
2808                          * do we really have level trigger timer?
2809                          */
2810                         int idx;
2811                         idx = find_irq_entry(apic1, pin1, mp_INT);
2812                         if (idx != -1 && irq_trigger(idx))
2813                                 unmask_ioapic(cfg);
2814                 }
2815                 if (timer_irq_works()) {
2816                         if (disable_timer_pin_1 > 0)
2817                                 clear_IO_APIC_pin(0, pin1);
2818                         goto out;
2819                 }
2820                 if (intr_remapping_enabled)
2821                         panic("timer doesn't work through Interrupt-remapped IO-APIC");
2822                 local_irq_disable();
2823                 clear_IO_APIC_pin(apic1, pin1);
2824                 if (!no_pin1)
2825                         apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2826                                     "8254 timer not connected to IO-APIC\n");
2827
2828                 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2829                             "(IRQ0) through the 8259A ...\n");
2830                 apic_printk(APIC_QUIET, KERN_INFO
2831                             "..... (found apic %d pin %d) ...\n", apic2, pin2);
2832                 /*
2833                  * legacy devices should be connected to IO APIC #0
2834                  */
2835                 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
2836                 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
2837                 legacy_pic->unmask(0);
2838                 if (timer_irq_works()) {
2839                         apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
2840                         timer_through_8259 = 1;
2841                         goto out;
2842                 }
2843                 /*
2844                  * Cleanup, just in case ...
2845                  */
2846                 local_irq_disable();
2847                 legacy_pic->mask(0);
2848                 clear_IO_APIC_pin(apic2, pin2);
2849                 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
2850         }
2851
2852         apic_printk(APIC_QUIET, KERN_INFO
2853                     "...trying to set up timer as Virtual Wire IRQ...\n");
2854
2855         lapic_register_intr(0);
2856         apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector);     /* Fixed mode */
2857         legacy_pic->unmask(0);
2858
2859         if (timer_irq_works()) {
2860                 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2861                 goto out;
2862         }
2863         local_irq_disable();
2864         legacy_pic->mask(0);
2865         apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
2866         apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
2867
2868         apic_printk(APIC_QUIET, KERN_INFO
2869                     "...trying to set up timer as ExtINT IRQ...\n");
2870
2871         legacy_pic->init(0);
2872         legacy_pic->make_irq(0);
2873         apic_write(APIC_LVT0, APIC_DM_EXTINT);
2874
2875         unlock_ExtINT_logic();
2876
2877         if (timer_irq_works()) {
2878                 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2879                 goto out;
2880         }
2881         local_irq_disable();
2882         apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
2883         if (x2apic_preenabled)
2884                 apic_printk(APIC_QUIET, KERN_INFO
2885                             "Perhaps problem with the pre-enabled x2apic mode\n"
2886                             "Try booting with x2apic and interrupt-remapping disabled in the bios.\n");
2887         panic("IO-APIC + timer doesn't work!  Boot with apic=debug and send a "
2888                 "report.  Then try booting with the 'noapic' option.\n");
2889 out:
2890         local_irq_restore(flags);
2891 }
2892
2893 /*
2894  * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2895  * to devices.  However there may be an I/O APIC pin available for
2896  * this interrupt regardless.  The pin may be left unconnected, but
2897  * typically it will be reused as an ExtINT cascade interrupt for
2898  * the master 8259A.  In the MPS case such a pin will normally be
2899  * reported as an ExtINT interrupt in the MP table.  With ACPI
2900  * there is no provision for ExtINT interrupts, and in the absence
2901  * of an override it would be treated as an ordinary ISA I/O APIC
2902  * interrupt, that is edge-triggered and unmasked by default.  We
2903  * used to do this, but it caused problems on some systems because
2904  * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2905  * the same ExtINT cascade interrupt to drive the local APIC of the
2906  * bootstrap processor.  Therefore we refrain from routing IRQ2 to
2907  * the I/O APIC in all cases now.  No actual device should request
2908  * it anyway.  --macro
2909  */
2910 #define PIC_IRQS        (1UL << PIC_CASCADE_IR)
2911
2912 void __init setup_IO_APIC(void)
2913 {
2914
2915         /*
2916          * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2917          */
2918         io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
2919
2920         apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
2921         /*
2922          * Set up IO-APIC IRQ routing.
2923          */
2924         x86_init.mpparse.setup_ioapic_ids();
2925
2926         sync_Arb_IDs();
2927         setup_IO_APIC_irqs();
2928         init_IO_APIC_traps();
2929         if (legacy_pic->nr_legacy_irqs)
2930                 check_timer();
2931 }
2932
2933 /*
2934  *      Called after all the initialization is done. If we didn't find any
2935  *      APIC bugs then we can allow the modify fast path
2936  */
2937
2938 static int __init io_apic_bug_finalize(void)
2939 {
2940         if (sis_apic_bug == -1)
2941                 sis_apic_bug = 0;
2942         return 0;
2943 }
2944
2945 late_initcall(io_apic_bug_finalize);
2946
2947 static void resume_ioapic_id(int ioapic_idx)
2948 {
2949         unsigned long flags;
2950         union IO_APIC_reg_00 reg_00;
2951
2952         raw_spin_lock_irqsave(&ioapic_lock, flags);
2953         reg_00.raw = io_apic_read(ioapic_idx, 0);
2954         if (reg_00.bits.ID != mpc_ioapic_id(ioapic_idx)) {
2955                 reg_00.bits.ID = mpc_ioapic_id(ioapic_idx);
2956                 io_apic_write(ioapic_idx, 0, reg_00.raw);
2957         }
2958         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2959 }
2960
2961 static void ioapic_resume(void)
2962 {
2963         int ioapic_idx;
2964
2965         for (ioapic_idx = nr_ioapics - 1; ioapic_idx >= 0; ioapic_idx--)
2966                 resume_ioapic_id(ioapic_idx);
2967
2968         restore_ioapic_entries();
2969 }
2970
2971 static struct syscore_ops ioapic_syscore_ops = {
2972         .suspend = save_ioapic_entries,
2973         .resume = ioapic_resume,
2974 };
2975
2976 static int __init ioapic_init_ops(void)
2977 {
2978         register_syscore_ops(&ioapic_syscore_ops);
2979
2980         return 0;
2981 }
2982
2983 device_initcall(ioapic_init_ops);
2984
2985 /*
2986  * Dynamic irq allocate and deallocation
2987  */
2988 unsigned int create_irq_nr(unsigned int from, int node)
2989 {
2990         struct irq_cfg *cfg;
2991         unsigned long flags;
2992         unsigned int ret = 0;
2993         int irq;
2994
2995         if (from < nr_irqs_gsi)
2996                 from = nr_irqs_gsi;
2997
2998         irq = alloc_irq_from(from, node);
2999         if (irq < 0)
3000                 return 0;
3001         cfg = alloc_irq_cfg(irq, node);
3002         if (!cfg) {
3003                 free_irq_at(irq, NULL);
3004                 return 0;
3005         }
3006
3007         raw_spin_lock_irqsave(&vector_lock, flags);
3008         if (!__assign_irq_vector(irq, cfg, apic->target_cpus()))
3009                 ret = irq;
3010         raw_spin_unlock_irqrestore(&vector_lock, flags);
3011
3012         if (ret) {
3013                 irq_set_chip_data(irq, cfg);
3014                 irq_clear_status_flags(irq, IRQ_NOREQUEST);
3015         } else {
3016                 free_irq_at(irq, cfg);
3017         }
3018         return ret;
3019 }
3020
3021 int create_irq(void)
3022 {
3023         int node = cpu_to_node(0);
3024         unsigned int irq_want;
3025         int irq;
3026
3027         irq_want = nr_irqs_gsi;
3028         irq = create_irq_nr(irq_want, node);
3029
3030         if (irq == 0)
3031                 irq = -1;
3032
3033         return irq;
3034 }
3035
3036 void destroy_irq(unsigned int irq)
3037 {
3038         struct irq_cfg *cfg = irq_get_chip_data(irq);
3039         unsigned long flags;
3040
3041         irq_set_status_flags(irq, IRQ_NOREQUEST|IRQ_NOPROBE);
3042
3043         if (irq_remapped(cfg))
3044                 intr_free_irq(irq);
3045         raw_spin_lock_irqsave(&vector_lock, flags);
3046         __clear_irq_vector(irq, cfg);
3047         raw_spin_unlock_irqrestore(&vector_lock, flags);
3048         free_irq_at(irq, cfg);
3049 }
3050
3051 /*
3052  * MSI message composition
3053  */
3054 #ifdef CONFIG_PCI_MSI
3055 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3056                            struct msi_msg *msg, u8 hpet_id)
3057 {
3058         struct irq_cfg *cfg;
3059         int err;
3060         unsigned dest;
3061
3062         if (disable_apic)
3063                 return -ENXIO;
3064
3065         cfg = irq_cfg(irq);
3066         err = assign_irq_vector(irq, cfg, apic->target_cpus());
3067         if (err)
3068                 return err;
3069
3070         dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
3071
3072         if (irq_remapped(cfg)) {
3073                 intr_compose_msi_msg(pdev, irq, dest, msg, hpet_id);
3074                 return err;
3075         }
3076
3077         if (x2apic_enabled())
3078                 msg->address_hi = MSI_ADDR_BASE_HI |
3079                                   MSI_ADDR_EXT_DEST_ID(dest);
3080         else
3081                 msg->address_hi = MSI_ADDR_BASE_HI;
3082
3083         msg->address_lo =
3084                 MSI_ADDR_BASE_LO |
3085                 ((apic->irq_dest_mode == 0) ?
3086                         MSI_ADDR_DEST_MODE_PHYSICAL:
3087                         MSI_ADDR_DEST_MODE_LOGICAL) |
3088                 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3089                         MSI_ADDR_REDIRECTION_CPU:
3090                         MSI_ADDR_REDIRECTION_LOWPRI) |
3091                 MSI_ADDR_DEST_ID(dest);
3092
3093         msg->data =
3094                 MSI_DATA_TRIGGER_EDGE |
3095                 MSI_DATA_LEVEL_ASSERT |
3096                 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3097                         MSI_DATA_DELIVERY_FIXED:
3098                         MSI_DATA_DELIVERY_LOWPRI) |
3099                 MSI_DATA_VECTOR(cfg->vector);
3100
3101         return err;
3102 }
3103
3104 #ifdef CONFIG_SMP
3105 static int
3106 msi_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
3107 {
3108         struct irq_cfg *cfg = data->chip_data;
3109         struct msi_msg msg;
3110         unsigned int dest;
3111
3112         if (__ioapic_set_affinity(data, mask, &dest))
3113                 return -1;
3114
3115         __get_cached_msi_msg(data->msi_desc, &msg);
3116
3117         msg.data &= ~MSI_DATA_VECTOR_MASK;
3118         msg.data |= MSI_DATA_VECTOR(cfg->vector);
3119         msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3120         msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3121
3122         __write_msi_msg(data->msi_desc, &msg);
3123
3124         return 0;
3125 }
3126 #endif /* CONFIG_SMP */
3127
3128 /*
3129  * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3130  * which implement the MSI or MSI-X Capability Structure.
3131  */
3132 static struct irq_chip msi_chip = {
3133         .name                   = "PCI-MSI",
3134         .irq_unmask             = unmask_msi_irq,
3135         .irq_mask               = mask_msi_irq,
3136         .irq_ack                = ack_apic_edge,
3137 #ifdef CONFIG_SMP
3138         .irq_set_affinity       = msi_set_affinity,
3139 #endif
3140         .irq_retrigger          = ioapic_retrigger_irq,
3141 };
3142
3143 static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
3144 {
3145         struct irq_chip *chip = &msi_chip;
3146         struct msi_msg msg;
3147         int ret;
3148
3149         ret = msi_compose_msg(dev, irq, &msg, -1);
3150         if (ret < 0)
3151                 return ret;
3152
3153         irq_set_msi_desc(irq, msidesc);
3154         write_msi_msg(irq, &msg);
3155
3156         if (irq_remapped(irq_get_chip_data(irq))) {
3157                 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
3158                 irq_remap_modify_chip_defaults(chip);
3159         }
3160
3161         irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
3162
3163         dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3164
3165         return 0;
3166 }
3167
3168 int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3169 {
3170         int node, ret, sub_handle, index = 0;
3171         unsigned int irq, irq_want;
3172         struct msi_desc *msidesc;
3173
3174         /* x86 doesn't support multiple MSI yet */
3175         if (type == PCI_CAP_ID_MSI && nvec > 1)
3176                 return 1;
3177
3178         node = dev_to_node(&dev->dev);
3179         irq_want = nr_irqs_gsi;
3180         sub_handle = 0;
3181         list_for_each_entry(msidesc, &dev->msi_list, list) {
3182                 irq = create_irq_nr(irq_want, node);
3183                 if (irq == 0)
3184                         return -1;
3185                 irq_want = irq + 1;
3186                 if (!intr_remapping_enabled)
3187                         goto no_ir;
3188
3189                 if (!sub_handle) {
3190                         /*
3191                          * allocate the consecutive block of IRTE's
3192                          * for 'nvec'
3193                          */
3194                         index = intr_msi_alloc_irq(dev, irq, nvec);
3195                         if (index < 0) {
3196                                 ret = index;
3197                                 goto error;
3198                         }
3199                 } else {
3200                         ret = intr_msi_setup_irq(dev, irq, index, sub_handle);
3201                         if (ret < 0)
3202                                 goto error;
3203                 }
3204 no_ir:
3205                 ret = setup_msi_irq(dev, msidesc, irq);
3206                 if (ret < 0)
3207                         goto error;
3208                 sub_handle++;
3209         }
3210         return 0;
3211
3212 error:
3213         destroy_irq(irq);
3214         return ret;
3215 }
3216
3217 void native_teardown_msi_irq(unsigned int irq)
3218 {
3219         destroy_irq(irq);
3220 }
3221
3222 #ifdef CONFIG_DMAR_TABLE
3223 #ifdef CONFIG_SMP
3224 static int
3225 dmar_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
3226                       bool force)
3227 {
3228         struct irq_cfg *cfg = data->chip_data;
3229         unsigned int dest, irq = data->irq;
3230         struct msi_msg msg;
3231
3232         if (__ioapic_set_affinity(data, mask, &dest))
3233                 return -1;
3234
3235         dmar_msi_read(irq, &msg);
3236
3237         msg.data &= ~MSI_DATA_VECTOR_MASK;
3238         msg.data |= MSI_DATA_VECTOR(cfg->vector);
3239         msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3240         msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3241         msg.address_hi = MSI_ADDR_BASE_HI | MSI_ADDR_EXT_DEST_ID(dest);
3242
3243         dmar_msi_write(irq, &msg);
3244
3245         return 0;
3246 }
3247
3248 #endif /* CONFIG_SMP */
3249
3250 static struct irq_chip dmar_msi_type = {
3251         .name                   = "DMAR_MSI",
3252         .irq_unmask             = dmar_msi_unmask,
3253         .irq_mask               = dmar_msi_mask,
3254         .irq_ack                = ack_apic_edge,
3255 #ifdef CONFIG_SMP
3256         .irq_set_affinity       = dmar_msi_set_affinity,
3257 #endif
3258         .irq_retrigger          = ioapic_retrigger_irq,
3259 };
3260
3261 int arch_setup_dmar_msi(unsigned int irq)
3262 {
3263         int ret;
3264         struct msi_msg msg;
3265
3266         ret = msi_compose_msg(NULL, irq, &msg, -1);
3267         if (ret < 0)
3268                 return ret;
3269         dmar_msi_write(irq, &msg);
3270         irq_set_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3271                                       "edge");
3272         return 0;
3273 }
3274 #endif
3275
3276 #ifdef CONFIG_HPET_TIMER
3277
3278 #ifdef CONFIG_SMP
3279 static int hpet_msi_set_affinity(struct irq_data *data,
3280                                  const struct cpumask *mask, bool force)
3281 {
3282         struct irq_cfg *cfg = data->chip_data;
3283         struct msi_msg msg;
3284         unsigned int dest;
3285
3286         if (__ioapic_set_affinity(data, mask, &dest))
3287                 return -1;
3288
3289         hpet_msi_read(data->handler_data, &msg);
3290
3291         msg.data &= ~MSI_DATA_VECTOR_MASK;
3292         msg.data |= MSI_DATA_VECTOR(cfg->vector);
3293         msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3294         msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3295
3296         hpet_msi_write(data->handler_data, &msg);
3297
3298         return 0;
3299 }
3300
3301 #endif /* CONFIG_SMP */
3302
3303 static struct irq_chip hpet_msi_type = {
3304         .name = "HPET_MSI",
3305         .irq_unmask = hpet_msi_unmask,
3306         .irq_mask = hpet_msi_mask,
3307         .irq_ack = ack_apic_edge,
3308 #ifdef CONFIG_SMP
3309         .irq_set_affinity = hpet_msi_set_affinity,
3310 #endif
3311         .irq_retrigger = ioapic_retrigger_irq,
3312 };
3313
3314 int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
3315 {
3316         struct irq_chip *chip = &hpet_msi_type;
3317         struct msi_msg msg;
3318         int ret;
3319
3320         if (intr_remapping_enabled) {
3321                 if (!intr_setup_hpet_msi(irq, id))
3322                         return -1;
3323         }
3324
3325         ret = msi_compose_msg(NULL, irq, &msg, id);
3326         if (ret < 0)
3327                 return ret;
3328
3329         hpet_msi_write(irq_get_handler_data(irq), &msg);
3330         irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
3331         if (irq_remapped(irq_get_chip_data(irq)))
3332                 irq_remap_modify_chip_defaults(chip);
3333
3334         irq_set_chip_and_handler_name(irq, chip, handle_edge_irq, "edge");
3335         return 0;
3336 }
3337 #endif
3338
3339 #endif /* CONFIG_PCI_MSI */
3340 /*
3341  * Hypertransport interrupt support
3342  */
3343 #ifdef CONFIG_HT_IRQ
3344
3345 #ifdef CONFIG_SMP
3346
3347 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
3348 {
3349         struct ht_irq_msg msg;
3350         fetch_ht_irq_msg(irq, &msg);
3351
3352         msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
3353         msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
3354
3355         msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
3356         msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
3357
3358         write_ht_irq_msg(irq, &msg);
3359 }
3360
3361 static int
3362 ht_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
3363 {
3364         struct irq_cfg *cfg = data->chip_data;
3365         unsigned int dest;
3366
3367         if (__ioapic_set_affinity(data, mask, &dest))
3368                 return -1;
3369
3370         target_ht_irq(data->irq, dest, cfg->vector);
3371         return 0;
3372 }
3373
3374 #endif
3375
3376 static struct irq_chip ht_irq_chip = {
3377         .name                   = "PCI-HT",
3378         .irq_mask               = mask_ht_irq,
3379         .irq_unmask             = unmask_ht_irq,
3380         .irq_ack                = ack_apic_edge,
3381 #ifdef CONFIG_SMP
3382         .irq_set_affinity       = ht_set_affinity,
3383 #endif
3384         .irq_retrigger          = ioapic_retrigger_irq,
3385 };
3386
3387 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3388 {
3389         struct irq_cfg *cfg;
3390         int err;
3391
3392         if (disable_apic)
3393                 return -ENXIO;
3394
3395         cfg = irq_cfg(irq);
3396         err = assign_irq_vector(irq, cfg, apic->target_cpus());
3397         if (!err) {
3398                 struct ht_irq_msg msg;
3399                 unsigned dest;
3400
3401                 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3402                                                     apic->target_cpus());
3403
3404                 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
3405
3406                 msg.address_lo =
3407                         HT_IRQ_LOW_BASE |
3408                         HT_IRQ_LOW_DEST_ID(dest) |
3409                         HT_IRQ_LOW_VECTOR(cfg->vector) |
3410                         ((apic->irq_dest_mode == 0) ?
3411                                 HT_IRQ_LOW_DM_PHYSICAL :
3412                                 HT_IRQ_LOW_DM_LOGICAL) |
3413                         HT_IRQ_LOW_RQEOI_EDGE |
3414                         ((apic->irq_delivery_mode != dest_LowestPrio) ?
3415                                 HT_IRQ_LOW_MT_FIXED :
3416                                 HT_IRQ_LOW_MT_ARBITRATED) |
3417                         HT_IRQ_LOW_IRQ_MASKED;
3418
3419                 write_ht_irq_msg(irq, &msg);
3420
3421                 irq_set_chip_and_handler_name(irq, &ht_irq_chip,
3422                                               handle_edge_irq, "edge");
3423
3424                 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
3425         }
3426         return err;
3427 }
3428 #endif /* CONFIG_HT_IRQ */
3429
3430 static int
3431 io_apic_setup_irq_pin(unsigned int irq, int node, struct io_apic_irq_attr *attr)
3432 {
3433         struct irq_cfg *cfg = alloc_irq_and_cfg_at(irq, node);
3434         int ret;
3435
3436         if (!cfg)
3437                 return -EINVAL;
3438         ret = __add_pin_to_irq_node(cfg, node, attr->ioapic, attr->ioapic_pin);
3439         if (!ret)
3440                 setup_ioapic_irq(irq, cfg, attr);
3441         return ret;
3442 }
3443
3444 int io_apic_setup_irq_pin_once(unsigned int irq, int node,
3445                                struct io_apic_irq_attr *attr)
3446 {
3447         unsigned int ioapic_idx = attr->ioapic, pin = attr->ioapic_pin;
3448         int ret;
3449
3450         /* Avoid redundant programming */
3451         if (test_bit(pin, ioapics[ioapic_idx].pin_programmed)) {
3452                 pr_debug("Pin %d-%d already programmed\n",
3453                          mpc_ioapic_id(ioapic_idx), pin);
3454                 return 0;
3455         }
3456         ret = io_apic_setup_irq_pin(irq, node, attr);
3457         if (!ret)
3458                 set_bit(pin, ioapics[ioapic_idx].pin_programmed);
3459         return ret;
3460 }
3461
3462 static int __init io_apic_get_redir_entries(int ioapic)
3463 {
3464         union IO_APIC_reg_01    reg_01;
3465         unsigned long flags;
3466
3467         raw_spin_lock_irqsave(&ioapic_lock, flags);
3468         reg_01.raw = io_apic_read(ioapic, 1);
3469         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3470
3471         /* The register returns the maximum index redir index
3472          * supported, which is one less than the total number of redir
3473          * entries.
3474          */
3475         return reg_01.bits.entries + 1;
3476 }
3477
3478 static void __init probe_nr_irqs_gsi(void)
3479 {
3480         int nr;
3481
3482         nr = gsi_top + NR_IRQS_LEGACY;
3483         if (nr > nr_irqs_gsi)
3484                 nr_irqs_gsi = nr;
3485
3486         printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
3487 }
3488
3489 int get_nr_irqs_gsi(void)
3490 {
3491         return nr_irqs_gsi;
3492 }
3493
3494 int __init arch_probe_nr_irqs(void)
3495 {
3496         int nr;
3497
3498         if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3499                 nr_irqs = NR_VECTORS * nr_cpu_ids;
3500
3501         nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3502 #if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3503         /*
3504          * for MSI and HT dyn irq
3505          */
3506         nr += nr_irqs_gsi * 16;
3507 #endif
3508         if (nr < nr_irqs)
3509                 nr_irqs = nr;
3510
3511         return NR_IRQS_LEGACY;
3512 }
3513
3514 int io_apic_set_pci_routing(struct device *dev, int irq,
3515                             struct io_apic_irq_attr *irq_attr)
3516 {
3517         int node;
3518
3519         if (!IO_APIC_IRQ(irq)) {
3520                 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3521                             irq_attr->ioapic);
3522                 return -EINVAL;
3523         }
3524
3525         node = dev ? dev_to_node(dev) : cpu_to_node(0);
3526
3527         return io_apic_setup_irq_pin_once(irq, node, irq_attr);
3528 }
3529
3530 #ifdef CONFIG_X86_32
3531 static int __init io_apic_get_unique_id(int ioapic, int apic_id)
3532 {
3533         union IO_APIC_reg_00 reg_00;
3534         static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3535         physid_mask_t tmp;
3536         unsigned long flags;
3537         int i = 0;
3538
3539         /*
3540          * The P4 platform supports up to 256 APIC IDs on two separate APIC
3541          * buses (one for LAPICs, one for IOAPICs), where predecessors only
3542          * supports up to 16 on one shared APIC bus.
3543          *
3544          * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3545          *      advantage of new APIC bus architecture.
3546          */
3547
3548         if (physids_empty(apic_id_map))
3549                 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
3550
3551         raw_spin_lock_irqsave(&ioapic_lock, flags);
3552         reg_00.raw = io_apic_read(ioapic, 0);
3553         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3554
3555         if (apic_id >= get_physical_broadcast()) {
3556                 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3557                         "%d\n", ioapic, apic_id, reg_00.bits.ID);
3558                 apic_id = reg_00.bits.ID;
3559         }
3560
3561         /*
3562          * Every APIC in a system must have a unique ID or we get lots of nice
3563          * 'stuck on smp_invalidate_needed IPI wait' messages.
3564          */
3565         if (apic->check_apicid_used(&apic_id_map, apic_id)) {
3566
3567                 for (i = 0; i < get_physical_broadcast(); i++) {
3568                         if (!apic->check_apicid_used(&apic_id_map, i))
3569                                 break;
3570                 }
3571
3572                 if (i == get_physical_broadcast())
3573                         panic("Max apic_id exceeded!\n");
3574
3575                 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3576                         "trying %d\n", ioapic, apic_id, i);
3577
3578                 apic_id = i;
3579         }
3580
3581         apic->apicid_to_cpu_present(apic_id, &tmp);
3582         physids_or(apic_id_map, apic_id_map, tmp);
3583
3584         if (reg_00.bits.ID != apic_id) {
3585                 reg_00.bits.ID = apic_id;
3586
3587                 raw_spin_lock_irqsave(&ioapic_lock, flags);
3588                 io_apic_write(ioapic, 0, reg_00.raw);
3589                 reg_00.raw = io_apic_read(ioapic, 0);
3590                 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3591
3592                 /* Sanity check */
3593                 if (reg_00.bits.ID != apic_id) {
3594                         printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3595                         return -1;
3596                 }
3597         }
3598
3599         apic_printk(APIC_VERBOSE, KERN_INFO
3600                         "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3601
3602         return apic_id;
3603 }
3604
3605 static u8 __init io_apic_unique_id(u8 id)
3606 {
3607         if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3608             !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3609                 return io_apic_get_unique_id(nr_ioapics, id);
3610         else
3611                 return id;
3612 }
3613 #else
3614 static u8 __init io_apic_unique_id(u8 id)
3615 {
3616         int i;
3617         DECLARE_BITMAP(used, 256);
3618
3619         bitmap_zero(used, 256);
3620         for (i = 0; i < nr_ioapics; i++) {
3621                 __set_bit(mpc_ioapic_id(i), used);
3622         }
3623         if (!test_bit(id, used))
3624                 return id;
3625         return find_first_zero_bit(used, 256);
3626 }
3627 #endif
3628
3629 static int __init io_apic_get_version(int ioapic)
3630 {
3631         union IO_APIC_reg_01    reg_01;
3632         unsigned long flags;
3633
3634         raw_spin_lock_irqsave(&ioapic_lock, flags);
3635         reg_01.raw = io_apic_read(ioapic, 1);
3636         raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3637
3638         return reg_01.bits.version;
3639 }
3640
3641 int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity)
3642 {
3643         int ioapic, pin, idx;
3644
3645         if (skip_ioapic_setup)
3646                 return -1;
3647
3648         ioapic = mp_find_ioapic(gsi);
3649         if (ioapic < 0)
3650                 return -1;
3651
3652         pin = mp_find_ioapic_pin(ioapic, gsi);
3653         if (pin < 0)
3654                 return -1;
3655
3656         idx = find_irq_entry(ioapic, pin, mp_INT);
3657         if (idx < 0)
3658                 return -1;
3659
3660         *trigger = irq_trigger(idx);
3661         *polarity = irq_polarity(idx);
3662         return 0;
3663 }
3664
3665 /*
3666  * This function currently is only a helper for the i386 smp boot process where
3667  * we need to reprogram the ioredtbls to cater for the cpus which have come online
3668  * so mask in all cases should simply be apic->target_cpus()
3669  */
3670 #ifdef CONFIG_SMP
3671 void __init setup_ioapic_dest(void)
3672 {
3673         int pin, ioapic, irq, irq_entry;
3674         const struct cpumask *mask;
3675         struct irq_data *idata;
3676
3677         if (skip_ioapic_setup == 1)
3678                 return;
3679
3680         for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
3681         for (pin = 0; pin < ioapics[ioapic].nr_registers; pin++) {
3682                 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3683                 if (irq_entry == -1)
3684                         continue;
3685                 irq = pin_2_irq(irq_entry, ioapic, pin);
3686
3687                 if ((ioapic > 0) && (irq > 16))
3688                         continue;
3689
3690                 idata = irq_get_irq_data(irq);
3691
3692                 /*
3693                  * Honour affinities which have been set in early boot
3694                  */
3695                 if (!irqd_can_balance(idata) || irqd_affinity_was_set(idata))
3696                         mask = idata->affinity;
3697                 else
3698                         mask = apic->target_cpus();
3699
3700                 if (intr_remapping_enabled)
3701                         intr_set_affinity(idata, mask, false);
3702                 else
3703                         ioapic_set_affinity(idata, mask, false);
3704         }
3705
3706 }
3707 #endif
3708
3709 #define IOAPIC_RESOURCE_NAME_SIZE 11
3710
3711 static struct resource *ioapic_resources;
3712
3713 static struct resource * __init ioapic_setup_resources(int nr_ioapics)
3714 {
3715         unsigned long n;
3716         struct resource *res;
3717         char *mem;
3718         int i;
3719
3720         if (nr_ioapics <= 0)
3721                 return NULL;
3722
3723         n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3724         n *= nr_ioapics;
3725
3726         mem = alloc_bootmem(n);
3727         res = (void *)mem;
3728
3729         mem += sizeof(struct resource) * nr_ioapics;
3730
3731         for (i = 0; i < nr_ioapics; i++) {
3732                 res[i].name = mem;
3733                 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
3734                 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
3735                 mem += IOAPIC_RESOURCE_NAME_SIZE;
3736         }
3737
3738         ioapic_resources = res;
3739
3740         return res;
3741 }
3742
3743 void __init ioapic_and_gsi_init(void)
3744 {
3745         io_apic_ops.init();
3746 }
3747
3748 static void __init __ioapic_init_mappings(void)
3749 {
3750         unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
3751         struct resource *ioapic_res;
3752         int i;
3753
3754         ioapic_res = ioapic_setup_resources(nr_ioapics);
3755         for (i = 0; i < nr_ioapics; i++) {
3756                 if (smp_found_config) {
3757                         ioapic_phys = mpc_ioapic_addr(i);
3758 #ifdef CONFIG_X86_32
3759                         if (!ioapic_phys) {
3760                                 printk(KERN_ERR
3761                                        "WARNING: bogus zero IO-APIC "
3762                                        "address found in MPTABLE, "
3763                                        "disabling IO/APIC support!\n");
3764                                 smp_found_config = 0;
3765                                 skip_ioapic_setup = 1;
3766                                 goto fake_ioapic_page;
3767                         }
3768 #endif
3769                 } else {
3770 #ifdef CONFIG_X86_32
3771 fake_ioapic_page:
3772 #endif
3773                         ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
3774                         ioapic_phys = __pa(ioapic_phys);
3775                 }
3776                 set_fixmap_nocache(idx, ioapic_phys);
3777                 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
3778                         __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
3779                         ioapic_phys);
3780                 idx++;
3781
3782                 ioapic_res->start = ioapic_phys;
3783                 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
3784                 ioapic_res++;
3785         }
3786
3787         probe_nr_irqs_gsi();
3788 }
3789
3790 void __init ioapic_insert_resources(void)
3791 {
3792         int i;
3793         struct resource *r = ioapic_resources;
3794
3795         if (!r) {
3796                 if (nr_ioapics > 0)
3797                         printk(KERN_ERR
3798                                 "IO APIC resources couldn't be allocated.\n");
3799                 return;
3800         }
3801
3802         for (i = 0; i < nr_ioapics; i++) {
3803                 insert_resource(&iomem_resource, r);
3804                 r++;
3805         }
3806 }
3807
3808 int mp_find_ioapic(u32 gsi)
3809 {
3810         int i = 0;
3811
3812         if (nr_ioapics == 0)
3813                 return -1;
3814
3815         /* Find the IOAPIC that manages this GSI. */
3816         for (i = 0; i < nr_ioapics; i++) {
3817                 struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(i);
3818                 if ((gsi >= gsi_cfg->gsi_base)
3819                     && (gsi <= gsi_cfg->gsi_end))
3820                         return i;
3821         }
3822
3823         printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
3824         return -1;
3825 }
3826
3827 int mp_find_ioapic_pin(int ioapic, u32 gsi)
3828 {
3829         struct mp_ioapic_gsi *gsi_cfg;
3830
3831         if (WARN_ON(ioapic == -1))
3832                 return -1;
3833
3834         gsi_cfg = mp_ioapic_gsi_routing(ioapic);
3835         if (WARN_ON(gsi > gsi_cfg->gsi_end))
3836                 return -1;
3837
3838         return gsi - gsi_cfg->gsi_base;
3839 }
3840
3841 static __init int bad_ioapic(unsigned long address)
3842 {
3843         if (nr_ioapics >= MAX_IO_APICS) {
3844                 pr_warn("WARNING: Max # of I/O APICs (%d) exceeded (found %d), skipping\n",
3845                         MAX_IO_APICS, nr_ioapics);
3846                 return 1;
3847         }
3848         if (!address) {
3849                 pr_warn("WARNING: Bogus (zero) I/O APIC address found in table, skipping!\n");
3850                 return 1;
3851         }
3852         return 0;
3853 }
3854
3855 static __init int bad_ioapic_register(int idx)
3856 {
3857         union IO_APIC_reg_00 reg_00;
3858         union IO_APIC_reg_01 reg_01;
3859         union IO_APIC_reg_02 reg_02;
3860
3861         reg_00.raw = io_apic_read(idx, 0);
3862         reg_01.raw = io_apic_read(idx, 1);
3863         reg_02.raw = io_apic_read(idx, 2);
3864
3865         if (reg_00.raw == -1 && reg_01.raw == -1 && reg_02.raw == -1) {
3866                 pr_warn("I/O APIC 0x%x registers return all ones, skipping!\n",
3867                         mpc_ioapic_addr(idx));
3868                 return 1;
3869         }
3870
3871         return 0;
3872 }
3873
3874 void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
3875 {
3876         int idx = 0;
3877         int entries;
3878         struct mp_ioapic_gsi *gsi_cfg;
3879
3880         if (bad_ioapic(address))
3881                 return;
3882
3883         idx = nr_ioapics;
3884
3885         ioapics[idx].mp_config.type = MP_IOAPIC;
3886         ioapics[idx].mp_config.flags = MPC_APIC_USABLE;
3887         ioapics[idx].mp_config.apicaddr = address;
3888
3889         set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
3890
3891         if (bad_ioapic_register(idx)) {
3892                 clear_fixmap(FIX_IO_APIC_BASE_0 + idx);
3893                 return;
3894         }
3895
3896         ioapics[idx].mp_config.apicid = io_apic_unique_id(id);
3897         ioapics[idx].mp_config.apicver = io_apic_get_version(idx);
3898
3899         /*
3900          * Build basic GSI lookup table to facilitate gsi->io_apic lookups
3901          * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
3902          */
3903         entries = io_apic_get_redir_entries(idx);
3904         gsi_cfg = mp_ioapic_gsi_routing(idx);
3905         gsi_cfg->gsi_base = gsi_base;
3906         gsi_cfg->gsi_end = gsi_base + entries - 1;
3907
3908         /*
3909          * The number of IO-APIC IRQ registers (== #pins):
3910          */
3911         ioapics[idx].nr_registers = entries;
3912
3913         if (gsi_cfg->gsi_end >= gsi_top)
3914                 gsi_top = gsi_cfg->gsi_end + 1;
3915
3916         pr_info("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, GSI %d-%d\n",
3917                 idx, mpc_ioapic_id(idx),
3918                 mpc_ioapic_ver(idx), mpc_ioapic_addr(idx),
3919                 gsi_cfg->gsi_base, gsi_cfg->gsi_end);
3920
3921         nr_ioapics++;
3922 }
3923
3924 /* Enable IOAPIC early just for system timer */
3925 void __init pre_init_apic_IRQ0(void)
3926 {
3927         struct io_apic_irq_attr attr = { 0, 0, 0, 0 };
3928
3929         printk(KERN_INFO "Early APIC setup for system timer0\n");
3930 #ifndef CONFIG_SMP
3931         physid_set_mask_of_physid(boot_cpu_physical_apicid,
3932                                          &phys_cpu_present_map);
3933 #endif
3934         setup_local_APIC();
3935
3936         io_apic_setup_irq_pin(0, 0, &attr);
3937         irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
3938                                       "edge");
3939 }