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/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/sysdev.h>
34 #include <linux/msi.h>
35 #include <linux/htirq.h>
36 #include <linux/freezer.h>
37 #include <linux/kthread.h>
38 #include <linux/jiffies.h> /* time_after() */
40 #include <acpi/acpi_bus.h>
42 #include <linux/bootmem.h>
43 #include <linux/dmar.h>
44 #include <linux/hpet.h>
50 #include <asm/proto.h>
53 #include <asm/timer.h>
54 #include <asm/i8259.h>
56 #include <asm/msidef.h>
57 #include <asm/hypertransport.h>
58 #include <asm/setup.h>
59 #include <asm/irq_remapping.h>
61 #include <asm/uv/uv_hub.h>
62 #include <asm/uv/uv_irq.h>
65 #include <mach_apic.h>
66 #include <mach_apicdef.h>
68 #define __apicdebuginit(type) static type __init
71 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
74 int sis_apic_bug = -1;
76 static DEFINE_SPINLOCK(ioapic_lock);
77 static DEFINE_SPINLOCK(vector_lock);
80 * # of IRQ routing registers
82 int nr_ioapic_registers[MAX_IO_APICS];
84 /* I/O APIC entries */
85 struct mp_config_ioapic mp_ioapics[MAX_IO_APICS];
88 /* MP IRQ source entries */
89 struct mp_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
91 /* # of MP IRQ source entries */
94 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
95 int mp_bus_id_to_type[MAX_MP_BUSSES];
98 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
100 int skip_ioapic_setup;
102 static int __init parse_noapic(char *str)
104 /* disable IO-APIC */
105 disable_ioapic_setup();
108 early_param("noapic", parse_noapic);
113 * This is performance-critical, we want to do it O(1)
115 * the indexing order of this array favors 1:1 mappings
116 * between pins and IRQs.
119 struct irq_pin_list {
121 struct irq_pin_list *next;
124 static struct irq_pin_list *get_one_free_irq_2_pin(int cpu)
126 struct irq_pin_list *pin;
129 node = cpu_to_node(cpu);
131 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
132 printk(KERN_DEBUG " alloc irq_2_pin on cpu %d node %d\n", cpu, node);
138 struct irq_pin_list *irq_2_pin;
140 cpumask_t old_domain;
141 unsigned move_cleanup_count;
143 u8 move_in_progress : 1;
144 #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
145 u8 move_desc_pending : 1;
149 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
150 #ifdef CONFIG_SPARSE_IRQ
151 static struct irq_cfg irq_cfgx[] = {
153 static struct irq_cfg irq_cfgx[NR_IRQS] = {
155 [0] = { .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
156 [1] = { .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
157 [2] = { .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
158 [3] = { .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
159 [4] = { .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
160 [5] = { .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
161 [6] = { .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
162 [7] = { .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
163 [8] = { .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
164 [9] = { .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
165 [10] = { .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
166 [11] = { .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
167 [12] = { .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
168 [13] = { .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
169 [14] = { .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
170 [15] = { .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
173 void __init arch_early_irq_init(void)
176 struct irq_desc *desc;
181 count = ARRAY_SIZE(irq_cfgx);
183 for (i = 0; i < count; i++) {
184 desc = irq_to_desc(i);
185 desc->chip_data = &cfg[i];
189 #ifdef CONFIG_SPARSE_IRQ
190 static struct irq_cfg *irq_cfg(unsigned int irq)
192 struct irq_cfg *cfg = NULL;
193 struct irq_desc *desc;
195 desc = irq_to_desc(irq);
197 cfg = desc->chip_data;
202 static struct irq_cfg *get_one_free_irq_cfg(int cpu)
207 node = cpu_to_node(cpu);
209 cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
210 printk(KERN_DEBUG " alloc irq_cfg on cpu %d node %d\n", cpu, node);
215 void arch_init_chip_data(struct irq_desc *desc, int cpu)
219 cfg = desc->chip_data;
221 desc->chip_data = get_one_free_irq_cfg(cpu);
222 if (!desc->chip_data) {
223 printk(KERN_ERR "can not alloc irq_cfg\n");
229 #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
232 init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int cpu)
234 struct irq_pin_list *old_entry, *head, *tail, *entry;
236 cfg->irq_2_pin = NULL;
237 old_entry = old_cfg->irq_2_pin;
241 entry = get_one_free_irq_2_pin(cpu);
245 entry->apic = old_entry->apic;
246 entry->pin = old_entry->pin;
249 old_entry = old_entry->next;
251 entry = get_one_free_irq_2_pin(cpu);
259 /* still use the old one */
262 entry->apic = old_entry->apic;
263 entry->pin = old_entry->pin;
266 old_entry = old_entry->next;
270 cfg->irq_2_pin = head;
273 static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
275 struct irq_pin_list *entry, *next;
277 if (old_cfg->irq_2_pin == cfg->irq_2_pin)
280 entry = old_cfg->irq_2_pin;
287 old_cfg->irq_2_pin = NULL;
290 void arch_init_copy_chip_data(struct irq_desc *old_desc,
291 struct irq_desc *desc, int cpu)
294 struct irq_cfg *old_cfg;
296 cfg = get_one_free_irq_cfg(cpu);
301 desc->chip_data = cfg;
303 old_cfg = old_desc->chip_data;
305 memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
307 init_copy_irq_2_pin(old_cfg, cfg, cpu);
310 static void free_irq_cfg(struct irq_cfg *old_cfg)
315 void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
317 struct irq_cfg *old_cfg, *cfg;
319 old_cfg = old_desc->chip_data;
320 cfg = desc->chip_data;
326 free_irq_2_pin(old_cfg, cfg);
327 free_irq_cfg(old_cfg);
328 old_desc->chip_data = NULL;
332 static void set_extra_move_desc(struct irq_desc *desc, cpumask_t mask)
334 struct irq_cfg *cfg = desc->chip_data;
336 if (!cfg->move_in_progress) {
337 /* it means that domain is not changed */
338 if (!cpus_intersects(desc->affinity, mask))
339 cfg->move_desc_pending = 1;
345 static struct irq_cfg *irq_cfg(unsigned int irq)
347 return irq < nr_irqs ? irq_cfgx + irq : NULL;
352 #ifndef CONFIG_NUMA_MIGRATE_IRQ_DESC
353 static inline void set_extra_move_desc(struct irq_desc *desc, cpumask_t mask)
360 unsigned int unused[3];
364 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
366 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
367 + (mp_ioapics[idx].mp_apicaddr & ~PAGE_MASK);
370 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
372 struct io_apic __iomem *io_apic = io_apic_base(apic);
373 writel(reg, &io_apic->index);
374 return readl(&io_apic->data);
377 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
379 struct io_apic __iomem *io_apic = io_apic_base(apic);
380 writel(reg, &io_apic->index);
381 writel(value, &io_apic->data);
385 * Re-write a value: to be used for read-modify-write
386 * cycles where the read already set up the index register.
388 * Older SiS APIC requires we rewrite the index register
390 static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
392 struct io_apic __iomem *io_apic = io_apic_base(apic);
395 writel(reg, &io_apic->index);
396 writel(value, &io_apic->data);
399 static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
401 struct irq_pin_list *entry;
404 spin_lock_irqsave(&ioapic_lock, flags);
405 entry = cfg->irq_2_pin;
413 reg = io_apic_read(entry->apic, 0x10 + pin*2);
414 /* Is the remote IRR bit set? */
415 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
416 spin_unlock_irqrestore(&ioapic_lock, flags);
423 spin_unlock_irqrestore(&ioapic_lock, flags);
429 struct { u32 w1, w2; };
430 struct IO_APIC_route_entry entry;
433 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
435 union entry_union eu;
437 spin_lock_irqsave(&ioapic_lock, flags);
438 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
439 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
440 spin_unlock_irqrestore(&ioapic_lock, flags);
445 * When we write a new IO APIC routing entry, we need to write the high
446 * word first! If the mask bit in the low word is clear, we will enable
447 * the interrupt, and we need to make sure the entry is fully populated
448 * before that happens.
451 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
453 union entry_union eu;
455 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
456 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
459 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
462 spin_lock_irqsave(&ioapic_lock, flags);
463 __ioapic_write_entry(apic, pin, e);
464 spin_unlock_irqrestore(&ioapic_lock, flags);
468 * When we mask an IO APIC routing entry, we need to write the low
469 * word first, in order to set the mask bit before we change the
472 static void ioapic_mask_entry(int apic, int pin)
475 union entry_union eu = { .entry.mask = 1 };
477 spin_lock_irqsave(&ioapic_lock, flags);
478 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
479 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
480 spin_unlock_irqrestore(&ioapic_lock, flags);
484 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
487 struct irq_pin_list *entry;
488 u8 vector = cfg->vector;
490 entry = cfg->irq_2_pin;
499 #ifdef CONFIG_INTR_REMAP
501 * With interrupt-remapping, destination information comes
502 * from interrupt-remapping table entry.
504 if (!irq_remapped(irq))
505 io_apic_write(apic, 0x11 + pin*2, dest);
507 io_apic_write(apic, 0x11 + pin*2, dest);
509 reg = io_apic_read(apic, 0x10 + pin*2);
510 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
512 io_apic_modify(apic, 0x10 + pin*2, reg);
519 static int assign_irq_vector(int irq, struct irq_cfg *cfg, cpumask_t mask);
521 static void set_ioapic_affinity_irq_desc(struct irq_desc *desc, cpumask_t mask)
529 cpus_and(tmp, mask, cpu_online_map);
534 cfg = desc->chip_data;
535 if (assign_irq_vector(irq, cfg, mask))
538 set_extra_move_desc(desc, mask);
540 cpus_and(tmp, cfg->domain, mask);
541 dest = cpu_mask_to_apicid(tmp);
543 * Only the high 8 bits are valid.
545 dest = SET_APIC_LOGICAL_ID(dest);
547 spin_lock_irqsave(&ioapic_lock, flags);
548 __target_IO_APIC_irq(irq, dest, cfg);
549 desc->affinity = mask;
550 spin_unlock_irqrestore(&ioapic_lock, flags);
553 static void set_ioapic_affinity_irq(unsigned int irq,
554 const struct cpumask *mask)
556 struct irq_desc *desc;
558 desc = irq_to_desc(irq);
560 set_ioapic_affinity_irq_desc(desc, *mask);
562 #endif /* CONFIG_SMP */
565 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
566 * shared ISA-space IRQs, so we have to support them. We are super
567 * fast in the common case, and fast for shared ISA-space IRQs.
569 static void add_pin_to_irq_cpu(struct irq_cfg *cfg, int cpu, int apic, int pin)
571 struct irq_pin_list *entry;
573 entry = cfg->irq_2_pin;
575 entry = get_one_free_irq_2_pin(cpu);
577 printk(KERN_ERR "can not alloc irq_2_pin to add %d - %d\n",
581 cfg->irq_2_pin = entry;
587 while (entry->next) {
588 /* not again, please */
589 if (entry->apic == apic && entry->pin == pin)
595 entry->next = get_one_free_irq_2_pin(cpu);
602 * Reroute an IRQ to a different pin.
604 static void __init replace_pin_at_irq_cpu(struct irq_cfg *cfg, int cpu,
605 int oldapic, int oldpin,
606 int newapic, int newpin)
608 struct irq_pin_list *entry = cfg->irq_2_pin;
612 if (entry->apic == oldapic && entry->pin == oldpin) {
613 entry->apic = newapic;
616 /* every one is different, right? */
622 /* why? call replace before add? */
624 add_pin_to_irq_cpu(cfg, cpu, newapic, newpin);
627 static inline void io_apic_modify_irq(struct irq_cfg *cfg,
628 int mask_and, int mask_or,
629 void (*final)(struct irq_pin_list *entry))
632 struct irq_pin_list *entry;
634 for (entry = cfg->irq_2_pin; entry != NULL; entry = entry->next) {
637 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
640 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
646 static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
648 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
652 void io_apic_sync(struct irq_pin_list *entry)
655 * Synchronize the IO-APIC and the CPU by doing
656 * a dummy read from the IO-APIC
658 struct io_apic __iomem *io_apic;
659 io_apic = io_apic_base(entry->apic);
660 readl(&io_apic->data);
663 static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
665 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
667 #else /* CONFIG_X86_32 */
668 static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
670 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, NULL);
673 static void __mask_and_edge_IO_APIC_irq(struct irq_cfg *cfg)
675 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_LEVEL_TRIGGER,
676 IO_APIC_REDIR_MASKED, NULL);
679 static void __unmask_and_level_IO_APIC_irq(struct irq_cfg *cfg)
681 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED,
682 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
684 #endif /* CONFIG_X86_32 */
686 static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
688 struct irq_cfg *cfg = desc->chip_data;
693 spin_lock_irqsave(&ioapic_lock, flags);
694 __mask_IO_APIC_irq(cfg);
695 spin_unlock_irqrestore(&ioapic_lock, flags);
698 static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
700 struct irq_cfg *cfg = desc->chip_data;
703 spin_lock_irqsave(&ioapic_lock, flags);
704 __unmask_IO_APIC_irq(cfg);
705 spin_unlock_irqrestore(&ioapic_lock, flags);
708 static void mask_IO_APIC_irq(unsigned int irq)
710 struct irq_desc *desc = irq_to_desc(irq);
712 mask_IO_APIC_irq_desc(desc);
714 static void unmask_IO_APIC_irq(unsigned int irq)
716 struct irq_desc *desc = irq_to_desc(irq);
718 unmask_IO_APIC_irq_desc(desc);
721 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
723 struct IO_APIC_route_entry entry;
725 /* Check delivery_mode to be sure we're not clearing an SMI pin */
726 entry = ioapic_read_entry(apic, pin);
727 if (entry.delivery_mode == dest_SMI)
730 * Disable it in the IO-APIC irq-routing table:
732 ioapic_mask_entry(apic, pin);
735 static void clear_IO_APIC (void)
739 for (apic = 0; apic < nr_ioapics; apic++)
740 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
741 clear_IO_APIC_pin(apic, pin);
744 #if !defined(CONFIG_SMP) && defined(CONFIG_X86_32)
745 void send_IPI_self(int vector)
752 apic_wait_icr_idle();
753 cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
755 * Send the IPI. The write to APIC_ICR fires this off.
757 apic_write(APIC_ICR, cfg);
759 #endif /* !CONFIG_SMP && CONFIG_X86_32*/
763 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
764 * specific CPU-side IRQs.
768 static int pirq_entries [MAX_PIRQS];
769 static int pirqs_enabled;
771 static int __init ioapic_pirq_setup(char *str)
774 int ints[MAX_PIRQS+1];
776 get_options(str, ARRAY_SIZE(ints), ints);
778 for (i = 0; i < MAX_PIRQS; i++)
779 pirq_entries[i] = -1;
782 apic_printk(APIC_VERBOSE, KERN_INFO
783 "PIRQ redirection, working around broken MP-BIOS.\n");
785 if (ints[0] < MAX_PIRQS)
788 for (i = 0; i < max; i++) {
789 apic_printk(APIC_VERBOSE, KERN_DEBUG
790 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
792 * PIRQs are mapped upside down, usually.
794 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
799 __setup("pirq=", ioapic_pirq_setup);
800 #endif /* CONFIG_X86_32 */
802 #ifdef CONFIG_INTR_REMAP
803 /* I/O APIC RTE contents at the OS boot up */
804 static struct IO_APIC_route_entry *early_ioapic_entries[MAX_IO_APICS];
807 * Saves and masks all the unmasked IO-APIC RTE's
809 int save_mask_IO_APIC_setup(void)
811 union IO_APIC_reg_01 reg_01;
816 * The number of IO-APIC IRQ registers (== #pins):
818 for (apic = 0; apic < nr_ioapics; apic++) {
819 spin_lock_irqsave(&ioapic_lock, flags);
820 reg_01.raw = io_apic_read(apic, 1);
821 spin_unlock_irqrestore(&ioapic_lock, flags);
822 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
825 for (apic = 0; apic < nr_ioapics; apic++) {
826 early_ioapic_entries[apic] =
827 kzalloc(sizeof(struct IO_APIC_route_entry) *
828 nr_ioapic_registers[apic], GFP_KERNEL);
829 if (!early_ioapic_entries[apic])
833 for (apic = 0; apic < nr_ioapics; apic++)
834 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
835 struct IO_APIC_route_entry entry;
837 entry = early_ioapic_entries[apic][pin] =
838 ioapic_read_entry(apic, pin);
841 ioapic_write_entry(apic, pin, entry);
849 kfree(early_ioapic_entries[apic--]);
850 memset(early_ioapic_entries, 0,
851 ARRAY_SIZE(early_ioapic_entries));
856 void restore_IO_APIC_setup(void)
860 for (apic = 0; apic < nr_ioapics; apic++) {
861 if (!early_ioapic_entries[apic])
863 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
864 ioapic_write_entry(apic, pin,
865 early_ioapic_entries[apic][pin]);
866 kfree(early_ioapic_entries[apic]);
867 early_ioapic_entries[apic] = NULL;
871 void reinit_intr_remapped_IO_APIC(int intr_remapping)
874 * for now plain restore of previous settings.
875 * TBD: In the case of OS enabling interrupt-remapping,
876 * IO-APIC RTE's need to be setup to point to interrupt-remapping
877 * table entries. for now, do a plain restore, and wait for
878 * the setup_IO_APIC_irqs() to do proper initialization.
880 restore_IO_APIC_setup();
885 * Find the IRQ entry number of a certain pin.
887 static int find_irq_entry(int apic, int pin, int type)
891 for (i = 0; i < mp_irq_entries; i++)
892 if (mp_irqs[i].mp_irqtype == type &&
893 (mp_irqs[i].mp_dstapic == mp_ioapics[apic].mp_apicid ||
894 mp_irqs[i].mp_dstapic == MP_APIC_ALL) &&
895 mp_irqs[i].mp_dstirq == pin)
902 * Find the pin to which IRQ[irq] (ISA) is connected
904 static int __init find_isa_irq_pin(int irq, int type)
908 for (i = 0; i < mp_irq_entries; i++) {
909 int lbus = mp_irqs[i].mp_srcbus;
911 if (test_bit(lbus, mp_bus_not_pci) &&
912 (mp_irqs[i].mp_irqtype == type) &&
913 (mp_irqs[i].mp_srcbusirq == irq))
915 return mp_irqs[i].mp_dstirq;
920 static int __init find_isa_irq_apic(int irq, int type)
924 for (i = 0; i < mp_irq_entries; i++) {
925 int lbus = mp_irqs[i].mp_srcbus;
927 if (test_bit(lbus, mp_bus_not_pci) &&
928 (mp_irqs[i].mp_irqtype == type) &&
929 (mp_irqs[i].mp_srcbusirq == irq))
932 if (i < mp_irq_entries) {
934 for(apic = 0; apic < nr_ioapics; apic++) {
935 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic)
944 * Find a specific PCI IRQ entry.
945 * Not an __init, possibly needed by modules
947 static int pin_2_irq(int idx, int apic, int pin);
949 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
951 int apic, i, best_guess = -1;
953 apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
955 if (test_bit(bus, mp_bus_not_pci)) {
956 apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
959 for (i = 0; i < mp_irq_entries; i++) {
960 int lbus = mp_irqs[i].mp_srcbus;
962 for (apic = 0; apic < nr_ioapics; apic++)
963 if (mp_ioapics[apic].mp_apicid == mp_irqs[i].mp_dstapic ||
964 mp_irqs[i].mp_dstapic == MP_APIC_ALL)
967 if (!test_bit(lbus, mp_bus_not_pci) &&
968 !mp_irqs[i].mp_irqtype &&
970 (slot == ((mp_irqs[i].mp_srcbusirq >> 2) & 0x1f))) {
971 int irq = pin_2_irq(i,apic,mp_irqs[i].mp_dstirq);
973 if (!(apic || IO_APIC_IRQ(irq)))
976 if (pin == (mp_irqs[i].mp_srcbusirq & 3))
979 * Use the first all-but-pin matching entry as a
980 * best-guess fuzzy result for broken mptables.
989 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
991 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
993 * EISA Edge/Level control register, ELCR
995 static int EISA_ELCR(unsigned int irq)
997 if (irq < NR_IRQS_LEGACY) {
998 unsigned int port = 0x4d0 + (irq >> 3);
999 return (inb(port) >> (irq & 7)) & 1;
1001 apic_printk(APIC_VERBOSE, KERN_INFO
1002 "Broken MPtable reports ISA irq %d\n", irq);
1008 /* ISA interrupts are always polarity zero edge triggered,
1009 * when listed as conforming in the MP table. */
1011 #define default_ISA_trigger(idx) (0)
1012 #define default_ISA_polarity(idx) (0)
1014 /* EISA interrupts are always polarity zero and can be edge or level
1015 * trigger depending on the ELCR value. If an interrupt is listed as
1016 * EISA conforming in the MP table, that means its trigger type must
1017 * be read in from the ELCR */
1019 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
1020 #define default_EISA_polarity(idx) default_ISA_polarity(idx)
1022 /* PCI interrupts are always polarity one level triggered,
1023 * when listed as conforming in the MP table. */
1025 #define default_PCI_trigger(idx) (1)
1026 #define default_PCI_polarity(idx) (1)
1028 /* MCA interrupts are always polarity zero level triggered,
1029 * when listed as conforming in the MP table. */
1031 #define default_MCA_trigger(idx) (1)
1032 #define default_MCA_polarity(idx) default_ISA_polarity(idx)
1034 static int MPBIOS_polarity(int idx)
1036 int bus = mp_irqs[idx].mp_srcbus;
1040 * Determine IRQ line polarity (high active or low active):
1042 switch (mp_irqs[idx].mp_irqflag & 3)
1044 case 0: /* conforms, ie. bus-type dependent polarity */
1045 if (test_bit(bus, mp_bus_not_pci))
1046 polarity = default_ISA_polarity(idx);
1048 polarity = default_PCI_polarity(idx);
1050 case 1: /* high active */
1055 case 2: /* reserved */
1057 printk(KERN_WARNING "broken BIOS!!\n");
1061 case 3: /* low active */
1066 default: /* invalid */
1068 printk(KERN_WARNING "broken BIOS!!\n");
1076 static int MPBIOS_trigger(int idx)
1078 int bus = mp_irqs[idx].mp_srcbus;
1082 * Determine IRQ trigger mode (edge or level sensitive):
1084 switch ((mp_irqs[idx].mp_irqflag>>2) & 3)
1086 case 0: /* conforms, ie. bus-type dependent */
1087 if (test_bit(bus, mp_bus_not_pci))
1088 trigger = default_ISA_trigger(idx);
1090 trigger = default_PCI_trigger(idx);
1091 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1092 switch (mp_bus_id_to_type[bus]) {
1093 case MP_BUS_ISA: /* ISA pin */
1095 /* set before the switch */
1098 case MP_BUS_EISA: /* EISA pin */
1100 trigger = default_EISA_trigger(idx);
1103 case MP_BUS_PCI: /* PCI pin */
1105 /* set before the switch */
1108 case MP_BUS_MCA: /* MCA pin */
1110 trigger = default_MCA_trigger(idx);
1115 printk(KERN_WARNING "broken BIOS!!\n");
1127 case 2: /* reserved */
1129 printk(KERN_WARNING "broken BIOS!!\n");
1138 default: /* invalid */
1140 printk(KERN_WARNING "broken BIOS!!\n");
1148 static inline int irq_polarity(int idx)
1150 return MPBIOS_polarity(idx);
1153 static inline int irq_trigger(int idx)
1155 return MPBIOS_trigger(idx);
1158 int (*ioapic_renumber_irq)(int ioapic, int irq);
1159 static int pin_2_irq(int idx, int apic, int pin)
1162 int bus = mp_irqs[idx].mp_srcbus;
1165 * Debugging check, we are in big trouble if this message pops up!
1167 if (mp_irqs[idx].mp_dstirq != pin)
1168 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
1170 if (test_bit(bus, mp_bus_not_pci)) {
1171 irq = mp_irqs[idx].mp_srcbusirq;
1174 * PCI IRQs are mapped in order
1178 irq += nr_ioapic_registers[i++];
1181 * For MPS mode, so far only needed by ES7000 platform
1183 if (ioapic_renumber_irq)
1184 irq = ioapic_renumber_irq(apic, irq);
1187 #ifdef CONFIG_X86_32
1189 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1191 if ((pin >= 16) && (pin <= 23)) {
1192 if (pirq_entries[pin-16] != -1) {
1193 if (!pirq_entries[pin-16]) {
1194 apic_printk(APIC_VERBOSE, KERN_DEBUG
1195 "disabling PIRQ%d\n", pin-16);
1197 irq = pirq_entries[pin-16];
1198 apic_printk(APIC_VERBOSE, KERN_DEBUG
1199 "using PIRQ%d -> IRQ %d\n",
1209 void lock_vector_lock(void)
1211 /* Used to the online set of cpus does not change
1212 * during assign_irq_vector.
1214 spin_lock(&vector_lock);
1217 void unlock_vector_lock(void)
1219 spin_unlock(&vector_lock);
1222 static int __assign_irq_vector(int irq, struct irq_cfg *cfg, cpumask_t mask)
1225 * NOTE! The local APIC isn't very good at handling
1226 * multiple interrupts at the same interrupt level.
1227 * As the interrupt level is determined by taking the
1228 * vector number and shifting that right by 4, we
1229 * want to spread these out a bit so that they don't
1230 * all fall in the same interrupt level.
1232 * Also, we've got to be careful not to trash gate
1233 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1235 static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
1236 unsigned int old_vector;
1239 if ((cfg->move_in_progress) || cfg->move_cleanup_count)
1242 /* Only try and allocate irqs on cpus that are present */
1243 cpus_and(mask, mask, cpu_online_map);
1245 old_vector = cfg->vector;
1248 cpus_and(tmp, cfg->domain, mask);
1249 if (!cpus_empty(tmp))
1253 for_each_cpu_mask_nr(cpu, mask) {
1254 cpumask_t domain, new_mask;
1258 domain = vector_allocation_domain(cpu);
1259 cpus_and(new_mask, domain, cpu_online_map);
1261 vector = current_vector;
1262 offset = current_offset;
1265 if (vector >= first_system_vector) {
1266 /* If we run out of vectors on large boxen, must share them. */
1267 offset = (offset + 1) % 8;
1268 vector = FIRST_DEVICE_VECTOR + offset;
1270 if (unlikely(current_vector == vector))
1272 #ifdef CONFIG_X86_64
1273 if (vector == IA32_SYSCALL_VECTOR)
1276 if (vector == SYSCALL_VECTOR)
1279 for_each_cpu_mask_nr(new_cpu, new_mask)
1280 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1283 current_vector = vector;
1284 current_offset = offset;
1286 cfg->move_in_progress = 1;
1287 cfg->old_domain = cfg->domain;
1289 for_each_cpu_mask_nr(new_cpu, new_mask)
1290 per_cpu(vector_irq, new_cpu)[vector] = irq;
1291 cfg->vector = vector;
1292 cfg->domain = domain;
1298 static int assign_irq_vector(int irq, struct irq_cfg *cfg, cpumask_t mask)
1301 unsigned long flags;
1303 spin_lock_irqsave(&vector_lock, flags);
1304 err = __assign_irq_vector(irq, cfg, mask);
1305 spin_unlock_irqrestore(&vector_lock, flags);
1309 static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
1314 BUG_ON(!cfg->vector);
1316 vector = cfg->vector;
1317 cpus_and(mask, cfg->domain, cpu_online_map);
1318 for_each_cpu_mask_nr(cpu, mask)
1319 per_cpu(vector_irq, cpu)[vector] = -1;
1322 cpus_clear(cfg->domain);
1324 if (likely(!cfg->move_in_progress))
1326 cpus_and(mask, cfg->old_domain, cpu_online_map);
1327 for_each_cpu_mask_nr(cpu, mask) {
1328 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1330 if (per_cpu(vector_irq, cpu)[vector] != irq)
1332 per_cpu(vector_irq, cpu)[vector] = -1;
1336 cfg->move_in_progress = 0;
1339 void __setup_vector_irq(int cpu)
1341 /* Initialize vector_irq on a new cpu */
1342 /* This function must be called with vector_lock held */
1344 struct irq_cfg *cfg;
1345 struct irq_desc *desc;
1347 /* Mark the inuse vectors */
1348 for_each_irq_desc(irq, desc) {
1351 cfg = desc->chip_data;
1352 if (!cpu_isset(cpu, cfg->domain))
1354 vector = cfg->vector;
1355 per_cpu(vector_irq, cpu)[vector] = irq;
1357 /* Mark the free vectors */
1358 for (vector = 0; vector < NR_VECTORS; ++vector) {
1359 irq = per_cpu(vector_irq, cpu)[vector];
1364 if (!cpu_isset(cpu, cfg->domain))
1365 per_cpu(vector_irq, cpu)[vector] = -1;
1369 static struct irq_chip ioapic_chip;
1370 #ifdef CONFIG_INTR_REMAP
1371 static struct irq_chip ir_ioapic_chip;
1374 #define IOAPIC_AUTO -1
1375 #define IOAPIC_EDGE 0
1376 #define IOAPIC_LEVEL 1
1378 #ifdef CONFIG_X86_32
1379 static inline int IO_APIC_irq_trigger(int irq)
1383 for (apic = 0; apic < nr_ioapics; apic++) {
1384 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1385 idx = find_irq_entry(apic, pin, mp_INT);
1386 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1387 return irq_trigger(idx);
1391 * nonexistent IRQs are edge default
1396 static inline int IO_APIC_irq_trigger(int irq)
1402 static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
1405 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1406 trigger == IOAPIC_LEVEL)
1407 desc->status |= IRQ_LEVEL;
1409 desc->status &= ~IRQ_LEVEL;
1411 #ifdef CONFIG_INTR_REMAP
1412 if (irq_remapped(irq)) {
1413 desc->status |= IRQ_MOVE_PCNTXT;
1415 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1419 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1420 handle_edge_irq, "edge");
1424 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1425 trigger == IOAPIC_LEVEL)
1426 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1430 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1431 handle_edge_irq, "edge");
1434 static int setup_ioapic_entry(int apic, int irq,
1435 struct IO_APIC_route_entry *entry,
1436 unsigned int destination, int trigger,
1437 int polarity, int vector)
1440 * add it to the IO-APIC irq-routing table:
1442 memset(entry,0,sizeof(*entry));
1444 #ifdef CONFIG_INTR_REMAP
1445 if (intr_remapping_enabled) {
1446 struct intel_iommu *iommu = map_ioapic_to_ir(apic);
1448 struct IR_IO_APIC_route_entry *ir_entry =
1449 (struct IR_IO_APIC_route_entry *) entry;
1453 panic("No mapping iommu for ioapic %d\n", apic);
1455 index = alloc_irte(iommu, irq, 1);
1457 panic("Failed to allocate IRTE for ioapic %d\n", apic);
1459 memset(&irte, 0, sizeof(irte));
1462 irte.dst_mode = INT_DEST_MODE;
1463 irte.trigger_mode = trigger;
1464 irte.dlvry_mode = INT_DELIVERY_MODE;
1465 irte.vector = vector;
1466 irte.dest_id = IRTE_DEST(destination);
1468 modify_irte(irq, &irte);
1470 ir_entry->index2 = (index >> 15) & 0x1;
1472 ir_entry->format = 1;
1473 ir_entry->index = (index & 0x7fff);
1477 entry->delivery_mode = INT_DELIVERY_MODE;
1478 entry->dest_mode = INT_DEST_MODE;
1479 entry->dest = destination;
1482 entry->mask = 0; /* enable IRQ */
1483 entry->trigger = trigger;
1484 entry->polarity = polarity;
1485 entry->vector = vector;
1487 /* Mask level triggered irqs.
1488 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1495 static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq, struct irq_desc *desc,
1496 int trigger, int polarity)
1498 struct irq_cfg *cfg;
1499 struct IO_APIC_route_entry entry;
1502 if (!IO_APIC_IRQ(irq))
1505 cfg = desc->chip_data;
1508 if (assign_irq_vector(irq, cfg, mask))
1511 cpus_and(mask, cfg->domain, mask);
1513 apic_printk(APIC_VERBOSE,KERN_DEBUG
1514 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1515 "IRQ %d Mode:%i Active:%i)\n",
1516 apic, mp_ioapics[apic].mp_apicid, pin, cfg->vector,
1517 irq, trigger, polarity);
1520 if (setup_ioapic_entry(mp_ioapics[apic].mp_apicid, irq, &entry,
1521 cpu_mask_to_apicid(mask), trigger, polarity,
1523 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1524 mp_ioapics[apic].mp_apicid, pin);
1525 __clear_irq_vector(irq, cfg);
1529 ioapic_register_intr(irq, desc, trigger);
1530 if (irq < NR_IRQS_LEGACY)
1531 disable_8259A_irq(irq);
1533 ioapic_write_entry(apic, pin, entry);
1536 static void __init setup_IO_APIC_irqs(void)
1538 int apic, pin, idx, irq;
1540 struct irq_desc *desc;
1541 struct irq_cfg *cfg;
1542 int cpu = boot_cpu_id;
1544 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1546 for (apic = 0; apic < nr_ioapics; apic++) {
1547 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1549 idx = find_irq_entry(apic, pin, mp_INT);
1553 apic_printk(APIC_VERBOSE,
1554 KERN_DEBUG " %d-%d",
1555 mp_ioapics[apic].mp_apicid,
1558 apic_printk(APIC_VERBOSE, " %d-%d",
1559 mp_ioapics[apic].mp_apicid,
1564 apic_printk(APIC_VERBOSE,
1565 " (apicid-pin) not connected\n");
1569 irq = pin_2_irq(idx, apic, pin);
1570 #ifdef CONFIG_X86_32
1571 if (multi_timer_check(apic, irq))
1574 desc = irq_to_desc_alloc_cpu(irq, cpu);
1576 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
1579 cfg = desc->chip_data;
1580 add_pin_to_irq_cpu(cfg, cpu, apic, pin);
1582 setup_IO_APIC_irq(apic, pin, irq, desc,
1583 irq_trigger(idx), irq_polarity(idx));
1588 apic_printk(APIC_VERBOSE,
1589 " (apicid-pin) not connected\n");
1593 * Set up the timer pin, possibly with the 8259A-master behind.
1595 static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
1598 struct IO_APIC_route_entry entry;
1600 #ifdef CONFIG_INTR_REMAP
1601 if (intr_remapping_enabled)
1605 memset(&entry, 0, sizeof(entry));
1608 * We use logical delivery to get the timer IRQ
1611 entry.dest_mode = INT_DEST_MODE;
1612 entry.mask = 1; /* mask IRQ now */
1613 entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
1614 entry.delivery_mode = INT_DELIVERY_MODE;
1617 entry.vector = vector;
1620 * The timer IRQ doesn't have to know that behind the
1621 * scene we may have a 8259A-master in AEOI mode ...
1623 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1626 * Add it to the IO-APIC irq-routing table:
1628 ioapic_write_entry(apic, pin, entry);
1632 __apicdebuginit(void) print_IO_APIC(void)
1635 union IO_APIC_reg_00 reg_00;
1636 union IO_APIC_reg_01 reg_01;
1637 union IO_APIC_reg_02 reg_02;
1638 union IO_APIC_reg_03 reg_03;
1639 unsigned long flags;
1640 struct irq_cfg *cfg;
1641 struct irq_desc *desc;
1644 if (apic_verbosity == APIC_QUIET)
1647 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1648 for (i = 0; i < nr_ioapics; i++)
1649 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1650 mp_ioapics[i].mp_apicid, nr_ioapic_registers[i]);
1653 * We are a bit conservative about what we expect. We have to
1654 * know about every hardware change ASAP.
1656 printk(KERN_INFO "testing the IO APIC.......................\n");
1658 for (apic = 0; apic < nr_ioapics; apic++) {
1660 spin_lock_irqsave(&ioapic_lock, flags);
1661 reg_00.raw = io_apic_read(apic, 0);
1662 reg_01.raw = io_apic_read(apic, 1);
1663 if (reg_01.bits.version >= 0x10)
1664 reg_02.raw = io_apic_read(apic, 2);
1665 if (reg_01.bits.version >= 0x20)
1666 reg_03.raw = io_apic_read(apic, 3);
1667 spin_unlock_irqrestore(&ioapic_lock, flags);
1670 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mp_apicid);
1671 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1672 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1673 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1674 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1676 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)®_01);
1677 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1679 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1680 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1683 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1684 * but the value of reg_02 is read as the previous read register
1685 * value, so ignore it if reg_02 == reg_01.
1687 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1688 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1689 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1693 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1694 * or reg_03, but the value of reg_0[23] is read as the previous read
1695 * register value, so ignore it if reg_03 == reg_0[12].
1697 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1698 reg_03.raw != reg_01.raw) {
1699 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1700 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1703 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1705 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1706 " Stat Dmod Deli Vect: \n");
1708 for (i = 0; i <= reg_01.bits.entries; i++) {
1709 struct IO_APIC_route_entry entry;
1711 entry = ioapic_read_entry(apic, i);
1713 printk(KERN_DEBUG " %02x %03X ",
1718 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1723 entry.delivery_status,
1725 entry.delivery_mode,
1730 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1731 for_each_irq_desc(irq, desc) {
1732 struct irq_pin_list *entry;
1736 cfg = desc->chip_data;
1737 entry = cfg->irq_2_pin;
1740 printk(KERN_DEBUG "IRQ%d ", irq);
1742 printk("-> %d:%d", entry->apic, entry->pin);
1745 entry = entry->next;
1750 printk(KERN_INFO ".................................... done.\n");
1755 __apicdebuginit(void) print_APIC_bitfield(int base)
1760 if (apic_verbosity == APIC_QUIET)
1763 printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
1764 for (i = 0; i < 8; i++) {
1765 v = apic_read(base + i*0x10);
1766 for (j = 0; j < 32; j++) {
1776 __apicdebuginit(void) print_local_APIC(void *dummy)
1778 unsigned int v, ver, maxlvt;
1781 if (apic_verbosity == APIC_QUIET)
1784 printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1785 smp_processor_id(), hard_smp_processor_id());
1786 v = apic_read(APIC_ID);
1787 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
1788 v = apic_read(APIC_LVR);
1789 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1790 ver = GET_APIC_VERSION(v);
1791 maxlvt = lapic_get_maxlvt();
1793 v = apic_read(APIC_TASKPRI);
1794 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1796 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1797 if (!APIC_XAPIC(ver)) {
1798 v = apic_read(APIC_ARBPRI);
1799 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1800 v & APIC_ARBPRI_MASK);
1802 v = apic_read(APIC_PROCPRI);
1803 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1807 * Remote read supported only in the 82489DX and local APIC for
1808 * Pentium processors.
1810 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1811 v = apic_read(APIC_RRR);
1812 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1815 v = apic_read(APIC_LDR);
1816 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1817 if (!x2apic_enabled()) {
1818 v = apic_read(APIC_DFR);
1819 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1821 v = apic_read(APIC_SPIV);
1822 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1824 printk(KERN_DEBUG "... APIC ISR field:\n");
1825 print_APIC_bitfield(APIC_ISR);
1826 printk(KERN_DEBUG "... APIC TMR field:\n");
1827 print_APIC_bitfield(APIC_TMR);
1828 printk(KERN_DEBUG "... APIC IRR field:\n");
1829 print_APIC_bitfield(APIC_IRR);
1831 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1832 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1833 apic_write(APIC_ESR, 0);
1835 v = apic_read(APIC_ESR);
1836 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1839 icr = apic_icr_read();
1840 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1841 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1843 v = apic_read(APIC_LVTT);
1844 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1846 if (maxlvt > 3) { /* PC is LVT#4. */
1847 v = apic_read(APIC_LVTPC);
1848 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1850 v = apic_read(APIC_LVT0);
1851 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1852 v = apic_read(APIC_LVT1);
1853 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1855 if (maxlvt > 2) { /* ERR is LVT#3. */
1856 v = apic_read(APIC_LVTERR);
1857 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1860 v = apic_read(APIC_TMICT);
1861 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1862 v = apic_read(APIC_TMCCT);
1863 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1864 v = apic_read(APIC_TDCR);
1865 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1869 __apicdebuginit(void) print_all_local_APICs(void)
1874 for_each_online_cpu(cpu)
1875 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1879 __apicdebuginit(void) print_PIC(void)
1882 unsigned long flags;
1884 if (apic_verbosity == APIC_QUIET)
1887 printk(KERN_DEBUG "\nprinting PIC contents\n");
1889 spin_lock_irqsave(&i8259A_lock, flags);
1891 v = inb(0xa1) << 8 | inb(0x21);
1892 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1894 v = inb(0xa0) << 8 | inb(0x20);
1895 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1899 v = inb(0xa0) << 8 | inb(0x20);
1903 spin_unlock_irqrestore(&i8259A_lock, flags);
1905 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1907 v = inb(0x4d1) << 8 | inb(0x4d0);
1908 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1911 __apicdebuginit(int) print_all_ICs(void)
1914 print_all_local_APICs();
1920 fs_initcall(print_all_ICs);
1923 /* Where if anywhere is the i8259 connect in external int mode */
1924 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1926 void __init enable_IO_APIC(void)
1928 union IO_APIC_reg_01 reg_01;
1929 int i8259_apic, i8259_pin;
1931 unsigned long flags;
1933 #ifdef CONFIG_X86_32
1936 for (i = 0; i < MAX_PIRQS; i++)
1937 pirq_entries[i] = -1;
1941 * The number of IO-APIC IRQ registers (== #pins):
1943 for (apic = 0; apic < nr_ioapics; apic++) {
1944 spin_lock_irqsave(&ioapic_lock, flags);
1945 reg_01.raw = io_apic_read(apic, 1);
1946 spin_unlock_irqrestore(&ioapic_lock, flags);
1947 nr_ioapic_registers[apic] = reg_01.bits.entries+1;
1949 for(apic = 0; apic < nr_ioapics; apic++) {
1951 /* See if any of the pins is in ExtINT mode */
1952 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1953 struct IO_APIC_route_entry entry;
1954 entry = ioapic_read_entry(apic, pin);
1956 /* If the interrupt line is enabled and in ExtInt mode
1957 * I have found the pin where the i8259 is connected.
1959 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1960 ioapic_i8259.apic = apic;
1961 ioapic_i8259.pin = pin;
1967 /* Look to see what if the MP table has reported the ExtINT */
1968 /* If we could not find the appropriate pin by looking at the ioapic
1969 * the i8259 probably is not connected the ioapic but give the
1970 * mptable a chance anyway.
1972 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1973 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1974 /* Trust the MP table if nothing is setup in the hardware */
1975 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1976 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1977 ioapic_i8259.pin = i8259_pin;
1978 ioapic_i8259.apic = i8259_apic;
1980 /* Complain if the MP table and the hardware disagree */
1981 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1982 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1984 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1988 * Do not trust the IO-APIC being empty at bootup
1994 * Not an __init, needed by the reboot code
1996 void disable_IO_APIC(void)
1999 * Clear the IO-APIC before rebooting:
2004 * If the i8259 is routed through an IOAPIC
2005 * Put that IOAPIC in virtual wire mode
2006 * so legacy interrupts can be delivered.
2008 if (ioapic_i8259.pin != -1) {
2009 struct IO_APIC_route_entry entry;
2011 memset(&entry, 0, sizeof(entry));
2012 entry.mask = 0; /* Enabled */
2013 entry.trigger = 0; /* Edge */
2015 entry.polarity = 0; /* High */
2016 entry.delivery_status = 0;
2017 entry.dest_mode = 0; /* Physical */
2018 entry.delivery_mode = dest_ExtINT; /* ExtInt */
2020 entry.dest = read_apic_id();
2023 * Add it to the IO-APIC irq-routing table:
2025 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
2028 disconnect_bsp_APIC(ioapic_i8259.pin != -1);
2031 #ifdef CONFIG_X86_32
2033 * function to set the IO-APIC physical IDs based on the
2034 * values stored in the MPC table.
2036 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
2039 static void __init setup_ioapic_ids_from_mpc(void)
2041 union IO_APIC_reg_00 reg_00;
2042 physid_mask_t phys_id_present_map;
2045 unsigned char old_id;
2046 unsigned long flags;
2048 if (x86_quirks->setup_ioapic_ids && x86_quirks->setup_ioapic_ids())
2052 * Don't check I/O APIC IDs for xAPIC systems. They have
2053 * no meaning without the serial APIC bus.
2055 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2056 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2059 * This is broken; anything with a real cpu count has to
2060 * circumvent this idiocy regardless.
2062 phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
2065 * Set the IOAPIC ID to the value stored in the MPC table.
2067 for (apic = 0; apic < nr_ioapics; apic++) {
2069 /* Read the register 0 value */
2070 spin_lock_irqsave(&ioapic_lock, flags);
2071 reg_00.raw = io_apic_read(apic, 0);
2072 spin_unlock_irqrestore(&ioapic_lock, flags);
2074 old_id = mp_ioapics[apic].mp_apicid;
2076 if (mp_ioapics[apic].mp_apicid >= get_physical_broadcast()) {
2077 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
2078 apic, mp_ioapics[apic].mp_apicid);
2079 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2081 mp_ioapics[apic].mp_apicid = reg_00.bits.ID;
2085 * Sanity check, is the ID really free? Every APIC in a
2086 * system must have a unique ID or we get lots of nice
2087 * 'stuck on smp_invalidate_needed IPI wait' messages.
2089 if (check_apicid_used(phys_id_present_map,
2090 mp_ioapics[apic].mp_apicid)) {
2091 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
2092 apic, mp_ioapics[apic].mp_apicid);
2093 for (i = 0; i < get_physical_broadcast(); i++)
2094 if (!physid_isset(i, phys_id_present_map))
2096 if (i >= get_physical_broadcast())
2097 panic("Max APIC ID exceeded!\n");
2098 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
2100 physid_set(i, phys_id_present_map);
2101 mp_ioapics[apic].mp_apicid = i;
2104 tmp = apicid_to_cpu_present(mp_ioapics[apic].mp_apicid);
2105 apic_printk(APIC_VERBOSE, "Setting %d in the "
2106 "phys_id_present_map\n",
2107 mp_ioapics[apic].mp_apicid);
2108 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2113 * We need to adjust the IRQ routing table
2114 * if the ID changed.
2116 if (old_id != mp_ioapics[apic].mp_apicid)
2117 for (i = 0; i < mp_irq_entries; i++)
2118 if (mp_irqs[i].mp_dstapic == old_id)
2119 mp_irqs[i].mp_dstapic
2120 = mp_ioapics[apic].mp_apicid;
2123 * Read the right value from the MPC table and
2124 * write it into the ID register.
2126 apic_printk(APIC_VERBOSE, KERN_INFO
2127 "...changing IO-APIC physical APIC ID to %d ...",
2128 mp_ioapics[apic].mp_apicid);
2130 reg_00.bits.ID = mp_ioapics[apic].mp_apicid;
2131 spin_lock_irqsave(&ioapic_lock, flags);
2132 io_apic_write(apic, 0, reg_00.raw);
2133 spin_unlock_irqrestore(&ioapic_lock, flags);
2138 spin_lock_irqsave(&ioapic_lock, flags);
2139 reg_00.raw = io_apic_read(apic, 0);
2140 spin_unlock_irqrestore(&ioapic_lock, flags);
2141 if (reg_00.bits.ID != mp_ioapics[apic].mp_apicid)
2142 printk("could not set ID!\n");
2144 apic_printk(APIC_VERBOSE, " ok.\n");
2149 int no_timer_check __initdata;
2151 static int __init notimercheck(char *s)
2156 __setup("no_timer_check", notimercheck);
2159 * There is a nasty bug in some older SMP boards, their mptable lies
2160 * about the timer IRQ. We do the following to work around the situation:
2162 * - timer IRQ defaults to IO-APIC IRQ
2163 * - if this function detects that timer IRQs are defunct, then we fall
2164 * back to ISA timer IRQs
2166 static int __init timer_irq_works(void)
2168 unsigned long t1 = jiffies;
2169 unsigned long flags;
2174 local_save_flags(flags);
2176 /* Let ten ticks pass... */
2177 mdelay((10 * 1000) / HZ);
2178 local_irq_restore(flags);
2181 * Expect a few ticks at least, to be sure some possible
2182 * glue logic does not lock up after one or two first
2183 * ticks in a non-ExtINT mode. Also the local APIC
2184 * might have cached one ExtINT interrupt. Finally, at
2185 * least one tick may be lost due to delays.
2189 if (time_after(jiffies, t1 + 4))
2195 * In the SMP+IOAPIC case it might happen that there are an unspecified
2196 * number of pending IRQ events unhandled. These cases are very rare,
2197 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2198 * better to do it this way as thus we do not have to be aware of
2199 * 'pending' interrupts in the IRQ path, except at this point.
2202 * Edge triggered needs to resend any interrupt
2203 * that was delayed but this is now handled in the device
2208 * Starting up a edge-triggered IO-APIC interrupt is
2209 * nasty - we need to make sure that we get the edge.
2210 * If it is already asserted for some reason, we need
2211 * return 1 to indicate that is was pending.
2213 * This is not complete - we should be able to fake
2214 * an edge even if it isn't on the 8259A...
2217 static unsigned int startup_ioapic_irq(unsigned int irq)
2219 int was_pending = 0;
2220 unsigned long flags;
2221 struct irq_cfg *cfg;
2223 spin_lock_irqsave(&ioapic_lock, flags);
2224 if (irq < NR_IRQS_LEGACY) {
2225 disable_8259A_irq(irq);
2226 if (i8259A_irq_pending(irq))
2230 __unmask_IO_APIC_irq(cfg);
2231 spin_unlock_irqrestore(&ioapic_lock, flags);
2236 #ifdef CONFIG_X86_64
2237 static int ioapic_retrigger_irq(unsigned int irq)
2240 struct irq_cfg *cfg = irq_cfg(irq);
2241 unsigned long flags;
2243 spin_lock_irqsave(&vector_lock, flags);
2244 send_IPI_mask(cpumask_of_cpu(first_cpu(cfg->domain)), cfg->vector);
2245 spin_unlock_irqrestore(&vector_lock, flags);
2250 static int ioapic_retrigger_irq(unsigned int irq)
2252 send_IPI_self(irq_cfg(irq)->vector);
2259 * Level and edge triggered IO-APIC interrupts need different handling,
2260 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2261 * handled with the level-triggered descriptor, but that one has slightly
2262 * more overhead. Level-triggered interrupts cannot be handled with the
2263 * edge-triggered handler, without risking IRQ storms and other ugly
2269 #ifdef CONFIG_INTR_REMAP
2270 static void ir_irq_migration(struct work_struct *work);
2272 static DECLARE_DELAYED_WORK(ir_migration_work, ir_irq_migration);
2275 * Migrate the IO-APIC irq in the presence of intr-remapping.
2277 * For edge triggered, irq migration is a simple atomic update(of vector
2278 * and cpu destination) of IRTE and flush the hardware cache.
2280 * For level triggered, we need to modify the io-apic RTE aswell with the update
2281 * vector information, along with modifying IRTE with vector and destination.
2282 * So irq migration for level triggered is little bit more complex compared to
2283 * edge triggered migration. But the good news is, we use the same algorithm
2284 * for level triggered migration as we have today, only difference being,
2285 * we now initiate the irq migration from process context instead of the
2286 * interrupt context.
2288 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2289 * suppression) to the IO-APIC, level triggered irq migration will also be
2290 * as simple as edge triggered migration and we can do the irq migration
2291 * with a simple atomic update to IO-APIC RTE.
2293 static void migrate_ioapic_irq_desc(struct irq_desc *desc, cpumask_t mask)
2295 struct irq_cfg *cfg;
2296 cpumask_t tmp, cleanup_mask;
2298 int modify_ioapic_rte;
2300 unsigned long flags;
2303 cpus_and(tmp, mask, cpu_online_map);
2304 if (cpus_empty(tmp))
2308 if (get_irte(irq, &irte))
2311 cfg = desc->chip_data;
2312 if (assign_irq_vector(irq, cfg, mask))
2315 set_extra_move_desc(desc, mask);
2317 cpus_and(tmp, cfg->domain, mask);
2318 dest = cpu_mask_to_apicid(tmp);
2320 modify_ioapic_rte = desc->status & IRQ_LEVEL;
2321 if (modify_ioapic_rte) {
2322 spin_lock_irqsave(&ioapic_lock, flags);
2323 __target_IO_APIC_irq(irq, dest, cfg);
2324 spin_unlock_irqrestore(&ioapic_lock, flags);
2327 irte.vector = cfg->vector;
2328 irte.dest_id = IRTE_DEST(dest);
2331 * Modified the IRTE and flushes the Interrupt entry cache.
2333 modify_irte(irq, &irte);
2335 if (cfg->move_in_progress) {
2336 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2337 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2338 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2339 cfg->move_in_progress = 0;
2342 desc->affinity = mask;
2345 static int migrate_irq_remapped_level_desc(struct irq_desc *desc)
2348 struct irq_cfg *cfg = desc->chip_data;
2350 mask_IO_APIC_irq_desc(desc);
2352 if (io_apic_level_ack_pending(cfg)) {
2354 * Interrupt in progress. Migrating irq now will change the
2355 * vector information in the IO-APIC RTE and that will confuse
2356 * the EOI broadcast performed by cpu.
2357 * So, delay the irq migration to the next instance.
2359 schedule_delayed_work(&ir_migration_work, 1);
2363 /* everthing is clear. we have right of way */
2364 migrate_ioapic_irq_desc(desc, desc->pending_mask);
2367 desc->status &= ~IRQ_MOVE_PENDING;
2368 cpus_clear(desc->pending_mask);
2371 unmask_IO_APIC_irq_desc(desc);
2376 static void ir_irq_migration(struct work_struct *work)
2379 struct irq_desc *desc;
2381 for_each_irq_desc(irq, desc) {
2385 if (desc->status & IRQ_MOVE_PENDING) {
2386 unsigned long flags;
2388 spin_lock_irqsave(&desc->lock, flags);
2389 if (!desc->chip->set_affinity ||
2390 !(desc->status & IRQ_MOVE_PENDING)) {
2391 desc->status &= ~IRQ_MOVE_PENDING;
2392 spin_unlock_irqrestore(&desc->lock, flags);
2396 desc->chip->set_affinity(irq, &desc->pending_mask);
2397 spin_unlock_irqrestore(&desc->lock, flags);
2403 * Migrates the IRQ destination in the process context.
2405 static void set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc, cpumask_t mask)
2407 if (desc->status & IRQ_LEVEL) {
2408 desc->status |= IRQ_MOVE_PENDING;
2409 desc->pending_mask = mask;
2410 migrate_irq_remapped_level_desc(desc);
2414 migrate_ioapic_irq_desc(desc, mask);
2416 static void set_ir_ioapic_affinity_irq(unsigned int irq,
2417 const struct cpumask *mask)
2419 struct irq_desc *desc = irq_to_desc(irq);
2421 set_ir_ioapic_affinity_irq_desc(desc, *mask);
2425 asmlinkage void smp_irq_move_cleanup_interrupt(void)
2427 unsigned vector, me;
2433 me = smp_processor_id();
2434 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2436 struct irq_desc *desc;
2437 struct irq_cfg *cfg;
2438 irq = __get_cpu_var(vector_irq)[vector];
2443 desc = irq_to_desc(irq);
2448 spin_lock(&desc->lock);
2449 if (!cfg->move_cleanup_count)
2452 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
2455 __get_cpu_var(vector_irq)[vector] = -1;
2456 cfg->move_cleanup_count--;
2458 spin_unlock(&desc->lock);
2464 static void irq_complete_move(struct irq_desc **descp)
2466 struct irq_desc *desc = *descp;
2467 struct irq_cfg *cfg = desc->chip_data;
2468 unsigned vector, me;
2470 if (likely(!cfg->move_in_progress)) {
2471 #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2472 if (likely(!cfg->move_desc_pending))
2475 /* domain has not changed, but affinity did */
2476 me = smp_processor_id();
2477 if (cpu_isset(me, desc->affinity)) {
2478 *descp = desc = move_irq_desc(desc, me);
2479 /* get the new one */
2480 cfg = desc->chip_data;
2481 cfg->move_desc_pending = 0;
2487 vector = ~get_irq_regs()->orig_ax;
2488 me = smp_processor_id();
2489 if ((vector == cfg->vector) && cpu_isset(me, cfg->domain)) {
2490 cpumask_t cleanup_mask;
2492 #ifdef CONFIG_NUMA_MIGRATE_IRQ_DESC
2493 *descp = desc = move_irq_desc(desc, me);
2494 /* get the new one */
2495 cfg = desc->chip_data;
2498 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
2499 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
2500 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2501 cfg->move_in_progress = 0;
2505 static inline void irq_complete_move(struct irq_desc **descp) {}
2508 #ifdef CONFIG_INTR_REMAP
2509 static void ack_x2apic_level(unsigned int irq)
2514 static void ack_x2apic_edge(unsigned int irq)
2521 static void ack_apic_edge(unsigned int irq)
2523 struct irq_desc *desc = irq_to_desc(irq);
2525 irq_complete_move(&desc);
2526 move_native_irq(irq);
2530 atomic_t irq_mis_count;
2532 static void ack_apic_level(unsigned int irq)
2534 struct irq_desc *desc = irq_to_desc(irq);
2536 #ifdef CONFIG_X86_32
2540 struct irq_cfg *cfg;
2541 int do_unmask_irq = 0;
2543 irq_complete_move(&desc);
2544 #ifdef CONFIG_GENERIC_PENDING_IRQ
2545 /* If we are moving the irq we need to mask it */
2546 if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
2548 mask_IO_APIC_irq_desc(desc);
2552 #ifdef CONFIG_X86_32
2554 * It appears there is an erratum which affects at least version 0x11
2555 * of I/O APIC (that's the 82093AA and cores integrated into various
2556 * chipsets). Under certain conditions a level-triggered interrupt is
2557 * erroneously delivered as edge-triggered one but the respective IRR
2558 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2559 * message but it will never arrive and further interrupts are blocked
2560 * from the source. The exact reason is so far unknown, but the
2561 * phenomenon was observed when two consecutive interrupt requests
2562 * from a given source get delivered to the same CPU and the source is
2563 * temporarily disabled in between.
2565 * A workaround is to simulate an EOI message manually. We achieve it
2566 * by setting the trigger mode to edge and then to level when the edge
2567 * trigger mode gets detected in the TMR of a local APIC for a
2568 * level-triggered interrupt. We mask the source for the time of the
2569 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2570 * The idea is from Manfred Spraul. --macro
2572 cfg = desc->chip_data;
2575 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2579 * We must acknowledge the irq before we move it or the acknowledge will
2580 * not propagate properly.
2584 /* Now we can move and renable the irq */
2585 if (unlikely(do_unmask_irq)) {
2586 /* Only migrate the irq if the ack has been received.
2588 * On rare occasions the broadcast level triggered ack gets
2589 * delayed going to ioapics, and if we reprogram the
2590 * vector while Remote IRR is still set the irq will never
2593 * To prevent this scenario we read the Remote IRR bit
2594 * of the ioapic. This has two effects.
2595 * - On any sane system the read of the ioapic will
2596 * flush writes (and acks) going to the ioapic from
2598 * - We get to see if the ACK has actually been delivered.
2600 * Based on failed experiments of reprogramming the
2601 * ioapic entry from outside of irq context starting
2602 * with masking the ioapic entry and then polling until
2603 * Remote IRR was clear before reprogramming the
2604 * ioapic I don't trust the Remote IRR bit to be
2605 * completey accurate.
2607 * However there appears to be no other way to plug
2608 * this race, so if the Remote IRR bit is not
2609 * accurate and is causing problems then it is a hardware bug
2610 * and you can go talk to the chipset vendor about it.
2612 cfg = desc->chip_data;
2613 if (!io_apic_level_ack_pending(cfg))
2614 move_masked_irq(irq);
2615 unmask_IO_APIC_irq_desc(desc);
2618 #ifdef CONFIG_X86_32
2619 if (!(v & (1 << (i & 0x1f)))) {
2620 atomic_inc(&irq_mis_count);
2621 spin_lock(&ioapic_lock);
2622 __mask_and_edge_IO_APIC_irq(cfg);
2623 __unmask_and_level_IO_APIC_irq(cfg);
2624 spin_unlock(&ioapic_lock);
2629 static struct irq_chip ioapic_chip __read_mostly = {
2631 .startup = startup_ioapic_irq,
2632 .mask = mask_IO_APIC_irq,
2633 .unmask = unmask_IO_APIC_irq,
2634 .ack = ack_apic_edge,
2635 .eoi = ack_apic_level,
2637 .set_affinity = set_ioapic_affinity_irq,
2639 .retrigger = ioapic_retrigger_irq,
2642 #ifdef CONFIG_INTR_REMAP
2643 static struct irq_chip ir_ioapic_chip __read_mostly = {
2644 .name = "IR-IO-APIC",
2645 .startup = startup_ioapic_irq,
2646 .mask = mask_IO_APIC_irq,
2647 .unmask = unmask_IO_APIC_irq,
2648 .ack = ack_x2apic_edge,
2649 .eoi = ack_x2apic_level,
2651 .set_affinity = set_ir_ioapic_affinity_irq,
2653 .retrigger = ioapic_retrigger_irq,
2657 static inline void init_IO_APIC_traps(void)
2660 struct irq_desc *desc;
2661 struct irq_cfg *cfg;
2664 * NOTE! The local APIC isn't very good at handling
2665 * multiple interrupts at the same interrupt level.
2666 * As the interrupt level is determined by taking the
2667 * vector number and shifting that right by 4, we
2668 * want to spread these out a bit so that they don't
2669 * all fall in the same interrupt level.
2671 * Also, we've got to be careful not to trash gate
2672 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2674 for_each_irq_desc(irq, desc) {
2678 cfg = desc->chip_data;
2679 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
2681 * Hmm.. We don't have an entry for this,
2682 * so default to an old-fashioned 8259
2683 * interrupt if we can..
2685 if (irq < NR_IRQS_LEGACY)
2686 make_8259A_irq(irq);
2688 /* Strange. Oh, well.. */
2689 desc->chip = &no_irq_chip;
2695 * The local APIC irq-chip implementation:
2698 static void mask_lapic_irq(unsigned int irq)
2702 v = apic_read(APIC_LVT0);
2703 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
2706 static void unmask_lapic_irq(unsigned int irq)
2710 v = apic_read(APIC_LVT0);
2711 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
2714 static void ack_lapic_irq(unsigned int irq)
2719 static struct irq_chip lapic_chip __read_mostly = {
2720 .name = "local-APIC",
2721 .mask = mask_lapic_irq,
2722 .unmask = unmask_lapic_irq,
2723 .ack = ack_lapic_irq,
2726 static void lapic_register_intr(int irq, struct irq_desc *desc)
2728 desc->status &= ~IRQ_LEVEL;
2729 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2733 static void __init setup_nmi(void)
2736 * Dirty trick to enable the NMI watchdog ...
2737 * We put the 8259A master into AEOI mode and
2738 * unmask on all local APICs LVT0 as NMI.
2740 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2741 * is from Maciej W. Rozycki - so we do not have to EOI from
2742 * the NMI handler or the timer interrupt.
2744 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2746 enable_NMI_through_LVT0();
2748 apic_printk(APIC_VERBOSE, " done.\n");
2752 * This looks a bit hackish but it's about the only one way of sending
2753 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2754 * not support the ExtINT mode, unfortunately. We need to send these
2755 * cycles as some i82489DX-based boards have glue logic that keeps the
2756 * 8259A interrupt line asserted until INTA. --macro
2758 static inline void __init unlock_ExtINT_logic(void)
2761 struct IO_APIC_route_entry entry0, entry1;
2762 unsigned char save_control, save_freq_select;
2764 pin = find_isa_irq_pin(8, mp_INT);
2769 apic = find_isa_irq_apic(8, mp_INT);
2775 entry0 = ioapic_read_entry(apic, pin);
2776 clear_IO_APIC_pin(apic, pin);
2778 memset(&entry1, 0, sizeof(entry1));
2780 entry1.dest_mode = 0; /* physical delivery */
2781 entry1.mask = 0; /* unmask IRQ now */
2782 entry1.dest = hard_smp_processor_id();
2783 entry1.delivery_mode = dest_ExtINT;
2784 entry1.polarity = entry0.polarity;
2788 ioapic_write_entry(apic, pin, entry1);
2790 save_control = CMOS_READ(RTC_CONTROL);
2791 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2792 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2794 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2799 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2803 CMOS_WRITE(save_control, RTC_CONTROL);
2804 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2805 clear_IO_APIC_pin(apic, pin);
2807 ioapic_write_entry(apic, pin, entry0);
2810 static int disable_timer_pin_1 __initdata;
2811 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2812 static int __init disable_timer_pin_setup(char *arg)
2814 disable_timer_pin_1 = 1;
2817 early_param("disable_timer_pin_1", disable_timer_pin_setup);
2819 int timer_through_8259 __initdata;
2822 * This code may look a bit paranoid, but it's supposed to cooperate with
2823 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2824 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2825 * fanatically on his truly buggy board.
2827 * FIXME: really need to revamp this for all platforms.
2829 static inline void __init check_timer(void)
2831 struct irq_desc *desc = irq_to_desc(0);
2832 struct irq_cfg *cfg = desc->chip_data;
2833 int cpu = boot_cpu_id;
2834 int apic1, pin1, apic2, pin2;
2835 unsigned long flags;
2839 local_irq_save(flags);
2841 ver = apic_read(APIC_LVR);
2842 ver = GET_APIC_VERSION(ver);
2845 * get/set the timer IRQ vector:
2847 disable_8259A_irq(0);
2848 assign_irq_vector(0, cfg, TARGET_CPUS);
2851 * As IRQ0 is to be enabled in the 8259A, the virtual
2852 * wire has to be disabled in the local APIC. Also
2853 * timer interrupts need to be acknowledged manually in
2854 * the 8259A for the i82489DX when using the NMI
2855 * watchdog as that APIC treats NMIs as level-triggered.
2856 * The AEOI mode will finish them in the 8259A
2859 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2861 #ifdef CONFIG_X86_32
2862 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2865 pin1 = find_isa_irq_pin(0, mp_INT);
2866 apic1 = find_isa_irq_apic(0, mp_INT);
2867 pin2 = ioapic_i8259.pin;
2868 apic2 = ioapic_i8259.apic;
2870 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2871 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2872 cfg->vector, apic1, pin1, apic2, pin2);
2875 * Some BIOS writers are clueless and report the ExtINTA
2876 * I/O APIC input from the cascaded 8259A as the timer
2877 * interrupt input. So just in case, if only one pin
2878 * was found above, try it both directly and through the
2882 #ifdef CONFIG_INTR_REMAP
2883 if (intr_remapping_enabled)
2884 panic("BIOS bug: timer not connected to IO-APIC");
2889 } else if (pin2 == -1) {
2896 * Ok, does IRQ0 through the IOAPIC work?
2899 add_pin_to_irq_cpu(cfg, cpu, apic1, pin1);
2900 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
2902 unmask_IO_APIC_irq_desc(desc);
2903 if (timer_irq_works()) {
2904 if (nmi_watchdog == NMI_IO_APIC) {
2906 enable_8259A_irq(0);
2908 if (disable_timer_pin_1 > 0)
2909 clear_IO_APIC_pin(0, pin1);
2912 #ifdef CONFIG_INTR_REMAP
2913 if (intr_remapping_enabled)
2914 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2916 clear_IO_APIC_pin(apic1, pin1);
2918 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2919 "8254 timer not connected to IO-APIC\n");
2921 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2922 "(IRQ0) through the 8259A ...\n");
2923 apic_printk(APIC_QUIET, KERN_INFO
2924 "..... (found apic %d pin %d) ...\n", apic2, pin2);
2926 * legacy devices should be connected to IO APIC #0
2928 replace_pin_at_irq_cpu(cfg, cpu, apic1, pin1, apic2, pin2);
2929 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
2930 unmask_IO_APIC_irq_desc(desc);
2931 enable_8259A_irq(0);
2932 if (timer_irq_works()) {
2933 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
2934 timer_through_8259 = 1;
2935 if (nmi_watchdog == NMI_IO_APIC) {
2936 disable_8259A_irq(0);
2938 enable_8259A_irq(0);
2943 * Cleanup, just in case ...
2945 disable_8259A_irq(0);
2946 clear_IO_APIC_pin(apic2, pin2);
2947 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
2950 if (nmi_watchdog == NMI_IO_APIC) {
2951 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2952 "through the IO-APIC - disabling NMI Watchdog!\n");
2953 nmi_watchdog = NMI_NONE;
2955 #ifdef CONFIG_X86_32
2959 apic_printk(APIC_QUIET, KERN_INFO
2960 "...trying to set up timer as Virtual Wire IRQ...\n");
2962 lapic_register_intr(0, desc);
2963 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
2964 enable_8259A_irq(0);
2966 if (timer_irq_works()) {
2967 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2970 disable_8259A_irq(0);
2971 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
2972 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
2974 apic_printk(APIC_QUIET, KERN_INFO
2975 "...trying to set up timer as ExtINT IRQ...\n");
2979 apic_write(APIC_LVT0, APIC_DM_EXTINT);
2981 unlock_ExtINT_logic();
2983 if (timer_irq_works()) {
2984 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2987 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
2988 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2989 "report. Then try booting with the 'noapic' option.\n");
2991 local_irq_restore(flags);
2995 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2996 * to devices. However there may be an I/O APIC pin available for
2997 * this interrupt regardless. The pin may be left unconnected, but
2998 * typically it will be reused as an ExtINT cascade interrupt for
2999 * the master 8259A. In the MPS case such a pin will normally be
3000 * reported as an ExtINT interrupt in the MP table. With ACPI
3001 * there is no provision for ExtINT interrupts, and in the absence
3002 * of an override it would be treated as an ordinary ISA I/O APIC
3003 * interrupt, that is edge-triggered and unmasked by default. We
3004 * used to do this, but it caused problems on some systems because
3005 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
3006 * the same ExtINT cascade interrupt to drive the local APIC of the
3007 * bootstrap processor. Therefore we refrain from routing IRQ2 to
3008 * the I/O APIC in all cases now. No actual device should request
3009 * it anyway. --macro
3011 #define PIC_IRQS (1 << PIC_CASCADE_IR)
3013 void __init setup_IO_APIC(void)
3016 #ifdef CONFIG_X86_32
3020 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3024 io_apic_irqs = ~PIC_IRQS;
3026 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
3028 * Set up IO-APIC IRQ routing.
3030 #ifdef CONFIG_X86_32
3032 setup_ioapic_ids_from_mpc();
3035 setup_IO_APIC_irqs();
3036 init_IO_APIC_traps();
3041 * Called after all the initialization is done. If we didnt find any
3042 * APIC bugs then we can allow the modify fast path
3045 static int __init io_apic_bug_finalize(void)
3047 if (sis_apic_bug == -1)
3052 late_initcall(io_apic_bug_finalize);
3054 struct sysfs_ioapic_data {
3055 struct sys_device dev;
3056 struct IO_APIC_route_entry entry[0];
3058 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
3060 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
3062 struct IO_APIC_route_entry *entry;
3063 struct sysfs_ioapic_data *data;
3066 data = container_of(dev, struct sysfs_ioapic_data, dev);
3067 entry = data->entry;
3068 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
3069 *entry = ioapic_read_entry(dev->id, i);
3074 static int ioapic_resume(struct sys_device *dev)
3076 struct IO_APIC_route_entry *entry;
3077 struct sysfs_ioapic_data *data;
3078 unsigned long flags;
3079 union IO_APIC_reg_00 reg_00;
3082 data = container_of(dev, struct sysfs_ioapic_data, dev);
3083 entry = data->entry;
3085 spin_lock_irqsave(&ioapic_lock, flags);
3086 reg_00.raw = io_apic_read(dev->id, 0);
3087 if (reg_00.bits.ID != mp_ioapics[dev->id].mp_apicid) {
3088 reg_00.bits.ID = mp_ioapics[dev->id].mp_apicid;
3089 io_apic_write(dev->id, 0, reg_00.raw);
3091 spin_unlock_irqrestore(&ioapic_lock, flags);
3092 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
3093 ioapic_write_entry(dev->id, i, entry[i]);
3098 static struct sysdev_class ioapic_sysdev_class = {
3100 .suspend = ioapic_suspend,
3101 .resume = ioapic_resume,
3104 static int __init ioapic_init_sysfs(void)
3106 struct sys_device * dev;
3109 error = sysdev_class_register(&ioapic_sysdev_class);
3113 for (i = 0; i < nr_ioapics; i++ ) {
3114 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
3115 * sizeof(struct IO_APIC_route_entry);
3116 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
3117 if (!mp_ioapic_data[i]) {
3118 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3121 dev = &mp_ioapic_data[i]->dev;
3123 dev->cls = &ioapic_sysdev_class;
3124 error = sysdev_register(dev);
3126 kfree(mp_ioapic_data[i]);
3127 mp_ioapic_data[i] = NULL;
3128 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3136 device_initcall(ioapic_init_sysfs);
3139 * Dynamic irq allocate and deallocation
3141 unsigned int create_irq_nr(unsigned int irq_want)
3143 /* Allocate an unused irq */
3146 unsigned long flags;
3147 struct irq_cfg *cfg_new = NULL;
3148 int cpu = boot_cpu_id;
3149 struct irq_desc *desc_new = NULL;
3152 spin_lock_irqsave(&vector_lock, flags);
3153 for (new = irq_want; new < NR_IRQS; new++) {
3154 if (platform_legacy_irq(new))
3157 desc_new = irq_to_desc_alloc_cpu(new, cpu);
3159 printk(KERN_INFO "can not get irq_desc for %d\n", new);
3162 cfg_new = desc_new->chip_data;
3164 if (cfg_new->vector != 0)
3166 if (__assign_irq_vector(new, cfg_new, TARGET_CPUS) == 0)
3170 spin_unlock_irqrestore(&vector_lock, flags);
3173 dynamic_irq_init(irq);
3174 /* restore it, in case dynamic_irq_init clear it */
3176 desc_new->chip_data = cfg_new;
3181 static int nr_irqs_gsi = NR_IRQS_LEGACY;
3182 int create_irq(void)
3184 unsigned int irq_want;
3187 irq_want = nr_irqs_gsi;
3188 irq = create_irq_nr(irq_want);
3196 void destroy_irq(unsigned int irq)
3198 unsigned long flags;
3199 struct irq_cfg *cfg;
3200 struct irq_desc *desc;
3202 /* store it, in case dynamic_irq_cleanup clear it */
3203 desc = irq_to_desc(irq);
3204 cfg = desc->chip_data;
3205 dynamic_irq_cleanup(irq);
3206 /* connect back irq_cfg */
3208 desc->chip_data = cfg;
3210 #ifdef CONFIG_INTR_REMAP
3213 spin_lock_irqsave(&vector_lock, flags);
3214 __clear_irq_vector(irq, cfg);
3215 spin_unlock_irqrestore(&vector_lock, flags);
3219 * MSI message composition
3221 #ifdef CONFIG_PCI_MSI
3222 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
3224 struct irq_cfg *cfg;
3231 err = assign_irq_vector(irq, cfg, tmp);
3235 cpus_and(tmp, cfg->domain, tmp);
3236 dest = cpu_mask_to_apicid(tmp);
3238 #ifdef CONFIG_INTR_REMAP
3239 if (irq_remapped(irq)) {
3244 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3245 BUG_ON(ir_index == -1);
3247 memset (&irte, 0, sizeof(irte));
3250 irte.dst_mode = INT_DEST_MODE;
3251 irte.trigger_mode = 0; /* edge */
3252 irte.dlvry_mode = INT_DELIVERY_MODE;
3253 irte.vector = cfg->vector;
3254 irte.dest_id = IRTE_DEST(dest);
3256 modify_irte(irq, &irte);
3258 msg->address_hi = MSI_ADDR_BASE_HI;
3259 msg->data = sub_handle;
3260 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3262 MSI_ADDR_IR_INDEX1(ir_index) |
3263 MSI_ADDR_IR_INDEX2(ir_index);
3267 msg->address_hi = MSI_ADDR_BASE_HI;
3270 ((INT_DEST_MODE == 0) ?
3271 MSI_ADDR_DEST_MODE_PHYSICAL:
3272 MSI_ADDR_DEST_MODE_LOGICAL) |
3273 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3274 MSI_ADDR_REDIRECTION_CPU:
3275 MSI_ADDR_REDIRECTION_LOWPRI) |
3276 MSI_ADDR_DEST_ID(dest);
3279 MSI_DATA_TRIGGER_EDGE |
3280 MSI_DATA_LEVEL_ASSERT |
3281 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3282 MSI_DATA_DELIVERY_FIXED:
3283 MSI_DATA_DELIVERY_LOWPRI) |
3284 MSI_DATA_VECTOR(cfg->vector);
3290 static void set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
3292 struct irq_desc *desc = irq_to_desc(irq);
3293 struct irq_cfg *cfg;
3298 if (!cpumask_intersects(mask, cpu_online_mask))
3301 cfg = desc->chip_data;
3302 if (assign_irq_vector(irq, cfg, *mask))
3305 set_extra_move_desc(desc, *mask);
3307 cpumask_and(&tmp, &cfg->domain, mask);
3308 dest = cpu_mask_to_apicid(tmp);
3310 read_msi_msg_desc(desc, &msg);
3312 msg.data &= ~MSI_DATA_VECTOR_MASK;
3313 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3314 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3315 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3317 write_msi_msg_desc(desc, &msg);
3318 cpumask_copy(&desc->affinity, mask);
3320 #ifdef CONFIG_INTR_REMAP
3322 * Migrate the MSI irq to another cpumask. This migration is
3323 * done in the process context using interrupt-remapping hardware.
3325 static void ir_set_msi_irq_affinity(unsigned int irq,
3326 const struct cpumask *mask)
3328 struct irq_desc *desc = irq_to_desc(irq);
3329 struct irq_cfg *cfg;
3331 cpumask_t tmp, cleanup_mask;
3334 if (!cpumask_intersects(mask, cpu_online_mask))
3337 if (get_irte(irq, &irte))
3340 cfg = desc->chip_data;
3341 if (assign_irq_vector(irq, cfg, *mask))
3344 set_extra_move_desc(desc, *mask);
3346 cpumask_and(&tmp, &cfg->domain, mask);
3347 dest = cpu_mask_to_apicid(tmp);
3349 irte.vector = cfg->vector;
3350 irte.dest_id = IRTE_DEST(dest);
3353 * atomically update the IRTE with the new destination and vector.
3355 modify_irte(irq, &irte);
3358 * After this point, all the interrupts will start arriving
3359 * at the new destination. So, time to cleanup the previous
3360 * vector allocation.
3362 if (cfg->move_in_progress) {
3363 cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
3364 cfg->move_cleanup_count = cpus_weight(cleanup_mask);
3365 send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
3366 cfg->move_in_progress = 0;
3369 cpumask_copy(&desc->affinity, mask);
3373 #endif /* CONFIG_SMP */
3376 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3377 * which implement the MSI or MSI-X Capability Structure.
3379 static struct irq_chip msi_chip = {
3381 .unmask = unmask_msi_irq,
3382 .mask = mask_msi_irq,
3383 .ack = ack_apic_edge,
3385 .set_affinity = set_msi_irq_affinity,
3387 .retrigger = ioapic_retrigger_irq,
3390 #ifdef CONFIG_INTR_REMAP
3391 static struct irq_chip msi_ir_chip = {
3392 .name = "IR-PCI-MSI",
3393 .unmask = unmask_msi_irq,
3394 .mask = mask_msi_irq,
3395 .ack = ack_x2apic_edge,
3397 .set_affinity = ir_set_msi_irq_affinity,
3399 .retrigger = ioapic_retrigger_irq,
3403 * Map the PCI dev to the corresponding remapping hardware unit
3404 * and allocate 'nvec' consecutive interrupt-remapping table entries
3407 static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3409 struct intel_iommu *iommu;
3412 iommu = map_dev_to_ir(dev);
3415 "Unable to map PCI %s to iommu\n", pci_name(dev));
3419 index = alloc_irte(iommu, irq, nvec);
3422 "Unable to allocate %d IRTE for PCI %s\n", nvec,
3430 static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
3435 ret = msi_compose_msg(dev, irq, &msg);
3439 set_irq_msi(irq, msidesc);
3440 write_msi_msg(irq, &msg);
3442 #ifdef CONFIG_INTR_REMAP
3443 if (irq_remapped(irq)) {
3444 struct irq_desc *desc = irq_to_desc(irq);
3446 * irq migration in process context
3448 desc->status |= IRQ_MOVE_PCNTXT;
3449 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3452 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
3454 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3459 int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc)
3463 unsigned int irq_want;
3465 irq_want = nr_irqs_gsi;
3466 irq = create_irq_nr(irq_want);
3470 #ifdef CONFIG_INTR_REMAP
3471 if (!intr_remapping_enabled)
3474 ret = msi_alloc_irte(dev, irq, 1);
3479 ret = setup_msi_irq(dev, msidesc, irq);
3486 #ifdef CONFIG_INTR_REMAP
3493 int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3496 int ret, sub_handle;
3497 struct msi_desc *msidesc;
3498 unsigned int irq_want;
3500 #ifdef CONFIG_INTR_REMAP
3501 struct intel_iommu *iommu = 0;
3505 irq_want = nr_irqs_gsi;
3507 list_for_each_entry(msidesc, &dev->msi_list, list) {
3508 irq = create_irq_nr(irq_want);
3512 #ifdef CONFIG_INTR_REMAP
3513 if (!intr_remapping_enabled)
3518 * allocate the consecutive block of IRTE's
3521 index = msi_alloc_irte(dev, irq, nvec);
3527 iommu = map_dev_to_ir(dev);
3533 * setup the mapping between the irq and the IRTE
3534 * base index, the sub_handle pointing to the
3535 * appropriate interrupt remap table entry.
3537 set_irte_irq(irq, iommu, index, sub_handle);
3541 ret = setup_msi_irq(dev, msidesc, irq);
3553 void arch_teardown_msi_irq(unsigned int irq)
3560 static void dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
3562 struct irq_desc *desc = irq_to_desc(irq);
3563 struct irq_cfg *cfg;
3568 if (!cpumask_intersects(mask, cpu_online_mask))
3571 cfg = desc->chip_data;
3572 if (assign_irq_vector(irq, cfg, *mask))
3575 set_extra_move_desc(desc, *mask);
3577 cpumask_and(&tmp, &cfg->domain, mask);
3578 dest = cpu_mask_to_apicid(tmp);
3580 dmar_msi_read(irq, &msg);
3582 msg.data &= ~MSI_DATA_VECTOR_MASK;
3583 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3584 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3585 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3587 dmar_msi_write(irq, &msg);
3588 cpumask_copy(&desc->affinity, mask);
3591 #endif /* CONFIG_SMP */
3593 struct irq_chip dmar_msi_type = {
3595 .unmask = dmar_msi_unmask,
3596 .mask = dmar_msi_mask,
3597 .ack = ack_apic_edge,
3599 .set_affinity = dmar_msi_set_affinity,
3601 .retrigger = ioapic_retrigger_irq,
3604 int arch_setup_dmar_msi(unsigned int irq)
3609 ret = msi_compose_msg(NULL, irq, &msg);
3612 dmar_msi_write(irq, &msg);
3613 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3619 #ifdef CONFIG_HPET_TIMER
3622 static void hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
3624 struct irq_desc *desc = irq_to_desc(irq);
3625 struct irq_cfg *cfg;
3630 if (!cpumask_intersects(mask, cpu_online_mask))
3633 cfg = desc->chip_data;
3634 if (assign_irq_vector(irq, cfg, *mask))
3637 set_extra_move_desc(desc, *mask);
3639 cpumask_and(&tmp, &cfg->domain, mask);
3640 dest = cpu_mask_to_apicid(tmp);
3642 hpet_msi_read(irq, &msg);
3644 msg.data &= ~MSI_DATA_VECTOR_MASK;
3645 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3646 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3647 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3649 hpet_msi_write(irq, &msg);
3650 cpumask_copy(&desc->affinity, mask);
3653 #endif /* CONFIG_SMP */
3655 struct irq_chip hpet_msi_type = {
3657 .unmask = hpet_msi_unmask,
3658 .mask = hpet_msi_mask,
3659 .ack = ack_apic_edge,
3661 .set_affinity = hpet_msi_set_affinity,
3663 .retrigger = ioapic_retrigger_irq,
3666 int arch_setup_hpet_msi(unsigned int irq)
3671 ret = msi_compose_msg(NULL, irq, &msg);
3675 hpet_msi_write(irq, &msg);
3676 set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq,
3683 #endif /* CONFIG_PCI_MSI */
3685 * Hypertransport interrupt support
3687 #ifdef CONFIG_HT_IRQ
3691 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
3693 struct ht_irq_msg msg;
3694 fetch_ht_irq_msg(irq, &msg);
3696 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
3697 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
3699 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
3700 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
3702 write_ht_irq_msg(irq, &msg);
3705 static void set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
3707 struct irq_desc *desc = irq_to_desc(irq);
3708 struct irq_cfg *cfg;
3712 if (!cpumask_intersects(mask, cpu_online_mask))
3715 cfg = desc->chip_data;
3716 if (assign_irq_vector(irq, cfg, *mask))
3719 set_extra_move_desc(desc, *mask);
3721 cpumask_and(&tmp, &cfg->domain, mask);
3722 dest = cpu_mask_to_apicid(tmp);
3724 target_ht_irq(irq, dest, cfg->vector);
3725 cpumask_copy(&desc->affinity, mask);
3730 static struct irq_chip ht_irq_chip = {
3732 .mask = mask_ht_irq,
3733 .unmask = unmask_ht_irq,
3734 .ack = ack_apic_edge,
3736 .set_affinity = set_ht_irq_affinity,
3738 .retrigger = ioapic_retrigger_irq,
3741 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3743 struct irq_cfg *cfg;
3749 err = assign_irq_vector(irq, cfg, tmp);
3751 struct ht_irq_msg msg;
3754 cpus_and(tmp, cfg->domain, tmp);
3755 dest = cpu_mask_to_apicid(tmp);
3757 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
3761 HT_IRQ_LOW_DEST_ID(dest) |
3762 HT_IRQ_LOW_VECTOR(cfg->vector) |
3763 ((INT_DEST_MODE == 0) ?
3764 HT_IRQ_LOW_DM_PHYSICAL :
3765 HT_IRQ_LOW_DM_LOGICAL) |
3766 HT_IRQ_LOW_RQEOI_EDGE |
3767 ((INT_DELIVERY_MODE != dest_LowestPrio) ?
3768 HT_IRQ_LOW_MT_FIXED :
3769 HT_IRQ_LOW_MT_ARBITRATED) |
3770 HT_IRQ_LOW_IRQ_MASKED;
3772 write_ht_irq_msg(irq, &msg);
3774 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3775 handle_edge_irq, "edge");
3777 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
3781 #endif /* CONFIG_HT_IRQ */
3783 #ifdef CONFIG_X86_64
3785 * Re-target the irq to the specified CPU and enable the specified MMR located
3786 * on the specified blade to allow the sending of MSIs to the specified CPU.
3788 int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade,
3789 unsigned long mmr_offset)
3791 const cpumask_t *eligible_cpu = get_cpu_mask(cpu);
3792 struct irq_cfg *cfg;
3794 unsigned long mmr_value;
3795 struct uv_IO_APIC_route_entry *entry;
3796 unsigned long flags;
3801 err = assign_irq_vector(irq, cfg, *eligible_cpu);
3805 spin_lock_irqsave(&vector_lock, flags);
3806 set_irq_chip_and_handler_name(irq, &uv_irq_chip, handle_percpu_irq,
3808 spin_unlock_irqrestore(&vector_lock, flags);
3811 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3812 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3814 entry->vector = cfg->vector;
3815 entry->delivery_mode = INT_DELIVERY_MODE;
3816 entry->dest_mode = INT_DEST_MODE;
3817 entry->polarity = 0;
3820 entry->dest = cpu_mask_to_apicid(*eligible_cpu);
3822 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3823 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3829 * Disable the specified MMR located on the specified blade so that MSIs are
3830 * longer allowed to be sent.
3832 void arch_disable_uv_irq(int mmr_blade, unsigned long mmr_offset)
3834 unsigned long mmr_value;
3835 struct uv_IO_APIC_route_entry *entry;
3839 entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
3840 BUG_ON(sizeof(struct uv_IO_APIC_route_entry) != sizeof(unsigned long));
3844 mmr_pnode = uv_blade_to_pnode(mmr_blade);
3845 uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value);
3847 #endif /* CONFIG_X86_64 */
3849 int __init io_apic_get_redir_entries (int ioapic)
3851 union IO_APIC_reg_01 reg_01;
3852 unsigned long flags;
3854 spin_lock_irqsave(&ioapic_lock, flags);
3855 reg_01.raw = io_apic_read(ioapic, 1);
3856 spin_unlock_irqrestore(&ioapic_lock, flags);
3858 return reg_01.bits.entries;
3861 void __init probe_nr_irqs_gsi(void)
3866 for (idx = 0; idx < nr_ioapics; idx++)
3867 nr += io_apic_get_redir_entries(idx) + 1;
3869 if (nr > nr_irqs_gsi)
3873 /* --------------------------------------------------------------------------
3874 ACPI-based IOAPIC Configuration
3875 -------------------------------------------------------------------------- */
3879 #ifdef CONFIG_X86_32
3880 int __init io_apic_get_unique_id(int ioapic, int apic_id)
3882 union IO_APIC_reg_00 reg_00;
3883 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3885 unsigned long flags;
3889 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3890 * buses (one for LAPICs, one for IOAPICs), where predecessors only
3891 * supports up to 16 on one shared APIC bus.
3893 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3894 * advantage of new APIC bus architecture.
3897 if (physids_empty(apic_id_map))
3898 apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
3900 spin_lock_irqsave(&ioapic_lock, flags);
3901 reg_00.raw = io_apic_read(ioapic, 0);
3902 spin_unlock_irqrestore(&ioapic_lock, flags);
3904 if (apic_id >= get_physical_broadcast()) {
3905 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3906 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3907 apic_id = reg_00.bits.ID;
3911 * Every APIC in a system must have a unique ID or we get lots of nice
3912 * 'stuck on smp_invalidate_needed IPI wait' messages.
3914 if (check_apicid_used(apic_id_map, apic_id)) {
3916 for (i = 0; i < get_physical_broadcast(); i++) {
3917 if (!check_apicid_used(apic_id_map, i))
3921 if (i == get_physical_broadcast())
3922 panic("Max apic_id exceeded!\n");
3924 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3925 "trying %d\n", ioapic, apic_id, i);
3930 tmp = apicid_to_cpu_present(apic_id);
3931 physids_or(apic_id_map, apic_id_map, tmp);
3933 if (reg_00.bits.ID != apic_id) {
3934 reg_00.bits.ID = apic_id;
3936 spin_lock_irqsave(&ioapic_lock, flags);
3937 io_apic_write(ioapic, 0, reg_00.raw);
3938 reg_00.raw = io_apic_read(ioapic, 0);
3939 spin_unlock_irqrestore(&ioapic_lock, flags);
3942 if (reg_00.bits.ID != apic_id) {
3943 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3948 apic_printk(APIC_VERBOSE, KERN_INFO
3949 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3954 int __init io_apic_get_version(int ioapic)
3956 union IO_APIC_reg_01 reg_01;
3957 unsigned long flags;
3959 spin_lock_irqsave(&ioapic_lock, flags);
3960 reg_01.raw = io_apic_read(ioapic, 1);
3961 spin_unlock_irqrestore(&ioapic_lock, flags);
3963 return reg_01.bits.version;
3967 int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
3969 struct irq_desc *desc;
3970 struct irq_cfg *cfg;
3971 int cpu = boot_cpu_id;
3973 if (!IO_APIC_IRQ(irq)) {
3974 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3979 desc = irq_to_desc_alloc_cpu(irq, cpu);
3981 printk(KERN_INFO "can not get irq_desc %d\n", irq);
3986 * IRQs < 16 are already in the irq_2_pin[] map
3988 if (irq >= NR_IRQS_LEGACY) {
3989 cfg = desc->chip_data;
3990 add_pin_to_irq_cpu(cfg, cpu, ioapic, pin);
3993 setup_IO_APIC_irq(ioapic, pin, irq, desc, triggering, polarity);
3999 int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
4003 if (skip_ioapic_setup)
4006 for (i = 0; i < mp_irq_entries; i++)
4007 if (mp_irqs[i].mp_irqtype == mp_INT &&
4008 mp_irqs[i].mp_srcbusirq == bus_irq)
4010 if (i >= mp_irq_entries)
4013 *trigger = irq_trigger(i);
4014 *polarity = irq_polarity(i);
4018 #endif /* CONFIG_ACPI */
4021 * This function currently is only a helper for the i386 smp boot process where
4022 * we need to reprogram the ioredtbls to cater for the cpus which have come online
4023 * so mask in all cases should simply be TARGET_CPUS
4026 void __init setup_ioapic_dest(void)
4028 int pin, ioapic, irq, irq_entry;
4029 struct irq_desc *desc;
4030 struct irq_cfg *cfg;
4033 if (skip_ioapic_setup == 1)
4036 for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
4037 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
4038 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
4039 if (irq_entry == -1)
4041 irq = pin_2_irq(irq_entry, ioapic, pin);
4043 /* setup_IO_APIC_irqs could fail to get vector for some device
4044 * when you have too many devices, because at that time only boot
4047 desc = irq_to_desc(irq);
4048 cfg = desc->chip_data;
4050 setup_IO_APIC_irq(ioapic, pin, irq, desc,
4051 irq_trigger(irq_entry),
4052 irq_polarity(irq_entry));
4058 * Honour affinities which have been set in early boot
4061 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
4062 mask = desc->affinity;
4066 #ifdef CONFIG_INTR_REMAP
4067 if (intr_remapping_enabled)
4068 set_ir_ioapic_affinity_irq_desc(desc, mask);
4071 set_ioapic_affinity_irq_desc(desc, mask);
4078 #define IOAPIC_RESOURCE_NAME_SIZE 11
4080 static struct resource *ioapic_resources;
4082 static struct resource * __init ioapic_setup_resources(void)
4085 struct resource *res;
4089 if (nr_ioapics <= 0)
4092 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
4095 mem = alloc_bootmem(n);
4099 mem += sizeof(struct resource) * nr_ioapics;
4101 for (i = 0; i < nr_ioapics; i++) {
4103 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
4104 sprintf(mem, "IOAPIC %u", i);
4105 mem += IOAPIC_RESOURCE_NAME_SIZE;
4109 ioapic_resources = res;
4114 void __init ioapic_init_mappings(void)
4116 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
4117 struct resource *ioapic_res;
4120 ioapic_res = ioapic_setup_resources();
4121 for (i = 0; i < nr_ioapics; i++) {
4122 if (smp_found_config) {
4123 ioapic_phys = mp_ioapics[i].mp_apicaddr;
4124 #ifdef CONFIG_X86_32
4127 "WARNING: bogus zero IO-APIC "
4128 "address found in MPTABLE, "
4129 "disabling IO/APIC support!\n");
4130 smp_found_config = 0;
4131 skip_ioapic_setup = 1;
4132 goto fake_ioapic_page;
4136 #ifdef CONFIG_X86_32
4139 ioapic_phys = (unsigned long)
4140 alloc_bootmem_pages(PAGE_SIZE);
4141 ioapic_phys = __pa(ioapic_phys);
4143 set_fixmap_nocache(idx, ioapic_phys);
4144 apic_printk(APIC_VERBOSE,
4145 "mapped IOAPIC to %08lx (%08lx)\n",
4146 __fix_to_virt(idx), ioapic_phys);
4149 if (ioapic_res != NULL) {
4150 ioapic_res->start = ioapic_phys;
4151 ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
4157 static int __init ioapic_insert_resources(void)
4160 struct resource *r = ioapic_resources;
4164 "IO APIC resources could be not be allocated.\n");
4168 for (i = 0; i < nr_ioapics; i++) {
4169 insert_resource(&iomem_resource, r);
4176 /* Insert the IO APIC resources after PCI initialization has occured to handle
4177 * IO APICS that are mapped in on a BAR in PCI space. */
4178 late_initcall(ioapic_insert_resources);