Kconfig 3.2 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 IRQ_DOMAIN_DEBUG
  78. bool "Expose hardware/virtual IRQ mapping via debugfs"
  79. depends on IRQ_DOMAIN && DEBUG_FS
  80. help
  81. This option will show the mapping relationship between hardware irq
  82. numbers and Linux irq numbers. The mapping is exposed via debugfs
  83. in the file "irq_domain_mapping".
  84. If you don't know what this means you don't need it.
  85. # Support forced irq threading
  86. config IRQ_FORCED_THREADING
  87. bool
  88. config SPARSE_IRQ
  89. bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
  90. ---help---
  91. Sparse irq numbering is useful for distro kernels that want
  92. to define a high CONFIG_NR_CPUS value but still want to have
  93. low kernel memory footprint on smaller machines.
  94. ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
  95. out the interrupt descriptors in a more NUMA-friendly way. )
  96. If you don't know what to do here, say N.
  97. config GENERIC_IRQ_DEBUGFS
  98. bool "Expose irq internals in debugfs"
  99. depends on DEBUG_FS
  100. default n
  101. ---help---
  102. Exposes internal state information through debugfs. Mostly for
  103. developers and debugging of hard to diagnose interrupt problems.
  104. If you don't know what to do here, say N.
  105. endmenu