2010-09-27 12:45:59 +00:00
menu "IRQ subsystem"
# Options selectable by the architecture code
2011-03-08 19:52:55 +01:00
# Make sparse irq Kconfig switch below available
2012-01-25 20:02:40 -06:00
config MAY_HAVE_SPARSE_IRQ
2011-02-17 13:39:05 +00:00
bool
2010-09-27 12:45:59 +00:00
2014-05-07 15:44:22 +00:00
# Legacy support, required for itanic
config GENERIC_IRQ_LEGACY
bool
2011-03-08 19:52:55 +01:00
# Enable the generic irq autoprobe mechanism
2010-09-27 12:45:59 +00:00
config GENERIC_IRQ_PROBE
2011-02-17 13:39:05 +00:00
bool
2010-09-27 12:45:59 +00:00
2011-03-08 19:52:55 +01:00
# Use the generic /proc/interrupts implementation
2010-12-16 17:21:47 +01:00
config GENERIC_IRQ_SHOW
2011-02-17 13:39:05 +00:00
bool
2010-12-16 17:21:47 +01:00
2011-03-25 16:48:50 +01:00
# Print level/edge extra information
config GENERIC_IRQ_SHOW_LEVEL
bool
2014-05-07 15:44:05 +00:00
# Facility to allocate a hardware interrupt. This is legacy support
# and should not be used in new code. Use irq domains instead.
config GENERIC_IRQ_LEGACY_ALLOC_HWIRQ
bool
2011-03-08 19:52:55 +01:00
# Support for delayed migration from interrupt context
2010-09-27 12:45:59 +00:00
config GENERIC_PENDING_IRQ
2011-02-17 13:39:05 +00:00
bool
2010-09-27 12:45:59 +00:00
2011-03-08 19:52:55 +01:00
# Alpha specific irq affinity mechanism
2010-09-27 12:45:59 +00:00
config AUTO_IRQ_AFFINITY
2011-02-17 13:39:05 +00:00
bool
2010-09-27 12:45:59 +00:00
2011-03-08 19:52:55 +01:00
# Tasklet based software resend for pending interrupts on enable_irq()
2010-09-27 12:45:59 +00:00
config HARDIRQS_SW_RESEND
2011-02-17 13:39:05 +00:00
bool
2010-09-27 12:45:59 +00:00
2011-03-08 19:52:55 +01:00
# Preflow handler support for fasteoi (sparc64)
2011-02-10 15:14:20 +01:00
config IRQ_PREFLOW_FASTEOI
2011-02-17 13:39:05 +00:00
bool
2011-02-10 15:14:20 +01:00
2011-03-28 16:13:24 +02:00
# Edge style eoi based handler (cell)
config IRQ_EDGE_EOI_HANDLER
bool
2011-05-02 18:16:22 +02:00
# Generic configurable interrupt chip implementation
config GENERIC_IRQ_CHIP
bool
2014-01-30 16:50:10 -08:00
select IRQ_DOMAIN
2011-05-02 18:16:22 +02:00
2011-07-26 03:19:06 -06:00
# Generic irq_domain hw <--> linux irq number translation
config IRQ_DOMAIN
bool
2012-03-29 14:10:30 -06: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 15:25:42 +03:00
in the file "irq_domain_mapping".
2012-03-29 14:10:30 -06:00
If you don't know what this means you don't need it.
2011-03-08 19:52:55 +01:00
# Support forced irq threading
2011-02-23 23:52:23 +00:00
config IRQ_FORCED_THREADING
bool
2010-09-27 12:45:59 +00:00
config SPARSE_IRQ
2012-01-25 20:02:40 -06:00
bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
2010-09-27 12:45:59 +00: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