[PATCH] x86_64 irq: Begin consolidating per_irq data in structures.
[linux-drm-fsl-dcu.git] / arch / x86_64 / kernel / io_apic.c
1 /*
2  *      Intel IO-APIC support for multi-Pentium hosts.
3  *
4  *      Copyright (C) 1997, 1998, 1999, 2000 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/smp_lock.h>
29 #include <linux/pci.h>
30 #include <linux/mc146818rtc.h>
31 #include <linux/acpi.h>
32 #include <linux/sysdev.h>
33 #include <linux/msi.h>
34 #include <linux/htirq.h>
35 #ifdef CONFIG_ACPI
36 #include <acpi/acpi_bus.h>
37 #endif
38
39 #include <asm/io.h>
40 #include <asm/smp.h>
41 #include <asm/desc.h>
42 #include <asm/proto.h>
43 #include <asm/mach_apic.h>
44 #include <asm/acpi.h>
45 #include <asm/dma.h>
46 #include <asm/nmi.h>
47 #include <asm/msidef.h>
48 #include <asm/hypertransport.h>
49
50 struct irq_cfg {
51         cpumask_t domain;
52         u8 vector;
53 };
54
55 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
56 struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = {
57         [0] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 0 },
58         [1] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 1 },
59         [2] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 2 },
60         [3] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 3 },
61         [4] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 4 },
62         [5] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 5 },
63         [6] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 6 },
64         [7] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 7 },
65         [8] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 8 },
66         [9] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 9 },
67         [10] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 10 },
68         [11] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 11 },
69         [12] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 12 },
70         [13] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 13 },
71         [14] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 14 },
72         [15] = { .domain = CPU_MASK_ALL, .vector = FIRST_EXTERNAL_VECTOR + 15 },
73 };
74
75 static int assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result);
76
77 #define __apicdebuginit  __init
78
79 int sis_apic_bug; /* not actually supported, dummy for compile */
80
81 static int no_timer_check;
82
83 static int disable_timer_pin_1 __initdata;
84
85 int timer_over_8254 __initdata = 1;
86
87 /* Where if anywhere is the i8259 connect in external int mode */
88 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
89
90 static DEFINE_SPINLOCK(ioapic_lock);
91 DEFINE_SPINLOCK(vector_lock);
92
93 /*
94  * # of IRQ routing registers
95  */
96 int nr_ioapic_registers[MAX_IO_APICS];
97
98 /*
99  * Rough estimation of how many shared IRQs there are, can
100  * be changed anytime.
101  */
102 #define MAX_PLUS_SHARED_IRQS NR_IRQS
103 #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
104
105 /*
106  * This is performance-critical, we want to do it O(1)
107  *
108  * the indexing order of this array favors 1:1 mappings
109  * between pins and IRQs.
110  */
111
112 static struct irq_pin_list {
113         short apic, pin, next;
114 } irq_2_pin[PIN_MAP_SIZE];
115
116 struct io_apic {
117         unsigned int index;
118         unsigned int unused[3];
119         unsigned int data;
120 };
121
122 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
123 {
124         return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
125                 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
126 }
127
128 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
129 {
130         struct io_apic __iomem *io_apic = io_apic_base(apic);
131         writel(reg, &io_apic->index);
132         return readl(&io_apic->data);
133 }
134
135 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
136 {
137         struct io_apic __iomem *io_apic = io_apic_base(apic);
138         writel(reg, &io_apic->index);
139         writel(value, &io_apic->data);
140 }
141
142 /*
143  * Re-write a value: to be used for read-modify-write
144  * cycles where the read already set up the index register.
145  */
146 static inline void io_apic_modify(unsigned int apic, unsigned int value)
147 {
148         struct io_apic __iomem *io_apic = io_apic_base(apic);
149         writel(value, &io_apic->data);
150 }
151
152 /*
153  * Synchronize the IO-APIC and the CPU by doing
154  * a dummy read from the IO-APIC
155  */
156 static inline void io_apic_sync(unsigned int apic)
157 {
158         struct io_apic __iomem *io_apic = io_apic_base(apic);
159         readl(&io_apic->data);
160 }
161
162 #define __DO_ACTION(R, ACTION, FINAL)                                   \
163                                                                         \
164 {                                                                       \
165         int pin;                                                        \
166         struct irq_pin_list *entry = irq_2_pin + irq;                   \
167                                                                         \
168         BUG_ON(irq >= NR_IRQS);                                         \
169         for (;;) {                                                      \
170                 unsigned int reg;                                       \
171                 pin = entry->pin;                                       \
172                 if (pin == -1)                                          \
173                         break;                                          \
174                 reg = io_apic_read(entry->apic, 0x10 + R + pin*2);      \
175                 reg ACTION;                                             \
176                 io_apic_modify(entry->apic, reg);                       \
177                 FINAL;                                                  \
178                 if (!entry->next)                                       \
179                         break;                                          \
180                 entry = irq_2_pin + entry->next;                        \
181         }                                                               \
182 }
183
184 union entry_union {
185         struct { u32 w1, w2; };
186         struct IO_APIC_route_entry entry;
187 };
188
189 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
190 {
191         union entry_union eu;
192         unsigned long flags;
193         spin_lock_irqsave(&ioapic_lock, flags);
194         eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
195         eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
196         spin_unlock_irqrestore(&ioapic_lock, flags);
197         return eu.entry;
198 }
199
200 /*
201  * When we write a new IO APIC routing entry, we need to write the high
202  * word first! If the mask bit in the low word is clear, we will enable
203  * the interrupt, and we need to make sure the entry is fully populated
204  * before that happens.
205  */
206 static void
207 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
208 {
209         union entry_union eu;
210         eu.entry = e;
211         io_apic_write(apic, 0x11 + 2*pin, eu.w2);
212         io_apic_write(apic, 0x10 + 2*pin, eu.w1);
213 }
214
215 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
216 {
217         unsigned long flags;
218         spin_lock_irqsave(&ioapic_lock, flags);
219         __ioapic_write_entry(apic, pin, e);
220         spin_unlock_irqrestore(&ioapic_lock, flags);
221 }
222
223 /*
224  * When we mask an IO APIC routing entry, we need to write the low
225  * word first, in order to set the mask bit before we change the
226  * high bits!
227  */
228 static void ioapic_mask_entry(int apic, int pin)
229 {
230         unsigned long flags;
231         union entry_union eu = { .entry.mask = 1 };
232
233         spin_lock_irqsave(&ioapic_lock, flags);
234         io_apic_write(apic, 0x10 + 2*pin, eu.w1);
235         io_apic_write(apic, 0x11 + 2*pin, eu.w2);
236         spin_unlock_irqrestore(&ioapic_lock, flags);
237 }
238
239 #ifdef CONFIG_SMP
240 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
241 {
242         int apic, pin;
243         struct irq_pin_list *entry = irq_2_pin + irq;
244
245         BUG_ON(irq >= NR_IRQS);
246         for (;;) {
247                 unsigned int reg;
248                 apic = entry->apic;
249                 pin = entry->pin;
250                 if (pin == -1)
251                         break;
252                 io_apic_write(apic, 0x11 + pin*2, dest);
253                 reg = io_apic_read(apic, 0x10 + pin*2);
254                 reg &= ~0x000000ff;
255                 reg |= vector;
256                 io_apic_modify(apic, reg);
257                 if (!entry->next)
258                         break;
259                 entry = irq_2_pin + entry->next;
260         }
261 }
262
263 static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
264 {
265         unsigned long flags;
266         unsigned int dest;
267         cpumask_t tmp;
268         int vector;
269
270         cpus_and(tmp, mask, cpu_online_map);
271         if (cpus_empty(tmp))
272                 return;
273
274         vector = assign_irq_vector(irq, mask, &tmp);
275         if (vector < 0)
276                 return;
277
278         dest = cpu_mask_to_apicid(tmp);
279
280         /*
281          * Only the high 8 bits are valid.
282          */
283         dest = SET_APIC_LOGICAL_ID(dest);
284
285         spin_lock_irqsave(&ioapic_lock, flags);
286         __target_IO_APIC_irq(irq, dest, vector);
287         irq_desc[irq].affinity = mask;
288         spin_unlock_irqrestore(&ioapic_lock, flags);
289 }
290 #endif
291
292 /*
293  * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
294  * shared ISA-space IRQs, so we have to support them. We are super
295  * fast in the common case, and fast for shared ISA-space IRQs.
296  */
297 static void add_pin_to_irq(unsigned int irq, int apic, int pin)
298 {
299         static int first_free_entry = NR_IRQS;
300         struct irq_pin_list *entry = irq_2_pin + irq;
301
302         BUG_ON(irq >= NR_IRQS);
303         while (entry->next)
304                 entry = irq_2_pin + entry->next;
305
306         if (entry->pin != -1) {
307                 entry->next = first_free_entry;
308                 entry = irq_2_pin + entry->next;
309                 if (++first_free_entry >= PIN_MAP_SIZE)
310                         panic("io_apic.c: ran out of irq_2_pin entries!");
311         }
312         entry->apic = apic;
313         entry->pin = pin;
314 }
315
316
317 #define DO_ACTION(name,R,ACTION, FINAL)                                 \
318                                                                         \
319         static void name##_IO_APIC_irq (unsigned int irq)               \
320         __DO_ACTION(R, ACTION, FINAL)
321
322 DO_ACTION( __mask,             0, |= 0x00010000, io_apic_sync(entry->apic) )
323                                                 /* mask = 1 */
324 DO_ACTION( __unmask,           0, &= 0xfffeffff, )
325                                                 /* mask = 0 */
326
327 static void mask_IO_APIC_irq (unsigned int irq)
328 {
329         unsigned long flags;
330
331         spin_lock_irqsave(&ioapic_lock, flags);
332         __mask_IO_APIC_irq(irq);
333         spin_unlock_irqrestore(&ioapic_lock, flags);
334 }
335
336 static void unmask_IO_APIC_irq (unsigned int irq)
337 {
338         unsigned long flags;
339
340         spin_lock_irqsave(&ioapic_lock, flags);
341         __unmask_IO_APIC_irq(irq);
342         spin_unlock_irqrestore(&ioapic_lock, flags);
343 }
344
345 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
346 {
347         struct IO_APIC_route_entry entry;
348
349         /* Check delivery_mode to be sure we're not clearing an SMI pin */
350         entry = ioapic_read_entry(apic, pin);
351         if (entry.delivery_mode == dest_SMI)
352                 return;
353         /*
354          * Disable it in the IO-APIC irq-routing table:
355          */
356         ioapic_mask_entry(apic, pin);
357 }
358
359 static void clear_IO_APIC (void)
360 {
361         int apic, pin;
362
363         for (apic = 0; apic < nr_ioapics; apic++)
364                 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
365                         clear_IO_APIC_pin(apic, pin);
366 }
367
368 int skip_ioapic_setup;
369 int ioapic_force;
370
371 /* dummy parsing: see setup.c */
372
373 static int __init disable_ioapic_setup(char *str)
374 {
375         skip_ioapic_setup = 1;
376         return 0;
377 }
378 early_param("noapic", disable_ioapic_setup);
379
380 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
381 static int __init disable_timer_pin_setup(char *arg)
382 {
383         disable_timer_pin_1 = 1;
384         return 1;
385 }
386 __setup("disable_timer_pin_1", disable_timer_pin_setup);
387
388 static int __init setup_disable_8254_timer(char *s)
389 {
390         timer_over_8254 = -1;
391         return 1;
392 }
393 static int __init setup_enable_8254_timer(char *s)
394 {
395         timer_over_8254 = 2;
396         return 1;
397 }
398
399 __setup("disable_8254_timer", setup_disable_8254_timer);
400 __setup("enable_8254_timer", setup_enable_8254_timer);
401
402
403 /*
404  * Find the IRQ entry number of a certain pin.
405  */
406 static int find_irq_entry(int apic, int pin, int type)
407 {
408         int i;
409
410         for (i = 0; i < mp_irq_entries; i++)
411                 if (mp_irqs[i].mpc_irqtype == type &&
412                     (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
413                      mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
414                     mp_irqs[i].mpc_dstirq == pin)
415                         return i;
416
417         return -1;
418 }
419
420 /*
421  * Find the pin to which IRQ[irq] (ISA) is connected
422  */
423 static int __init find_isa_irq_pin(int irq, int type)
424 {
425         int i;
426
427         for (i = 0; i < mp_irq_entries; i++) {
428                 int lbus = mp_irqs[i].mpc_srcbus;
429
430                 if (test_bit(lbus, mp_bus_not_pci) &&
431                     (mp_irqs[i].mpc_irqtype == type) &&
432                     (mp_irqs[i].mpc_srcbusirq == irq))
433
434                         return mp_irqs[i].mpc_dstirq;
435         }
436         return -1;
437 }
438
439 static int __init find_isa_irq_apic(int irq, int type)
440 {
441         int i;
442
443         for (i = 0; i < mp_irq_entries; i++) {
444                 int lbus = mp_irqs[i].mpc_srcbus;
445
446                 if (test_bit(lbus, mp_bus_not_pci) &&
447                     (mp_irqs[i].mpc_irqtype == type) &&
448                     (mp_irqs[i].mpc_srcbusirq == irq))
449                         break;
450         }
451         if (i < mp_irq_entries) {
452                 int apic;
453                 for(apic = 0; apic < nr_ioapics; apic++) {
454                         if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
455                                 return apic;
456                 }
457         }
458
459         return -1;
460 }
461
462 /*
463  * Find a specific PCI IRQ entry.
464  * Not an __init, possibly needed by modules
465  */
466 static int pin_2_irq(int idx, int apic, int pin);
467
468 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
469 {
470         int apic, i, best_guess = -1;
471
472         apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
473                 bus, slot, pin);
474         if (mp_bus_id_to_pci_bus[bus] == -1) {
475                 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
476                 return -1;
477         }
478         for (i = 0; i < mp_irq_entries; i++) {
479                 int lbus = mp_irqs[i].mpc_srcbus;
480
481                 for (apic = 0; apic < nr_ioapics; apic++)
482                         if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
483                             mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
484                                 break;
485
486                 if (!test_bit(lbus, mp_bus_not_pci) &&
487                     !mp_irqs[i].mpc_irqtype &&
488                     (bus == lbus) &&
489                     (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
490                         int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
491
492                         if (!(apic || IO_APIC_IRQ(irq)))
493                                 continue;
494
495                         if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
496                                 return irq;
497                         /*
498                          * Use the first all-but-pin matching entry as a
499                          * best-guess fuzzy result for broken mptables.
500                          */
501                         if (best_guess < 0)
502                                 best_guess = irq;
503                 }
504         }
505         BUG_ON(best_guess >= NR_IRQS);
506         return best_guess;
507 }
508
509 /* ISA interrupts are always polarity zero edge triggered,
510  * when listed as conforming in the MP table. */
511
512 #define default_ISA_trigger(idx)        (0)
513 #define default_ISA_polarity(idx)       (0)
514
515 /* PCI interrupts are always polarity one level triggered,
516  * when listed as conforming in the MP table. */
517
518 #define default_PCI_trigger(idx)        (1)
519 #define default_PCI_polarity(idx)       (1)
520
521 static int __init MPBIOS_polarity(int idx)
522 {
523         int bus = mp_irqs[idx].mpc_srcbus;
524         int polarity;
525
526         /*
527          * Determine IRQ line polarity (high active or low active):
528          */
529         switch (mp_irqs[idx].mpc_irqflag & 3)
530         {
531                 case 0: /* conforms, ie. bus-type dependent polarity */
532                         if (test_bit(bus, mp_bus_not_pci))
533                                 polarity = default_ISA_polarity(idx);
534                         else
535                                 polarity = default_PCI_polarity(idx);
536                         break;
537                 case 1: /* high active */
538                 {
539                         polarity = 0;
540                         break;
541                 }
542                 case 2: /* reserved */
543                 {
544                         printk(KERN_WARNING "broken BIOS!!\n");
545                         polarity = 1;
546                         break;
547                 }
548                 case 3: /* low active */
549                 {
550                         polarity = 1;
551                         break;
552                 }
553                 default: /* invalid */
554                 {
555                         printk(KERN_WARNING "broken BIOS!!\n");
556                         polarity = 1;
557                         break;
558                 }
559         }
560         return polarity;
561 }
562
563 static int MPBIOS_trigger(int idx)
564 {
565         int bus = mp_irqs[idx].mpc_srcbus;
566         int trigger;
567
568         /*
569          * Determine IRQ trigger mode (edge or level sensitive):
570          */
571         switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
572         {
573                 case 0: /* conforms, ie. bus-type dependent */
574                         if (test_bit(bus, mp_bus_not_pci))
575                                 trigger = default_ISA_trigger(idx);
576                         else
577                                 trigger = default_PCI_trigger(idx);
578                         break;
579                 case 1: /* edge */
580                 {
581                         trigger = 0;
582                         break;
583                 }
584                 case 2: /* reserved */
585                 {
586                         printk(KERN_WARNING "broken BIOS!!\n");
587                         trigger = 1;
588                         break;
589                 }
590                 case 3: /* level */
591                 {
592                         trigger = 1;
593                         break;
594                 }
595                 default: /* invalid */
596                 {
597                         printk(KERN_WARNING "broken BIOS!!\n");
598                         trigger = 0;
599                         break;
600                 }
601         }
602         return trigger;
603 }
604
605 static inline int irq_polarity(int idx)
606 {
607         return MPBIOS_polarity(idx);
608 }
609
610 static inline int irq_trigger(int idx)
611 {
612         return MPBIOS_trigger(idx);
613 }
614
615 static int pin_2_irq(int idx, int apic, int pin)
616 {
617         int irq, i;
618         int bus = mp_irqs[idx].mpc_srcbus;
619
620         /*
621          * Debugging check, we are in big trouble if this message pops up!
622          */
623         if (mp_irqs[idx].mpc_dstirq != pin)
624                 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
625
626         if (test_bit(bus, mp_bus_not_pci)) {
627                 irq = mp_irqs[idx].mpc_srcbusirq;
628         } else {
629                 /*
630                  * PCI IRQs are mapped in order
631                  */
632                 i = irq = 0;
633                 while (i < apic)
634                         irq += nr_ioapic_registers[i++];
635                 irq += pin;
636         }
637         BUG_ON(irq >= NR_IRQS);
638         return irq;
639 }
640
641 static int __assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
642 {
643         /*
644          * NOTE! The local APIC isn't very good at handling
645          * multiple interrupts at the same interrupt level.
646          * As the interrupt level is determined by taking the
647          * vector number and shifting that right by 4, we
648          * want to spread these out a bit so that they don't
649          * all fall in the same interrupt level.
650          *
651          * Also, we've got to be careful not to trash gate
652          * 0x80, because int 0x80 is hm, kind of importantish. ;)
653          */
654         static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
655         cpumask_t old_mask = CPU_MASK_NONE;
656         int old_vector = -1;
657         int cpu;
658         struct irq_cfg *cfg;
659
660         BUG_ON((unsigned)irq >= NR_IRQS);
661         cfg = &irq_cfg[irq];
662
663         /* Only try and allocate irqs on cpus that are present */
664         cpus_and(mask, mask, cpu_online_map);
665
666         if (cfg->vector > 0)
667                 old_vector = cfg->vector;
668         if (old_vector > 0) {
669                 cpus_and(*result, cfg->domain, mask);
670                 if (!cpus_empty(*result))
671                         return old_vector;
672                 cpus_and(old_mask, cfg->domain, cpu_online_map);
673         }
674
675         for_each_cpu_mask(cpu, mask) {
676                 cpumask_t domain, new_mask;
677                 int new_cpu, old_cpu;
678                 int vector, offset;
679
680                 domain = vector_allocation_domain(cpu);
681                 cpus_and(new_mask, domain, cpu_online_map);
682
683                 vector = current_vector;
684                 offset = current_offset;
685 next:
686                 vector += 8;
687                 if (vector >= FIRST_SYSTEM_VECTOR) {
688                         /* If we run out of vectors on large boxen, must share them. */
689                         offset = (offset + 1) % 8;
690                         vector = FIRST_DEVICE_VECTOR + offset;
691                 }
692                 if (unlikely(current_vector == vector))
693                         continue;
694                 if (vector == IA32_SYSCALL_VECTOR)
695                         goto next;
696                 for_each_cpu_mask(new_cpu, new_mask)
697                         if (per_cpu(vector_irq, new_cpu)[vector] != -1)
698                                 goto next;
699                 /* Found one! */
700                 current_vector = vector;
701                 current_offset = offset;
702                 for_each_cpu_mask(old_cpu, old_mask)
703                         per_cpu(vector_irq, old_cpu)[old_vector] = -1;
704                 for_each_cpu_mask(new_cpu, new_mask)
705                         per_cpu(vector_irq, new_cpu)[vector] = irq;
706                 cfg->vector = vector;
707                 cfg->domain = domain;
708                 cpus_and(*result, domain, mask);
709                 return vector;
710         }
711         return -ENOSPC;
712 }
713
714 static int assign_irq_vector(int irq, cpumask_t mask, cpumask_t *result)
715 {
716         int vector;
717         unsigned long flags;
718
719         spin_lock_irqsave(&vector_lock, flags);
720         vector = __assign_irq_vector(irq, mask, result);
721         spin_unlock_irqrestore(&vector_lock, flags);
722         return vector;
723 }
724
725 static void __clear_irq_vector(int irq)
726 {
727         struct irq_cfg *cfg;
728         cpumask_t mask;
729         int cpu, vector;
730
731         BUG_ON((unsigned)irq >= NR_IRQS);
732         cfg = &irq_cfg[irq];
733         BUG_ON(!cfg->vector);
734
735         vector = cfg->vector;
736         cpus_and(mask, cfg->domain, cpu_online_map);
737         for_each_cpu_mask(cpu, mask)
738                 per_cpu(vector_irq, cpu)[vector] = -1;
739
740         cfg->vector = 0;
741         cfg->domain = CPU_MASK_NONE;
742 }
743
744 void __setup_vector_irq(int cpu)
745 {
746         /* Initialize vector_irq on a new cpu */
747         /* This function must be called with vector_lock held */
748         int irq, vector;
749
750         /* Mark the inuse vectors */
751         for (irq = 0; irq < NR_IRQS; ++irq) {
752                 if (!cpu_isset(cpu, irq_cfg[irq].domain))
753                         continue;
754                 vector = irq_cfg[irq].vector;
755                 per_cpu(vector_irq, cpu)[vector] = irq;
756         }
757         /* Mark the free vectors */
758         for (vector = 0; vector < NR_VECTORS; ++vector) {
759                 irq = per_cpu(vector_irq, cpu)[vector];
760                 if (irq < 0)
761                         continue;
762                 if (!cpu_isset(cpu, irq_cfg[irq].domain))
763                         per_cpu(vector_irq, cpu)[vector] = -1;
764         }
765 }
766
767
768 static struct irq_chip ioapic_chip;
769
770 static void ioapic_register_intr(int irq, unsigned long trigger)
771 {
772         if (trigger)
773                 set_irq_chip_and_handler_name(irq, &ioapic_chip,
774                                               handle_fasteoi_irq, "fasteoi");
775         else
776                 set_irq_chip_and_handler_name(irq, &ioapic_chip,
777                                               handle_edge_irq, "edge");
778 }
779
780 static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
781                               int trigger, int polarity)
782 {
783         struct IO_APIC_route_entry entry;
784         cpumask_t mask;
785         int vector;
786         unsigned long flags;
787
788         if (!IO_APIC_IRQ(irq))
789                 return;
790
791         vector = assign_irq_vector(irq, TARGET_CPUS, &mask);
792         if (vector < 0)
793                 return;
794
795         apic_printk(APIC_VERBOSE,KERN_DEBUG
796                     "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
797                     "IRQ %d Mode:%i Active:%i)\n",
798                     apic, mp_ioapics[apic].mpc_apicid, pin, vector,
799                     irq, trigger, polarity);
800
801         /*
802          * add it to the IO-APIC irq-routing table:
803          */
804         memset(&entry,0,sizeof(entry));
805
806         entry.delivery_mode = INT_DELIVERY_MODE;
807         entry.dest_mode = INT_DEST_MODE;
808         entry.dest = cpu_mask_to_apicid(mask);
809         entry.mask = 0;                         /* enable IRQ */
810         entry.trigger = trigger;
811         entry.polarity = polarity;
812         entry.vector = vector;
813
814         /* Mask level triggered irqs.
815          * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
816          */
817         if (trigger)
818                 entry.mask = 1;
819
820         ioapic_register_intr(irq, trigger);
821         if (irq < 16)
822                 disable_8259A_irq(irq);
823
824         ioapic_write_entry(apic, pin, entry);
825
826         spin_lock_irqsave(&ioapic_lock, flags);
827         irq_desc[irq].affinity = TARGET_CPUS;
828         spin_unlock_irqrestore(&ioapic_lock, flags);
829 }
830
831 static void __init setup_IO_APIC_irqs(void)
832 {
833         int apic, pin, idx, irq, first_notcon = 1;
834
835         apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
836
837         for (apic = 0; apic < nr_ioapics; apic++) {
838         for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
839
840                 idx = find_irq_entry(apic,pin,mp_INT);
841                 if (idx == -1) {
842                         if (first_notcon) {
843                                 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
844                                 first_notcon = 0;
845                         } else
846                                 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
847                         continue;
848                 }
849
850                 irq = pin_2_irq(idx, apic, pin);
851                 add_pin_to_irq(irq, apic, pin);
852
853                 setup_IO_APIC_irq(apic, pin, irq,
854                                   irq_trigger(idx), irq_polarity(idx));
855         }
856         }
857
858         if (!first_notcon)
859                 apic_printk(APIC_VERBOSE," not connected.\n");
860 }
861
862 /*
863  * Set up the 8259A-master output pin as broadcast to all
864  * CPUs.
865  */
866 static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
867 {
868         struct IO_APIC_route_entry entry;
869         unsigned long flags;
870
871         memset(&entry,0,sizeof(entry));
872
873         disable_8259A_irq(0);
874
875         /* mask LVT0 */
876         apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
877
878         /*
879          * We use logical delivery to get the timer IRQ
880          * to the first CPU.
881          */
882         entry.dest_mode = INT_DEST_MODE;
883         entry.mask = 0;                                 /* unmask IRQ now */
884         entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
885         entry.delivery_mode = INT_DELIVERY_MODE;
886         entry.polarity = 0;
887         entry.trigger = 0;
888         entry.vector = vector;
889
890         /*
891          * The timer IRQ doesn't have to know that behind the
892          * scene we have a 8259A-master in AEOI mode ...
893          */
894         set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
895
896         /*
897          * Add it to the IO-APIC irq-routing table:
898          */
899         spin_lock_irqsave(&ioapic_lock, flags);
900         io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
901         io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
902         spin_unlock_irqrestore(&ioapic_lock, flags);
903
904         enable_8259A_irq(0);
905 }
906
907 void __init UNEXPECTED_IO_APIC(void)
908 {
909 }
910
911 void __apicdebuginit print_IO_APIC(void)
912 {
913         int apic, i;
914         union IO_APIC_reg_00 reg_00;
915         union IO_APIC_reg_01 reg_01;
916         union IO_APIC_reg_02 reg_02;
917         unsigned long flags;
918
919         if (apic_verbosity == APIC_QUIET)
920                 return;
921
922         printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
923         for (i = 0; i < nr_ioapics; i++)
924                 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
925                        mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
926
927         /*
928          * We are a bit conservative about what we expect.  We have to
929          * know about every hardware change ASAP.
930          */
931         printk(KERN_INFO "testing the IO APIC.......................\n");
932
933         for (apic = 0; apic < nr_ioapics; apic++) {
934
935         spin_lock_irqsave(&ioapic_lock, flags);
936         reg_00.raw = io_apic_read(apic, 0);
937         reg_01.raw = io_apic_read(apic, 1);
938         if (reg_01.bits.version >= 0x10)
939                 reg_02.raw = io_apic_read(apic, 2);
940         spin_unlock_irqrestore(&ioapic_lock, flags);
941
942         printk("\n");
943         printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
944         printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
945         printk(KERN_DEBUG ".......    : physical APIC id: %02X\n", reg_00.bits.ID);
946         if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
947                 UNEXPECTED_IO_APIC();
948
949         printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
950         printk(KERN_DEBUG ".......     : max redirection entries: %04X\n", reg_01.bits.entries);
951         if (    (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
952                 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
953                 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
954                 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
955                 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
956                 (reg_01.bits.entries != 0x2E) &&
957                 (reg_01.bits.entries != 0x3F) &&
958                 (reg_01.bits.entries != 0x03) 
959         )
960                 UNEXPECTED_IO_APIC();
961
962         printk(KERN_DEBUG ".......     : PRQ implemented: %X\n", reg_01.bits.PRQ);
963         printk(KERN_DEBUG ".......     : IO APIC version: %04X\n", reg_01.bits.version);
964         if (    (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
965                 (reg_01.bits.version != 0x02) && /* 82801BA IO-APICs (ICH2) */
966                 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
967                 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
968                 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
969                 (reg_01.bits.version != 0x20)    /* Intel P64H (82806 AA) */
970         )
971                 UNEXPECTED_IO_APIC();
972         if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
973                 UNEXPECTED_IO_APIC();
974
975         if (reg_01.bits.version >= 0x10) {
976                 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
977                 printk(KERN_DEBUG ".......     : arbitration: %02X\n", reg_02.bits.arbitration);
978                 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
979                         UNEXPECTED_IO_APIC();
980         }
981
982         printk(KERN_DEBUG ".... IRQ redirection table:\n");
983
984         printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
985                           " Stat Dmod Deli Vect:   \n");
986
987         for (i = 0; i <= reg_01.bits.entries; i++) {
988                 struct IO_APIC_route_entry entry;
989
990                 entry = ioapic_read_entry(apic, i);
991
992                 printk(KERN_DEBUG " %02x %03X ",
993                         i,
994                         entry.dest
995                 );
996
997                 printk("%1d    %1d    %1d   %1d   %1d    %1d    %1d    %02X\n",
998                         entry.mask,
999                         entry.trigger,
1000                         entry.irr,
1001                         entry.polarity,
1002                         entry.delivery_status,
1003                         entry.dest_mode,
1004                         entry.delivery_mode,
1005                         entry.vector
1006                 );
1007         }
1008         }
1009         printk(KERN_DEBUG "IRQ to pin mappings:\n");
1010         for (i = 0; i < NR_IRQS; i++) {
1011                 struct irq_pin_list *entry = irq_2_pin + i;
1012                 if (entry->pin < 0)
1013                         continue;
1014                 printk(KERN_DEBUG "IRQ%d ", i);
1015                 for (;;) {
1016                         printk("-> %d:%d", entry->apic, entry->pin);
1017                         if (!entry->next)
1018                                 break;
1019                         entry = irq_2_pin + entry->next;
1020                 }
1021                 printk("\n");
1022         }
1023
1024         printk(KERN_INFO ".................................... done.\n");
1025
1026         return;
1027 }
1028
1029 #if 0
1030
1031 static __apicdebuginit void print_APIC_bitfield (int base)
1032 {
1033         unsigned int v;
1034         int i, j;
1035
1036         if (apic_verbosity == APIC_QUIET)
1037                 return;
1038
1039         printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1040         for (i = 0; i < 8; i++) {
1041                 v = apic_read(base + i*0x10);
1042                 for (j = 0; j < 32; j++) {
1043                         if (v & (1<<j))
1044                                 printk("1");
1045                         else
1046                                 printk("0");
1047                 }
1048                 printk("\n");
1049         }
1050 }
1051
1052 void __apicdebuginit print_local_APIC(void * dummy)
1053 {
1054         unsigned int v, ver, maxlvt;
1055
1056         if (apic_verbosity == APIC_QUIET)
1057                 return;
1058
1059         printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1060                 smp_processor_id(), hard_smp_processor_id());
1061         v = apic_read(APIC_ID);
1062         printk(KERN_INFO "... APIC ID:      %08x (%01x)\n", v, GET_APIC_ID(v));
1063         v = apic_read(APIC_LVR);
1064         printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1065         ver = GET_APIC_VERSION(v);
1066         maxlvt = get_maxlvt();
1067
1068         v = apic_read(APIC_TASKPRI);
1069         printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1070
1071         v = apic_read(APIC_ARBPRI);
1072         printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1073                 v & APIC_ARBPRI_MASK);
1074         v = apic_read(APIC_PROCPRI);
1075         printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1076
1077         v = apic_read(APIC_EOI);
1078         printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1079         v = apic_read(APIC_RRR);
1080         printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1081         v = apic_read(APIC_LDR);
1082         printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1083         v = apic_read(APIC_DFR);
1084         printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1085         v = apic_read(APIC_SPIV);
1086         printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1087
1088         printk(KERN_DEBUG "... APIC ISR field:\n");
1089         print_APIC_bitfield(APIC_ISR);
1090         printk(KERN_DEBUG "... APIC TMR field:\n");
1091         print_APIC_bitfield(APIC_TMR);
1092         printk(KERN_DEBUG "... APIC IRR field:\n");
1093         print_APIC_bitfield(APIC_IRR);
1094
1095         v = apic_read(APIC_ESR);
1096         printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1097
1098         v = apic_read(APIC_ICR);
1099         printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1100         v = apic_read(APIC_ICR2);
1101         printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1102
1103         v = apic_read(APIC_LVTT);
1104         printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1105
1106         if (maxlvt > 3) {                       /* PC is LVT#4. */
1107                 v = apic_read(APIC_LVTPC);
1108                 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1109         }
1110         v = apic_read(APIC_LVT0);
1111         printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1112         v = apic_read(APIC_LVT1);
1113         printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1114
1115         if (maxlvt > 2) {                       /* ERR is LVT#3. */
1116                 v = apic_read(APIC_LVTERR);
1117                 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1118         }
1119
1120         v = apic_read(APIC_TMICT);
1121         printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1122         v = apic_read(APIC_TMCCT);
1123         printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1124         v = apic_read(APIC_TDCR);
1125         printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1126         printk("\n");
1127 }
1128
1129 void print_all_local_APICs (void)
1130 {
1131         on_each_cpu(print_local_APIC, NULL, 1, 1);
1132 }
1133
1134 void __apicdebuginit print_PIC(void)
1135 {
1136         unsigned int v;
1137         unsigned long flags;
1138
1139         if (apic_verbosity == APIC_QUIET)
1140                 return;
1141
1142         printk(KERN_DEBUG "\nprinting PIC contents\n");
1143
1144         spin_lock_irqsave(&i8259A_lock, flags);
1145
1146         v = inb(0xa1) << 8 | inb(0x21);
1147         printk(KERN_DEBUG "... PIC  IMR: %04x\n", v);
1148
1149         v = inb(0xa0) << 8 | inb(0x20);
1150         printk(KERN_DEBUG "... PIC  IRR: %04x\n", v);
1151
1152         outb(0x0b,0xa0);
1153         outb(0x0b,0x20);
1154         v = inb(0xa0) << 8 | inb(0x20);
1155         outb(0x0a,0xa0);
1156         outb(0x0a,0x20);
1157
1158         spin_unlock_irqrestore(&i8259A_lock, flags);
1159
1160         printk(KERN_DEBUG "... PIC  ISR: %04x\n", v);
1161
1162         v = inb(0x4d1) << 8 | inb(0x4d0);
1163         printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1164 }
1165
1166 #endif  /*  0  */
1167
1168 static void __init enable_IO_APIC(void)
1169 {
1170         union IO_APIC_reg_01 reg_01;
1171         int i8259_apic, i8259_pin;
1172         int i, apic;
1173         unsigned long flags;
1174
1175         for (i = 0; i < PIN_MAP_SIZE; i++) {
1176                 irq_2_pin[i].pin = -1;
1177                 irq_2_pin[i].next = 0;
1178         }
1179
1180         /*
1181          * The number of IO-APIC IRQ registers (== #pins):
1182          */
1183         for (apic = 0; apic < nr_ioapics; apic++) {
1184                 spin_lock_irqsave(&ioapic_lock, flags);
1185                 reg_01.raw = io_apic_read(apic, 1);
1186                 spin_unlock_irqrestore(&ioapic_lock, flags);
1187                 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1188         }
1189         for(apic = 0; apic < nr_ioapics; apic++) {
1190                 int pin;
1191                 /* See if any of the pins is in ExtINT mode */
1192                 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1193                         struct IO_APIC_route_entry entry;
1194                         entry = ioapic_read_entry(apic, pin);
1195
1196                         /* If the interrupt line is enabled and in ExtInt mode
1197                          * I have found the pin where the i8259 is connected.
1198                          */
1199                         if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1200                                 ioapic_i8259.apic = apic;
1201                                 ioapic_i8259.pin  = pin;
1202                                 goto found_i8259;
1203                         }
1204                 }
1205         }
1206  found_i8259:
1207         /* Look to see what if the MP table has reported the ExtINT */
1208         i8259_pin  = find_isa_irq_pin(0, mp_ExtINT);
1209         i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1210         /* Trust the MP table if nothing is setup in the hardware */
1211         if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1212                 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1213                 ioapic_i8259.pin  = i8259_pin;
1214                 ioapic_i8259.apic = i8259_apic;
1215         }
1216         /* Complain if the MP table and the hardware disagree */
1217         if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1218                 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1219         {
1220                 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1221         }
1222
1223         /*
1224          * Do not trust the IO-APIC being empty at bootup
1225          */
1226         clear_IO_APIC();
1227 }
1228
1229 /*
1230  * Not an __init, needed by the reboot code
1231  */
1232 void disable_IO_APIC(void)
1233 {
1234         /*
1235          * Clear the IO-APIC before rebooting:
1236          */
1237         clear_IO_APIC();
1238
1239         /*
1240          * If the i8259 is routed through an IOAPIC
1241          * Put that IOAPIC in virtual wire mode
1242          * so legacy interrupts can be delivered.
1243          */
1244         if (ioapic_i8259.pin != -1) {
1245                 struct IO_APIC_route_entry entry;
1246
1247                 memset(&entry, 0, sizeof(entry));
1248                 entry.mask            = 0; /* Enabled */
1249                 entry.trigger         = 0; /* Edge */
1250                 entry.irr             = 0;
1251                 entry.polarity        = 0; /* High */
1252                 entry.delivery_status = 0;
1253                 entry.dest_mode       = 0; /* Physical */
1254                 entry.delivery_mode   = dest_ExtINT; /* ExtInt */
1255                 entry.vector          = 0;
1256                 entry.dest          = GET_APIC_ID(apic_read(APIC_ID));
1257
1258                 /*
1259                  * Add it to the IO-APIC irq-routing table:
1260                  */
1261                 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
1262         }
1263
1264         disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1265 }
1266
1267 /*
1268  * There is a nasty bug in some older SMP boards, their mptable lies
1269  * about the timer IRQ. We do the following to work around the situation:
1270  *
1271  *      - timer IRQ defaults to IO-APIC IRQ
1272  *      - if this function detects that timer IRQs are defunct, then we fall
1273  *        back to ISA timer IRQs
1274  */
1275 static int __init timer_irq_works(void)
1276 {
1277         unsigned long t1 = jiffies;
1278
1279         local_irq_enable();
1280         /* Let ten ticks pass... */
1281         mdelay((10 * 1000) / HZ);
1282
1283         /*
1284          * Expect a few ticks at least, to be sure some possible
1285          * glue logic does not lock up after one or two first
1286          * ticks in a non-ExtINT mode.  Also the local APIC
1287          * might have cached one ExtINT interrupt.  Finally, at
1288          * least one tick may be lost due to delays.
1289          */
1290
1291         /* jiffies wrap? */
1292         if (jiffies - t1 > 4)
1293                 return 1;
1294         return 0;
1295 }
1296
1297 /*
1298  * In the SMP+IOAPIC case it might happen that there are an unspecified
1299  * number of pending IRQ events unhandled. These cases are very rare,
1300  * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1301  * better to do it this way as thus we do not have to be aware of
1302  * 'pending' interrupts in the IRQ path, except at this point.
1303  */
1304 /*
1305  * Edge triggered needs to resend any interrupt
1306  * that was delayed but this is now handled in the device
1307  * independent code.
1308  */
1309
1310 /*
1311  * Starting up a edge-triggered IO-APIC interrupt is
1312  * nasty - we need to make sure that we get the edge.
1313  * If it is already asserted for some reason, we need
1314  * return 1 to indicate that is was pending.
1315  *
1316  * This is not complete - we should be able to fake
1317  * an edge even if it isn't on the 8259A...
1318  */
1319
1320 static unsigned int startup_ioapic_irq(unsigned int irq)
1321 {
1322         int was_pending = 0;
1323         unsigned long flags;
1324
1325         spin_lock_irqsave(&ioapic_lock, flags);
1326         if (irq < 16) {
1327                 disable_8259A_irq(irq);
1328                 if (i8259A_irq_pending(irq))
1329                         was_pending = 1;
1330         }
1331         __unmask_IO_APIC_irq(irq);
1332         spin_unlock_irqrestore(&ioapic_lock, flags);
1333
1334         return was_pending;
1335 }
1336
1337 static int ioapic_retrigger_irq(unsigned int irq)
1338 {
1339         struct irq_cfg *cfg = &irq_cfg[irq];
1340         cpumask_t mask;
1341         unsigned long flags;
1342
1343         spin_lock_irqsave(&vector_lock, flags);
1344         cpus_clear(mask);
1345         cpu_set(first_cpu(cfg->domain), mask);
1346
1347         send_IPI_mask(mask, cfg->vector);
1348         spin_unlock_irqrestore(&vector_lock, flags);
1349
1350         return 1;
1351 }
1352
1353 /*
1354  * Level and edge triggered IO-APIC interrupts need different handling,
1355  * so we use two separate IRQ descriptors. Edge triggered IRQs can be
1356  * handled with the level-triggered descriptor, but that one has slightly
1357  * more overhead. Level-triggered interrupts cannot be handled with the
1358  * edge-triggered handler, without risking IRQ storms and other ugly
1359  * races.
1360  */
1361
1362 static void ack_apic_edge(unsigned int irq)
1363 {
1364         move_native_irq(irq);
1365         ack_APIC_irq();
1366 }
1367
1368 static void ack_apic_level(unsigned int irq)
1369 {
1370         int do_unmask_irq = 0;
1371
1372 #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
1373         /* If we are moving the irq we need to mask it */
1374         if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
1375                 do_unmask_irq = 1;
1376                 mask_IO_APIC_irq(irq);
1377         }
1378 #endif
1379
1380         /*
1381          * We must acknowledge the irq before we move it or the acknowledge will
1382          * not propogate properly.
1383          */
1384         ack_APIC_irq();
1385
1386         /* Now we can move and renable the irq */
1387         move_masked_irq(irq);
1388         if (unlikely(do_unmask_irq))
1389                 unmask_IO_APIC_irq(irq);
1390 }
1391
1392 static struct irq_chip ioapic_chip __read_mostly = {
1393         .name           = "IO-APIC",
1394         .startup        = startup_ioapic_irq,
1395         .mask           = mask_IO_APIC_irq,
1396         .unmask         = unmask_IO_APIC_irq,
1397         .ack            = ack_apic_edge,
1398         .eoi            = ack_apic_level,
1399 #ifdef CONFIG_SMP
1400         .set_affinity   = set_ioapic_affinity_irq,
1401 #endif
1402         .retrigger      = ioapic_retrigger_irq,
1403 };
1404
1405 static inline void init_IO_APIC_traps(void)
1406 {
1407         int irq;
1408
1409         /*
1410          * NOTE! The local APIC isn't very good at handling
1411          * multiple interrupts at the same interrupt level.
1412          * As the interrupt level is determined by taking the
1413          * vector number and shifting that right by 4, we
1414          * want to spread these out a bit so that they don't
1415          * all fall in the same interrupt level.
1416          *
1417          * Also, we've got to be careful not to trash gate
1418          * 0x80, because int 0x80 is hm, kind of importantish. ;)
1419          */
1420         for (irq = 0; irq < NR_IRQS ; irq++) {
1421                 int tmp = irq;
1422                 if (IO_APIC_IRQ(tmp) && !irq_cfg[tmp].vector) {
1423                         /*
1424                          * Hmm.. We don't have an entry for this,
1425                          * so default to an old-fashioned 8259
1426                          * interrupt if we can..
1427                          */
1428                         if (irq < 16)
1429                                 make_8259A_irq(irq);
1430                         else
1431                                 /* Strange. Oh, well.. */
1432                                 irq_desc[irq].chip = &no_irq_chip;
1433                 }
1434         }
1435 }
1436
1437 static void enable_lapic_irq (unsigned int irq)
1438 {
1439         unsigned long v;
1440
1441         v = apic_read(APIC_LVT0);
1442         apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
1443 }
1444
1445 static void disable_lapic_irq (unsigned int irq)
1446 {
1447         unsigned long v;
1448
1449         v = apic_read(APIC_LVT0);
1450         apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1451 }
1452
1453 static void ack_lapic_irq (unsigned int irq)
1454 {
1455         ack_APIC_irq();
1456 }
1457
1458 static void end_lapic_irq (unsigned int i) { /* nothing */ }
1459
1460 static struct hw_interrupt_type lapic_irq_type __read_mostly = {
1461         .typename = "local-APIC-edge",
1462         .startup = NULL, /* startup_irq() not used for IRQ0 */
1463         .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
1464         .enable = enable_lapic_irq,
1465         .disable = disable_lapic_irq,
1466         .ack = ack_lapic_irq,
1467         .end = end_lapic_irq,
1468 };
1469
1470 static void setup_nmi (void)
1471 {
1472         /*
1473          * Dirty trick to enable the NMI watchdog ...
1474          * We put the 8259A master into AEOI mode and
1475          * unmask on all local APICs LVT0 as NMI.
1476          *
1477          * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
1478          * is from Maciej W. Rozycki - so we do not have to EOI from
1479          * the NMI handler or the timer interrupt.
1480          */ 
1481         printk(KERN_INFO "activating NMI Watchdog ...");
1482
1483         enable_NMI_through_LVT0(NULL);
1484
1485         printk(" done.\n");
1486 }
1487
1488 /*
1489  * This looks a bit hackish but it's about the only one way of sending
1490  * a few INTA cycles to 8259As and any associated glue logic.  ICR does
1491  * not support the ExtINT mode, unfortunately.  We need to send these
1492  * cycles as some i82489DX-based boards have glue logic that keeps the
1493  * 8259A interrupt line asserted until INTA.  --macro
1494  */
1495 static inline void unlock_ExtINT_logic(void)
1496 {
1497         int apic, pin, i;
1498         struct IO_APIC_route_entry entry0, entry1;
1499         unsigned char save_control, save_freq_select;
1500         unsigned long flags;
1501
1502         pin  = find_isa_irq_pin(8, mp_INT);
1503         apic = find_isa_irq_apic(8, mp_INT);
1504         if (pin == -1)
1505                 return;
1506
1507         spin_lock_irqsave(&ioapic_lock, flags);
1508         *(((int *)&entry0) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
1509         *(((int *)&entry0) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
1510         spin_unlock_irqrestore(&ioapic_lock, flags);
1511         clear_IO_APIC_pin(apic, pin);
1512
1513         memset(&entry1, 0, sizeof(entry1));
1514
1515         entry1.dest_mode = 0;                   /* physical delivery */
1516         entry1.mask = 0;                        /* unmask IRQ now */
1517         entry1.dest = hard_smp_processor_id();
1518         entry1.delivery_mode = dest_ExtINT;
1519         entry1.polarity = entry0.polarity;
1520         entry1.trigger = 0;
1521         entry1.vector = 0;
1522
1523         spin_lock_irqsave(&ioapic_lock, flags);
1524         io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
1525         io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
1526         spin_unlock_irqrestore(&ioapic_lock, flags);
1527
1528         save_control = CMOS_READ(RTC_CONTROL);
1529         save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
1530         CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
1531                    RTC_FREQ_SELECT);
1532         CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
1533
1534         i = 100;
1535         while (i-- > 0) {
1536                 mdelay(10);
1537                 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
1538                         i -= 10;
1539         }
1540
1541         CMOS_WRITE(save_control, RTC_CONTROL);
1542         CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
1543         clear_IO_APIC_pin(apic, pin);
1544
1545         spin_lock_irqsave(&ioapic_lock, flags);
1546         io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
1547         io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
1548         spin_unlock_irqrestore(&ioapic_lock, flags);
1549 }
1550
1551 /*
1552  * This code may look a bit paranoid, but it's supposed to cooperate with
1553  * a wide range of boards and BIOS bugs.  Fortunately only the timer IRQ
1554  * is so screwy.  Thanks to Brian Perkins for testing/hacking this beast
1555  * fanatically on his truly buggy board.
1556  *
1557  * FIXME: really need to revamp this for modern platforms only.
1558  */
1559 static inline void check_timer(void)
1560 {
1561         int apic1, pin1, apic2, pin2;
1562         int vector;
1563         cpumask_t mask;
1564
1565         /*
1566          * get/set the timer IRQ vector:
1567          */
1568         disable_8259A_irq(0);
1569         vector = assign_irq_vector(0, TARGET_CPUS, &mask);
1570
1571         /*
1572          * Subtle, code in do_timer_interrupt() expects an AEOI
1573          * mode for the 8259A whenever interrupts are routed
1574          * through I/O APICs.  Also IRQ0 has to be enabled in
1575          * the 8259A which implies the virtual wire has to be
1576          * disabled in the local APIC.
1577          */
1578         apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1579         init_8259A(1);
1580         if (timer_over_8254 > 0)
1581                 enable_8259A_irq(0);
1582
1583         pin1  = find_isa_irq_pin(0, mp_INT);
1584         apic1 = find_isa_irq_apic(0, mp_INT);
1585         pin2  = ioapic_i8259.pin;
1586         apic2 = ioapic_i8259.apic;
1587
1588         apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
1589                 vector, apic1, pin1, apic2, pin2);
1590
1591         if (pin1 != -1) {
1592                 /*
1593                  * Ok, does IRQ0 through the IOAPIC work?
1594                  */
1595                 unmask_IO_APIC_irq(0);
1596                 if (!no_timer_check && timer_irq_works()) {
1597                         nmi_watchdog_default();
1598                         if (nmi_watchdog == NMI_IO_APIC) {
1599                                 disable_8259A_irq(0);
1600                                 setup_nmi();
1601                                 enable_8259A_irq(0);
1602                         }
1603                         if (disable_timer_pin_1 > 0)
1604                                 clear_IO_APIC_pin(0, pin1);
1605                         return;
1606                 }
1607                 clear_IO_APIC_pin(apic1, pin1);
1608                 apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: 8254 timer not "
1609                                 "connected to IO-APIC\n");
1610         }
1611
1612         apic_printk(APIC_VERBOSE,KERN_INFO "...trying to set up timer (IRQ0) "
1613                                 "through the 8259A ... ");
1614         if (pin2 != -1) {
1615                 apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
1616                         apic2, pin2);
1617                 /*
1618                  * legacy devices should be connected to IO APIC #0
1619                  */
1620                 setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
1621                 if (timer_irq_works()) {
1622                         apic_printk(APIC_VERBOSE," works.\n");
1623                         nmi_watchdog_default();
1624                         if (nmi_watchdog == NMI_IO_APIC) {
1625                                 setup_nmi();
1626                         }
1627                         return;
1628                 }
1629                 /*
1630                  * Cleanup, just in case ...
1631                  */
1632                 clear_IO_APIC_pin(apic2, pin2);
1633         }
1634         apic_printk(APIC_VERBOSE," failed.\n");
1635
1636         if (nmi_watchdog == NMI_IO_APIC) {
1637                 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
1638                 nmi_watchdog = 0;
1639         }
1640
1641         apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
1642
1643         disable_8259A_irq(0);
1644         irq_desc[0].chip = &lapic_irq_type;
1645         apic_write(APIC_LVT0, APIC_DM_FIXED | vector);  /* Fixed mode */
1646         enable_8259A_irq(0);
1647
1648         if (timer_irq_works()) {
1649                 apic_printk(APIC_VERBOSE," works.\n");
1650                 return;
1651         }
1652         apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
1653         apic_printk(APIC_VERBOSE," failed.\n");
1654
1655         apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
1656
1657         init_8259A(0);
1658         make_8259A_irq(0);
1659         apic_write(APIC_LVT0, APIC_DM_EXTINT);
1660
1661         unlock_ExtINT_logic();
1662
1663         if (timer_irq_works()) {
1664                 apic_printk(APIC_VERBOSE," works.\n");
1665                 return;
1666         }
1667         apic_printk(APIC_VERBOSE," failed :(.\n");
1668         panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
1669 }
1670
1671 static int __init notimercheck(char *s)
1672 {
1673         no_timer_check = 1;
1674         return 1;
1675 }
1676 __setup("no_timer_check", notimercheck);
1677
1678 /*
1679  *
1680  * IRQ's that are handled by the PIC in the MPS IOAPIC case.
1681  * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
1682  *   Linux doesn't really care, as it's not actually used
1683  *   for any interrupt handling anyway.
1684  */
1685 #define PIC_IRQS        (1<<2)
1686
1687 void __init setup_IO_APIC(void)
1688 {
1689         enable_IO_APIC();
1690
1691         if (acpi_ioapic)
1692                 io_apic_irqs = ~0;      /* all IRQs go through IOAPIC */
1693         else
1694                 io_apic_irqs = ~PIC_IRQS;
1695
1696         apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
1697
1698         sync_Arb_IDs();
1699         setup_IO_APIC_irqs();
1700         init_IO_APIC_traps();
1701         check_timer();
1702         if (!acpi_ioapic)
1703                 print_IO_APIC();
1704 }
1705
1706 struct sysfs_ioapic_data {
1707         struct sys_device dev;
1708         struct IO_APIC_route_entry entry[0];
1709 };
1710 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1711
1712 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1713 {
1714         struct IO_APIC_route_entry *entry;
1715         struct sysfs_ioapic_data *data;
1716         int i;
1717
1718         data = container_of(dev, struct sysfs_ioapic_data, dev);
1719         entry = data->entry;
1720         for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
1721                 *entry = ioapic_read_entry(dev->id, i);
1722
1723         return 0;
1724 }
1725
1726 static int ioapic_resume(struct sys_device *dev)
1727 {
1728         struct IO_APIC_route_entry *entry;
1729         struct sysfs_ioapic_data *data;
1730         unsigned long flags;
1731         union IO_APIC_reg_00 reg_00;
1732         int i;
1733
1734         data = container_of(dev, struct sysfs_ioapic_data, dev);
1735         entry = data->entry;
1736
1737         spin_lock_irqsave(&ioapic_lock, flags);
1738         reg_00.raw = io_apic_read(dev->id, 0);
1739         if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
1740                 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
1741                 io_apic_write(dev->id, 0, reg_00.raw);
1742         }
1743         spin_unlock_irqrestore(&ioapic_lock, flags);
1744         for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
1745                 ioapic_write_entry(dev->id, i, entry[i]);
1746
1747         return 0;
1748 }
1749
1750 static struct sysdev_class ioapic_sysdev_class = {
1751         set_kset_name("ioapic"),
1752         .suspend = ioapic_suspend,
1753         .resume = ioapic_resume,
1754 };
1755
1756 static int __init ioapic_init_sysfs(void)
1757 {
1758         struct sys_device * dev;
1759         int i, size, error = 0;
1760
1761         error = sysdev_class_register(&ioapic_sysdev_class);
1762         if (error)
1763                 return error;
1764
1765         for (i = 0; i < nr_ioapics; i++ ) {
1766                 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1767                         * sizeof(struct IO_APIC_route_entry);
1768                 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
1769                 if (!mp_ioapic_data[i]) {
1770                         printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1771                         continue;
1772                 }
1773                 memset(mp_ioapic_data[i], 0, size);
1774                 dev = &mp_ioapic_data[i]->dev;
1775                 dev->id = i;
1776                 dev->cls = &ioapic_sysdev_class;
1777                 error = sysdev_register(dev);
1778                 if (error) {
1779                         kfree(mp_ioapic_data[i]);
1780                         mp_ioapic_data[i] = NULL;
1781                         printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1782                         continue;
1783                 }
1784         }
1785
1786         return 0;
1787 }
1788
1789 device_initcall(ioapic_init_sysfs);
1790
1791 /*
1792  * Dynamic irq allocate and deallocation
1793  */
1794 int create_irq(void)
1795 {
1796         /* Allocate an unused irq */
1797         int irq;
1798         int new;
1799         int vector = 0;
1800         unsigned long flags;
1801         cpumask_t mask;
1802
1803         irq = -ENOSPC;
1804         spin_lock_irqsave(&vector_lock, flags);
1805         for (new = (NR_IRQS - 1); new >= 0; new--) {
1806                 if (platform_legacy_irq(new))
1807                         continue;
1808                 if (irq_cfg[new].vector != 0)
1809                         continue;
1810                 vector = __assign_irq_vector(new, TARGET_CPUS, &mask);
1811                 if (likely(vector > 0))
1812                         irq = new;
1813                 break;
1814         }
1815         spin_unlock_irqrestore(&vector_lock, flags);
1816
1817         if (irq >= 0) {
1818                 dynamic_irq_init(irq);
1819         }
1820         return irq;
1821 }
1822
1823 void destroy_irq(unsigned int irq)
1824 {
1825         unsigned long flags;
1826
1827         dynamic_irq_cleanup(irq);
1828
1829         spin_lock_irqsave(&vector_lock, flags);
1830         __clear_irq_vector(irq);
1831         spin_unlock_irqrestore(&vector_lock, flags);
1832 }
1833
1834 /*
1835  * MSI mesage composition
1836  */
1837 #ifdef CONFIG_PCI_MSI
1838 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
1839 {
1840         int vector;
1841         unsigned dest;
1842         cpumask_t tmp;
1843
1844         vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
1845         if (vector >= 0) {
1846                 dest = cpu_mask_to_apicid(tmp);
1847
1848                 msg->address_hi = MSI_ADDR_BASE_HI;
1849                 msg->address_lo =
1850                         MSI_ADDR_BASE_LO |
1851                         ((INT_DEST_MODE == 0) ?
1852                                 MSI_ADDR_DEST_MODE_PHYSICAL:
1853                                 MSI_ADDR_DEST_MODE_LOGICAL) |
1854                         ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1855                                 MSI_ADDR_REDIRECTION_CPU:
1856                                 MSI_ADDR_REDIRECTION_LOWPRI) |
1857                         MSI_ADDR_DEST_ID(dest);
1858
1859                 msg->data =
1860                         MSI_DATA_TRIGGER_EDGE |
1861                         MSI_DATA_LEVEL_ASSERT |
1862                         ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1863                                 MSI_DATA_DELIVERY_FIXED:
1864                                 MSI_DATA_DELIVERY_LOWPRI) |
1865                         MSI_DATA_VECTOR(vector);
1866         }
1867         return vector;
1868 }
1869
1870 #ifdef CONFIG_SMP
1871 static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
1872 {
1873         struct msi_msg msg;
1874         unsigned int dest;
1875         cpumask_t tmp;
1876         int vector;
1877
1878         cpus_and(tmp, mask, cpu_online_map);
1879         if (cpus_empty(tmp))
1880                 return;
1881
1882         vector = assign_irq_vector(irq, mask, &tmp);
1883         if (vector < 0)
1884                 return;
1885
1886         dest = cpu_mask_to_apicid(tmp);
1887
1888         read_msi_msg(irq, &msg);
1889
1890         msg.data &= ~MSI_DATA_VECTOR_MASK;
1891         msg.data |= MSI_DATA_VECTOR(vector);
1892         msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
1893         msg.address_lo |= MSI_ADDR_DEST_ID(dest);
1894
1895         write_msi_msg(irq, &msg);
1896         irq_desc[irq].affinity = mask;
1897 }
1898 #endif /* CONFIG_SMP */
1899
1900 /*
1901  * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
1902  * which implement the MSI or MSI-X Capability Structure.
1903  */
1904 static struct irq_chip msi_chip = {
1905         .name           = "PCI-MSI",
1906         .unmask         = unmask_msi_irq,
1907         .mask           = mask_msi_irq,
1908         .ack            = ack_apic_edge,
1909 #ifdef CONFIG_SMP
1910         .set_affinity   = set_msi_irq_affinity,
1911 #endif
1912         .retrigger      = ioapic_retrigger_irq,
1913 };
1914
1915 int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
1916 {
1917         struct msi_msg msg;
1918         int irq, ret;
1919         irq = create_irq();
1920         if (irq < 0)
1921                 return irq;
1922
1923         set_irq_msi(irq, desc);
1924         ret = msi_compose_msg(dev, irq, &msg);
1925         if (ret < 0) {
1926                 destroy_irq(irq);
1927                 return ret;
1928         }
1929
1930         write_msi_msg(irq, &msg);
1931
1932         set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
1933
1934         return irq;
1935 }
1936
1937 void arch_teardown_msi_irq(unsigned int irq)
1938 {
1939         destroy_irq(irq);
1940 }
1941
1942 #endif /* CONFIG_PCI_MSI */
1943
1944 /*
1945  * Hypertransport interrupt support
1946  */
1947 #ifdef CONFIG_HT_IRQ
1948
1949 #ifdef CONFIG_SMP
1950
1951 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
1952 {
1953         struct ht_irq_msg msg;
1954         fetch_ht_irq_msg(irq, &msg);
1955
1956         msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
1957         msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
1958
1959         msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
1960         msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
1961
1962         write_ht_irq_msg(irq, &msg);
1963 }
1964
1965 static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
1966 {
1967         unsigned int dest;
1968         cpumask_t tmp;
1969         int vector;
1970
1971         cpus_and(tmp, mask, cpu_online_map);
1972         if (cpus_empty(tmp))
1973                 return;
1974
1975         vector = assign_irq_vector(irq, mask, &tmp);
1976         if (vector < 0)
1977                 return;
1978
1979         dest = cpu_mask_to_apicid(tmp);
1980
1981         target_ht_irq(irq, dest, vector);
1982         irq_desc[irq].affinity = mask;
1983 }
1984 #endif
1985
1986 static struct irq_chip ht_irq_chip = {
1987         .name           = "PCI-HT",
1988         .mask           = mask_ht_irq,
1989         .unmask         = unmask_ht_irq,
1990         .ack            = ack_apic_edge,
1991 #ifdef CONFIG_SMP
1992         .set_affinity   = set_ht_irq_affinity,
1993 #endif
1994         .retrigger      = ioapic_retrigger_irq,
1995 };
1996
1997 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
1998 {
1999         int vector;
2000         cpumask_t tmp;
2001
2002         vector = assign_irq_vector(irq, TARGET_CPUS, &tmp);
2003         if (vector >= 0) {
2004                 struct ht_irq_msg msg;
2005                 unsigned dest;
2006
2007                 dest = cpu_mask_to_apicid(tmp);
2008
2009                 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
2010
2011                 msg.address_lo =
2012                         HT_IRQ_LOW_BASE |
2013                         HT_IRQ_LOW_DEST_ID(dest) |
2014                         HT_IRQ_LOW_VECTOR(vector) |
2015                         ((INT_DEST_MODE == 0) ?
2016                                 HT_IRQ_LOW_DM_PHYSICAL :
2017                                 HT_IRQ_LOW_DM_LOGICAL) |
2018                         HT_IRQ_LOW_RQEOI_EDGE |
2019                         ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2020                                 HT_IRQ_LOW_MT_FIXED :
2021                                 HT_IRQ_LOW_MT_ARBITRATED) |
2022                         HT_IRQ_LOW_IRQ_MASKED;
2023
2024                 write_ht_irq_msg(irq, &msg);
2025
2026                 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2027                                               handle_edge_irq, "edge");
2028         }
2029         return vector;
2030 }
2031 #endif /* CONFIG_HT_IRQ */
2032
2033 /* --------------------------------------------------------------------------
2034                           ACPI-based IOAPIC Configuration
2035    -------------------------------------------------------------------------- */
2036
2037 #ifdef CONFIG_ACPI
2038
2039 #define IO_APIC_MAX_ID          0xFE
2040
2041 int __init io_apic_get_redir_entries (int ioapic)
2042 {
2043         union IO_APIC_reg_01    reg_01;
2044         unsigned long flags;
2045
2046         spin_lock_irqsave(&ioapic_lock, flags);
2047         reg_01.raw = io_apic_read(ioapic, 1);
2048         spin_unlock_irqrestore(&ioapic_lock, flags);
2049
2050         return reg_01.bits.entries;
2051 }
2052
2053
2054 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
2055 {
2056         if (!IO_APIC_IRQ(irq)) {
2057                 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2058                         ioapic);
2059                 return -EINVAL;
2060         }
2061
2062         /*
2063          * IRQs < 16 are already in the irq_2_pin[] map
2064          */
2065         if (irq >= 16)
2066                 add_pin_to_irq(irq, ioapic, pin);
2067
2068         setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
2069
2070         return 0;
2071 }
2072
2073 #endif /* CONFIG_ACPI */
2074
2075
2076 /*
2077  * This function currently is only a helper for the i386 smp boot process where
2078  * we need to reprogram the ioredtbls to cater for the cpus which have come online
2079  * so mask in all cases should simply be TARGET_CPUS
2080  */
2081 #ifdef CONFIG_SMP
2082 void __init setup_ioapic_dest(void)
2083 {
2084         int pin, ioapic, irq, irq_entry;
2085
2086         if (skip_ioapic_setup == 1)
2087                 return;
2088
2089         for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
2090                 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
2091                         irq_entry = find_irq_entry(ioapic, pin, mp_INT);
2092                         if (irq_entry == -1)
2093                                 continue;
2094                         irq = pin_2_irq(irq_entry, ioapic, pin);
2095
2096                         /* setup_IO_APIC_irqs could fail to get vector for some device
2097                          * when you have too many devices, because at that time only boot
2098                          * cpu is online.
2099                          */
2100                         if (!irq_cfg[irq].vector)
2101                                 setup_IO_APIC_irq(ioapic, pin, irq,
2102                                                   irq_trigger(irq_entry),
2103                                                   irq_polarity(irq_entry));
2104                         else
2105                                 set_ioapic_affinity_irq(irq, TARGET_CPUS);
2106                 }
2107
2108         }
2109 }
2110 #endif