blob: 10a09c2f1828c102893d71a5add47ae320e2df55 [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>
Jaswinder Singh Rajputaa09e6c2009-01-04 16:35:17 +053012#include <linux/io.h>
13#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/atomic.h>
16#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/timer.h>
18#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/desc.h>
20#include <asm/apic.h>
21#include <asm/arch_hooks.h>
22#include <asm/i8259.h>
Jaswinder Singh Rajputaa09e6c2009-01-04 16:35:17 +053023#include <asm/traps.h>
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
David Howells7d12e782006-10-05 14:55:46 +010038static irqreturn_t math_error_irq(int cpl, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Jaswinder Singh Rajputaa09e6c2009-01-04 16:35:17 +053040 outb(0, 0xF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 if (ignore_fpu_irq || !boot_cpu_data.hard_math)
42 return IRQ_NONE;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010043 math_error((void __user *)get_irq_regs()->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return IRQ_HANDLED;
45}
46
47/*
48 * New motherboards sometimes make IRQ 13 be a PCI interrupt,
49 * so allow interrupt sharing.
50 */
Thomas Gleixner6a61f6a2007-10-17 18:04:36 +020051static struct irqaction fpu_irq = {
52 .handler = math_error_irq,
53 .mask = CPU_MASK_NONE,
54 .name = "fpu",
55};
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jaswinder Singh Rajputaa09e6c2009-01-04 16:35:17 +053057void __init init_ISA_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 int i;
60
61#ifdef CONFIG_X86_LOCAL_APIC
62 init_bsp_APIC();
63#endif
64 init_8259A(0);
65
Ahmed S. Darwish7c6357d2008-02-18 00:59:54 +020066 /*
67 * 16 old-style INTA-cycle interrupts:
68 */
Yinghai Lu99d093d2008-12-05 18:58:32 -080069 for (i = 0; i < NR_IRQS_LEGACY; i++) {
Thomas Gleixneree32c972008-10-15 14:34:09 +020070 struct irq_desc *desc = irq_to_desc(i);
Yinghai Lu199751d2008-08-19 20:50:27 -070071
72 desc->status = IRQ_DISABLED;
73 desc->action = NULL;
74 desc->depth = 1;
75
Ahmed S. Darwish7c6357d2008-02-18 00:59:54 +020076 set_irq_chip_and_handler_name(i, &i8259A_chip,
77 handle_level_irq, "XT");
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79}
80
Yinghai Lu497c9a12008-08-19 20:50:28 -070081DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
82 [0 ... IRQ0_VECTOR - 1] = -1,
83 [IRQ0_VECTOR] = 0,
84 [IRQ1_VECTOR] = 1,
85 [IRQ2_VECTOR] = 2,
86 [IRQ3_VECTOR] = 3,
87 [IRQ4_VECTOR] = 4,
88 [IRQ5_VECTOR] = 5,
89 [IRQ6_VECTOR] = 6,
90 [IRQ7_VECTOR] = 7,
91 [IRQ8_VECTOR] = 8,
92 [IRQ9_VECTOR] = 9,
93 [IRQ10_VECTOR] = 10,
94 [IRQ11_VECTOR] = 11,
95 [IRQ12_VECTOR] = 12,
96 [IRQ13_VECTOR] = 13,
97 [IRQ14_VECTOR] = 14,
98 [IRQ15_VECTOR] = 15,
99 [IRQ15_VECTOR + 1 ... NR_VECTORS - 1] = -1
100};
101
Yinghai Lub77b8812008-12-19 15:23:44 -0800102int vector_used_by_percpu_irq(unsigned int vector)
103{
104 int cpu;
105
106 for_each_online_cpu(cpu) {
107 if (per_cpu(vector_irq, cpu)[vector] != -1)
108 return 1;
109 }
110
111 return 0;
112}
113
Rusty Russelld3561b72006-12-07 02:14:07 +0100114/* Overridden in paravirt.c */
115void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
116
117void __init native_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int i;
120
121 /* all the set up before the call gates are initialised */
122 pre_intr_init_hook();
123
124 /*
125 * Cover the whole vector space, no vector can escape
126 * us. (some of these will be overridden and become
127 * 'special' SMP interrupts)
128 */
Yinghai Lu497c9a12008-08-19 20:50:28 -0700129 for (i = FIRST_EXTERNAL_VECTOR; i < NR_VECTORS; i++) {
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200130 /* SYSCALL_VECTOR was reserved in trap_init. */
Yinghai Lu497c9a12008-08-19 20:50:28 -0700131 if (i != SYSCALL_VECTOR)
H. Peter Anvin46875182008-11-11 13:03:07 -0800132 set_intr_gate(i, interrupt[i-FIRST_EXTERNAL_VECTOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400135
Yinghai Lu497c9a12008-08-19 20:50:28 -0700136#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_SMP)
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400137 /*
138 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
139 * IPI, driven by wakeup.
140 */
141 alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
142
143 /* IPI for invalidation */
144 alloc_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
145
146 /* IPI for generic function call */
147 alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
148
149 /* IPI for single call function */
Yinghai Lub77b8812008-12-19 15:23:44 -0800150 alloc_intr_gate(CALL_FUNCTION_SINGLE_VECTOR,
151 call_function_single_interrupt);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700152
153 /* Low priority IPI to cleanup after moving an irq */
154 set_intr_gate(IRQ_MOVE_CLEANUP_VECTOR, irq_move_cleanup_interrupt);
Yinghai Lub77b8812008-12-19 15:23:44 -0800155 set_bit(IRQ_MOVE_CLEANUP_VECTOR, used_vectors);
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400156#endif
157
158#ifdef CONFIG_X86_LOCAL_APIC
159 /* self generated IPI for local APIC timer */
160 alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
161
162 /* IPI vectors for APIC spurious and error interrupts */
163 alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
164 alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
165#endif
166
167#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL)
168 /* thermal monitor LVT interrupt */
169 alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
170#endif
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* setup after call gates are initialised (usually add in
173 * the architecture specific gates)
174 */
175 intr_init_hook();
176
177 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * External FPU? Set up irq13 if so, for
179 * original braindamaged IBM FERR coupling.
180 */
181 if (boot_cpu_data.hard_math && !cpu_has_fpu)
182 setup_irq(FPU_IRQ, &fpu_irq);
183
184 irq_ctx_init(smp_processor_id());
185}