Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. # Facility to allocate a hardware interrupt. This is legacy support
  19. # and should not be used in new code. Use irq domains instead.
  20. config GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
  21. bool
  22. # Support for delayed migration from interrupt context
  23. config GENERIC_PENDING_IRQ
  24. bool
  25. # Support for generic irq migrating off cpu before the cpu is offline.
  26. config GENERIC_IRQ_MIGRATION
  27. bool
  28. # Alpha specific irq affinity mechanism
  29. config AUTO_IRQ_AFFINITY
  30. bool
  31. # Tasklet based software resend for pending interrupts on enable_irq()
  32. config HARDIRQS_SW_RESEND
  33. bool
  34. # Preflow handler support for fasteoi (sparc64)
  35. config IRQ_PREFLOW_FASTEOI
  36. bool
  37. # Edge style eoi based handler (cell)
  38. config IRQ_EDGE_EOI_HANDLER
  39. bool
  40. # Generic configurable interrupt chip implementation
  41. config GENERIC_IRQ_CHIP
  42. bool
  43. select IRQ_DOMAIN
  44. # Generic irq_domain hw <--> linux irq number translation
  45. config IRQ_DOMAIN
  46. bool
  47. # Support for hierarchical irq domains
  48. config IRQ_DOMAIN_HIERARCHY
  49. bool
  50. select IRQ_DOMAIN
  51. # Generic IRQ IPI support
  52. config GENERIC_IRQ_IPI
  53. bool
  54. # Generic MSI interrupt support
  55. config GENERIC_MSI_IRQ
  56. bool
  57. # Generic MSI hierarchical interrupt domain support
  58. config GENERIC_MSI_IRQ_DOMAIN
  59. bool
  60. select IRQ_DOMAIN_HIERARCHY
  61. select GENERIC_MSI_IRQ
  62. config HANDLE_DOMAIN_IRQ
  63. bool
  64. config IRQ_DOMAIN_DEBUG
  65. bool "Expose hardware/virtual IRQ mapping via debugfs"
  66. depends on IRQ_DOMAIN && DEBUG_FS
  67. help
  68. This option will show the mapping relationship between hardware irq
  69. numbers and Linux irq numbers. The mapping is exposed via debugfs
  70. in the file "irq_domain_mapping".
  71. If you don't know what this means you don't need it.
  72. # Support forced irq threading
  73. config IRQ_FORCED_THREADING
  74. bool
  75. config SPARSE_IRQ
  76. bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
  77. ---help---
  78. Sparse irq numbering is useful for distro kernels that want
  79. to define a high CONFIG_NR_CPUS value but still want to have
  80. low kernel memory footprint on smaller machines.
  81. ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
  82. out the interrupt descriptors in a more NUMA-friendly way. )
  83. If you don't know what to do here, say N.
  84. endmenu