Kconfig 2.1 KB

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