Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/init.h> |
| 9 | #include <linux/kernel_stat.h> |
| 10 | #include <linux/sysdev.h> |
| 11 | #include <linux/bitops.h> |
Jaswinder Singh Rajput | aa09e6c | 2009-01-04 16:35:17 +0530 | [diff] [blame] | 12 | #include <linux/io.h> |
| 13 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/atomic.h> |
| 16 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/timer.h> |
| 18 | #include <asm/pgtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/desc.h> |
| 20 | #include <asm/apic.h> |
| 21 | #include <asm/arch_hooks.h> |
| 22 | #include <asm/i8259.h> |
Jaswinder Singh Rajput | aa09e6c | 2009-01-04 16:35:17 +0530 | [diff] [blame] | 23 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 38 | static irqreturn_t math_error_irq(int cpl, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
Jaswinder Singh Rajput | aa09e6c | 2009-01-04 16:35:17 +0530 | [diff] [blame] | 40 | outb(0, 0xF0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | if (ignore_fpu_irq || !boot_cpu_data.hard_math) |
| 42 | return IRQ_NONE; |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 43 | math_error((void __user *)get_irq_regs()->ip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | return IRQ_HANDLED; |
| 45 | } |
| 46 | |
| 47 | /* |
| 48 | * New motherboards sometimes make IRQ 13 be a PCI interrupt, |
| 49 | * so allow interrupt sharing. |
| 50 | */ |
Thomas Gleixner | 6a61f6a | 2007-10-17 18:04:36 +0200 | [diff] [blame] | 51 | static struct irqaction fpu_irq = { |
| 52 | .handler = math_error_irq, |
| 53 | .mask = CPU_MASK_NONE, |
| 54 | .name = "fpu", |
| 55 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Jaswinder Singh Rajput | aa09e6c | 2009-01-04 16:35:17 +0530 | [diff] [blame] | 57 | void __init init_ISA_irqs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
| 59 | int i; |
| 60 | |
| 61 | #ifdef CONFIG_X86_LOCAL_APIC |
| 62 | init_bsp_APIC(); |
| 63 | #endif |
| 64 | init_8259A(0); |
| 65 | |
Ahmed S. Darwish | 7c6357d | 2008-02-18 00:59:54 +0200 | [diff] [blame] | 66 | /* |
| 67 | * 16 old-style INTA-cycle interrupts: |
| 68 | */ |
Yinghai Lu | 99d093d | 2008-12-05 18:58:32 -0800 | [diff] [blame] | 69 | for (i = 0; i < NR_IRQS_LEGACY; i++) { |
Thomas Gleixner | ee32c97 | 2008-10-15 14:34:09 +0200 | [diff] [blame] | 70 | struct irq_desc *desc = irq_to_desc(i); |
Yinghai Lu | 199751d | 2008-08-19 20:50:27 -0700 | [diff] [blame] | 71 | |
| 72 | desc->status = IRQ_DISABLED; |
| 73 | desc->action = NULL; |
| 74 | desc->depth = 1; |
| 75 | |
Ahmed S. Darwish | 7c6357d | 2008-02-18 00:59:54 +0200 | [diff] [blame] | 76 | set_irq_chip_and_handler_name(i, &i8259A_chip, |
| 77 | handle_level_irq, "XT"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 81 | /* |
| 82 | * IRQ2 is cascade interrupt to second interrupt controller |
| 83 | */ |
| 84 | static struct irqaction irq2 = { |
| 85 | .handler = no_action, |
| 86 | .mask = CPU_MASK_NONE, |
| 87 | .name = "cascade", |
| 88 | }; |
| 89 | |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 90 | DEFINE_PER_CPU(vector_irq_t, vector_irq) = { |
| 91 | [0 ... IRQ0_VECTOR - 1] = -1, |
| 92 | [IRQ0_VECTOR] = 0, |
| 93 | [IRQ1_VECTOR] = 1, |
| 94 | [IRQ2_VECTOR] = 2, |
| 95 | [IRQ3_VECTOR] = 3, |
| 96 | [IRQ4_VECTOR] = 4, |
| 97 | [IRQ5_VECTOR] = 5, |
| 98 | [IRQ6_VECTOR] = 6, |
| 99 | [IRQ7_VECTOR] = 7, |
| 100 | [IRQ8_VECTOR] = 8, |
| 101 | [IRQ9_VECTOR] = 9, |
| 102 | [IRQ10_VECTOR] = 10, |
| 103 | [IRQ11_VECTOR] = 11, |
| 104 | [IRQ12_VECTOR] = 12, |
| 105 | [IRQ13_VECTOR] = 13, |
| 106 | [IRQ14_VECTOR] = 14, |
| 107 | [IRQ15_VECTOR] = 15, |
| 108 | [IRQ15_VECTOR + 1 ... NR_VECTORS - 1] = -1 |
| 109 | }; |
| 110 | |
Yinghai Lu | b77b881 | 2008-12-19 15:23:44 -0800 | [diff] [blame] | 111 | int vector_used_by_percpu_irq(unsigned int vector) |
| 112 | { |
| 113 | int cpu; |
| 114 | |
| 115 | for_each_online_cpu(cpu) { |
| 116 | if (per_cpu(vector_irq, cpu)[vector] != -1) |
| 117 | return 1; |
| 118 | } |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 123 | static void __init smp_intr_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 125 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_SMP) |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 126 | /* |
| 127 | * The reschedule interrupt is a CPU-to-CPU reschedule-helper |
| 128 | * IPI, driven by wakeup. |
| 129 | */ |
| 130 | alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt); |
| 131 | |
Tejun Heo | 02cf94c | 2009-01-21 17:26:06 +0900 | [diff] [blame] | 132 | /* IPIs for invalidation */ |
| 133 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+0, invalidate_interrupt0); |
| 134 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+1, invalidate_interrupt1); |
| 135 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+2, invalidate_interrupt2); |
| 136 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+3, invalidate_interrupt3); |
| 137 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+4, invalidate_interrupt4); |
| 138 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+5, invalidate_interrupt5); |
| 139 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+6, invalidate_interrupt6); |
| 140 | alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+7, invalidate_interrupt7); |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 141 | |
| 142 | /* IPI for generic function call */ |
| 143 | alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt); |
| 144 | |
| 145 | /* IPI for single call function */ |
Yinghai Lu | b77b881 | 2008-12-19 15:23:44 -0800 | [diff] [blame] | 146 | alloc_intr_gate(CALL_FUNCTION_SINGLE_VECTOR, |
| 147 | call_function_single_interrupt); |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 148 | |
| 149 | /* Low priority IPI to cleanup after moving an irq */ |
| 150 | set_intr_gate(IRQ_MOVE_CLEANUP_VECTOR, irq_move_cleanup_interrupt); |
Yinghai Lu | b77b881 | 2008-12-19 15:23:44 -0800 | [diff] [blame] | 151 | set_bit(IRQ_MOVE_CLEANUP_VECTOR, used_vectors); |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 152 | #endif |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 153 | } |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 154 | |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 155 | static void __init apic_intr_init(void) |
| 156 | { |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 157 | #ifdef CONFIG_X86_LOCAL_APIC |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 158 | smp_intr_init(); |
| 159 | |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 160 | /* self generated IPI for local APIC timer */ |
| 161 | alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt); |
| 162 | |
| 163 | /* IPI vectors for APIC spurious and error interrupts */ |
| 164 | alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt); |
| 165 | alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt); |
Ingo Molnar | 241771e | 2008-12-03 10:39:53 +0100 | [diff] [blame] | 166 | # ifdef CONFIG_PERF_COUNTERS |
| 167 | alloc_intr_gate(LOCAL_PERF_VECTOR, perf_counter_interrupt); |
| 168 | # endif |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 169 | |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 170 | # ifdef CONFIG_X86_MCE_P4THERMAL |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 171 | /* thermal monitor LVT interrupt */ |
| 172 | alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt); |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 173 | # endif |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 174 | #endif |
Yinghai Lu | bb3f0b5 | 2009-01-25 02:38:09 -0800 | [diff] [blame^] | 175 | } |
| 176 | |
| 177 | /* Overridden in paravirt.c */ |
| 178 | void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ"))); |
| 179 | |
| 180 | void __init native_init_IRQ(void) |
| 181 | { |
| 182 | int i; |
| 183 | |
| 184 | /* all the set up before the call gates are initialised */ |
| 185 | pre_intr_init_hook(); |
| 186 | |
| 187 | apic_intr_init(); |
| 188 | |
| 189 | /* |
| 190 | * Cover the whole vector space, no vector can escape |
| 191 | * us. (some of these will be overridden and become |
| 192 | * 'special' SMP interrupts) |
| 193 | */ |
| 194 | for (i = 0; i < (NR_VECTORS - FIRST_EXTERNAL_VECTOR); i++) { |
| 195 | int vector = FIRST_EXTERNAL_VECTOR + i; |
| 196 | /* SYSCALL_VECTOR was reserved in trap_init. */ |
| 197 | if (!test_bit(vector, used_vectors)) |
| 198 | set_intr_gate(vector, interrupt[i]); |
| 199 | } |
Cyrill Gorcunov | 2ae111c | 2008-08-11 18:34:08 +0400 | [diff] [blame] | 200 | |
| 201 | if (!acpi_ioapic) |
| 202 | setup_irq(2, &irq2); |
| 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | /* setup after call gates are initialised (usually add in |
| 205 | * the architecture specific gates) |
| 206 | */ |
| 207 | intr_init_hook(); |
| 208 | |
| 209 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | * External FPU? Set up irq13 if so, for |
| 211 | * original braindamaged IBM FERR coupling. |
| 212 | */ |
| 213 | if (boot_cpu_data.hard_math && !cpu_has_fpu) |
| 214 | setup_irq(FPU_IRQ, &fpu_irq); |
| 215 | |
| 216 | irq_ctx_init(smp_processor_id()); |
| 217 | } |