]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/parisc/Kconfig
genirq: Remove __do_IRQ
[karo-tx-linux.git] / arch / parisc / Kconfig
1 config PARISC
2         def_bool y
3         select HAVE_IDE
4         select HAVE_OPROFILE
5         select HAVE_FUNCTION_TRACER if 64BIT
6         select HAVE_FUNCTION_GRAPH_TRACER if 64BIT
7         select HAVE_FUNCTION_TRACE_MCOUNT_TEST if 64BIT
8         select RTC_CLASS
9         select RTC_DRV_GENERIC
10         select INIT_ALL_POSSIBLE
11         select BUG
12         select HAVE_IRQ_WORK
13         select HAVE_PERF_EVENTS
14         select GENERIC_ATOMIC64 if !64BIT
15         help
16           The PA-RISC microprocessor is designed by Hewlett-Packard and used
17           in many of their workstations & servers (HP9000 700 and 800 series,
18           and later HP3000 series).  The PA-RISC Linux project home page is
19           at <http://www.parisc-linux.org/>.
20
21 config MMU
22         def_bool y
23
24 config STACK_GROWSUP
25         def_bool y
26
27 config GENERIC_LOCKBREAK
28         bool
29         default y
30         depends on SMP && PREEMPT
31
32 config RWSEM_GENERIC_SPINLOCK
33         def_bool y
34
35 config RWSEM_XCHGADD_ALGORITHM
36         bool
37
38 config ARCH_HAS_ILOG2_U32
39         bool
40         default n
41
42 config ARCH_HAS_ILOG2_U64
43         bool
44         default n
45
46 config GENERIC_FIND_NEXT_BIT
47         bool
48         default y
49
50 config GENERIC_BUG
51         bool
52         default y
53         depends on BUG
54
55 config GENERIC_HWEIGHT
56         bool
57         default y
58
59 config GENERIC_CALIBRATE_DELAY
60         bool
61         default y
62
63 config TIME_LOW_RES
64         bool
65         depends on SMP
66         default y
67
68 config GENERIC_HARDIRQS
69         def_bool y
70
71 config GENERIC_IRQ_PROBE
72         def_bool y
73
74 config HAVE_LATENCYTOP_SUPPORT
75         def_bool y
76
77 config IRQ_PER_CPU
78         bool
79         default y
80
81 # unless you want to implement ACPI on PA-RISC ... ;-)
82 config PM
83         bool
84
85 config STACKTRACE_SUPPORT
86         def_bool y
87
88 config NEED_DMA_MAP_STATE
89         def_bool y
90
91 config NEED_SG_DMA_LENGTH
92         def_bool y
93
94 config ISA_DMA_API
95         bool
96
97 config ARCH_MAY_HAVE_PC_FDC
98         bool
99         depends on BROKEN
100         default y
101
102 source "init/Kconfig"
103
104 source "kernel/Kconfig.freezer"
105
106
107 menu "Processor type and features"
108
109 choice
110         prompt "Processor type"
111         default PA7000
112
113 config PA7000
114         bool "PA7000/PA7100"
115         ---help---
116           This is the processor type of your CPU.  This information is
117           used for optimizing purposes.  In order to compile a kernel
118           that can run on all 32-bit PA CPUs (albeit not optimally fast),
119           you can specify "PA7000" here.
120
121           Specifying "PA8000" here will allow you to select a 64-bit kernel
122           which is required on some machines.
123
124 config PA7100LC
125         bool "PA7100LC"
126         help
127           Select this option for the PCX-L processor, as used in the
128           712, 715/64, 715/80, 715/100, 715/100XC, 725/100, 743, 748,
129           D200, D210, D300, D310 and E-class
130
131 config PA7200
132         bool "PA7200"
133         help
134           Select this option for the PCX-T' processor, as used in the
135           C100, C110, J100, J110, J210XC, D250, D260, D350, D360,
136           K100, K200, K210, K220, K400, K410 and K420
137
138 config PA7300LC
139         bool "PA7300LC"
140         help
141           Select this option for the PCX-L2 processor, as used in the
142           744, A180, B132L, B160L, B180L, C132L, C160L, C180L,
143           D220, D230, D320 and D330.
144
145 config PA8X00
146         bool "PA8000 and up"
147         help
148           Select this option for PCX-U to PCX-W2 processors.
149
150 endchoice
151
152 # Define implied options from the CPU selection here
153
154 config PA20
155         def_bool y
156         depends on PA8X00
157
158 config PA11
159         def_bool y
160         depends on PA7000 || PA7100LC || PA7200 || PA7300LC
161
162 config PREFETCH
163         def_bool y
164         depends on PA8X00 || PA7200
165
166 config 64BIT
167         bool "64-bit kernel"
168         depends on PA8X00
169         help
170           Enable this if you want to support 64bit kernel on PA-RISC platform.
171
172           At the moment, only people willing to use more than 2GB of RAM,
173           or having a 64bit-only capable PA-RISC machine should say Y here.
174
175           Since there is no 64bit userland on PA-RISC, there is no point to
176           enable this option otherwise. The 64bit kernel is significantly bigger
177           and slower than the 32bit one.
178
179 choice
180         prompt "Kernel page size"
181         default PARISC_PAGE_SIZE_4KB  if !64BIT
182         default PARISC_PAGE_SIZE_4KB  if 64BIT
183 #       default PARISC_PAGE_SIZE_16KB if 64BIT
184
185 config PARISC_PAGE_SIZE_4KB
186         bool "4KB"
187         help
188           This lets you select the page size of the kernel.  For best
189           performance, a page size of 16KB is recommended.  For best
190           compatibility with 32bit applications, a page size of 4KB should be
191           selected (the vast majority of 32bit binaries work perfectly fine
192           with a larger page size).
193
194           4KB                For best 32bit compatibility
195           16KB               For best performance
196           64KB               For best performance, might give more overhead.
197
198           If you don't know what to do, choose 4KB.
199
200 config PARISC_PAGE_SIZE_16KB
201         bool "16KB (EXPERIMENTAL)"
202         depends on PA8X00 && EXPERIMENTAL
203
204 config PARISC_PAGE_SIZE_64KB
205         bool "64KB (EXPERIMENTAL)"
206         depends on PA8X00 && EXPERIMENTAL
207
208 endchoice
209
210 config SMP
211         bool "Symmetric multi-processing support"
212         select USE_GENERIC_SMP_HELPERS
213         ---help---
214           This enables support for systems with more than one CPU. If you have
215           a system with only one CPU, like most personal computers, say N. If
216           you have a system with more than one CPU, say Y.
217
218           If you say N here, the kernel will run on single and multiprocessor
219           machines, but will use only one CPU of a multiprocessor machine. If
220           you say Y here, the kernel will run on many, but not all,
221           singleprocessor machines. On a singleprocessor machine, the kernel
222           will run faster if you say N here.
223
224           See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
225           available at <http://www.tldp.org/docs.html#howto>.
226
227           If you don't know what to do here, say N.
228
229 config HOTPLUG_CPU
230         bool
231         default y if SMP
232         select HOTPLUG
233
234 config ARCH_SELECT_MEMORY_MODEL
235         def_bool y
236         depends on 64BIT
237
238 config ARCH_DISCONTIGMEM_ENABLE
239         def_bool y
240         depends on 64BIT
241
242 config ARCH_FLATMEM_ENABLE
243         def_bool y
244
245 config ARCH_DISCONTIGMEM_DEFAULT
246         def_bool y
247         depends on ARCH_DISCONTIGMEM_ENABLE
248
249 config NODES_SHIFT
250         int
251         default "3"
252         depends on NEED_MULTIPLE_NODES
253
254 source "kernel/Kconfig.preempt"
255 source "kernel/Kconfig.hz"
256 source "mm/Kconfig"
257
258 config COMPAT
259         def_bool y
260         depends on 64BIT
261
262 config HPUX
263         bool "Support for HP-UX binaries"
264         depends on !64BIT
265
266 config NR_CPUS
267         int "Maximum number of CPUs (2-32)"
268         range 2 32
269         depends on SMP
270         default "32"
271
272 endmenu
273
274
275 source "drivers/parisc/Kconfig"
276
277
278 menu "Executable file formats"
279
280 source "fs/Kconfig.binfmt"
281
282 endmenu
283
284 source "net/Kconfig"
285
286 source "drivers/Kconfig"
287
288 source "fs/Kconfig"
289
290 source "arch/parisc/Kconfig.debug"
291
292 source "security/Kconfig"
293
294 source "crypto/Kconfig"
295
296 source "lib/Kconfig"