blob: c5cb769db7b07f175ac1176bc0a9cf8e5e7025c4 [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>
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010021#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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,
Thomas Gleixner6a61f6a2007-10-17 18:04:36 +020053 .name = "fpu",
54};
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +040056/*
57 * IRQ2 is cascade interrupt to second interrupt controller
58 */
59static struct irqaction irq2 = {
60 .handler = no_action,
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +040061 .name = "cascade",
62};
63
Yinghai Lu497c9a12008-08-19 20:50:28 -070064DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
65 [0 ... IRQ0_VECTOR - 1] = -1,
66 [IRQ0_VECTOR] = 0,
67 [IRQ1_VECTOR] = 1,
68 [IRQ2_VECTOR] = 2,
69 [IRQ3_VECTOR] = 3,
70 [IRQ4_VECTOR] = 4,
71 [IRQ5_VECTOR] = 5,
72 [IRQ6_VECTOR] = 6,
73 [IRQ7_VECTOR] = 7,
74 [IRQ8_VECTOR] = 8,
75 [IRQ9_VECTOR] = 9,
76 [IRQ10_VECTOR] = 10,
77 [IRQ11_VECTOR] = 11,
78 [IRQ12_VECTOR] = 12,
79 [IRQ13_VECTOR] = 13,
80 [IRQ14_VECTOR] = 14,
81 [IRQ15_VECTOR] = 15,
82 [IRQ15_VECTOR + 1 ... NR_VECTORS - 1] = -1
83};
84
Yinghai Lub77b8812008-12-19 15:23:44 -080085int vector_used_by_percpu_irq(unsigned int vector)
86{
87 int cpu;
88
89 for_each_online_cpu(cpu) {
90 if (per_cpu(vector_irq, cpu)[vector] != -1)
91 return 1;
92 }
93
94 return 0;
95}
96
Pekka Enberg7371d9f2009-04-09 11:52:19 +030097static void __init init_ISA_irqs(void)
98{
99 int i;
100
101#ifdef CONFIG_X86_LOCAL_APIC
102 init_bsp_APIC();
103#endif
104 init_8259A(0);
105
106 /*
107 * 16 old-style INTA-cycle interrupts:
108 */
109 for (i = 0; i < NR_IRQS_LEGACY; i++) {
110 struct irq_desc *desc = irq_to_desc(i);
111
112 desc->status = IRQ_DISABLED;
113 desc->action = NULL;
114 desc->depth = 1;
115
116 set_irq_chip_and_handler_name(i, &i8259A_chip,
117 handle_level_irq, "XT");
118 }
119}
120
Rusty Russelld3561b72006-12-07 02:14:07 +0100121/* Overridden in paravirt.c */
122void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
123
Pekka Enbergf4651452009-04-09 11:52:18 +0300124/**
125 * x86_quirk_pre_intr_init - initialisation prior to setting up interrupt vectors
126 *
127 * Description:
128 * Perform any necessary interrupt initialisation prior to setting up
129 * the "ordinary" interrupt call gates. For legacy reasons, the ISA
130 * interrupts should be initialised here if the machine emulates a PC
131 * in any way.
132 **/
133static void __init x86_quirk_pre_intr_init(void)
134{
135 if (x86_quirks->arch_pre_intr_init) {
136 if (x86_quirks->arch_pre_intr_init())
137 return;
138 }
139 init_ISA_irqs();
140}
141
Rusty Russelld3561b72006-12-07 02:14:07 +0100142void __init native_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 int i;
145
Ingo Molnar8e6dafd2009-02-23 00:34:39 +0100146 /* Execute any quirks before the call gates are initialised: */
147 x86_quirk_pre_intr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /*
150 * Cover the whole vector space, no vector can escape
151 * us. (some of these will be overridden and become
152 * 'special' SMP interrupts)
153 */
Yinghai Lu497c9a12008-08-19 20:50:28 -0700154 for (i = FIRST_EXTERNAL_VECTOR; i < NR_VECTORS; i++) {
Rusty Russelldbeb2be2007-10-19 20:35:03 +0200155 /* SYSCALL_VECTOR was reserved in trap_init. */
Yinghai Lu497c9a12008-08-19 20:50:28 -0700156 if (i != SYSCALL_VECTOR)
H. Peter Anvin46875182008-11-11 13:03:07 -0800157 set_intr_gate(i, interrupt[i-FIRST_EXTERNAL_VECTOR]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400160
Yinghai Lu497c9a12008-08-19 20:50:28 -0700161#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_SMP)
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400162 /*
163 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
164 * IPI, driven by wakeup.
165 */
166 alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
167
Tejun Heo02cf94c2009-01-21 17:26:06 +0900168 /* IPIs for invalidation */
169 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+0, invalidate_interrupt0);
170 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+1, invalidate_interrupt1);
171 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+2, invalidate_interrupt2);
172 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+3, invalidate_interrupt3);
173 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+4, invalidate_interrupt4);
174 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+5, invalidate_interrupt5);
175 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+6, invalidate_interrupt6);
176 alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+7, invalidate_interrupt7);
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400177
178 /* IPI for generic function call */
179 alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
180
181 /* IPI for single call function */
Yinghai Lub77b8812008-12-19 15:23:44 -0800182 alloc_intr_gate(CALL_FUNCTION_SINGLE_VECTOR,
183 call_function_single_interrupt);
Yinghai Lu497c9a12008-08-19 20:50:28 -0700184
185 /* Low priority IPI to cleanup after moving an irq */
186 set_intr_gate(IRQ_MOVE_CLEANUP_VECTOR, irq_move_cleanup_interrupt);
Yinghai Lub77b8812008-12-19 15:23:44 -0800187 set_bit(IRQ_MOVE_CLEANUP_VECTOR, used_vectors);
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400188#endif
189
190#ifdef CONFIG_X86_LOCAL_APIC
191 /* self generated IPI for local APIC timer */
192 alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
193
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600194 /* generic IPI for platform specific use */
195 alloc_intr_gate(GENERIC_INTERRUPT_VECTOR, generic_interrupt);
196
Cyrill Gorcunov2ae111c2008-08-11 18:34:08 +0400197 /* IPI vectors for APIC spurious and error interrupts */
198 alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
199 alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
200#endif
201
202#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL)
203 /* thermal monitor LVT interrupt */
204 alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
205#endif
206
207 if (!acpi_ioapic)
208 setup_irq(2, &irq2);
209
Ingo Molnar8e6dafd2009-02-23 00:34:39 +0100210 /*
211 * Call quirks after call gates are initialised (usually add in
212 * the architecture specific gates):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 */
Ingo Molnar8e6dafd2009-02-23 00:34:39 +0100214 x86_quirk_intr_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * External FPU? Set up irq13 if so, for
218 * original braindamaged IBM FERR coupling.
219 */
220 if (boot_cpu_data.hard_math && !cpu_has_fpu)
221 setup_irq(FPU_IRQ, &fpu_irq);
222
223 irq_ctx_init(smp_processor_id());
224}