2011-03-08 19:52:55 +01:00
|
|
|
# Select this to activate the generic irq options below
|
2010-09-27 14:45:59 +02:00
|
|
|
config HAVE_GENERIC_HARDIRQS
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02: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 19:52:55 +01:00
|
|
|
|
|
|
|
# Make sparse irq Kconfig switch below available
|
2010-09-27 14:45:59 +02:00
|
|
|
config HAVE_SPARSE_IRQ
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02:00
|
|
|
|
2011-03-08 19:52:55 +01:00
|
|
|
# Enable the generic irq autoprobe mechanism
|
2010-09-27 14:45:59 +02:00
|
|
|
config GENERIC_IRQ_PROBE
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02: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 14:39:05 +01: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
|
|
|
|
|
2011-03-08 19:52:55 +01:00
|
|
|
# Support for delayed migration from interrupt context
|
2010-09-27 14:45:59 +02:00
|
|
|
config GENERIC_PENDING_IRQ
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02:00
|
|
|
|
2011-03-08 19:52:55 +01:00
|
|
|
# Alpha specific irq affinity mechanism
|
2010-09-27 14:45:59 +02:00
|
|
|
config AUTO_IRQ_AFFINITY
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02:00
|
|
|
|
2011-03-08 19:52:55 +01:00
|
|
|
# Tasklet based software resend for pending interrupts on enable_irq()
|
2010-09-27 14:45:59 +02:00
|
|
|
config HARDIRQS_SW_RESEND
|
2011-02-17 14:39:05 +01:00
|
|
|
bool
|
2010-09-27 14:45:59 +02: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 14:39:05 +01: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-03-08 19:52:55 +01:00
|
|
|
# Support forced irq threading
|
2011-02-24 00:52:23 +01:00
|
|
|
config IRQ_FORCED_THREADING
|
|
|
|
bool
|
|
|
|
|
2010-09-27 14:45:59 +02:00
|
|
|
config SPARSE_IRQ
|
|
|
|
bool "Support sparse irq numbering"
|
|
|
|
depends on HAVE_SPARSE_IRQ
|
|
|
|
---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
|