2011-03-08 21:52:55 +03:00
# Select this to activate the generic irq options below
2010-09-27 16:45:59 +04:00
config HAVE_GENERIC_HARDIRQS
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
if HAVE_GENERIC_HARDIRQS
menu "IRQ subsystem"
#
# Interrupt subsystem related configuration options
#
config GENERIC_HARDIRQS
def_bool y
# Options selectable by the architecture code
2011-03-08 21:52:55 +03:00
# Make sparse irq Kconfig switch below available
2012-01-26 06:02:40 +04:00
config MAY_HAVE_SPARSE_IRQ
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
2011-03-08 21:52:55 +03:00
# Enable the generic irq autoprobe mechanism
2010-09-27 16:45:59 +04:00
config GENERIC_IRQ_PROBE
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
2011-03-08 21:52:55 +03:00
# Use the generic /proc/interrupts implementation
2010-12-16 19:21:47 +03:00
config GENERIC_IRQ_SHOW
2011-02-17 16:39:05 +03:00
bool
2010-12-16 19:21:47 +03:00
2011-03-25 18:48:50 +03:00
# Print level/edge extra information
config GENERIC_IRQ_SHOW_LEVEL
bool
2011-03-08 21:52:55 +03:00
# Support for delayed migration from interrupt context
2010-09-27 16:45:59 +04:00
config GENERIC_PENDING_IRQ
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
2011-03-08 21:52:55 +03:00
# Alpha specific irq affinity mechanism
2010-09-27 16:45:59 +04:00
config AUTO_IRQ_AFFINITY
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
2011-03-08 21:52:55 +03:00
# Tasklet based software resend for pending interrupts on enable_irq()
2010-09-27 16:45:59 +04:00
config HARDIRQS_SW_RESEND
2011-02-17 16:39:05 +03:00
bool
2010-09-27 16:45:59 +04:00
2011-03-08 21:52:55 +03:00
# Preflow handler support for fasteoi (sparc64)
2011-02-10 17:14:20 +03:00
config IRQ_PREFLOW_FASTEOI
2011-02-17 16:39:05 +03:00
bool
2011-02-10 17:14:20 +03:00
2011-03-28 18:13:24 +04:00
# Edge style eoi based handler (cell)
config IRQ_EDGE_EOI_HANDLER
bool
2011-05-02 20:16:22 +04:00
# Generic configurable interrupt chip implementation
config GENERIC_IRQ_CHIP
bool
2011-07-26 13:19:06 +04:00
# Generic irq_domain hw <--> linux irq number translation
config IRQ_DOMAIN
bool
2012-03-30 00:10:30 +04:00
config IRQ_DOMAIN_DEBUG
bool "Expose hardware/virtual IRQ mapping via debugfs"
depends on IRQ_DOMAIN && DEBUG_FS
help
This option will show the mapping relationship between hardware irq
numbers and Linux irq numbers. The mapping is exposed via debugfs
2012-04-10 16:25:42 +04:00
in the file "irq_domain_mapping".
2012-03-30 00:10:30 +04:00
If you don't know what this means you don't need it.
2011-03-08 21:52:55 +03:00
# Support forced irq threading
2011-02-24 02:52:23 +03:00
config IRQ_FORCED_THREADING
bool
2010-09-27 16:45:59 +04:00
config SPARSE_IRQ
2012-01-26 06:02:40 +04:00
bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
2010-09-27 16:45:59 +04:00
---help---
Sparse irq numbering is useful for distro kernels that want
to define a high CONFIG_NR_CPUS value but still want to have
low kernel memory footprint on smaller machines.
( Sparse irqs can also be beneficial on NUMA boxes, as they spread
out the interrupt descriptors in a more NUMA-friendly way. )
If you don't know what to do here, say N.
endmenu
endif