Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. # Enable the generic irq autoprobe mechanism
  7. config GENERIC_IRQ_PROBE
  8. bool
  9. # Use the generic /proc/interrupts implementation
  10. config GENERIC_IRQ_SHOW
  11. bool
  12. # Print level/edge extra information
  13. config GENERIC_IRQ_SHOW_LEVEL
  14. bool
  15. # Support for delayed migration from interrupt context
  16. config GENERIC_PENDING_IRQ
  17. bool
  18. # Alpha specific irq affinity mechanism
  19. config AUTO_IRQ_AFFINITY
  20. bool
  21. # Tasklet based software resend for pending interrupts on enable_irq()
  22. config HARDIRQS_SW_RESEND
  23. bool
  24. # Preflow handler support for fasteoi (sparc64)
  25. config IRQ_PREFLOW_FASTEOI
  26. bool
  27. # Edge style eoi based handler (cell)
  28. config IRQ_EDGE_EOI_HANDLER
  29. bool
  30. # Generic configurable interrupt chip implementation
  31. config GENERIC_IRQ_CHIP
  32. bool
  33. # Generic irq_domain hw <--> linux irq number translation
  34. config IRQ_DOMAIN
  35. bool
  36. config IRQ_DOMAIN_DEBUG
  37. bool "Expose hardware/virtual IRQ mapping via debugfs"
  38. depends on IRQ_DOMAIN && DEBUG_FS
  39. help
  40. This option will show the mapping relationship between hardware irq
  41. numbers and Linux irq numbers. The mapping is exposed via debugfs
  42. in the file "irq_domain_mapping".
  43. If you don't know what this means you don't need it.
  44. # Support forced irq threading
  45. config IRQ_FORCED_THREADING
  46. bool
  47. config SPARSE_IRQ
  48. bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
  49. ---help---
  50. Sparse irq numbering is useful for distro kernels that want
  51. to define a high CONFIG_NR_CPUS value but still want to have
  52. low kernel memory footprint on smaller machines.
  53. ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
  54. out the interrupt descriptors in a more NUMA-friendly way. )
  55. If you don't know what to do here, say N.
  56. endmenu