blob: ded09ac2642e86a1f7935d48c5dae8a66150ad8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/errno.h>
2#include <linux/signal.h>
3#include <linux/sched.h>
4#include <linux/ioport.h>
5#include <linux/interrupt.h>
6#include <linux/slab.h>
7#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/kernel_stat.h>
10#include <linux/sysdev.h>
11#include <linux/bitops.h>
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/atomic.h>
14#include <asm/system.h>
15#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/timer.h>
17#include <asm/pgtable.h>
18#include <asm/delay.h>
19#include <asm/desc.h>
20#include <asm/apic.h>
21#include <asm/arch_hooks.h>
22#include <asm/i8259.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * Note that on a 486, we don't want to do a SIGFPE on an irq13
28 * as the irq is unreliable, and exception 16 works correctly
29 * (ie as explained in the intel literature). On a 386, you
30 * can't use exception 16 due to bad IBM design, so we have to
31 * rely on the less exact irq13.
32 *
33 * Careful.. Not only is IRQ13 unreliable, but it is also
34 * leads to races. IBM designers who came up with it should
35 * be shot.
36 */
37
38
David Howells7d12e782006-10-05 14:55:46 +010039static irqreturn_t math_error_irq(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 extern void math_error(void __user *);
42 outb(0,0xF0);
43 if (ignore_fpu_irq || !boot_cpu_data.hard_math)
44 return IRQ_NONE;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010045 math_error((void __user *)get_irq_regs()->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return IRQ_HANDLED;
47}
48
49/*
50 * New motherboards sometimes make IRQ 13 be a PCI interrupt,
51 * so allow interrupt sharing.
52 */
Thomas Gleixner6a61f6a2007-10-17 18:04:36 +020053static struct irqaction fpu_irq = {
54 .handler = math_error_irq,
55 .mask = CPU_MASK_NONE,
56 .name = "fpu",
57};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59void __init init_ISA_irqs (void)
60{
61 int i;
62
63#ifdef CONFIG_X86_LOCAL_APIC
64 init_bsp_APIC();
65#endif
66 init_8259A(0);
67
Ahmed S. Darwish7c6357d2008-02-18 00:59:54 +020068 /*
69 * 16 old-style INTA-cycle interrupts:
70 */
71 for (i = 0; i < 16; i++) {
Yinghai Lu199751d2008-08-19 20:50:27 -070072 /* first time call this irq_desc */
73 struct irq_desc *desc = irq_to_desc_alloc(i);
74
75 desc->status = IRQ_DISABLED;
76 desc->action = NULL;
77 desc->depth = 1;
78
Ahmed S. Darwish7c6357d2008-02-18 00:59:54 +020079 set_irq_chip_and_handler_name(i, &i8259A_chip,
80 handle_level_irq, "XT");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82}
83
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +040084/*
85 * IRQ2 is cascade interrupt to second interrupt controller
86 */
87static struct irqaction irq2 = {
88 .handler = no_action,
89 .mask = CPU_MASK_NONE,
90 .name = "cascade",
91};
92
Rusty Russelld3561b72006-12-07 02:14:07 +010093/* Overridden in paravirt.c */
94void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
95
96void __init native_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 int i;
99
100 /* all the set up before the call gates are initialised */
101 pre_intr_init_hook();
102
103 /*
104 * Cover the whole vector space, no vector can escape
105 * us. (some of these will be overridden and become
106 * 'special' SMP interrupts)
107 */
108 for (i = 0; i < (NR_VECTORS - FIRST_EXTERNAL_VECTOR); i++) {
109 int vector = FIRST_EXTERNAL_VECTOR + i;
Yinghai Lu0799e432008-08-19 20:49:48 -0700110 if (i >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 break;
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200112 /* SYSCALL_VECTOR was reserved in trap_init. */
113 if (!test_bit(vector, used_vectors))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 set_intr_gate(vector, interrupt[i]);
115 }
116
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400117#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_SMP)
118 /*
119 * IRQ0 must be given a fixed assignment and initialized,
120 * because it's used before the IO-APIC is set up.
121 */
122 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
123
124 /*
125 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
126 * IPI, driven by wakeup.
127 */
128 alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
129
130 /* IPI for invalidation */
131 alloc_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
132
133 /* IPI for generic function call */
134 alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
135
136 /* IPI for single call function */
137 set_intr_gate(CALL_FUNCTION_SINGLE_VECTOR, call_function_single_interrupt);
138#endif
139
140#ifdef CONFIG_X86_LOCAL_APIC
141 /* self generated IPI for local APIC timer */
142 alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
143
144 /* IPI vectors for APIC spurious and error interrupts */
145 alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
146 alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
147#endif
148
149#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL)
150 /* thermal monitor LVT interrupt */
151 alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
152#endif
153
154 if (!acpi_ioapic)
155 setup_irq(2, &irq2);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /* setup after call gates are initialised (usually add in
158 * the architecture specific gates)
159 */
160 intr_init_hook();
161
162 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * External FPU? Set up irq13 if so, for
164 * original braindamaged IBM FERR coupling.
165 */
166 if (boot_cpu_data.hard_math && !cpu_has_fpu)
167 setup_irq(FPU_IRQ, &fpu_irq);
168
169 irq_ctx_init(smp_processor_id());
170}