genirq: Provide forced interrupt threading
[firefly-linux-kernel-4.4.55.git] / kernel / irq / Kconfig
1 config HAVE_GENERIC_HARDIRQS
2         bool
3
4 if HAVE_GENERIC_HARDIRQS
5 menu "IRQ subsystem"
6 #
7 # Interrupt subsystem related configuration options
8 #
9 config GENERIC_HARDIRQS
10        def_bool y
11
12 # Select this to disable the deprecated stuff
13 config GENERIC_HARDIRQS_NO_DEPRECATED
14        bool
15
16 config GENERIC_HARDIRQS_NO_COMPAT
17        bool
18
19 # Options selectable by the architecture code
20 config HAVE_SPARSE_IRQ
21        bool
22
23 config GENERIC_IRQ_PROBE
24         bool
25
26 config GENERIC_IRQ_SHOW
27        bool
28
29 config GENERIC_PENDING_IRQ
30         bool
31
32 config AUTO_IRQ_AFFINITY
33        bool
34
35 config HARDIRQS_SW_RESEND
36        bool
37
38 config IRQ_PREFLOW_FASTEOI
39        bool
40
41 config IRQ_FORCED_THREADING
42        bool
43
44 config SPARSE_IRQ
45         bool "Support sparse irq numbering"
46         depends on HAVE_SPARSE_IRQ
47         ---help---
48
49           Sparse irq numbering is useful for distro kernels that want
50           to define a high CONFIG_NR_CPUS value but still want to have
51           low kernel memory footprint on smaller machines.
52
53           ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
54             out the interrupt descriptors in a more NUMA-friendly way. )
55
56           If you don't know what to do here, say N.
57
58 endmenu
59 endif