Kconfig 2.1 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
16
config MAY_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 52 53 54
# Generic configurable interrupt chip implementation
config GENERIC_IRQ_CHIP
       bool

55 56 57 58
# Generic irq_domain hw <--> linux irq number translation
config IRQ_DOMAIN
	bool

59 60 61 62 63 64 65 66 67 68
config IRQ_DOMAIN_DEBUG
	bool "Expose hardware/virtual IRQ mapping via debugfs"
	depends on IRQ_DOMAIN && DEBUG_FS
	help
	  This option will show the mapping relationship between hardware irq
	  numbers and Linux irq numbers. The mapping is exposed via debugfs
	  in the file "virq_mapping".

	  If you don't know what this means you don't need it.

69
# Support forced irq threading
70 71 72
config IRQ_FORCED_THREADING
       bool

T
Thomas Gleixner 已提交
73
config SPARSE_IRQ
74
	bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
T
Thomas Gleixner 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87
	---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