irqinit.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. #include <linux/linkage.h>
  2. #include <linux/errno.h>
  3. #include <linux/signal.h>
  4. #include <linux/sched.h>
  5. #include <linux/ioport.h>
  6. #include <linux/interrupt.h>
  7. #include <linux/timex.h>
  8. #include <linux/slab.h>
  9. #include <linux/random.h>
  10. #include <linux/kprobes.h>
  11. #include <linux/init.h>
  12. #include <linux/kernel_stat.h>
  13. #include <linux/sysdev.h>
  14. #include <linux/bitops.h>
  15. #include <linux/acpi.h>
  16. #include <linux/io.h>
  17. #include <linux/delay.h>
  18. #include <asm/atomic.h>
  19. #include <asm/system.h>
  20. #include <asm/timer.h>
  21. #include <asm/hw_irq.h>
  22. #include <asm/pgtable.h>
  23. #include <asm/desc.h>
  24. #include <asm/apic.h>
  25. #include <asm/setup.h>
  26. #include <asm/i8259.h>
  27. #include <asm/traps.h>
  28. /*
  29. * ISA PIC or low IO-APIC triggered (INTA-cycle or APIC) interrupts:
  30. * (these are usually mapped to vectors 0x30-0x3f)
  31. */
  32. /*
  33. * The IO-APIC gives us many more interrupt sources. Most of these
  34. * are unused but an SMP system is supposed to have enough memory ...
  35. * sometimes (mostly wrt. hw bugs) we get corrupted vectors all
  36. * across the spectrum, so we really want to be prepared to get all
  37. * of these. Plus, more powerful systems might have more than 64
  38. * IO-APIC registers.
  39. *
  40. * (these are usually mapped into the 0x30-0xff vector range)
  41. */
  42. #ifdef CONFIG_X86_32
  43. /*
  44. * Note that on a 486, we don't want to do a SIGFPE on an irq13
  45. * as the irq is unreliable, and exception 16 works correctly
  46. * (ie as explained in the intel literature). On a 386, you
  47. * can't use exception 16 due to bad IBM design, so we have to
  48. * rely on the less exact irq13.
  49. *
  50. * Careful.. Not only is IRQ13 unreliable, but it is also
  51. * leads to races. IBM designers who came up with it should
  52. * be shot.
  53. */
  54. static irqreturn_t math_error_irq(int cpl, void *dev_id)
  55. {
  56. outb(0, 0xF0);
  57. if (ignore_fpu_irq || !boot_cpu_data.hard_math)
  58. return IRQ_NONE;
  59. math_error((void __user *)get_irq_regs()->ip);
  60. return IRQ_HANDLED;
  61. }
  62. /*
  63. * New motherboards sometimes make IRQ 13 be a PCI interrupt,
  64. * so allow interrupt sharing.
  65. */
  66. static struct irqaction fpu_irq = {
  67. .handler = math_error_irq,
  68. .name = "fpu",
  69. };
  70. #endif
  71. /*
  72. * IRQ2 is cascade interrupt to second interrupt controller
  73. */
  74. static struct irqaction irq2 = {
  75. .handler = no_action,
  76. .name = "cascade",
  77. };
  78. DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
  79. [0 ... IRQ0_VECTOR - 1] = -1,
  80. [IRQ0_VECTOR] = 0,
  81. [IRQ1_VECTOR] = 1,
  82. [IRQ2_VECTOR] = 2,
  83. [IRQ3_VECTOR] = 3,
  84. [IRQ4_VECTOR] = 4,
  85. [IRQ5_VECTOR] = 5,
  86. [IRQ6_VECTOR] = 6,
  87. [IRQ7_VECTOR] = 7,
  88. [IRQ8_VECTOR] = 8,
  89. [IRQ9_VECTOR] = 9,
  90. [IRQ10_VECTOR] = 10,
  91. [IRQ11_VECTOR] = 11,
  92. [IRQ12_VECTOR] = 12,
  93. [IRQ13_VECTOR] = 13,
  94. [IRQ14_VECTOR] = 14,
  95. [IRQ15_VECTOR] = 15,
  96. [IRQ15_VECTOR + 1 ... NR_VECTORS - 1] = -1
  97. };
  98. int vector_used_by_percpu_irq(unsigned int vector)
  99. {
  100. int cpu;
  101. for_each_online_cpu(cpu) {
  102. if (per_cpu(vector_irq, cpu)[vector] != -1)
  103. return 1;
  104. }
  105. return 0;
  106. }
  107. void __init init_ISA_irqs(void)
  108. {
  109. int i;
  110. #if defined(CONFIG_X86_64) || defined(CONFIG_X86_LOCAL_APIC)
  111. init_bsp_APIC();
  112. #endif
  113. init_8259A(0);
  114. /*
  115. * 16 old-style INTA-cycle interrupts:
  116. */
  117. for (i = 0; i < NR_IRQS_LEGACY; i++) {
  118. struct irq_desc *desc = irq_to_desc(i);
  119. desc->status = IRQ_DISABLED;
  120. desc->action = NULL;
  121. desc->depth = 1;
  122. set_irq_chip_and_handler_name(i, &i8259A_chip,
  123. handle_level_irq, "XT");
  124. }
  125. }
  126. void __init init_IRQ(void)
  127. {
  128. x86_init.irqs.intr_init();
  129. }
  130. static void __init smp_intr_init(void)
  131. {
  132. #ifdef CONFIG_SMP
  133. #if defined(CONFIG_X86_64) || defined(CONFIG_X86_LOCAL_APIC)
  134. /*
  135. * The reschedule interrupt is a CPU-to-CPU reschedule-helper
  136. * IPI, driven by wakeup.
  137. */
  138. alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
  139. /* IPIs for invalidation */
  140. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+0, invalidate_interrupt0);
  141. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+1, invalidate_interrupt1);
  142. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+2, invalidate_interrupt2);
  143. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+3, invalidate_interrupt3);
  144. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+4, invalidate_interrupt4);
  145. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+5, invalidate_interrupt5);
  146. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+6, invalidate_interrupt6);
  147. alloc_intr_gate(INVALIDATE_TLB_VECTOR_START+7, invalidate_interrupt7);
  148. /* IPI for generic function call */
  149. alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
  150. /* IPI for generic single function call */
  151. alloc_intr_gate(CALL_FUNCTION_SINGLE_VECTOR,
  152. call_function_single_interrupt);
  153. /* Low priority IPI to cleanup after moving an irq */
  154. set_intr_gate(IRQ_MOVE_CLEANUP_VECTOR, irq_move_cleanup_interrupt);
  155. set_bit(IRQ_MOVE_CLEANUP_VECTOR, used_vectors);
  156. /* IPI used for rebooting/stopping */
  157. alloc_intr_gate(REBOOT_VECTOR, reboot_interrupt);
  158. #endif
  159. #endif /* CONFIG_SMP */
  160. }
  161. static void __init apic_intr_init(void)
  162. {
  163. smp_intr_init();
  164. #ifdef CONFIG_X86_THERMAL_VECTOR
  165. alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt);
  166. #endif
  167. #ifdef CONFIG_X86_MCE_THRESHOLD
  168. alloc_intr_gate(THRESHOLD_APIC_VECTOR, threshold_interrupt);
  169. #endif
  170. #if defined(CONFIG_X86_MCE) && defined(CONFIG_X86_LOCAL_APIC)
  171. alloc_intr_gate(MCE_SELF_VECTOR, mce_self_interrupt);
  172. #endif
  173. #if defined(CONFIG_X86_64) || defined(CONFIG_X86_LOCAL_APIC)
  174. /* self generated IPI for local APIC timer */
  175. alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt);
  176. /* generic IPI for platform specific use */
  177. alloc_intr_gate(GENERIC_INTERRUPT_VECTOR, generic_interrupt);
  178. /* IPI vectors for APIC spurious and error interrupts */
  179. alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
  180. alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
  181. /* Performance monitoring interrupts: */
  182. # ifdef CONFIG_PERF_EVENTS
  183. alloc_intr_gate(LOCAL_PENDING_VECTOR, perf_pending_interrupt);
  184. # endif
  185. #endif
  186. }
  187. void __init native_init_IRQ(void)
  188. {
  189. int i;
  190. /* Execute any quirks before the call gates are initialised: */
  191. x86_init.irqs.pre_vector_init();
  192. apic_intr_init();
  193. /*
  194. * Cover the whole vector space, no vector can escape
  195. * us. (some of these will be overridden and become
  196. * 'special' SMP interrupts)
  197. */
  198. for (i = FIRST_EXTERNAL_VECTOR; i < NR_VECTORS; i++) {
  199. /* IA32_SYSCALL_VECTOR could be used in trap_init already. */
  200. if (!test_bit(i, used_vectors))
  201. set_intr_gate(i, interrupt[i-FIRST_EXTERNAL_VECTOR]);
  202. }
  203. if (!acpi_ioapic)
  204. setup_irq(2, &irq2);
  205. #ifdef CONFIG_X86_32
  206. /*
  207. * External FPU? Set up irq13 if so, for
  208. * original braindamaged IBM FERR coupling.
  209. */
  210. if (boot_cpu_data.hard_math && !cpu_has_fpu)
  211. setup_irq(FPU_IRQ, &fpu_irq);
  212. irq_ctx_init(smp_processor_id());
  213. #endif
  214. }