genirq: Prepare proc for real sparse irq support
[pandora-kernel.git] / kernel / irq / Kconfig
1 config HAVE_GENERIC_HARDIRQS
2         def_bool n
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 config GENERIC_HARDIRQS_NO__DO_IRQ
13        def_bool y
14
15 # Select this to disable the deprecated stuff
16 config GENERIC_HARDIRQS_NO_DEPRECATED
17        def_bool n
18
19 # Options selectable by the architecture code
20 config HAVE_SPARSE_IRQ
21        def_bool n
22
23 config GENERIC_IRQ_PROBE
24         def_bool n
25
26 config GENERIC_PENDING_IRQ
27         def_bool n
28
29 if SPARSE_IRQ && NUMA
30 config NUMA_IRQ_DESC
31         def_bool n
32 endif
33
34 config AUTO_IRQ_AFFINITY
35        def_bool n
36
37 config IRQ_PER_CPU
38        def_bool n
39
40 config HARDIRQS_SW_RESEND
41        def_bool n
42
43 config SPARSE_IRQ
44         bool "Support sparse irq numbering"
45         depends on HAVE_SPARSE_IRQ
46         ---help---
47
48           Sparse irq numbering is useful for distro kernels that want
49           to define a high CONFIG_NR_CPUS value but still want to have
50           low kernel memory footprint on smaller machines.
51
52           ( Sparse irqs can also be beneficial on NUMA boxes, as they spread
53             out the interrupt descriptors in a more NUMA-friendly way. )
54
55           If you don't know what to do here, say N.
56
57 endmenu
58 endif