Kconfig 1.5 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
# Support for delayed migration from interrupt context
T
Thomas Gleixner 已提交
35
config GENERIC_PENDING_IRQ
36
	bool
T
Thomas Gleixner 已提交
37

38
# Alpha specific irq affinity mechanism
T
Thomas Gleixner 已提交
39
config AUTO_IRQ_AFFINITY
40
       bool
T
Thomas Gleixner 已提交
41

42
# Tasklet based software resend for pending interrupts on enable_irq()
T
Thomas Gleixner 已提交
43
config HARDIRQS_SW_RESEND
44
       bool
T
Thomas Gleixner 已提交
45

46
# Preflow handler support for fasteoi (sparc64)
47
config IRQ_PREFLOW_FASTEOI
48
       bool
49

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

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