irqinit.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/linkage.h>
  3. #include <linux/errno.h>
  4. #include <linux/signal.h>
  5. #include <linux/sched.h>
  6. #include <linux/ioport.h>
  7. #include <linux/interrupt.h>
  8. #include <linux/irq.h>
  9. #include <linux/timex.h>
  10. #include <linux/random.h>
  11. #include <linux/kprobes.h>
  12. #include <linux/init.h>
  13. #include <linux/kernel_stat.h>
  14. #include <linux/device.h>
  15. #include <linux/bitops.h>
  16. #include <linux/acpi.h>
  17. #include <linux/io.h>
  18. #include <linux/delay.h>
  19. #include <linux/atomic.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. #include <asm/prom.h>
  29. /*
  30. * ISA PIC or low IO-APIC triggered (INTA-cycle or APIC) interrupts:
  31. * (these are usually mapped to vectors 0x30-0x3f)
  32. */
  33. /*
  34. * The IO-APIC gives us many more interrupt sources. Most of these
  35. * are unused but an SMP system is supposed to have enough memory ...
  36. * sometimes (mostly wrt. hw bugs) we get corrupted vectors all
  37. * across the spectrum, so we really want to be prepared to get all
  38. * of these. Plus, more powerful systems might have more than 64
  39. * IO-APIC registers.
  40. *
  41. * (these are usually mapped into the 0x30-0xff vector range)
  42. */
  43. /*
  44. * IRQ2 is cascade interrupt to second interrupt controller
  45. */
  46. static struct irqaction irq2 = {
  47. .handler = no_action,
  48. .name = "cascade",
  49. .flags = IRQF_NO_THREAD,
  50. };
  51. DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
  52. [0 ... NR_VECTORS - 1] = VECTOR_UNUSED,
  53. };
  54. void __init init_ISA_irqs(void)
  55. {
  56. struct irq_chip *chip = legacy_pic->chip;
  57. int i;
  58. /*
  59. * Try to set up the through-local-APIC virtual wire mode earlier.
  60. *
  61. * On some 32-bit UP machines, whose APIC has been disabled by BIOS
  62. * and then got re-enabled by "lapic", it hangs at boot time without this.
  63. */
  64. init_bsp_APIC();
  65. legacy_pic->init(0);
  66. for (i = 0; i < nr_legacy_irqs(); i++)
  67. irq_set_chip_and_handler(i, chip, handle_level_irq);
  68. }
  69. void __init init_IRQ(void)
  70. {
  71. int i;
  72. /*
  73. * On cpu 0, Assign ISA_IRQ_VECTOR(irq) to IRQ 0..15.
  74. * If these IRQ's are handled by legacy interrupt-controllers like PIC,
  75. * then this configuration will likely be static after the boot. If
  76. * these IRQ's are handled by more mordern controllers like IO-APIC,
  77. * then this vector space can be freed and re-used dynamically as the
  78. * irq's migrate etc.
  79. */
  80. for (i = 0; i < nr_legacy_irqs(); i++)
  81. per_cpu(vector_irq, 0)[ISA_IRQ_VECTOR(i)] = irq_to_desc(i);
  82. x86_init.irqs.intr_init();
  83. }
  84. void __init native_init_IRQ(void)
  85. {
  86. /* Execute any quirks before the call gates are initialised: */
  87. x86_init.irqs.pre_vector_init();
  88. idt_setup_apic_and_irq_gates();
  89. lapic_assign_system_vectors();
  90. if (!acpi_ioapic && !of_ioapic && nr_legacy_irqs())
  91. setup_irq(2, &irq2);
  92. irq_ctx_init(smp_processor_id());
  93. }