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>
16 * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
17 * thanks to Eric Gilmore
19 * for testing these extensively
20 * Paul Diefenbaugh : Added full ACPI support
24 #include <linux/interrupt.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/sched.h>
28 #include <linux/pci.h>
29 #include <linux/mc146818rtc.h>
30 #include <linux/compiler.h>
31 #include <linux/acpi.h>
32 #include <linux/module.h>
33 #include <linux/sysdev.h>
34 #include <linux/msi.h>
35 #include <linux/htirq.h>
36 #include <linux/freezer.h>
37 #include <linux/kthread.h>
38 #include <linux/jiffies.h> /* time_after() */
40 #include <acpi/acpi_bus.h>
42 #include <linux/bootmem.h>
43 #include <linux/dmar.h>
44 #include <linux/hpet.h>
51 #include <asm/proto.h>
54 #include <asm/timer.h>
55 #include <asm/i8259.h>
57 #include <asm/msidef.h>
58 #include <asm/hypertransport.h>
59 #include <asm/setup.h>
60 #include <asm/irq_remapping.h>
62 #include <asm/hw_irq.h>
63 #include <asm/uv/uv_hub.h>
64 #include <asm/uv/uv_irq.h>
68 #define __apicdebuginit(type) static type __init
71 * Is the SiS APIC rmw bug present ?
72 * -1 = don't know, 0 = no, 1 = yes
74 int sis_apic_bug
= -1;
76 static DEFINE_SPINLOCK(ioapic_lock
);
77 static DEFINE_SPINLOCK(vector_lock
);
80 * # of IRQ routing registers
82 int nr_ioapic_registers
[MAX_IO_APICS
];
84 /* I/O APIC entries */
85 struct mpc_ioapic mp_ioapics
[MAX_IO_APICS
];
88 /* MP IRQ source entries */
89 struct mpc_intsrc mp_irqs
[MAX_IRQ_SOURCES
];
91 /* # of MP IRQ source entries */
94 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
95 int mp_bus_id_to_type
[MAX_MP_BUSSES
];
98 DECLARE_BITMAP(mp_bus_not_pci
, MAX_MP_BUSSES
);
100 int skip_ioapic_setup
;
102 void arch_disable_smp_support(void)
106 noioapicreroute
= -1;
108 skip_ioapic_setup
= 1;
111 static int __init
parse_noapic(char *str
)
113 /* disable IO-APIC */
114 arch_disable_smp_support();
117 early_param("noapic", parse_noapic
);
119 struct irq_pin_list
{
121 struct irq_pin_list
*next
;
124 static struct irq_pin_list
*get_one_free_irq_2_pin(int node
)
126 struct irq_pin_list
*pin
;
128 pin
= kzalloc_node(sizeof(*pin
), GFP_ATOMIC
, node
);
134 * This is performance-critical, we want to do it O(1)
136 * Most irqs are mapped 1:1 with pins.
139 struct irq_pin_list
*irq_2_pin
;
140 cpumask_var_t domain
;
141 cpumask_var_t old_domain
;
142 unsigned move_cleanup_count
;
144 u8 move_in_progress
: 1;
147 /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
148 #ifdef CONFIG_SPARSE_IRQ
149 static struct irq_cfg irq_cfgx
[] = {
151 static struct irq_cfg irq_cfgx
[NR_IRQS
] = {
153 [0] = { .vector
= IRQ0_VECTOR
, },
154 [1] = { .vector
= IRQ1_VECTOR
, },
155 [2] = { .vector
= IRQ2_VECTOR
, },
156 [3] = { .vector
= IRQ3_VECTOR
, },
157 [4] = { .vector
= IRQ4_VECTOR
, },
158 [5] = { .vector
= IRQ5_VECTOR
, },
159 [6] = { .vector
= IRQ6_VECTOR
, },
160 [7] = { .vector
= IRQ7_VECTOR
, },
161 [8] = { .vector
= IRQ8_VECTOR
, },
162 [9] = { .vector
= IRQ9_VECTOR
, },
163 [10] = { .vector
= IRQ10_VECTOR
, },
164 [11] = { .vector
= IRQ11_VECTOR
, },
165 [12] = { .vector
= IRQ12_VECTOR
, },
166 [13] = { .vector
= IRQ13_VECTOR
, },
167 [14] = { .vector
= IRQ14_VECTOR
, },
168 [15] = { .vector
= IRQ15_VECTOR
, },
171 int __init
arch_early_irq_init(void)
174 struct irq_desc
*desc
;
180 count
= ARRAY_SIZE(irq_cfgx
);
181 node
= cpu_to_node(boot_cpu_id
);
183 for (i
= 0; i
< count
; i
++) {
184 desc
= irq_to_desc(i
);
185 desc
->chip_data
= &cfg
[i
];
186 zalloc_cpumask_var_node(&cfg
[i
].domain
, GFP_NOWAIT
, node
);
187 zalloc_cpumask_var_node(&cfg
[i
].old_domain
, GFP_NOWAIT
, node
);
188 if (i
< NR_IRQS_LEGACY
)
189 cpumask_setall(cfg
[i
].domain
);
195 #ifdef CONFIG_SPARSE_IRQ
196 static struct irq_cfg
*irq_cfg(unsigned int irq
)
198 struct irq_cfg
*cfg
= NULL
;
199 struct irq_desc
*desc
;
201 desc
= irq_to_desc(irq
);
203 cfg
= desc
->chip_data
;
208 static struct irq_cfg
*get_one_free_irq_cfg(int node
)
212 cfg
= kzalloc_node(sizeof(*cfg
), GFP_ATOMIC
, node
);
214 if (!alloc_cpumask_var_node(&cfg
->domain
, GFP_ATOMIC
, node
)) {
217 } else if (!alloc_cpumask_var_node(&cfg
->old_domain
,
219 free_cpumask_var(cfg
->domain
);
223 cpumask_clear(cfg
->domain
);
224 cpumask_clear(cfg
->old_domain
);
231 int arch_init_chip_data(struct irq_desc
*desc
, int node
)
235 cfg
= desc
->chip_data
;
237 desc
->chip_data
= get_one_free_irq_cfg(node
);
238 if (!desc
->chip_data
) {
239 printk(KERN_ERR
"can not alloc irq_cfg\n");
247 /* for move_irq_desc */
249 init_copy_irq_2_pin(struct irq_cfg
*old_cfg
, struct irq_cfg
*cfg
, int node
)
251 struct irq_pin_list
*old_entry
, *head
, *tail
, *entry
;
253 cfg
->irq_2_pin
= NULL
;
254 old_entry
= old_cfg
->irq_2_pin
;
258 entry
= get_one_free_irq_2_pin(node
);
262 entry
->apic
= old_entry
->apic
;
263 entry
->pin
= old_entry
->pin
;
266 old_entry
= old_entry
->next
;
268 entry
= get_one_free_irq_2_pin(node
);
276 /* still use the old one */
279 entry
->apic
= old_entry
->apic
;
280 entry
->pin
= old_entry
->pin
;
283 old_entry
= old_entry
->next
;
287 cfg
->irq_2_pin
= head
;
290 static void free_irq_2_pin(struct irq_cfg
*old_cfg
, struct irq_cfg
*cfg
)
292 struct irq_pin_list
*entry
, *next
;
294 if (old_cfg
->irq_2_pin
== cfg
->irq_2_pin
)
297 entry
= old_cfg
->irq_2_pin
;
304 old_cfg
->irq_2_pin
= NULL
;
307 void arch_init_copy_chip_data(struct irq_desc
*old_desc
,
308 struct irq_desc
*desc
, int node
)
311 struct irq_cfg
*old_cfg
;
313 cfg
= get_one_free_irq_cfg(node
);
318 desc
->chip_data
= cfg
;
320 old_cfg
= old_desc
->chip_data
;
322 memcpy(cfg
, old_cfg
, sizeof(struct irq_cfg
));
324 init_copy_irq_2_pin(old_cfg
, cfg
, node
);
327 static void free_irq_cfg(struct irq_cfg
*old_cfg
)
332 void arch_free_chip_data(struct irq_desc
*old_desc
, struct irq_desc
*desc
)
334 struct irq_cfg
*old_cfg
, *cfg
;
336 old_cfg
= old_desc
->chip_data
;
337 cfg
= desc
->chip_data
;
343 free_irq_2_pin(old_cfg
, cfg
);
344 free_irq_cfg(old_cfg
);
345 old_desc
->chip_data
= NULL
;
348 /* end for move_irq_desc */
351 static struct irq_cfg
*irq_cfg(unsigned int irq
)
353 return irq
< nr_irqs
? irq_cfgx
+ irq
: NULL
;
360 unsigned int unused
[3];
362 unsigned int unused2
[11];
366 static __attribute_const__
struct io_apic __iomem
*io_apic_base(int idx
)
368 return (void __iomem
*) __fix_to_virt(FIX_IO_APIC_BASE_0
+ idx
)
369 + (mp_ioapics
[idx
].apicaddr
& ~PAGE_MASK
);
372 static inline void io_apic_eoi(unsigned int apic
, unsigned int vector
)
374 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
375 writel(vector
, &io_apic
->eoi
);
378 static inline unsigned int io_apic_read(unsigned int apic
, unsigned int reg
)
380 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
381 writel(reg
, &io_apic
->index
);
382 return readl(&io_apic
->data
);
385 static inline void io_apic_write(unsigned int apic
, unsigned int reg
, unsigned int value
)
387 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
388 writel(reg
, &io_apic
->index
);
389 writel(value
, &io_apic
->data
);
393 * Re-write a value: to be used for read-modify-write
394 * cycles where the read already set up the index register.
396 * Older SiS APIC requires we rewrite the index register
398 static inline void io_apic_modify(unsigned int apic
, unsigned int reg
, unsigned int value
)
400 struct io_apic __iomem
*io_apic
= io_apic_base(apic
);
403 writel(reg
, &io_apic
->index
);
404 writel(value
, &io_apic
->data
);
407 static bool io_apic_level_ack_pending(struct irq_cfg
*cfg
)
409 struct irq_pin_list
*entry
;
412 spin_lock_irqsave(&ioapic_lock
, flags
);
413 for (entry
= cfg
->irq_2_pin
; entry
!= NULL
; entry
= entry
->next
) {
418 reg
= io_apic_read(entry
->apic
, 0x10 + pin
*2);
419 /* Is the remote IRR bit set? */
420 if (reg
& IO_APIC_REDIR_REMOTE_IRR
) {
421 spin_unlock_irqrestore(&ioapic_lock
, flags
);
425 spin_unlock_irqrestore(&ioapic_lock
, flags
);
431 struct { u32 w1
, w2
; };
432 struct IO_APIC_route_entry entry
;
435 static struct IO_APIC_route_entry
ioapic_read_entry(int apic
, int pin
)
437 union entry_union eu
;
439 spin_lock_irqsave(&ioapic_lock
, flags
);
440 eu
.w1
= io_apic_read(apic
, 0x10 + 2 * pin
);
441 eu
.w2
= io_apic_read(apic
, 0x11 + 2 * pin
);
442 spin_unlock_irqrestore(&ioapic_lock
, flags
);
447 * When we write a new IO APIC routing entry, we need to write the high
448 * word first! If the mask bit in the low word is clear, we will enable
449 * the interrupt, and we need to make sure the entry is fully populated
450 * before that happens.
453 __ioapic_write_entry(int apic
, int pin
, struct IO_APIC_route_entry e
)
455 union entry_union eu
= {{0, 0}};
458 io_apic_write(apic
, 0x11 + 2*pin
, eu
.w2
);
459 io_apic_write(apic
, 0x10 + 2*pin
, eu
.w1
);
462 void ioapic_write_entry(int apic
, int pin
, struct IO_APIC_route_entry e
)
465 spin_lock_irqsave(&ioapic_lock
, flags
);
466 __ioapic_write_entry(apic
, pin
, e
);
467 spin_unlock_irqrestore(&ioapic_lock
, flags
);
471 * When we mask an IO APIC routing entry, we need to write the low
472 * word first, in order to set the mask bit before we change the
475 static void ioapic_mask_entry(int apic
, int pin
)
478 union entry_union eu
= { .entry
.mask
= 1 };
480 spin_lock_irqsave(&ioapic_lock
, flags
);
481 io_apic_write(apic
, 0x10 + 2*pin
, eu
.w1
);
482 io_apic_write(apic
, 0x11 + 2*pin
, eu
.w2
);
483 spin_unlock_irqrestore(&ioapic_lock
, flags
);
487 * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
488 * shared ISA-space IRQs, so we have to support them. We are super
489 * fast in the common case, and fast for shared ISA-space IRQs.
491 static void add_pin_to_irq_node(struct irq_cfg
*cfg
, int node
, int apic
, int pin
)
493 struct irq_pin_list
**entryp
, *entry
;
495 for (entryp
= &cfg
->irq_2_pin
;
497 entryp
= &(*entryp
)->next
) {
499 /* not again, please */
500 if (entry
->apic
== apic
&& entry
->pin
== pin
)
504 entry
= get_one_free_irq_2_pin(node
);
512 * Reroute an IRQ to a different pin.
514 static void __init
replace_pin_at_irq_node(struct irq_cfg
*cfg
, int node
,
515 int oldapic
, int oldpin
,
516 int newapic
, int newpin
)
518 struct irq_pin_list
*entry
;
520 for (entry
= cfg
->irq_2_pin
; entry
!= NULL
; entry
= entry
->next
) {
521 if (entry
->apic
== oldapic
&& entry
->pin
== oldpin
) {
522 entry
->apic
= newapic
;
524 /* every one is different, right? */
529 /* old apic/pin didn't exist, so just add new ones */
530 add_pin_to_irq_node(cfg
, node
, newapic
, newpin
);
533 static void io_apic_modify_irq(struct irq_cfg
*cfg
,
534 int mask_and
, int mask_or
,
535 void (*final
)(struct irq_pin_list
*entry
))
538 struct irq_pin_list
*entry
;
540 for (entry
= cfg
->irq_2_pin
; entry
!= NULL
; entry
= entry
->next
) {
543 reg
= io_apic_read(entry
->apic
, 0x10 + pin
* 2);
546 io_apic_modify(entry
->apic
, 0x10 + pin
* 2, reg
);
552 static void __unmask_IO_APIC_irq(struct irq_cfg
*cfg
)
554 io_apic_modify_irq(cfg
, ~IO_APIC_REDIR_MASKED
, 0, NULL
);
557 static void io_apic_sync(struct irq_pin_list
*entry
)
560 * Synchronize the IO-APIC and the CPU by doing
561 * a dummy read from the IO-APIC
563 struct io_apic __iomem
*io_apic
;
564 io_apic
= io_apic_base(entry
->apic
);
565 readl(&io_apic
->data
);
568 static void __mask_IO_APIC_irq(struct irq_cfg
*cfg
)
570 io_apic_modify_irq(cfg
, ~0, IO_APIC_REDIR_MASKED
, &io_apic_sync
);
573 static void __mask_and_edge_IO_APIC_irq(struct irq_cfg
*cfg
)
575 io_apic_modify_irq(cfg
, ~IO_APIC_REDIR_LEVEL_TRIGGER
,
576 IO_APIC_REDIR_MASKED
, NULL
);
579 static void __unmask_and_level_IO_APIC_irq(struct irq_cfg
*cfg
)
581 io_apic_modify_irq(cfg
, ~IO_APIC_REDIR_MASKED
,
582 IO_APIC_REDIR_LEVEL_TRIGGER
, NULL
);
585 static void mask_IO_APIC_irq_desc(struct irq_desc
*desc
)
587 struct irq_cfg
*cfg
= desc
->chip_data
;
592 spin_lock_irqsave(&ioapic_lock
, flags
);
593 __mask_IO_APIC_irq(cfg
);
594 spin_unlock_irqrestore(&ioapic_lock
, flags
);
597 static void unmask_IO_APIC_irq_desc(struct irq_desc
*desc
)
599 struct irq_cfg
*cfg
= desc
->chip_data
;
602 spin_lock_irqsave(&ioapic_lock
, flags
);
603 __unmask_IO_APIC_irq(cfg
);
604 spin_unlock_irqrestore(&ioapic_lock
, flags
);
607 static void mask_IO_APIC_irq(unsigned int irq
)
609 struct irq_desc
*desc
= irq_to_desc(irq
);
611 mask_IO_APIC_irq_desc(desc
);
613 static void unmask_IO_APIC_irq(unsigned int irq
)
615 struct irq_desc
*desc
= irq_to_desc(irq
);
617 unmask_IO_APIC_irq_desc(desc
);
620 static void clear_IO_APIC_pin(unsigned int apic
, unsigned int pin
)
622 struct IO_APIC_route_entry entry
;
624 /* Check delivery_mode to be sure we're not clearing an SMI pin */
625 entry
= ioapic_read_entry(apic
, pin
);
626 if (entry
.delivery_mode
== dest_SMI
)
629 * Disable it in the IO-APIC irq-routing table:
631 ioapic_mask_entry(apic
, pin
);
634 static void clear_IO_APIC (void)
638 for (apic
= 0; apic
< nr_ioapics
; apic
++)
639 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
640 clear_IO_APIC_pin(apic
, pin
);
645 * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
646 * specific CPU-side IRQs.
650 static int pirq_entries
[MAX_PIRQS
] = {
651 [0 ... MAX_PIRQS
- 1] = -1
654 static int __init
ioapic_pirq_setup(char *str
)
657 int ints
[MAX_PIRQS
+1];
659 get_options(str
, ARRAY_SIZE(ints
), ints
);
661 apic_printk(APIC_VERBOSE
, KERN_INFO
662 "PIRQ redirection, working around broken MP-BIOS.\n");
664 if (ints
[0] < MAX_PIRQS
)
667 for (i
= 0; i
< max
; i
++) {
668 apic_printk(APIC_VERBOSE
, KERN_DEBUG
669 "... PIRQ%d -> IRQ %d\n", i
, ints
[i
+1]);
671 * PIRQs are mapped upside down, usually.
673 pirq_entries
[MAX_PIRQS
-i
-1] = ints
[i
+1];
678 __setup("pirq=", ioapic_pirq_setup
);
679 #endif /* CONFIG_X86_32 */
681 struct IO_APIC_route_entry
**alloc_ioapic_entries(void)
684 struct IO_APIC_route_entry
**ioapic_entries
;
686 ioapic_entries
= kzalloc(sizeof(*ioapic_entries
) * nr_ioapics
,
691 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
692 ioapic_entries
[apic
] =
693 kzalloc(sizeof(struct IO_APIC_route_entry
) *
694 nr_ioapic_registers
[apic
], GFP_ATOMIC
);
695 if (!ioapic_entries
[apic
])
699 return ioapic_entries
;
703 kfree(ioapic_entries
[apic
]);
704 kfree(ioapic_entries
);
710 * Saves all the IO-APIC RTE's
712 int save_IO_APIC_setup(struct IO_APIC_route_entry
**ioapic_entries
)
719 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
720 if (!ioapic_entries
[apic
])
723 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
724 ioapic_entries
[apic
][pin
] =
725 ioapic_read_entry(apic
, pin
);
732 * Mask all IO APIC entries.
734 void mask_IO_APIC_setup(struct IO_APIC_route_entry
**ioapic_entries
)
741 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
742 if (!ioapic_entries
[apic
])
745 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
746 struct IO_APIC_route_entry entry
;
748 entry
= ioapic_entries
[apic
][pin
];
751 ioapic_write_entry(apic
, pin
, entry
);
758 * Restore IO APIC entries which was saved in ioapic_entries.
760 int restore_IO_APIC_setup(struct IO_APIC_route_entry
**ioapic_entries
)
767 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
768 if (!ioapic_entries
[apic
])
771 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++)
772 ioapic_write_entry(apic
, pin
,
773 ioapic_entries
[apic
][pin
]);
778 void free_ioapic_entries(struct IO_APIC_route_entry
**ioapic_entries
)
782 for (apic
= 0; apic
< nr_ioapics
; apic
++)
783 kfree(ioapic_entries
[apic
]);
785 kfree(ioapic_entries
);
789 * Find the IRQ entry number of a certain pin.
791 static int find_irq_entry(int apic
, int pin
, int type
)
795 for (i
= 0; i
< mp_irq_entries
; i
++)
796 if (mp_irqs
[i
].irqtype
== type
&&
797 (mp_irqs
[i
].dstapic
== mp_ioapics
[apic
].apicid
||
798 mp_irqs
[i
].dstapic
== MP_APIC_ALL
) &&
799 mp_irqs
[i
].dstirq
== pin
)
806 * Find the pin to which IRQ[irq] (ISA) is connected
808 static int __init
find_isa_irq_pin(int irq
, int type
)
812 for (i
= 0; i
< mp_irq_entries
; i
++) {
813 int lbus
= mp_irqs
[i
].srcbus
;
815 if (test_bit(lbus
, mp_bus_not_pci
) &&
816 (mp_irqs
[i
].irqtype
== type
) &&
817 (mp_irqs
[i
].srcbusirq
== irq
))
819 return mp_irqs
[i
].dstirq
;
824 static int __init
find_isa_irq_apic(int irq
, int type
)
828 for (i
= 0; i
< mp_irq_entries
; i
++) {
829 int lbus
= mp_irqs
[i
].srcbus
;
831 if (test_bit(lbus
, mp_bus_not_pci
) &&
832 (mp_irqs
[i
].irqtype
== type
) &&
833 (mp_irqs
[i
].srcbusirq
== irq
))
836 if (i
< mp_irq_entries
) {
838 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
839 if (mp_ioapics
[apic
].apicid
== mp_irqs
[i
].dstapic
)
847 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
849 * EISA Edge/Level control register, ELCR
851 static int EISA_ELCR(unsigned int irq
)
853 if (irq
< NR_IRQS_LEGACY
) {
854 unsigned int port
= 0x4d0 + (irq
>> 3);
855 return (inb(port
) >> (irq
& 7)) & 1;
857 apic_printk(APIC_VERBOSE
, KERN_INFO
858 "Broken MPtable reports ISA irq %d\n", irq
);
864 /* ISA interrupts are always polarity zero edge triggered,
865 * when listed as conforming in the MP table. */
867 #define default_ISA_trigger(idx) (0)
868 #define default_ISA_polarity(idx) (0)
870 /* EISA interrupts are always polarity zero and can be edge or level
871 * trigger depending on the ELCR value. If an interrupt is listed as
872 * EISA conforming in the MP table, that means its trigger type must
873 * be read in from the ELCR */
875 #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
876 #define default_EISA_polarity(idx) default_ISA_polarity(idx)
878 /* PCI interrupts are always polarity one level triggered,
879 * when listed as conforming in the MP table. */
881 #define default_PCI_trigger(idx) (1)
882 #define default_PCI_polarity(idx) (1)
884 /* MCA interrupts are always polarity zero level triggered,
885 * when listed as conforming in the MP table. */
887 #define default_MCA_trigger(idx) (1)
888 #define default_MCA_polarity(idx) default_ISA_polarity(idx)
890 static int MPBIOS_polarity(int idx
)
892 int bus
= mp_irqs
[idx
].srcbus
;
896 * Determine IRQ line polarity (high active or low active):
898 switch (mp_irqs
[idx
].irqflag
& 3)
900 case 0: /* conforms, ie. bus-type dependent polarity */
901 if (test_bit(bus
, mp_bus_not_pci
))
902 polarity
= default_ISA_polarity(idx
);
904 polarity
= default_PCI_polarity(idx
);
906 case 1: /* high active */
911 case 2: /* reserved */
913 printk(KERN_WARNING
"broken BIOS!!\n");
917 case 3: /* low active */
922 default: /* invalid */
924 printk(KERN_WARNING
"broken BIOS!!\n");
932 static int MPBIOS_trigger(int idx
)
934 int bus
= mp_irqs
[idx
].srcbus
;
938 * Determine IRQ trigger mode (edge or level sensitive):
940 switch ((mp_irqs
[idx
].irqflag
>>2) & 3)
942 case 0: /* conforms, ie. bus-type dependent */
943 if (test_bit(bus
, mp_bus_not_pci
))
944 trigger
= default_ISA_trigger(idx
);
946 trigger
= default_PCI_trigger(idx
);
947 #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
948 switch (mp_bus_id_to_type
[bus
]) {
949 case MP_BUS_ISA
: /* ISA pin */
951 /* set before the switch */
954 case MP_BUS_EISA
: /* EISA pin */
956 trigger
= default_EISA_trigger(idx
);
959 case MP_BUS_PCI
: /* PCI pin */
961 /* set before the switch */
964 case MP_BUS_MCA
: /* MCA pin */
966 trigger
= default_MCA_trigger(idx
);
971 printk(KERN_WARNING
"broken BIOS!!\n");
983 case 2: /* reserved */
985 printk(KERN_WARNING
"broken BIOS!!\n");
994 default: /* invalid */
996 printk(KERN_WARNING
"broken BIOS!!\n");
1004 static inline int irq_polarity(int idx
)
1006 return MPBIOS_polarity(idx
);
1009 static inline int irq_trigger(int idx
)
1011 return MPBIOS_trigger(idx
);
1014 int (*ioapic_renumber_irq
)(int ioapic
, int irq
);
1015 static int pin_2_irq(int idx
, int apic
, int pin
)
1018 int bus
= mp_irqs
[idx
].srcbus
;
1021 * Debugging check, we are in big trouble if this message pops up!
1023 if (mp_irqs
[idx
].dstirq
!= pin
)
1024 printk(KERN_ERR
"broken BIOS or MPTABLE parser, ayiee!!\n");
1026 if (test_bit(bus
, mp_bus_not_pci
)) {
1027 irq
= mp_irqs
[idx
].srcbusirq
;
1030 * PCI IRQs are mapped in order
1034 irq
+= nr_ioapic_registers
[i
++];
1037 * For MPS mode, so far only needed by ES7000 platform
1039 if (ioapic_renumber_irq
)
1040 irq
= ioapic_renumber_irq(apic
, irq
);
1043 #ifdef CONFIG_X86_32
1045 * PCI IRQ command line redirection. Yes, limits are hardcoded.
1047 if ((pin
>= 16) && (pin
<= 23)) {
1048 if (pirq_entries
[pin
-16] != -1) {
1049 if (!pirq_entries
[pin
-16]) {
1050 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1051 "disabling PIRQ%d\n", pin
-16);
1053 irq
= pirq_entries
[pin
-16];
1054 apic_printk(APIC_VERBOSE
, KERN_DEBUG
1055 "using PIRQ%d -> IRQ %d\n",
1066 * Find a specific PCI IRQ entry.
1067 * Not an __init, possibly needed by modules
1069 int IO_APIC_get_PCI_irq_vector(int bus
, int slot
, int pin
,
1070 struct io_apic_irq_attr
*irq_attr
)
1072 int apic
, i
, best_guess
= -1;
1074 apic_printk(APIC_DEBUG
,
1075 "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
1077 if (test_bit(bus
, mp_bus_not_pci
)) {
1078 apic_printk(APIC_VERBOSE
,
1079 "PCI BIOS passed nonexistent PCI bus %d!\n", bus
);
1082 for (i
= 0; i
< mp_irq_entries
; i
++) {
1083 int lbus
= mp_irqs
[i
].srcbus
;
1085 for (apic
= 0; apic
< nr_ioapics
; apic
++)
1086 if (mp_ioapics
[apic
].apicid
== mp_irqs
[i
].dstapic
||
1087 mp_irqs
[i
].dstapic
== MP_APIC_ALL
)
1090 if (!test_bit(lbus
, mp_bus_not_pci
) &&
1091 !mp_irqs
[i
].irqtype
&&
1093 (slot
== ((mp_irqs
[i
].srcbusirq
>> 2) & 0x1f))) {
1094 int irq
= pin_2_irq(i
, apic
, mp_irqs
[i
].dstirq
);
1096 if (!(apic
|| IO_APIC_IRQ(irq
)))
1099 if (pin
== (mp_irqs
[i
].srcbusirq
& 3)) {
1100 set_io_apic_irq_attr(irq_attr
, apic
,
1107 * Use the first all-but-pin matching entry as a
1108 * best-guess fuzzy result for broken mptables.
1110 if (best_guess
< 0) {
1111 set_io_apic_irq_attr(irq_attr
, apic
,
1121 EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector
);
1123 void lock_vector_lock(void)
1125 /* Used to the online set of cpus does not change
1126 * during assign_irq_vector.
1128 spin_lock(&vector_lock
);
1131 void unlock_vector_lock(void)
1133 spin_unlock(&vector_lock
);
1137 __assign_irq_vector(int irq
, struct irq_cfg
*cfg
, const struct cpumask
*mask
)
1140 * NOTE! The local APIC isn't very good at handling
1141 * multiple interrupts at the same interrupt level.
1142 * As the interrupt level is determined by taking the
1143 * vector number and shifting that right by 4, we
1144 * want to spread these out a bit so that they don't
1145 * all fall in the same interrupt level.
1147 * Also, we've got to be careful not to trash gate
1148 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1150 static int current_vector
= FIRST_DEVICE_VECTOR
, current_offset
= 0;
1151 unsigned int old_vector
;
1153 cpumask_var_t tmp_mask
;
1155 if ((cfg
->move_in_progress
) || cfg
->move_cleanup_count
)
1158 if (!alloc_cpumask_var(&tmp_mask
, GFP_ATOMIC
))
1161 old_vector
= cfg
->vector
;
1163 cpumask_and(tmp_mask
, mask
, cpu_online_mask
);
1164 cpumask_and(tmp_mask
, cfg
->domain
, tmp_mask
);
1165 if (!cpumask_empty(tmp_mask
)) {
1166 free_cpumask_var(tmp_mask
);
1171 /* Only try and allocate irqs on cpus that are present */
1173 for_each_cpu_and(cpu
, mask
, cpu_online_mask
) {
1177 apic
->vector_allocation_domain(cpu
, tmp_mask
);
1179 vector
= current_vector
;
1180 offset
= current_offset
;
1183 if (vector
>= first_system_vector
) {
1184 /* If out of vectors on large boxen, must share them. */
1185 offset
= (offset
+ 1) % 8;
1186 vector
= FIRST_DEVICE_VECTOR
+ offset
;
1188 if (unlikely(current_vector
== vector
))
1191 if (test_bit(vector
, used_vectors
))
1194 for_each_cpu_and(new_cpu
, tmp_mask
, cpu_online_mask
)
1195 if (per_cpu(vector_irq
, new_cpu
)[vector
] != -1)
1198 current_vector
= vector
;
1199 current_offset
= offset
;
1201 cfg
->move_in_progress
= 1;
1202 cpumask_copy(cfg
->old_domain
, cfg
->domain
);
1204 for_each_cpu_and(new_cpu
, tmp_mask
, cpu_online_mask
)
1205 per_cpu(vector_irq
, new_cpu
)[vector
] = irq
;
1206 cfg
->vector
= vector
;
1207 cpumask_copy(cfg
->domain
, tmp_mask
);
1211 free_cpumask_var(tmp_mask
);
1216 assign_irq_vector(int irq
, struct irq_cfg
*cfg
, const struct cpumask
*mask
)
1219 unsigned long flags
;
1221 spin_lock_irqsave(&vector_lock
, flags
);
1222 err
= __assign_irq_vector(irq
, cfg
, mask
);
1223 spin_unlock_irqrestore(&vector_lock
, flags
);
1227 static void __clear_irq_vector(int irq
, struct irq_cfg
*cfg
)
1231 BUG_ON(!cfg
->vector
);
1233 vector
= cfg
->vector
;
1234 for_each_cpu_and(cpu
, cfg
->domain
, cpu_online_mask
)
1235 per_cpu(vector_irq
, cpu
)[vector
] = -1;
1238 cpumask_clear(cfg
->domain
);
1240 if (likely(!cfg
->move_in_progress
))
1242 for_each_cpu_and(cpu
, cfg
->old_domain
, cpu_online_mask
) {
1243 for (vector
= FIRST_EXTERNAL_VECTOR
; vector
< NR_VECTORS
;
1245 if (per_cpu(vector_irq
, cpu
)[vector
] != irq
)
1247 per_cpu(vector_irq
, cpu
)[vector
] = -1;
1251 cfg
->move_in_progress
= 0;
1254 void __setup_vector_irq(int cpu
)
1256 /* Initialize vector_irq on a new cpu */
1257 /* This function must be called with vector_lock held */
1259 struct irq_cfg
*cfg
;
1260 struct irq_desc
*desc
;
1262 /* Mark the inuse vectors */
1263 for_each_irq_desc(irq
, desc
) {
1264 cfg
= desc
->chip_data
;
1265 if (!cpumask_test_cpu(cpu
, cfg
->domain
))
1267 vector
= cfg
->vector
;
1268 per_cpu(vector_irq
, cpu
)[vector
] = irq
;
1270 /* Mark the free vectors */
1271 for (vector
= 0; vector
< NR_VECTORS
; ++vector
) {
1272 irq
= per_cpu(vector_irq
, cpu
)[vector
];
1277 if (!cpumask_test_cpu(cpu
, cfg
->domain
))
1278 per_cpu(vector_irq
, cpu
)[vector
] = -1;
1282 static struct irq_chip ioapic_chip
;
1283 static struct irq_chip ir_ioapic_chip
;
1285 #define IOAPIC_AUTO -1
1286 #define IOAPIC_EDGE 0
1287 #define IOAPIC_LEVEL 1
1289 #ifdef CONFIG_X86_32
1290 static inline int IO_APIC_irq_trigger(int irq
)
1294 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1295 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1296 idx
= find_irq_entry(apic
, pin
, mp_INT
);
1297 if ((idx
!= -1) && (irq
== pin_2_irq(idx
, apic
, pin
)))
1298 return irq_trigger(idx
);
1302 * nonexistent IRQs are edge default
1307 static inline int IO_APIC_irq_trigger(int irq
)
1313 static void ioapic_register_intr(int irq
, struct irq_desc
*desc
, unsigned long trigger
)
1316 if ((trigger
== IOAPIC_AUTO
&& IO_APIC_irq_trigger(irq
)) ||
1317 trigger
== IOAPIC_LEVEL
)
1318 desc
->status
|= IRQ_LEVEL
;
1320 desc
->status
&= ~IRQ_LEVEL
;
1322 if (irq_remapped(irq
)) {
1323 desc
->status
|= IRQ_MOVE_PCNTXT
;
1325 set_irq_chip_and_handler_name(irq
, &ir_ioapic_chip
,
1329 set_irq_chip_and_handler_name(irq
, &ir_ioapic_chip
,
1330 handle_edge_irq
, "edge");
1334 if ((trigger
== IOAPIC_AUTO
&& IO_APIC_irq_trigger(irq
)) ||
1335 trigger
== IOAPIC_LEVEL
)
1336 set_irq_chip_and_handler_name(irq
, &ioapic_chip
,
1340 set_irq_chip_and_handler_name(irq
, &ioapic_chip
,
1341 handle_edge_irq
, "edge");
1344 int setup_ioapic_entry(int apic_id
, int irq
,
1345 struct IO_APIC_route_entry
*entry
,
1346 unsigned int destination
, int trigger
,
1347 int polarity
, int vector
, int pin
)
1350 * add it to the IO-APIC irq-routing table:
1352 memset(entry
,0,sizeof(*entry
));
1354 if (intr_remapping_enabled
) {
1355 struct intel_iommu
*iommu
= map_ioapic_to_ir(apic_id
);
1357 struct IR_IO_APIC_route_entry
*ir_entry
=
1358 (struct IR_IO_APIC_route_entry
*) entry
;
1362 panic("No mapping iommu for ioapic %d\n", apic_id
);
1364 index
= alloc_irte(iommu
, irq
, 1);
1366 panic("Failed to allocate IRTE for ioapic %d\n", apic_id
);
1368 memset(&irte
, 0, sizeof(irte
));
1371 irte
.dst_mode
= apic
->irq_dest_mode
;
1373 * Trigger mode in the IRTE will always be edge, and the
1374 * actual level or edge trigger will be setup in the IO-APIC
1375 * RTE. This will help simplify level triggered irq migration.
1376 * For more details, see the comments above explainig IO-APIC
1377 * irq migration in the presence of interrupt-remapping.
1379 irte
.trigger_mode
= 0;
1380 irte
.dlvry_mode
= apic
->irq_delivery_mode
;
1381 irte
.vector
= vector
;
1382 irte
.dest_id
= IRTE_DEST(destination
);
1384 /* Set source-id of interrupt request */
1385 set_ioapic_sid(&irte
, apic_id
);
1387 modify_irte(irq
, &irte
);
1389 ir_entry
->index2
= (index
>> 15) & 0x1;
1391 ir_entry
->format
= 1;
1392 ir_entry
->index
= (index
& 0x7fff);
1394 * IO-APIC RTE will be configured with virtual vector.
1395 * irq handler will do the explicit EOI to the io-apic.
1397 ir_entry
->vector
= pin
;
1399 entry
->delivery_mode
= apic
->irq_delivery_mode
;
1400 entry
->dest_mode
= apic
->irq_dest_mode
;
1401 entry
->dest
= destination
;
1402 entry
->vector
= vector
;
1405 entry
->mask
= 0; /* enable IRQ */
1406 entry
->trigger
= trigger
;
1407 entry
->polarity
= polarity
;
1409 /* Mask level triggered irqs.
1410 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
1417 static void setup_IO_APIC_irq(int apic_id
, int pin
, unsigned int irq
, struct irq_desc
*desc
,
1418 int trigger
, int polarity
)
1420 struct irq_cfg
*cfg
;
1421 struct IO_APIC_route_entry entry
;
1424 if (!IO_APIC_IRQ(irq
))
1427 cfg
= desc
->chip_data
;
1429 if (assign_irq_vector(irq
, cfg
, apic
->target_cpus()))
1432 dest
= apic
->cpu_mask_to_apicid_and(cfg
->domain
, apic
->target_cpus());
1434 apic_printk(APIC_VERBOSE
,KERN_DEBUG
1435 "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
1436 "IRQ %d Mode:%i Active:%i)\n",
1437 apic_id
, mp_ioapics
[apic_id
].apicid
, pin
, cfg
->vector
,
1438 irq
, trigger
, polarity
);
1441 if (setup_ioapic_entry(mp_ioapics
[apic_id
].apicid
, irq
, &entry
,
1442 dest
, trigger
, polarity
, cfg
->vector
, pin
)) {
1443 printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
1444 mp_ioapics
[apic_id
].apicid
, pin
);
1445 __clear_irq_vector(irq
, cfg
);
1449 ioapic_register_intr(irq
, desc
, trigger
);
1450 if (irq
< NR_IRQS_LEGACY
)
1451 disable_8259A_irq(irq
);
1453 ioapic_write_entry(apic_id
, pin
, entry
);
1457 DECLARE_BITMAP(pin_programmed
, MP_MAX_IOAPIC_PIN
+ 1);
1458 } mp_ioapic_routing
[MAX_IO_APICS
];
1460 static void __init
setup_IO_APIC_irqs(void)
1462 int apic_id
= 0, pin
, idx
, irq
;
1464 struct irq_desc
*desc
;
1465 struct irq_cfg
*cfg
;
1466 int node
= cpu_to_node(boot_cpu_id
);
1468 apic_printk(APIC_VERBOSE
, KERN_DEBUG
"init IO_APIC IRQs\n");
1471 if (!acpi_disabled
&& acpi_ioapic
) {
1472 apic_id
= mp_find_ioapic(0);
1478 for (pin
= 0; pin
< nr_ioapic_registers
[apic_id
]; pin
++) {
1479 idx
= find_irq_entry(apic_id
, pin
, mp_INT
);
1483 apic_printk(APIC_VERBOSE
,
1484 KERN_DEBUG
" %d-%d",
1485 mp_ioapics
[apic_id
].apicid
, pin
);
1487 apic_printk(APIC_VERBOSE
, " %d-%d",
1488 mp_ioapics
[apic_id
].apicid
, pin
);
1492 apic_printk(APIC_VERBOSE
,
1493 " (apicid-pin) not connected\n");
1497 irq
= pin_2_irq(idx
, apic_id
, pin
);
1500 * Skip the timer IRQ if there's a quirk handler
1501 * installed and if it returns 1:
1503 if (apic
->multi_timer_check
&&
1504 apic
->multi_timer_check(apic_id
, irq
))
1507 desc
= irq_to_desc_alloc_node(irq
, node
);
1509 printk(KERN_INFO
"can not get irq_desc for %d\n", irq
);
1512 cfg
= desc
->chip_data
;
1513 add_pin_to_irq_node(cfg
, node
, apic_id
, pin
);
1515 * don't mark it in pin_programmed, so later acpi could
1516 * set it correctly when irq < 16
1518 setup_IO_APIC_irq(apic_id
, pin
, irq
, desc
,
1519 irq_trigger(idx
), irq_polarity(idx
));
1523 apic_printk(APIC_VERBOSE
,
1524 " (apicid-pin) not connected\n");
1528 * Set up the timer pin, possibly with the 8259A-master behind.
1530 static void __init
setup_timer_IRQ0_pin(unsigned int apic_id
, unsigned int pin
,
1533 struct IO_APIC_route_entry entry
;
1535 if (intr_remapping_enabled
)
1538 memset(&entry
, 0, sizeof(entry
));
1541 * We use logical delivery to get the timer IRQ
1544 entry
.dest_mode
= apic
->irq_dest_mode
;
1545 entry
.mask
= 0; /* don't mask IRQ for edge */
1546 entry
.dest
= apic
->cpu_mask_to_apicid(apic
->target_cpus());
1547 entry
.delivery_mode
= apic
->irq_delivery_mode
;
1550 entry
.vector
= vector
;
1553 * The timer IRQ doesn't have to know that behind the
1554 * scene we may have a 8259A-master in AEOI mode ...
1556 set_irq_chip_and_handler_name(0, &ioapic_chip
, handle_edge_irq
, "edge");
1559 * Add it to the IO-APIC irq-routing table:
1561 ioapic_write_entry(apic_id
, pin
, entry
);
1565 __apicdebuginit(void) print_IO_APIC(void)
1568 union IO_APIC_reg_00 reg_00
;
1569 union IO_APIC_reg_01 reg_01
;
1570 union IO_APIC_reg_02 reg_02
;
1571 union IO_APIC_reg_03 reg_03
;
1572 unsigned long flags
;
1573 struct irq_cfg
*cfg
;
1574 struct irq_desc
*desc
;
1577 if (apic_verbosity
== APIC_QUIET
)
1580 printk(KERN_DEBUG
"number of MP IRQ sources: %d.\n", mp_irq_entries
);
1581 for (i
= 0; i
< nr_ioapics
; i
++)
1582 printk(KERN_DEBUG
"number of IO-APIC #%d registers: %d.\n",
1583 mp_ioapics
[i
].apicid
, nr_ioapic_registers
[i
]);
1586 * We are a bit conservative about what we expect. We have to
1587 * know about every hardware change ASAP.
1589 printk(KERN_INFO
"testing the IO APIC.......................\n");
1591 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1593 spin_lock_irqsave(&ioapic_lock
, flags
);
1594 reg_00
.raw
= io_apic_read(apic
, 0);
1595 reg_01
.raw
= io_apic_read(apic
, 1);
1596 if (reg_01
.bits
.version
>= 0x10)
1597 reg_02
.raw
= io_apic_read(apic
, 2);
1598 if (reg_01
.bits
.version
>= 0x20)
1599 reg_03
.raw
= io_apic_read(apic
, 3);
1600 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1603 printk(KERN_DEBUG
"IO APIC #%d......\n", mp_ioapics
[apic
].apicid
);
1604 printk(KERN_DEBUG
".... register #00: %08X\n", reg_00
.raw
);
1605 printk(KERN_DEBUG
"....... : physical APIC id: %02X\n", reg_00
.bits
.ID
);
1606 printk(KERN_DEBUG
"....... : Delivery Type: %X\n", reg_00
.bits
.delivery_type
);
1607 printk(KERN_DEBUG
"....... : LTS : %X\n", reg_00
.bits
.LTS
);
1609 printk(KERN_DEBUG
".... register #01: %08X\n", *(int *)®_01
);
1610 printk(KERN_DEBUG
"....... : max redirection entries: %04X\n", reg_01
.bits
.entries
);
1612 printk(KERN_DEBUG
"....... : PRQ implemented: %X\n", reg_01
.bits
.PRQ
);
1613 printk(KERN_DEBUG
"....... : IO APIC version: %04X\n", reg_01
.bits
.version
);
1616 * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
1617 * but the value of reg_02 is read as the previous read register
1618 * value, so ignore it if reg_02 == reg_01.
1620 if (reg_01
.bits
.version
>= 0x10 && reg_02
.raw
!= reg_01
.raw
) {
1621 printk(KERN_DEBUG
".... register #02: %08X\n", reg_02
.raw
);
1622 printk(KERN_DEBUG
"....... : arbitration: %02X\n", reg_02
.bits
.arbitration
);
1626 * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
1627 * or reg_03, but the value of reg_0[23] is read as the previous read
1628 * register value, so ignore it if reg_03 == reg_0[12].
1630 if (reg_01
.bits
.version
>= 0x20 && reg_03
.raw
!= reg_02
.raw
&&
1631 reg_03
.raw
!= reg_01
.raw
) {
1632 printk(KERN_DEBUG
".... register #03: %08X\n", reg_03
.raw
);
1633 printk(KERN_DEBUG
"....... : Boot DT : %X\n", reg_03
.bits
.boot_DT
);
1636 printk(KERN_DEBUG
".... IRQ redirection table:\n");
1638 printk(KERN_DEBUG
" NR Dst Mask Trig IRR Pol"
1639 " Stat Dmod Deli Vect: \n");
1641 for (i
= 0; i
<= reg_01
.bits
.entries
; i
++) {
1642 struct IO_APIC_route_entry entry
;
1644 entry
= ioapic_read_entry(apic
, i
);
1646 printk(KERN_DEBUG
" %02x %03X ",
1651 printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
1656 entry
.delivery_status
,
1658 entry
.delivery_mode
,
1663 printk(KERN_DEBUG
"IRQ to pin mappings:\n");
1664 for_each_irq_desc(irq
, desc
) {
1665 struct irq_pin_list
*entry
;
1667 cfg
= desc
->chip_data
;
1668 entry
= cfg
->irq_2_pin
;
1671 printk(KERN_DEBUG
"IRQ%d ", irq
);
1673 printk("-> %d:%d", entry
->apic
, entry
->pin
);
1676 entry
= entry
->next
;
1681 printk(KERN_INFO
".................................... done.\n");
1686 __apicdebuginit(void) print_APIC_field(int base
)
1690 if (apic_verbosity
== APIC_QUIET
)
1695 for (i
= 0; i
< 8; i
++)
1696 printk(KERN_CONT
"%08x", apic_read(base
+ i
*0x10));
1698 printk(KERN_CONT
"\n");
1701 __apicdebuginit(void) print_local_APIC(void *dummy
)
1703 unsigned int i
, v
, ver
, maxlvt
;
1706 if (apic_verbosity
== APIC_QUIET
)
1709 printk(KERN_DEBUG
"printing local APIC contents on CPU#%d/%d:\n",
1710 smp_processor_id(), hard_smp_processor_id());
1711 v
= apic_read(APIC_ID
);
1712 printk(KERN_INFO
"... APIC ID: %08x (%01x)\n", v
, read_apic_id());
1713 v
= apic_read(APIC_LVR
);
1714 printk(KERN_INFO
"... APIC VERSION: %08x\n", v
);
1715 ver
= GET_APIC_VERSION(v
);
1716 maxlvt
= lapic_get_maxlvt();
1718 v
= apic_read(APIC_TASKPRI
);
1719 printk(KERN_DEBUG
"... APIC TASKPRI: %08x (%02x)\n", v
, v
& APIC_TPRI_MASK
);
1721 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1722 if (!APIC_XAPIC(ver
)) {
1723 v
= apic_read(APIC_ARBPRI
);
1724 printk(KERN_DEBUG
"... APIC ARBPRI: %08x (%02x)\n", v
,
1725 v
& APIC_ARBPRI_MASK
);
1727 v
= apic_read(APIC_PROCPRI
);
1728 printk(KERN_DEBUG
"... APIC PROCPRI: %08x\n", v
);
1732 * Remote read supported only in the 82489DX and local APIC for
1733 * Pentium processors.
1735 if (!APIC_INTEGRATED(ver
) || maxlvt
== 3) {
1736 v
= apic_read(APIC_RRR
);
1737 printk(KERN_DEBUG
"... APIC RRR: %08x\n", v
);
1740 v
= apic_read(APIC_LDR
);
1741 printk(KERN_DEBUG
"... APIC LDR: %08x\n", v
);
1742 if (!x2apic_enabled()) {
1743 v
= apic_read(APIC_DFR
);
1744 printk(KERN_DEBUG
"... APIC DFR: %08x\n", v
);
1746 v
= apic_read(APIC_SPIV
);
1747 printk(KERN_DEBUG
"... APIC SPIV: %08x\n", v
);
1749 printk(KERN_DEBUG
"... APIC ISR field:\n");
1750 print_APIC_field(APIC_ISR
);
1751 printk(KERN_DEBUG
"... APIC TMR field:\n");
1752 print_APIC_field(APIC_TMR
);
1753 printk(KERN_DEBUG
"... APIC IRR field:\n");
1754 print_APIC_field(APIC_IRR
);
1756 if (APIC_INTEGRATED(ver
)) { /* !82489DX */
1757 if (maxlvt
> 3) /* Due to the Pentium erratum 3AP. */
1758 apic_write(APIC_ESR
, 0);
1760 v
= apic_read(APIC_ESR
);
1761 printk(KERN_DEBUG
"... APIC ESR: %08x\n", v
);
1764 icr
= apic_icr_read();
1765 printk(KERN_DEBUG
"... APIC ICR: %08x\n", (u32
)icr
);
1766 printk(KERN_DEBUG
"... APIC ICR2: %08x\n", (u32
)(icr
>> 32));
1768 v
= apic_read(APIC_LVTT
);
1769 printk(KERN_DEBUG
"... APIC LVTT: %08x\n", v
);
1771 if (maxlvt
> 3) { /* PC is LVT#4. */
1772 v
= apic_read(APIC_LVTPC
);
1773 printk(KERN_DEBUG
"... APIC LVTPC: %08x\n", v
);
1775 v
= apic_read(APIC_LVT0
);
1776 printk(KERN_DEBUG
"... APIC LVT0: %08x\n", v
);
1777 v
= apic_read(APIC_LVT1
);
1778 printk(KERN_DEBUG
"... APIC LVT1: %08x\n", v
);
1780 if (maxlvt
> 2) { /* ERR is LVT#3. */
1781 v
= apic_read(APIC_LVTERR
);
1782 printk(KERN_DEBUG
"... APIC LVTERR: %08x\n", v
);
1785 v
= apic_read(APIC_TMICT
);
1786 printk(KERN_DEBUG
"... APIC TMICT: %08x\n", v
);
1787 v
= apic_read(APIC_TMCCT
);
1788 printk(KERN_DEBUG
"... APIC TMCCT: %08x\n", v
);
1789 v
= apic_read(APIC_TDCR
);
1790 printk(KERN_DEBUG
"... APIC TDCR: %08x\n", v
);
1792 if (boot_cpu_has(X86_FEATURE_EXTAPIC
)) {
1793 v
= apic_read(APIC_EFEAT
);
1794 maxlvt
= (v
>> 16) & 0xff;
1795 printk(KERN_DEBUG
"... APIC EFEAT: %08x\n", v
);
1796 v
= apic_read(APIC_ECTRL
);
1797 printk(KERN_DEBUG
"... APIC ECTRL: %08x\n", v
);
1798 for (i
= 0; i
< maxlvt
; i
++) {
1799 v
= apic_read(APIC_EILVTn(i
));
1800 printk(KERN_DEBUG
"... APIC EILVT%d: %08x\n", i
, v
);
1806 __apicdebuginit(void) print_all_local_APICs(void)
1811 for_each_online_cpu(cpu
)
1812 smp_call_function_single(cpu
, print_local_APIC
, NULL
, 1);
1816 __apicdebuginit(void) print_PIC(void)
1819 unsigned long flags
;
1821 if (apic_verbosity
== APIC_QUIET
)
1824 printk(KERN_DEBUG
"\nprinting PIC contents\n");
1826 spin_lock_irqsave(&i8259A_lock
, flags
);
1828 v
= inb(0xa1) << 8 | inb(0x21);
1829 printk(KERN_DEBUG
"... PIC IMR: %04x\n", v
);
1831 v
= inb(0xa0) << 8 | inb(0x20);
1832 printk(KERN_DEBUG
"... PIC IRR: %04x\n", v
);
1836 v
= inb(0xa0) << 8 | inb(0x20);
1840 spin_unlock_irqrestore(&i8259A_lock
, flags
);
1842 printk(KERN_DEBUG
"... PIC ISR: %04x\n", v
);
1844 v
= inb(0x4d1) << 8 | inb(0x4d0);
1845 printk(KERN_DEBUG
"... PIC ELCR: %04x\n", v
);
1848 __apicdebuginit(int) print_all_ICs(void)
1852 /* don't print out if apic is not there */
1853 if (!cpu_has_apic
|| disable_apic
)
1856 print_all_local_APICs();
1862 fs_initcall(print_all_ICs
);
1865 /* Where if anywhere is the i8259 connect in external int mode */
1866 static struct { int pin
, apic
; } ioapic_i8259
= { -1, -1 };
1868 void __init
enable_IO_APIC(void)
1870 union IO_APIC_reg_01 reg_01
;
1871 int i8259_apic
, i8259_pin
;
1873 unsigned long flags
;
1876 * The number of IO-APIC IRQ registers (== #pins):
1878 for (apic
= 0; apic
< nr_ioapics
; apic
++) {
1879 spin_lock_irqsave(&ioapic_lock
, flags
);
1880 reg_01
.raw
= io_apic_read(apic
, 1);
1881 spin_unlock_irqrestore(&ioapic_lock
, flags
);
1882 nr_ioapic_registers
[apic
] = reg_01
.bits
.entries
+1;
1884 for(apic
= 0; apic
< nr_ioapics
; apic
++) {
1886 /* See if any of the pins is in ExtINT mode */
1887 for (pin
= 0; pin
< nr_ioapic_registers
[apic
]; pin
++) {
1888 struct IO_APIC_route_entry entry
;
1889 entry
= ioapic_read_entry(apic
, pin
);
1891 /* If the interrupt line is enabled and in ExtInt mode
1892 * I have found the pin where the i8259 is connected.
1894 if ((entry
.mask
== 0) && (entry
.delivery_mode
== dest_ExtINT
)) {
1895 ioapic_i8259
.apic
= apic
;
1896 ioapic_i8259
.pin
= pin
;
1902 /* Look to see what if the MP table has reported the ExtINT */
1903 /* If we could not find the appropriate pin by looking at the ioapic
1904 * the i8259 probably is not connected the ioapic but give the
1905 * mptable a chance anyway.
1907 i8259_pin
= find_isa_irq_pin(0, mp_ExtINT
);
1908 i8259_apic
= find_isa_irq_apic(0, mp_ExtINT
);
1909 /* Trust the MP table if nothing is setup in the hardware */
1910 if ((ioapic_i8259
.pin
== -1) && (i8259_pin
>= 0)) {
1911 printk(KERN_WARNING
"ExtINT not setup in hardware but reported by MP table\n");
1912 ioapic_i8259
.pin
= i8259_pin
;
1913 ioapic_i8259
.apic
= i8259_apic
;
1915 /* Complain if the MP table and the hardware disagree */
1916 if (((ioapic_i8259
.apic
!= i8259_apic
) || (ioapic_i8259
.pin
!= i8259_pin
)) &&
1917 (i8259_pin
>= 0) && (ioapic_i8259
.pin
>= 0))
1919 printk(KERN_WARNING
"ExtINT in hardware and MP table differ\n");
1923 * Do not trust the IO-APIC being empty at bootup
1929 * Not an __init, needed by the reboot code
1931 void disable_IO_APIC(void)
1934 * Clear the IO-APIC before rebooting:
1939 * If the i8259 is routed through an IOAPIC
1940 * Put that IOAPIC in virtual wire mode
1941 * so legacy interrupts can be delivered.
1943 * With interrupt-remapping, for now we will use virtual wire A mode,
1944 * as virtual wire B is little complex (need to configure both
1945 * IOAPIC RTE aswell as interrupt-remapping table entry).
1946 * As this gets called during crash dump, keep this simple for now.
1948 if (ioapic_i8259
.pin
!= -1 && !intr_remapping_enabled
) {
1949 struct IO_APIC_route_entry entry
;
1951 memset(&entry
, 0, sizeof(entry
));
1952 entry
.mask
= 0; /* Enabled */
1953 entry
.trigger
= 0; /* Edge */
1955 entry
.polarity
= 0; /* High */
1956 entry
.delivery_status
= 0;
1957 entry
.dest_mode
= 0; /* Physical */
1958 entry
.delivery_mode
= dest_ExtINT
; /* ExtInt */
1960 entry
.dest
= read_apic_id();
1963 * Add it to the IO-APIC irq-routing table:
1965 ioapic_write_entry(ioapic_i8259
.apic
, ioapic_i8259
.pin
, entry
);
1969 * Use virtual wire A mode when interrupt remapping is enabled.
1972 disconnect_bsp_APIC(!intr_remapping_enabled
&&
1973 ioapic_i8259
.pin
!= -1);
1976 #ifdef CONFIG_X86_32
1978 * function to set the IO-APIC physical IDs based on the
1979 * values stored in the MPC table.
1981 * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
1984 static void __init
setup_ioapic_ids_from_mpc(void)
1986 union IO_APIC_reg_00 reg_00
;
1987 physid_mask_t phys_id_present_map
;
1990 unsigned char old_id
;
1991 unsigned long flags
;
1993 if (x86_quirks
->setup_ioapic_ids
&& x86_quirks
->setup_ioapic_ids())
1997 * Don't check I/O APIC IDs for xAPIC systems. They have
1998 * no meaning without the serial APIC bus.
2000 if (!(boot_cpu_data
.x86_vendor
== X86_VENDOR_INTEL
)
2001 || APIC_XAPIC(apic_version
[boot_cpu_physical_apicid
]))
2004 * This is broken; anything with a real cpu count has to
2005 * circumvent this idiocy regardless.
2007 phys_id_present_map
= apic
->ioapic_phys_id_map(phys_cpu_present_map
);
2010 * Set the IOAPIC ID to the value stored in the MPC table.
2012 for (apic_id
= 0; apic_id
< nr_ioapics
; apic_id
++) {
2014 /* Read the register 0 value */
2015 spin_lock_irqsave(&ioapic_lock
, flags
);
2016 reg_00
.raw
= io_apic_read(apic_id
, 0);
2017 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2019 old_id
= mp_ioapics
[apic_id
].apicid
;
2021 if (mp_ioapics
[apic_id
].apicid
>= get_physical_broadcast()) {
2022 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
2023 apic_id
, mp_ioapics
[apic_id
].apicid
);
2024 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
2026 mp_ioapics
[apic_id
].apicid
= reg_00
.bits
.ID
;
2030 * Sanity check, is the ID really free? Every APIC in a
2031 * system must have a unique ID or we get lots of nice
2032 * 'stuck on smp_invalidate_needed IPI wait' messages.
2034 if (apic
->check_apicid_used(phys_id_present_map
,
2035 mp_ioapics
[apic_id
].apicid
)) {
2036 printk(KERN_ERR
"BIOS bug, IO-APIC#%d ID %d is already used!...\n",
2037 apic_id
, mp_ioapics
[apic_id
].apicid
);
2038 for (i
= 0; i
< get_physical_broadcast(); i
++)
2039 if (!physid_isset(i
, phys_id_present_map
))
2041 if (i
>= get_physical_broadcast())
2042 panic("Max APIC ID exceeded!\n");
2043 printk(KERN_ERR
"... fixing up to %d. (tell your hw vendor)\n",
2045 physid_set(i
, phys_id_present_map
);
2046 mp_ioapics
[apic_id
].apicid
= i
;
2049 tmp
= apic
->apicid_to_cpu_present(mp_ioapics
[apic_id
].apicid
);
2050 apic_printk(APIC_VERBOSE
, "Setting %d in the "
2051 "phys_id_present_map\n",
2052 mp_ioapics
[apic_id
].apicid
);
2053 physids_or(phys_id_present_map
, phys_id_present_map
, tmp
);
2058 * We need to adjust the IRQ routing table
2059 * if the ID changed.
2061 if (old_id
!= mp_ioapics
[apic_id
].apicid
)
2062 for (i
= 0; i
< mp_irq_entries
; i
++)
2063 if (mp_irqs
[i
].dstapic
== old_id
)
2065 = mp_ioapics
[apic_id
].apicid
;
2068 * Read the right value from the MPC table and
2069 * write it into the ID register.
2071 apic_printk(APIC_VERBOSE
, KERN_INFO
2072 "...changing IO-APIC physical APIC ID to %d ...",
2073 mp_ioapics
[apic_id
].apicid
);
2075 reg_00
.bits
.ID
= mp_ioapics
[apic_id
].apicid
;
2076 spin_lock_irqsave(&ioapic_lock
, flags
);
2077 io_apic_write(apic_id
, 0, reg_00
.raw
);
2078 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2083 spin_lock_irqsave(&ioapic_lock
, flags
);
2084 reg_00
.raw
= io_apic_read(apic_id
, 0);
2085 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2086 if (reg_00
.bits
.ID
!= mp_ioapics
[apic_id
].apicid
)
2087 printk("could not set ID!\n");
2089 apic_printk(APIC_VERBOSE
, " ok.\n");
2094 int no_timer_check __initdata
;
2096 static int __init
notimercheck(char *s
)
2101 __setup("no_timer_check", notimercheck
);
2104 * There is a nasty bug in some older SMP boards, their mptable lies
2105 * about the timer IRQ. We do the following to work around the situation:
2107 * - timer IRQ defaults to IO-APIC IRQ
2108 * - if this function detects that timer IRQs are defunct, then we fall
2109 * back to ISA timer IRQs
2111 static int __init
timer_irq_works(void)
2113 unsigned long t1
= jiffies
;
2114 unsigned long flags
;
2119 local_save_flags(flags
);
2121 /* Let ten ticks pass... */
2122 mdelay((10 * 1000) / HZ
);
2123 local_irq_restore(flags
);
2126 * Expect a few ticks at least, to be sure some possible
2127 * glue logic does not lock up after one or two first
2128 * ticks in a non-ExtINT mode. Also the local APIC
2129 * might have cached one ExtINT interrupt. Finally, at
2130 * least one tick may be lost due to delays.
2134 if (time_after(jiffies
, t1
+ 4))
2140 * In the SMP+IOAPIC case it might happen that there are an unspecified
2141 * number of pending IRQ events unhandled. These cases are very rare,
2142 * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
2143 * better to do it this way as thus we do not have to be aware of
2144 * 'pending' interrupts in the IRQ path, except at this point.
2147 * Edge triggered needs to resend any interrupt
2148 * that was delayed but this is now handled in the device
2153 * Starting up a edge-triggered IO-APIC interrupt is
2154 * nasty - we need to make sure that we get the edge.
2155 * If it is already asserted for some reason, we need
2156 * return 1 to indicate that is was pending.
2158 * This is not complete - we should be able to fake
2159 * an edge even if it isn't on the 8259A...
2162 static unsigned int startup_ioapic_irq(unsigned int irq
)
2164 int was_pending
= 0;
2165 unsigned long flags
;
2166 struct irq_cfg
*cfg
;
2168 spin_lock_irqsave(&ioapic_lock
, flags
);
2169 if (irq
< NR_IRQS_LEGACY
) {
2170 disable_8259A_irq(irq
);
2171 if (i8259A_irq_pending(irq
))
2175 __unmask_IO_APIC_irq(cfg
);
2176 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2181 static int ioapic_retrigger_irq(unsigned int irq
)
2184 struct irq_cfg
*cfg
= irq_cfg(irq
);
2185 unsigned long flags
;
2187 spin_lock_irqsave(&vector_lock
, flags
);
2188 apic
->send_IPI_mask(cpumask_of(cpumask_first(cfg
->domain
)), cfg
->vector
);
2189 spin_unlock_irqrestore(&vector_lock
, flags
);
2195 * Level and edge triggered IO-APIC interrupts need different handling,
2196 * so we use two separate IRQ descriptors. Edge triggered IRQs can be
2197 * handled with the level-triggered descriptor, but that one has slightly
2198 * more overhead. Level-triggered interrupts cannot be handled with the
2199 * edge-triggered handler, without risking IRQ storms and other ugly
2204 static void send_cleanup_vector(struct irq_cfg
*cfg
)
2206 cpumask_var_t cleanup_mask
;
2208 if (unlikely(!alloc_cpumask_var(&cleanup_mask
, GFP_ATOMIC
))) {
2210 cfg
->move_cleanup_count
= 0;
2211 for_each_cpu_and(i
, cfg
->old_domain
, cpu_online_mask
)
2212 cfg
->move_cleanup_count
++;
2213 for_each_cpu_and(i
, cfg
->old_domain
, cpu_online_mask
)
2214 apic
->send_IPI_mask(cpumask_of(i
), IRQ_MOVE_CLEANUP_VECTOR
);
2216 cpumask_and(cleanup_mask
, cfg
->old_domain
, cpu_online_mask
);
2217 cfg
->move_cleanup_count
= cpumask_weight(cleanup_mask
);
2218 apic
->send_IPI_mask(cleanup_mask
, IRQ_MOVE_CLEANUP_VECTOR
);
2219 free_cpumask_var(cleanup_mask
);
2221 cfg
->move_in_progress
= 0;
2224 static void __target_IO_APIC_irq(unsigned int irq
, unsigned int dest
, struct irq_cfg
*cfg
)
2227 struct irq_pin_list
*entry
;
2228 u8 vector
= cfg
->vector
;
2230 for (entry
= cfg
->irq_2_pin
; entry
!= NULL
; entry
= entry
->next
) {
2236 * With interrupt-remapping, destination information comes
2237 * from interrupt-remapping table entry.
2239 if (!irq_remapped(irq
))
2240 io_apic_write(apic
, 0x11 + pin
*2, dest
);
2241 reg
= io_apic_read(apic
, 0x10 + pin
*2);
2242 reg
&= ~IO_APIC_REDIR_VECTOR_MASK
;
2244 io_apic_modify(apic
, 0x10 + pin
*2, reg
);
2249 assign_irq_vector(int irq
, struct irq_cfg
*cfg
, const struct cpumask
*mask
);
2252 * Either sets desc->affinity to a valid value, and returns
2253 * ->cpu_mask_to_apicid of that, or returns BAD_APICID and
2254 * leaves desc->affinity untouched.
2257 set_desc_affinity(struct irq_desc
*desc
, const struct cpumask
*mask
)
2259 struct irq_cfg
*cfg
;
2262 if (!cpumask_intersects(mask
, cpu_online_mask
))
2266 cfg
= desc
->chip_data
;
2267 if (assign_irq_vector(irq
, cfg
, mask
))
2270 cpumask_copy(desc
->affinity
, mask
);
2272 return apic
->cpu_mask_to_apicid_and(desc
->affinity
, cfg
->domain
);
2276 set_ioapic_affinity_irq_desc(struct irq_desc
*desc
, const struct cpumask
*mask
)
2278 struct irq_cfg
*cfg
;
2279 unsigned long flags
;
2285 cfg
= desc
->chip_data
;
2287 spin_lock_irqsave(&ioapic_lock
, flags
);
2288 dest
= set_desc_affinity(desc
, mask
);
2289 if (dest
!= BAD_APICID
) {
2290 /* Only the high 8 bits are valid. */
2291 dest
= SET_APIC_LOGICAL_ID(dest
);
2292 __target_IO_APIC_irq(irq
, dest
, cfg
);
2295 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2301 set_ioapic_affinity_irq(unsigned int irq
, const struct cpumask
*mask
)
2303 struct irq_desc
*desc
;
2305 desc
= irq_to_desc(irq
);
2307 return set_ioapic_affinity_irq_desc(desc
, mask
);
2310 #ifdef CONFIG_INTR_REMAP
2313 * Migrate the IO-APIC irq in the presence of intr-remapping.
2315 * For both level and edge triggered, irq migration is a simple atomic
2316 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
2318 * For level triggered, we eliminate the io-apic RTE modification (with the
2319 * updated vector information), by using a virtual vector (io-apic pin number).
2320 * Real vector that is used for interrupting cpu will be coming from
2321 * the interrupt-remapping table entry.
2324 migrate_ioapic_irq_desc(struct irq_desc
*desc
, const struct cpumask
*mask
)
2326 struct irq_cfg
*cfg
;
2332 if (!cpumask_intersects(mask
, cpu_online_mask
))
2336 if (get_irte(irq
, &irte
))
2339 cfg
= desc
->chip_data
;
2340 if (assign_irq_vector(irq
, cfg
, mask
))
2343 dest
= apic
->cpu_mask_to_apicid_and(cfg
->domain
, mask
);
2345 irte
.vector
= cfg
->vector
;
2346 irte
.dest_id
= IRTE_DEST(dest
);
2349 * Modified the IRTE and flushes the Interrupt entry cache.
2351 modify_irte(irq
, &irte
);
2353 if (cfg
->move_in_progress
)
2354 send_cleanup_vector(cfg
);
2356 cpumask_copy(desc
->affinity
, mask
);
2362 * Migrates the IRQ destination in the process context.
2364 static int set_ir_ioapic_affinity_irq_desc(struct irq_desc
*desc
,
2365 const struct cpumask
*mask
)
2367 return migrate_ioapic_irq_desc(desc
, mask
);
2369 static int set_ir_ioapic_affinity_irq(unsigned int irq
,
2370 const struct cpumask
*mask
)
2372 struct irq_desc
*desc
= irq_to_desc(irq
);
2374 return set_ir_ioapic_affinity_irq_desc(desc
, mask
);
2377 static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc
*desc
,
2378 const struct cpumask
*mask
)
2384 asmlinkage
void smp_irq_move_cleanup_interrupt(void)
2386 unsigned vector
, me
;
2392 me
= smp_processor_id();
2393 for (vector
= FIRST_EXTERNAL_VECTOR
; vector
< NR_VECTORS
; vector
++) {
2396 struct irq_desc
*desc
;
2397 struct irq_cfg
*cfg
;
2398 irq
= __get_cpu_var(vector_irq
)[vector
];
2403 desc
= irq_to_desc(irq
);
2408 spin_lock(&desc
->lock
);
2409 if (!cfg
->move_cleanup_count
)
2412 if (vector
== cfg
->vector
&& cpumask_test_cpu(me
, cfg
->domain
))
2415 irr
= apic_read(APIC_IRR
+ (vector
/ 32 * 0x10));
2417 * Check if the vector that needs to be cleanedup is
2418 * registered at the cpu's IRR. If so, then this is not
2419 * the best time to clean it up. Lets clean it up in the
2420 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
2423 if (irr
& (1 << (vector
% 32))) {
2424 apic
->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR
);
2427 __get_cpu_var(vector_irq
)[vector
] = -1;
2428 cfg
->move_cleanup_count
--;
2430 spin_unlock(&desc
->lock
);
2436 static void irq_complete_move(struct irq_desc
**descp
)
2438 struct irq_desc
*desc
= *descp
;
2439 struct irq_cfg
*cfg
= desc
->chip_data
;
2440 unsigned vector
, me
;
2442 if (likely(!cfg
->move_in_progress
))
2445 vector
= ~get_irq_regs()->orig_ax
;
2446 me
= smp_processor_id();
2448 if (vector
== cfg
->vector
&& cpumask_test_cpu(me
, cfg
->domain
))
2449 send_cleanup_vector(cfg
);
2452 static inline void irq_complete_move(struct irq_desc
**descp
) {}
2455 static void ack_apic_edge(unsigned int irq
)
2457 struct irq_desc
*desc
= irq_to_desc(irq
);
2459 irq_complete_move(&desc
);
2460 move_native_irq(irq
);
2464 atomic_t irq_mis_count
;
2466 static void ack_apic_level(unsigned int irq
)
2468 struct irq_desc
*desc
= irq_to_desc(irq
);
2471 struct irq_cfg
*cfg
;
2472 int do_unmask_irq
= 0;
2474 irq_complete_move(&desc
);
2475 #ifdef CONFIG_GENERIC_PENDING_IRQ
2476 /* If we are moving the irq we need to mask it */
2477 if (unlikely(desc
->status
& IRQ_MOVE_PENDING
)) {
2479 mask_IO_APIC_irq_desc(desc
);
2484 * It appears there is an erratum which affects at least version 0x11
2485 * of I/O APIC (that's the 82093AA and cores integrated into various
2486 * chipsets). Under certain conditions a level-triggered interrupt is
2487 * erroneously delivered as edge-triggered one but the respective IRR
2488 * bit gets set nevertheless. As a result the I/O unit expects an EOI
2489 * message but it will never arrive and further interrupts are blocked
2490 * from the source. The exact reason is so far unknown, but the
2491 * phenomenon was observed when two consecutive interrupt requests
2492 * from a given source get delivered to the same CPU and the source is
2493 * temporarily disabled in between.
2495 * A workaround is to simulate an EOI message manually. We achieve it
2496 * by setting the trigger mode to edge and then to level when the edge
2497 * trigger mode gets detected in the TMR of a local APIC for a
2498 * level-triggered interrupt. We mask the source for the time of the
2499 * operation to prevent an edge-triggered interrupt escaping meanwhile.
2500 * The idea is from Manfred Spraul. --macro
2502 cfg
= desc
->chip_data
;
2504 v
= apic_read(APIC_TMR
+ ((i
& ~0x1f) >> 1));
2507 * We must acknowledge the irq before we move it or the acknowledge will
2508 * not propagate properly.
2512 /* Now we can move and renable the irq */
2513 if (unlikely(do_unmask_irq
)) {
2514 /* Only migrate the irq if the ack has been received.
2516 * On rare occasions the broadcast level triggered ack gets
2517 * delayed going to ioapics, and if we reprogram the
2518 * vector while Remote IRR is still set the irq will never
2521 * To prevent this scenario we read the Remote IRR bit
2522 * of the ioapic. This has two effects.
2523 * - On any sane system the read of the ioapic will
2524 * flush writes (and acks) going to the ioapic from
2526 * - We get to see if the ACK has actually been delivered.
2528 * Based on failed experiments of reprogramming the
2529 * ioapic entry from outside of irq context starting
2530 * with masking the ioapic entry and then polling until
2531 * Remote IRR was clear before reprogramming the
2532 * ioapic I don't trust the Remote IRR bit to be
2533 * completey accurate.
2535 * However there appears to be no other way to plug
2536 * this race, so if the Remote IRR bit is not
2537 * accurate and is causing problems then it is a hardware bug
2538 * and you can go talk to the chipset vendor about it.
2540 cfg
= desc
->chip_data
;
2541 if (!io_apic_level_ack_pending(cfg
))
2542 move_masked_irq(irq
);
2543 unmask_IO_APIC_irq_desc(desc
);
2546 /* Tail end of version 0x11 I/O APIC bug workaround */
2547 if (!(v
& (1 << (i
& 0x1f)))) {
2548 atomic_inc(&irq_mis_count
);
2549 spin_lock(&ioapic_lock
);
2550 __mask_and_edge_IO_APIC_irq(cfg
);
2551 __unmask_and_level_IO_APIC_irq(cfg
);
2552 spin_unlock(&ioapic_lock
);
2556 #ifdef CONFIG_INTR_REMAP
2557 static void __eoi_ioapic_irq(unsigned int irq
, struct irq_cfg
*cfg
)
2560 struct irq_pin_list
*entry
;
2562 entry
= cfg
->irq_2_pin
;
2570 io_apic_eoi(apic
, pin
);
2571 entry
= entry
->next
;
2576 eoi_ioapic_irq(struct irq_desc
*desc
)
2578 struct irq_cfg
*cfg
;
2579 unsigned long flags
;
2583 cfg
= desc
->chip_data
;
2585 spin_lock_irqsave(&ioapic_lock
, flags
);
2586 __eoi_ioapic_irq(irq
, cfg
);
2587 spin_unlock_irqrestore(&ioapic_lock
, flags
);
2590 static void ir_ack_apic_edge(unsigned int irq
)
2595 static void ir_ack_apic_level(unsigned int irq
)
2597 struct irq_desc
*desc
= irq_to_desc(irq
);
2600 eoi_ioapic_irq(desc
);
2602 #endif /* CONFIG_INTR_REMAP */
2604 static struct irq_chip ioapic_chip __read_mostly
= {
2606 .startup
= startup_ioapic_irq
,
2607 .mask
= mask_IO_APIC_irq
,
2608 .unmask
= unmask_IO_APIC_irq
,
2609 .ack
= ack_apic_edge
,
2610 .eoi
= ack_apic_level
,
2612 .set_affinity
= set_ioapic_affinity_irq
,
2614 .retrigger
= ioapic_retrigger_irq
,
2617 static struct irq_chip ir_ioapic_chip __read_mostly
= {
2618 .name
= "IR-IO-APIC",
2619 .startup
= startup_ioapic_irq
,
2620 .mask
= mask_IO_APIC_irq
,
2621 .unmask
= unmask_IO_APIC_irq
,
2622 #ifdef CONFIG_INTR_REMAP
2623 .ack
= ir_ack_apic_edge
,
2624 .eoi
= ir_ack_apic_level
,
2626 .set_affinity
= set_ir_ioapic_affinity_irq
,
2629 .retrigger
= ioapic_retrigger_irq
,
2632 static inline void init_IO_APIC_traps(void)
2635 struct irq_desc
*desc
;
2636 struct irq_cfg
*cfg
;
2639 * NOTE! The local APIC isn't very good at handling
2640 * multiple interrupts at the same interrupt level.
2641 * As the interrupt level is determined by taking the
2642 * vector number and shifting that right by 4, we
2643 * want to spread these out a bit so that they don't
2644 * all fall in the same interrupt level.
2646 * Also, we've got to be careful not to trash gate
2647 * 0x80, because int 0x80 is hm, kind of importantish. ;)
2649 for_each_irq_desc(irq
, desc
) {
2650 cfg
= desc
->chip_data
;
2651 if (IO_APIC_IRQ(irq
) && cfg
&& !cfg
->vector
) {
2653 * Hmm.. We don't have an entry for this,
2654 * so default to an old-fashioned 8259
2655 * interrupt if we can..
2657 if (irq
< NR_IRQS_LEGACY
)
2658 make_8259A_irq(irq
);
2660 /* Strange. Oh, well.. */
2661 desc
->chip
= &no_irq_chip
;
2667 * The local APIC irq-chip implementation:
2670 static void mask_lapic_irq(unsigned int irq
)
2674 v
= apic_read(APIC_LVT0
);
2675 apic_write(APIC_LVT0
, v
| APIC_LVT_MASKED
);
2678 static void unmask_lapic_irq(unsigned int irq
)
2682 v
= apic_read(APIC_LVT0
);
2683 apic_write(APIC_LVT0
, v
& ~APIC_LVT_MASKED
);
2686 static void ack_lapic_irq(unsigned int irq
)
2691 static struct irq_chip lapic_chip __read_mostly
= {
2692 .name
= "local-APIC",
2693 .mask
= mask_lapic_irq
,
2694 .unmask
= unmask_lapic_irq
,
2695 .ack
= ack_lapic_irq
,
2698 static void lapic_register_intr(int irq
, struct irq_desc
*desc
)
2700 desc
->status
&= ~IRQ_LEVEL
;
2701 set_irq_chip_and_handler_name(irq
, &lapic_chip
, handle_edge_irq
,
2705 static void __init
setup_nmi(void)
2708 * Dirty trick to enable the NMI watchdog ...
2709 * We put the 8259A master into AEOI mode and
2710 * unmask on all local APICs LVT0 as NMI.
2712 * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
2713 * is from Maciej W. Rozycki - so we do not have to EOI from
2714 * the NMI handler or the timer interrupt.
2716 apic_printk(APIC_VERBOSE
, KERN_INFO
"activating NMI Watchdog ...");
2718 enable_NMI_through_LVT0();
2720 apic_printk(APIC_VERBOSE
, " done.\n");
2724 * This looks a bit hackish but it's about the only one way of sending
2725 * a few INTA cycles to 8259As and any associated glue logic. ICR does
2726 * not support the ExtINT mode, unfortunately. We need to send these
2727 * cycles as some i82489DX-based boards have glue logic that keeps the
2728 * 8259A interrupt line asserted until INTA. --macro
2730 static inline void __init
unlock_ExtINT_logic(void)
2733 struct IO_APIC_route_entry entry0
, entry1
;
2734 unsigned char save_control
, save_freq_select
;
2736 pin
= find_isa_irq_pin(8, mp_INT
);
2741 apic
= find_isa_irq_apic(8, mp_INT
);
2747 entry0
= ioapic_read_entry(apic
, pin
);
2748 clear_IO_APIC_pin(apic
, pin
);
2750 memset(&entry1
, 0, sizeof(entry1
));
2752 entry1
.dest_mode
= 0; /* physical delivery */
2753 entry1
.mask
= 0; /* unmask IRQ now */
2754 entry1
.dest
= hard_smp_processor_id();
2755 entry1
.delivery_mode
= dest_ExtINT
;
2756 entry1
.polarity
= entry0
.polarity
;
2760 ioapic_write_entry(apic
, pin
, entry1
);
2762 save_control
= CMOS_READ(RTC_CONTROL
);
2763 save_freq_select
= CMOS_READ(RTC_FREQ_SELECT
);
2764 CMOS_WRITE((save_freq_select
& ~RTC_RATE_SELECT
) | 0x6,
2766 CMOS_WRITE(save_control
| RTC_PIE
, RTC_CONTROL
);
2771 if ((CMOS_READ(RTC_INTR_FLAGS
) & RTC_PF
) == RTC_PF
)
2775 CMOS_WRITE(save_control
, RTC_CONTROL
);
2776 CMOS_WRITE(save_freq_select
, RTC_FREQ_SELECT
);
2777 clear_IO_APIC_pin(apic
, pin
);
2779 ioapic_write_entry(apic
, pin
, entry0
);
2782 static int disable_timer_pin_1 __initdata
;
2783 /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
2784 static int __init
disable_timer_pin_setup(char *arg
)
2786 disable_timer_pin_1
= 1;
2789 early_param("disable_timer_pin_1", disable_timer_pin_setup
);
2791 int timer_through_8259 __initdata
;
2794 * This code may look a bit paranoid, but it's supposed to cooperate with
2795 * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
2796 * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
2797 * fanatically on his truly buggy board.
2799 * FIXME: really need to revamp this for all platforms.
2801 static inline void __init
check_timer(void)
2803 struct irq_desc
*desc
= irq_to_desc(0);
2804 struct irq_cfg
*cfg
= desc
->chip_data
;
2805 int node
= cpu_to_node(boot_cpu_id
);
2806 int apic1
, pin1
, apic2
, pin2
;
2807 unsigned long flags
;
2810 local_irq_save(flags
);
2813 * get/set the timer IRQ vector:
2815 disable_8259A_irq(0);
2816 assign_irq_vector(0, cfg
, apic
->target_cpus());
2819 * As IRQ0 is to be enabled in the 8259A, the virtual
2820 * wire has to be disabled in the local APIC. Also
2821 * timer interrupts need to be acknowledged manually in
2822 * the 8259A for the i82489DX when using the NMI
2823 * watchdog as that APIC treats NMIs as level-triggered.
2824 * The AEOI mode will finish them in the 8259A
2827 apic_write(APIC_LVT0
, APIC_LVT_MASKED
| APIC_DM_EXTINT
);
2829 #ifdef CONFIG_X86_32
2833 ver
= apic_read(APIC_LVR
);
2834 ver
= GET_APIC_VERSION(ver
);
2835 timer_ack
= (nmi_watchdog
== NMI_IO_APIC
&& !APIC_INTEGRATED(ver
));
2839 pin1
= find_isa_irq_pin(0, mp_INT
);
2840 apic1
= find_isa_irq_apic(0, mp_INT
);
2841 pin2
= ioapic_i8259
.pin
;
2842 apic2
= ioapic_i8259
.apic
;
2844 apic_printk(APIC_QUIET
, KERN_INFO
"..TIMER: vector=0x%02X "
2845 "apic1=%d pin1=%d apic2=%d pin2=%d\n",
2846 cfg
->vector
, apic1
, pin1
, apic2
, pin2
);
2849 * Some BIOS writers are clueless and report the ExtINTA
2850 * I/O APIC input from the cascaded 8259A as the timer
2851 * interrupt input. So just in case, if only one pin
2852 * was found above, try it both directly and through the
2856 if (intr_remapping_enabled
)
2857 panic("BIOS bug: timer not connected to IO-APIC");
2861 } else if (pin2
== -1) {
2868 * Ok, does IRQ0 through the IOAPIC work?
2871 add_pin_to_irq_node(cfg
, node
, apic1
, pin1
);
2872 setup_timer_IRQ0_pin(apic1
, pin1
, cfg
->vector
);
2874 /* for edge trigger, setup_IO_APIC_irq already
2875 * leave it unmasked.
2876 * so only need to unmask if it is level-trigger
2877 * do we really have level trigger timer?
2880 idx
= find_irq_entry(apic1
, pin1
, mp_INT
);
2881 if (idx
!= -1 && irq_trigger(idx
))
2882 unmask_IO_APIC_irq_desc(desc
);
2884 if (timer_irq_works()) {
2885 if (nmi_watchdog
== NMI_IO_APIC
) {
2887 enable_8259A_irq(0);
2889 if (disable_timer_pin_1
> 0)
2890 clear_IO_APIC_pin(0, pin1
);
2893 if (intr_remapping_enabled
)
2894 panic("timer doesn't work through Interrupt-remapped IO-APIC");
2895 local_irq_disable();
2896 clear_IO_APIC_pin(apic1
, pin1
);
2898 apic_printk(APIC_QUIET
, KERN_ERR
"..MP-BIOS bug: "
2899 "8254 timer not connected to IO-APIC\n");
2901 apic_printk(APIC_QUIET
, KERN_INFO
"...trying to set up timer "
2902 "(IRQ0) through the 8259A ...\n");
2903 apic_printk(APIC_QUIET
, KERN_INFO
2904 "..... (found apic %d pin %d) ...\n", apic2
, pin2
);
2906 * legacy devices should be connected to IO APIC #0
2908 replace_pin_at_irq_node(cfg
, node
, apic1
, pin1
, apic2
, pin2
);
2909 setup_timer_IRQ0_pin(apic2
, pin2
, cfg
->vector
);
2910 enable_8259A_irq(0);
2911 if (timer_irq_works()) {
2912 apic_printk(APIC_QUIET
, KERN_INFO
"....... works.\n");
2913 timer_through_8259
= 1;
2914 if (nmi_watchdog
== NMI_IO_APIC
) {
2915 disable_8259A_irq(0);
2917 enable_8259A_irq(0);
2922 * Cleanup, just in case ...
2924 local_irq_disable();
2925 disable_8259A_irq(0);
2926 clear_IO_APIC_pin(apic2
, pin2
);
2927 apic_printk(APIC_QUIET
, KERN_INFO
"....... failed.\n");
2930 if (nmi_watchdog
== NMI_IO_APIC
) {
2931 apic_printk(APIC_QUIET
, KERN_WARNING
"timer doesn't work "
2932 "through the IO-APIC - disabling NMI Watchdog!\n");
2933 nmi_watchdog
= NMI_NONE
;
2935 #ifdef CONFIG_X86_32
2939 apic_printk(APIC_QUIET
, KERN_INFO
2940 "...trying to set up timer as Virtual Wire IRQ...\n");
2942 lapic_register_intr(0, desc
);
2943 apic_write(APIC_LVT0
, APIC_DM_FIXED
| cfg
->vector
); /* Fixed mode */
2944 enable_8259A_irq(0);
2946 if (timer_irq_works()) {
2947 apic_printk(APIC_QUIET
, KERN_INFO
"..... works.\n");
2950 local_irq_disable();
2951 disable_8259A_irq(0);
2952 apic_write(APIC_LVT0
, APIC_LVT_MASKED
| APIC_DM_FIXED
| cfg
->vector
);
2953 apic_printk(APIC_QUIET
, KERN_INFO
"..... failed.\n");
2955 apic_printk(APIC_QUIET
, KERN_INFO
2956 "...trying to set up timer as ExtINT IRQ...\n");
2960 apic_write(APIC_LVT0
, APIC_DM_EXTINT
);
2962 unlock_ExtINT_logic();
2964 if (timer_irq_works()) {
2965 apic_printk(APIC_QUIET
, KERN_INFO
"..... works.\n");
2968 local_irq_disable();
2969 apic_printk(APIC_QUIET
, KERN_INFO
"..... failed :(.\n");
2970 panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
2971 "report. Then try booting with the 'noapic' option.\n");
2973 local_irq_restore(flags
);
2977 * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
2978 * to devices. However there may be an I/O APIC pin available for
2979 * this interrupt regardless. The pin may be left unconnected, but
2980 * typically it will be reused as an ExtINT cascade interrupt for
2981 * the master 8259A. In the MPS case such a pin will normally be
2982 * reported as an ExtINT interrupt in the MP table. With ACPI
2983 * there is no provision for ExtINT interrupts, and in the absence
2984 * of an override it would be treated as an ordinary ISA I/O APIC
2985 * interrupt, that is edge-triggered and unmasked by default. We
2986 * used to do this, but it caused problems on some systems because
2987 * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
2988 * the same ExtINT cascade interrupt to drive the local APIC of the
2989 * bootstrap processor. Therefore we refrain from routing IRQ2 to
2990 * the I/O APIC in all cases now. No actual device should request
2991 * it anyway. --macro
2993 #define PIC_IRQS (1 << PIC_CASCADE_IR)
2995 void __init
setup_IO_APIC(void)
2999 * calling enable_IO_APIC() is moved to setup_local_APIC for BP
3002 io_apic_irqs
= ~PIC_IRQS
;
3004 apic_printk(APIC_VERBOSE
, "ENABLING IO-APIC IRQs\n");
3006 * Set up IO-APIC IRQ routing.
3008 #ifdef CONFIG_X86_32
3010 setup_ioapic_ids_from_mpc();
3013 setup_IO_APIC_irqs();
3014 init_IO_APIC_traps();
3019 * Called after all the initialization is done. If we didnt find any
3020 * APIC bugs then we can allow the modify fast path
3023 static int __init
io_apic_bug_finalize(void)
3025 if (sis_apic_bug
== -1)
3030 late_initcall(io_apic_bug_finalize
);
3032 struct sysfs_ioapic_data
{
3033 struct sys_device dev
;
3034 struct IO_APIC_route_entry entry
[0];
3036 static struct sysfs_ioapic_data
* mp_ioapic_data
[MAX_IO_APICS
];
3038 static int ioapic_suspend(struct sys_device
*dev
, pm_message_t state
)
3040 struct IO_APIC_route_entry
*entry
;
3041 struct sysfs_ioapic_data
*data
;
3044 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
3045 entry
= data
->entry
;
3046 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++, entry
++ )
3047 *entry
= ioapic_read_entry(dev
->id
, i
);
3052 static int ioapic_resume(struct sys_device
*dev
)
3054 struct IO_APIC_route_entry
*entry
;
3055 struct sysfs_ioapic_data
*data
;
3056 unsigned long flags
;
3057 union IO_APIC_reg_00 reg_00
;
3060 data
= container_of(dev
, struct sysfs_ioapic_data
, dev
);
3061 entry
= data
->entry
;
3063 spin_lock_irqsave(&ioapic_lock
, flags
);
3064 reg_00
.raw
= io_apic_read(dev
->id
, 0);
3065 if (reg_00
.bits
.ID
!= mp_ioapics
[dev
->id
].apicid
) {
3066 reg_00
.bits
.ID
= mp_ioapics
[dev
->id
].apicid
;
3067 io_apic_write(dev
->id
, 0, reg_00
.raw
);
3069 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3070 for (i
= 0; i
< nr_ioapic_registers
[dev
->id
]; i
++)
3071 ioapic_write_entry(dev
->id
, i
, entry
[i
]);
3076 static struct sysdev_class ioapic_sysdev_class
= {
3078 .suspend
= ioapic_suspend
,
3079 .resume
= ioapic_resume
,
3082 static int __init
ioapic_init_sysfs(void)
3084 struct sys_device
* dev
;
3087 error
= sysdev_class_register(&ioapic_sysdev_class
);
3091 for (i
= 0; i
< nr_ioapics
; i
++ ) {
3092 size
= sizeof(struct sys_device
) + nr_ioapic_registers
[i
]
3093 * sizeof(struct IO_APIC_route_entry
);
3094 mp_ioapic_data
[i
] = kzalloc(size
, GFP_KERNEL
);
3095 if (!mp_ioapic_data
[i
]) {
3096 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
3099 dev
= &mp_ioapic_data
[i
]->dev
;
3101 dev
->cls
= &ioapic_sysdev_class
;
3102 error
= sysdev_register(dev
);
3104 kfree(mp_ioapic_data
[i
]);
3105 mp_ioapic_data
[i
] = NULL
;
3106 printk(KERN_ERR
"Can't suspend/resume IOAPIC %d\n", i
);
3114 device_initcall(ioapic_init_sysfs
);
3116 static int nr_irqs_gsi
= NR_IRQS_LEGACY
;
3118 * Dynamic irq allocate and deallocation
3120 unsigned int create_irq_nr(unsigned int irq_want
, int node
)
3122 /* Allocate an unused irq */
3125 unsigned long flags
;
3126 struct irq_cfg
*cfg_new
= NULL
;
3127 struct irq_desc
*desc_new
= NULL
;
3130 if (irq_want
< nr_irqs_gsi
)
3131 irq_want
= nr_irqs_gsi
;
3133 spin_lock_irqsave(&vector_lock
, flags
);
3134 for (new = irq_want
; new < nr_irqs
; new++) {
3135 desc_new
= irq_to_desc_alloc_node(new, node
);
3137 printk(KERN_INFO
"can not get irq_desc for %d\n", new);
3140 cfg_new
= desc_new
->chip_data
;
3142 if (cfg_new
->vector
!= 0)
3145 desc_new
= move_irq_desc(desc_new
, node
);
3147 if (__assign_irq_vector(new, cfg_new
, apic
->target_cpus()) == 0)
3151 spin_unlock_irqrestore(&vector_lock
, flags
);
3154 dynamic_irq_init(irq
);
3155 /* restore it, in case dynamic_irq_init clear it */
3157 desc_new
->chip_data
= cfg_new
;
3162 int create_irq(void)
3164 int node
= cpu_to_node(boot_cpu_id
);
3165 unsigned int irq_want
;
3168 irq_want
= nr_irqs_gsi
;
3169 irq
= create_irq_nr(irq_want
, node
);
3177 void destroy_irq(unsigned int irq
)
3179 unsigned long flags
;
3180 struct irq_cfg
*cfg
;
3181 struct irq_desc
*desc
;
3183 /* store it, in case dynamic_irq_cleanup clear it */
3184 desc
= irq_to_desc(irq
);
3185 cfg
= desc
->chip_data
;
3186 dynamic_irq_cleanup(irq
);
3187 /* connect back irq_cfg */
3189 desc
->chip_data
= cfg
;
3192 spin_lock_irqsave(&vector_lock
, flags
);
3193 __clear_irq_vector(irq
, cfg
);
3194 spin_unlock_irqrestore(&vector_lock
, flags
);
3198 * MSI message composition
3200 #ifdef CONFIG_PCI_MSI
3201 static int msi_compose_msg(struct pci_dev
*pdev
, unsigned int irq
, struct msi_msg
*msg
)
3203 struct irq_cfg
*cfg
;
3211 err
= assign_irq_vector(irq
, cfg
, apic
->target_cpus());
3215 dest
= apic
->cpu_mask_to_apicid_and(cfg
->domain
, apic
->target_cpus());
3217 if (irq_remapped(irq
)) {
3222 ir_index
= map_irq_to_irte_handle(irq
, &sub_handle
);
3223 BUG_ON(ir_index
== -1);
3225 memset (&irte
, 0, sizeof(irte
));
3228 irte
.dst_mode
= apic
->irq_dest_mode
;
3229 irte
.trigger_mode
= 0; /* edge */
3230 irte
.dlvry_mode
= apic
->irq_delivery_mode
;
3231 irte
.vector
= cfg
->vector
;
3232 irte
.dest_id
= IRTE_DEST(dest
);
3234 /* Set source-id of interrupt request */
3235 set_msi_sid(&irte
, pdev
);
3237 modify_irte(irq
, &irte
);
3239 msg
->address_hi
= MSI_ADDR_BASE_HI
;
3240 msg
->data
= sub_handle
;
3241 msg
->address_lo
= MSI_ADDR_BASE_LO
| MSI_ADDR_IR_EXT_INT
|
3243 MSI_ADDR_IR_INDEX1(ir_index
) |
3244 MSI_ADDR_IR_INDEX2(ir_index
);
3246 if (x2apic_enabled())
3247 msg
->address_hi
= MSI_ADDR_BASE_HI
|
3248 MSI_ADDR_EXT_DEST_ID(dest
);
3250 msg
->address_hi
= MSI_ADDR_BASE_HI
;
3254 ((apic
->irq_dest_mode
== 0) ?
3255 MSI_ADDR_DEST_MODE_PHYSICAL
:
3256 MSI_ADDR_DEST_MODE_LOGICAL
) |
3257 ((apic
->irq_delivery_mode
!= dest_LowestPrio
) ?
3258 MSI_ADDR_REDIRECTION_CPU
:
3259 MSI_ADDR_REDIRECTION_LOWPRI
) |
3260 MSI_ADDR_DEST_ID(dest
);
3263 MSI_DATA_TRIGGER_EDGE
|
3264 MSI_DATA_LEVEL_ASSERT
|
3265 ((apic
->irq_delivery_mode
!= dest_LowestPrio
) ?
3266 MSI_DATA_DELIVERY_FIXED
:
3267 MSI_DATA_DELIVERY_LOWPRI
) |
3268 MSI_DATA_VECTOR(cfg
->vector
);
3274 static int set_msi_irq_affinity(unsigned int irq
, const struct cpumask
*mask
)
3276 struct irq_desc
*desc
= irq_to_desc(irq
);
3277 struct irq_cfg
*cfg
;
3281 dest
= set_desc_affinity(desc
, mask
);
3282 if (dest
== BAD_APICID
)
3285 cfg
= desc
->chip_data
;
3287 read_msi_msg_desc(desc
, &msg
);
3289 msg
.data
&= ~MSI_DATA_VECTOR_MASK
;
3290 msg
.data
|= MSI_DATA_VECTOR(cfg
->vector
);
3291 msg
.address_lo
&= ~MSI_ADDR_DEST_ID_MASK
;
3292 msg
.address_lo
|= MSI_ADDR_DEST_ID(dest
);
3294 write_msi_msg_desc(desc
, &msg
);
3298 #ifdef CONFIG_INTR_REMAP
3300 * Migrate the MSI irq to another cpumask. This migration is
3301 * done in the process context using interrupt-remapping hardware.
3304 ir_set_msi_irq_affinity(unsigned int irq
, const struct cpumask
*mask
)
3306 struct irq_desc
*desc
= irq_to_desc(irq
);
3307 struct irq_cfg
*cfg
= desc
->chip_data
;
3311 if (get_irte(irq
, &irte
))
3314 dest
= set_desc_affinity(desc
, mask
);
3315 if (dest
== BAD_APICID
)
3318 irte
.vector
= cfg
->vector
;
3319 irte
.dest_id
= IRTE_DEST(dest
);
3322 * atomically update the IRTE with the new destination and vector.
3324 modify_irte(irq
, &irte
);
3327 * After this point, all the interrupts will start arriving
3328 * at the new destination. So, time to cleanup the previous
3329 * vector allocation.
3331 if (cfg
->move_in_progress
)
3332 send_cleanup_vector(cfg
);
3338 #endif /* CONFIG_SMP */
3341 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
3342 * which implement the MSI or MSI-X Capability Structure.
3344 static struct irq_chip msi_chip
= {
3346 .unmask
= unmask_msi_irq
,
3347 .mask
= mask_msi_irq
,
3348 .ack
= ack_apic_edge
,
3350 .set_affinity
= set_msi_irq_affinity
,
3352 .retrigger
= ioapic_retrigger_irq
,
3355 static struct irq_chip msi_ir_chip
= {
3356 .name
= "IR-PCI-MSI",
3357 .unmask
= unmask_msi_irq
,
3358 .mask
= mask_msi_irq
,
3359 #ifdef CONFIG_INTR_REMAP
3360 .ack
= ir_ack_apic_edge
,
3362 .set_affinity
= ir_set_msi_irq_affinity
,
3365 .retrigger
= ioapic_retrigger_irq
,
3369 * Map the PCI dev to the corresponding remapping hardware unit
3370 * and allocate 'nvec' consecutive interrupt-remapping table entries
3373 static int msi_alloc_irte(struct pci_dev
*dev
, int irq
, int nvec
)
3375 struct intel_iommu
*iommu
;
3378 iommu
= map_dev_to_ir(dev
);
3381 "Unable to map PCI %s to iommu\n", pci_name(dev
));
3385 index
= alloc_irte(iommu
, irq
, nvec
);
3388 "Unable to allocate %d IRTE for PCI %s\n", nvec
,
3395 static int setup_msi_irq(struct pci_dev
*dev
, struct msi_desc
*msidesc
, int irq
)
3400 ret
= msi_compose_msg(dev
, irq
, &msg
);
3404 set_irq_msi(irq
, msidesc
);
3405 write_msi_msg(irq
, &msg
);
3407 if (irq_remapped(irq
)) {
3408 struct irq_desc
*desc
= irq_to_desc(irq
);
3410 * irq migration in process context
3412 desc
->status
|= IRQ_MOVE_PCNTXT
;
3413 set_irq_chip_and_handler_name(irq
, &msi_ir_chip
, handle_edge_irq
, "edge");
3415 set_irq_chip_and_handler_name(irq
, &msi_chip
, handle_edge_irq
, "edge");
3417 dev_printk(KERN_DEBUG
, &dev
->dev
, "irq %d for MSI/MSI-X\n", irq
);
3422 int arch_setup_msi_irqs(struct pci_dev
*dev
, int nvec
, int type
)
3425 int ret
, sub_handle
;
3426 struct msi_desc
*msidesc
;
3427 unsigned int irq_want
;
3428 struct intel_iommu
*iommu
= NULL
;
3432 /* x86 doesn't support multiple MSI yet */
3433 if (type
== PCI_CAP_ID_MSI
&& nvec
> 1)
3436 node
= dev_to_node(&dev
->dev
);
3437 irq_want
= nr_irqs_gsi
;
3439 list_for_each_entry(msidesc
, &dev
->msi_list
, list
) {
3440 irq
= create_irq_nr(irq_want
, node
);
3444 if (!intr_remapping_enabled
)
3449 * allocate the consecutive block of IRTE's
3452 index
= msi_alloc_irte(dev
, irq
, nvec
);
3458 iommu
= map_dev_to_ir(dev
);
3464 * setup the mapping between the irq and the IRTE
3465 * base index, the sub_handle pointing to the
3466 * appropriate interrupt remap table entry.
3468 set_irte_irq(irq
, iommu
, index
, sub_handle
);
3471 ret
= setup_msi_irq(dev
, msidesc
, irq
);
3483 void arch_teardown_msi_irq(unsigned int irq
)
3488 #if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
3490 static int dmar_msi_set_affinity(unsigned int irq
, const struct cpumask
*mask
)
3492 struct irq_desc
*desc
= irq_to_desc(irq
);
3493 struct irq_cfg
*cfg
;
3497 dest
= set_desc_affinity(desc
, mask
);
3498 if (dest
== BAD_APICID
)
3501 cfg
= desc
->chip_data
;
3503 dmar_msi_read(irq
, &msg
);
3505 msg
.data
&= ~MSI_DATA_VECTOR_MASK
;
3506 msg
.data
|= MSI_DATA_VECTOR(cfg
->vector
);
3507 msg
.address_lo
&= ~MSI_ADDR_DEST_ID_MASK
;
3508 msg
.address_lo
|= MSI_ADDR_DEST_ID(dest
);
3510 dmar_msi_write(irq
, &msg
);
3515 #endif /* CONFIG_SMP */
3517 static struct irq_chip dmar_msi_type
= {
3519 .unmask
= dmar_msi_unmask
,
3520 .mask
= dmar_msi_mask
,
3521 .ack
= ack_apic_edge
,
3523 .set_affinity
= dmar_msi_set_affinity
,
3525 .retrigger
= ioapic_retrigger_irq
,
3528 int arch_setup_dmar_msi(unsigned int irq
)
3533 ret
= msi_compose_msg(NULL
, irq
, &msg
);
3536 dmar_msi_write(irq
, &msg
);
3537 set_irq_chip_and_handler_name(irq
, &dmar_msi_type
, handle_edge_irq
,
3543 #ifdef CONFIG_HPET_TIMER
3546 static int hpet_msi_set_affinity(unsigned int irq
, const struct cpumask
*mask
)
3548 struct irq_desc
*desc
= irq_to_desc(irq
);
3549 struct irq_cfg
*cfg
;
3553 dest
= set_desc_affinity(desc
, mask
);
3554 if (dest
== BAD_APICID
)
3557 cfg
= desc
->chip_data
;
3559 hpet_msi_read(irq
, &msg
);
3561 msg
.data
&= ~MSI_DATA_VECTOR_MASK
;
3562 msg
.data
|= MSI_DATA_VECTOR(cfg
->vector
);
3563 msg
.address_lo
&= ~MSI_ADDR_DEST_ID_MASK
;
3564 msg
.address_lo
|= MSI_ADDR_DEST_ID(dest
);
3566 hpet_msi_write(irq
, &msg
);
3571 #endif /* CONFIG_SMP */
3573 static struct irq_chip hpet_msi_type
= {
3575 .unmask
= hpet_msi_unmask
,
3576 .mask
= hpet_msi_mask
,
3577 .ack
= ack_apic_edge
,
3579 .set_affinity
= hpet_msi_set_affinity
,
3581 .retrigger
= ioapic_retrigger_irq
,
3584 int arch_setup_hpet_msi(unsigned int irq
)
3588 struct irq_desc
*desc
= irq_to_desc(irq
);
3590 ret
= msi_compose_msg(NULL
, irq
, &msg
);
3594 hpet_msi_write(irq
, &msg
);
3595 desc
->status
|= IRQ_MOVE_PCNTXT
;
3596 set_irq_chip_and_handler_name(irq
, &hpet_msi_type
, handle_edge_irq
,
3603 #endif /* CONFIG_PCI_MSI */
3605 * Hypertransport interrupt support
3607 #ifdef CONFIG_HT_IRQ
3611 static void target_ht_irq(unsigned int irq
, unsigned int dest
, u8 vector
)
3613 struct ht_irq_msg msg
;
3614 fetch_ht_irq_msg(irq
, &msg
);
3616 msg
.address_lo
&= ~(HT_IRQ_LOW_VECTOR_MASK
| HT_IRQ_LOW_DEST_ID_MASK
);
3617 msg
.address_hi
&= ~(HT_IRQ_HIGH_DEST_ID_MASK
);
3619 msg
.address_lo
|= HT_IRQ_LOW_VECTOR(vector
) | HT_IRQ_LOW_DEST_ID(dest
);
3620 msg
.address_hi
|= HT_IRQ_HIGH_DEST_ID(dest
);
3622 write_ht_irq_msg(irq
, &msg
);
3625 static int set_ht_irq_affinity(unsigned int irq
, const struct cpumask
*mask
)
3627 struct irq_desc
*desc
= irq_to_desc(irq
);
3628 struct irq_cfg
*cfg
;
3631 dest
= set_desc_affinity(desc
, mask
);
3632 if (dest
== BAD_APICID
)
3635 cfg
= desc
->chip_data
;
3637 target_ht_irq(irq
, dest
, cfg
->vector
);
3644 static struct irq_chip ht_irq_chip
= {
3646 .mask
= mask_ht_irq
,
3647 .unmask
= unmask_ht_irq
,
3648 .ack
= ack_apic_edge
,
3650 .set_affinity
= set_ht_irq_affinity
,
3652 .retrigger
= ioapic_retrigger_irq
,
3655 int arch_setup_ht_irq(unsigned int irq
, struct pci_dev
*dev
)
3657 struct irq_cfg
*cfg
;
3664 err
= assign_irq_vector(irq
, cfg
, apic
->target_cpus());
3666 struct ht_irq_msg msg
;
3669 dest
= apic
->cpu_mask_to_apicid_and(cfg
->domain
,
3670 apic
->target_cpus());
3672 msg
.address_hi
= HT_IRQ_HIGH_DEST_ID(dest
);
3676 HT_IRQ_LOW_DEST_ID(dest
) |
3677 HT_IRQ_LOW_VECTOR(cfg
->vector
) |
3678 ((apic
->irq_dest_mode
== 0) ?
3679 HT_IRQ_LOW_DM_PHYSICAL
:
3680 HT_IRQ_LOW_DM_LOGICAL
) |
3681 HT_IRQ_LOW_RQEOI_EDGE
|
3682 ((apic
->irq_delivery_mode
!= dest_LowestPrio
) ?
3683 HT_IRQ_LOW_MT_FIXED
:
3684 HT_IRQ_LOW_MT_ARBITRATED
) |
3685 HT_IRQ_LOW_IRQ_MASKED
;
3687 write_ht_irq_msg(irq
, &msg
);
3689 set_irq_chip_and_handler_name(irq
, &ht_irq_chip
,
3690 handle_edge_irq
, "edge");
3692 dev_printk(KERN_DEBUG
, &dev
->dev
, "irq %d for HT\n", irq
);
3696 #endif /* CONFIG_HT_IRQ */
3698 #ifdef CONFIG_X86_UV
3700 * Re-target the irq to the specified CPU and enable the specified MMR located
3701 * on the specified blade to allow the sending of MSIs to the specified CPU.
3703 int arch_enable_uv_irq(char *irq_name
, unsigned int irq
, int cpu
, int mmr_blade
,
3704 unsigned long mmr_offset
)
3706 const struct cpumask
*eligible_cpu
= cpumask_of(cpu
);
3707 struct irq_cfg
*cfg
;
3709 unsigned long mmr_value
;
3710 struct uv_IO_APIC_route_entry
*entry
;
3711 unsigned long flags
;
3714 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry
) != sizeof(unsigned long));
3718 err
= assign_irq_vector(irq
, cfg
, eligible_cpu
);
3722 spin_lock_irqsave(&vector_lock
, flags
);
3723 set_irq_chip_and_handler_name(irq
, &uv_irq_chip
, handle_percpu_irq
,
3725 spin_unlock_irqrestore(&vector_lock
, flags
);
3728 entry
= (struct uv_IO_APIC_route_entry
*)&mmr_value
;
3729 entry
->vector
= cfg
->vector
;
3730 entry
->delivery_mode
= apic
->irq_delivery_mode
;
3731 entry
->dest_mode
= apic
->irq_dest_mode
;
3732 entry
->polarity
= 0;
3735 entry
->dest
= apic
->cpu_mask_to_apicid(eligible_cpu
);
3737 mmr_pnode
= uv_blade_to_pnode(mmr_blade
);
3738 uv_write_global_mmr64(mmr_pnode
, mmr_offset
, mmr_value
);
3744 * Disable the specified MMR located on the specified blade so that MSIs are
3745 * longer allowed to be sent.
3747 void arch_disable_uv_irq(int mmr_blade
, unsigned long mmr_offset
)
3749 unsigned long mmr_value
;
3750 struct uv_IO_APIC_route_entry
*entry
;
3753 BUILD_BUG_ON(sizeof(struct uv_IO_APIC_route_entry
) != sizeof(unsigned long));
3756 entry
= (struct uv_IO_APIC_route_entry
*)&mmr_value
;
3759 mmr_pnode
= uv_blade_to_pnode(mmr_blade
);
3760 uv_write_global_mmr64(mmr_pnode
, mmr_offset
, mmr_value
);
3762 #endif /* CONFIG_X86_64 */
3764 int __init
io_apic_get_redir_entries (int ioapic
)
3766 union IO_APIC_reg_01 reg_01
;
3767 unsigned long flags
;
3769 spin_lock_irqsave(&ioapic_lock
, flags
);
3770 reg_01
.raw
= io_apic_read(ioapic
, 1);
3771 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3773 return reg_01
.bits
.entries
;
3776 void __init
probe_nr_irqs_gsi(void)
3780 nr
= acpi_probe_gsi();
3781 if (nr
> nr_irqs_gsi
) {
3784 /* for acpi=off or acpi is not compiled in */
3788 for (idx
= 0; idx
< nr_ioapics
; idx
++)
3789 nr
+= io_apic_get_redir_entries(idx
) + 1;
3791 if (nr
> nr_irqs_gsi
)
3795 printk(KERN_DEBUG
"nr_irqs_gsi: %d\n", nr_irqs_gsi
);
3798 #ifdef CONFIG_SPARSE_IRQ
3799 int __init
arch_probe_nr_irqs(void)
3803 if (nr_irqs
> (NR_VECTORS
* nr_cpu_ids
))
3804 nr_irqs
= NR_VECTORS
* nr_cpu_ids
;
3806 nr
= nr_irqs_gsi
+ 8 * nr_cpu_ids
;
3807 #if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
3809 * for MSI and HT dyn irq
3811 nr
+= nr_irqs_gsi
* 16;
3820 static int __io_apic_set_pci_routing(struct device
*dev
, int irq
,
3821 struct io_apic_irq_attr
*irq_attr
)
3823 struct irq_desc
*desc
;
3824 struct irq_cfg
*cfg
;
3827 int trigger
, polarity
;
3829 ioapic
= irq_attr
->ioapic
;
3830 if (!IO_APIC_IRQ(irq
)) {
3831 apic_printk(APIC_QUIET
,KERN_ERR
"IOAPIC[%d]: Invalid reference to IRQ 0\n",
3837 node
= dev_to_node(dev
);
3839 node
= cpu_to_node(boot_cpu_id
);
3841 desc
= irq_to_desc_alloc_node(irq
, node
);
3843 printk(KERN_INFO
"can not get irq_desc %d\n", irq
);
3847 pin
= irq_attr
->ioapic_pin
;
3848 trigger
= irq_attr
->trigger
;
3849 polarity
= irq_attr
->polarity
;
3852 * IRQs < 16 are already in the irq_2_pin[] map
3854 if (irq
>= NR_IRQS_LEGACY
) {
3855 cfg
= desc
->chip_data
;
3856 add_pin_to_irq_node(cfg
, node
, ioapic
, pin
);
3859 setup_IO_APIC_irq(ioapic
, pin
, irq
, desc
, trigger
, polarity
);
3864 int io_apic_set_pci_routing(struct device
*dev
, int irq
,
3865 struct io_apic_irq_attr
*irq_attr
)
3869 * Avoid pin reprogramming. PRTs typically include entries
3870 * with redundant pin->gsi mappings (but unique PCI devices);
3871 * we only program the IOAPIC on the first.
3873 ioapic
= irq_attr
->ioapic
;
3874 pin
= irq_attr
->ioapic_pin
;
3875 if (test_bit(pin
, mp_ioapic_routing
[ioapic
].pin_programmed
)) {
3876 pr_debug("Pin %d-%d already programmed\n",
3877 mp_ioapics
[ioapic
].apicid
, pin
);
3880 set_bit(pin
, mp_ioapic_routing
[ioapic
].pin_programmed
);
3882 return __io_apic_set_pci_routing(dev
, irq
, irq_attr
);
3885 /* --------------------------------------------------------------------------
3886 ACPI-based IOAPIC Configuration
3887 -------------------------------------------------------------------------- */
3891 #ifdef CONFIG_X86_32
3892 int __init
io_apic_get_unique_id(int ioapic
, int apic_id
)
3894 union IO_APIC_reg_00 reg_00
;
3895 static physid_mask_t apic_id_map
= PHYSID_MASK_NONE
;
3897 unsigned long flags
;
3901 * The P4 platform supports up to 256 APIC IDs on two separate APIC
3902 * buses (one for LAPICs, one for IOAPICs), where predecessors only
3903 * supports up to 16 on one shared APIC bus.
3905 * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
3906 * advantage of new APIC bus architecture.
3909 if (physids_empty(apic_id_map
))
3910 apic_id_map
= apic
->ioapic_phys_id_map(phys_cpu_present_map
);
3912 spin_lock_irqsave(&ioapic_lock
, flags
);
3913 reg_00
.raw
= io_apic_read(ioapic
, 0);
3914 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3916 if (apic_id
>= get_physical_broadcast()) {
3917 printk(KERN_WARNING
"IOAPIC[%d]: Invalid apic_id %d, trying "
3918 "%d\n", ioapic
, apic_id
, reg_00
.bits
.ID
);
3919 apic_id
= reg_00
.bits
.ID
;
3923 * Every APIC in a system must have a unique ID or we get lots of nice
3924 * 'stuck on smp_invalidate_needed IPI wait' messages.
3926 if (apic
->check_apicid_used(apic_id_map
, apic_id
)) {
3928 for (i
= 0; i
< get_physical_broadcast(); i
++) {
3929 if (!apic
->check_apicid_used(apic_id_map
, i
))
3933 if (i
== get_physical_broadcast())
3934 panic("Max apic_id exceeded!\n");
3936 printk(KERN_WARNING
"IOAPIC[%d]: apic_id %d already used, "
3937 "trying %d\n", ioapic
, apic_id
, i
);
3942 tmp
= apic
->apicid_to_cpu_present(apic_id
);
3943 physids_or(apic_id_map
, apic_id_map
, tmp
);
3945 if (reg_00
.bits
.ID
!= apic_id
) {
3946 reg_00
.bits
.ID
= apic_id
;
3948 spin_lock_irqsave(&ioapic_lock
, flags
);
3949 io_apic_write(ioapic
, 0, reg_00
.raw
);
3950 reg_00
.raw
= io_apic_read(ioapic
, 0);
3951 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3954 if (reg_00
.bits
.ID
!= apic_id
) {
3955 printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic
);
3960 apic_printk(APIC_VERBOSE
, KERN_INFO
3961 "IOAPIC[%d]: Assigned apic_id %d\n", ioapic
, apic_id
);
3967 int __init
io_apic_get_version(int ioapic
)
3969 union IO_APIC_reg_01 reg_01
;
3970 unsigned long flags
;
3972 spin_lock_irqsave(&ioapic_lock
, flags
);
3973 reg_01
.raw
= io_apic_read(ioapic
, 1);
3974 spin_unlock_irqrestore(&ioapic_lock
, flags
);
3976 return reg_01
.bits
.version
;
3979 int acpi_get_override_irq(int bus_irq
, int *trigger
, int *polarity
)
3983 if (skip_ioapic_setup
)
3986 for (i
= 0; i
< mp_irq_entries
; i
++)
3987 if (mp_irqs
[i
].irqtype
== mp_INT
&&
3988 mp_irqs
[i
].srcbusirq
== bus_irq
)
3990 if (i
>= mp_irq_entries
)
3993 *trigger
= irq_trigger(i
);
3994 *polarity
= irq_polarity(i
);
3998 #endif /* CONFIG_ACPI */
4001 * This function currently is only a helper for the i386 smp boot process where
4002 * we need to reprogram the ioredtbls to cater for the cpus which have come online
4003 * so mask in all cases should simply be apic->target_cpus()
4006 void __init
setup_ioapic_dest(void)
4008 int pin
, ioapic
= 0, irq
, irq_entry
;
4009 struct irq_desc
*desc
;
4010 const struct cpumask
*mask
;
4012 if (skip_ioapic_setup
== 1)
4016 if (!acpi_disabled
&& acpi_ioapic
) {
4017 ioapic
= mp_find_ioapic(0);
4023 for (pin
= 0; pin
< nr_ioapic_registers
[ioapic
]; pin
++) {
4024 irq_entry
= find_irq_entry(ioapic
, pin
, mp_INT
);
4025 if (irq_entry
== -1)
4027 irq
= pin_2_irq(irq_entry
, ioapic
, pin
);
4029 desc
= irq_to_desc(irq
);
4032 * Honour affinities which have been set in early boot
4035 (IRQ_NO_BALANCING
| IRQ_AFFINITY_SET
))
4036 mask
= desc
->affinity
;
4038 mask
= apic
->target_cpus();
4040 if (intr_remapping_enabled
)
4041 set_ir_ioapic_affinity_irq_desc(desc
, mask
);
4043 set_ioapic_affinity_irq_desc(desc
, mask
);
4049 #define IOAPIC_RESOURCE_NAME_SIZE 11
4051 static struct resource
*ioapic_resources
;
4053 static struct resource
* __init
ioapic_setup_resources(void)
4056 struct resource
*res
;
4060 if (nr_ioapics
<= 0)
4063 n
= IOAPIC_RESOURCE_NAME_SIZE
+ sizeof(struct resource
);
4066 mem
= alloc_bootmem(n
);
4070 mem
+= sizeof(struct resource
) * nr_ioapics
;
4072 for (i
= 0; i
< nr_ioapics
; i
++) {
4074 res
[i
].flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
4075 sprintf(mem
, "IOAPIC %u", i
);
4076 mem
+= IOAPIC_RESOURCE_NAME_SIZE
;
4080 ioapic_resources
= res
;
4085 void __init
ioapic_init_mappings(void)
4087 unsigned long ioapic_phys
, idx
= FIX_IO_APIC_BASE_0
;
4088 struct resource
*ioapic_res
;
4091 ioapic_res
= ioapic_setup_resources();
4092 for (i
= 0; i
< nr_ioapics
; i
++) {
4093 if (smp_found_config
) {
4094 ioapic_phys
= mp_ioapics
[i
].apicaddr
;
4095 #ifdef CONFIG_X86_32
4098 "WARNING: bogus zero IO-APIC "
4099 "address found in MPTABLE, "
4100 "disabling IO/APIC support!\n");
4101 smp_found_config
= 0;
4102 skip_ioapic_setup
= 1;
4103 goto fake_ioapic_page
;
4107 #ifdef CONFIG_X86_32
4110 ioapic_phys
= (unsigned long)
4111 alloc_bootmem_pages(PAGE_SIZE
);
4112 ioapic_phys
= __pa(ioapic_phys
);
4114 set_fixmap_nocache(idx
, ioapic_phys
);
4115 apic_printk(APIC_VERBOSE
,
4116 "mapped IOAPIC to %08lx (%08lx)\n",
4117 __fix_to_virt(idx
), ioapic_phys
);
4120 if (ioapic_res
!= NULL
) {
4121 ioapic_res
->start
= ioapic_phys
;
4122 ioapic_res
->end
= ioapic_phys
+ (4 * 1024) - 1;
4128 static int __init
ioapic_insert_resources(void)
4131 struct resource
*r
= ioapic_resources
;
4134 if (nr_ioapics
> 0) {
4136 "IO APIC resources couldn't be allocated.\n");
4142 for (i
= 0; i
< nr_ioapics
; i
++) {
4143 insert_resource(&iomem_resource
, r
);
4150 /* Insert the IO APIC resources after PCI initialization has occured to handle
4151 * IO APICS that are mapped in on a BAR in PCI space. */
4152 late_initcall(ioapic_insert_resources
);