Kconfig 1.7 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

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

13 14
# Select this to disable the deprecated stuff
config GENERIC_HARDIRQS_NO_DEPRECATED
15
       bool
16

17
config GENERIC_HARDIRQS_NO_COMPAT
18
       bool
19

T
Thomas Gleixner 已提交
20
# Options selectable by the architecture code
21 22

# Make sparse irq Kconfig switch below available
T
Thomas Gleixner 已提交
23
config HAVE_SPARSE_IRQ
24
       bool
T
Thomas Gleixner 已提交
25

26
# Enable the generic irq autoprobe mechanism
T
Thomas Gleixner 已提交
27
config GENERIC_IRQ_PROBE
28
	bool
T
Thomas Gleixner 已提交
29

30
# Use the generic /proc/interrupts implementation
31
config GENERIC_IRQ_SHOW
32
       bool
33

34 35 36 37
# Print level/edge extra information
config GENERIC_IRQ_SHOW_LEVEL
       bool

38
# Support for delayed migration from interrupt context
T
Thomas Gleixner 已提交
39
config GENERIC_PENDING_IRQ
40
	bool
T
Thomas Gleixner 已提交
41

42
# Alpha specific irq affinity mechanism
T
Thomas Gleixner 已提交
43
config AUTO_IRQ_AFFINITY
44
       bool
T
Thomas Gleixner 已提交
45

46
# Tasklet based software resend for pending interrupts on enable_irq()
T
Thomas Gleixner 已提交
47
config HARDIRQS_SW_RESEND
48
       bool
T
Thomas Gleixner 已提交
49

50
# Preflow handler support for fasteoi (sparc64)
51
config IRQ_PREFLOW_FASTEOI
52
       bool
53

54 55 56 57
# Edge style eoi based handler (cell)
config IRQ_EDGE_EOI_HANDLER
       bool

58
# Support forced irq threading
59 60 61
config IRQ_FORCED_THREADING
       bool

T
Thomas Gleixner 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
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