Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. # Select this to disable the deprecated stuff
  12. config GENERIC_HARDIRQS_NO_DEPRECATED
  13. bool
  14. config GENERIC_HARDIRQS_NO_COMPAT
  15. bool
  16. # Options selectable by the architecture code
  17. # Make sparse irq Kconfig switch below available
  18. config HAVE_SPARSE_IRQ
  19. bool
  20. # Enable the generic irq autoprobe mechanism
  21. config GENERIC_IRQ_PROBE
  22. bool
  23. # Use the generic /proc/interrupts implementation
  24. config GENERIC_IRQ_SHOW
  25. bool
  26. # Print level/edge extra information
  27. config GENERIC_IRQ_SHOW_LEVEL
  28. bool
  29. # Support for delayed migration from interrupt context
  30. config GENERIC_PENDING_IRQ
  31. bool
  32. # Alpha specific irq affinity mechanism
  33. config AUTO_IRQ_AFFINITY
  34. bool
  35. # Tasklet based software resend for pending interrupts on enable_irq()
  36. config HARDIRQS_SW_RESEND
  37. bool
  38. # Preflow handler support for fasteoi (sparc64)
  39. config IRQ_PREFLOW_FASTEOI
  40. bool
  41. # Support forced irq threading
  42. config IRQ_FORCED_THREADING
  43. bool
  44. config SPARSE_IRQ
  45. bool "Support sparse irq numbering"
  46. depends on HAVE_SPARSE_IRQ
  47. ---help---
  48. Sparse irq numbering is useful for distro kernels that want
  49. to define a high CONFIG_NR_CPUS value but still want to have
  50. low kernel memory footprint on smaller machines.
  51. ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
  52. out the interrupt descriptors in a more NUMA-friendly way. )
  53. If you don't know what to do here, say N.
  54. endmenu
  55. endif