irq_vectors.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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 on 64 bit.
  18. */
  19. #define IRQ_MOVE_CLEANUP_VECTOR FIRST_EXTERNAL_VECTOR
  20. /*
  21. * Vectors 0x20-0x2f are used for ISA interrupts on 32 bit.
  22. * Vectors 0x30-0x3f are used for ISA interrupts on 64 bit.
  23. */
  24. #ifdef CONFIG_X86_32
  25. #define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR)
  26. #else
  27. #define IRQ0_VECTOR (FIRST_EXTERNAL_VECTOR + 0x10)
  28. #endif
  29. #define IRQ1_VECTOR (IRQ0_VECTOR + 1)
  30. #define IRQ2_VECTOR (IRQ0_VECTOR + 2)
  31. #define IRQ3_VECTOR (IRQ0_VECTOR + 3)
  32. #define IRQ4_VECTOR (IRQ0_VECTOR + 4)
  33. #define IRQ5_VECTOR (IRQ0_VECTOR + 5)
  34. #define IRQ6_VECTOR (IRQ0_VECTOR + 6)
  35. #define IRQ7_VECTOR (IRQ0_VECTOR + 7)
  36. #define IRQ8_VECTOR (IRQ0_VECTOR + 8)
  37. #define IRQ9_VECTOR (IRQ0_VECTOR + 9)
  38. #define IRQ10_VECTOR (IRQ0_VECTOR + 10)
  39. #define IRQ11_VECTOR (IRQ0_VECTOR + 11)
  40. #define IRQ12_VECTOR (IRQ0_VECTOR + 12)
  41. #define IRQ13_VECTOR (IRQ0_VECTOR + 13)
  42. #define IRQ14_VECTOR (IRQ0_VECTOR + 14)
  43. #define IRQ15_VECTOR (IRQ0_VECTOR + 15)
  44. /*
  45. * Special IRQ vectors used by the SMP architecture, 0xf0-0xff
  46. *
  47. * some of the following vectors are 'rare', they are merged
  48. * into a single vector (CALL_FUNCTION_VECTOR) to save vector space.
  49. * TLB, reschedule and local APIC vectors are performance-critical.
  50. *
  51. * Vectors 0xf0-0xfa are free (reserved for future Linux use).
  52. */
  53. #ifdef CONFIG_X86_32
  54. # define SPURIOUS_APIC_VECTOR 0xff
  55. # define ERROR_APIC_VECTOR 0xfe
  56. # define INVALIDATE_TLB_VECTOR 0xfd
  57. # define RESCHEDULE_VECTOR 0xfc
  58. # define CALL_FUNCTION_VECTOR 0xfb
  59. # define CALL_FUNCTION_SINGLE_VECTOR 0xfa
  60. # define THERMAL_APIC_VECTOR 0xf0
  61. #else
  62. #define SPURIOUS_APIC_VECTOR 0xff
  63. #define ERROR_APIC_VECTOR 0xfe
  64. #define RESCHEDULE_VECTOR 0xfd
  65. #define CALL_FUNCTION_VECTOR 0xfc
  66. #define CALL_FUNCTION_SINGLE_VECTOR 0xfb
  67. #define THERMAL_APIC_VECTOR 0xfa
  68. #define THRESHOLD_APIC_VECTOR 0xf9
  69. #define UV_BAU_MESSAGE 0xf8
  70. #define INVALIDATE_TLB_VECTOR_END 0xf7
  71. #define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
  72. #define NUM_INVALIDATE_TLB_VECTORS 8
  73. #endif
  74. /*
  75. * Local APIC timer IRQ vector is on a different priority level,
  76. * to work around the 'lost local interrupt if more than 2 IRQ
  77. * sources per level' errata.
  78. */
  79. #define LOCAL_TIMER_VECTOR 0xef
  80. /*
  81. * First APIC vector available to drivers: (vectors 0x30-0xee) we
  82. * start at 0x31(0x41) to spread out vectors evenly between priority
  83. * levels. (0x80 is the syscall vector)
  84. */
  85. #ifdef CONFIG_X86_32
  86. # define FIRST_DEVICE_VECTOR 0x31
  87. #else
  88. # define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
  89. #endif
  90. #define NR_VECTORS 256
  91. #define FPU_IRQ 13
  92. #define FIRST_VM86_IRQ 3
  93. #define LAST_VM86_IRQ 15
  94. #define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
  95. #ifdef CONFIG_X86_64
  96. # if NR_CPUS < MAX_IO_APICS
  97. # define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
  98. # else
  99. # define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
  100. # endif
  101. # define NR_IRQ_VECTORS NR_IRQS
  102. #elif !defined(CONFIG_X86_VOYAGER)
  103. # if defined(CONFIG_X86_IO_APIC) || defined(CONFIG_PARAVIRT) || defined(CONFIG_X86_VISWS)
  104. # define NR_IRQS 224
  105. # if (224 >= 32 * NR_CPUS)
  106. # define NR_IRQ_VECTORS NR_IRQS
  107. # else
  108. # define NR_IRQ_VECTORS (32 * NR_CPUS)
  109. # endif
  110. # else /* IO_APIC || PARAVIRT */
  111. # define NR_IRQS 16
  112. # define NR_IRQ_VECTORS NR_IRQS
  113. # endif
  114. #else /* !VISWS && !VOYAGER */
  115. # define NR_IRQS 224
  116. # define NR_IRQ_VECTORS NR_IRQS
  117. #endif /* VISWS */
  118. /* Voyager specific defines */
  119. /* These define the CPIs we use in linux */
  120. #define VIC_CPI_LEVEL0 0
  121. #define VIC_CPI_LEVEL1 1
  122. /* now the fake CPIs */
  123. #define VIC_TIMER_CPI 2
  124. #define VIC_INVALIDATE_CPI 3
  125. #define VIC_RESCHEDULE_CPI 4
  126. #define VIC_ENABLE_IRQ_CPI 5
  127. #define VIC_CALL_FUNCTION_CPI 6
  128. #define VIC_CALL_FUNCTION_SINGLE_CPI 7
  129. /* Now the QIC CPIs: Since we don't need the two initial levels,
  130. * these are 2 less than the VIC CPIs */
  131. #define QIC_CPI_OFFSET 1
  132. #define QIC_TIMER_CPI (VIC_TIMER_CPI - QIC_CPI_OFFSET)
  133. #define QIC_INVALIDATE_CPI (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
  134. #define QIC_RESCHEDULE_CPI (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
  135. #define QIC_ENABLE_IRQ_CPI (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
  136. #define QIC_CALL_FUNCTION_CPI (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
  137. #define QIC_CALL_FUNCTION_SINGLE_CPI (VIC_CALL_FUNCTION_SINGLE_CPI - QIC_CPI_OFFSET)
  138. #define VIC_START_FAKE_CPI VIC_TIMER_CPI
  139. #define VIC_END_FAKE_CPI VIC_CALL_FUNCTION_SINGLE_CPI
  140. /* this is the SYS_INT CPI. */
  141. #define VIC_SYS_INT 8
  142. #define VIC_CMN_INT 15
  143. /* This is the boot CPI for alternate processors. It gets overwritten
  144. * by the above once the system has activated all available processors */
  145. #define VIC_CPU_BOOT_CPI VIC_CPI_LEVEL0
  146. #define VIC_CPU_BOOT_ERRATA_CPI (VIC_CPI_LEVEL0 + 8)
  147. #endif /* ASM_X86__IRQ_VECTORS_H */