2 * Intel IO-APIC support for multi-Pentium hosts.
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
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>
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
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>
36 #include <acpi/acpi_bus.h>
43 #include <asm/proto.h>
44 #include <asm/mach_apic.h>
48 #include <asm/msidef.h>
49 #include <asm/hypertransport.h>
54 unsigned move_cleanup_count;
56 u8 move_in_progress : 1;
59 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
60 struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = {
61 [0] = { .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
62 [1] = { .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
63 [2] = { .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
64 [3] = { .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
65 [4] = { .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
66 [5] = { .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
67 [6] = { .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
68 [7] = { .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
69 [8] = { .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
70 [9] = { .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
71 [10] = { .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
72 [11] = { .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
73 [12] = { .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
74 [13] = { .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
75 [14] = { .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
76 [15] = { .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
79 static int assign_irq_vector(int irq, cpumask_t mask);
81 #define __apicdebuginit __init
83 int sis_apic_bug; /* not actually supported, dummy for compile */
85 static int no_timer_check;
87 static int disable_timer_pin_1 __initdata;
89 int timer_over_8254 __initdata = 1;
91 /* Where if anywhere is the i8259 connect in external int mode */
92 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
94 static DEFINE_SPINLOCK(ioapic_lock);
95 DEFINE_SPINLOCK(vector_lock);
98 * # of IRQ routing registers
100 int nr_ioapic_registers[MAX_IO_APICS];
103 * Rough estimation of how many shared IRQs there are, can
104 * be changed anytime.
106 #define MAX_PLUS_SHARED_IRQS NR_IRQS
107 #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
110 * This is performance-critical, we want to do it O(1)
112 * the indexing order of this array favors 1:1 mappings
113 * between pins and IRQs.
116 static struct irq_pin_list {
117 short apic, pin, next;
118 } irq_2_pin[PIN_MAP_SIZE];
122 unsigned int unused[3];
126 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
128 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
129 + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
132 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
134 struct io_apic __iomem *io_apic = io_apic_base(apic);
135 writel(reg, &io_apic->index);
136 return readl(&io_apic->data);
139 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
141 struct io_apic __iomem *io_apic = io_apic_base(apic);
142 writel(reg, &io_apic->index);
143 writel(value, &io_apic->data);
147 * Re-write a value: to be used for read-modify-write
148 * cycles where the read already set up the index register.
150 static inline void io_apic_modify(unsigned int apic, unsigned int value)
152 struct io_apic __iomem *io_apic = io_apic_base(apic);
153 writel(value, &io_apic->data);
157 * Synchronize the IO-APIC and the CPU by doing
158 * a dummy read from the IO-APIC
160 static inline void io_apic_sync(unsigned int apic)
162 struct io_apic __iomem *io_apic = io_apic_base(apic);
163 readl(&io_apic->data);
166 #define __DO_ACTION(R, ACTION, FINAL) \
170 struct irq_pin_list *entry = irq_2_pin + irq; \
172 BUG_ON(irq >= NR_IRQS); \
178 reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
180 io_apic_modify(entry->apic, reg); \
184 entry = irq_2_pin + entry->next; \
189 struct { u32 w1, w2; };
190 struct IO_APIC_route_entry entry;
193 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
195 union entry_union eu;
197 spin_lock_irqsave(&ioapic_lock, flags);
198 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
199 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
200 spin_unlock_irqrestore(&ioapic_lock, flags);
205 * When we write a new IO APIC routing entry, we need to write the high
206 * word first! If the mask bit in the low word is clear, we will enable
207 * the interrupt, and we need to make sure the entry is fully populated
208 * before that happens.
211 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
213 union entry_union eu;
215 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
216 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
219 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
222 spin_lock_irqsave(&ioapic_lock, flags);
223 __ioapic_write_entry(apic, pin, e);
224 spin_unlock_irqrestore(&ioapic_lock, flags);
228 * When we mask an IO APIC routing entry, we need to write the low
229 * word first, in order to set the mask bit before we change the
232 static void ioapic_mask_entry(int apic, int pin)
235 union entry_union eu = { .entry.mask = 1 };
237 spin_lock_irqsave(&ioapic_lock, flags);
238 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
239 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
240 spin_unlock_irqrestore(&ioapic_lock, flags);
244 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
247 struct irq_pin_list *entry = irq_2_pin + irq;
249 BUG_ON(irq >= NR_IRQS);
256 io_apic_write(apic, 0x11 + pin*2, dest);
257 reg = io_apic_read(apic, 0x10 + pin*2);
260 io_apic_modify(apic, reg);
263 entry = irq_2_pin + entry->next;
267 static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
269 struct irq_cfg *cfg = irq_cfg + irq;
274 cpus_and(tmp, mask, cpu_online_map);
278 if (assign_irq_vector(irq, mask))
281 cpus_and(tmp, cfg->domain, mask);
282 dest = cpu_mask_to_apicid(tmp);
285 * Only the high 8 bits are valid.
287 dest = SET_APIC_LOGICAL_ID(dest);
289 spin_lock_irqsave(&ioapic_lock, flags);
290 __target_IO_APIC_irq(irq, dest, cfg->vector);
291 irq_desc[irq].affinity = mask;
292 spin_unlock_irqrestore(&ioapic_lock, flags);
297 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
298 * shared ISA-space IRQs, so we have to support them. We are super
299 * fast in the common case, and fast for shared ISA-space IRQs.
301 static void add_pin_to_irq(unsigned int irq, int apic, int pin)
303 static int first_free_entry = NR_IRQS;
304 struct irq_pin_list *entry = irq_2_pin + irq;
306 BUG_ON(irq >= NR_IRQS);
308 entry = irq_2_pin + entry->next;
310 if (entry->pin != -1) {
311 entry->next = first_free_entry;
312 entry = irq_2_pin + entry->next;
313 if (++first_free_entry >= PIN_MAP_SIZE)
314 panic("io_apic.c: ran out of irq_2_pin entries!");
321 #define DO_ACTION(name,R,ACTION, FINAL) \
323 static void name##_IO_APIC_irq (unsigned int irq) \
324 __DO_ACTION(R, ACTION, FINAL)
326 DO_ACTION( __mask, 0, |= 0x00010000, io_apic_sync(entry->apic) )
328 DO_ACTION( __unmask, 0, &= 0xfffeffff, )
331 static void mask_IO_APIC_irq (unsigned int irq)
335 spin_lock_irqsave(&ioapic_lock, flags);
336 __mask_IO_APIC_irq(irq);
337 spin_unlock_irqrestore(&ioapic_lock, flags);
340 static void unmask_IO_APIC_irq (unsigned int irq)
344 spin_lock_irqsave(&ioapic_lock, flags);
345 __unmask_IO_APIC_irq(irq);
346 spin_unlock_irqrestore(&ioapic_lock, flags);
349 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
351 struct IO_APIC_route_entry entry;
353 /* Check delivery_mode to be sure we're not clearing an SMI pin */
354 entry = ioapic_read_entry(apic, pin);
355 if (entry.delivery_mode == dest_SMI)
358 * Disable it in the IO-APIC irq-routing table:
360 ioapic_mask_entry(apic, pin);
363 static void clear_IO_APIC (void)
367 for (apic = 0; apic < nr_ioapics; apic++)
368 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
369 clear_IO_APIC_pin(apic, pin);
372 int skip_ioapic_setup;
375 /* dummy parsing: see setup.c */
377 static int __init disable_ioapic_setup(char *str)
379 skip_ioapic_setup = 1;
382 early_param("noapic", disable_ioapic_setup);
384 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
385 static int __init disable_timer_pin_setup(char *arg)
387 disable_timer_pin_1 = 1;
390 __setup("disable_timer_pin_1", disable_timer_pin_setup);
392 static int __init setup_disable_8254_timer(char *s)
394 timer_over_8254 = -1;
397 static int __init setup_enable_8254_timer(char *s)
403 __setup("disable_8254_timer", setup_disable_8254_timer);
404 __setup("enable_8254_timer", setup_enable_8254_timer);
408 * Find the IRQ entry number of a certain pin.
410 static int find_irq_entry(int apic, int pin, int type)
414 for (i = 0; i < mp_irq_entries; i++)
415 if (mp_irqs[i].mpc_irqtype == type &&
416 (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
417 mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
418 mp_irqs[i].mpc_dstirq == pin)
425 * Find the pin to which IRQ[irq] (ISA) is connected
427 static int __init find_isa_irq_pin(int irq, int type)
431 for (i = 0; i < mp_irq_entries; i++) {
432 int lbus = mp_irqs[i].mpc_srcbus;
434 if (test_bit(lbus, mp_bus_not_pci) &&
435 (mp_irqs[i].mpc_irqtype == type) &&
436 (mp_irqs[i].mpc_srcbusirq == irq))
438 return mp_irqs[i].mpc_dstirq;
443 static int __init find_isa_irq_apic(int irq, int type)
447 for (i = 0; i < mp_irq_entries; i++) {
448 int lbus = mp_irqs[i].mpc_srcbus;
450 if (test_bit(lbus, mp_bus_not_pci) &&
451 (mp_irqs[i].mpc_irqtype == type) &&
452 (mp_irqs[i].mpc_srcbusirq == irq))
455 if (i < mp_irq_entries) {
457 for(apic = 0; apic < nr_ioapics; apic++) {
458 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
467 * Find a specific PCI IRQ entry.
468 * Not an __init, possibly needed by modules
470 static int pin_2_irq(int idx, int apic, int pin);
472 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
474 int apic, i, best_guess = -1;
476 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
478 if (mp_bus_id_to_pci_bus[bus] == -1) {
479 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
482 for (i = 0; i < mp_irq_entries; i++) {
483 int lbus = mp_irqs[i].mpc_srcbus;
485 for (apic = 0; apic < nr_ioapics; apic++)
486 if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
487 mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
490 if (!test_bit(lbus, mp_bus_not_pci) &&
491 !mp_irqs[i].mpc_irqtype &&
493 (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
494 int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
496 if (!(apic || IO_APIC_IRQ(irq)))
499 if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
502 * Use the first all-but-pin matching entry as a
503 * best-guess fuzzy result for broken mptables.
509 BUG_ON(best_guess >= NR_IRQS);
513 /* ISA interrupts are always polarity zero edge triggered,
514 * when listed as conforming in the MP table. */
516 #define default_ISA_trigger(idx) (0)
517 #define default_ISA_polarity(idx) (0)
519 /* PCI interrupts are always polarity one level triggered,
520 * when listed as conforming in the MP table. */
522 #define default_PCI_trigger(idx) (1)
523 #define default_PCI_polarity(idx) (1)
525 static int __init MPBIOS_polarity(int idx)
527 int bus = mp_irqs[idx].mpc_srcbus;
531 * Determine IRQ line polarity (high active or low active):
533 switch (mp_irqs[idx].mpc_irqflag & 3)
535 case 0: /* conforms, ie. bus-type dependent polarity */
536 if (test_bit(bus, mp_bus_not_pci))
537 polarity = default_ISA_polarity(idx);
539 polarity = default_PCI_polarity(idx);
541 case 1: /* high active */
546 case 2: /* reserved */
548 printk(KERN_WARNING "broken BIOS!!\n");
552 case 3: /* low active */
557 default: /* invalid */
559 printk(KERN_WARNING "broken BIOS!!\n");
567 static int MPBIOS_trigger(int idx)
569 int bus = mp_irqs[idx].mpc_srcbus;
573 * Determine IRQ trigger mode (edge or level sensitive):
575 switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
577 case 0: /* conforms, ie. bus-type dependent */
578 if (test_bit(bus, mp_bus_not_pci))
579 trigger = default_ISA_trigger(idx);
581 trigger = default_PCI_trigger(idx);
588 case 2: /* reserved */
590 printk(KERN_WARNING "broken BIOS!!\n");
599 default: /* invalid */
601 printk(KERN_WARNING "broken BIOS!!\n");
609 static inline int irq_polarity(int idx)
611 return MPBIOS_polarity(idx);
614 static inline int irq_trigger(int idx)
616 return MPBIOS_trigger(idx);
619 static int pin_2_irq(int idx, int apic, int pin)
622 int bus = mp_irqs[idx].mpc_srcbus;
625 * Debugging check, we are in big trouble if this message pops up!
627 if (mp_irqs[idx].mpc_dstirq != pin)
628 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
630 if (test_bit(bus, mp_bus_not_pci)) {
631 irq = mp_irqs[idx].mpc_srcbusirq;
634 * PCI IRQs are mapped in order
638 irq += nr_ioapic_registers[i++];
641 BUG_ON(irq >= NR_IRQS);
645 static int __assign_irq_vector(int irq, cpumask_t mask)
648 * NOTE! The local APIC isn't very good at handling
649 * multiple interrupts at the same interrupt level.
650 * As the interrupt level is determined by taking the
651 * vector number and shifting that right by 4, we
652 * want to spread these out a bit so that they don't
653 * all fall in the same interrupt level.
655 * Also, we've got to be careful not to trash gate
656 * 0x80, because int 0x80 is hm, kind of importantish. ;)
658 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
659 unsigned int old_vector;
663 BUG_ON((unsigned)irq >= NR_IRQS);
666 /* Only try and allocate irqs on cpus that are present */
667 cpus_and(mask, mask, cpu_online_map);
669 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
672 old_vector = cfg->vector;
675 cpus_and(tmp, cfg->domain, mask);
676 if (!cpus_empty(tmp))
680 for_each_cpu_mask(cpu, mask) {
681 cpumask_t domain, new_mask;
685 domain = vector_allocation_domain(cpu);
686 cpus_and(new_mask, domain, cpu_online_map);
688 vector = current_vector;
689 offset = current_offset;
692 if (vector >= FIRST_SYSTEM_VECTOR) {
693 /* If we run out of vectors on large boxen, must share them. */
694 offset = (offset + 1) % 8;
695 vector = FIRST_DEVICE_VECTOR + offset;
697 if (unlikely(current_vector == vector))
699 if (vector == IA32_SYSCALL_VECTOR)
701 for_each_cpu_mask(new_cpu, new_mask)
702 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
705 current_vector = vector;
706 current_offset = offset;
708 cfg->move_in_progress = 1;
709 cfg->old_domain = cfg->domain;
711 for_each_cpu_mask(new_cpu, new_mask)
712 per_cpu(vector_irq, new_cpu)[vector] = irq;
713 cfg->vector = vector;
714 cfg->domain = domain;
720 static int assign_irq_vector(int irq, cpumask_t mask)
725 spin_lock_irqsave(&vector_lock, flags);
726 err = __assign_irq_vector(irq, mask);
727 spin_unlock_irqrestore(&vector_lock, flags);
731 static void __clear_irq_vector(int irq)
737 BUG_ON((unsigned)irq >= NR_IRQS);
739 BUG_ON(!cfg->vector);
741 vector = cfg->vector;
742 cpus_and(mask, cfg->domain, cpu_online_map);
743 for_each_cpu_mask(cpu, mask)
744 per_cpu(vector_irq, cpu)[vector] = -1;
747 cfg->domain = CPU_MASK_NONE;
750 void __setup_vector_irq(int cpu)
752 /* Initialize vector_irq on a new cpu */
753 /* This function must be called with vector_lock held */
756 /* Mark the inuse vectors */
757 for (irq = 0; irq < NR_IRQS; ++irq) {
758 if (!cpu_isset(cpu, irq_cfg[irq].domain))
760 vector = irq_cfg[irq].vector;
761 per_cpu(vector_irq, cpu)[vector] = irq;
763 /* Mark the free vectors */
764 for (vector = 0; vector < NR_VECTORS; ++vector) {
765 irq = per_cpu(vector_irq, cpu)[vector];
768 if (!cpu_isset(cpu, irq_cfg[irq].domain))
769 per_cpu(vector_irq, cpu)[vector] = -1;
774 static struct irq_chip ioapic_chip;
776 static void ioapic_register_intr(int irq, unsigned long trigger)
779 set_irq_chip_and_handler_name(irq, &ioapic_chip,
780 handle_fasteoi_irq, "fasteoi");
782 set_irq_chip_and_handler_name(irq, &ioapic_chip,
783 handle_edge_irq, "edge");
786 static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
787 int trigger, int polarity)
789 struct irq_cfg *cfg = irq_cfg + irq;
790 struct IO_APIC_route_entry entry;
794 if (!IO_APIC_IRQ(irq))
798 if (assign_irq_vector(irq, mask))
801 cpus_and(mask, cfg->domain, mask);
803 apic_printk(APIC_VERBOSE,KERN_DEBUG
804 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
805 "IRQ %d Mode:%i Active:%i)\n",
806 apic, mp_ioapics[apic].mpc_apicid, pin, cfg->vector,
807 irq, trigger, polarity);
810 * add it to the IO-APIC irq-routing table:
812 memset(&entry,0,sizeof(entry));
814 entry.delivery_mode = INT_DELIVERY_MODE;
815 entry.dest_mode = INT_DEST_MODE;
816 entry.dest = cpu_mask_to_apicid(mask);
817 entry.mask = 0; /* enable IRQ */
818 entry.trigger = trigger;
819 entry.polarity = polarity;
820 entry.vector = cfg->vector;
822 /* Mask level triggered irqs.
823 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
828 ioapic_register_intr(irq, trigger);
830 disable_8259A_irq(irq);
832 ioapic_write_entry(apic, pin, entry);
834 spin_lock_irqsave(&ioapic_lock, flags);
835 irq_desc[irq].affinity = TARGET_CPUS;
836 spin_unlock_irqrestore(&ioapic_lock, flags);
839 static void __init setup_IO_APIC_irqs(void)
841 int apic, pin, idx, irq, first_notcon = 1;
843 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
845 for (apic = 0; apic < nr_ioapics; apic++) {
846 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
848 idx = find_irq_entry(apic,pin,mp_INT);
851 apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
854 apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
858 irq = pin_2_irq(idx, apic, pin);
859 add_pin_to_irq(irq, apic, pin);
861 setup_IO_APIC_irq(apic, pin, irq,
862 irq_trigger(idx), irq_polarity(idx));
867 apic_printk(APIC_VERBOSE," not connected.\n");
871 * Set up the 8259A-master output pin as broadcast to all
874 static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
876 struct IO_APIC_route_entry entry;
879 memset(&entry,0,sizeof(entry));
881 disable_8259A_irq(0);
884 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
887 * We use logical delivery to get the timer IRQ
890 entry.dest_mode = INT_DEST_MODE;
891 entry.mask = 0; /* unmask IRQ now */
892 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
893 entry.delivery_mode = INT_DELIVERY_MODE;
896 entry.vector = vector;
899 * The timer IRQ doesn't have to know that behind the
900 * scene we have a 8259A-master in AEOI mode ...
902 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
905 * Add it to the IO-APIC irq-routing table:
907 spin_lock_irqsave(&ioapic_lock, flags);
908 io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
909 io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
910 spin_unlock_irqrestore(&ioapic_lock, flags);
915 void __init UNEXPECTED_IO_APIC(void)
919 void __apicdebuginit print_IO_APIC(void)
922 union IO_APIC_reg_00 reg_00;
923 union IO_APIC_reg_01 reg_01;
924 union IO_APIC_reg_02 reg_02;
927 if (apic_verbosity == APIC_QUIET)
930 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
931 for (i = 0; i < nr_ioapics; i++)
932 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
933 mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
936 * We are a bit conservative about what we expect. We have to
937 * know about every hardware change ASAP.
939 printk(KERN_INFO "testing the IO APIC.......................\n");
941 for (apic = 0; apic < nr_ioapics; apic++) {
943 spin_lock_irqsave(&ioapic_lock, flags);
944 reg_00.raw = io_apic_read(apic, 0);
945 reg_01.raw = io_apic_read(apic, 1);
946 if (reg_01.bits.version >= 0x10)
947 reg_02.raw = io_apic_read(apic, 2);
948 spin_unlock_irqrestore(&ioapic_lock, flags);
951 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
952 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
953 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
954 if (reg_00.bits.__reserved_1 || reg_00.bits.__reserved_2)
955 UNEXPECTED_IO_APIC();
957 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)®_01);
958 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
959 if ( (reg_01.bits.entries != 0x0f) && /* older (Neptune) boards */
960 (reg_01.bits.entries != 0x17) && /* typical ISA+PCI boards */
961 (reg_01.bits.entries != 0x1b) && /* Compaq Proliant boards */
962 (reg_01.bits.entries != 0x1f) && /* dual Xeon boards */
963 (reg_01.bits.entries != 0x22) && /* bigger Xeon boards */
964 (reg_01.bits.entries != 0x2E) &&
965 (reg_01.bits.entries != 0x3F) &&
966 (reg_01.bits.entries != 0x03)
968 UNEXPECTED_IO_APIC();
970 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
971 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
972 if ( (reg_01.bits.version != 0x01) && /* 82489DX IO-APICs */
973 (reg_01.bits.version != 0x02) && /* 82801BA IO-APICs (ICH2) */
974 (reg_01.bits.version != 0x10) && /* oldest IO-APICs */
975 (reg_01.bits.version != 0x11) && /* Pentium/Pro IO-APICs */
976 (reg_01.bits.version != 0x13) && /* Xeon IO-APICs */
977 (reg_01.bits.version != 0x20) /* Intel P64H (82806 AA) */
979 UNEXPECTED_IO_APIC();
980 if (reg_01.bits.__reserved_1 || reg_01.bits.__reserved_2)
981 UNEXPECTED_IO_APIC();
983 if (reg_01.bits.version >= 0x10) {
984 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
985 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
986 if (reg_02.bits.__reserved_1 || reg_02.bits.__reserved_2)
987 UNEXPECTED_IO_APIC();
990 printk(KERN_DEBUG ".... IRQ redirection table:\n");
992 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
993 " Stat Dmod Deli Vect: \n");
995 for (i = 0; i <= reg_01.bits.entries; i++) {
996 struct IO_APIC_route_entry entry;
998 entry = ioapic_read_entry(apic, i);
1000 printk(KERN_DEBUG " %02x %03X ",
1005 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1010 entry.delivery_status,
1012 entry.delivery_mode,
1017 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1018 for (i = 0; i < NR_IRQS; i++) {
1019 struct irq_pin_list *entry = irq_2_pin + i;
1022 printk(KERN_DEBUG "IRQ%d ", i);
1024 printk("-> %d:%d", entry->apic, entry->pin);
1027 entry = irq_2_pin + entry->next;
1032 printk(KERN_INFO ".................................... done.\n");
1039 static __apicdebuginit void print_APIC_bitfield (int base)
1044 if (apic_verbosity == APIC_QUIET)
1047 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1048 for (i = 0; i < 8; i++) {
1049 v = apic_read(base + i*0x10);
1050 for (j = 0; j < 32; j++) {
1060 void __apicdebuginit print_local_APIC(void * dummy)
1062 unsigned int v, ver, maxlvt;
1064 if (apic_verbosity == APIC_QUIET)
1067 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1068 smp_processor_id(), hard_smp_processor_id());
1069 v = apic_read(APIC_ID);
1070 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(v));
1071 v = apic_read(APIC_LVR);
1072 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1073 ver = GET_APIC_VERSION(v);
1074 maxlvt = get_maxlvt();
1076 v = apic_read(APIC_TASKPRI);
1077 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1079 v = apic_read(APIC_ARBPRI);
1080 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1081 v & APIC_ARBPRI_MASK);
1082 v = apic_read(APIC_PROCPRI);
1083 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1085 v = apic_read(APIC_EOI);
1086 printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
1087 v = apic_read(APIC_RRR);
1088 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1089 v = apic_read(APIC_LDR);
1090 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1091 v = apic_read(APIC_DFR);
1092 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1093 v = apic_read(APIC_SPIV);
1094 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1096 printk(KERN_DEBUG "... APIC ISR field:\n");
1097 print_APIC_bitfield(APIC_ISR);
1098 printk(KERN_DEBUG "... APIC TMR field:\n");
1099 print_APIC_bitfield(APIC_TMR);
1100 printk(KERN_DEBUG "... APIC IRR field:\n");
1101 print_APIC_bitfield(APIC_IRR);
1103 v = apic_read(APIC_ESR);
1104 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1106 v = apic_read(APIC_ICR);
1107 printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
1108 v = apic_read(APIC_ICR2);
1109 printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
1111 v = apic_read(APIC_LVTT);
1112 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1114 if (maxlvt > 3) { /* PC is LVT#4. */
1115 v = apic_read(APIC_LVTPC);
1116 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1118 v = apic_read(APIC_LVT0);
1119 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1120 v = apic_read(APIC_LVT1);
1121 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1123 if (maxlvt > 2) { /* ERR is LVT#3. */
1124 v = apic_read(APIC_LVTERR);
1125 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1128 v = apic_read(APIC_TMICT);
1129 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1130 v = apic_read(APIC_TMCCT);
1131 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1132 v = apic_read(APIC_TDCR);
1133 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1137 void print_all_local_APICs (void)
1139 on_each_cpu(print_local_APIC, NULL, 1, 1);
1142 void __apicdebuginit print_PIC(void)
1145 unsigned long flags;
1147 if (apic_verbosity == APIC_QUIET)
1150 printk(KERN_DEBUG "\nprinting PIC contents\n");
1152 spin_lock_irqsave(&i8259A_lock, flags);
1154 v = inb(0xa1) << 8 | inb(0x21);
1155 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1157 v = inb(0xa0) << 8 | inb(0x20);
1158 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1162 v = inb(0xa0) << 8 | inb(0x20);
1166 spin_unlock_irqrestore(&i8259A_lock, flags);
1168 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1170 v = inb(0x4d1) << 8 | inb(0x4d0);
1171 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1176 static void __init enable_IO_APIC(void)
1178 union IO_APIC_reg_01 reg_01;
1179 int i8259_apic, i8259_pin;
1181 unsigned long flags;
1183 for (i = 0; i < PIN_MAP_SIZE; i++) {
1184 irq_2_pin[i].pin = -1;
1185 irq_2_pin[i].next = 0;
1189 * The number of IO-APIC IRQ registers (== #pins):
1191 for (apic = 0; apic < nr_ioapics; apic++) {
1192 spin_lock_irqsave(&ioapic_lock, flags);
1193 reg_01.raw = io_apic_read(apic, 1);
1194 spin_unlock_irqrestore(&ioapic_lock, flags);
1195 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1197 for(apic = 0; apic < nr_ioapics; apic++) {
1199 /* See if any of the pins is in ExtINT mode */
1200 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1201 struct IO_APIC_route_entry entry;
1202 entry = ioapic_read_entry(apic, pin);
1204 /* If the interrupt line is enabled and in ExtInt mode
1205 * I have found the pin where the i8259 is connected.
1207 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1208 ioapic_i8259.apic = apic;
1209 ioapic_i8259.pin = pin;
1215 /* Look to see what if the MP table has reported the ExtINT */
1216 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1217 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1218 /* Trust the MP table if nothing is setup in the hardware */
1219 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1220 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1221 ioapic_i8259.pin = i8259_pin;
1222 ioapic_i8259.apic = i8259_apic;
1224 /* Complain if the MP table and the hardware disagree */
1225 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1226 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1228 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1232 * Do not trust the IO-APIC being empty at bootup
1238 * Not an __init, needed by the reboot code
1240 void disable_IO_APIC(void)
1243 * Clear the IO-APIC before rebooting:
1248 * If the i8259 is routed through an IOAPIC
1249 * Put that IOAPIC in virtual wire mode
1250 * so legacy interrupts can be delivered.
1252 if (ioapic_i8259.pin != -1) {
1253 struct IO_APIC_route_entry entry;
1255 memset(&entry, 0, sizeof(entry));
1256 entry.mask = 0; /* Enabled */
1257 entry.trigger = 0; /* Edge */
1259 entry.polarity = 0; /* High */
1260 entry.delivery_status = 0;
1261 entry.dest_mode = 0; /* Physical */
1262 entry.delivery_mode = dest_ExtINT; /* ExtInt */
1264 entry.dest = GET_APIC_ID(apic_read(APIC_ID));
1267 * Add it to the IO-APIC irq-routing table:
1269 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
1272 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
1276 * There is a nasty bug in some older SMP boards, their mptable lies
1277 * about the timer IRQ. We do the following to work around the situation:
1279 * - timer IRQ defaults to IO-APIC IRQ
1280 * - if this function detects that timer IRQs are defunct, then we fall
1281 * back to ISA timer IRQs
1283 static int __init timer_irq_works(void)
1285 unsigned long t1 = jiffies;
1288 /* Let ten ticks pass... */
1289 mdelay((10 * 1000) / HZ);
1292 * Expect a few ticks at least, to be sure some possible
1293 * glue logic does not lock up after one or two first
1294 * ticks in a non-ExtINT mode. Also the local APIC
1295 * might have cached one ExtINT interrupt. Finally, at
1296 * least one tick may be lost due to delays.
1300 if (jiffies - t1 > 4)
1306 * In the SMP+IOAPIC case it might happen that there are an unspecified
1307 * number of pending IRQ events unhandled. These cases are very rare,
1308 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
1309 * better to do it this way as thus we do not have to be aware of
1310 * 'pending' interrupts in the IRQ path, except at this point.
1313 * Edge triggered needs to resend any interrupt
1314 * that was delayed but this is now handled in the device
1319 * Starting up a edge-triggered IO-APIC interrupt is
1320 * nasty - we need to make sure that we get the edge.
1321 * If it is already asserted for some reason, we need
1322 * return 1 to indicate that is was pending.
1324 * This is not complete - we should be able to fake
1325 * an edge even if it isn't on the 8259A...
1328 static unsigned int startup_ioapic_irq(unsigned int irq)
1330 int was_pending = 0;
1331 unsigned long flags;
1333 spin_lock_irqsave(&ioapic_lock, flags);
1335 disable_8259A_irq(irq);
1336 if (i8259A_irq_pending(irq))
1339 __unmask_IO_APIC_irq(irq);
1340 spin_unlock_irqrestore(&ioapic_lock, flags);
1345 static int ioapic_retrigger_irq(unsigned int irq)
1347 struct irq_cfg *cfg = &irq_cfg[irq];
1349 unsigned long flags;
1351 spin_lock_irqsave(&vector_lock, flags);
1353 cpu_set(first_cpu(cfg->domain), mask);
1355 send_IPI_mask(mask, cfg->vector);
1356 spin_unlock_irqrestore(&vector_lock, flags);
1362 * Level and edge triggered IO-APIC interrupts need different handling,
1363 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
1364 * handled with the level-triggered descriptor, but that one has slightly
1365 * more overhead. Level-triggered interrupts cannot be handled with the
1366 * edge-triggered handler, without risking IRQ storms and other ugly
1371 asmlinkage void smp_irq_move_cleanup_interrupt(void)
1373 unsigned vector, me;
1378 me = smp_processor_id();
1379 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
1381 struct irq_desc *desc;
1382 struct irq_cfg *cfg;
1383 irq = __get_cpu_var(vector_irq)[vector];
1387 desc = irq_desc + irq;
1388 cfg = irq_cfg + irq;
1389 spin_lock(&desc->lock);
1390 if (!cfg->move_cleanup_count)
1393 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
1396 __get_cpu_var(vector_irq)[vector] = -1;
1397 cfg->move_cleanup_count--;
1399 spin_unlock(&desc->lock);
1405 static void irq_complete_move(unsigned int irq)
1407 struct irq_cfg *cfg = irq_cfg + irq;
1408 unsigned vector, me;
1410 if (likely(!cfg->move_in_progress))
1413 vector = ~get_irq_regs()->orig_rax;
1414 me = smp_processor_id();
1415 if ((vector == cfg->vector) &&
1416 cpu_isset(smp_processor_id(), cfg->domain)) {
1417 cpumask_t cleanup_mask;
1419 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
1420 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
1421 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
1422 cfg->move_in_progress = 0;
1426 static inline void irq_complete_move(unsigned int irq) {}
1429 static void ack_apic_edge(unsigned int irq)
1431 irq_complete_move(irq);
1432 move_native_irq(irq);
1436 static void ack_apic_level(unsigned int irq)
1438 int do_unmask_irq = 0;
1440 irq_complete_move(irq);
1441 #if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
1442 /* If we are moving the irq we need to mask it */
1443 if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
1445 mask_IO_APIC_irq(irq);
1450 * We must acknowledge the irq before we move it or the acknowledge will
1451 * not propogate properly.
1455 /* Now we can move and renable the irq */
1456 move_masked_irq(irq);
1457 if (unlikely(do_unmask_irq))
1458 unmask_IO_APIC_irq(irq);
1461 static struct irq_chip ioapic_chip __read_mostly = {
1463 .startup = startup_ioapic_irq,
1464 .mask = mask_IO_APIC_irq,
1465 .unmask = unmask_IO_APIC_irq,
1466 .ack = ack_apic_edge,
1467 .eoi = ack_apic_level,
1469 .set_affinity = set_ioapic_affinity_irq,
1471 .retrigger = ioapic_retrigger_irq,
1474 static inline void init_IO_APIC_traps(void)
1479 * NOTE! The local APIC isn't very good at handling
1480 * multiple interrupts at the same interrupt level.
1481 * As the interrupt level is determined by taking the
1482 * vector number and shifting that right by 4, we
1483 * want to spread these out a bit so that they don't
1484 * all fall in the same interrupt level.
1486 * Also, we've got to be careful not to trash gate
1487 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1489 for (irq = 0; irq < NR_IRQS ; irq++) {
1491 if (IO_APIC_IRQ(tmp) && !irq_cfg[tmp].vector) {
1493 * Hmm.. We don't have an entry for this,
1494 * so default to an old-fashioned 8259
1495 * interrupt if we can..
1498 make_8259A_irq(irq);
1500 /* Strange. Oh, well.. */
1501 irq_desc[irq].chip = &no_irq_chip;
1506 static void enable_lapic_irq (unsigned int irq)
1510 v = apic_read(APIC_LVT0);
1511 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
1514 static void disable_lapic_irq (unsigned int irq)
1518 v = apic_read(APIC_LVT0);
1519 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
1522 static void ack_lapic_irq (unsigned int irq)
1527 static void end_lapic_irq (unsigned int i) { /* nothing */ }
1529 static struct hw_interrupt_type lapic_irq_type __read_mostly = {
1530 .typename = "local-APIC-edge",
1531 .startup = NULL, /* startup_irq() not used for IRQ0 */
1532 .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
1533 .enable = enable_lapic_irq,
1534 .disable = disable_lapic_irq,
1535 .ack = ack_lapic_irq,
1536 .end = end_lapic_irq,
1539 static void setup_nmi (void)
1542 * Dirty trick to enable the NMI watchdog ...
1543 * We put the 8259A master into AEOI mode and
1544 * unmask on all local APICs LVT0 as NMI.
1546 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
1547 * is from Maciej W. Rozycki - so we do not have to EOI from
1548 * the NMI handler or the timer interrupt.
1550 printk(KERN_INFO "activating NMI Watchdog ...");
1552 enable_NMI_through_LVT0(NULL);
1558 * This looks a bit hackish but it's about the only one way of sending
1559 * a few INTA cycles to 8259As and any associated glue logic. ICR does
1560 * not support the ExtINT mode, unfortunately. We need to send these
1561 * cycles as some i82489DX-based boards have glue logic that keeps the
1562 * 8259A interrupt line asserted until INTA. --macro
1564 static inline void unlock_ExtINT_logic(void)
1567 struct IO_APIC_route_entry entry0, entry1;
1568 unsigned char save_control, save_freq_select;
1569 unsigned long flags;
1571 pin = find_isa_irq_pin(8, mp_INT);
1572 apic = find_isa_irq_apic(8, mp_INT);
1576 spin_lock_irqsave(&ioapic_lock, flags);
1577 *(((int *)&entry0) + 1) = io_apic_read(apic, 0x11 + 2 * pin);
1578 *(((int *)&entry0) + 0) = io_apic_read(apic, 0x10 + 2 * pin);
1579 spin_unlock_irqrestore(&ioapic_lock, flags);
1580 clear_IO_APIC_pin(apic, pin);
1582 memset(&entry1, 0, sizeof(entry1));
1584 entry1.dest_mode = 0; /* physical delivery */
1585 entry1.mask = 0; /* unmask IRQ now */
1586 entry1.dest = hard_smp_processor_id();
1587 entry1.delivery_mode = dest_ExtINT;
1588 entry1.polarity = entry0.polarity;
1592 spin_lock_irqsave(&ioapic_lock, flags);
1593 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
1594 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
1595 spin_unlock_irqrestore(&ioapic_lock, flags);
1597 save_control = CMOS_READ(RTC_CONTROL);
1598 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
1599 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
1601 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
1606 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
1610 CMOS_WRITE(save_control, RTC_CONTROL);
1611 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
1612 clear_IO_APIC_pin(apic, pin);
1614 spin_lock_irqsave(&ioapic_lock, flags);
1615 io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
1616 io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
1617 spin_unlock_irqrestore(&ioapic_lock, flags);
1621 * This code may look a bit paranoid, but it's supposed to cooperate with
1622 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
1623 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
1624 * fanatically on his truly buggy board.
1626 * FIXME: really need to revamp this for modern platforms only.
1628 static inline void check_timer(void)
1630 struct irq_cfg *cfg = irq_cfg + 0;
1631 int apic1, pin1, apic2, pin2;
1634 * get/set the timer IRQ vector:
1636 disable_8259A_irq(0);
1637 assign_irq_vector(0, TARGET_CPUS);
1640 * Subtle, code in do_timer_interrupt() expects an AEOI
1641 * mode for the 8259A whenever interrupts are routed
1642 * through I/O APICs. Also IRQ0 has to be enabled in
1643 * the 8259A which implies the virtual wire has to be
1644 * disabled in the local APIC.
1646 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
1648 if (timer_over_8254 > 0)
1649 enable_8259A_irq(0);
1651 pin1 = find_isa_irq_pin(0, mp_INT);
1652 apic1 = find_isa_irq_apic(0, mp_INT);
1653 pin2 = ioapic_i8259.pin;
1654 apic2 = ioapic_i8259.apic;
1656 apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
1657 cfg->vector, apic1, pin1, apic2, pin2);
1661 * Ok, does IRQ0 through the IOAPIC work?
1663 unmask_IO_APIC_irq(0);
1664 if (!no_timer_check && timer_irq_works()) {
1665 nmi_watchdog_default();
1666 if (nmi_watchdog == NMI_IO_APIC) {
1667 disable_8259A_irq(0);
1669 enable_8259A_irq(0);
1671 if (disable_timer_pin_1 > 0)
1672 clear_IO_APIC_pin(0, pin1);
1675 clear_IO_APIC_pin(apic1, pin1);
1676 apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: 8254 timer not "
1677 "connected to IO-APIC\n");
1680 apic_printk(APIC_VERBOSE,KERN_INFO "...trying to set up timer (IRQ0) "
1681 "through the 8259A ... ");
1683 apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
1686 * legacy devices should be connected to IO APIC #0
1688 setup_ExtINT_IRQ0_pin(apic2, pin2, cfg->vector);
1689 if (timer_irq_works()) {
1690 apic_printk(APIC_VERBOSE," works.\n");
1691 nmi_watchdog_default();
1692 if (nmi_watchdog == NMI_IO_APIC) {
1698 * Cleanup, just in case ...
1700 clear_IO_APIC_pin(apic2, pin2);
1702 apic_printk(APIC_VERBOSE," failed.\n");
1704 if (nmi_watchdog == NMI_IO_APIC) {
1705 printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
1709 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
1711 disable_8259A_irq(0);
1712 irq_desc[0].chip = &lapic_irq_type;
1713 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
1714 enable_8259A_irq(0);
1716 if (timer_irq_works()) {
1717 apic_printk(APIC_VERBOSE," works.\n");
1720 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
1721 apic_printk(APIC_VERBOSE," failed.\n");
1723 apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
1727 apic_write(APIC_LVT0, APIC_DM_EXTINT);
1729 unlock_ExtINT_logic();
1731 if (timer_irq_works()) {
1732 apic_printk(APIC_VERBOSE," works.\n");
1735 apic_printk(APIC_VERBOSE," failed :(.\n");
1736 panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
1739 static int __init notimercheck(char *s)
1744 __setup("no_timer_check", notimercheck);
1748 * IRQ's that are handled by the PIC in the MPS IOAPIC case.
1749 * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
1750 * Linux doesn't really care, as it's not actually used
1751 * for any interrupt handling anyway.
1753 #define PIC_IRQS (1<<2)
1755 void __init setup_IO_APIC(void)
1760 io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
1762 io_apic_irqs = ~PIC_IRQS;
1764 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
1767 setup_IO_APIC_irqs();
1768 init_IO_APIC_traps();
1774 struct sysfs_ioapic_data {
1775 struct sys_device dev;
1776 struct IO_APIC_route_entry entry[0];
1778 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
1780 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
1782 struct IO_APIC_route_entry *entry;
1783 struct sysfs_ioapic_data *data;
1786 data = container_of(dev, struct sysfs_ioapic_data, dev);
1787 entry = data->entry;
1788 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
1789 *entry = ioapic_read_entry(dev->id, i);
1794 static int ioapic_resume(struct sys_device *dev)
1796 struct IO_APIC_route_entry *entry;
1797 struct sysfs_ioapic_data *data;
1798 unsigned long flags;
1799 union IO_APIC_reg_00 reg_00;
1802 data = container_of(dev, struct sysfs_ioapic_data, dev);
1803 entry = data->entry;
1805 spin_lock_irqsave(&ioapic_lock, flags);
1806 reg_00.raw = io_apic_read(dev->id, 0);
1807 if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
1808 reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
1809 io_apic_write(dev->id, 0, reg_00.raw);
1811 spin_unlock_irqrestore(&ioapic_lock, flags);
1812 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
1813 ioapic_write_entry(dev->id, i, entry[i]);
1818 static struct sysdev_class ioapic_sysdev_class = {
1819 set_kset_name("ioapic"),
1820 .suspend = ioapic_suspend,
1821 .resume = ioapic_resume,
1824 static int __init ioapic_init_sysfs(void)
1826 struct sys_device * dev;
1827 int i, size, error = 0;
1829 error = sysdev_class_register(&ioapic_sysdev_class);
1833 for (i = 0; i < nr_ioapics; i++ ) {
1834 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
1835 * sizeof(struct IO_APIC_route_entry);
1836 mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
1837 if (!mp_ioapic_data[i]) {
1838 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1841 memset(mp_ioapic_data[i], 0, size);
1842 dev = &mp_ioapic_data[i]->dev;
1844 dev->cls = &ioapic_sysdev_class;
1845 error = sysdev_register(dev);
1847 kfree(mp_ioapic_data[i]);
1848 mp_ioapic_data[i] = NULL;
1849 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
1857 device_initcall(ioapic_init_sysfs);
1860 * Dynamic irq allocate and deallocation
1862 int create_irq(void)
1864 /* Allocate an unused irq */
1867 unsigned long flags;
1870 spin_lock_irqsave(&vector_lock, flags);
1871 for (new = (NR_IRQS - 1); new >= 0; new--) {
1872 if (platform_legacy_irq(new))
1874 if (irq_cfg[new].vector != 0)
1876 if (__assign_irq_vector(new, TARGET_CPUS) == 0)
1880 spin_unlock_irqrestore(&vector_lock, flags);
1883 dynamic_irq_init(irq);
1888 void destroy_irq(unsigned int irq)
1890 unsigned long flags;
1892 dynamic_irq_cleanup(irq);
1894 spin_lock_irqsave(&vector_lock, flags);
1895 __clear_irq_vector(irq);
1896 spin_unlock_irqrestore(&vector_lock, flags);
1900 * MSI mesage composition
1902 #ifdef CONFIG_PCI_MSI
1903 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
1905 struct irq_cfg *cfg = irq_cfg + irq;
1911 err = assign_irq_vector(irq, tmp);
1913 cpus_and(tmp, cfg->domain, tmp);
1914 dest = cpu_mask_to_apicid(tmp);
1916 msg->address_hi = MSI_ADDR_BASE_HI;
1919 ((INT_DEST_MODE == 0) ?
1920 MSI_ADDR_DEST_MODE_PHYSICAL:
1921 MSI_ADDR_DEST_MODE_LOGICAL) |
1922 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1923 MSI_ADDR_REDIRECTION_CPU:
1924 MSI_ADDR_REDIRECTION_LOWPRI) |
1925 MSI_ADDR_DEST_ID(dest);
1928 MSI_DATA_TRIGGER_EDGE |
1929 MSI_DATA_LEVEL_ASSERT |
1930 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
1931 MSI_DATA_DELIVERY_FIXED:
1932 MSI_DATA_DELIVERY_LOWPRI) |
1933 MSI_DATA_VECTOR(cfg->vector);
1939 static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
1941 struct irq_cfg *cfg = irq_cfg + irq;
1946 cpus_and(tmp, mask, cpu_online_map);
1947 if (cpus_empty(tmp))
1950 if (assign_irq_vector(irq, mask))
1953 cpus_and(tmp, cfg->domain, mask);
1954 dest = cpu_mask_to_apicid(tmp);
1956 read_msi_msg(irq, &msg);
1958 msg.data &= ~MSI_DATA_VECTOR_MASK;
1959 msg.data |= MSI_DATA_VECTOR(cfg->vector);
1960 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
1961 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
1963 write_msi_msg(irq, &msg);
1964 irq_desc[irq].affinity = mask;
1966 #endif /* CONFIG_SMP */
1969 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
1970 * which implement the MSI or MSI-X Capability Structure.
1972 static struct irq_chip msi_chip = {
1974 .unmask = unmask_msi_irq,
1975 .mask = mask_msi_irq,
1976 .ack = ack_apic_edge,
1978 .set_affinity = set_msi_irq_affinity,
1980 .retrigger = ioapic_retrigger_irq,
1983 int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
1991 set_irq_msi(irq, desc);
1992 ret = msi_compose_msg(dev, irq, &msg);
1998 write_msi_msg(irq, &msg);
2000 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
2005 void arch_teardown_msi_irq(unsigned int irq)
2010 #endif /* CONFIG_PCI_MSI */
2013 * Hypertransport interrupt support
2015 #ifdef CONFIG_HT_IRQ
2019 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
2021 struct ht_irq_msg msg;
2022 fetch_ht_irq_msg(irq, &msg);
2024 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
2025 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
2027 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
2028 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
2030 write_ht_irq_msg(irq, &msg);
2033 static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
2035 struct irq_cfg *cfg = irq_cfg + irq;
2039 cpus_and(tmp, mask, cpu_online_map);
2040 if (cpus_empty(tmp))
2043 if (assign_irq_vector(irq, mask))
2046 cpus_and(tmp, cfg->domain, mask);
2047 dest = cpu_mask_to_apicid(tmp);
2049 target_ht_irq(irq, dest, cfg->vector);
2050 irq_desc[irq].affinity = mask;
2054 static struct irq_chip ht_irq_chip = {
2056 .mask = mask_ht_irq,
2057 .unmask = unmask_ht_irq,
2058 .ack = ack_apic_edge,
2060 .set_affinity = set_ht_irq_affinity,
2062 .retrigger = ioapic_retrigger_irq,
2065 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
2067 struct irq_cfg *cfg = irq_cfg + irq;
2072 err = assign_irq_vector(irq, tmp);
2074 struct ht_irq_msg msg;
2077 cpus_and(tmp, cfg->domain, tmp);
2078 dest = cpu_mask_to_apicid(tmp);
2080 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
2084 HT_IRQ_LOW_DEST_ID(dest) |
2085 HT_IRQ_LOW_VECTOR(cfg->vector) |
2086 ((INT_DEST_MODE == 0) ?
2087 HT_IRQ_LOW_DM_PHYSICAL :
2088 HT_IRQ_LOW_DM_LOGICAL) |
2089 HT_IRQ_LOW_RQEOI_EDGE |
2090 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
2091 HT_IRQ_LOW_MT_FIXED :
2092 HT_IRQ_LOW_MT_ARBITRATED) |
2093 HT_IRQ_LOW_IRQ_MASKED;
2095 write_ht_irq_msg(irq, &msg);
2097 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
2098 handle_edge_irq, "edge");
2102 #endif /* CONFIG_HT_IRQ */
2104 /* --------------------------------------------------------------------------
2105 ACPI-based IOAPIC Configuration
2106 -------------------------------------------------------------------------- */
2110 #define IO_APIC_MAX_ID 0xFE
2112 int __init io_apic_get_redir_entries (int ioapic)
2114 union IO_APIC_reg_01 reg_01;
2115 unsigned long flags;
2117 spin_lock_irqsave(&ioapic_lock, flags);
2118 reg_01.raw = io_apic_read(ioapic, 1);
2119 spin_unlock_irqrestore(&ioapic_lock, flags);
2121 return reg_01.bits.entries;
2125 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
2127 if (!IO_APIC_IRQ(irq)) {
2128 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
2134 * IRQs < 16 are already in the irq_2_pin[] map
2137 add_pin_to_irq(irq, ioapic, pin);
2139 setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
2144 #endif /* CONFIG_ACPI */
2148 * This function currently is only a helper for the i386 smp boot process where
2149 * we need to reprogram the ioredtbls to cater for the cpus which have come online
2150 * so mask in all cases should simply be TARGET_CPUS
2153 void __init setup_ioapic_dest(void)
2155 int pin, ioapic, irq, irq_entry;
2157 if (skip_ioapic_setup == 1)
2160 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
2161 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
2162 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
2163 if (irq_entry == -1)
2165 irq = pin_2_irq(irq_entry, ioapic, pin);
2167 /* setup_IO_APIC_irqs could fail to get vector for some device
2168 * when you have too many devices, because at that time only boot
2171 if (!irq_cfg[irq].vector)
2172 setup_IO_APIC_irq(ioapic, pin, irq,
2173 irq_trigger(irq_entry),
2174 irq_polarity(irq_entry));
2176 set_ioapic_affinity_irq(irq, TARGET_CPUS);