irq_vectors.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #ifndef _ASM_X86_IRQ_VECTORS_H
  2. #define _ASM_X86_IRQ_VECTORS_H
  3. #include <linux/threads.h>
  4. #define NMI_VECTOR 0x02
  5. /*
  6. * IDT vectors usable for external interrupt sources start
  7. * at 0x20:
  8. */
  9. #define FIRST_EXTERNAL_VECTOR 0x20
  10. #ifdef CONFIG_X86_32
  11. # define SYSCALL_VECTOR 0x80
  12. #else
  13. # define IA32_SYSCALL_VECTOR 0x80
  14. #endif
  15. /*
  16. * Reserve the lowest usable priority level 0x20 - 0x2f for triggering
  17. * cleanup after irq migration.
  18. */
  19. #define IRQ_MOVE_CLEANUP_VECTOR FIRST_EXTERNAL_VECTOR
  20. /*
  21. * Vectors 0x30-0x3f are used for ISA interrupts.
  22. */
  23. #define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR + 0x10)
  24. #define IRQ1_VECTOR (IRQ0_VECTOR + 1)
  25. #define IRQ2_VECTOR (IRQ0_VECTOR + 2)
  26. #define IRQ3_VECTOR (IRQ0_VECTOR + 3)
  27. #define IRQ4_VECTOR (IRQ0_VECTOR + 4)
  28. #define IRQ5_VECTOR (IRQ0_VECTOR + 5)
  29. #define IRQ6_VECTOR (IRQ0_VECTOR + 6)
  30. #define IRQ7_VECTOR (IRQ0_VECTOR + 7)
  31. #define IRQ8_VECTOR (IRQ0_VECTOR + 8)
  32. #define IRQ9_VECTOR (IRQ0_VECTOR + 9)
  33. #define IRQ10_VECTOR (IRQ0_VECTOR + 10)
  34. #define IRQ11_VECTOR (IRQ0_VECTOR + 11)
  35. #define IRQ12_VECTOR (IRQ0_VECTOR + 12)
  36. #define IRQ13_VECTOR (IRQ0_VECTOR + 13)
  37. #define IRQ14_VECTOR (IRQ0_VECTOR + 14)
  38. #define IRQ15_VECTOR (IRQ0_VECTOR + 15)
  39. /*
  40. * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
  41. *
  42. * some of the following vectors are 'rare', they are merged
  43. * into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
  44. * TLB, reschedule and local APIC vectors are performance-critical.
  45. */
  46. #define SPURIOUS_APIC_VECTOR 0xff
  47. /*
  48. * Sanity check
  49. */
  50. #if ((SPURIOUS_APIC_VECTOR & 0x0F) != 0x0F)
  51. # error SPURIOUS_APIC_VECTOR definition error
  52. #endif
  53. #define ERROR_APIC_VECTOR 0xfe
  54. #define RESCHEDULE_VECTOR 0xfd
  55. #define CALL_FUNCTION_VECTOR 0xfc
  56. #define CALL_FUNCTION_SINGLE_VECTOR 0xfb
  57. #define THERMAL_APIC_VECTOR 0xfa
  58. #ifdef CONFIG_X86_32
  59. /* 0xf8 - 0xf9 : free */
  60. #else
  61. # define THRESHOLD_APIC_VECTOR 0xf9
  62. # define UV_BAU_MESSAGE 0xf8
  63. #endif
  64. /* f0-f7 used for spreading out TLB flushes: */
  65. #define INVALIDATE_TLB_VECTOR_END 0xf7
  66. #define INVALIDATE_TLB_VECTOR_START 0xf0
  67. #define NUM_INVALIDATE_TLB_VECTORS 8
  68. /*
  69. * Local APIC timer IRQ vector is on a different priority level,
  70. * to work around the 'lost local interrupt if more than 2 IRQ
  71. * sources per level' errata.
  72. */
  73. #define LOCAL_TIMER_VECTOR 0xef
  74. /*
  75. * Performance monitoring interrupt vector:
  76. */
  77. #define LOCAL_PERF_VECTOR 0xee
  78. /*
  79. * First APIC vector available to drivers: (vectors 0x30-0xee) we
  80. * start at 0x31(0x41) to spread out vectors evenly between priority
  81. * levels. (0x80 is the syscall vector)
  82. */
  83. #define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
  84. #define NR_VECTORS 256
  85. #define FPU_IRQ 13
  86. #define FIRST_VM86_IRQ 3
  87. #define LAST_VM86_IRQ 15
  88. #define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
  89. #define NR_IRQS_LEGACY 16
  90. #if defined(CONFIG_X86_IO_APIC) && !defined(CONFIG_X86_VOYAGER)
  91. #include <asm/apicnum.h> /* need MAX_IO_APICS */
  92. #ifndef CONFIG_SPARSE_IRQ
  93. # if NR_CPUS < MAX_IO_APICS
  94. # define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
  95. # else
  96. # define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
  97. # endif
  98. #else
  99. # define NR_IRQS \
  100. ((8 * NR_CPUS) > (32 * MAX_IO_APICS) ? \
  101. (NR_VECTORS + (8 * NR_CPUS)) : \
  102. (NR_VECTORS + (32 * MAX_IO_APICS))) \
  103. #endif
  104. #elif defined(CONFIG_X86_VOYAGER)
  105. # define NR_IRQS 224
  106. #else /* IO_APIC || VOYAGER */
  107. # define NR_IRQS 16
  108. #endif
  109. #endif /* _ASM_X86_IRQ_VECTORS_H */