irq_vectors.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. * Vectors 0xf0-0xfa are free (reserved for future Linux use).
  47. */
  48. #ifdef CONFIG_X86_32
  49. # define SPURIOUS_APIC_VECTOR 0xff
  50. # define ERROR_APIC_VECTOR 0xfe
  51. # define INVALIDATE_TLB_VECTOR 0xfd
  52. # define RESCHEDULE_VECTOR 0xfc
  53. # define CALL_FUNCTION_VECTOR 0xfb
  54. # define CALL_FUNCTION_SINGLE_VECTOR 0xfa
  55. # define THERMAL_APIC_VECTOR 0xf0
  56. #else
  57. #define SPURIOUS_APIC_VECTOR 0xff
  58. #define ERROR_APIC_VECTOR 0xfe
  59. #define RESCHEDULE_VECTOR 0xfd
  60. #define CALL_FUNCTION_VECTOR 0xfc
  61. #define CALL_FUNCTION_SINGLE_VECTOR 0xfb
  62. #define THERMAL_APIC_VECTOR 0xfa
  63. #define THRESHOLD_APIC_VECTOR 0xf9
  64. #define UV_BAU_MESSAGE 0xf8
  65. #define INVALIDATE_TLB_VECTOR_END 0xf7
  66. #define INVALIDATE_TLB_VECTOR_START 0xf0 /* f0-f7 used for TLB flush */
  67. #define NUM_INVALIDATE_TLB_VECTORS 8
  68. #endif
  69. /*
  70. * Local APIC timer IRQ vector is on a different priority level,
  71. * to work around the 'lost local interrupt if more than 2 IRQ
  72. * sources per level' errata.
  73. */
  74. #define LOCAL_TIMER_VECTOR 0xef
  75. /*
  76. * First APIC vector available to drivers: (vectors 0x30-0xee) we
  77. * start at 0x31(0x41) to spread out vectors evenly between priority
  78. * levels. (0x80 is the syscall vector)
  79. */
  80. #define FIRST_DEVICE_VECTOR (IRQ15_VECTOR + 2)
  81. #define NR_VECTORS 256
  82. #define FPU_IRQ 13
  83. #define FIRST_VM86_IRQ 3
  84. #define LAST_VM86_IRQ 15
  85. #define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
  86. #if defined(CONFIG_X86_IO_APIC) && !defined(CONFIG_X86_VOYAGER)
  87. # if NR_CPUS < MAX_IO_APICS
  88. # define NR_IRQS (NR_VECTORS + (32 * NR_CPUS))
  89. # else
  90. # define NR_IRQS (NR_VECTORS + (32 * MAX_IO_APICS))
  91. # endif
  92. #elif defined(CONFIG_X86_VOYAGER)
  93. # define NR_IRQS 224
  94. #else /* IO_APIC || VOYAGER */
  95. # define NR_IRQS 16
  96. #endif
  97. /* Voyager specific defines */
  98. /* These define the CPIs we use in linux */
  99. #define VIC_CPI_LEVEL0 0
  100. #define VIC_CPI_LEVEL1 1
  101. /* now the fake CPIs */
  102. #define VIC_TIMER_CPI 2
  103. #define VIC_INVALIDATE_CPI 3
  104. #define VIC_RESCHEDULE_CPI 4
  105. #define VIC_ENABLE_IRQ_CPI 5
  106. #define VIC_CALL_FUNCTION_CPI 6
  107. #define VIC_CALL_FUNCTION_SINGLE_CPI 7
  108. /* Now the QIC CPIs: Since we don't need the two initial levels,
  109. * these are 2 less than the VIC CPIs */
  110. #define QIC_CPI_OFFSET 1
  111. #define QIC_TIMER_CPI (VIC_TIMER_CPI - QIC_CPI_OFFSET)
  112. #define QIC_INVALIDATE_CPI (VIC_INVALIDATE_CPI - QIC_CPI_OFFSET)
  113. #define QIC_RESCHEDULE_CPI (VIC_RESCHEDULE_CPI - QIC_CPI_OFFSET)
  114. #define QIC_ENABLE_IRQ_CPI (VIC_ENABLE_IRQ_CPI - QIC_CPI_OFFSET)
  115. #define QIC_CALL_FUNCTION_CPI (VIC_CALL_FUNCTION_CPI - QIC_CPI_OFFSET)
  116. #define QIC_CALL_FUNCTION_SINGLE_CPI (VIC_CALL_FUNCTION_SINGLE_CPI - QIC_CPI_OFFSET)
  117. #define VIC_START_FAKE_CPI VIC_TIMER_CPI
  118. #define VIC_END_FAKE_CPI VIC_CALL_FUNCTION_SINGLE_CPI
  119. /* this is the SYS_INT CPI. */
  120. #define VIC_SYS_INT 8
  121. #define VIC_CMN_INT 15
  122. /* This is the boot CPI for alternate processors. It gets overwritten
  123. * by the above once the system has activated all available processors */
  124. #define VIC_CPU_BOOT_CPI VIC_CPI_LEVEL0
  125. #define VIC_CPU_BOOT_ERRATA_CPI (VIC_CPI_LEVEL0 + 8)
  126. #endif /* _ASM_X86_IRQ_VECTORS_H */