Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. menu "IRQ subsystem"
  2. # Options selectable by the architecture code
  3. # Make sparse irq Kconfig switch below available
  4. config MAY_HAVE_SPARSE_IRQ
  5. bool
  6. # Legacy support, required for itanic
  7. config GENERIC_IRQ_LEGACY
  8. bool
  9. # Enable the generic irq autoprobe mechanism
  10. config GENERIC_IRQ_PROBE
  11. bool
  12. # Use the generic /proc/interrupts implementation
  13. config GENERIC_IRQ_SHOW
  14. bool
  15. # Print level/edge extra information
  16. config GENERIC_IRQ_SHOW_LEVEL
  17. bool
  18. # Supports effective affinity mask
  19. config GENERIC_IRQ_EFFECTIVE_AFF_MASK
  20. bool
  21. # Facility to allocate a hardware interrupt. This is legacy support
  22. # and should not be used in new code. Use irq domains instead.
  23. config GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
  24. bool
  25. # Support for delayed migration from interrupt context
  26. config GENERIC_PENDING_IRQ
  27. bool
  28. # Support for generic irq migrating off cpu before the cpu is offline.
  29. config GENERIC_IRQ_MIGRATION
  30. bool
  31. # Alpha specific irq affinity mechanism
  32. config AUTO_IRQ_AFFINITY
  33. bool
  34. # Tasklet based software resend for pending interrupts on enable_irq()
  35. config HARDIRQS_SW_RESEND
  36. bool
  37. # Preflow handler support for fasteoi (sparc64)
  38. config IRQ_PREFLOW_FASTEOI
  39. bool
  40. # Edge style eoi based handler (cell)
  41. config IRQ_EDGE_EOI_HANDLER
  42. bool
  43. # Generic configurable interrupt chip implementation
  44. config GENERIC_IRQ_CHIP
  45. bool
  46. select IRQ_DOMAIN
  47. # Generic irq_domain hw <--> linux irq number translation
  48. config IRQ_DOMAIN
  49. bool
  50. # Support for simulated interrupts
  51. config IRQ_SIM
  52. bool
  53. select IRQ_WORK
  54. # Support for hierarchical irq domains
  55. config IRQ_DOMAIN_HIERARCHY
  56. bool
  57. select IRQ_DOMAIN
  58. # Support for hierarchical fasteoi+edge and fasteoi+level handlers
  59. config IRQ_FASTEOI_HIERARCHY_HANDLERS
  60. bool
  61. # Generic IRQ IPI support
  62. config GENERIC_IRQ_IPI
  63. bool
  64. select IRQ_DOMAIN_HIERARCHY
  65. # Generic MSI interrupt support
  66. config GENERIC_MSI_IRQ
  67. bool
  68. # Generic MSI hierarchical interrupt domain support
  69. config GENERIC_MSI_IRQ_DOMAIN
  70. bool
  71. select IRQ_DOMAIN_HIERARCHY
  72. select GENERIC_MSI_IRQ
  73. config HANDLE_DOMAIN_IRQ
  74. bool
  75. config IRQ_TIMINGS
  76. bool
  77. config GENERIC_IRQ_MATRIX_ALLOCATOR
  78. bool
  79. config GENERIC_IRQ_RESERVATION_MODE
  80. bool
  81. # Support forced irq threading
  82. config IRQ_FORCED_THREADING
  83. bool
  84. config SPARSE_IRQ
  85. bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
  86. ---help---
  87. Sparse irq numbering is useful for distro kernels that want
  88. to define a high CONFIG_NR_CPUS value but still want to have
  89. low kernel memory footprint on smaller machines.
  90. ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
  91. out the interrupt descriptors in a more NUMA-friendly way. )
  92. If you don't know what to do here, say N.
  93. config GENERIC_IRQ_DEBUGFS
  94. bool "Expose irq internals in debugfs"
  95. depends on DEBUG_FS
  96. default n
  97. ---help---
  98. Exposes internal state information through debugfs. Mostly for
  99. developers and debugging of hard to diagnose interrupt problems.
  100. If you don't know what to do here, say N.
  101. endmenu
  102. config GENERIC_IRQ_MULTI_HANDLER
  103. bool
  104. help
  105. Allow to specify the low level IRQ handler at run time.