Kconfig 1.6 KB
Newer Older
1
# Select this to activate the generic irq options below
T
Thomas Gleixner 已提交
2
config HAVE_GENERIC_HARDIRQS
3
	bool
T
Thomas Gleixner 已提交
4 5 6 7 8 9 10 11 12 13

if HAVE_GENERIC_HARDIRQS
menu "IRQ subsystem"
#
# Interrupt subsystem related configuration options
#
config GENERIC_HARDIRQS
       def_bool y

# Options selectable by the architecture code
14 15

# Make sparse irq Kconfig switch below available
T
Thomas Gleixner 已提交
16
config HAVE_SPARSE_IRQ
17
       bool
T
Thomas Gleixner 已提交
18

19
# Enable the generic irq autoprobe mechanism
T
Thomas Gleixner 已提交
20
config GENERIC_IRQ_PROBE
21
	bool
T
Thomas Gleixner 已提交
22

23
# Use the generic /proc/interrupts implementation
24
config GENERIC_IRQ_SHOW
25
       bool
26

27 28 29 30
# Print level/edge extra information
config GENERIC_IRQ_SHOW_LEVEL
       bool

31
# Support for delayed migration from interrupt context
T
Thomas Gleixner 已提交
32
config GENERIC_PENDING_IRQ
33
	bool
T
Thomas Gleixner 已提交
34

35
# Alpha specific irq affinity mechanism
T
Thomas Gleixner 已提交
36
config AUTO_IRQ_AFFINITY
37
       bool
T
Thomas Gleixner 已提交
38

39
# Tasklet based software resend for pending interrupts on enable_irq()
T
Thomas Gleixner 已提交
40
config HARDIRQS_SW_RESEND
41
       bool
T
Thomas Gleixner 已提交
42

43
# Preflow handler support for fasteoi (sparc64)
44
config IRQ_PREFLOW_FASTEOI
45
       bool
46

47 48 49 50
# Edge style eoi based handler (cell)
config IRQ_EDGE_EOI_HANDLER
       bool

51
# Support forced irq threading
52 53 54
config IRQ_FORCED_THREADING
       bool

T
Thomas Gleixner 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
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