x86: Fix APIC ID sizing bug on larger systems, clean up MAX_APICS confusion
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / apic / io_apic.c
blob2fc696e4d565c9cf0d11efd5d8f8b5308e0167ec
1 /*
2 * Intel IO-APIC support for multi-Pentium hosts.
4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 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>
15 * Fixes
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
18 * and Rolf G. Tews
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
23 #include <linux/mm.h>
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/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() */
39 #include <linux/slab.h>
40 #ifdef CONFIG_ACPI
41 #include <acpi/acpi_bus.h>
42 #endif
43 #include <linux/bootmem.h>
44 #include <linux/dmar.h>
45 #include <linux/hpet.h>
47 #include <asm/idle.h>
48 #include <asm/io.h>
49 #include <asm/smp.h>
50 #include <asm/cpu.h>
51 #include <asm/desc.h>
52 #include <asm/proto.h>
53 #include <asm/acpi.h>
54 #include <asm/dma.h>
55 #include <asm/timer.h>
56 #include <asm/i8259.h>
57 #include <asm/nmi.h>
58 #include <asm/msidef.h>
59 #include <asm/hypertransport.h>
60 #include <asm/setup.h>
61 #include <asm/irq_remapping.h>
62 #include <asm/hpet.h>
63 #include <asm/hw_irq.h>
65 #include <asm/apic.h>
67 #define __apicdebuginit(type) static type __init
68 #define for_each_irq_pin(entry, head) \
69 for (entry = head; entry; entry = entry->next)
72 * Is the SiS APIC rmw bug present ?
73 * -1 = don't know, 0 = no, 1 = yes
75 int sis_apic_bug = -1;
77 static DEFINE_RAW_SPINLOCK(ioapic_lock);
78 static DEFINE_RAW_SPINLOCK(vector_lock);
81 * # of IRQ routing registers
83 int nr_ioapic_registers[MAX_IO_APICS];
85 /* I/O APIC entries */
86 struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
87 int nr_ioapics;
89 /* IO APIC gsi routing info */
90 struct mp_ioapic_gsi mp_gsi_routing[MAX_IO_APICS];
92 /* The one past the highest gsi number used */
93 u32 gsi_top;
95 /* MP IRQ source entries */
96 struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
98 /* # of MP IRQ source entries */
99 int mp_irq_entries;
101 /* GSI interrupts */
102 static int nr_irqs_gsi = NR_IRQS_LEGACY;
104 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
105 int mp_bus_id_to_type[MAX_MP_BUSSES];
106 #endif
108 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
110 int skip_ioapic_setup;
112 void arch_disable_smp_support(void)
114 #ifdef CONFIG_PCI
115 noioapicquirk = 1;
116 noioapicreroute = -1;
117 #endif
118 skip_ioapic_setup = 1;
121 static int __init parse_noapic(char *str)
123 /* disable IO-APIC */
124 arch_disable_smp_support();
125 return 0;
127 early_param("noapic", parse_noapic);
129 struct irq_pin_list {
130 int apic, pin;
131 struct irq_pin_list *next;
134 static struct irq_pin_list *alloc_irq_pin_list(int node)
136 return kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
139 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
140 #ifdef CONFIG_SPARSE_IRQ
141 static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY];
142 #else
143 static struct irq_cfg irq_cfgx[NR_IRQS];
144 #endif
146 int __init arch_early_irq_init(void)
148 struct irq_cfg *cfg;
149 int count, node, i;
151 if (!legacy_pic->nr_legacy_irqs) {
152 nr_irqs_gsi = 0;
153 io_apic_irqs = ~0UL;
156 cfg = irq_cfgx;
157 count = ARRAY_SIZE(irq_cfgx);
158 node = cpu_to_node(0);
160 /* Make sure the legacy interrupts are marked in the bitmap */
161 irq_reserve_irqs(0, legacy_pic->nr_legacy_irqs);
163 for (i = 0; i < count; i++) {
164 set_irq_chip_data(i, &cfg[i]);
165 zalloc_cpumask_var_node(&cfg[i].domain, GFP_KERNEL, node);
166 zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_KERNEL, node);
168 * For legacy IRQ's, start with assigning irq0 to irq15 to
169 * IRQ0_VECTOR to IRQ15_VECTOR on cpu 0.
171 if (i < legacy_pic->nr_legacy_irqs) {
172 cfg[i].vector = IRQ0_VECTOR + i;
173 cpumask_set_cpu(0, cfg[i].domain);
177 return 0;
180 #ifdef CONFIG_SPARSE_IRQ
181 static struct irq_cfg *irq_cfg(unsigned int irq)
183 return get_irq_chip_data(irq);
186 static struct irq_cfg *alloc_irq_cfg(unsigned int irq, int node)
188 struct irq_cfg *cfg;
190 cfg = kzalloc_node(sizeof(*cfg), GFP_KERNEL, node);
191 if (!cfg)
192 return NULL;
193 if (!zalloc_cpumask_var_node(&cfg->domain, GFP_KERNEL, node))
194 goto out_cfg;
195 if (!zalloc_cpumask_var_node(&cfg->old_domain, GFP_KERNEL, node))
196 goto out_domain;
197 return cfg;
198 out_domain:
199 free_cpumask_var(cfg->domain);
200 out_cfg:
201 kfree(cfg);
202 return NULL;
205 static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg)
207 if (!cfg)
208 return;
209 set_irq_chip_data(at, NULL);
210 free_cpumask_var(cfg->domain);
211 free_cpumask_var(cfg->old_domain);
212 kfree(cfg);
215 #else
217 struct irq_cfg *irq_cfg(unsigned int irq)
219 return irq < nr_irqs ? irq_cfgx + irq : NULL;
222 static struct irq_cfg *alloc_irq_cfg(unsigned int irq, int node)
224 return irq_cfgx + irq;
227 static inline void free_irq_cfg(unsigned int at, struct irq_cfg *cfg) { }
229 #endif
231 static struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node)
233 int res = irq_alloc_desc_at(at, node);
234 struct irq_cfg *cfg;
236 if (res < 0) {
237 if (res != -EEXIST)
238 return NULL;
239 cfg = get_irq_chip_data(at);
240 if (cfg)
241 return cfg;
244 cfg = alloc_irq_cfg(at, node);
245 if (cfg)
246 set_irq_chip_data(at, cfg);
247 else
248 irq_free_desc(at);
249 return cfg;
252 static int alloc_irq_from(unsigned int from, int node)
254 return irq_alloc_desc_from(from, node);
257 static void free_irq_at(unsigned int at, struct irq_cfg *cfg)
259 free_irq_cfg(at, cfg);
260 irq_free_desc(at);
263 struct io_apic {
264 unsigned int index;
265 unsigned int unused[3];
266 unsigned int data;
267 unsigned int unused2[11];
268 unsigned int eoi;
271 static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
273 return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
274 + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
277 static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
279 struct io_apic __iomem *io_apic = io_apic_base(apic);
280 writel(vector, &io_apic->eoi);
283 static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
285 struct io_apic __iomem *io_apic = io_apic_base(apic);
286 writel(reg, &io_apic->index);
287 return readl(&io_apic->data);
290 static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
292 struct io_apic __iomem *io_apic = io_apic_base(apic);
293 writel(reg, &io_apic->index);
294 writel(value, &io_apic->data);
298 * Re-write a value: to be used for read-modify-write
299 * cycles where the read already set up the index register.
301 * Older SiS APIC requires we rewrite the index register
303 static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
305 struct io_apic __iomem *io_apic = io_apic_base(apic);
307 if (sis_apic_bug)
308 writel(reg, &io_apic->index);
309 writel(value, &io_apic->data);
312 static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
314 struct irq_pin_list *entry;
315 unsigned long flags;
317 raw_spin_lock_irqsave(&ioapic_lock, flags);
318 for_each_irq_pin(entry, cfg->irq_2_pin) {
319 unsigned int reg;
320 int pin;
322 pin = entry->pin;
323 reg = io_apic_read(entry->apic, 0x10 + pin*2);
324 /* Is the remote IRR bit set? */
325 if (reg & IO_APIC_REDIR_REMOTE_IRR) {
326 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
327 return true;
330 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
332 return false;
335 union entry_union {
336 struct { u32 w1, w2; };
337 struct IO_APIC_route_entry entry;
340 static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
342 union entry_union eu;
343 unsigned long flags;
344 raw_spin_lock_irqsave(&ioapic_lock, flags);
345 eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
346 eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
347 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
348 return eu.entry;
352 * When we write a new IO APIC routing entry, we need to write the high
353 * word first! If the mask bit in the low word is clear, we will enable
354 * the interrupt, and we need to make sure the entry is fully populated
355 * before that happens.
357 static void
358 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
360 union entry_union eu = {{0, 0}};
362 eu.entry = e;
363 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
364 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
367 static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
369 unsigned long flags;
370 raw_spin_lock_irqsave(&ioapic_lock, flags);
371 __ioapic_write_entry(apic, pin, e);
372 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
376 * When we mask an IO APIC routing entry, we need to write the low
377 * word first, in order to set the mask bit before we change the
378 * high bits!
380 static void ioapic_mask_entry(int apic, int pin)
382 unsigned long flags;
383 union entry_union eu = { .entry.mask = 1 };
385 raw_spin_lock_irqsave(&ioapic_lock, flags);
386 io_apic_write(apic, 0x10 + 2*pin, eu.w1);
387 io_apic_write(apic, 0x11 + 2*pin, eu.w2);
388 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
392 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
393 * shared ISA-space IRQs, so we have to support them. We are super
394 * fast in the common case, and fast for shared ISA-space IRQs.
396 static int
397 __add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
399 struct irq_pin_list **last, *entry;
401 /* don't allow duplicates */
402 last = &cfg->irq_2_pin;
403 for_each_irq_pin(entry, cfg->irq_2_pin) {
404 if (entry->apic == apic && entry->pin == pin)
405 return 0;
406 last = &entry->next;
409 entry = alloc_irq_pin_list(node);
410 if (!entry) {
411 printk(KERN_ERR "can not alloc irq_pin_list (%d,%d,%d)\n",
412 node, apic, pin);
413 return -ENOMEM;
415 entry->apic = apic;
416 entry->pin = pin;
418 *last = entry;
419 return 0;
422 static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
424 if (__add_pin_to_irq_node(cfg, node, apic, pin))
425 panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
429 * Reroute an IRQ to a different pin.
431 static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
432 int oldapic, int oldpin,
433 int newapic, int newpin)
435 struct irq_pin_list *entry;
437 for_each_irq_pin(entry, cfg->irq_2_pin) {
438 if (entry->apic == oldapic && entry->pin == oldpin) {
439 entry->apic = newapic;
440 entry->pin = newpin;
441 /* every one is different, right? */
442 return;
446 /* old apic/pin didn't exist, so just add new ones */
447 add_pin_to_irq_node(cfg, node, newapic, newpin);
450 static void __io_apic_modify_irq(struct irq_pin_list *entry,
451 int mask_and, int mask_or,
452 void (*final)(struct irq_pin_list *entry))
454 unsigned int reg, pin;
456 pin = entry->pin;
457 reg = io_apic_read(entry->apic, 0x10 + pin * 2);
458 reg &= mask_and;
459 reg |= mask_or;
460 io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
461 if (final)
462 final(entry);
465 static void io_apic_modify_irq(struct irq_cfg *cfg,
466 int mask_and, int mask_or,
467 void (*final)(struct irq_pin_list *entry))
469 struct irq_pin_list *entry;
471 for_each_irq_pin(entry, cfg->irq_2_pin)
472 __io_apic_modify_irq(entry, mask_and, mask_or, final);
475 static void __mask_and_edge_IO_APIC_irq(struct irq_pin_list *entry)
477 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_LEVEL_TRIGGER,
478 IO_APIC_REDIR_MASKED, NULL);
481 static void __unmask_and_level_IO_APIC_irq(struct irq_pin_list *entry)
483 __io_apic_modify_irq(entry, ~IO_APIC_REDIR_MASKED,
484 IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
487 static void io_apic_sync(struct irq_pin_list *entry)
490 * Synchronize the IO-APIC and the CPU by doing
491 * a dummy read from the IO-APIC
493 struct io_apic __iomem *io_apic;
494 io_apic = io_apic_base(entry->apic);
495 readl(&io_apic->data);
498 static void mask_ioapic(struct irq_cfg *cfg)
500 unsigned long flags;
502 raw_spin_lock_irqsave(&ioapic_lock, flags);
503 io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
504 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
507 static void mask_ioapic_irq(struct irq_data *data)
509 mask_ioapic(data->chip_data);
512 static void __unmask_ioapic(struct irq_cfg *cfg)
514 io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
517 static void unmask_ioapic(struct irq_cfg *cfg)
519 unsigned long flags;
521 raw_spin_lock_irqsave(&ioapic_lock, flags);
522 __unmask_ioapic(cfg);
523 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
526 static void unmask_ioapic_irq(struct irq_data *data)
528 unmask_ioapic(data->chip_data);
531 static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
533 struct IO_APIC_route_entry entry;
535 /* Check delivery_mode to be sure we're not clearing an SMI pin */
536 entry = ioapic_read_entry(apic, pin);
537 if (entry.delivery_mode == dest_SMI)
538 return;
540 * Disable it in the IO-APIC irq-routing table:
542 ioapic_mask_entry(apic, pin);
545 static void clear_IO_APIC (void)
547 int apic, pin;
549 for (apic = 0; apic < nr_ioapics; apic++)
550 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
551 clear_IO_APIC_pin(apic, pin);
554 #ifdef CONFIG_X86_32
556 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
557 * specific CPU-side IRQs.
560 #define MAX_PIRQS 8
561 static int pirq_entries[MAX_PIRQS] = {
562 [0 ... MAX_PIRQS - 1] = -1
565 static int __init ioapic_pirq_setup(char *str)
567 int i, max;
568 int ints[MAX_PIRQS+1];
570 get_options(str, ARRAY_SIZE(ints), ints);
572 apic_printk(APIC_VERBOSE, KERN_INFO
573 "PIRQ redirection, working around broken MP-BIOS.\n");
574 max = MAX_PIRQS;
575 if (ints[0] < MAX_PIRQS)
576 max = ints[0];
578 for (i = 0; i < max; i++) {
579 apic_printk(APIC_VERBOSE, KERN_DEBUG
580 "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
582 * PIRQs are mapped upside down, usually.
584 pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
586 return 1;
589 __setup("pirq=", ioapic_pirq_setup);
590 #endif /* CONFIG_X86_32 */
592 struct IO_APIC_route_entry **alloc_ioapic_entries(void)
594 int apic;
595 struct IO_APIC_route_entry **ioapic_entries;
597 ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
598 GFP_KERNEL);
599 if (!ioapic_entries)
600 return 0;
602 for (apic = 0; apic < nr_ioapics; apic++) {
603 ioapic_entries[apic] =
604 kzalloc(sizeof(struct IO_APIC_route_entry) *
605 nr_ioapic_registers[apic], GFP_KERNEL);
606 if (!ioapic_entries[apic])
607 goto nomem;
610 return ioapic_entries;
612 nomem:
613 while (--apic >= 0)
614 kfree(ioapic_entries[apic]);
615 kfree(ioapic_entries);
617 return 0;
621 * Saves all the IO-APIC RTE's
623 int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
625 int apic, pin;
627 if (!ioapic_entries)
628 return -ENOMEM;
630 for (apic = 0; apic < nr_ioapics; apic++) {
631 if (!ioapic_entries[apic])
632 return -ENOMEM;
634 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
635 ioapic_entries[apic][pin] =
636 ioapic_read_entry(apic, pin);
639 return 0;
643 * Mask all IO APIC entries.
645 void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
647 int apic, pin;
649 if (!ioapic_entries)
650 return;
652 for (apic = 0; apic < nr_ioapics; apic++) {
653 if (!ioapic_entries[apic])
654 break;
656 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
657 struct IO_APIC_route_entry entry;
659 entry = ioapic_entries[apic][pin];
660 if (!entry.mask) {
661 entry.mask = 1;
662 ioapic_write_entry(apic, pin, entry);
669 * Restore IO APIC entries which was saved in ioapic_entries.
671 int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
673 int apic, pin;
675 if (!ioapic_entries)
676 return -ENOMEM;
678 for (apic = 0; apic < nr_ioapics; apic++) {
679 if (!ioapic_entries[apic])
680 return -ENOMEM;
682 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
683 ioapic_write_entry(apic, pin,
684 ioapic_entries[apic][pin]);
686 return 0;
689 void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
691 int apic;
693 for (apic = 0; apic < nr_ioapics; apic++)
694 kfree(ioapic_entries[apic]);
696 kfree(ioapic_entries);
700 * Find the IRQ entry number of a certain pin.
702 static int find_irq_entry(int apic, int pin, int type)
704 int i;
706 for (i = 0; i < mp_irq_entries; i++)
707 if (mp_irqs[i].irqtype == type &&
708 (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
709 mp_irqs[i].dstapic == MP_APIC_ALL) &&
710 mp_irqs[i].dstirq == pin)
711 return i;
713 return -1;
717 * Find the pin to which IRQ[irq] (ISA) is connected
719 static int __init find_isa_irq_pin(int irq, int type)
721 int i;
723 for (i = 0; i < mp_irq_entries; i++) {
724 int lbus = mp_irqs[i].srcbus;
726 if (test_bit(lbus, mp_bus_not_pci) &&
727 (mp_irqs[i].irqtype == type) &&
728 (mp_irqs[i].srcbusirq == irq))
730 return mp_irqs[i].dstirq;
732 return -1;
735 static int __init find_isa_irq_apic(int irq, int type)
737 int i;
739 for (i = 0; i < mp_irq_entries; i++) {
740 int lbus = mp_irqs[i].srcbus;
742 if (test_bit(lbus, mp_bus_not_pci) &&
743 (mp_irqs[i].irqtype == type) &&
744 (mp_irqs[i].srcbusirq == irq))
745 break;
747 if (i < mp_irq_entries) {
748 int apic;
749 for(apic = 0; apic < nr_ioapics; apic++) {
750 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
751 return apic;
755 return -1;
758 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
760 * EISA Edge/Level control register, ELCR
762 static int EISA_ELCR(unsigned int irq)
764 if (irq < legacy_pic->nr_legacy_irqs) {
765 unsigned int port = 0x4d0 + (irq >> 3);
766 return (inb(port) >> (irq & 7)) & 1;
768 apic_printk(APIC_VERBOSE, KERN_INFO
769 "Broken MPtable reports ISA irq %d\n", irq);
770 return 0;
773 #endif
775 /* ISA interrupts are always polarity zero edge triggered,
776 * when listed as conforming in the MP table. */
778 #define default_ISA_trigger(idx) (0)
779 #define default_ISA_polarity(idx) (0)
781 /* EISA interrupts are always polarity zero and can be edge or level
782 * trigger depending on the ELCR value. If an interrupt is listed as
783 * EISA conforming in the MP table, that means its trigger type must
784 * be read in from the ELCR */
786 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
787 #define default_EISA_polarity(idx) default_ISA_polarity(idx)
789 /* PCI interrupts are always polarity one level triggered,
790 * when listed as conforming in the MP table. */
792 #define default_PCI_trigger(idx) (1)
793 #define default_PCI_polarity(idx) (1)
795 /* MCA interrupts are always polarity zero level triggered,
796 * when listed as conforming in the MP table. */
798 #define default_MCA_trigger(idx) (1)
799 #define default_MCA_polarity(idx) default_ISA_polarity(idx)
801 static int MPBIOS_polarity(int idx)
803 int bus = mp_irqs[idx].srcbus;
804 int polarity;
807 * Determine IRQ line polarity (high active or low active):
809 switch (mp_irqs[idx].irqflag & 3)
811 case 0: /* conforms, ie. bus-type dependent polarity */
812 if (test_bit(bus, mp_bus_not_pci))
813 polarity = default_ISA_polarity(idx);
814 else
815 polarity = default_PCI_polarity(idx);
816 break;
817 case 1: /* high active */
819 polarity = 0;
820 break;
822 case 2: /* reserved */
824 printk(KERN_WARNING "broken BIOS!!\n");
825 polarity = 1;
826 break;
828 case 3: /* low active */
830 polarity = 1;
831 break;
833 default: /* invalid */
835 printk(KERN_WARNING "broken BIOS!!\n");
836 polarity = 1;
837 break;
840 return polarity;
843 static int MPBIOS_trigger(int idx)
845 int bus = mp_irqs[idx].srcbus;
846 int trigger;
849 * Determine IRQ trigger mode (edge or level sensitive):
851 switch ((mp_irqs[idx].irqflag>>2) & 3)
853 case 0: /* conforms, ie. bus-type dependent */
854 if (test_bit(bus, mp_bus_not_pci))
855 trigger = default_ISA_trigger(idx);
856 else
857 trigger = default_PCI_trigger(idx);
858 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
859 switch (mp_bus_id_to_type[bus]) {
860 case MP_BUS_ISA: /* ISA pin */
862 /* set before the switch */
863 break;
865 case MP_BUS_EISA: /* EISA pin */
867 trigger = default_EISA_trigger(idx);
868 break;
870 case MP_BUS_PCI: /* PCI pin */
872 /* set before the switch */
873 break;
875 case MP_BUS_MCA: /* MCA pin */
877 trigger = default_MCA_trigger(idx);
878 break;
880 default:
882 printk(KERN_WARNING "broken BIOS!!\n");
883 trigger = 1;
884 break;
887 #endif
888 break;
889 case 1: /* edge */
891 trigger = 0;
892 break;
894 case 2: /* reserved */
896 printk(KERN_WARNING "broken BIOS!!\n");
897 trigger = 1;
898 break;
900 case 3: /* level */
902 trigger = 1;
903 break;
905 default: /* invalid */
907 printk(KERN_WARNING "broken BIOS!!\n");
908 trigger = 0;
909 break;
912 return trigger;
915 static inline int irq_polarity(int idx)
917 return MPBIOS_polarity(idx);
920 static inline int irq_trigger(int idx)
922 return MPBIOS_trigger(idx);
925 static int pin_2_irq(int idx, int apic, int pin)
927 int irq;
928 int bus = mp_irqs[idx].srcbus;
931 * Debugging check, we are in big trouble if this message pops up!
933 if (mp_irqs[idx].dstirq != pin)
934 printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
936 if (test_bit(bus, mp_bus_not_pci)) {
937 irq = mp_irqs[idx].srcbusirq;
938 } else {
939 u32 gsi = mp_gsi_routing[apic].gsi_base + pin;
941 if (gsi >= NR_IRQS_LEGACY)
942 irq = gsi;
943 else
944 irq = gsi_top + gsi;
947 #ifdef CONFIG_X86_32
949 * PCI IRQ command line redirection. Yes, limits are hardcoded.
951 if ((pin >= 16) && (pin <= 23)) {
952 if (pirq_entries[pin-16] != -1) {
953 if (!pirq_entries[pin-16]) {
954 apic_printk(APIC_VERBOSE, KERN_DEBUG
955 "disabling PIRQ%d\n", pin-16);
956 } else {
957 irq = pirq_entries[pin-16];
958 apic_printk(APIC_VERBOSE, KERN_DEBUG
959 "using PIRQ%d -> IRQ %d\n",
960 pin-16, irq);
964 #endif
966 return irq;
970 * Find a specific PCI IRQ entry.
971 * Not an __init, possibly needed by modules
973 int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
974 struct io_apic_irq_attr *irq_attr)
976 int apic, i, best_guess = -1;
978 apic_printk(APIC_DEBUG,
979 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
980 bus, slot, pin);
981 if (test_bit(bus, mp_bus_not_pci)) {
982 apic_printk(APIC_VERBOSE,
983 "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
984 return -1;
986 for (i = 0; i < mp_irq_entries; i++) {
987 int lbus = mp_irqs[i].srcbus;
989 for (apic = 0; apic < nr_ioapics; apic++)
990 if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
991 mp_irqs[i].dstapic == MP_APIC_ALL)
992 break;
994 if (!test_bit(lbus, mp_bus_not_pci) &&
995 !mp_irqs[i].irqtype &&
996 (bus == lbus) &&
997 (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
998 int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
1000 if (!(apic || IO_APIC_IRQ(irq)))
1001 continue;
1003 if (pin == (mp_irqs[i].srcbusirq & 3)) {
1004 set_io_apic_irq_attr(irq_attr, apic,
1005 mp_irqs[i].dstirq,
1006 irq_trigger(i),
1007 irq_polarity(i));
1008 return irq;
1011 * Use the first all-but-pin matching entry as a
1012 * best-guess fuzzy result for broken mptables.
1014 if (best_guess < 0) {
1015 set_io_apic_irq_attr(irq_attr, apic,
1016 mp_irqs[i].dstirq,
1017 irq_trigger(i),
1018 irq_polarity(i));
1019 best_guess = irq;
1023 return best_guess;
1025 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
1027 void lock_vector_lock(void)
1029 /* Used to the online set of cpus does not change
1030 * during assign_irq_vector.
1032 raw_spin_lock(&vector_lock);
1035 void unlock_vector_lock(void)
1037 raw_spin_unlock(&vector_lock);
1040 static int
1041 __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
1044 * NOTE! The local APIC isn't very good at handling
1045 * multiple interrupts at the same interrupt level.
1046 * As the interrupt level is determined by taking the
1047 * vector number and shifting that right by 4, we
1048 * want to spread these out a bit so that they don't
1049 * all fall in the same interrupt level.
1051 * Also, we've got to be careful not to trash gate
1052 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1054 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
1055 static int current_offset = VECTOR_OFFSET_START % 8;
1056 unsigned int old_vector;
1057 int cpu, err;
1058 cpumask_var_t tmp_mask;
1060 if (cfg->move_in_progress)
1061 return -EBUSY;
1063 if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
1064 return -ENOMEM;
1066 old_vector = cfg->vector;
1067 if (old_vector) {
1068 cpumask_and(tmp_mask, mask, cpu_online_mask);
1069 cpumask_and(tmp_mask, cfg->domain, tmp_mask);
1070 if (!cpumask_empty(tmp_mask)) {
1071 free_cpumask_var(tmp_mask);
1072 return 0;
1076 /* Only try and allocate irqs on cpus that are present */
1077 err = -ENOSPC;
1078 for_each_cpu_and(cpu, mask, cpu_online_mask) {
1079 int new_cpu;
1080 int vector, offset;
1082 apic->vector_allocation_domain(cpu, tmp_mask);
1084 vector = current_vector;
1085 offset = current_offset;
1086 next:
1087 vector += 8;
1088 if (vector >= first_system_vector) {
1089 /* If out of vectors on large boxen, must share them. */
1090 offset = (offset + 1) % 8;
1091 vector = FIRST_EXTERNAL_VECTOR + offset;
1093 if (unlikely(current_vector == vector))
1094 continue;
1096 if (test_bit(vector, used_vectors))
1097 goto next;
1099 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
1100 if (per_cpu(vector_irq, new_cpu)[vector] != -1)
1101 goto next;
1102 /* Found one! */
1103 current_vector = vector;
1104 current_offset = offset;
1105 if (old_vector) {
1106 cfg->move_in_progress = 1;
1107 cpumask_copy(cfg->old_domain, cfg->domain);
1109 for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
1110 per_cpu(vector_irq, new_cpu)[vector] = irq;
1111 cfg->vector = vector;
1112 cpumask_copy(cfg->domain, tmp_mask);
1113 err = 0;
1114 break;
1116 free_cpumask_var(tmp_mask);
1117 return err;
1120 int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
1122 int err;
1123 unsigned long flags;
1125 raw_spin_lock_irqsave(&vector_lock, flags);
1126 err = __assign_irq_vector(irq, cfg, mask);
1127 raw_spin_unlock_irqrestore(&vector_lock, flags);
1128 return err;
1131 static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
1133 int cpu, vector;
1135 BUG_ON(!cfg->vector);
1137 vector = cfg->vector;
1138 for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
1139 per_cpu(vector_irq, cpu)[vector] = -1;
1141 cfg->vector = 0;
1142 cpumask_clear(cfg->domain);
1144 if (likely(!cfg->move_in_progress))
1145 return;
1146 for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
1147 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
1148 vector++) {
1149 if (per_cpu(vector_irq, cpu)[vector] != irq)
1150 continue;
1151 per_cpu(vector_irq, cpu)[vector] = -1;
1152 break;
1155 cfg->move_in_progress = 0;
1158 void __setup_vector_irq(int cpu)
1160 /* Initialize vector_irq on a new cpu */
1161 int irq, vector;
1162 struct irq_cfg *cfg;
1165 * vector_lock will make sure that we don't run into irq vector
1166 * assignments that might be happening on another cpu in parallel,
1167 * while we setup our initial vector to irq mappings.
1169 raw_spin_lock(&vector_lock);
1170 /* Mark the inuse vectors */
1171 for_each_active_irq(irq) {
1172 cfg = get_irq_chip_data(irq);
1173 if (!cfg)
1174 continue;
1176 * If it is a legacy IRQ handled by the legacy PIC, this cpu
1177 * will be part of the irq_cfg's domain.
1179 if (irq < legacy_pic->nr_legacy_irqs && !IO_APIC_IRQ(irq))
1180 cpumask_set_cpu(cpu, cfg->domain);
1182 if (!cpumask_test_cpu(cpu, cfg->domain))
1183 continue;
1184 vector = cfg->vector;
1185 per_cpu(vector_irq, cpu)[vector] = irq;
1187 /* Mark the free vectors */
1188 for (vector = 0; vector < NR_VECTORS; ++vector) {
1189 irq = per_cpu(vector_irq, cpu)[vector];
1190 if (irq < 0)
1191 continue;
1193 cfg = irq_cfg(irq);
1194 if (!cpumask_test_cpu(cpu, cfg->domain))
1195 per_cpu(vector_irq, cpu)[vector] = -1;
1197 raw_spin_unlock(&vector_lock);
1200 static struct irq_chip ioapic_chip;
1201 static struct irq_chip ir_ioapic_chip;
1203 #define IOAPIC_AUTO -1
1204 #define IOAPIC_EDGE 0
1205 #define IOAPIC_LEVEL 1
1207 #ifdef CONFIG_X86_32
1208 static inline int IO_APIC_irq_trigger(int irq)
1210 int apic, idx, pin;
1212 for (apic = 0; apic < nr_ioapics; apic++) {
1213 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1214 idx = find_irq_entry(apic, pin, mp_INT);
1215 if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
1216 return irq_trigger(idx);
1220 * nonexistent IRQs are edge default
1222 return 0;
1224 #else
1225 static inline int IO_APIC_irq_trigger(int irq)
1227 return 1;
1229 #endif
1231 static void ioapic_register_intr(unsigned int irq, unsigned long trigger)
1234 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1235 trigger == IOAPIC_LEVEL)
1236 irq_set_status_flags(irq, IRQ_LEVEL);
1237 else
1238 irq_clear_status_flags(irq, IRQ_LEVEL);
1240 if (irq_remapped(get_irq_chip_data(irq))) {
1241 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
1242 if (trigger)
1243 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1244 handle_fasteoi_irq,
1245 "fasteoi");
1246 else
1247 set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
1248 handle_edge_irq, "edge");
1249 return;
1252 if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
1253 trigger == IOAPIC_LEVEL)
1254 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1255 handle_fasteoi_irq,
1256 "fasteoi");
1257 else
1258 set_irq_chip_and_handler_name(irq, &ioapic_chip,
1259 handle_edge_irq, "edge");
1262 static int setup_ioapic_entry(int apic_id, int irq,
1263 struct IO_APIC_route_entry *entry,
1264 unsigned int destination, int trigger,
1265 int polarity, int vector, int pin)
1268 * add it to the IO-APIC irq-routing table:
1270 memset(entry,0,sizeof(*entry));
1272 if (intr_remapping_enabled) {
1273 struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
1274 struct irte irte;
1275 struct IR_IO_APIC_route_entry *ir_entry =
1276 (struct IR_IO_APIC_route_entry *) entry;
1277 int index;
1279 if (!iommu)
1280 panic("No mapping iommu for ioapic %d\n", apic_id);
1282 index = alloc_irte(iommu, irq, 1);
1283 if (index < 0)
1284 panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
1286 prepare_irte(&irte, vector, destination);
1288 /* Set source-id of interrupt request */
1289 set_ioapic_sid(&irte, apic_id);
1291 modify_irte(irq, &irte);
1293 ir_entry->index2 = (index >> 15) & 0x1;
1294 ir_entry->zero = 0;
1295 ir_entry->format = 1;
1296 ir_entry->index = (index & 0x7fff);
1298 * IO-APIC RTE will be configured with virtual vector.
1299 * irq handler will do the explicit EOI to the io-apic.
1301 ir_entry->vector = pin;
1302 } else {
1303 entry->delivery_mode = apic->irq_delivery_mode;
1304 entry->dest_mode = apic->irq_dest_mode;
1305 entry->dest = destination;
1306 entry->vector = vector;
1309 entry->mask = 0; /* enable IRQ */
1310 entry->trigger = trigger;
1311 entry->polarity = polarity;
1313 /* Mask level triggered irqs.
1314 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1316 if (trigger)
1317 entry->mask = 1;
1318 return 0;
1321 static void setup_ioapic_irq(int apic_id, int pin, unsigned int irq,
1322 struct irq_cfg *cfg, int trigger, int polarity)
1324 struct IO_APIC_route_entry entry;
1325 unsigned int dest;
1327 if (!IO_APIC_IRQ(irq))
1328 return;
1330 * For legacy irqs, cfg->domain starts with cpu 0 for legacy
1331 * controllers like 8259. Now that IO-APIC can handle this irq, update
1332 * the cfg->domain.
1334 if (irq < legacy_pic->nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain))
1335 apic->vector_allocation_domain(0, cfg->domain);
1337 if (assign_irq_vector(irq, cfg, apic->target_cpus()))
1338 return;
1340 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
1342 apic_printk(APIC_VERBOSE,KERN_DEBUG
1343 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1344 "IRQ %d Mode:%i Active:%i)\n",
1345 apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
1346 irq, trigger, polarity);
1349 if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
1350 dest, trigger, polarity, cfg->vector, pin)) {
1351 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1352 mp_ioapics[apic_id].apicid, pin);
1353 __clear_irq_vector(irq, cfg);
1354 return;
1357 ioapic_register_intr(irq, trigger);
1358 if (irq < legacy_pic->nr_legacy_irqs)
1359 legacy_pic->mask(irq);
1361 ioapic_write_entry(apic_id, pin, entry);
1364 static struct {
1365 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
1366 } mp_ioapic_routing[MAX_IO_APICS];
1368 static void __init setup_IO_APIC_irqs(void)
1370 int apic_id, pin, idx, irq, notcon = 0;
1371 int node = cpu_to_node(0);
1372 struct irq_cfg *cfg;
1374 apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
1376 for (apic_id = 0; apic_id < nr_ioapics; apic_id++)
1377 for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
1378 idx = find_irq_entry(apic_id, pin, mp_INT);
1379 if (idx == -1) {
1380 if (!notcon) {
1381 notcon = 1;
1382 apic_printk(APIC_VERBOSE,
1383 KERN_DEBUG " %d-%d",
1384 mp_ioapics[apic_id].apicid, pin);
1385 } else
1386 apic_printk(APIC_VERBOSE, " %d-%d",
1387 mp_ioapics[apic_id].apicid, pin);
1388 continue;
1390 if (notcon) {
1391 apic_printk(APIC_VERBOSE,
1392 " (apicid-pin) not connected\n");
1393 notcon = 0;
1396 irq = pin_2_irq(idx, apic_id, pin);
1398 if ((apic_id > 0) && (irq > 16))
1399 continue;
1402 * Skip the timer IRQ if there's a quirk handler
1403 * installed and if it returns 1:
1405 if (apic->multi_timer_check &&
1406 apic->multi_timer_check(apic_id, irq))
1407 continue;
1409 cfg = alloc_irq_and_cfg_at(irq, node);
1410 if (!cfg)
1411 continue;
1413 add_pin_to_irq_node(cfg, node, apic_id, pin);
1415 * don't mark it in pin_programmed, so later acpi could
1416 * set it correctly when irq < 16
1418 setup_ioapic_irq(apic_id, pin, irq, cfg, irq_trigger(idx),
1419 irq_polarity(idx));
1422 if (notcon)
1423 apic_printk(APIC_VERBOSE,
1424 " (apicid-pin) not connected\n");
1428 * for the gsit that is not in first ioapic
1429 * but could not use acpi_register_gsi()
1430 * like some special sci in IBM x3330
1432 void setup_IO_APIC_irq_extra(u32 gsi)
1434 int apic_id = 0, pin, idx, irq, node = cpu_to_node(0);
1435 struct irq_cfg *cfg;
1438 * Convert 'gsi' to 'ioapic.pin'.
1440 apic_id = mp_find_ioapic(gsi);
1441 if (apic_id < 0)
1442 return;
1444 pin = mp_find_ioapic_pin(apic_id, gsi);
1445 idx = find_irq_entry(apic_id, pin, mp_INT);
1446 if (idx == -1)
1447 return;
1449 irq = pin_2_irq(idx, apic_id, pin);
1451 /* Only handle the non legacy irqs on secondary ioapics */
1452 if (apic_id == 0 || irq < NR_IRQS_LEGACY)
1453 return;
1455 cfg = alloc_irq_and_cfg_at(irq, node);
1456 if (!cfg)
1457 return;
1459 add_pin_to_irq_node(cfg, node, apic_id, pin);
1461 if (test_bit(pin, mp_ioapic_routing[apic_id].pin_programmed)) {
1462 pr_debug("Pin %d-%d already programmed\n",
1463 mp_ioapics[apic_id].apicid, pin);
1464 return;
1466 set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed);
1468 setup_ioapic_irq(apic_id, pin, irq, cfg,
1469 irq_trigger(idx), irq_polarity(idx));
1473 * Set up the timer pin, possibly with the 8259A-master behind.
1475 static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
1476 int vector)
1478 struct IO_APIC_route_entry entry;
1480 if (intr_remapping_enabled)
1481 return;
1483 memset(&entry, 0, sizeof(entry));
1486 * We use logical delivery to get the timer IRQ
1487 * to the first CPU.
1489 entry.dest_mode = apic->irq_dest_mode;
1490 entry.mask = 0; /* don't mask IRQ for edge */
1491 entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
1492 entry.delivery_mode = apic->irq_delivery_mode;
1493 entry.polarity = 0;
1494 entry.trigger = 0;
1495 entry.vector = vector;
1498 * The timer IRQ doesn't have to know that behind the
1499 * scene we may have a 8259A-master in AEOI mode ...
1501 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
1504 * Add it to the IO-APIC irq-routing table:
1506 ioapic_write_entry(apic_id, pin, entry);
1510 __apicdebuginit(void) print_IO_APIC(void)
1512 int apic, i;
1513 union IO_APIC_reg_00 reg_00;
1514 union IO_APIC_reg_01 reg_01;
1515 union IO_APIC_reg_02 reg_02;
1516 union IO_APIC_reg_03 reg_03;
1517 unsigned long flags;
1518 struct irq_cfg *cfg;
1519 unsigned int irq;
1521 printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
1522 for (i = 0; i < nr_ioapics; i++)
1523 printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
1524 mp_ioapics[i].apicid, nr_ioapic_registers[i]);
1527 * We are a bit conservative about what we expect. We have to
1528 * know about every hardware change ASAP.
1530 printk(KERN_INFO "testing the IO APIC.......................\n");
1532 for (apic = 0; apic < nr_ioapics; apic++) {
1534 raw_spin_lock_irqsave(&ioapic_lock, flags);
1535 reg_00.raw = io_apic_read(apic, 0);
1536 reg_01.raw = io_apic_read(apic, 1);
1537 if (reg_01.bits.version >= 0x10)
1538 reg_02.raw = io_apic_read(apic, 2);
1539 if (reg_01.bits.version >= 0x20)
1540 reg_03.raw = io_apic_read(apic, 3);
1541 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1543 printk("\n");
1544 printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
1545 printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
1546 printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
1547 printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
1548 printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
1550 printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
1551 printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
1553 printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
1554 printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
1557 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1558 * but the value of reg_02 is read as the previous read register
1559 * value, so ignore it if reg_02 == reg_01.
1561 if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
1562 printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
1563 printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
1567 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1568 * or reg_03, but the value of reg_0[23] is read as the previous read
1569 * register value, so ignore it if reg_03 == reg_0[12].
1571 if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
1572 reg_03.raw != reg_01.raw) {
1573 printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
1574 printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
1577 printk(KERN_DEBUG ".... IRQ redirection table:\n");
1579 printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
1580 " Stat Dmod Deli Vect:\n");
1582 for (i = 0; i <= reg_01.bits.entries; i++) {
1583 struct IO_APIC_route_entry entry;
1585 entry = ioapic_read_entry(apic, i);
1587 printk(KERN_DEBUG " %02x %03X ",
1589 entry.dest
1592 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1593 entry.mask,
1594 entry.trigger,
1595 entry.irr,
1596 entry.polarity,
1597 entry.delivery_status,
1598 entry.dest_mode,
1599 entry.delivery_mode,
1600 entry.vector
1604 printk(KERN_DEBUG "IRQ to pin mappings:\n");
1605 for_each_active_irq(irq) {
1606 struct irq_pin_list *entry;
1608 cfg = get_irq_chip_data(irq);
1609 if (!cfg)
1610 continue;
1611 entry = cfg->irq_2_pin;
1612 if (!entry)
1613 continue;
1614 printk(KERN_DEBUG "IRQ%d ", irq);
1615 for_each_irq_pin(entry, cfg->irq_2_pin)
1616 printk("-> %d:%d", entry->apic, entry->pin);
1617 printk("\n");
1620 printk(KERN_INFO ".................................... done.\n");
1622 return;
1625 __apicdebuginit(void) print_APIC_field(int base)
1627 int i;
1629 printk(KERN_DEBUG);
1631 for (i = 0; i < 8; i++)
1632 printk(KERN_CONT "%08x", apic_read(base + i*0x10));
1634 printk(KERN_CONT "\n");
1637 __apicdebuginit(void) print_local_APIC(void *dummy)
1639 unsigned int i, v, ver, maxlvt;
1640 u64 icr;
1642 printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
1643 smp_processor_id(), hard_smp_processor_id());
1644 v = apic_read(APIC_ID);
1645 printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
1646 v = apic_read(APIC_LVR);
1647 printk(KERN_INFO "... APIC VERSION: %08x\n", v);
1648 ver = GET_APIC_VERSION(v);
1649 maxlvt = lapic_get_maxlvt();
1651 v = apic_read(APIC_TASKPRI);
1652 printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
1654 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1655 if (!APIC_XAPIC(ver)) {
1656 v = apic_read(APIC_ARBPRI);
1657 printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
1658 v & APIC_ARBPRI_MASK);
1660 v = apic_read(APIC_PROCPRI);
1661 printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
1665 * Remote read supported only in the 82489DX and local APIC for
1666 * Pentium processors.
1668 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
1669 v = apic_read(APIC_RRR);
1670 printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
1673 v = apic_read(APIC_LDR);
1674 printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
1675 if (!x2apic_enabled()) {
1676 v = apic_read(APIC_DFR);
1677 printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
1679 v = apic_read(APIC_SPIV);
1680 printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
1682 printk(KERN_DEBUG "... APIC ISR field:\n");
1683 print_APIC_field(APIC_ISR);
1684 printk(KERN_DEBUG "... APIC TMR field:\n");
1685 print_APIC_field(APIC_TMR);
1686 printk(KERN_DEBUG "... APIC IRR field:\n");
1687 print_APIC_field(APIC_IRR);
1689 if (APIC_INTEGRATED(ver)) { /* !82489DX */
1690 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
1691 apic_write(APIC_ESR, 0);
1693 v = apic_read(APIC_ESR);
1694 printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
1697 icr = apic_icr_read();
1698 printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
1699 printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
1701 v = apic_read(APIC_LVTT);
1702 printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
1704 if (maxlvt > 3) { /* PC is LVT#4. */
1705 v = apic_read(APIC_LVTPC);
1706 printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
1708 v = apic_read(APIC_LVT0);
1709 printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
1710 v = apic_read(APIC_LVT1);
1711 printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
1713 if (maxlvt > 2) { /* ERR is LVT#3. */
1714 v = apic_read(APIC_LVTERR);
1715 printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
1718 v = apic_read(APIC_TMICT);
1719 printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
1720 v = apic_read(APIC_TMCCT);
1721 printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
1722 v = apic_read(APIC_TDCR);
1723 printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
1725 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
1726 v = apic_read(APIC_EFEAT);
1727 maxlvt = (v >> 16) & 0xff;
1728 printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
1729 v = apic_read(APIC_ECTRL);
1730 printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
1731 for (i = 0; i < maxlvt; i++) {
1732 v = apic_read(APIC_EILVTn(i));
1733 printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
1736 printk("\n");
1739 __apicdebuginit(void) print_local_APICs(int maxcpu)
1741 int cpu;
1743 if (!maxcpu)
1744 return;
1746 preempt_disable();
1747 for_each_online_cpu(cpu) {
1748 if (cpu >= maxcpu)
1749 break;
1750 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
1752 preempt_enable();
1755 __apicdebuginit(void) print_PIC(void)
1757 unsigned int v;
1758 unsigned long flags;
1760 if (!legacy_pic->nr_legacy_irqs)
1761 return;
1763 printk(KERN_DEBUG "\nprinting PIC contents\n");
1765 raw_spin_lock_irqsave(&i8259A_lock, flags);
1767 v = inb(0xa1) << 8 | inb(0x21);
1768 printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
1770 v = inb(0xa0) << 8 | inb(0x20);
1771 printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
1773 outb(0x0b,0xa0);
1774 outb(0x0b,0x20);
1775 v = inb(0xa0) << 8 | inb(0x20);
1776 outb(0x0a,0xa0);
1777 outb(0x0a,0x20);
1779 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
1781 printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
1783 v = inb(0x4d1) << 8 | inb(0x4d0);
1784 printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
1787 static int __initdata show_lapic = 1;
1788 static __init int setup_show_lapic(char *arg)
1790 int num = -1;
1792 if (strcmp(arg, "all") == 0) {
1793 show_lapic = CONFIG_NR_CPUS;
1794 } else {
1795 get_option(&arg, &num);
1796 if (num >= 0)
1797 show_lapic = num;
1800 return 1;
1802 __setup("show_lapic=", setup_show_lapic);
1804 __apicdebuginit(int) print_ICs(void)
1806 if (apic_verbosity == APIC_QUIET)
1807 return 0;
1809 print_PIC();
1811 /* don't print out if apic is not there */
1812 if (!cpu_has_apic && !apic_from_smp_config())
1813 return 0;
1815 print_local_APICs(show_lapic);
1816 print_IO_APIC();
1818 return 0;
1821 fs_initcall(print_ICs);
1824 /* Where if anywhere is the i8259 connect in external int mode */
1825 static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
1827 void __init enable_IO_APIC(void)
1829 int i8259_apic, i8259_pin;
1830 int apic;
1832 if (!legacy_pic->nr_legacy_irqs)
1833 return;
1835 for(apic = 0; apic < nr_ioapics; apic++) {
1836 int pin;
1837 /* See if any of the pins is in ExtINT mode */
1838 for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
1839 struct IO_APIC_route_entry entry;
1840 entry = ioapic_read_entry(apic, pin);
1842 /* If the interrupt line is enabled and in ExtInt mode
1843 * I have found the pin where the i8259 is connected.
1845 if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
1846 ioapic_i8259.apic = apic;
1847 ioapic_i8259.pin = pin;
1848 goto found_i8259;
1852 found_i8259:
1853 /* Look to see what if the MP table has reported the ExtINT */
1854 /* If we could not find the appropriate pin by looking at the ioapic
1855 * the i8259 probably is not connected the ioapic but give the
1856 * mptable a chance anyway.
1858 i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
1859 i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
1860 /* Trust the MP table if nothing is setup in the hardware */
1861 if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
1862 printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
1863 ioapic_i8259.pin = i8259_pin;
1864 ioapic_i8259.apic = i8259_apic;
1866 /* Complain if the MP table and the hardware disagree */
1867 if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
1868 (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
1870 printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
1874 * Do not trust the IO-APIC being empty at bootup
1876 clear_IO_APIC();
1880 * Not an __init, needed by the reboot code
1882 void disable_IO_APIC(void)
1885 * Clear the IO-APIC before rebooting:
1887 clear_IO_APIC();
1889 if (!legacy_pic->nr_legacy_irqs)
1890 return;
1893 * If the i8259 is routed through an IOAPIC
1894 * Put that IOAPIC in virtual wire mode
1895 * so legacy interrupts can be delivered.
1897 * With interrupt-remapping, for now we will use virtual wire A mode,
1898 * as virtual wire B is little complex (need to configure both
1899 * IOAPIC RTE aswell as interrupt-remapping table entry).
1900 * As this gets called during crash dump, keep this simple for now.
1902 if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
1903 struct IO_APIC_route_entry entry;
1905 memset(&entry, 0, sizeof(entry));
1906 entry.mask = 0; /* Enabled */
1907 entry.trigger = 0; /* Edge */
1908 entry.irr = 0;
1909 entry.polarity = 0; /* High */
1910 entry.delivery_status = 0;
1911 entry.dest_mode = 0; /* Physical */
1912 entry.delivery_mode = dest_ExtINT; /* ExtInt */
1913 entry.vector = 0;
1914 entry.dest = read_apic_id();
1917 * Add it to the IO-APIC irq-routing table:
1919 ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
1923 * Use virtual wire A mode when interrupt remapping is enabled.
1925 if (cpu_has_apic || apic_from_smp_config())
1926 disconnect_bsp_APIC(!intr_remapping_enabled &&
1927 ioapic_i8259.pin != -1);
1930 #ifdef CONFIG_X86_32
1932 * function to set the IO-APIC physical IDs based on the
1933 * values stored in the MPC table.
1935 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1937 void __init setup_ioapic_ids_from_mpc_nocheck(void)
1939 union IO_APIC_reg_00 reg_00;
1940 physid_mask_t phys_id_present_map;
1941 int apic_id;
1942 int i;
1943 unsigned char old_id;
1944 unsigned long flags;
1947 * This is broken; anything with a real cpu count has to
1948 * circumvent this idiocy regardless.
1950 apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
1953 * Set the IOAPIC ID to the value stored in the MPC table.
1955 for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
1957 /* Read the register 0 value */
1958 raw_spin_lock_irqsave(&ioapic_lock, flags);
1959 reg_00.raw = io_apic_read(apic_id, 0);
1960 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
1962 old_id = mp_ioapics[apic_id].apicid;
1964 if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
1965 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
1966 apic_id, mp_ioapics[apic_id].apicid);
1967 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1968 reg_00.bits.ID);
1969 mp_ioapics[apic_id].apicid = reg_00.bits.ID;
1973 * Sanity check, is the ID really free? Every APIC in a
1974 * system must have a unique ID or we get lots of nice
1975 * 'stuck on smp_invalidate_needed IPI wait' messages.
1977 if (apic->check_apicid_used(&phys_id_present_map,
1978 mp_ioapics[apic_id].apicid)) {
1979 printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
1980 apic_id, mp_ioapics[apic_id].apicid);
1981 for (i = 0; i < get_physical_broadcast(); i++)
1982 if (!physid_isset(i, phys_id_present_map))
1983 break;
1984 if (i >= get_physical_broadcast())
1985 panic("Max APIC ID exceeded!\n");
1986 printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
1988 physid_set(i, phys_id_present_map);
1989 mp_ioapics[apic_id].apicid = i;
1990 } else {
1991 physid_mask_t tmp;
1992 apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid, &tmp);
1993 apic_printk(APIC_VERBOSE, "Setting %d in the "
1994 "phys_id_present_map\n",
1995 mp_ioapics[apic_id].apicid);
1996 physids_or(phys_id_present_map, phys_id_present_map, tmp);
2000 * We need to adjust the IRQ routing table
2001 * if the ID changed.
2003 if (old_id != mp_ioapics[apic_id].apicid)
2004 for (i = 0; i < mp_irq_entries; i++)
2005 if (mp_irqs[i].dstapic == old_id)
2006 mp_irqs[i].dstapic
2007 = mp_ioapics[apic_id].apicid;
2010 * Read the right value from the MPC table and
2011 * write it into the ID register.
2013 apic_printk(APIC_VERBOSE, KERN_INFO
2014 "...changing IO-APIC physical APIC ID to %d ...",
2015 mp_ioapics[apic_id].apicid);
2017 reg_00.bits.ID = mp_ioapics[apic_id].apicid;
2018 raw_spin_lock_irqsave(&ioapic_lock, flags);
2019 io_apic_write(apic_id, 0, reg_00.raw);
2020 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2023 * Sanity check
2025 raw_spin_lock_irqsave(&ioapic_lock, flags);
2026 reg_00.raw = io_apic_read(apic_id, 0);
2027 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2028 if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
2029 printk("could not set ID!\n");
2030 else
2031 apic_printk(APIC_VERBOSE, " ok.\n");
2035 void __init setup_ioapic_ids_from_mpc(void)
2038 if (acpi_ioapic)
2039 return;
2041 * Don't check I/O APIC IDs for xAPIC systems. They have
2042 * no meaning without the serial APIC bus.
2044 if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2045 || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
2046 return;
2047 setup_ioapic_ids_from_mpc_nocheck();
2049 #endif
2051 int no_timer_check __initdata;
2053 static int __init notimercheck(char *s)
2055 no_timer_check = 1;
2056 return 1;
2058 __setup("no_timer_check", notimercheck);
2061 * There is a nasty bug in some older SMP boards, their mptable lies
2062 * about the timer IRQ. We do the following to work around the situation:
2064 * - timer IRQ defaults to IO-APIC IRQ
2065 * - if this function detects that timer IRQs are defunct, then we fall
2066 * back to ISA timer IRQs
2068 static int __init timer_irq_works(void)
2070 unsigned long t1 = jiffies;
2071 unsigned long flags;
2073 if (no_timer_check)
2074 return 1;
2076 local_save_flags(flags);
2077 local_irq_enable();
2078 /* Let ten ticks pass... */
2079 mdelay((10 * 1000) / HZ);
2080 local_irq_restore(flags);
2083 * Expect a few ticks at least, to be sure some possible
2084 * glue logic does not lock up after one or two first
2085 * ticks in a non-ExtINT mode. Also the local APIC
2086 * might have cached one ExtINT interrupt. Finally, at
2087 * least one tick may be lost due to delays.
2090 /* jiffies wrap? */
2091 if (time_after(jiffies, t1 + 4))
2092 return 1;
2093 return 0;
2097 * In the SMP+IOAPIC case it might happen that there are an unspecified
2098 * number of pending IRQ events unhandled. These cases are very rare,
2099 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2100 * better to do it this way as thus we do not have to be aware of
2101 * 'pending' interrupts in the IRQ path, except at this point.
2104 * Edge triggered needs to resend any interrupt
2105 * that was delayed but this is now handled in the device
2106 * independent code.
2110 * Starting up a edge-triggered IO-APIC interrupt is
2111 * nasty - we need to make sure that we get the edge.
2112 * If it is already asserted for some reason, we need
2113 * return 1 to indicate that is was pending.
2115 * This is not complete - we should be able to fake
2116 * an edge even if it isn't on the 8259A...
2119 static unsigned int startup_ioapic_irq(struct irq_data *data)
2121 int was_pending = 0, irq = data->irq;
2122 unsigned long flags;
2124 raw_spin_lock_irqsave(&ioapic_lock, flags);
2125 if (irq < legacy_pic->nr_legacy_irqs) {
2126 legacy_pic->mask(irq);
2127 if (legacy_pic->irq_pending(irq))
2128 was_pending = 1;
2130 __unmask_ioapic(data->chip_data);
2131 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2133 return was_pending;
2136 static int ioapic_retrigger_irq(struct irq_data *data)
2138 struct irq_cfg *cfg = data->chip_data;
2139 unsigned long flags;
2141 raw_spin_lock_irqsave(&vector_lock, flags);
2142 apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
2143 raw_spin_unlock_irqrestore(&vector_lock, flags);
2145 return 1;
2149 * Level and edge triggered IO-APIC interrupts need different handling,
2150 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2151 * handled with the level-triggered descriptor, but that one has slightly
2152 * more overhead. Level-triggered interrupts cannot be handled with the
2153 * edge-triggered handler, without risking IRQ storms and other ugly
2154 * races.
2157 #ifdef CONFIG_SMP
2158 void send_cleanup_vector(struct irq_cfg *cfg)
2160 cpumask_var_t cleanup_mask;
2162 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
2163 unsigned int i;
2164 for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
2165 apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
2166 } else {
2167 cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
2168 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
2169 free_cpumask_var(cleanup_mask);
2171 cfg->move_in_progress = 0;
2174 static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
2176 int apic, pin;
2177 struct irq_pin_list *entry;
2178 u8 vector = cfg->vector;
2180 for_each_irq_pin(entry, cfg->irq_2_pin) {
2181 unsigned int reg;
2183 apic = entry->apic;
2184 pin = entry->pin;
2186 * With interrupt-remapping, destination information comes
2187 * from interrupt-remapping table entry.
2189 if (!irq_remapped(cfg))
2190 io_apic_write(apic, 0x11 + pin*2, dest);
2191 reg = io_apic_read(apic, 0x10 + pin*2);
2192 reg &= ~IO_APIC_REDIR_VECTOR_MASK;
2193 reg |= vector;
2194 io_apic_modify(apic, 0x10 + pin*2, reg);
2199 * Either sets data->affinity to a valid value, and returns
2200 * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
2201 * leaves data->affinity untouched.
2203 int __ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2204 unsigned int *dest_id)
2206 struct irq_cfg *cfg = data->chip_data;
2208 if (!cpumask_intersects(mask, cpu_online_mask))
2209 return -1;
2211 if (assign_irq_vector(data->irq, data->chip_data, mask))
2212 return -1;
2214 cpumask_copy(data->affinity, mask);
2216 *dest_id = apic->cpu_mask_to_apicid_and(mask, cfg->domain);
2217 return 0;
2220 static int
2221 ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2222 bool force)
2224 unsigned int dest, irq = data->irq;
2225 unsigned long flags;
2226 int ret;
2228 raw_spin_lock_irqsave(&ioapic_lock, flags);
2229 ret = __ioapic_set_affinity(data, mask, &dest);
2230 if (!ret) {
2231 /* Only the high 8 bits are valid. */
2232 dest = SET_APIC_LOGICAL_ID(dest);
2233 __target_IO_APIC_irq(irq, dest, data->chip_data);
2235 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2236 return ret;
2239 #ifdef CONFIG_INTR_REMAP
2242 * Migrate the IO-APIC irq in the presence of intr-remapping.
2244 * For both level and edge triggered, irq migration is a simple atomic
2245 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
2247 * For level triggered, we eliminate the io-apic RTE modification (with the
2248 * updated vector information), by using a virtual vector (io-apic pin number).
2249 * Real vector that is used for interrupting cpu will be coming from
2250 * the interrupt-remapping table entry.
2252 static int
2253 ir_ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2254 bool force)
2256 struct irq_cfg *cfg = data->chip_data;
2257 unsigned int dest, irq = data->irq;
2258 struct irte irte;
2260 if (!cpumask_intersects(mask, cpu_online_mask))
2261 return -EINVAL;
2263 if (get_irte(irq, &irte))
2264 return -EBUSY;
2266 if (assign_irq_vector(irq, cfg, mask))
2267 return -EBUSY;
2269 dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
2271 irte.vector = cfg->vector;
2272 irte.dest_id = IRTE_DEST(dest);
2275 * Modified the IRTE and flushes the Interrupt entry cache.
2277 modify_irte(irq, &irte);
2279 if (cfg->move_in_progress)
2280 send_cleanup_vector(cfg);
2282 cpumask_copy(data->affinity, mask);
2283 return 0;
2286 #else
2287 static inline int
2288 ir_ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
2289 bool force)
2291 return 0;
2293 #endif
2295 asmlinkage void smp_irq_move_cleanup_interrupt(void)
2297 unsigned vector, me;
2299 ack_APIC_irq();
2300 exit_idle();
2301 irq_enter();
2303 me = smp_processor_id();
2304 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
2305 unsigned int irq;
2306 unsigned int irr;
2307 struct irq_desc *desc;
2308 struct irq_cfg *cfg;
2309 irq = __get_cpu_var(vector_irq)[vector];
2311 if (irq == -1)
2312 continue;
2314 desc = irq_to_desc(irq);
2315 if (!desc)
2316 continue;
2318 cfg = irq_cfg(irq);
2319 raw_spin_lock(&desc->lock);
2322 * Check if the irq migration is in progress. If so, we
2323 * haven't received the cleanup request yet for this irq.
2325 if (cfg->move_in_progress)
2326 goto unlock;
2328 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
2329 goto unlock;
2331 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
2333 * Check if the vector that needs to be cleanedup is
2334 * registered at the cpu's IRR. If so, then this is not
2335 * the best time to clean it up. Lets clean it up in the
2336 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2337 * to myself.
2339 if (irr & (1 << (vector % 32))) {
2340 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
2341 goto unlock;
2343 __get_cpu_var(vector_irq)[vector] = -1;
2344 unlock:
2345 raw_spin_unlock(&desc->lock);
2348 irq_exit();
2351 static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
2353 unsigned me;
2355 if (likely(!cfg->move_in_progress))
2356 return;
2358 me = smp_processor_id();
2360 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
2361 send_cleanup_vector(cfg);
2364 static void irq_complete_move(struct irq_cfg *cfg)
2366 __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
2369 void irq_force_complete_move(int irq)
2371 struct irq_cfg *cfg = get_irq_chip_data(irq);
2373 if (!cfg)
2374 return;
2376 __irq_complete_move(cfg, cfg->vector);
2378 #else
2379 static inline void irq_complete_move(struct irq_cfg *cfg) { }
2380 #endif
2382 static void ack_apic_edge(struct irq_data *data)
2384 irq_complete_move(data->chip_data);
2385 move_native_irq(data->irq);
2386 ack_APIC_irq();
2389 atomic_t irq_mis_count;
2392 * IO-APIC versions below 0x20 don't support EOI register.
2393 * For the record, here is the information about various versions:
2394 * 0Xh 82489DX
2395 * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
2396 * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
2397 * 30h-FFh Reserved
2399 * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
2400 * version as 0x2. This is an error with documentation and these ICH chips
2401 * use io-apic's of version 0x20.
2403 * For IO-APIC's with EOI register, we use that to do an explicit EOI.
2404 * Otherwise, we simulate the EOI message manually by changing the trigger
2405 * mode to edge and then back to level, with RTE being masked during this.
2407 static void eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
2409 struct irq_pin_list *entry;
2410 unsigned long flags;
2412 raw_spin_lock_irqsave(&ioapic_lock, flags);
2413 for_each_irq_pin(entry, cfg->irq_2_pin) {
2414 if (mp_ioapics[entry->apic].apicver >= 0x20) {
2416 * Intr-remapping uses pin number as the virtual vector
2417 * in the RTE. Actual vector is programmed in
2418 * intr-remapping table entry. Hence for the io-apic
2419 * EOI we use the pin number.
2421 if (irq_remapped(cfg))
2422 io_apic_eoi(entry->apic, entry->pin);
2423 else
2424 io_apic_eoi(entry->apic, cfg->vector);
2425 } else {
2426 __mask_and_edge_IO_APIC_irq(entry);
2427 __unmask_and_level_IO_APIC_irq(entry);
2430 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
2433 static void ack_apic_level(struct irq_data *data)
2435 struct irq_cfg *cfg = data->chip_data;
2436 int i, do_unmask_irq = 0, irq = data->irq;
2437 unsigned long v;
2439 irq_complete_move(cfg);
2440 #ifdef CONFIG_GENERIC_PENDING_IRQ
2441 /* If we are moving the irq we need to mask it */
2442 if (unlikely(irq_to_desc(irq)->status & IRQ_MOVE_PENDING)) {
2443 do_unmask_irq = 1;
2444 mask_ioapic(cfg);
2446 #endif
2449 * It appears there is an erratum which affects at least version 0x11
2450 * of I/O APIC (that's the 82093AA and cores integrated into various
2451 * chipsets). Under certain conditions a level-triggered interrupt is
2452 * erroneously delivered as edge-triggered one but the respective IRR
2453 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2454 * message but it will never arrive and further interrupts are blocked
2455 * from the source. The exact reason is so far unknown, but the
2456 * phenomenon was observed when two consecutive interrupt requests
2457 * from a given source get delivered to the same CPU and the source is
2458 * temporarily disabled in between.
2460 * A workaround is to simulate an EOI message manually. We achieve it
2461 * by setting the trigger mode to edge and then to level when the edge
2462 * trigger mode gets detected in the TMR of a local APIC for a
2463 * level-triggered interrupt. We mask the source for the time of the
2464 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2465 * The idea is from Manfred Spraul. --macro
2467 * Also in the case when cpu goes offline, fixup_irqs() will forward
2468 * any unhandled interrupt on the offlined cpu to the new cpu
2469 * destination that is handling the corresponding interrupt. This
2470 * interrupt forwarding is done via IPI's. Hence, in this case also
2471 * level-triggered io-apic interrupt will be seen as an edge
2472 * interrupt in the IRR. And we can't rely on the cpu's EOI
2473 * to be broadcasted to the IO-APIC's which will clear the remoteIRR
2474 * corresponding to the level-triggered interrupt. Hence on IO-APIC's
2475 * supporting EOI register, we do an explicit EOI to clear the
2476 * remote IRR and on IO-APIC's which don't have an EOI register,
2477 * we use the above logic (mask+edge followed by unmask+level) from
2478 * Manfred Spraul to clear the remote IRR.
2480 i = cfg->vector;
2481 v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
2484 * We must acknowledge the irq before we move it or the acknowledge will
2485 * not propagate properly.
2487 ack_APIC_irq();
2490 * Tail end of clearing remote IRR bit (either by delivering the EOI
2491 * message via io-apic EOI register write or simulating it using
2492 * mask+edge followed by unnask+level logic) manually when the
2493 * level triggered interrupt is seen as the edge triggered interrupt
2494 * at the cpu.
2496 if (!(v & (1 << (i & 0x1f)))) {
2497 atomic_inc(&irq_mis_count);
2499 eoi_ioapic_irq(irq, cfg);
2502 /* Now we can move and renable the irq */
2503 if (unlikely(do_unmask_irq)) {
2504 /* Only migrate the irq if the ack has been received.
2506 * On rare occasions the broadcast level triggered ack gets
2507 * delayed going to ioapics, and if we reprogram the
2508 * vector while Remote IRR is still set the irq will never
2509 * fire again.
2511 * To prevent this scenario we read the Remote IRR bit
2512 * of the ioapic. This has two effects.
2513 * - On any sane system the read of the ioapic will
2514 * flush writes (and acks) going to the ioapic from
2515 * this cpu.
2516 * - We get to see if the ACK has actually been delivered.
2518 * Based on failed experiments of reprogramming the
2519 * ioapic entry from outside of irq context starting
2520 * with masking the ioapic entry and then polling until
2521 * Remote IRR was clear before reprogramming the
2522 * ioapic I don't trust the Remote IRR bit to be
2523 * completey accurate.
2525 * However there appears to be no other way to plug
2526 * this race, so if the Remote IRR bit is not
2527 * accurate and is causing problems then it is a hardware bug
2528 * and you can go talk to the chipset vendor about it.
2530 if (!io_apic_level_ack_pending(cfg))
2531 move_masked_irq(irq);
2532 unmask_ioapic(cfg);
2536 #ifdef CONFIG_INTR_REMAP
2537 static void ir_ack_apic_edge(struct irq_data *data)
2539 ack_APIC_irq();
2542 static void ir_ack_apic_level(struct irq_data *data)
2544 ack_APIC_irq();
2545 eoi_ioapic_irq(data->irq, data->chip_data);
2547 #endif /* CONFIG_INTR_REMAP */
2549 static struct irq_chip ioapic_chip __read_mostly = {
2550 .name = "IO-APIC",
2551 .irq_startup = startup_ioapic_irq,
2552 .irq_mask = mask_ioapic_irq,
2553 .irq_unmask = unmask_ioapic_irq,
2554 .irq_ack = ack_apic_edge,
2555 .irq_eoi = ack_apic_level,
2556 #ifdef CONFIG_SMP
2557 .irq_set_affinity = ioapic_set_affinity,
2558 #endif
2559 .irq_retrigger = ioapic_retrigger_irq,
2562 static struct irq_chip ir_ioapic_chip __read_mostly = {
2563 .name = "IR-IO-APIC",
2564 .irq_startup = startup_ioapic_irq,
2565 .irq_mask = mask_ioapic_irq,
2566 .irq_unmask = unmask_ioapic_irq,
2567 #ifdef CONFIG_INTR_REMAP
2568 .irq_ack = ir_ack_apic_edge,
2569 .irq_eoi = ir_ack_apic_level,
2570 #ifdef CONFIG_SMP
2571 .irq_set_affinity = ir_ioapic_set_affinity,
2572 #endif
2573 #endif
2574 .irq_retrigger = ioapic_retrigger_irq,
2577 static inline void init_IO_APIC_traps(void)
2579 struct irq_cfg *cfg;
2580 unsigned int irq;
2583 * NOTE! The local APIC isn't very good at handling
2584 * multiple interrupts at the same interrupt level.
2585 * As the interrupt level is determined by taking the
2586 * vector number and shifting that right by 4, we
2587 * want to spread these out a bit so that they don't
2588 * all fall in the same interrupt level.
2590 * Also, we've got to be careful not to trash gate
2591 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2593 for_each_active_irq(irq) {
2594 cfg = get_irq_chip_data(irq);
2595 if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
2597 * Hmm.. We don't have an entry for this,
2598 * so default to an old-fashioned 8259
2599 * interrupt if we can..
2601 if (irq < legacy_pic->nr_legacy_irqs)
2602 legacy_pic->make_irq(irq);
2603 else
2604 /* Strange. Oh, well.. */
2605 set_irq_chip(irq, &no_irq_chip);
2611 * The local APIC irq-chip implementation:
2614 static void mask_lapic_irq(struct irq_data *data)
2616 unsigned long v;
2618 v = apic_read(APIC_LVT0);
2619 apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
2622 static void unmask_lapic_irq(struct irq_data *data)
2624 unsigned long v;
2626 v = apic_read(APIC_LVT0);
2627 apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
2630 static void ack_lapic_irq(struct irq_data *data)
2632 ack_APIC_irq();
2635 static struct irq_chip lapic_chip __read_mostly = {
2636 .name = "local-APIC",
2637 .irq_mask = mask_lapic_irq,
2638 .irq_unmask = unmask_lapic_irq,
2639 .irq_ack = ack_lapic_irq,
2642 static void lapic_register_intr(int irq)
2644 irq_clear_status_flags(irq, IRQ_LEVEL);
2645 set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
2646 "edge");
2649 static void __init setup_nmi(void)
2652 * Dirty trick to enable the NMI watchdog ...
2653 * We put the 8259A master into AEOI mode and
2654 * unmask on all local APICs LVT0 as NMI.
2656 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2657 * is from Maciej W. Rozycki - so we do not have to EOI from
2658 * the NMI handler or the timer interrupt.
2660 apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
2662 enable_NMI_through_LVT0();
2664 apic_printk(APIC_VERBOSE, " done.\n");
2668 * This looks a bit hackish but it's about the only one way of sending
2669 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2670 * not support the ExtINT mode, unfortunately. We need to send these
2671 * cycles as some i82489DX-based boards have glue logic that keeps the
2672 * 8259A interrupt line asserted until INTA. --macro
2674 static inline void __init unlock_ExtINT_logic(void)
2676 int apic, pin, i;
2677 struct IO_APIC_route_entry entry0, entry1;
2678 unsigned char save_control, save_freq_select;
2680 pin = find_isa_irq_pin(8, mp_INT);
2681 if (pin == -1) {
2682 WARN_ON_ONCE(1);
2683 return;
2685 apic = find_isa_irq_apic(8, mp_INT);
2686 if (apic == -1) {
2687 WARN_ON_ONCE(1);
2688 return;
2691 entry0 = ioapic_read_entry(apic, pin);
2692 clear_IO_APIC_pin(apic, pin);
2694 memset(&entry1, 0, sizeof(entry1));
2696 entry1.dest_mode = 0; /* physical delivery */
2697 entry1.mask = 0; /* unmask IRQ now */
2698 entry1.dest = hard_smp_processor_id();
2699 entry1.delivery_mode = dest_ExtINT;
2700 entry1.polarity = entry0.polarity;
2701 entry1.trigger = 0;
2702 entry1.vector = 0;
2704 ioapic_write_entry(apic, pin, entry1);
2706 save_control = CMOS_READ(RTC_CONTROL);
2707 save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
2708 CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
2709 RTC_FREQ_SELECT);
2710 CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
2712 i = 100;
2713 while (i-- > 0) {
2714 mdelay(10);
2715 if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
2716 i -= 10;
2719 CMOS_WRITE(save_control, RTC_CONTROL);
2720 CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
2721 clear_IO_APIC_pin(apic, pin);
2723 ioapic_write_entry(apic, pin, entry0);
2726 static int disable_timer_pin_1 __initdata;
2727 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2728 static int __init disable_timer_pin_setup(char *arg)
2730 disable_timer_pin_1 = 1;
2731 return 0;
2733 early_param("disable_timer_pin_1", disable_timer_pin_setup);
2735 int timer_through_8259 __initdata;
2738 * This code may look a bit paranoid, but it's supposed to cooperate with
2739 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2740 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2741 * fanatically on his truly buggy board.
2743 * FIXME: really need to revamp this for all platforms.
2745 static inline void __init check_timer(void)
2747 struct irq_cfg *cfg = get_irq_chip_data(0);
2748 int node = cpu_to_node(0);
2749 int apic1, pin1, apic2, pin2;
2750 unsigned long flags;
2751 int no_pin1 = 0;
2753 local_irq_save(flags);
2756 * get/set the timer IRQ vector:
2758 legacy_pic->mask(0);
2759 assign_irq_vector(0, cfg, apic->target_cpus());
2762 * As IRQ0 is to be enabled in the 8259A, the virtual
2763 * wire has to be disabled in the local APIC. Also
2764 * timer interrupts need to be acknowledged manually in
2765 * the 8259A for the i82489DX when using the NMI
2766 * watchdog as that APIC treats NMIs as level-triggered.
2767 * The AEOI mode will finish them in the 8259A
2768 * automatically.
2770 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
2771 legacy_pic->init(1);
2772 #ifdef CONFIG_X86_32
2774 unsigned int ver;
2776 ver = apic_read(APIC_LVR);
2777 ver = GET_APIC_VERSION(ver);
2778 timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
2780 #endif
2782 pin1 = find_isa_irq_pin(0, mp_INT);
2783 apic1 = find_isa_irq_apic(0, mp_INT);
2784 pin2 = ioapic_i8259.pin;
2785 apic2 = ioapic_i8259.apic;
2787 apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
2788 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2789 cfg->vector, apic1, pin1, apic2, pin2);
2792 * Some BIOS writers are clueless and report the ExtINTA
2793 * I/O APIC input from the cascaded 8259A as the timer
2794 * interrupt input. So just in case, if only one pin
2795 * was found above, try it both directly and through the
2796 * 8259A.
2798 if (pin1 == -1) {
2799 if (intr_remapping_enabled)
2800 panic("BIOS bug: timer not connected to IO-APIC");
2801 pin1 = pin2;
2802 apic1 = apic2;
2803 no_pin1 = 1;
2804 } else if (pin2 == -1) {
2805 pin2 = pin1;
2806 apic2 = apic1;
2809 if (pin1 != -1) {
2811 * Ok, does IRQ0 through the IOAPIC work?
2813 if (no_pin1) {
2814 add_pin_to_irq_node(cfg, node, apic1, pin1);
2815 setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
2816 } else {
2817 /* for edge trigger, setup_ioapic_irq already
2818 * leave it unmasked.
2819 * so only need to unmask if it is level-trigger
2820 * do we really have level trigger timer?
2822 int idx;
2823 idx = find_irq_entry(apic1, pin1, mp_INT);
2824 if (idx != -1 && irq_trigger(idx))
2825 unmask_ioapic(cfg);
2827 if (timer_irq_works()) {
2828 if (nmi_watchdog == NMI_IO_APIC) {
2829 setup_nmi();
2830 legacy_pic->unmask(0);
2832 if (disable_timer_pin_1 > 0)
2833 clear_IO_APIC_pin(0, pin1);
2834 goto out;
2836 if (intr_remapping_enabled)
2837 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2838 local_irq_disable();
2839 clear_IO_APIC_pin(apic1, pin1);
2840 if (!no_pin1)
2841 apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
2842 "8254 timer not connected to IO-APIC\n");
2844 apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
2845 "(IRQ0) through the 8259A ...\n");
2846 apic_printk(APIC_QUIET, KERN_INFO
2847 "..... (found apic %d pin %d) ...\n", apic2, pin2);
2849 * legacy devices should be connected to IO APIC #0
2851 replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
2852 setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
2853 legacy_pic->unmask(0);
2854 if (timer_irq_works()) {
2855 apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
2856 timer_through_8259 = 1;
2857 if (nmi_watchdog == NMI_IO_APIC) {
2858 legacy_pic->mask(0);
2859 setup_nmi();
2860 legacy_pic->unmask(0);
2862 goto out;
2865 * Cleanup, just in case ...
2867 local_irq_disable();
2868 legacy_pic->mask(0);
2869 clear_IO_APIC_pin(apic2, pin2);
2870 apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
2873 if (nmi_watchdog == NMI_IO_APIC) {
2874 apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
2875 "through the IO-APIC - disabling NMI Watchdog!\n");
2876 nmi_watchdog = NMI_NONE;
2878 #ifdef CONFIG_X86_32
2879 timer_ack = 0;
2880 #endif
2882 apic_printk(APIC_QUIET, KERN_INFO
2883 "...trying to set up timer as Virtual Wire IRQ...\n");
2885 lapic_register_intr(0);
2886 apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
2887 legacy_pic->unmask(0);
2889 if (timer_irq_works()) {
2890 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2891 goto out;
2893 local_irq_disable();
2894 legacy_pic->mask(0);
2895 apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
2896 apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
2898 apic_printk(APIC_QUIET, KERN_INFO
2899 "...trying to set up timer as ExtINT IRQ...\n");
2901 legacy_pic->init(0);
2902 legacy_pic->make_irq(0);
2903 apic_write(APIC_LVT0, APIC_DM_EXTINT);
2905 unlock_ExtINT_logic();
2907 if (timer_irq_works()) {
2908 apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
2909 goto out;
2911 local_irq_disable();
2912 apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
2913 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2914 "report. Then try booting with the 'noapic' option.\n");
2915 out:
2916 local_irq_restore(flags);
2920 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2921 * to devices. However there may be an I/O APIC pin available for
2922 * this interrupt regardless. The pin may be left unconnected, but
2923 * typically it will be reused as an ExtINT cascade interrupt for
2924 * the master 8259A. In the MPS case such a pin will normally be
2925 * reported as an ExtINT interrupt in the MP table. With ACPI
2926 * there is no provision for ExtINT interrupts, and in the absence
2927 * of an override it would be treated as an ordinary ISA I/O APIC
2928 * interrupt, that is edge-triggered and unmasked by default. We
2929 * used to do this, but it caused problems on some systems because
2930 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2931 * the same ExtINT cascade interrupt to drive the local APIC of the
2932 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2933 * the I/O APIC in all cases now. No actual device should request
2934 * it anyway. --macro
2936 #define PIC_IRQS (1UL << PIC_CASCADE_IR)
2938 void __init setup_IO_APIC(void)
2942 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2944 io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
2946 apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
2948 * Set up IO-APIC IRQ routing.
2950 x86_init.mpparse.setup_ioapic_ids();
2952 sync_Arb_IDs();
2953 setup_IO_APIC_irqs();
2954 init_IO_APIC_traps();
2955 if (legacy_pic->nr_legacy_irqs)
2956 check_timer();
2960 * Called after all the initialization is done. If we didnt find any
2961 * APIC bugs then we can allow the modify fast path
2964 static int __init io_apic_bug_finalize(void)
2966 if (sis_apic_bug == -1)
2967 sis_apic_bug = 0;
2968 return 0;
2971 late_initcall(io_apic_bug_finalize);
2973 struct sysfs_ioapic_data {
2974 struct sys_device dev;
2975 struct IO_APIC_route_entry entry[0];
2977 static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
2979 static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
2981 struct IO_APIC_route_entry *entry;
2982 struct sysfs_ioapic_data *data;
2983 int i;
2985 data = container_of(dev, struct sysfs_ioapic_data, dev);
2986 entry = data->entry;
2987 for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
2988 *entry = ioapic_read_entry(dev->id, i);
2990 return 0;
2993 static int ioapic_resume(struct sys_device *dev)
2995 struct IO_APIC_route_entry *entry;
2996 struct sysfs_ioapic_data *data;
2997 unsigned long flags;
2998 union IO_APIC_reg_00 reg_00;
2999 int i;
3001 data = container_of(dev, struct sysfs_ioapic_data, dev);
3002 entry = data->entry;
3004 raw_spin_lock_irqsave(&ioapic_lock, flags);
3005 reg_00.raw = io_apic_read(dev->id, 0);
3006 if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
3007 reg_00.bits.ID = mp_ioapics[dev->id].apicid;
3008 io_apic_write(dev->id, 0, reg_00.raw);
3010 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3011 for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
3012 ioapic_write_entry(dev->id, i, entry[i]);
3014 return 0;
3017 static struct sysdev_class ioapic_sysdev_class = {
3018 .name = "ioapic",
3019 .suspend = ioapic_suspend,
3020 .resume = ioapic_resume,
3023 static int __init ioapic_init_sysfs(void)
3025 struct sys_device * dev;
3026 int i, size, error;
3028 error = sysdev_class_register(&ioapic_sysdev_class);
3029 if (error)
3030 return error;
3032 for (i = 0; i < nr_ioapics; i++ ) {
3033 size = sizeof(struct sys_device) + nr_ioapic_registers[i]
3034 * sizeof(struct IO_APIC_route_entry);
3035 mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
3036 if (!mp_ioapic_data[i]) {
3037 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3038 continue;
3040 dev = &mp_ioapic_data[i]->dev;
3041 dev->id = i;
3042 dev->cls = &ioapic_sysdev_class;
3043 error = sysdev_register(dev);
3044 if (error) {
3045 kfree(mp_ioapic_data[i]);
3046 mp_ioapic_data[i] = NULL;
3047 printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
3048 continue;
3052 return 0;
3055 device_initcall(ioapic_init_sysfs);
3058 * Dynamic irq allocate and deallocation
3060 unsigned int create_irq_nr(unsigned int from, int node)
3062 struct irq_cfg *cfg;
3063 unsigned long flags;
3064 unsigned int ret = 0;
3065 int irq;
3067 if (from < nr_irqs_gsi)
3068 from = nr_irqs_gsi;
3070 irq = alloc_irq_from(from, node);
3071 if (irq < 0)
3072 return 0;
3073 cfg = alloc_irq_cfg(irq, node);
3074 if (!cfg) {
3075 free_irq_at(irq, NULL);
3076 return 0;
3079 raw_spin_lock_irqsave(&vector_lock, flags);
3080 if (!__assign_irq_vector(irq, cfg, apic->target_cpus()))
3081 ret = irq;
3082 raw_spin_unlock_irqrestore(&vector_lock, flags);
3084 if (ret) {
3085 set_irq_chip_data(irq, cfg);
3086 irq_clear_status_flags(irq, IRQ_NOREQUEST);
3087 } else {
3088 free_irq_at(irq, cfg);
3090 return ret;
3093 int create_irq(void)
3095 int node = cpu_to_node(0);
3096 unsigned int irq_want;
3097 int irq;
3099 irq_want = nr_irqs_gsi;
3100 irq = create_irq_nr(irq_want, node);
3102 if (irq == 0)
3103 irq = -1;
3105 return irq;
3108 void destroy_irq(unsigned int irq)
3110 struct irq_cfg *cfg = get_irq_chip_data(irq);
3111 unsigned long flags;
3113 irq_set_status_flags(irq, IRQ_NOREQUEST|IRQ_NOPROBE);
3115 if (irq_remapped(cfg))
3116 free_irte(irq);
3117 raw_spin_lock_irqsave(&vector_lock, flags);
3118 __clear_irq_vector(irq, cfg);
3119 raw_spin_unlock_irqrestore(&vector_lock, flags);
3120 free_irq_at(irq, cfg);
3124 * MSI message composition
3126 #ifdef CONFIG_PCI_MSI
3127 static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
3128 struct msi_msg *msg, u8 hpet_id)
3130 struct irq_cfg *cfg;
3131 int err;
3132 unsigned dest;
3134 if (disable_apic)
3135 return -ENXIO;
3137 cfg = irq_cfg(irq);
3138 err = assign_irq_vector(irq, cfg, apic->target_cpus());
3139 if (err)
3140 return err;
3142 dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
3144 if (irq_remapped(get_irq_chip_data(irq))) {
3145 struct irte irte;
3146 int ir_index;
3147 u16 sub_handle;
3149 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
3150 BUG_ON(ir_index == -1);
3152 prepare_irte(&irte, cfg->vector, dest);
3154 /* Set source-id of interrupt request */
3155 if (pdev)
3156 set_msi_sid(&irte, pdev);
3157 else
3158 set_hpet_sid(&irte, hpet_id);
3160 modify_irte(irq, &irte);
3162 msg->address_hi = MSI_ADDR_BASE_HI;
3163 msg->data = sub_handle;
3164 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
3165 MSI_ADDR_IR_SHV |
3166 MSI_ADDR_IR_INDEX1(ir_index) |
3167 MSI_ADDR_IR_INDEX2(ir_index);
3168 } else {
3169 if (x2apic_enabled())
3170 msg->address_hi = MSI_ADDR_BASE_HI |
3171 MSI_ADDR_EXT_DEST_ID(dest);
3172 else
3173 msg->address_hi = MSI_ADDR_BASE_HI;
3175 msg->address_lo =
3176 MSI_ADDR_BASE_LO |
3177 ((apic->irq_dest_mode == 0) ?
3178 MSI_ADDR_DEST_MODE_PHYSICAL:
3179 MSI_ADDR_DEST_MODE_LOGICAL) |
3180 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3181 MSI_ADDR_REDIRECTION_CPU:
3182 MSI_ADDR_REDIRECTION_LOWPRI) |
3183 MSI_ADDR_DEST_ID(dest);
3185 msg->data =
3186 MSI_DATA_TRIGGER_EDGE |
3187 MSI_DATA_LEVEL_ASSERT |
3188 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3189 MSI_DATA_DELIVERY_FIXED:
3190 MSI_DATA_DELIVERY_LOWPRI) |
3191 MSI_DATA_VECTOR(cfg->vector);
3193 return err;
3196 #ifdef CONFIG_SMP
3197 static int
3198 msi_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
3200 struct irq_cfg *cfg = data->chip_data;
3201 struct msi_msg msg;
3202 unsigned int dest;
3204 if (__ioapic_set_affinity(data, mask, &dest))
3205 return -1;
3207 __get_cached_msi_msg(data->msi_desc, &msg);
3209 msg.data &= ~MSI_DATA_VECTOR_MASK;
3210 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3211 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3212 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3214 __write_msi_msg(data->msi_desc, &msg);
3216 return 0;
3218 #ifdef CONFIG_INTR_REMAP
3220 * Migrate the MSI irq to another cpumask. This migration is
3221 * done in the process context using interrupt-remapping hardware.
3223 static int
3224 ir_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
3225 bool force)
3227 struct irq_cfg *cfg = data->chip_data;
3228 unsigned int dest, irq = data->irq;
3229 struct irte irte;
3231 if (get_irte(irq, &irte))
3232 return -1;
3234 if (__ioapic_set_affinity(data, mask, &dest))
3235 return -1;
3237 irte.vector = cfg->vector;
3238 irte.dest_id = IRTE_DEST(dest);
3241 * atomically update the IRTE with the new destination and vector.
3243 modify_irte(irq, &irte);
3246 * After this point, all the interrupts will start arriving
3247 * at the new destination. So, time to cleanup the previous
3248 * vector allocation.
3250 if (cfg->move_in_progress)
3251 send_cleanup_vector(cfg);
3253 return 0;
3256 #endif
3257 #endif /* CONFIG_SMP */
3260 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3261 * which implement the MSI or MSI-X Capability Structure.
3263 static struct irq_chip msi_chip = {
3264 .name = "PCI-MSI",
3265 .irq_unmask = unmask_msi_irq,
3266 .irq_mask = mask_msi_irq,
3267 .irq_ack = ack_apic_edge,
3268 #ifdef CONFIG_SMP
3269 .irq_set_affinity = msi_set_affinity,
3270 #endif
3271 .irq_retrigger = ioapic_retrigger_irq,
3274 static struct irq_chip msi_ir_chip = {
3275 .name = "IR-PCI-MSI",
3276 .irq_unmask = unmask_msi_irq,
3277 .irq_mask = mask_msi_irq,
3278 #ifdef CONFIG_INTR_REMAP
3279 .irq_ack = ir_ack_apic_edge,
3280 #ifdef CONFIG_SMP
3281 .irq_set_affinity = ir_msi_set_affinity,
3282 #endif
3283 #endif
3284 .irq_retrigger = ioapic_retrigger_irq,
3288 * Map the PCI dev to the corresponding remapping hardware unit
3289 * and allocate 'nvec' consecutive interrupt-remapping table entries
3290 * in it.
3292 static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
3294 struct intel_iommu *iommu;
3295 int index;
3297 iommu = map_dev_to_ir(dev);
3298 if (!iommu) {
3299 printk(KERN_ERR
3300 "Unable to map PCI %s to iommu\n", pci_name(dev));
3301 return -ENOENT;
3304 index = alloc_irte(iommu, irq, nvec);
3305 if (index < 0) {
3306 printk(KERN_ERR
3307 "Unable to allocate %d IRTE for PCI %s\n", nvec,
3308 pci_name(dev));
3309 return -ENOSPC;
3311 return index;
3314 static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
3316 struct msi_msg msg;
3317 int ret;
3319 ret = msi_compose_msg(dev, irq, &msg, -1);
3320 if (ret < 0)
3321 return ret;
3323 set_irq_msi(irq, msidesc);
3324 write_msi_msg(irq, &msg);
3326 if (irq_remapped(get_irq_chip_data(irq))) {
3327 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
3328 set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
3329 } else
3330 set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
3332 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
3334 return 0;
3337 int native_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
3339 int node, ret, sub_handle, index = 0;
3340 unsigned int irq, irq_want;
3341 struct msi_desc *msidesc;
3342 struct intel_iommu *iommu = NULL;
3344 /* x86 doesn't support multiple MSI yet */
3345 if (type == PCI_CAP_ID_MSI && nvec > 1)
3346 return 1;
3348 node = dev_to_node(&dev->dev);
3349 irq_want = nr_irqs_gsi;
3350 sub_handle = 0;
3351 list_for_each_entry(msidesc, &dev->msi_list, list) {
3352 irq = create_irq_nr(irq_want, node);
3353 if (irq == 0)
3354 return -1;
3355 irq_want = irq + 1;
3356 if (!intr_remapping_enabled)
3357 goto no_ir;
3359 if (!sub_handle) {
3361 * allocate the consecutive block of IRTE's
3362 * for 'nvec'
3364 index = msi_alloc_irte(dev, irq, nvec);
3365 if (index < 0) {
3366 ret = index;
3367 goto error;
3369 } else {
3370 iommu = map_dev_to_ir(dev);
3371 if (!iommu) {
3372 ret = -ENOENT;
3373 goto error;
3376 * setup the mapping between the irq and the IRTE
3377 * base index, the sub_handle pointing to the
3378 * appropriate interrupt remap table entry.
3380 set_irte_irq(irq, iommu, index, sub_handle);
3382 no_ir:
3383 ret = setup_msi_irq(dev, msidesc, irq);
3384 if (ret < 0)
3385 goto error;
3386 sub_handle++;
3388 return 0;
3390 error:
3391 destroy_irq(irq);
3392 return ret;
3395 void native_teardown_msi_irq(unsigned int irq)
3397 destroy_irq(irq);
3400 #if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
3401 #ifdef CONFIG_SMP
3402 static int
3403 dmar_msi_set_affinity(struct irq_data *data, const struct cpumask *mask,
3404 bool force)
3406 struct irq_cfg *cfg = data->chip_data;
3407 unsigned int dest, irq = data->irq;
3408 struct msi_msg msg;
3410 if (__ioapic_set_affinity(data, mask, &dest))
3411 return -1;
3413 dmar_msi_read(irq, &msg);
3415 msg.data &= ~MSI_DATA_VECTOR_MASK;
3416 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3417 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3418 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3419 msg.address_hi = MSI_ADDR_BASE_HI | MSI_ADDR_EXT_DEST_ID(dest);
3421 dmar_msi_write(irq, &msg);
3423 return 0;
3426 #endif /* CONFIG_SMP */
3428 static struct irq_chip dmar_msi_type = {
3429 .name = "DMAR_MSI",
3430 .irq_unmask = dmar_msi_unmask,
3431 .irq_mask = dmar_msi_mask,
3432 .irq_ack = ack_apic_edge,
3433 #ifdef CONFIG_SMP
3434 .irq_set_affinity = dmar_msi_set_affinity,
3435 #endif
3436 .irq_retrigger = ioapic_retrigger_irq,
3439 int arch_setup_dmar_msi(unsigned int irq)
3441 int ret;
3442 struct msi_msg msg;
3444 ret = msi_compose_msg(NULL, irq, &msg, -1);
3445 if (ret < 0)
3446 return ret;
3447 dmar_msi_write(irq, &msg);
3448 set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
3449 "edge");
3450 return 0;
3452 #endif
3454 #ifdef CONFIG_HPET_TIMER
3456 #ifdef CONFIG_SMP
3457 static int hpet_msi_set_affinity(struct irq_data *data,
3458 const struct cpumask *mask, bool force)
3460 struct irq_cfg *cfg = data->chip_data;
3461 struct msi_msg msg;
3462 unsigned int dest;
3464 if (__ioapic_set_affinity(data, mask, &dest))
3465 return -1;
3467 hpet_msi_read(data->handler_data, &msg);
3469 msg.data &= ~MSI_DATA_VECTOR_MASK;
3470 msg.data |= MSI_DATA_VECTOR(cfg->vector);
3471 msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
3472 msg.address_lo |= MSI_ADDR_DEST_ID(dest);
3474 hpet_msi_write(data->handler_data, &msg);
3476 return 0;
3479 #endif /* CONFIG_SMP */
3481 static struct irq_chip ir_hpet_msi_type = {
3482 .name = "IR-HPET_MSI",
3483 .irq_unmask = hpet_msi_unmask,
3484 .irq_mask = hpet_msi_mask,
3485 #ifdef CONFIG_INTR_REMAP
3486 .irq_ack = ir_ack_apic_edge,
3487 #ifdef CONFIG_SMP
3488 .irq_set_affinity = ir_msi_set_affinity,
3489 #endif
3490 #endif
3491 .irq_retrigger = ioapic_retrigger_irq,
3494 static struct irq_chip hpet_msi_type = {
3495 .name = "HPET_MSI",
3496 .irq_unmask = hpet_msi_unmask,
3497 .irq_mask = hpet_msi_mask,
3498 .irq_ack = ack_apic_edge,
3499 #ifdef CONFIG_SMP
3500 .irq_set_affinity = hpet_msi_set_affinity,
3501 #endif
3502 .irq_retrigger = ioapic_retrigger_irq,
3505 int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
3507 struct msi_msg msg;
3508 int ret;
3510 if (intr_remapping_enabled) {
3511 struct intel_iommu *iommu = map_hpet_to_ir(id);
3512 int index;
3514 if (!iommu)
3515 return -1;
3517 index = alloc_irte(iommu, irq, 1);
3518 if (index < 0)
3519 return -1;
3522 ret = msi_compose_msg(NULL, irq, &msg, id);
3523 if (ret < 0)
3524 return ret;
3526 hpet_msi_write(get_irq_data(irq), &msg);
3527 irq_set_status_flags(irq, IRQ_MOVE_PCNTXT);
3528 if (irq_remapped(get_irq_chip_data(irq)))
3529 set_irq_chip_and_handler_name(irq, &ir_hpet_msi_type,
3530 handle_edge_irq, "edge");
3531 else
3532 set_irq_chip_and_handler_name(irq, &hpet_msi_type,
3533 handle_edge_irq, "edge");
3535 return 0;
3537 #endif
3539 #endif /* CONFIG_PCI_MSI */
3541 * Hypertransport interrupt support
3543 #ifdef CONFIG_HT_IRQ
3545 #ifdef CONFIG_SMP
3547 static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
3549 struct ht_irq_msg msg;
3550 fetch_ht_irq_msg(irq, &msg);
3552 msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
3553 msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
3555 msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
3556 msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
3558 write_ht_irq_msg(irq, &msg);
3561 static int
3562 ht_set_affinity(struct irq_data *data, const struct cpumask *mask, bool force)
3564 struct irq_cfg *cfg = data->chip_data;
3565 unsigned int dest;
3567 if (__ioapic_set_affinity(data, mask, &dest))
3568 return -1;
3570 target_ht_irq(data->irq, dest, cfg->vector);
3571 return 0;
3574 #endif
3576 static struct irq_chip ht_irq_chip = {
3577 .name = "PCI-HT",
3578 .irq_mask = mask_ht_irq,
3579 .irq_unmask = unmask_ht_irq,
3580 .irq_ack = ack_apic_edge,
3581 #ifdef CONFIG_SMP
3582 .irq_set_affinity = ht_set_affinity,
3583 #endif
3584 .irq_retrigger = ioapic_retrigger_irq,
3587 int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
3589 struct irq_cfg *cfg;
3590 int err;
3592 if (disable_apic)
3593 return -ENXIO;
3595 cfg = irq_cfg(irq);
3596 err = assign_irq_vector(irq, cfg, apic->target_cpus());
3597 if (!err) {
3598 struct ht_irq_msg msg;
3599 unsigned dest;
3601 dest = apic->cpu_mask_to_apicid_and(cfg->domain,
3602 apic->target_cpus());
3604 msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
3606 msg.address_lo =
3607 HT_IRQ_LOW_BASE |
3608 HT_IRQ_LOW_DEST_ID(dest) |
3609 HT_IRQ_LOW_VECTOR(cfg->vector) |
3610 ((apic->irq_dest_mode == 0) ?
3611 HT_IRQ_LOW_DM_PHYSICAL :
3612 HT_IRQ_LOW_DM_LOGICAL) |
3613 HT_IRQ_LOW_RQEOI_EDGE |
3614 ((apic->irq_delivery_mode != dest_LowestPrio) ?
3615 HT_IRQ_LOW_MT_FIXED :
3616 HT_IRQ_LOW_MT_ARBITRATED) |
3617 HT_IRQ_LOW_IRQ_MASKED;
3619 write_ht_irq_msg(irq, &msg);
3621 set_irq_chip_and_handler_name(irq, &ht_irq_chip,
3622 handle_edge_irq, "edge");
3624 dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
3626 return err;
3628 #endif /* CONFIG_HT_IRQ */
3630 int __init io_apic_get_redir_entries (int ioapic)
3632 union IO_APIC_reg_01 reg_01;
3633 unsigned long flags;
3635 raw_spin_lock_irqsave(&ioapic_lock, flags);
3636 reg_01.raw = io_apic_read(ioapic, 1);
3637 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3639 /* The register returns the maximum index redir index
3640 * supported, which is one less than the total number of redir
3641 * entries.
3643 return reg_01.bits.entries + 1;
3646 static void __init probe_nr_irqs_gsi(void)
3648 int nr;
3650 nr = gsi_top + NR_IRQS_LEGACY;
3651 if (nr > nr_irqs_gsi)
3652 nr_irqs_gsi = nr;
3654 printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
3657 int get_nr_irqs_gsi(void)
3659 return nr_irqs_gsi;
3662 #ifdef CONFIG_SPARSE_IRQ
3663 int __init arch_probe_nr_irqs(void)
3665 int nr;
3667 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
3668 nr_irqs = NR_VECTORS * nr_cpu_ids;
3670 nr = nr_irqs_gsi + 8 * nr_cpu_ids;
3671 #if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3673 * for MSI and HT dyn irq
3675 nr += nr_irqs_gsi * 16;
3676 #endif
3677 if (nr < nr_irqs)
3678 nr_irqs = nr;
3680 return NR_IRQS_LEGACY;
3682 #endif
3684 static int __io_apic_set_pci_routing(struct device *dev, int irq,
3685 struct io_apic_irq_attr *irq_attr)
3687 struct irq_cfg *cfg;
3688 int node;
3689 int ioapic, pin;
3690 int trigger, polarity;
3692 ioapic = irq_attr->ioapic;
3693 if (!IO_APIC_IRQ(irq)) {
3694 apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
3695 ioapic);
3696 return -EINVAL;
3699 if (dev)
3700 node = dev_to_node(dev);
3701 else
3702 node = cpu_to_node(0);
3704 cfg = alloc_irq_and_cfg_at(irq, node);
3705 if (!cfg)
3706 return 0;
3708 pin = irq_attr->ioapic_pin;
3709 trigger = irq_attr->trigger;
3710 polarity = irq_attr->polarity;
3713 * IRQs < 16 are already in the irq_2_pin[] map
3715 if (irq >= legacy_pic->nr_legacy_irqs) {
3716 if (__add_pin_to_irq_node(cfg, node, ioapic, pin)) {
3717 printk(KERN_INFO "can not add pin %d for irq %d\n",
3718 pin, irq);
3719 return 0;
3723 setup_ioapic_irq(ioapic, pin, irq, cfg, trigger, polarity);
3725 return 0;
3728 int io_apic_set_pci_routing(struct device *dev, int irq,
3729 struct io_apic_irq_attr *irq_attr)
3731 int ioapic, pin;
3733 * Avoid pin reprogramming. PRTs typically include entries
3734 * with redundant pin->gsi mappings (but unique PCI devices);
3735 * we only program the IOAPIC on the first.
3737 ioapic = irq_attr->ioapic;
3738 pin = irq_attr->ioapic_pin;
3739 if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
3740 pr_debug("Pin %d-%d already programmed\n",
3741 mp_ioapics[ioapic].apicid, pin);
3742 return 0;
3744 set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
3746 return __io_apic_set_pci_routing(dev, irq, irq_attr);
3749 u8 __init io_apic_unique_id(u8 id)
3751 #ifdef CONFIG_X86_32
3752 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
3753 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
3754 return io_apic_get_unique_id(nr_ioapics, id);
3755 else
3756 return id;
3757 #else
3758 int i;
3759 DECLARE_BITMAP(used, 256);
3761 bitmap_zero(used, 256);
3762 for (i = 0; i < nr_ioapics; i++) {
3763 struct mpc_ioapic *ia = &mp_ioapics[i];
3764 __set_bit(ia->apicid, used);
3766 if (!test_bit(id, used))
3767 return id;
3768 return find_first_zero_bit(used, 256);
3769 #endif
3772 #ifdef CONFIG_X86_32
3773 int __init io_apic_get_unique_id(int ioapic, int apic_id)
3775 union IO_APIC_reg_00 reg_00;
3776 static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
3777 physid_mask_t tmp;
3778 unsigned long flags;
3779 int i = 0;
3782 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3783 * buses (one for LAPICs, one for IOAPICs), where predecessors only
3784 * supports up to 16 on one shared APIC bus.
3786 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3787 * advantage of new APIC bus architecture.
3790 if (physids_empty(apic_id_map))
3791 apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
3793 raw_spin_lock_irqsave(&ioapic_lock, flags);
3794 reg_00.raw = io_apic_read(ioapic, 0);
3795 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3797 if (apic_id >= get_physical_broadcast()) {
3798 printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
3799 "%d\n", ioapic, apic_id, reg_00.bits.ID);
3800 apic_id = reg_00.bits.ID;
3804 * Every APIC in a system must have a unique ID or we get lots of nice
3805 * 'stuck on smp_invalidate_needed IPI wait' messages.
3807 if (apic->check_apicid_used(&apic_id_map, apic_id)) {
3809 for (i = 0; i < get_physical_broadcast(); i++) {
3810 if (!apic->check_apicid_used(&apic_id_map, i))
3811 break;
3814 if (i == get_physical_broadcast())
3815 panic("Max apic_id exceeded!\n");
3817 printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
3818 "trying %d\n", ioapic, apic_id, i);
3820 apic_id = i;
3823 apic->apicid_to_cpu_present(apic_id, &tmp);
3824 physids_or(apic_id_map, apic_id_map, tmp);
3826 if (reg_00.bits.ID != apic_id) {
3827 reg_00.bits.ID = apic_id;
3829 raw_spin_lock_irqsave(&ioapic_lock, flags);
3830 io_apic_write(ioapic, 0, reg_00.raw);
3831 reg_00.raw = io_apic_read(ioapic, 0);
3832 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3834 /* Sanity check */
3835 if (reg_00.bits.ID != apic_id) {
3836 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
3837 return -1;
3841 apic_printk(APIC_VERBOSE, KERN_INFO
3842 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
3844 return apic_id;
3846 #endif
3848 int __init io_apic_get_version(int ioapic)
3850 union IO_APIC_reg_01 reg_01;
3851 unsigned long flags;
3853 raw_spin_lock_irqsave(&ioapic_lock, flags);
3854 reg_01.raw = io_apic_read(ioapic, 1);
3855 raw_spin_unlock_irqrestore(&ioapic_lock, flags);
3857 return reg_01.bits.version;
3860 int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity)
3862 int ioapic, pin, idx;
3864 if (skip_ioapic_setup)
3865 return -1;
3867 ioapic = mp_find_ioapic(gsi);
3868 if (ioapic < 0)
3869 return -1;
3871 pin = mp_find_ioapic_pin(ioapic, gsi);
3872 if (pin < 0)
3873 return -1;
3875 idx = find_irq_entry(ioapic, pin, mp_INT);
3876 if (idx < 0)
3877 return -1;
3879 *trigger = irq_trigger(idx);
3880 *polarity = irq_polarity(idx);
3881 return 0;
3885 * This function currently is only a helper for the i386 smp boot process where
3886 * we need to reprogram the ioredtbls to cater for the cpus which have come online
3887 * so mask in all cases should simply be apic->target_cpus()
3889 #ifdef CONFIG_SMP
3890 void __init setup_ioapic_dest(void)
3892 int pin, ioapic, irq, irq_entry;
3893 struct irq_desc *desc;
3894 const struct cpumask *mask;
3896 if (skip_ioapic_setup == 1)
3897 return;
3899 for (ioapic = 0; ioapic < nr_ioapics; ioapic++)
3900 for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
3901 irq_entry = find_irq_entry(ioapic, pin, mp_INT);
3902 if (irq_entry == -1)
3903 continue;
3904 irq = pin_2_irq(irq_entry, ioapic, pin);
3906 if ((ioapic > 0) && (irq > 16))
3907 continue;
3909 desc = irq_to_desc(irq);
3912 * Honour affinities which have been set in early boot
3914 if (desc->status &
3915 (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
3916 mask = desc->irq_data.affinity;
3917 else
3918 mask = apic->target_cpus();
3920 if (intr_remapping_enabled)
3921 ir_ioapic_set_affinity(&desc->irq_data, mask, false);
3922 else
3923 ioapic_set_affinity(&desc->irq_data, mask, false);
3927 #endif
3929 #define IOAPIC_RESOURCE_NAME_SIZE 11
3931 static struct resource *ioapic_resources;
3933 static struct resource * __init ioapic_setup_resources(int nr_ioapics)
3935 unsigned long n;
3936 struct resource *res;
3937 char *mem;
3938 int i;
3940 if (nr_ioapics <= 0)
3941 return NULL;
3943 n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
3944 n *= nr_ioapics;
3946 mem = alloc_bootmem(n);
3947 res = (void *)mem;
3949 mem += sizeof(struct resource) * nr_ioapics;
3951 for (i = 0; i < nr_ioapics; i++) {
3952 res[i].name = mem;
3953 res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
3954 snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
3955 mem += IOAPIC_RESOURCE_NAME_SIZE;
3958 ioapic_resources = res;
3960 return res;
3963 void __init ioapic_and_gsi_init(void)
3965 unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
3966 struct resource *ioapic_res;
3967 int i;
3969 ioapic_res = ioapic_setup_resources(nr_ioapics);
3970 for (i = 0; i < nr_ioapics; i++) {
3971 if (smp_found_config) {
3972 ioapic_phys = mp_ioapics[i].apicaddr;
3973 #ifdef CONFIG_X86_32
3974 if (!ioapic_phys) {
3975 printk(KERN_ERR
3976 "WARNING: bogus zero IO-APIC "
3977 "address found in MPTABLE, "
3978 "disabling IO/APIC support!\n");
3979 smp_found_config = 0;
3980 skip_ioapic_setup = 1;
3981 goto fake_ioapic_page;
3983 #endif
3984 } else {
3985 #ifdef CONFIG_X86_32
3986 fake_ioapic_page:
3987 #endif
3988 ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
3989 ioapic_phys = __pa(ioapic_phys);
3991 set_fixmap_nocache(idx, ioapic_phys);
3992 apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
3993 __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
3994 ioapic_phys);
3995 idx++;
3997 ioapic_res->start = ioapic_phys;
3998 ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
3999 ioapic_res++;
4002 probe_nr_irqs_gsi();
4005 void __init ioapic_insert_resources(void)
4007 int i;
4008 struct resource *r = ioapic_resources;
4010 if (!r) {
4011 if (nr_ioapics > 0)
4012 printk(KERN_ERR
4013 "IO APIC resources couldn't be allocated.\n");
4014 return;
4017 for (i = 0; i < nr_ioapics; i++) {
4018 insert_resource(&iomem_resource, r);
4019 r++;
4023 int mp_find_ioapic(u32 gsi)
4025 int i = 0;
4027 /* Find the IOAPIC that manages this GSI. */
4028 for (i = 0; i < nr_ioapics; i++) {
4029 if ((gsi >= mp_gsi_routing[i].gsi_base)
4030 && (gsi <= mp_gsi_routing[i].gsi_end))
4031 return i;
4034 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
4035 return -1;
4038 int mp_find_ioapic_pin(int ioapic, u32 gsi)
4040 if (WARN_ON(ioapic == -1))
4041 return -1;
4042 if (WARN_ON(gsi > mp_gsi_routing[ioapic].gsi_end))
4043 return -1;
4045 return gsi - mp_gsi_routing[ioapic].gsi_base;
4048 static int bad_ioapic(unsigned long address)
4050 if (nr_ioapics >= MAX_IO_APICS) {
4051 printk(KERN_WARNING "WARING: Max # of I/O APICs (%d) exceeded "
4052 "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
4053 return 1;
4055 if (!address) {
4056 printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
4057 " found in table, skipping!\n");
4058 return 1;
4060 return 0;
4063 void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
4065 int idx = 0;
4066 int entries;
4068 if (bad_ioapic(address))
4069 return;
4071 idx = nr_ioapics;
4073 mp_ioapics[idx].type = MP_IOAPIC;
4074 mp_ioapics[idx].flags = MPC_APIC_USABLE;
4075 mp_ioapics[idx].apicaddr = address;
4077 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
4078 mp_ioapics[idx].apicid = io_apic_unique_id(id);
4079 mp_ioapics[idx].apicver = io_apic_get_version(idx);
4082 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
4083 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
4085 entries = io_apic_get_redir_entries(idx);
4086 mp_gsi_routing[idx].gsi_base = gsi_base;
4087 mp_gsi_routing[idx].gsi_end = gsi_base + entries - 1;
4090 * The number of IO-APIC IRQ registers (== #pins):
4092 nr_ioapic_registers[idx] = entries;
4094 if (mp_gsi_routing[idx].gsi_end >= gsi_top)
4095 gsi_top = mp_gsi_routing[idx].gsi_end + 1;
4097 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
4098 "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
4099 mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
4100 mp_gsi_routing[idx].gsi_base, mp_gsi_routing[idx].gsi_end);
4102 nr_ioapics++;
4105 /* Enable IOAPIC early just for system timer */
4106 void __init pre_init_apic_IRQ0(void)
4108 struct irq_cfg *cfg;
4110 printk(KERN_INFO "Early APIC setup for system timer0\n");
4111 #ifndef CONFIG_SMP
4112 physid_set_mask_of_physid(boot_cpu_physical_apicid,
4113 &phys_cpu_present_map);
4114 #endif
4115 /* Make sure the irq descriptor is set up */
4116 cfg = alloc_irq_and_cfg_at(0, 0);
4118 setup_local_APIC();
4120 add_pin_to_irq_node(cfg, 0, 0, 0);
4121 set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
4123 setup_ioapic_irq(0, 0, 0, cfg, 0, 0);