]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/kernel/irqinit_32.c
Merge branches 'oprofile-v2' and 'timers/hpet' into x86/core-v4
[linux-2.6-omap-h63xx.git] / arch / x86 / kernel / irqinit_32.c
1 #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>
8 #include <linux/init.h>
9 #include <linux/kernel_stat.h>
10 #include <linux/sysdev.h>
11 #include <linux/bitops.h>
12
13 #include <asm/atomic.h>
14 #include <asm/system.h>
15 #include <asm/io.h>
16 #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
24
25
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
39 static irqreturn_t math_error_irq(int cpl, void *dev_id)
40 {
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;
45         math_error((void __user *)get_irq_regs()->ip);
46         return IRQ_HANDLED;
47 }
48
49 /*
50  * New motherboards sometimes make IRQ 13 be a PCI interrupt,
51  * so allow interrupt sharing.
52  */
53 static struct irqaction fpu_irq = {
54         .handler = math_error_irq,
55         .mask = CPU_MASK_NONE,
56         .name = "fpu",
57 };
58
59 void __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
68         /*
69          * 16 old-style INTA-cycle interrupts:
70          */
71         for (i = 0; i < 16; i++) {
72                 set_irq_chip_and_handler_name(i, &i8259A_chip,
73                                               handle_level_irq, "XT");
74         }
75 }
76
77 /*
78  * IRQ2 is cascade interrupt to second interrupt controller
79  */
80 static struct irqaction irq2 = {
81         .handler = no_action,
82         .mask = CPU_MASK_NONE,
83         .name = "cascade",
84 };
85
86 /* Overridden in paravirt.c */
87 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
88
89 void __init native_init_IRQ(void)
90 {
91         int i;
92
93         /* all the set up before the call gates are initialised */
94         pre_intr_init_hook();
95
96         /*
97          * Cover the whole vector space, no vector can escape
98          * us. (some of these will be overridden and become
99          * 'special' SMP interrupts)
100          */
101         for (i = 0; i < (NR_VECTORS - FIRST_EXTERNAL_VECTOR); i++) {
102                 int vector = FIRST_EXTERNAL_VECTOR + i;
103                 if (i >= NR_IRQS)
104                         break;
105                 /* SYSCALL_VECTOR was reserved in trap_init. */
106                 if (!test_bit(vector, used_vectors))
107                         set_intr_gate(vector, interrupt[i]);
108         }
109
110 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_SMP)
111         /*
112          * IRQ0 must be given a fixed assignment and initialized,
113          * because it's used before the IO-APIC is set up.
114          */
115         set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
116
117         /*
118          * The reschedule interrupt is a CPU-to-CPU reschedule-helper
119          * IPI, driven by wakeup.
120          */
121         alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
122
123         /* IPI for invalidation */
124         alloc_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
125
126         /* IPI for generic function call */
127         alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
128
129         /* IPI for single call function */
130         set_intr_gate(CALL_FUNCTION_SINGLE_VECTOR, call_function_single_interrupt);
131 #endif
132
133 #ifdef CONFIG_X86_LOCAL_APIC
134         /* self generated IPI for local APIC timer */
135         alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
136
137         /* IPI vectors for APIC spurious and error interrupts */
138         alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
139         alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
140 #endif
141
142 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_MCE_P4THERMAL)
143         /* thermal monitor LVT interrupt */
144         alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
145 #endif
146
147         if (!acpi_ioapic)
148                 setup_irq(2, &irq2);
149
150         /* setup after call gates are initialised (usually add in
151          * the architecture specific gates)
152          */
153         intr_init_hook();
154
155         /*
156          * External FPU? Set up irq13 if so, for
157          * original braindamaged IBM FERR coupling.
158          */
159         if (boot_cpu_data.hard_math && !cpu_has_fpu)
160                 setup_irq(FPU_IRQ, &fpu_irq);
161
162         irq_ctx_init(smp_processor_id());
163 }