2 * Intel IO-APIC support for multi-Pentium hosts.
4 * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
6 * Many thanks to Stig Venaas for trying out countless experimental
7 * patches and reporting/debugging problems patiently!
9 * (c) 1999, Multiple IO-APIC support, developed by
10 * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
11 * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
12 * further tested and cleaned up by Zach Brown <zab@redhat.com>
13 * and Ingo Molnar <mingo@redhat.com>
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/sysdev.h>
34 #include <linux/msi.h>
35 #include <linux/htirq.h>
36 #include <linux/freezer.h>
37 #include <linux/kthread.h>
38 #include <linux/jiffies.h> /* time_after() */
40 #include <acpi/acpi_bus.h>
42 #include <linux/bootmem.h>
43 #include <linux/dmar.h>
49 #include <asm/proto.h>
52 #include <asm/timer.h>
53 #include <asm/i8259.h>
55 #include <asm/msidef.h>
56 #include <asm/hypertransport.h>
57 #include <asm/setup.h>
58 #include <asm/irq_remapping.h>
61 #include <mach_apic.h>
62 #include <mach_apicdef.h>
64 #define __apicdebuginit(type) static type __init
67 * Is the SiS APIC rmw bug present ?
68 * -1 = don't know, 0 = no, 1 = yes
70 int sis_apic_bug
= -1;
72 static DEFINE_SPINLOCK(ioapic_lock
);
73 static DEFINE_SPINLOCK(vector_lock
);
77 * Rough estimation of how many shared IRQs there are, can
83 * # of IRQ routing registers
85 int nr_ioapic_registers
[MAX_IO_APICS
];
87 /* I/O APIC entries */
88 struct mp_config_ioapic mp_ioapics
[MAX_IO_APICS
];
91 /* MP IRQ source entries */
92 struct mp_config_intsrc mp_irqs
[MAX_IRQ_SOURCES
];
94 /* # of MP IRQ source entries */
97 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
98 int mp_bus_id_to_type
[MAX_MP_BUSSES
];
101 DECLARE_BITMAP(mp_bus_not_pci
, MAX_MP_BUSSES
);
103 int skip_ioapic_setup
;
105 static int __init
parse_noapic(char *str
)
107 /* disable IO-APIC */
108 disable_ioapic_setup();
111 early_param("noapic", parse_noapic
);
117 struct irq_cfg
*next
;
118 struct irq_pin_list
*irq_2_pin
;
120 cpumask_t old_domain
;
121 unsigned move_cleanup_count
;
123 u8 move_in_progress
: 1;
126 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
127 static struct irq_cfg irq_cfg_legacy
[] __initdata
= {
128 [0] = { .irq
= 0, .domain
= CPU_MASK_ALL
, .vector
= IRQ0_VECTOR
, },
129 [1] = { .irq
= 1, .domain
= CPU_MASK_ALL
, .vector
= IRQ1_VECTOR
, },
130 [2] = { .irq
= 2, .domain
= CPU_MASK_ALL
, .vector
= IRQ2_VECTOR
, },
131 [3] = { .irq
= 3, .domain
= CPU_MASK_ALL
, .vector
= IRQ3_VECTOR
, },
132 [4] = { .irq
= 4, .domain
= CPU_MASK_ALL
, .vector
= IRQ4_VECTOR
, },
133 [5] = { .irq
= 5, .domain
= CPU_MASK_ALL
, .vector
= IRQ5_VECTOR
, },
134 [6] = { .irq
= 6, .domain
= CPU_MASK_ALL
, .vector
= IRQ6_VECTOR
, },
135 [7] = { .irq
= 7, .domain
= CPU_MASK_ALL
, .vector
= IRQ7_VECTOR
, },
136 [8] = { .irq
= 8, .domain
= CPU_MASK_ALL
, .vector
= IRQ8_VECTOR
, },
137 [9] = { .irq
= 9, .domain
= CPU_MASK_ALL
, .vector
= IRQ9_VECTOR
, },
138 [10] = { .irq
= 10, .domain
= CPU_MASK_ALL
, .vector
= IRQ10_VECTOR
, },
139 [11] = { .irq
= 11, .domain
= CPU_MASK_ALL
, .vector
= IRQ11_VECTOR
, },
140 [12] = { .irq
= 12, .domain
= CPU_MASK_ALL
, .vector
= IRQ12_VECTOR
, },
141 [13] = { .irq
= 13, .domain
= CPU_MASK_ALL
, .vector
= IRQ13_VECTOR
, },
142 [14] = { .irq
= 14, .domain
= CPU_MASK_ALL
, .vector
= IRQ14_VECTOR
, },
143 [15] = { .irq
= 15, .domain
= CPU_MASK_ALL
, .vector
= IRQ15_VECTOR
, },
146 static struct irq_cfg irq_cfg_init
= { .irq
= -1U, };
147 /* need to be biger than size of irq_cfg_legacy */
148 static int nr_irq_cfg
= 32;
150 static int __init
parse_nr_irq_cfg(char *arg
)
153 nr_irq_cfg
= simple_strtoul(arg
, NULL
, 0);
160 early_param("nr_irq_cfg", parse_nr_irq_cfg
);
162 static void init_one_irq_cfg(struct irq_cfg
*cfg
)
164 memcpy(cfg
, &irq_cfg_init
, sizeof(struct irq_cfg
));
167 static struct irq_cfg
*irq_cfgx
;
168 static struct irq_cfg
*irq_cfgx_free
;
169 static void __init
init_work(void *data
)
171 struct dyn_array
*da
= data
;
178 memcpy(cfg
, irq_cfg_legacy
, sizeof(irq_cfg_legacy
));
180 legacy_count
= sizeof(irq_cfg_legacy
)/sizeof(irq_cfg_legacy
[0]);
181 for (i
= legacy_count
; i
< *da
->nr
; i
++)
182 init_one_irq_cfg(&cfg
[i
]);
184 for (i
= 1; i
< *da
->nr
; i
++)
185 cfg
[i
-1].next
= &cfg
[i
];
187 irq_cfgx_free
= &irq_cfgx
[legacy_count
];
188 irq_cfgx
[legacy_count
- 1].next
= NULL
;
191 #define for_each_irq_cfg(cfg) \
192 for (cfg = irq_cfgx; cfg; cfg = cfg->next)
194 DEFINE_DYN_ARRAY(irq_cfgx
, sizeof(struct irq_cfg
), nr_irq_cfg
, PAGE_SIZE
, init_work
);
196 static struct irq_cfg
*irq_cfg(unsigned int irq
)
211 static struct irq_cfg
*irq_cfg_alloc(unsigned int irq
)
213 struct irq_cfg
*cfg
, *cfg_pri
;
217 cfg_pri
= cfg
= irq_cfgx
;
227 if (!irq_cfgx_free
) {
229 unsigned long total_bytes
;
231 * we run out of pre-allocate ones, allocate more
233 printk(KERN_DEBUG
"try to get more irq_cfg %d\n", nr_irq_cfg
);
235 total_bytes
= sizeof(struct irq_cfg
) * nr_irq_cfg
;
237 cfg
= kzalloc(total_bytes
, GFP_ATOMIC
);
239 cfg
= __alloc_bootmem_nopanic(total_bytes
, PAGE_SIZE
, 0);
242 panic("please boot with nr_irq_cfg= %d\n", count
* 2);
245 printk(KERN_DEBUG
"irq_irq ==> [%#lx - %#lx]\n", phys
, phys
+ total_bytes
);
247 for (i
= 0; i
< nr_irq_cfg
; i
++)
248 init_one_irq_cfg(&cfg
[i
]);
250 for (i
= 1; i
< nr_irq_cfg
; i
++)
251 cfg
[i
-1].next
= &cfg
[i
];
257 irq_cfgx_free
= irq_cfgx_free
->next
;
264 printk(KERN_DEBUG
"found new irq_cfg for irq %d\n", cfg
->irq
);
265 #ifdef CONFIG_HAVE_SPARSE_IRQ_DEBUG
267 /* dump the results */
270 unsigned long bytes
= sizeof(struct irq_cfg
);
272 printk(KERN_DEBUG
"=========================== %d\n", irq
);
273 printk(KERN_DEBUG
"irq_cfg dump after get that for %d\n", irq
);
274 for_each_irq_cfg(cfg
) {
276 printk(KERN_DEBUG
"irq_cfg %d ==> [%#lx - %#lx]\n", cfg
->irq
, phys
, phys
+ bytes
);
278 printk(KERN_DEBUG
"===========================\n");
285 * This is performance-critical, we want to do it O(1)
287 * the indexing order of this array favors 1:1 mappings
288 * between pins and IRQs.
291 struct irq_pin_list
{
293 struct irq_pin_list
*next
;
296 static struct irq_pin_list
*irq_2_pin_head
;
297 /* fill one page ? */
298 static int nr_irq_2_pin
= 0x100;
299 static struct irq_pin_list
*irq_2_pin_ptr
;
300 static void __init
irq_2_pin_init_work(void *data
)
302 struct dyn_array
*da
= data
;
303 struct irq_pin_list
*pin
;
308 for (i
= 1; i
< *da
->nr
; i
++)
309 pin
[i
-1].next
= &pin
[i
];
311 irq_2_pin_ptr
= &pin
[0];
313 DEFINE_DYN_ARRAY(irq_2_pin_head
, sizeof(struct irq_pin_list
), nr_irq_2_pin
, PAGE_SIZE
, irq_2_pin_init_work
);
315 static struct irq_pin_list
*get_one_free_irq_2_pin(void)
317 struct irq_pin_list
*pin
;
323 irq_2_pin_ptr
= pin
->next
;
329 * we run out of pre-allocate ones, allocate more
331 printk(KERN_DEBUG
"try to get more irq_2_pin %d\n", nr_irq_2_pin
);
334 pin
= kzalloc(sizeof(struct irq_pin_list
)*nr_irq_2_pin
,
337 pin
= __alloc_bootmem_nopanic(sizeof(struct irq_pin_list
) *
338 nr_irq_2_pin
, PAGE_SIZE
, 0);
341 panic("can not get more irq_2_pin\n");
343 for (i
= 1; i
< nr_irq_2_pin
; i
++)
344 pin
[i
-1].next
= &pin
[i
];
346 irq_2_pin_ptr
= pin
->next
;
354 unsigned int unused
[3];
358 static __attribute_const__
struct io_apic __iomem
*io_apic_base(int idx
)
360 return (void __iomem
*) __fix_to_virt(FIX_IO_APIC_BASE_0
+ idx
)
361 + (mp_ioapics
[idx
].mp_apicaddr
& ~PAGE_MASK
);
364 static inline unsigned int io_apic_read(unsigned int apic
, unsigned int reg
)
366 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
367 writel(reg
, &io_apic
->index
);
368 return readl(&io_apic
->data
);
371 static inline void io_apic_write(unsigned int apic
, unsigned int reg
, unsigned int value
)
373 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
374 writel(reg
, &io_apic
->index
);
375 writel(value
, &io_apic
->data
);
379 * Re-write a value: to be used for read-modify-write
380 * cycles where the read already set up the index register.
382 * Older SiS APIC requires we rewrite the index register
384 static inline void io_apic_modify(unsigned int apic
, unsigned int reg
, unsigned int value
)
386 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
388 writel(reg
, &io_apic
->index
);
389 writel(value
, &io_apic
->data
);
393 static bool io_apic_level_ack_pending(unsigned int irq
)
395 struct irq_pin_list
*entry
;
397 struct irq_cfg
*cfg
= irq_cfg(irq
);
399 spin_lock_irqsave(&ioapic_lock
, flags
);
400 entry
= cfg
->irq_2_pin
;
408 reg
= io_apic_read(entry
->apic
, 0x10 + pin
*2);
409 /* Is the remote IRR bit set? */
410 if (reg
& IO_APIC_REDIR_REMOTE_IRR
) {
411 spin_unlock_irqrestore(&ioapic_lock
, flags
);
418 spin_unlock_irqrestore(&ioapic_lock
, flags
);
425 struct { u32 w1
, w2
; };
426 struct IO_APIC_route_entry entry
;
429 static struct IO_APIC_route_entry
ioapic_read_entry(int apic
, int pin
)
431 union entry_union eu
;
433 spin_lock_irqsave(&ioapic_lock
, flags
);
434 eu
.w1
= io_apic_read(apic
, 0x10 + 2 * pin
);
435 eu
.w2
= io_apic_read(apic
, 0x11 + 2 * pin
);
436 spin_unlock_irqrestore(&ioapic_lock
, flags
);
441 * When we write a new IO APIC routing entry, we need to write the high
442 * word first! If the mask bit in the low word is clear, we will enable
443 * the interrupt, and we need to make sure the entry is fully populated
444 * before that happens.
447 __ioapic_write_entry(int apic
, int pin
, struct IO_APIC_route_entry e
)
449 union entry_union eu
;
451 io_apic_write(apic
, 0x11 + 2*pin
, eu
.w2
);
452 io_apic_write(apic
, 0x10 + 2*pin
, eu
.w1
);
455 static void ioapic_write_entry(int apic
, int pin
, struct IO_APIC_route_entry e
)
458 spin_lock_irqsave(&ioapic_lock
, flags
);
459 __ioapic_write_entry(apic
, pin
, e
);
460 spin_unlock_irqrestore(&ioapic_lock
, flags
);
464 * When we mask an IO APIC routing entry, we need to write the low
465 * word first, in order to set the mask bit before we change the
468 static void ioapic_mask_entry(int apic
, int pin
)
471 union entry_union eu
= { .entry
.mask
= 1 };
473 spin_lock_irqsave(&ioapic_lock
, flags
);
474 io_apic_write(apic
, 0x10 + 2*pin
, eu
.w1
);
475 io_apic_write(apic
, 0x11 + 2*pin
, eu
.w2
);
476 spin_unlock_irqrestore(&ioapic_lock
, flags
);
480 static void __target_IO_APIC_irq(unsigned int irq
, unsigned int dest
, u8 vector
)
484 struct irq_pin_list
*entry
;
487 entry
= cfg
->irq_2_pin
;
496 #ifdef CONFIG_INTR_REMAP
498 * With interrupt-remapping, destination information comes
499 * from interrupt-remapping table entry.
501 if (!irq_remapped(irq
))
502 io_apic_write(apic
, 0x11 + pin
*2, dest
);
504 io_apic_write(apic
, 0x11 + pin
*2, dest
);
506 reg
= io_apic_read(apic
, 0x10 + pin
*2);
507 reg
&= ~IO_APIC_REDIR_VECTOR_MASK
;
509 io_apic_modify(apic
, 0x10 + pin
*2, reg
);
516 static int assign_irq_vector(int irq
, cpumask_t mask
);
518 static void set_ioapic_affinity_irq(unsigned int irq
, cpumask_t mask
)
524 struct irq_desc
*desc
;
526 cpus_and(tmp
, mask
, cpu_online_map
);
531 if (assign_irq_vector(irq
, mask
))
534 cpus_and(tmp
, cfg
->domain
, mask
);
535 dest
= cpu_mask_to_apicid(tmp
);
537 * Only the high 8 bits are valid.
539 dest
= SET_APIC_LOGICAL_ID(dest
);
541 desc
= irq_to_desc(irq
);
542 spin_lock_irqsave(&ioapic_lock
, flags
);
543 __target_IO_APIC_irq(irq
, dest
, cfg
->vector
);
544 desc
->affinity
= mask
;
545 spin_unlock_irqrestore(&ioapic_lock
, flags
);
547 #endif /* CONFIG_SMP */
550 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
551 * shared ISA-space IRQs, so we have to support them. We are super
552 * fast in the common case, and fast for shared ISA-space IRQs.
554 static void add_pin_to_irq(unsigned int irq
, int apic
, int pin
)
557 struct irq_pin_list
*entry
;
559 /* first time to refer irq_cfg, so with new */
560 cfg
= irq_cfg_alloc(irq
);
561 entry
= cfg
->irq_2_pin
;
563 entry
= get_one_free_irq_2_pin();
564 cfg
->irq_2_pin
= entry
;
567 printk(KERN_DEBUG
" 0 add_pin_to_irq: irq %d --> apic %d pin %d\n", irq
, apic
, pin
);
571 while (entry
->next
) {
572 /* not again, please */
573 if (entry
->apic
== apic
&& entry
->pin
== pin
)
579 entry
->next
= get_one_free_irq_2_pin();
583 printk(KERN_DEBUG
" x add_pin_to_irq: irq %d --> apic %d pin %d\n", irq
, apic
, pin
);
587 * Reroute an IRQ to a different pin.
589 static void __init
replace_pin_at_irq(unsigned int irq
,
590 int oldapic
, int oldpin
,
591 int newapic
, int newpin
)
593 struct irq_cfg
*cfg
= irq_cfg(irq
);
594 struct irq_pin_list
*entry
= cfg
->irq_2_pin
;
598 if (entry
->apic
== oldapic
&& entry
->pin
== oldpin
) {
599 entry
->apic
= newapic
;
602 /* every one is different, right? */
608 /* why? call replace before add? */
610 add_pin_to_irq(irq
, newapic
, newpin
);
615 * Synchronize the IO-APIC and the CPU by doing
616 * a dummy read from the IO-APIC
618 static inline void io_apic_sync(unsigned int apic
)
620 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
621 readl(&io_apic
->data
);
624 #define __DO_ACTION(R, ACTION, FINAL) \
628 struct irq_cfg *cfg; \
629 struct irq_pin_list *entry; \
631 cfg = irq_cfg(irq); \
632 entry = cfg->irq_2_pin; \
638 reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
640 io_apic_modify(entry->apic, 0x10 + R + pin*2, reg); \
644 entry = entry->next; \
648 #define DO_ACTION(name,R,ACTION, FINAL) \
650 static void name##_IO_APIC_irq (unsigned int irq) \
651 __DO_ACTION(R, ACTION, FINAL)
654 DO_ACTION(__mask
, 0, |= IO_APIC_REDIR_MASKED
, io_apic_sync(entry
->apic
))
657 DO_ACTION(__unmask
, 0, &= ~IO_APIC_REDIR_MASKED
, )
661 static void __modify_IO_APIC_irq(unsigned int irq
, unsigned long enable
, unsigned long disable
)
664 struct irq_pin_list
*entry
;
665 unsigned int pin
, reg
;
668 entry
= cfg
->irq_2_pin
;
673 reg
= io_apic_read(entry
->apic
, 0x10 + pin
*2);
676 io_apic_modify(entry
->apic
, 0x10 + pin
*2, reg
);
684 static void __mask_IO_APIC_irq(unsigned int irq
)
686 __modify_IO_APIC_irq(irq
, IO_APIC_REDIR_MASKED
, 0);
690 static void __unmask_IO_APIC_irq(unsigned int irq
)
692 __modify_IO_APIC_irq(irq
, 0, IO_APIC_REDIR_MASKED
);
695 /* mask = 1, trigger = 0 */
696 static void __mask_and_edge_IO_APIC_irq(unsigned int irq
)
698 __modify_IO_APIC_irq(irq
, IO_APIC_REDIR_MASKED
,
699 IO_APIC_REDIR_LEVEL_TRIGGER
);
702 /* mask = 0, trigger = 1 */
703 static void __unmask_and_level_IO_APIC_irq(unsigned int irq
)
705 __modify_IO_APIC_irq(irq
, IO_APIC_REDIR_LEVEL_TRIGGER
,
706 IO_APIC_REDIR_MASKED
);
711 static void mask_IO_APIC_irq (unsigned int irq
)
715 spin_lock_irqsave(&ioapic_lock
, flags
);
716 __mask_IO_APIC_irq(irq
);
717 spin_unlock_irqrestore(&ioapic_lock
, flags
);
720 static void unmask_IO_APIC_irq (unsigned int irq
)
724 spin_lock_irqsave(&ioapic_lock
, flags
);
725 __unmask_IO_APIC_irq(irq
);
726 spin_unlock_irqrestore(&ioapic_lock
, flags
);
729 static void clear_IO_APIC_pin(unsigned int apic
, unsigned int pin
)
731 struct IO_APIC_route_entry entry
;
733 /* Check delivery_mode to be sure we're not clearing an SMI pin */
734 entry
= ioapic_read_entry(apic
, pin
);
735 if (entry
.delivery_mode
== dest_SMI
)
738 * Disable it in the IO-APIC irq-routing table:
740 ioapic_mask_entry(apic
, pin
);
743 static void clear_IO_APIC (void)
747 for (apic
= 0; apic
< nr_ioapics
; apic
++)
748 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
749 clear_IO_APIC_pin(apic
, pin
);
752 #if !defined(CONFIG_SMP) && defined(CONFIG_X86_32)
753 void send_IPI_self(int vector
)
760 apic_wait_icr_idle();
761 cfg
= APIC_DM_FIXED
| APIC_DEST_SELF
| vector
| APIC_DEST_LOGICAL
;
763 * Send the IPI. The write to APIC_ICR fires this off.
765 apic_write(APIC_ICR
, cfg
);
767 #endif /* !CONFIG_SMP && CONFIG_X86_32*/
771 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
772 * specific CPU-side IRQs.
776 static int pirq_entries
[MAX_PIRQS
];
777 static int pirqs_enabled
;
779 static int __init
ioapic_pirq_setup(char *str
)
782 int ints
[MAX_PIRQS
+1];
784 get_options(str
, ARRAY_SIZE(ints
), ints
);
786 for (i
= 0; i
< MAX_PIRQS
; i
++)
787 pirq_entries
[i
] = -1;
790 apic_printk(APIC_VERBOSE
, KERN_INFO
791 "PIRQ redirection, working around broken MP-BIOS.\n");
793 if (ints
[0] < MAX_PIRQS
)
796 for (i
= 0; i
< max
; i
++) {
797 apic_printk(APIC_VERBOSE
, KERN_DEBUG
798 "... PIRQ%d -> IRQ %d\n", i
, ints
[i
+1]);
800 * PIRQs are mapped upside down, usually.
802 pirq_entries
[MAX_PIRQS
-i
-1] = ints
[i
+1];
807 __setup("pirq=", ioapic_pirq_setup
);
808 #endif /* CONFIG_X86_32 */
810 #ifdef CONFIG_INTR_REMAP
811 /* I/O APIC RTE contents at the OS boot up */
812 static struct IO_APIC_route_entry
*early_ioapic_entries
[MAX_IO_APICS
];
815 * Saves and masks all the unmasked IO-APIC RTE's
817 int save_mask_IO_APIC_setup(void)
819 union IO_APIC_reg_01 reg_01
;
824 * The number of IO-APIC IRQ registers (== #pins):
826 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
827 spin_lock_irqsave(&ioapic_lock
, flags
);
828 reg_01
.raw
= io_apic_read(apic
, 1);
829 spin_unlock_irqrestore(&ioapic_lock
, flags
);
830 nr_ioapic_registers
[apic
] = reg_01
.bits
.entries
+1;
833 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
834 early_ioapic_entries
[apic
] =
835 kzalloc(sizeof(struct IO_APIC_route_entry
) *
836 nr_ioapic_registers
[apic
], GFP_KERNEL
);
837 if (!early_ioapic_entries
[apic
])
841 for (apic
= 0; apic
< nr_ioapics
; apic
++)
842 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
843 struct IO_APIC_route_entry entry
;
845 entry
= early_ioapic_entries
[apic
][pin
] =
846 ioapic_read_entry(apic
, pin
);
849 ioapic_write_entry(apic
, pin
, entry
);
855 void restore_IO_APIC_setup(void)
859 for (apic
= 0; apic
< nr_ioapics
; apic
++)
860 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
861 ioapic_write_entry(apic
, pin
,
862 early_ioapic_entries
[apic
][pin
]);
865 void reinit_intr_remapped_IO_APIC(int intr_remapping
)
868 * for now plain restore of previous settings.
869 * TBD: In the case of OS enabling interrupt-remapping,
870 * IO-APIC RTE's need to be setup to point to interrupt-remapping
871 * table entries. for now, do a plain restore, and wait for
872 * the setup_IO_APIC_irqs() to do proper initialization.
874 restore_IO_APIC_setup();
879 * Find the IRQ entry number of a certain pin.
881 static int find_irq_entry(int apic
, int pin
, int type
)
885 for (i
= 0; i
< mp_irq_entries
; i
++)
886 if (mp_irqs
[i
].mp_irqtype
== type
&&
887 (mp_irqs
[i
].mp_dstapic
== mp_ioapics
[apic
].mp_apicid
||
888 mp_irqs
[i
].mp_dstapic
== MP_APIC_ALL
) &&
889 mp_irqs
[i
].mp_dstirq
== pin
)
896 * Find the pin to which IRQ[irq] (ISA) is connected
898 static int __init
find_isa_irq_pin(int irq
, int type
)
902 for (i
= 0; i
< mp_irq_entries
; i
++) {
903 int lbus
= mp_irqs
[i
].mp_srcbus
;
905 if (test_bit(lbus
, mp_bus_not_pci
) &&
906 (mp_irqs
[i
].mp_irqtype
== type
) &&
907 (mp_irqs
[i
].mp_srcbusirq
== irq
))
909 return mp_irqs
[i
].mp_dstirq
;
914 static int __init
find_isa_irq_apic(int irq
, int type
)
918 for (i
= 0; i
< mp_irq_entries
; i
++) {
919 int lbus
= mp_irqs
[i
].mp_srcbus
;
921 if (test_bit(lbus
, mp_bus_not_pci
) &&
922 (mp_irqs
[i
].mp_irqtype
== type
) &&
923 (mp_irqs
[i
].mp_srcbusirq
== irq
))
926 if (i
< mp_irq_entries
) {
928 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
929 if (mp_ioapics
[apic
].mp_apicid
== mp_irqs
[i
].mp_dstapic
)
938 * Find a specific PCI IRQ entry.
939 * Not an __init, possibly needed by modules
941 static int pin_2_irq(int idx
, int apic
, int pin
);
943 int IO_APIC_get_PCI_irq_vector(int bus
, int slot
, int pin
)
945 int apic
, i
, best_guess
= -1;
947 apic_printk(APIC_DEBUG
, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
949 if (test_bit(bus
, mp_bus_not_pci
)) {
950 apic_printk(APIC_VERBOSE
, "PCI BIOS passed nonexistent PCI bus %d!\n", bus
);
953 for (i
= 0; i
< mp_irq_entries
; i
++) {
954 int lbus
= mp_irqs
[i
].mp_srcbus
;
956 for (apic
= 0; apic
< nr_ioapics
; apic
++)
957 if (mp_ioapics
[apic
].mp_apicid
== mp_irqs
[i
].mp_dstapic
||
958 mp_irqs
[i
].mp_dstapic
== MP_APIC_ALL
)
961 if (!test_bit(lbus
, mp_bus_not_pci
) &&
962 !mp_irqs
[i
].mp_irqtype
&&
964 (slot
== ((mp_irqs
[i
].mp_srcbusirq
>> 2) & 0x1f))) {
965 int irq
= pin_2_irq(i
,apic
,mp_irqs
[i
].mp_dstirq
);
967 if (!(apic
|| IO_APIC_IRQ(irq
)))
970 if (pin
== (mp_irqs
[i
].mp_srcbusirq
& 3))
973 * Use the first all-but-pin matching entry as a
974 * best-guess fuzzy result for broken mptables.
983 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector
);
985 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
987 * EISA Edge/Level control register, ELCR
989 static int EISA_ELCR(unsigned int irq
)
992 unsigned int port
= 0x4d0 + (irq
>> 3);
993 return (inb(port
) >> (irq
& 7)) & 1;
995 apic_printk(APIC_VERBOSE
, KERN_INFO
996 "Broken MPtable reports ISA irq %d\n", irq
);
1002 /* ISA interrupts are always polarity zero edge triggered,
1003 * when listed as conforming in the MP table. */
1005 #define default_ISA_trigger(idx) (0)
1006 #define default_ISA_polarity(idx) (0)
1008 /* EISA interrupts are always polarity zero and can be edge or level
1009 * trigger depending on the ELCR value. If an interrupt is listed as
1010 * EISA conforming in the MP table, that means its trigger type must
1011 * be read in from the ELCR */
1013 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mp_srcbusirq))
1014 #define default_EISA_polarity(idx) default_ISA_polarity(idx)
1016 /* PCI interrupts are always polarity one level triggered,
1017 * when listed as conforming in the MP table. */
1019 #define default_PCI_trigger(idx) (1)
1020 #define default_PCI_polarity(idx) (1)
1022 /* MCA interrupts are always polarity zero level triggered,
1023 * when listed as conforming in the MP table. */
1025 #define default_MCA_trigger(idx) (1)
1026 #define default_MCA_polarity(idx) default_ISA_polarity(idx)
1028 static int MPBIOS_polarity(int idx
)
1030 int bus
= mp_irqs
[idx
].mp_srcbus
;
1034 * Determine IRQ line polarity (high active or low active):
1036 switch (mp_irqs
[idx
].mp_irqflag
& 3)
1038 case 0: /* conforms, ie. bus-type dependent polarity */
1039 if (test_bit(bus
, mp_bus_not_pci
))
1040 polarity
= default_ISA_polarity(idx
);
1042 polarity
= default_PCI_polarity(idx
);
1044 case 1: /* high active */
1049 case 2: /* reserved */
1051 printk(KERN_WARNING
"broken BIOS!!\n");
1055 case 3: /* low active */
1060 default: /* invalid */
1062 printk(KERN_WARNING
"broken BIOS!!\n");
1070 static int MPBIOS_trigger(int idx
)
1072 int bus
= mp_irqs
[idx
].mp_srcbus
;
1076 * Determine IRQ trigger mode (edge or level sensitive):
1078 switch ((mp_irqs
[idx
].mp_irqflag
>>2) & 3)
1080 case 0: /* conforms, ie. bus-type dependent */
1081 if (test_bit(bus
, mp_bus_not_pci
))
1082 trigger
= default_ISA_trigger(idx
);
1084 trigger
= default_PCI_trigger(idx
);
1085 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
1086 switch (mp_bus_id_to_type
[bus
]) {
1087 case MP_BUS_ISA
: /* ISA pin */
1089 /* set before the switch */
1092 case MP_BUS_EISA
: /* EISA pin */
1094 trigger
= default_EISA_trigger(idx
);
1097 case MP_BUS_PCI
: /* PCI pin */
1099 /* set before the switch */
1102 case MP_BUS_MCA
: /* MCA pin */
1104 trigger
= default_MCA_trigger(idx
);
1109 printk(KERN_WARNING
"broken BIOS!!\n");
1121 case 2: /* reserved */
1123 printk(KERN_WARNING
"broken BIOS!!\n");
1132 default: /* invalid */
1134 printk(KERN_WARNING
"broken BIOS!!\n");
1142 static inline int irq_polarity(int idx
)
1144 return MPBIOS_polarity(idx
);
1147 static inline int irq_trigger(int idx
)
1149 return MPBIOS_trigger(idx
);
1152 int (*ioapic_renumber_irq
)(int ioapic
, int irq
);
1153 static int pin_2_irq(int idx
, int apic
, int pin
)
1156 int bus
= mp_irqs
[idx
].mp_srcbus
;
1159 * Debugging check, we are in big trouble if this message pops up!
1161 if (mp_irqs
[idx
].mp_dstirq
!= pin
)
1162 printk(KERN_ERR
"broken BIOS or MPTABLE parser, ayiee!!\n");
1164 if (test_bit(bus
, mp_bus_not_pci
)) {
1165 irq
= mp_irqs
[idx
].mp_srcbusirq
;
1168 * PCI IRQs are mapped in order
1172 irq
+= nr_ioapic_registers
[i
++];
1175 * For MPS mode, so far only needed by ES7000 platform
1177 if (ioapic_renumber_irq
)
1178 irq
= ioapic_renumber_irq(apic
, irq
);
1181 #ifdef CONFIG_X86_32
1183 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1185 if ((pin
>= 16) && (pin
<= 23)) {
1186 if (pirq_entries
[pin
-16] != -1) {
1187 if (!pirq_entries
[pin
-16]) {
1188 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1189 "disabling PIRQ%d\n", pin
-16);
1191 irq
= pirq_entries
[pin
-16];
1192 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1193 "using PIRQ%d -> IRQ %d\n",
1203 void lock_vector_lock(void)
1205 /* Used to the online set of cpus does not change
1206 * during assign_irq_vector.
1208 spin_lock(&vector_lock
);
1211 void unlock_vector_lock(void)
1213 spin_unlock(&vector_lock
);
1216 static int __assign_irq_vector(int irq
, cpumask_t mask
)
1219 * NOTE! The local APIC isn't very good at handling
1220 * multiple interrupts at the same interrupt level.
1221 * As the interrupt level is determined by taking the
1222 * vector number and shifting that right by 4, we
1223 * want to spread these out a bit so that they don't
1224 * all fall in the same interrupt level.
1226 * Also, we've got to be careful not to trash gate
1227 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1229 static int current_vector
= FIRST_DEVICE_VECTOR
, current_offset
= 0;
1230 unsigned int old_vector
;
1232 struct irq_cfg
*cfg
;
1236 /* Only try and allocate irqs on cpus that are present */
1237 cpus_and(mask
, mask
, cpu_online_map
);
1239 if ((cfg
->move_in_progress
) || cfg
->move_cleanup_count
)
1242 old_vector
= cfg
->vector
;
1245 cpus_and(tmp
, cfg
->domain
, mask
);
1246 if (!cpus_empty(tmp
))
1250 for_each_cpu_mask_nr(cpu
, mask
) {
1251 cpumask_t domain
, new_mask
;
1255 domain
= vector_allocation_domain(cpu
);
1256 cpus_and(new_mask
, domain
, cpu_online_map
);
1258 vector
= current_vector
;
1259 offset
= current_offset
;
1262 if (vector
>= first_system_vector
) {
1263 /* If we run out of vectors on large boxen, must share them. */
1264 offset
= (offset
+ 1) % 8;
1265 vector
= FIRST_DEVICE_VECTOR
+ offset
;
1267 if (unlikely(current_vector
== vector
))
1269 #ifdef CONFIG_X86_64
1270 if (vector
== IA32_SYSCALL_VECTOR
)
1273 if (vector
== SYSCALL_VECTOR
)
1276 for_each_cpu_mask_nr(new_cpu
, new_mask
)
1277 if (per_cpu(vector_irq
, new_cpu
)[vector
] != -1)
1280 current_vector
= vector
;
1281 current_offset
= offset
;
1283 cfg
->move_in_progress
= 1;
1284 cfg
->old_domain
= cfg
->domain
;
1286 for_each_cpu_mask_nr(new_cpu
, new_mask
)
1287 per_cpu(vector_irq
, new_cpu
)[vector
] = irq
;
1288 cfg
->vector
= vector
;
1289 cfg
->domain
= domain
;
1295 static int assign_irq_vector(int irq
, cpumask_t mask
)
1298 unsigned long flags
;
1300 spin_lock_irqsave(&vector_lock
, flags
);
1301 err
= __assign_irq_vector(irq
, mask
);
1302 spin_unlock_irqrestore(&vector_lock
, flags
);
1306 static void __clear_irq_vector(int irq
)
1308 struct irq_cfg
*cfg
;
1313 BUG_ON(!cfg
->vector
);
1315 vector
= cfg
->vector
;
1316 cpus_and(mask
, cfg
->domain
, cpu_online_map
);
1317 for_each_cpu_mask_nr(cpu
, mask
)
1318 per_cpu(vector_irq
, cpu
)[vector
] = -1;
1321 cpus_clear(cfg
->domain
);
1324 void __setup_vector_irq(int cpu
)
1326 /* Initialize vector_irq on a new cpu */
1327 /* This function must be called with vector_lock held */
1329 struct irq_cfg
*cfg
;
1331 /* Mark the inuse vectors */
1332 for_each_irq_cfg(cfg
) {
1333 if (!cpu_isset(cpu
, cfg
->domain
))
1335 vector
= cfg
->vector
;
1337 per_cpu(vector_irq
, cpu
)[vector
] = irq
;
1339 /* Mark the free vectors */
1340 for (vector
= 0; vector
< NR_VECTORS
; ++vector
) {
1341 irq
= per_cpu(vector_irq
, cpu
)[vector
];
1346 if (!cpu_isset(cpu
, cfg
->domain
))
1347 per_cpu(vector_irq
, cpu
)[vector
] = -1;
1351 static struct irq_chip ioapic_chip
;
1352 #ifdef CONFIG_INTR_REMAP
1353 static struct irq_chip ir_ioapic_chip
;
1356 #define IOAPIC_AUTO -1
1357 #define IOAPIC_EDGE 0
1358 #define IOAPIC_LEVEL 1
1360 #ifdef CONFIG_X86_32
1361 static inline int IO_APIC_irq_trigger(int irq
)
1365 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1366 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1367 idx
= find_irq_entry(apic
, pin
, mp_INT
);
1368 if ((idx
!= -1) && (irq
== pin_2_irq(idx
, apic
, pin
)))
1369 return irq_trigger(idx
);
1373 * nonexistent IRQs are edge default
1378 static inline int IO_APIC_irq_trigger(int irq
)
1384 static void ioapic_register_intr(int irq
, unsigned long trigger
)
1386 struct irq_desc
*desc
;
1388 /* first time to use this irq_desc */
1390 desc
= irq_to_desc(irq
);
1392 desc
= irq_to_desc_alloc(irq
);
1394 if ((trigger
== IOAPIC_AUTO
&& IO_APIC_irq_trigger(irq
)) ||
1395 trigger
== IOAPIC_LEVEL
)
1396 desc
->status
|= IRQ_LEVEL
;
1398 desc
->status
&= ~IRQ_LEVEL
;
1400 #ifdef CONFIG_INTR_REMAP
1401 if (irq_remapped(irq
)) {
1402 desc
->status
|= IRQ_MOVE_PCNTXT
;
1404 set_irq_chip_and_handler_name(irq
, &ir_ioapic_chip
,
1408 set_irq_chip_and_handler_name(irq
, &ir_ioapic_chip
,
1409 handle_edge_irq
, "edge");
1413 if ((trigger
== IOAPIC_AUTO
&& IO_APIC_irq_trigger(irq
)) ||
1414 trigger
== IOAPIC_LEVEL
)
1415 set_irq_chip_and_handler_name(irq
, &ioapic_chip
,
1419 set_irq_chip_and_handler_name(irq
, &ioapic_chip
,
1420 handle_edge_irq
, "edge");
1423 static int setup_ioapic_entry(int apic
, int irq
,
1424 struct IO_APIC_route_entry
*entry
,
1425 unsigned int destination
, int trigger
,
1426 int polarity
, int vector
)
1429 * add it to the IO-APIC irq-routing table:
1431 memset(entry
,0,sizeof(*entry
));
1433 #ifdef CONFIG_INTR_REMAP
1434 if (intr_remapping_enabled
) {
1435 struct intel_iommu
*iommu
= map_ioapic_to_ir(apic
);
1437 struct IR_IO_APIC_route_entry
*ir_entry
=
1438 (struct IR_IO_APIC_route_entry
*) entry
;
1442 panic("No mapping iommu for ioapic %d\n", apic
);
1444 index
= alloc_irte(iommu
, irq
, 1);
1446 panic("Failed to allocate IRTE for ioapic %d\n", apic
);
1448 memset(&irte
, 0, sizeof(irte
));
1451 irte
.dst_mode
= INT_DEST_MODE
;
1452 irte
.trigger_mode
= trigger
;
1453 irte
.dlvry_mode
= INT_DELIVERY_MODE
;
1454 irte
.vector
= vector
;
1455 irte
.dest_id
= IRTE_DEST(destination
);
1457 modify_irte(irq
, &irte
);
1459 ir_entry
->index2
= (index
>> 15) & 0x1;
1461 ir_entry
->format
= 1;
1462 ir_entry
->index
= (index
& 0x7fff);
1466 entry
->delivery_mode
= INT_DELIVERY_MODE
;
1467 entry
->dest_mode
= INT_DEST_MODE
;
1468 entry
->dest
= destination
;
1471 entry
->mask
= 0; /* enable IRQ */
1472 entry
->trigger
= trigger
;
1473 entry
->polarity
= polarity
;
1474 entry
->vector
= vector
;
1476 /* Mask level triggered irqs.
1477 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1484 static void setup_IO_APIC_irq(int apic
, int pin
, unsigned int irq
,
1485 int trigger
, int polarity
)
1487 struct irq_cfg
*cfg
;
1488 struct IO_APIC_route_entry entry
;
1491 if (!IO_APIC_IRQ(irq
))
1497 if (assign_irq_vector(irq
, mask
))
1500 cpus_and(mask
, cfg
->domain
, mask
);
1502 apic_printk(APIC_VERBOSE
,KERN_DEBUG
1503 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1504 "IRQ %d Mode:%i Active:%i)\n",
1505 apic
, mp_ioapics
[apic
].mp_apicid
, pin
, cfg
->vector
,
1506 irq
, trigger
, polarity
);
1509 if (setup_ioapic_entry(mp_ioapics
[apic
].mp_apicid
, irq
, &entry
,
1510 cpu_mask_to_apicid(mask
), trigger
, polarity
,
1512 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1513 mp_ioapics
[apic
].mp_apicid
, pin
);
1514 __clear_irq_vector(irq
);
1518 ioapic_register_intr(irq
, trigger
);
1520 disable_8259A_irq(irq
);
1522 ioapic_write_entry(apic
, pin
, entry
);
1525 static void __init
setup_IO_APIC_irqs(void)
1527 int apic
, pin
, idx
, irq
, first_notcon
= 1;
1529 apic_printk(APIC_VERBOSE
, KERN_DEBUG
"init IO_APIC IRQs\n");
1531 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1532 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1534 idx
= find_irq_entry(apic
,pin
,mp_INT
);
1537 apic_printk(APIC_VERBOSE
, KERN_DEBUG
" IO-APIC (apicid-pin) %d-%d", mp_ioapics
[apic
].mp_apicid
, pin
);
1540 apic_printk(APIC_VERBOSE
, ", %d-%d", mp_ioapics
[apic
].mp_apicid
, pin
);
1543 if (!first_notcon
) {
1544 apic_printk(APIC_VERBOSE
, " not connected.\n");
1548 irq
= pin_2_irq(idx
, apic
, pin
);
1549 #ifdef CONFIG_X86_32
1550 if (multi_timer_check(apic
, irq
))
1553 add_pin_to_irq(irq
, apic
, pin
);
1555 setup_IO_APIC_irq(apic
, pin
, irq
,
1556 irq_trigger(idx
), irq_polarity(idx
));
1561 apic_printk(APIC_VERBOSE
, " not connected.\n");
1565 * Set up the timer pin, possibly with the 8259A-master behind.
1567 static void __init
setup_timer_IRQ0_pin(unsigned int apic
, unsigned int pin
,
1570 struct IO_APIC_route_entry entry
;
1572 #ifdef CONFIG_INTR_REMAP
1573 if (intr_remapping_enabled
)
1577 memset(&entry
, 0, sizeof(entry
));
1580 * We use logical delivery to get the timer IRQ
1583 entry
.dest_mode
= INT_DEST_MODE
;
1584 entry
.mask
= 1; /* mask IRQ now */
1585 entry
.dest
= cpu_mask_to_apicid(TARGET_CPUS
);
1586 entry
.delivery_mode
= INT_DELIVERY_MODE
;
1589 entry
.vector
= vector
;
1592 * The timer IRQ doesn't have to know that behind the
1593 * scene we may have a 8259A-master in AEOI mode ...
1595 set_irq_chip_and_handler_name(0, &ioapic_chip
, handle_edge_irq
, "edge");
1598 * Add it to the IO-APIC irq-routing table:
1600 ioapic_write_entry(apic
, pin
, entry
);
1604 __apicdebuginit(void) print_IO_APIC(void)
1607 union IO_APIC_reg_00 reg_00
;
1608 union IO_APIC_reg_01 reg_01
;
1609 union IO_APIC_reg_02 reg_02
;
1610 union IO_APIC_reg_03 reg_03
;
1611 unsigned long flags
;
1612 struct irq_cfg
*cfg
;
1614 if (apic_verbosity
== APIC_QUIET
)
1617 printk(KERN_DEBUG
"number of MP IRQ sources: %d.\n", mp_irq_entries
);
1618 for (i
= 0; i
< nr_ioapics
; i
++)
1619 printk(KERN_DEBUG
"number of IO-APIC #%d registers: %d.\n",
1620 mp_ioapics
[i
].mp_apicid
, nr_ioapic_registers
[i
]);
1623 * We are a bit conservative about what we expect. We have to
1624 * know about every hardware change ASAP.
1626 printk(KERN_INFO
"testing the IO APIC.......................\n");
1628 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1630 spin_lock_irqsave(&ioapic_lock
, flags
);
1631 reg_00
.raw
= io_apic_read(apic
, 0);
1632 reg_01
.raw
= io_apic_read(apic
, 1);
1633 if (reg_01
.bits
.version
>= 0x10)
1634 reg_02
.raw
= io_apic_read(apic
, 2);
1635 if (reg_01
.bits
.version
>= 0x20)
1636 reg_03
.raw
= io_apic_read(apic
, 3);
1637 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1640 printk(KERN_DEBUG
"IO APIC #%d......\n", mp_ioapics
[apic
].mp_apicid
);
1641 printk(KERN_DEBUG
".... register #00: %08X\n", reg_00
.raw
);
1642 printk(KERN_DEBUG
"....... : physical APIC id: %02X\n", reg_00
.bits
.ID
);
1643 printk(KERN_DEBUG
"....... : Delivery Type: %X\n", reg_00
.bits
.delivery_type
);
1644 printk(KERN_DEBUG
"....... : LTS : %X\n", reg_00
.bits
.LTS
);
1646 printk(KERN_DEBUG
".... register #01: %08X\n", *(int *)®_01
);
1647 printk(KERN_DEBUG
"....... : max redirection entries: %04X\n", reg_01
.bits
.entries
);
1649 printk(KERN_DEBUG
"....... : PRQ implemented: %X\n", reg_01
.bits
.PRQ
);
1650 printk(KERN_DEBUG
"....... : IO APIC version: %04X\n", reg_01
.bits
.version
);
1653 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1654 * but the value of reg_02 is read as the previous read register
1655 * value, so ignore it if reg_02 == reg_01.
1657 if (reg_01
.bits
.version
>= 0x10 && reg_02
.raw
!= reg_01
.raw
) {
1658 printk(KERN_DEBUG
".... register #02: %08X\n", reg_02
.raw
);
1659 printk(KERN_DEBUG
"....... : arbitration: %02X\n", reg_02
.bits
.arbitration
);
1663 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1664 * or reg_03, but the value of reg_0[23] is read as the previous read
1665 * register value, so ignore it if reg_03 == reg_0[12].
1667 if (reg_01
.bits
.version
>= 0x20 && reg_03
.raw
!= reg_02
.raw
&&
1668 reg_03
.raw
!= reg_01
.raw
) {
1669 printk(KERN_DEBUG
".... register #03: %08X\n", reg_03
.raw
);
1670 printk(KERN_DEBUG
"....... : Boot DT : %X\n", reg_03
.bits
.boot_DT
);
1673 printk(KERN_DEBUG
".... IRQ redirection table:\n");
1675 printk(KERN_DEBUG
" NR Dst Mask Trig IRR Pol"
1676 " Stat Dmod Deli Vect: \n");
1678 for (i
= 0; i
<= reg_01
.bits
.entries
; i
++) {
1679 struct IO_APIC_route_entry entry
;
1681 entry
= ioapic_read_entry(apic
, i
);
1683 printk(KERN_DEBUG
" %02x %03X ",
1688 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1693 entry
.delivery_status
,
1695 entry
.delivery_mode
,
1700 printk(KERN_DEBUG
"IRQ to pin mappings:\n");
1701 for_each_irq_cfg(cfg
) {
1702 struct irq_pin_list
*entry
= cfg
->irq_2_pin
;
1705 printk(KERN_DEBUG
"IRQ%d ", cfg
->irq
);
1707 printk("-> %d:%d", entry
->apic
, entry
->pin
);
1710 entry
= entry
->next
;
1715 printk(KERN_INFO
".................................... done.\n");
1720 __apicdebuginit(void) print_APIC_bitfield(int base
)
1725 if (apic_verbosity
== APIC_QUIET
)
1728 printk(KERN_DEBUG
"0123456789abcdef0123456789abcdef\n" KERN_DEBUG
);
1729 for (i
= 0; i
< 8; i
++) {
1730 v
= apic_read(base
+ i
*0x10);
1731 for (j
= 0; j
< 32; j
++) {
1741 __apicdebuginit(void) print_local_APIC(void *dummy
)
1743 unsigned int v
, ver
, maxlvt
;
1746 if (apic_verbosity
== APIC_QUIET
)
1749 printk("\n" KERN_DEBUG
"printing local APIC contents on CPU#%d/%d:\n",
1750 smp_processor_id(), hard_smp_processor_id());
1751 v
= apic_read(APIC_ID
);
1752 printk(KERN_INFO
"... APIC ID: %08x (%01x)\n", v
, read_apic_id());
1753 v
= apic_read(APIC_LVR
);
1754 printk(KERN_INFO
"... APIC VERSION: %08x\n", v
);
1755 ver
= GET_APIC_VERSION(v
);
1756 maxlvt
= lapic_get_maxlvt();
1758 v
= apic_read(APIC_TASKPRI
);
1759 printk(KERN_DEBUG
"... APIC TASKPRI: %08x (%02x)\n", v
, v
& APIC_TPRI_MASK
);
1761 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1762 v
= apic_read(APIC_ARBPRI
);
1763 printk(KERN_DEBUG
"... APIC ARBPRI: %08x (%02x)\n", v
,
1764 v
& APIC_ARBPRI_MASK
);
1765 v
= apic_read(APIC_PROCPRI
);
1766 printk(KERN_DEBUG
"... APIC PROCPRI: %08x\n", v
);
1769 v
= apic_read(APIC_EOI
);
1770 printk(KERN_DEBUG
"... APIC EOI: %08x\n", v
);
1771 v
= apic_read(APIC_RRR
);
1772 printk(KERN_DEBUG
"... APIC RRR: %08x\n", v
);
1773 v
= apic_read(APIC_LDR
);
1774 printk(KERN_DEBUG
"... APIC LDR: %08x\n", v
);
1775 v
= apic_read(APIC_DFR
);
1776 printk(KERN_DEBUG
"... APIC DFR: %08x\n", v
);
1777 v
= apic_read(APIC_SPIV
);
1778 printk(KERN_DEBUG
"... APIC SPIV: %08x\n", v
);
1780 printk(KERN_DEBUG
"... APIC ISR field:\n");
1781 print_APIC_bitfield(APIC_ISR
);
1782 printk(KERN_DEBUG
"... APIC TMR field:\n");
1783 print_APIC_bitfield(APIC_TMR
);
1784 printk(KERN_DEBUG
"... APIC IRR field:\n");
1785 print_APIC_bitfield(APIC_IRR
);
1787 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1788 if (maxlvt
> 3) /* Due to the Pentium erratum 3AP. */
1789 apic_write(APIC_ESR
, 0);
1791 v
= apic_read(APIC_ESR
);
1792 printk(KERN_DEBUG
"... APIC ESR: %08x\n", v
);
1795 icr
= apic_icr_read();
1796 printk(KERN_DEBUG
"... APIC ICR: %08x\n", icr
);
1797 printk(KERN_DEBUG
"... APIC ICR2: %08x\n", icr
>> 32);
1799 v
= apic_read(APIC_LVTT
);
1800 printk(KERN_DEBUG
"... APIC LVTT: %08x\n", v
);
1802 if (maxlvt
> 3) { /* PC is LVT#4. */
1803 v
= apic_read(APIC_LVTPC
);
1804 printk(KERN_DEBUG
"... APIC LVTPC: %08x\n", v
);
1806 v
= apic_read(APIC_LVT0
);
1807 printk(KERN_DEBUG
"... APIC LVT0: %08x\n", v
);
1808 v
= apic_read(APIC_LVT1
);
1809 printk(KERN_DEBUG
"... APIC LVT1: %08x\n", v
);
1811 if (maxlvt
> 2) { /* ERR is LVT#3. */
1812 v
= apic_read(APIC_LVTERR
);
1813 printk(KERN_DEBUG
"... APIC LVTERR: %08x\n", v
);
1816 v
= apic_read(APIC_TMICT
);
1817 printk(KERN_DEBUG
"... APIC TMICT: %08x\n", v
);
1818 v
= apic_read(APIC_TMCCT
);
1819 printk(KERN_DEBUG
"... APIC TMCCT: %08x\n", v
);
1820 v
= apic_read(APIC_TDCR
);
1821 printk(KERN_DEBUG
"... APIC TDCR: %08x\n", v
);
1825 __apicdebuginit(void) print_all_local_APICs(void)
1827 on_each_cpu(print_local_APIC
, NULL
, 1);
1830 __apicdebuginit(void) print_PIC(void)
1833 unsigned long flags
;
1835 if (apic_verbosity
== APIC_QUIET
)
1838 printk(KERN_DEBUG
"\nprinting PIC contents\n");
1840 spin_lock_irqsave(&i8259A_lock
, flags
);
1842 v
= inb(0xa1) << 8 | inb(0x21);
1843 printk(KERN_DEBUG
"... PIC IMR: %04x\n", v
);
1845 v
= inb(0xa0) << 8 | inb(0x20);
1846 printk(KERN_DEBUG
"... PIC IRR: %04x\n", v
);
1850 v
= inb(0xa0) << 8 | inb(0x20);
1854 spin_unlock_irqrestore(&i8259A_lock
, flags
);
1856 printk(KERN_DEBUG
"... PIC ISR: %04x\n", v
);
1858 v
= inb(0x4d1) << 8 | inb(0x4d0);
1859 printk(KERN_DEBUG
"... PIC ELCR: %04x\n", v
);
1862 __apicdebuginit(int) print_all_ICs(void)
1865 print_all_local_APICs();
1871 fs_initcall(print_all_ICs
);
1874 /* Where if anywhere is the i8259 connect in external int mode */
1875 static struct { int pin
, apic
; } ioapic_i8259
= { -1, -1 };
1877 void __init
enable_IO_APIC(void)
1879 union IO_APIC_reg_01 reg_01
;
1880 int i8259_apic
, i8259_pin
;
1882 unsigned long flags
;
1884 #ifdef CONFIG_X86_32
1887 for (i
= 0; i
< MAX_PIRQS
; i
++)
1888 pirq_entries
[i
] = -1;
1892 * The number of IO-APIC IRQ registers (== #pins):
1894 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1895 spin_lock_irqsave(&ioapic_lock
, flags
);
1896 reg_01
.raw
= io_apic_read(apic
, 1);
1897 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1898 nr_ioapic_registers
[apic
] = reg_01
.bits
.entries
+1;
1900 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
1902 /* See if any of the pins is in ExtINT mode */
1903 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1904 struct IO_APIC_route_entry entry
;
1905 entry
= ioapic_read_entry(apic
, pin
);
1907 /* If the interrupt line is enabled and in ExtInt mode
1908 * I have found the pin where the i8259 is connected.
1910 if ((entry
.mask
== 0) && (entry
.delivery_mode
== dest_ExtINT
)) {
1911 ioapic_i8259
.apic
= apic
;
1912 ioapic_i8259
.pin
= pin
;
1918 /* Look to see what if the MP table has reported the ExtINT */
1919 /* If we could not find the appropriate pin by looking at the ioapic
1920 * the i8259 probably is not connected the ioapic but give the
1921 * mptable a chance anyway.
1923 i8259_pin
= find_isa_irq_pin(0, mp_ExtINT
);
1924 i8259_apic
= find_isa_irq_apic(0, mp_ExtINT
);
1925 /* Trust the MP table if nothing is setup in the hardware */
1926 if ((ioapic_i8259
.pin
== -1) && (i8259_pin
>= 0)) {
1927 printk(KERN_WARNING
"ExtINT not setup in hardware but reported by MP table\n");
1928 ioapic_i8259
.pin
= i8259_pin
;
1929 ioapic_i8259
.apic
= i8259_apic
;
1931 /* Complain if the MP table and the hardware disagree */
1932 if (((ioapic_i8259
.apic
!= i8259_apic
) || (ioapic_i8259
.pin
!= i8259_pin
)) &&
1933 (i8259_pin
>= 0) && (ioapic_i8259
.pin
>= 0))
1935 printk(KERN_WARNING
"ExtINT in hardware and MP table differ\n");
1939 * Do not trust the IO-APIC being empty at bootup
1945 * Not an __init, needed by the reboot code
1947 void disable_IO_APIC(void)
1950 * Clear the IO-APIC before rebooting:
1955 * If the i8259 is routed through an IOAPIC
1956 * Put that IOAPIC in virtual wire mode
1957 * so legacy interrupts can be delivered.
1959 if (ioapic_i8259
.pin
!= -1) {
1960 struct IO_APIC_route_entry entry
;
1962 memset(&entry
, 0, sizeof(entry
));
1963 entry
.mask
= 0; /* Enabled */
1964 entry
.trigger
= 0; /* Edge */
1966 entry
.polarity
= 0; /* High */
1967 entry
.delivery_status
= 0;
1968 entry
.dest_mode
= 0; /* Physical */
1969 entry
.delivery_mode
= dest_ExtINT
; /* ExtInt */
1971 entry
.dest
= read_apic_id();
1974 * Add it to the IO-APIC irq-routing table:
1976 ioapic_write_entry(ioapic_i8259
.apic
, ioapic_i8259
.pin
, entry
);
1979 disconnect_bsp_APIC(ioapic_i8259
.pin
!= -1);
1982 #ifdef CONFIG_X86_32
1984 * function to set the IO-APIC physical IDs based on the
1985 * values stored in the MPC table.
1987 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1990 static void __init
setup_ioapic_ids_from_mpc(void)
1992 union IO_APIC_reg_00 reg_00
;
1993 physid_mask_t phys_id_present_map
;
1996 unsigned char old_id
;
1997 unsigned long flags
;
1999 if (x86_quirks
->setup_ioapic_ids
&& x86_quirks
->setup_ioapic_ids())
2003 * Don't check I/O APIC IDs for xAPIC systems. They have
2004 * no meaning without the serial APIC bus.
2006 if (!(boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
)
2007 || APIC_XAPIC(apic_version
[boot_cpu_physical_apicid
]))
2010 * This is broken; anything with a real cpu count has to
2011 * circumvent this idiocy regardless.
2013 phys_id_present_map
= ioapic_phys_id_map(phys_cpu_present_map
);
2016 * Set the IOAPIC ID to the value stored in the MPC table.
2018 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
2020 /* Read the register 0 value */
2021 spin_lock_irqsave(&ioapic_lock
, flags
);
2022 reg_00
.raw
= io_apic_read(apic
, 0);
2023 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2025 old_id
= mp_ioapics
[apic
].mp_apicid
;
2027 if (mp_ioapics
[apic
].mp_apicid
>= get_physical_broadcast()) {
2028 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
2029 apic
, mp_ioapics
[apic
].mp_apicid
);
2030 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
2032 mp_ioapics
[apic
].mp_apicid
= reg_00
.bits
.ID
;
2036 * Sanity check, is the ID really free? Every APIC in a
2037 * system must have a unique ID or we get lots of nice
2038 * 'stuck on smp_invalidate_needed IPI wait' messages.
2040 if (check_apicid_used(phys_id_present_map
,
2041 mp_ioapics
[apic
].mp_apicid
)) {
2042 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID %d is already used!...\n",
2043 apic
, mp_ioapics
[apic
].mp_apicid
);
2044 for (i
= 0; i
< get_physical_broadcast(); i
++)
2045 if (!physid_isset(i
, phys_id_present_map
))
2047 if (i
>= get_physical_broadcast())
2048 panic("Max APIC ID exceeded!\n");
2049 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
2051 physid_set(i
, phys_id_present_map
);
2052 mp_ioapics
[apic
].mp_apicid
= i
;
2055 tmp
= apicid_to_cpu_present(mp_ioapics
[apic
].mp_apicid
);
2056 apic_printk(APIC_VERBOSE
, "Setting %d in the "
2057 "phys_id_present_map\n",
2058 mp_ioapics
[apic
].mp_apicid
);
2059 physids_or(phys_id_present_map
, phys_id_present_map
, tmp
);
2064 * We need to adjust the IRQ routing table
2065 * if the ID changed.
2067 if (old_id
!= mp_ioapics
[apic
].mp_apicid
)
2068 for (i
= 0; i
< mp_irq_entries
; i
++)
2069 if (mp_irqs
[i
].mp_dstapic
== old_id
)
2070 mp_irqs
[i
].mp_dstapic
2071 = mp_ioapics
[apic
].mp_apicid
;
2074 * Read the right value from the MPC table and
2075 * write it into the ID register.
2077 apic_printk(APIC_VERBOSE
, KERN_INFO
2078 "...changing IO-APIC physical APIC ID to %d ...",
2079 mp_ioapics
[apic
].mp_apicid
);
2081 reg_00
.bits
.ID
= mp_ioapics
[apic
].mp_apicid
;
2082 spin_lock_irqsave(&ioapic_lock
, flags
);
2087 spin_lock_irqsave(&ioapic_lock
, flags
);
2088 reg_00
.raw
= io_apic_read(apic
, 0);
2089 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2090 if (reg_00
.bits
.ID
!= mp_ioapics
[apic
].mp_apicid
)
2091 printk("could not set ID!\n");
2093 apic_printk(APIC_VERBOSE
, " ok.\n");
2098 int no_timer_check __initdata
;
2100 static int __init
notimercheck(char *s
)
2105 __setup("no_timer_check", notimercheck
);
2108 * There is a nasty bug in some older SMP boards, their mptable lies
2109 * about the timer IRQ. We do the following to work around the situation:
2111 * - timer IRQ defaults to IO-APIC IRQ
2112 * - if this function detects that timer IRQs are defunct, then we fall
2113 * back to ISA timer IRQs
2115 static int __init
timer_irq_works(void)
2117 unsigned long t1
= jiffies
;
2118 unsigned long flags
;
2123 local_save_flags(flags
);
2125 /* Let ten ticks pass... */
2126 mdelay((10 * 1000) / HZ
);
2127 local_irq_restore(flags
);
2130 * Expect a few ticks at least, to be sure some possible
2131 * glue logic does not lock up after one or two first
2132 * ticks in a non-ExtINT mode. Also the local APIC
2133 * might have cached one ExtINT interrupt. Finally, at
2134 * least one tick may be lost due to delays.
2138 if (time_after(jiffies
, t1
+ 4))
2144 * In the SMP+IOAPIC case it might happen that there are an unspecified
2145 * number of pending IRQ events unhandled. These cases are very rare,
2146 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2147 * better to do it this way as thus we do not have to be aware of
2148 * 'pending' interrupts in the IRQ path, except at this point.
2151 * Edge triggered needs to resend any interrupt
2152 * that was delayed but this is now handled in the device
2157 * Starting up a edge-triggered IO-APIC interrupt is
2158 * nasty - we need to make sure that we get the edge.
2159 * If it is already asserted for some reason, we need
2160 * return 1 to indicate that is was pending.
2162 * This is not complete - we should be able to fake
2163 * an edge even if it isn't on the 8259A...
2166 static unsigned int startup_ioapic_irq(unsigned int irq
)
2168 int was_pending
= 0;
2169 unsigned long flags
;
2171 spin_lock_irqsave(&ioapic_lock
, flags
);
2173 disable_8259A_irq(irq
);
2174 if (i8259A_irq_pending(irq
))
2177 __unmask_IO_APIC_irq(irq
);
2178 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2183 #ifdef CONFIG_X86_64
2184 static int ioapic_retrigger_irq(unsigned int irq
)
2187 struct irq_cfg
*cfg
= irq_cfg(irq
);
2188 unsigned long flags
;
2190 spin_lock_irqsave(&vector_lock
, flags
);
2191 send_IPI_mask(cpumask_of_cpu(first_cpu(cfg
->domain
)), cfg
->vector
);
2192 spin_unlock_irqrestore(&vector_lock
, flags
);
2197 static int ioapic_retrigger_irq(unsigned int irq
)
2199 send_IPI_self(irq_cfg(irq
)->vector
);
2206 * Level and edge triggered IO-APIC interrupts need different handling,
2207 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2208 * handled with the level-triggered descriptor, but that one has slightly
2209 * more overhead. Level-triggered interrupts cannot be handled with the
2210 * edge-triggered handler, without risking IRQ storms and other ugly
2216 #ifdef CONFIG_INTR_REMAP
2217 static void ir_irq_migration(struct work_struct
*work
);
2219 static DECLARE_DELAYED_WORK(ir_migration_work
, ir_irq_migration
);
2222 * Migrate the IO-APIC irq in the presence of intr-remapping.
2224 * For edge triggered, irq migration is a simple atomic update(of vector
2225 * and cpu destination) of IRTE and flush the hardware cache.
2227 * For level triggered, we need to modify the io-apic RTE aswell with the update
2228 * vector information, along with modifying IRTE with vector and destination.
2229 * So irq migration for level triggered is little bit more complex compared to
2230 * edge triggered migration. But the good news is, we use the same algorithm
2231 * for level triggered migration as we have today, only difference being,
2232 * we now initiate the irq migration from process context instead of the
2233 * interrupt context.
2235 * In future, when we do a directed EOI (combined with cpu EOI broadcast
2236 * suppression) to the IO-APIC, level triggered irq migration will also be
2237 * as simple as edge triggered migration and we can do the irq migration
2238 * with a simple atomic update to IO-APIC RTE.
2240 static void migrate_ioapic_irq(int irq
, cpumask_t mask
)
2242 struct irq_cfg
*cfg
;
2243 struct irq_desc
*desc
;
2244 cpumask_t tmp
, cleanup_mask
;
2246 int modify_ioapic_rte
;
2248 unsigned long flags
;
2250 cpus_and(tmp
, mask
, cpu_online_map
);
2251 if (cpus_empty(tmp
))
2254 if (get_irte(irq
, &irte
))
2257 if (assign_irq_vector(irq
, mask
))
2261 cpus_and(tmp
, cfg
->domain
, mask
);
2262 dest
= cpu_mask_to_apicid(tmp
);
2264 desc
= irq_to_desc(irq
);
2265 modify_ioapic_rte
= desc
->status
& IRQ_LEVEL
;
2266 if (modify_ioapic_rte
) {
2267 spin_lock_irqsave(&ioapic_lock
, flags
);
2268 __target_IO_APIC_irq(irq
, dest
, cfg
->vector
);
2269 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2272 irte
.vector
= cfg
->vector
;
2273 irte
.dest_id
= IRTE_DEST(dest
);
2276 * Modified the IRTE and flushes the Interrupt entry cache.
2278 modify_irte(irq
, &irte
);
2280 if (cfg
->move_in_progress
) {
2281 cpus_and(cleanup_mask
, cfg
->old_domain
, cpu_online_map
);
2282 cfg
->move_cleanup_count
= cpus_weight(cleanup_mask
);
2283 send_IPI_mask(cleanup_mask
, IRQ_MOVE_CLEANUP_VECTOR
);
2284 cfg
->move_in_progress
= 0;
2287 desc
->affinity
= mask
;
2290 static int migrate_irq_remapped_level(int irq
)
2293 struct irq_desc
*desc
= irq_to_desc(irq
);
2295 mask_IO_APIC_irq(irq
);
2297 if (io_apic_level_ack_pending(irq
)) {
2299 * Interrupt in progress. Migrating irq now will change the
2300 * vector information in the IO-APIC RTE and that will confuse
2301 * the EOI broadcast performed by cpu.
2302 * So, delay the irq migration to the next instance.
2304 schedule_delayed_work(&ir_migration_work
, 1);
2308 /* everthing is clear. we have right of way */
2309 migrate_ioapic_irq(irq
, desc
->pending_mask
);
2312 desc
->status
&= ~IRQ_MOVE_PENDING
;
2313 cpus_clear(desc
->pending_mask
);
2316 unmask_IO_APIC_irq(irq
);
2320 static void ir_irq_migration(struct work_struct
*work
)
2323 struct irq_desc
*desc
;
2325 for_each_irq_desc(irq
, desc
) {
2326 if (desc
->status
& IRQ_MOVE_PENDING
) {
2327 unsigned long flags
;
2329 spin_lock_irqsave(&desc
->lock
, flags
);
2330 if (!desc
->chip
->set_affinity
||
2331 !(desc
->status
& IRQ_MOVE_PENDING
)) {
2332 desc
->status
&= ~IRQ_MOVE_PENDING
;
2333 spin_unlock_irqrestore(&desc
->lock
, flags
);
2337 desc
->chip
->set_affinity(irq
, desc
->pending_mask
);
2338 spin_unlock_irqrestore(&desc
->lock
, flags
);
2344 * Migrates the IRQ destination in the process context.
2346 static void set_ir_ioapic_affinity_irq(unsigned int irq
, cpumask_t mask
)
2348 struct irq_desc
*desc
= irq_to_desc(irq
);
2350 if (desc
->status
& IRQ_LEVEL
) {
2351 desc
->status
|= IRQ_MOVE_PENDING
;
2352 desc
->pending_mask
= mask
;
2353 migrate_irq_remapped_level(irq
);
2357 migrate_ioapic_irq(irq
, mask
);
2361 asmlinkage
void smp_irq_move_cleanup_interrupt(void)
2363 unsigned vector
, me
;
2365 #ifdef CONFIG_X86_64
2370 me
= smp_processor_id();
2371 for (vector
= FIRST_EXTERNAL_VECTOR
; vector
< NR_VECTORS
; vector
++) {
2373 struct irq_desc
*desc
;
2374 struct irq_cfg
*cfg
;
2375 irq
= __get_cpu_var(vector_irq
)[vector
];
2377 desc
= irq_to_desc(irq
);
2382 spin_lock(&desc
->lock
);
2383 if (!cfg
->move_cleanup_count
)
2386 if ((vector
== cfg
->vector
) && cpu_isset(me
, cfg
->domain
))
2389 __get_cpu_var(vector_irq
)[vector
] = -1;
2390 cfg
->move_cleanup_count
--;
2392 spin_unlock(&desc
->lock
);
2398 static void irq_complete_move(unsigned int irq
)
2400 struct irq_cfg
*cfg
= irq_cfg(irq
);
2401 unsigned vector
, me
;
2403 if (likely(!cfg
->move_in_progress
))
2406 vector
= ~get_irq_regs()->orig_ax
;
2407 me
= smp_processor_id();
2408 if ((vector
== cfg
->vector
) && cpu_isset(me
, cfg
->domain
)) {
2409 cpumask_t cleanup_mask
;
2411 cpus_and(cleanup_mask
, cfg
->old_domain
, cpu_online_map
);
2412 cfg
->move_cleanup_count
= cpus_weight(cleanup_mask
);
2413 send_IPI_mask(cleanup_mask
, IRQ_MOVE_CLEANUP_VECTOR
);
2414 cfg
->move_in_progress
= 0;
2418 static inline void irq_complete_move(unsigned int irq
) {}
2420 #ifdef CONFIG_INTR_REMAP
2421 static void ack_x2apic_level(unsigned int irq
)
2426 static void ack_x2apic_edge(unsigned int irq
)
2432 static void ack_apic_edge(unsigned int irq
)
2434 irq_complete_move(irq
);
2435 move_native_irq(irq
);
2439 #ifdef CONFIG_X86_64
2440 static void ack_apic_level(unsigned int irq
)
2442 int do_unmask_irq
= 0;
2444 irq_complete_move(irq
);
2445 #ifdef CONFIG_GENERIC_PENDING_IRQ
2446 /* If we are moving the irq we need to mask it */
2447 if (unlikely(irq_to_desc(irq
)->status
& IRQ_MOVE_PENDING
)) {
2449 mask_IO_APIC_irq(irq
);
2454 * We must acknowledge the irq before we move it or the acknowledge will
2455 * not propagate properly.
2459 /* Now we can move and renable the irq */
2460 if (unlikely(do_unmask_irq
)) {
2461 /* Only migrate the irq if the ack has been received.
2463 * On rare occasions the broadcast level triggered ack gets
2464 * delayed going to ioapics, and if we reprogram the
2465 * vector while Remote IRR is still set the irq will never
2468 * To prevent this scenario we read the Remote IRR bit
2469 * of the ioapic. This has two effects.
2470 * - On any sane system the read of the ioapic will
2471 * flush writes (and acks) going to the ioapic from
2473 * - We get to see if the ACK has actually been delivered.
2475 * Based on failed experiments of reprogramming the
2476 * ioapic entry from outside of irq context starting
2477 * with masking the ioapic entry and then polling until
2478 * Remote IRR was clear before reprogramming the
2479 * ioapic I don't trust the Remote IRR bit to be
2480 * completey accurate.
2482 * However there appears to be no other way to plug
2483 * this race, so if the Remote IRR bit is not
2484 * accurate and is causing problems then it is a hardware bug
2485 * and you can go talk to the chipset vendor about it.
2487 if (!io_apic_level_ack_pending(irq
))
2488 move_masked_irq(irq
);
2489 unmask_IO_APIC_irq(irq
);
2493 atomic_t irq_mis_count
;
2494 static void ack_apic_level(unsigned int irq
)
2499 irq_complete_move(irq
);
2500 move_native_irq(irq
);
2502 * It appears there is an erratum which affects at least version 0x11
2503 * of I/O APIC (that's the 82093AA and cores integrated into various
2504 * chipsets). Under certain conditions a level-triggered interrupt is
2505 * erroneously delivered as edge-triggered one but the respective IRR
2506 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2507 * message but it will never arrive and further interrupts are blocked
2508 * from the source. The exact reason is so far unknown, but the
2509 * phenomenon was observed when two consecutive interrupt requests
2510 * from a given source get delivered to the same CPU and the source is
2511 * temporarily disabled in between.
2513 * A workaround is to simulate an EOI message manually. We achieve it
2514 * by setting the trigger mode to edge and then to level when the edge
2515 * trigger mode gets detected in the TMR of a local APIC for a
2516 * level-triggered interrupt. We mask the source for the time of the
2517 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2518 * The idea is from Manfred Spraul. --macro
2520 i
= irq_cfg(irq
)->vector
;
2522 v
= apic_read(APIC_TMR
+ ((i
& ~0x1f) >> 1));
2526 if (!(v
& (1 << (i
& 0x1f)))) {
2527 atomic_inc(&irq_mis_count
);
2528 spin_lock(&ioapic_lock
);
2529 __mask_and_edge_IO_APIC_irq(irq
);
2530 __unmask_and_level_IO_APIC_irq(irq
);
2531 spin_unlock(&ioapic_lock
);
2536 static struct irq_chip ioapic_chip __read_mostly
= {
2538 .startup
= startup_ioapic_irq
,
2539 .mask
= mask_IO_APIC_irq
,
2540 .unmask
= unmask_IO_APIC_irq
,
2541 .ack
= ack_apic_edge
,
2542 .eoi
= ack_apic_level
,
2544 .set_affinity
= set_ioapic_affinity_irq
,
2546 .retrigger
= ioapic_retrigger_irq
,
2549 #ifdef CONFIG_INTR_REMAP
2550 static struct irq_chip ir_ioapic_chip __read_mostly
= {
2551 .name
= "IR-IO-APIC",
2552 .startup
= startup_ioapic_irq
,
2553 .mask
= mask_IO_APIC_irq
,
2554 .unmask
= unmask_IO_APIC_irq
,
2555 .ack
= ack_x2apic_edge
,
2556 .eoi
= ack_x2apic_level
,
2558 .set_affinity
= set_ir_ioapic_affinity_irq
,
2560 .retrigger
= ioapic_retrigger_irq
,
2564 static inline void init_IO_APIC_traps(void)
2567 struct irq_desc
*desc
;
2568 struct irq_cfg
*cfg
;
2571 * NOTE! The local APIC isn't very good at handling
2572 * multiple interrupts at the same interrupt level.
2573 * As the interrupt level is determined by taking the
2574 * vector number and shifting that right by 4, we
2575 * want to spread these out a bit so that they don't
2576 * all fall in the same interrupt level.
2578 * Also, we've got to be careful not to trash gate
2579 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2581 for_each_irq_cfg(cfg
) {
2583 if (IO_APIC_IRQ(irq
) && !cfg
->vector
) {
2585 * Hmm.. We don't have an entry for this,
2586 * so default to an old-fashioned 8259
2587 * interrupt if we can..
2590 make_8259A_irq(irq
);
2592 desc
= irq_to_desc(irq
);
2593 /* Strange. Oh, well.. */
2594 desc
->chip
= &no_irq_chip
;
2601 * The local APIC irq-chip implementation:
2604 static void mask_lapic_irq(unsigned int irq
)
2608 v
= apic_read(APIC_LVT0
);
2609 apic_write(APIC_LVT0
, v
| APIC_LVT_MASKED
);
2612 static void unmask_lapic_irq(unsigned int irq
)
2616 v
= apic_read(APIC_LVT0
);
2617 apic_write(APIC_LVT0
, v
& ~APIC_LVT_MASKED
);
2620 static void ack_lapic_irq (unsigned int irq
)
2625 static struct irq_chip lapic_chip __read_mostly
= {
2626 .name
= "local-APIC",
2627 .mask
= mask_lapic_irq
,
2628 .unmask
= unmask_lapic_irq
,
2629 .ack
= ack_lapic_irq
,
2632 static void lapic_register_intr(int irq
)
2634 struct irq_desc
*desc
;
2636 desc
= irq_to_desc(irq
);
2637 desc
->status
&= ~IRQ_LEVEL
;
2638 set_irq_chip_and_handler_name(irq
, &lapic_chip
, handle_edge_irq
,
2642 static void __init
setup_nmi(void)
2645 * Dirty trick to enable the NMI watchdog ...
2646 * We put the 8259A master into AEOI mode and
2647 * unmask on all local APICs LVT0 as NMI.
2649 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2650 * is from Maciej W. Rozycki - so we do not have to EOI from
2651 * the NMI handler or the timer interrupt.
2653 apic_printk(APIC_VERBOSE
, KERN_INFO
"activating NMI Watchdog ...");
2655 enable_NMI_through_LVT0();
2657 apic_printk(APIC_VERBOSE
, " done.\n");
2661 * This looks a bit hackish but it's about the only one way of sending
2662 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2663 * not support the ExtINT mode, unfortunately. We need to send these
2664 * cycles as some i82489DX-based boards have glue logic that keeps the
2665 * 8259A interrupt line asserted until INTA. --macro
2667 static inline void __init
unlock_ExtINT_logic(void)
2670 struct IO_APIC_route_entry entry0
, entry1
;
2671 unsigned char save_control
, save_freq_select
;
2673 pin
= find_isa_irq_pin(8, mp_INT
);
2678 apic
= find_isa_irq_apic(8, mp_INT
);
2684 entry0
= ioapic_read_entry(apic
, pin
);
2685 clear_IO_APIC_pin(apic
, pin
);
2687 memset(&entry1
, 0, sizeof(entry1
));
2689 entry1
.dest_mode
= 0; /* physical delivery */
2690 entry1
.mask
= 0; /* unmask IRQ now */
2691 entry1
.dest
= hard_smp_processor_id();
2692 entry1
.delivery_mode
= dest_ExtINT
;
2693 entry1
.polarity
= entry0
.polarity
;
2697 ioapic_write_entry(apic
, pin
, entry1
);
2699 save_control
= CMOS_READ(RTC_CONTROL
);
2700 save_freq_select
= CMOS_READ(RTC_FREQ_SELECT
);
2701 CMOS_WRITE((save_freq_select
& ~RTC_RATE_SELECT
) | 0x6,
2703 CMOS_WRITE(save_control
| RTC_PIE
, RTC_CONTROL
);
2708 if ((CMOS_READ(RTC_INTR_FLAGS
) & RTC_PF
) == RTC_PF
)
2712 CMOS_WRITE(save_control
, RTC_CONTROL
);
2713 CMOS_WRITE(save_freq_select
, RTC_FREQ_SELECT
);
2714 clear_IO_APIC_pin(apic
, pin
);
2716 ioapic_write_entry(apic
, pin
, entry0
);
2719 static int disable_timer_pin_1 __initdata
;
2720 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2721 static int __init
disable_timer_pin_setup(char *arg
)
2723 disable_timer_pin_1
= 1;
2726 early_param("disable_timer_pin_1", disable_timer_pin_setup
);
2728 int timer_through_8259 __initdata
;
2731 * This code may look a bit paranoid, but it's supposed to cooperate with
2732 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2733 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2734 * fanatically on his truly buggy board.
2736 * FIXME: really need to revamp this for all platforms.
2738 static inline void __init
check_timer(void)
2740 struct irq_cfg
*cfg
= irq_cfg(0);
2741 int apic1
, pin1
, apic2
, pin2
;
2742 unsigned long flags
;
2746 local_irq_save(flags
);
2748 ver
= apic_read(APIC_LVR
);
2749 ver
= GET_APIC_VERSION(ver
);
2752 * get/set the timer IRQ vector:
2754 disable_8259A_irq(0);
2755 assign_irq_vector(0, TARGET_CPUS
);
2758 * As IRQ0 is to be enabled in the 8259A, the virtual
2759 * wire has to be disabled in the local APIC. Also
2760 * timer interrupts need to be acknowledged manually in
2761 * the 8259A for the i82489DX when using the NMI
2762 * watchdog as that APIC treats NMIs as level-triggered.
2763 * The AEOI mode will finish them in the 8259A
2766 apic_write(APIC_LVT0
, APIC_LVT_MASKED
| APIC_DM_EXTINT
);
2768 #ifdef CONFIG_X86_32
2769 timer_ack
= (nmi_watchdog
== NMI_IO_APIC
&& !APIC_INTEGRATED(ver
));
2772 pin1
= find_isa_irq_pin(0, mp_INT
);
2773 apic1
= find_isa_irq_apic(0, mp_INT
);
2774 pin2
= ioapic_i8259
.pin
;
2775 apic2
= ioapic_i8259
.apic
;
2777 apic_printk(APIC_QUIET
, KERN_INFO
"..TIMER: vector=0x%02X "
2778 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2779 cfg
->vector
, apic1
, pin1
, apic2
, pin2
);
2782 * Some BIOS writers are clueless and report the ExtINTA
2783 * I/O APIC input from the cascaded 8259A as the timer
2784 * interrupt input. So just in case, if only one pin
2785 * was found above, try it both directly and through the
2789 #ifdef CONFIG_INTR_REMAP
2790 if (intr_remapping_enabled
)
2791 panic("BIOS bug: timer not connected to IO-APIC");
2796 } else if (pin2
== -1) {
2803 * Ok, does IRQ0 through the IOAPIC work?
2806 add_pin_to_irq(0, apic1
, pin1
);
2807 setup_timer_IRQ0_pin(apic1
, pin1
, cfg
->vector
);
2809 unmask_IO_APIC_irq(0);
2810 if (timer_irq_works()) {
2811 if (nmi_watchdog
== NMI_IO_APIC
) {
2813 enable_8259A_irq(0);
2815 if (disable_timer_pin_1
> 0)
2816 clear_IO_APIC_pin(0, pin1
);
2819 #ifdef CONFIG_INTR_REMAP
2820 if (intr_remapping_enabled
)
2821 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2823 clear_IO_APIC_pin(apic1
, pin1
);
2825 apic_printk(APIC_QUIET
, KERN_ERR
"..MP-BIOS bug: "
2826 "8254 timer not connected to IO-APIC\n");
2828 apic_printk(APIC_QUIET
, KERN_INFO
"...trying to set up timer "
2829 "(IRQ0) through the 8259A ...\n");
2830 apic_printk(APIC_QUIET
, KERN_INFO
2831 "..... (found apic %d pin %d) ...\n", apic2
, pin2
);
2833 * legacy devices should be connected to IO APIC #0
2835 replace_pin_at_irq(0, apic1
, pin1
, apic2
, pin2
);
2836 setup_timer_IRQ0_pin(apic2
, pin2
, cfg
->vector
);
2837 unmask_IO_APIC_irq(0);
2838 enable_8259A_irq(0);
2839 if (timer_irq_works()) {
2840 apic_printk(APIC_QUIET
, KERN_INFO
"....... works.\n");
2841 timer_through_8259
= 1;
2842 if (nmi_watchdog
== NMI_IO_APIC
) {
2843 disable_8259A_irq(0);
2845 enable_8259A_irq(0);
2850 * Cleanup, just in case ...
2852 disable_8259A_irq(0);
2853 clear_IO_APIC_pin(apic2
, pin2
);
2854 apic_printk(APIC_QUIET
, KERN_INFO
"....... failed.\n");
2857 if (nmi_watchdog
== NMI_IO_APIC
) {
2858 apic_printk(APIC_QUIET
, KERN_WARNING
"timer doesn't work "
2859 "through the IO-APIC - disabling NMI Watchdog!\n");
2860 nmi_watchdog
= NMI_NONE
;
2862 #ifdef CONFIG_X86_32
2866 apic_printk(APIC_QUIET
, KERN_INFO
2867 "...trying to set up timer as Virtual Wire IRQ...\n");
2869 lapic_register_intr(0);
2870 apic_write(APIC_LVT0
, APIC_DM_FIXED
| cfg
->vector
); /* Fixed mode */
2871 enable_8259A_irq(0);
2873 if (timer_irq_works()) {
2874 apic_printk(APIC_QUIET
, KERN_INFO
"..... works.\n");
2877 disable_8259A_irq(0);
2878 apic_write(APIC_LVT0
, APIC_LVT_MASKED
| APIC_DM_FIXED
| cfg
->vector
);
2879 apic_printk(APIC_QUIET
, KERN_INFO
"..... failed.\n");
2881 apic_printk(APIC_QUIET
, KERN_INFO
2882 "...trying to set up timer as ExtINT IRQ...\n");
2886 apic_write(APIC_LVT0
, APIC_DM_EXTINT
);
2888 unlock_ExtINT_logic();
2890 if (timer_irq_works()) {
2891 apic_printk(APIC_QUIET
, KERN_INFO
"..... works.\n");
2894 apic_printk(APIC_QUIET
, KERN_INFO
"..... failed :(.\n");
2895 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2896 "report. Then try booting with the 'noapic' option.\n");
2898 local_irq_restore(flags
);
2902 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2903 * to devices. However there may be an I/O APIC pin available for
2904 * this interrupt regardless. The pin may be left unconnected, but
2905 * typically it will be reused as an ExtINT cascade interrupt for
2906 * the master 8259A. In the MPS case such a pin will normally be
2907 * reported as an ExtINT interrupt in the MP table. With ACPI
2908 * there is no provision for ExtINT interrupts, and in the absence
2909 * of an override it would be treated as an ordinary ISA I/O APIC
2910 * interrupt, that is edge-triggered and unmasked by default. We
2911 * used to do this, but it caused problems on some systems because
2912 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2913 * the same ExtINT cascade interrupt to drive the local APIC of the
2914 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2915 * the I/O APIC in all cases now. No actual device should request
2916 * it anyway. --macro
2918 #define PIC_IRQS (1 << PIC_CASCADE_IR)
2920 void __init
setup_IO_APIC(void)
2923 #ifdef CONFIG_X86_32
2927 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
2931 io_apic_irqs
= ~PIC_IRQS
;
2933 apic_printk(APIC_VERBOSE
, "ENABLING IO-APIC IRQs\n");
2935 * Set up IO-APIC IRQ routing.
2937 #ifdef CONFIG_X86_32
2939 setup_ioapic_ids_from_mpc();
2942 setup_IO_APIC_irqs();
2943 init_IO_APIC_traps();
2948 * Called after all the initialization is done. If we didnt find any
2949 * APIC bugs then we can allow the modify fast path
2952 static int __init
io_apic_bug_finalize(void)
2954 if (sis_apic_bug
== -1)
2959 late_initcall(io_apic_bug_finalize
);
2961 struct sysfs_ioapic_data
{
2962 struct sys_device dev
;
2963 struct IO_APIC_route_entry entry
[0];
2965 static struct sysfs_ioapic_data
* mp_ioapic_data
[MAX_IO_APICS
];
2967 static int ioapic_suspend(struct sys_device
*dev
, pm_message_t state
)
2969 struct IO_APIC_route_entry
*entry
;
2970 struct sysfs_ioapic_data
*data
;
2973 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
2974 entry
= data
->entry
;
2975 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++, entry
++ )
2976 *entry
= ioapic_read_entry(dev
->id
, i
);
2981 static int ioapic_resume(struct sys_device
*dev
)
2983 struct IO_APIC_route_entry
*entry
;
2984 struct sysfs_ioapic_data
*data
;
2985 unsigned long flags
;
2986 union IO_APIC_reg_00 reg_00
;
2989 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
2990 entry
= data
->entry
;
2992 spin_lock_irqsave(&ioapic_lock
, flags
);
2993 reg_00
.raw
= io_apic_read(dev
->id
, 0);
2994 if (reg_00
.bits
.ID
!= mp_ioapics
[dev
->id
].mp_apicid
) {
2995 reg_00
.bits
.ID
= mp_ioapics
[dev
->id
].mp_apicid
;
2996 io_apic_write(dev
->id
, 0, reg_00
.raw
);
2998 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2999 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++)
3000 ioapic_write_entry(dev
->id
, i
, entry
[i
]);
3005 static struct sysdev_class ioapic_sysdev_class
= {
3007 .suspend
= ioapic_suspend
,
3008 .resume
= ioapic_resume
,
3011 static int __init
ioapic_init_sysfs(void)
3013 struct sys_device
* dev
;
3016 error
= sysdev_class_register(&ioapic_sysdev_class
);
3020 for (i
= 0; i
< nr_ioapics
; i
++ ) {
3021 size
= sizeof(struct sys_device
) + nr_ioapic_registers
[i
]
3022 * sizeof(struct IO_APIC_route_entry
);
3023 mp_ioapic_data
[i
] = kzalloc(size
, GFP_KERNEL
);
3024 if (!mp_ioapic_data
[i
]) {
3025 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
3028 dev
= &mp_ioapic_data
[i
]->dev
;
3030 dev
->cls
= &ioapic_sysdev_class
;
3031 error
= sysdev_register(dev
);
3033 kfree(mp_ioapic_data
[i
]);
3034 mp_ioapic_data
[i
] = NULL
;
3035 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
3043 device_initcall(ioapic_init_sysfs
);
3046 * Dynamic irq allocate and deallocation
3048 unsigned int create_irq_nr(unsigned int irq_want
)
3050 /* Allocate an unused irq */
3053 unsigned long flags
;
3054 struct irq_cfg
*cfg_new
;
3056 #ifndef CONFIG_HAVE_SPARSE_IRQ
3057 irq_want
= nr_irqs
- 1;
3061 spin_lock_irqsave(&vector_lock
, flags
);
3062 for (new = irq_want
; new > 0; new--) {
3063 if (platform_legacy_irq(new))
3065 cfg_new
= irq_cfg(new);
3066 if (cfg_new
&& cfg_new
->vector
!= 0)
3068 /* check if need to create one */
3070 cfg_new
= irq_cfg_alloc(new);
3071 if (__assign_irq_vector(new, TARGET_CPUS
) == 0)
3075 spin_unlock_irqrestore(&vector_lock
, flags
);
3078 dynamic_irq_init(irq
);
3083 int create_irq(void)
3087 irq
= create_irq_nr(nr_irqs
- 1);
3095 void destroy_irq(unsigned int irq
)
3097 unsigned long flags
;
3099 dynamic_irq_cleanup(irq
);
3101 #ifdef CONFIG_INTR_REMAP
3104 spin_lock_irqsave(&vector_lock
, flags
);
3105 __clear_irq_vector(irq
);
3106 spin_unlock_irqrestore(&vector_lock
, flags
);
3110 * MSI message composition
3112 #ifdef CONFIG_PCI_MSI
3113 static int msi_compose_msg(struct pci_dev
*pdev
, unsigned int irq
, struct msi_msg
*msg
)
3115 struct irq_cfg
*cfg
;
3121 err
= assign_irq_vector(irq
, tmp
);
3126 cpus_and(tmp
, cfg
->domain
, tmp
);
3127 dest
= cpu_mask_to_apicid(tmp
);
3129 #ifdef CONFIG_INTR_REMAP
3130 if (irq_remapped(irq
)) {
3135 ir_index
= map_irq_to_irte_handle(irq
, &sub_handle
);
3136 BUG_ON(ir_index
== -1);
3138 memset (&irte
, 0, sizeof(irte
));
3141 irte
.dst_mode
= INT_DEST_MODE
;
3142 irte
.trigger_mode
= 0; /* edge */
3143 irte
.dlvry_mode
= INT_DELIVERY_MODE
;
3144 irte
.vector
= cfg
->vector
;
3145 irte
.dest_id
= IRTE_DEST(dest
);
3147 modify_irte(irq
, &irte
);
3149 msg
->address_hi
= MSI_ADDR_BASE_HI
;
3150 msg
->data
= sub_handle
;
3151 msg
->address_lo
= MSI_ADDR_BASE_LO
| MSI_ADDR_IR_EXT_INT
|
3153 MSI_ADDR_IR_INDEX1(ir_index
) |
3154 MSI_ADDR_IR_INDEX2(ir_index
);
3158 msg
->address_hi
= MSI_ADDR_BASE_HI
;
3161 ((INT_DEST_MODE
== 0) ?
3162 MSI_ADDR_DEST_MODE_PHYSICAL
:
3163 MSI_ADDR_DEST_MODE_LOGICAL
) |
3164 ((INT_DELIVERY_MODE
!= dest_LowestPrio
) ?
3165 MSI_ADDR_REDIRECTION_CPU
:
3166 MSI_ADDR_REDIRECTION_LOWPRI
) |
3167 MSI_ADDR_DEST_ID(dest
);
3170 MSI_DATA_TRIGGER_EDGE
|
3171 MSI_DATA_LEVEL_ASSERT
|
3172 ((INT_DELIVERY_MODE
!= dest_LowestPrio
) ?
3173 MSI_DATA_DELIVERY_FIXED
:
3174 MSI_DATA_DELIVERY_LOWPRI
) |
3175 MSI_DATA_VECTOR(cfg
->vector
);
3181 static void set_msi_irq_affinity(unsigned int irq
, cpumask_t mask
)
3183 struct irq_cfg
*cfg
;
3187 struct irq_desc
*desc
;
3189 cpus_and(tmp
, mask
, cpu_online_map
);
3190 if (cpus_empty(tmp
))
3193 if (assign_irq_vector(irq
, mask
))
3197 cpus_and(tmp
, cfg
->domain
, mask
);
3198 dest
= cpu_mask_to_apicid(tmp
);
3200 read_msi_msg(irq
, &msg
);
3202 msg
.data
&= ~MSI_DATA_VECTOR_MASK
;
3203 msg
.data
|= MSI_DATA_VECTOR(cfg
->vector
);
3204 msg
.address_lo
&= ~MSI_ADDR_DEST_ID_MASK
;
3205 msg
.address_lo
|= MSI_ADDR_DEST_ID(dest
);
3207 write_msi_msg(irq
, &msg
);
3208 desc
= irq_to_desc(irq
);
3209 desc
->affinity
= mask
;
3212 #ifdef CONFIG_INTR_REMAP
3214 * Migrate the MSI irq to another cpumask. This migration is
3215 * done in the process context using interrupt-remapping hardware.
3217 static void ir_set_msi_irq_affinity(unsigned int irq
, cpumask_t mask
)
3219 struct irq_cfg
*cfg
;
3221 cpumask_t tmp
, cleanup_mask
;
3223 struct irq_desc
*desc
;
3225 cpus_and(tmp
, mask
, cpu_online_map
);
3226 if (cpus_empty(tmp
))
3229 if (get_irte(irq
, &irte
))
3232 if (assign_irq_vector(irq
, mask
))
3236 cpus_and(tmp
, cfg
->domain
, mask
);
3237 dest
= cpu_mask_to_apicid(tmp
);
3239 irte
.vector
= cfg
->vector
;
3240 irte
.dest_id
= IRTE_DEST(dest
);
3243 * atomically update the IRTE with the new destination and vector.
3245 modify_irte(irq
, &irte
);
3248 * After this point, all the interrupts will start arriving
3249 * at the new destination. So, time to cleanup the previous
3250 * vector allocation.
3252 if (cfg
->move_in_progress
) {
3253 cpus_and(cleanup_mask
, cfg
->old_domain
, cpu_online_map
);
3254 cfg
->move_cleanup_count
= cpus_weight(cleanup_mask
);
3255 send_IPI_mask(cleanup_mask
, IRQ_MOVE_CLEANUP_VECTOR
);
3256 cfg
->move_in_progress
= 0;
3259 desc
= irq_to_desc(irq
);
3260 desc
->affinity
= mask
;
3263 #endif /* CONFIG_SMP */
3266 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3267 * which implement the MSI or MSI-X Capability Structure.
3269 static struct irq_chip msi_chip
= {
3271 .unmask
= unmask_msi_irq
,
3272 .mask
= mask_msi_irq
,
3273 .ack
= ack_apic_edge
,
3275 .set_affinity
= set_msi_irq_affinity
,
3277 .retrigger
= ioapic_retrigger_irq
,
3280 #ifdef CONFIG_INTR_REMAP
3281 static struct irq_chip msi_ir_chip
= {
3282 .name
= "IR-PCI-MSI",
3283 .unmask
= unmask_msi_irq
,
3284 .mask
= mask_msi_irq
,
3285 .ack
= ack_x2apic_edge
,
3287 .set_affinity
= ir_set_msi_irq_affinity
,
3289 .retrigger
= ioapic_retrigger_irq
,
3293 * Map the PCI dev to the corresponding remapping hardware unit
3294 * and allocate 'nvec' consecutive interrupt-remapping table entries
3297 static int msi_alloc_irte(struct pci_dev
*dev
, int irq
, int nvec
)
3299 struct intel_iommu
*iommu
;
3302 iommu
= map_dev_to_ir(dev
);
3305 "Unable to map PCI %s to iommu\n", pci_name(dev
));
3309 index
= alloc_irte(iommu
, irq
, nvec
);
3312 "Unable to allocate %d IRTE for PCI %s\n", nvec
,
3320 static int setup_msi_irq(struct pci_dev
*dev
, struct msi_desc
*desc
, int irq
)
3325 ret
= msi_compose_msg(dev
, irq
, &msg
);
3329 set_irq_msi(irq
, desc
);
3330 write_msi_msg(irq
, &msg
);
3332 #ifdef CONFIG_INTR_REMAP
3333 if (irq_remapped(irq
)) {
3334 struct irq_desc
*desc
= irq_to_desc(irq
);
3336 * irq migration in process context
3338 desc
->status
|= IRQ_MOVE_PCNTXT
;
3339 set_irq_chip_and_handler_name(irq
, &msi_ir_chip
, handle_edge_irq
, "edge");
3342 set_irq_chip_and_handler_name(irq
, &msi_chip
, handle_edge_irq
, "edge");
3347 static unsigned int build_irq_for_pci_dev(struct pci_dev
*dev
)
3351 irq
= dev
->bus
->number
;
3359 int arch_setup_msi_irq(struct pci_dev
*dev
, struct msi_desc
*desc
)
3363 unsigned int irq_want
;
3365 irq_want
= build_irq_for_pci_dev(dev
) + 0x100;
3367 irq
= create_irq_nr(irq_want
);
3371 #ifdef CONFIG_INTR_REMAP
3372 if (!intr_remapping_enabled
)
3375 ret
= msi_alloc_irte(dev
, irq
, 1);
3380 ret
= setup_msi_irq(dev
, desc
, irq
);
3387 #ifdef CONFIG_INTR_REMAP
3394 int arch_setup_msi_irqs(struct pci_dev
*dev
, int nvec
, int type
)
3397 int ret
, sub_handle
;
3398 struct msi_desc
*desc
;
3399 unsigned int irq_want
;
3401 #ifdef CONFIG_INTR_REMAP
3402 struct intel_iommu
*iommu
= 0;
3406 irq_want
= build_irq_for_pci_dev(dev
) + 0x100;
3408 list_for_each_entry(desc
, &dev
->msi_list
, list
) {
3409 irq
= create_irq_nr(irq_want
--);
3412 #ifdef CONFIG_INTR_REMAP
3413 if (!intr_remapping_enabled
)
3418 * allocate the consecutive block of IRTE's
3421 index
= msi_alloc_irte(dev
, irq
, nvec
);
3427 iommu
= map_dev_to_ir(dev
);
3433 * setup the mapping between the irq and the IRTE
3434 * base index, the sub_handle pointing to the
3435 * appropriate interrupt remap table entry.
3437 set_irte_irq(irq
, iommu
, index
, sub_handle
);
3441 ret
= setup_msi_irq(dev
, desc
, irq
);
3453 void arch_teardown_msi_irq(unsigned int irq
)
3460 static void dmar_msi_set_affinity(unsigned int irq
, cpumask_t mask
)
3462 struct irq_cfg
*cfg
;
3466 struct irq_desc
*desc
;
3468 cpus_and(tmp
, mask
, cpu_online_map
);
3469 if (cpus_empty(tmp
))
3472 if (assign_irq_vector(irq
, mask
))
3476 cpus_and(tmp
, cfg
->domain
, mask
);
3477 dest
= cpu_mask_to_apicid(tmp
);
3479 dmar_msi_read(irq
, &msg
);
3481 msg
.data
&= ~MSI_DATA_VECTOR_MASK
;
3482 msg
.data
|= MSI_DATA_VECTOR(cfg
->vector
);
3483 msg
.address_lo
&= ~MSI_ADDR_DEST_ID_MASK
;
3484 msg
.address_lo
|= MSI_ADDR_DEST_ID(dest
);
3486 dmar_msi_write(irq
, &msg
);
3487 desc
= irq_to_desc(irq
);
3488 desc
->affinity
= mask
;
3490 #endif /* CONFIG_SMP */
3492 struct irq_chip dmar_msi_type
= {
3494 .unmask
= dmar_msi_unmask
,
3495 .mask
= dmar_msi_mask
,
3496 .ack
= ack_apic_edge
,
3498 .set_affinity
= dmar_msi_set_affinity
,
3500 .retrigger
= ioapic_retrigger_irq
,
3503 int arch_setup_dmar_msi(unsigned int irq
)
3508 ret
= msi_compose_msg(NULL
, irq
, &msg
);
3511 dmar_msi_write(irq
, &msg
);
3512 set_irq_chip_and_handler_name(irq
, &dmar_msi_type
, handle_edge_irq
,
3518 #endif /* CONFIG_PCI_MSI */
3520 * Hypertransport interrupt support
3522 #ifdef CONFIG_HT_IRQ
3526 static void target_ht_irq(unsigned int irq
, unsigned int dest
, u8 vector
)
3528 struct ht_irq_msg msg
;
3529 fetch_ht_irq_msg(irq
, &msg
);
3531 msg
.address_lo
&= ~(HT_IRQ_LOW_VECTOR_MASK
| HT_IRQ_LOW_DEST_ID_MASK
);
3532 msg
.address_hi
&= ~(HT_IRQ_HIGH_DEST_ID_MASK
);
3534 msg
.address_lo
|= HT_IRQ_LOW_VECTOR(vector
) | HT_IRQ_LOW_DEST_ID(dest
);
3535 msg
.address_hi
|= HT_IRQ_HIGH_DEST_ID(dest
);
3537 write_ht_irq_msg(irq
, &msg
);
3540 static void set_ht_irq_affinity(unsigned int irq
, cpumask_t mask
)
3542 struct irq_cfg
*cfg
;
3545 struct irq_desc
*desc
;
3547 cpus_and(tmp
, mask
, cpu_online_map
);
3548 if (cpus_empty(tmp
))
3551 if (assign_irq_vector(irq
, mask
))
3555 cpus_and(tmp
, cfg
->domain
, mask
);
3556 dest
= cpu_mask_to_apicid(tmp
);
3558 target_ht_irq(irq
, dest
, cfg
->vector
);
3559 desc
= irq_to_desc(irq
);
3560 desc
->affinity
= mask
;
3564 static struct irq_chip ht_irq_chip
= {
3566 .mask
= mask_ht_irq
,
3567 .unmask
= unmask_ht_irq
,
3568 .ack
= ack_apic_edge
,
3570 .set_affinity
= set_ht_irq_affinity
,
3572 .retrigger
= ioapic_retrigger_irq
,
3575 int arch_setup_ht_irq(unsigned int irq
, struct pci_dev
*dev
)
3577 struct irq_cfg
*cfg
;
3582 err
= assign_irq_vector(irq
, tmp
);
3584 struct ht_irq_msg msg
;
3588 cpus_and(tmp
, cfg
->domain
, tmp
);
3589 dest
= cpu_mask_to_apicid(tmp
);
3591 msg
.address_hi
= HT_IRQ_HIGH_DEST_ID(dest
);
3595 HT_IRQ_LOW_DEST_ID(dest
) |
3596 HT_IRQ_LOW_VECTOR(cfg
->vector
) |
3597 ((INT_DEST_MODE
== 0) ?
3598 HT_IRQ_LOW_DM_PHYSICAL
:
3599 HT_IRQ_LOW_DM_LOGICAL
) |
3600 HT_IRQ_LOW_RQEOI_EDGE
|
3601 ((INT_DELIVERY_MODE
!= dest_LowestPrio
) ?
3602 HT_IRQ_LOW_MT_FIXED
:
3603 HT_IRQ_LOW_MT_ARBITRATED
) |
3604 HT_IRQ_LOW_IRQ_MASKED
;
3606 write_ht_irq_msg(irq
, &msg
);
3608 set_irq_chip_and_handler_name(irq
, &ht_irq_chip
,
3609 handle_edge_irq
, "edge");
3613 #endif /* CONFIG_HT_IRQ */
3615 /* --------------------------------------------------------------------------
3616 ACPI-based IOAPIC Configuration
3617 -------------------------------------------------------------------------- */
3621 #ifdef CONFIG_X86_32
3622 int __init
io_apic_get_unique_id(int ioapic
, int apic_id
)
3624 union IO_APIC_reg_00 reg_00
;
3625 static physid_mask_t apic_id_map
= PHYSID_MASK_NONE
;
3627 unsigned long flags
;
3631 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3632 * buses (one for LAPICs, one for IOAPICs), where predecessors only
3633 * supports up to 16 on one shared APIC bus.
3635 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3636 * advantage of new APIC bus architecture.
3639 if (physids_empty(apic_id_map
))
3640 apic_id_map
= ioapic_phys_id_map(phys_cpu_present_map
);
3642 spin_lock_irqsave(&ioapic_lock
, flags
);
3643 reg_00
.raw
= io_apic_read(ioapic
, 0);
3644 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3646 if (apic_id
>= get_physical_broadcast()) {
3647 printk(KERN_WARNING
"IOAPIC[%d]: Invalid apic_id %d, trying "
3648 "%d\n", ioapic
, apic_id
, reg_00
.bits
.ID
);
3649 apic_id
= reg_00
.bits
.ID
;
3653 * Every APIC in a system must have a unique ID or we get lots of nice
3654 * 'stuck on smp_invalidate_needed IPI wait' messages.
3656 if (check_apicid_used(apic_id_map
, apic_id
)) {
3658 for (i
= 0; i
< get_physical_broadcast(); i
++) {
3659 if (!check_apicid_used(apic_id_map
, i
))
3663 if (i
== get_physical_broadcast())
3664 panic("Max apic_id exceeded!\n");
3666 printk(KERN_WARNING
"IOAPIC[%d]: apic_id %d already used, "
3667 "trying %d\n", ioapic
, apic_id
, i
);
3672 tmp
= apicid_to_cpu_present(apic_id
);
3673 physids_or(apic_id_map
, apic_id_map
, tmp
);
3675 if (reg_00
.bits
.ID
!= apic_id
) {
3676 reg_00
.bits
.ID
= apic_id
;
3678 spin_lock_irqsave(&ioapic_lock
, flags
);
3679 io_apic_write(ioapic
, 0, reg_00
.raw
);
3680 reg_00
.raw
= io_apic_read(ioapic
, 0);
3681 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3684 if (reg_00
.bits
.ID
!= apic_id
) {
3685 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic
);
3690 apic_printk(APIC_VERBOSE
, KERN_INFO
3691 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic
, apic_id
);
3696 int __init
io_apic_get_version(int ioapic
)
3698 union IO_APIC_reg_01 reg_01
;
3699 unsigned long flags
;
3701 spin_lock_irqsave(&ioapic_lock
, flags
);
3702 reg_01
.raw
= io_apic_read(ioapic
, 1);
3703 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3705 return reg_01
.bits
.version
;
3709 int __init
io_apic_get_redir_entries (int ioapic
)
3711 union IO_APIC_reg_01 reg_01
;
3712 unsigned long flags
;
3714 spin_lock_irqsave(&ioapic_lock
, flags
);
3715 reg_01
.raw
= io_apic_read(ioapic
, 1);
3716 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3718 return reg_01
.bits
.entries
;
3722 int io_apic_set_pci_routing (int ioapic
, int pin
, int irq
, int triggering
, int polarity
)
3724 if (!IO_APIC_IRQ(irq
)) {
3725 apic_printk(APIC_QUIET
,KERN_ERR
"IOAPIC[%d]: Invalid reference to IRQ 0\n",
3731 * IRQs < 16 are already in the irq_2_pin[] map
3734 add_pin_to_irq(irq
, ioapic
, pin
);
3736 setup_IO_APIC_irq(ioapic
, pin
, irq
, triggering
, polarity
);
3742 int acpi_get_override_irq(int bus_irq
, int *trigger
, int *polarity
)
3746 if (skip_ioapic_setup
)
3749 for (i
= 0; i
< mp_irq_entries
; i
++)
3750 if (mp_irqs
[i
].mp_irqtype
== mp_INT
&&
3751 mp_irqs
[i
].mp_srcbusirq
== bus_irq
)
3753 if (i
>= mp_irq_entries
)
3756 *trigger
= irq_trigger(i
);
3757 *polarity
= irq_polarity(i
);
3761 #endif /* CONFIG_ACPI */
3764 * This function currently is only a helper for the i386 smp boot process where
3765 * we need to reprogram the ioredtbls to cater for the cpus which have come online
3766 * so mask in all cases should simply be TARGET_CPUS
3769 void __init
setup_ioapic_dest(void)
3771 int pin
, ioapic
, irq
, irq_entry
;
3772 struct irq_cfg
*cfg
;
3774 if (skip_ioapic_setup
== 1)
3777 for (ioapic
= 0; ioapic
< nr_ioapics
; ioapic
++) {
3778 for (pin
= 0; pin
< nr_ioapic_registers
[ioapic
]; pin
++) {
3779 irq_entry
= find_irq_entry(ioapic
, pin
, mp_INT
);
3780 if (irq_entry
== -1)
3782 irq
= pin_2_irq(irq_entry
, ioapic
, pin
);
3784 /* setup_IO_APIC_irqs could fail to get vector for some device
3785 * when you have too many devices, because at that time only boot
3790 setup_IO_APIC_irq(ioapic
, pin
, irq
,
3791 irq_trigger(irq_entry
),
3792 irq_polarity(irq_entry
));
3793 #ifdef CONFIG_INTR_REMAP
3794 else if (intr_remapping_enabled
)
3795 set_ir_ioapic_affinity_irq(irq
, TARGET_CPUS
);
3798 set_ioapic_affinity_irq(irq
, TARGET_CPUS
);
3805 #ifdef CONFIG_X86_64
3806 #define IOAPIC_RESOURCE_NAME_SIZE 11
3808 static struct resource
*ioapic_resources
;
3810 static struct resource
* __init
ioapic_setup_resources(void)
3813 struct resource
*res
;
3817 if (nr_ioapics
<= 0)
3820 n
= IOAPIC_RESOURCE_NAME_SIZE
+ sizeof(struct resource
);
3823 mem
= alloc_bootmem(n
);
3827 mem
+= sizeof(struct resource
) * nr_ioapics
;
3829 for (i
= 0; i
< nr_ioapics
; i
++) {
3831 res
[i
].flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
3832 sprintf(mem
, "IOAPIC %u", i
);
3833 mem
+= IOAPIC_RESOURCE_NAME_SIZE
;
3837 ioapic_resources
= res
;
3843 void __init
ioapic_init_mappings(void)
3845 unsigned long ioapic_phys
, idx
= FIX_IO_APIC_BASE_0
;
3847 #ifdef CONFIG_X86_64
3848 struct resource
*ioapic_res
;
3850 ioapic_res
= ioapic_setup_resources();
3852 for (i
= 0; i
< nr_ioapics
; i
++) {
3853 if (smp_found_config
) {
3854 ioapic_phys
= mp_ioapics
[i
].mp_apicaddr
;
3855 #ifdef CONFIG_X86_32
3858 "WARNING: bogus zero IO-APIC "
3859 "address found in MPTABLE, "
3860 "disabling IO/APIC support!\n");
3861 smp_found_config
= 0;
3862 skip_ioapic_setup
= 1;
3863 goto fake_ioapic_page
;
3867 #ifdef CONFIG_X86_32
3870 ioapic_phys
= (unsigned long)
3871 alloc_bootmem_pages(PAGE_SIZE
);
3872 ioapic_phys
= __pa(ioapic_phys
);
3874 set_fixmap_nocache(idx
, ioapic_phys
);
3875 apic_printk(APIC_VERBOSE
,
3876 "mapped IOAPIC to %08lx (%08lx)\n",
3877 __fix_to_virt(idx
), ioapic_phys
);
3880 #ifdef CONFIG_X86_64
3881 if (ioapic_res
!= NULL
) {
3882 ioapic_res
->start
= ioapic_phys
;
3883 ioapic_res
->end
= ioapic_phys
+ (4 * 1024) - 1;
3890 #ifdef CONFIG_X86_64
3891 static int __init
ioapic_insert_resources(void)
3894 struct resource
*r
= ioapic_resources
;
3898 "IO APIC resources could be not be allocated.\n");
3902 for (i
= 0; i
< nr_ioapics
; i
++) {
3903 insert_resource(&iomem_resource
, r
);
3910 /* Insert the IO APIC resources after PCI initialization has occured to handle
3911 * IO APICS that are mapped in on a BAR in PCI space. */
3912 late_initcall(ioapic_insert_resources
);