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