blob: 355b8c7957f5e062be77c94a69a25e7fc5a720dd [file] [log] [blame]
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +00001config HAVE_GENERIC_HARDIRQS
Jan Beulichfd4afaf2011-02-17 13:39:05 +00002 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +00003
4if HAVE_GENERIC_HARDIRQS
5menu "IRQ subsystem"
6#
7# Interrupt subsystem related configuration options
8#
9config GENERIC_HARDIRQS
10 def_bool y
11
Thomas Gleixnerbd151412010-10-01 15:17:14 +020012# Select this to disable the deprecated stuff
13config GENERIC_HARDIRQS_NO_DEPRECATED
Jan Beulichfd4afaf2011-02-17 13:39:05 +000014 bool
Thomas Gleixnerbd151412010-10-01 15:17:14 +020015
Thomas Gleixner009b4c32011-02-07 21:48:49 +010016config GENERIC_HARDIRQS_NO_COMPAT
Jan Beulichfd4afaf2011-02-17 13:39:05 +000017 bool
Thomas Gleixner009b4c32011-02-07 21:48:49 +010018
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000019# Options selectable by the architecture code
20config HAVE_SPARSE_IRQ
Jan Beulichfd4afaf2011-02-17 13:39:05 +000021 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000022
23config GENERIC_IRQ_PROBE
Jan Beulichfd4afaf2011-02-17 13:39:05 +000024 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000025
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +010026config GENERIC_IRQ_SHOW
Jan Beulichfd4afaf2011-02-17 13:39:05 +000027 bool
Thomas Gleixnerc78b9b62010-12-16 17:21:47 +010028
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000029config GENERIC_PENDING_IRQ
Jan Beulichfd4afaf2011-02-17 13:39:05 +000030 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000031
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000032config AUTO_IRQ_AFFINITY
Jan Beulichfd4afaf2011-02-17 13:39:05 +000033 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000034
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000035config HARDIRQS_SW_RESEND
Jan Beulichfd4afaf2011-02-17 13:39:05 +000036 bool
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000037
Thomas Gleixner78129572011-02-10 15:14:20 +010038config IRQ_PREFLOW_FASTEOI
Jan Beulichfd4afaf2011-02-17 13:39:05 +000039 bool
Thomas Gleixner78129572011-02-10 15:14:20 +010040
Thomas Gleixnerd9817eb2010-09-27 12:45:59 +000041config SPARSE_IRQ
42 bool "Support sparse irq numbering"
43 depends on HAVE_SPARSE_IRQ
44 ---help---
45
46 Sparse irq numbering is useful for distro kernels that want
47 to define a high CONFIG_NR_CPUS value but still want to have
48 low kernel memory footprint on smaller machines.
49
50 ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
51 out the interrupt descriptors in a more NUMA-friendly way. )
52
53 If you don't know what to do here, say N.
54
55endmenu
56endif