blob: e1a2f77d398693720d7cdd11608b1ca7c86acdec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6mainmenu "Linux/PA-RISC Kernel Configuration"
7
8config PARISC
9 def_bool y
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -050010 select HAVE_OPROFILE
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 help
12 The PA-RISC microprocessor is designed by Hewlett-Packard and used
13 in many of their workstations & servers (HP9000 700 and 800 series,
14 and later HP3000 series). The PA-RISC Linux project home page is
15 at <http://www.parisc-linux.org/>.
16
17config MMU
18 def_bool y
19
20config STACK_GROWSUP
21 def_bool y
22
Nick Piggin95c354f2008-01-30 13:31:20 +010023config GENERIC_LOCKBREAK
24 bool
25 default y
26 depends on SMP && PREEMPT
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028config RWSEM_GENERIC_SPINLOCK
29 def_bool y
30
31config RWSEM_XCHGADD_ALGORITHM
32 bool
33
David Howellsf0d1b0b2006-12-08 02:37:49 -080034config ARCH_HAS_ILOG2_U32
35 bool
36 default n
37
38config ARCH_HAS_ILOG2_U64
39 bool
40 default n
41
Akinobu Mita59e18a22006-03-26 01:39:31 -080042config GENERIC_FIND_NEXT_BIT
43 bool
44 default y
45
Helge Deller6891f8a2006-12-16 16:16:50 +010046config GENERIC_BUG
47 bool
48 default y
49 depends on BUG
50
Akinobu Mita59e18a22006-03-26 01:39:31 -080051config GENERIC_HWEIGHT
52 bool
53 default y
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055config GENERIC_CALIBRATE_DELAY
56 bool
57 default y
58
Helge Deller12df29b2007-01-02 23:54:16 +010059config GENERIC_TIME
60 bool
61 default y
62
Ingo Molnar06027bd2006-02-14 13:53:15 -080063config TIME_LOW_RES
64 bool
65 depends on SMP
66 default y
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068config GENERIC_HARDIRQS
69 def_bool y
70
71config GENERIC_IRQ_PROBE
72 def_bool y
73
Ingo Molnar0d7012a2006-06-29 02:24:43 -070074config IRQ_PER_CPU
75 bool
76 default y
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078# unless you want to implement ACPI on PA-RISC ... ;-)
79config PM
80 bool
81
Al Viro5cae8412005-05-04 05:39:22 +010082config ISA_DMA_API
83 bool
Al Viro5cae8412005-05-04 05:39:22 +010084
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010085config ARCH_MAY_HAVE_PC_FDC
86 bool
Grant Grundler8b631342005-10-21 22:52:46 -040087 depends on BROKEN
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010088 default y
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090source "init/Kconfig"
91
92
93menu "Processor type and features"
94
95choice
96 prompt "Processor type"
97 default PA7000
98
99config PA7000
100 bool "PA7000/PA7100"
101 ---help---
102 This is the processor type of your CPU. This information is
103 used for optimizing purposes. In order to compile a kernel
104 that can run on all 32-bit PA CPUs (albeit not optimally fast),
105 you can specify "PA7000" here.
106
107 Specifying "PA8000" here will allow you to select a 64-bit kernel
108 which is required on some machines.
109
110config PA7100LC
111 bool "PA7100LC"
112 help
113 Select this option for the PCX-L processor, as used in the
114 712, 715/64, 715/80, 715/100, 715/100XC, 725/100, 743, 748,
115 D200, D210, D300, D310 and E-class
116
117config PA7200
118 bool "PA7200"
119 help
120 Select this option for the PCX-T' processor, as used in the
121 C100, C110, J100, J110, J210XC, D250, D260, D350, D360,
122 K100, K200, K210, K220, K400, K410 and K420
123
124config PA7300LC
125 bool "PA7300LC"
126 help
127 Select this option for the PCX-L2 processor, as used in the
128 744, A180, B132L, B160L, B180L, C132L, C160L, C180L,
129 D220, D230, D320 and D330.
130
131config PA8X00
132 bool "PA8000 and up"
133 help
134 Select this option for PCX-U to PCX-W2 processors.
135
136endchoice
137
138# Define implied options from the CPU selection here
139
140config PA20
141 def_bool y
142 depends on PA8X00
143
144config PA11
145 def_bool y
146 depends on PA7000 || PA7100LC || PA7200 || PA7300LC
147
148config PREFETCH
149 def_bool y
Kyle McMartin32104b22006-08-13 20:37:26 -0400150 depends on PA8X00 || PA7200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152config 64BIT
153 bool "64-bit kernel"
154 depends on PA8X00
155 help
156 Enable this if you want to support 64bit kernel on PA-RISC platform.
157
158 At the moment, only people willing to use more than 2GB of RAM,
159 or having a 64bit-only capable PA-RISC machine should say Y here.
160
161 Since there is no 64bit userland on PA-RISC, there is no point to
162 enable this option otherwise. The 64bit kernel is significantly bigger
163 and slower than the 32bit one.
164
Helge Deller2fd83032006-04-20 20:40:23 +0000165choice
166 prompt "Kernel page size"
167 default PARISC_PAGE_SIZE_4KB if !64BIT
168 default PARISC_PAGE_SIZE_4KB if 64BIT
169# default PARISC_PAGE_SIZE_16KB if 64BIT
170
171config PARISC_PAGE_SIZE_4KB
172 bool "4KB"
173 help
174 This lets you select the page size of the kernel. For best
175 performance, a page size of 16KB is recommended. For best
176 compatibility with 32bit applications, a page size of 4KB should be
177 selected (the vast majority of 32bit binaries work perfectly fine
178 with a larger page size).
179
180 4KB For best 32bit compatibility
181 16KB For best performance
182 64KB For best performance, might give more overhead.
183
184 If you don't know what to do, choose 4KB.
185
186config PARISC_PAGE_SIZE_16KB
187 bool "16KB (EXPERIMENTAL)"
188 depends on PA8X00 && EXPERIMENTAL
189
190config PARISC_PAGE_SIZE_64KB
191 bool "64KB (EXPERIMENTAL)"
192 depends on PA8X00 && EXPERIMENTAL
193
194endchoice
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196config SMP
197 bool "Symmetric multi-processing support"
198 ---help---
199 This enables support for systems with more than one CPU. If you have
200 a system with only one CPU, like most personal computers, say N. If
201 you have a system with more than one CPU, say Y.
202
203 If you say N here, the kernel will run on single and multiprocessor
204 machines, but will use only one CPU of a multiprocessor machine. If
205 you say Y here, the kernel will run on many, but not all,
206 singleprocessor machines. On a singleprocessor machine, the kernel
207 will run faster if you say N here.
208
209 See also the <file:Documentation/smp.txt>,
210 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available
211 at <http://www.tldp.org/docs.html#howto>.
212
213 If you don't know what to do here, say N.
214
215config HOTPLUG_CPU
216 bool
217 default y if SMP
218 select HOTPLUG
219
Kyle McMartina2ba82c2006-01-27 23:59:36 -0700220config ARCH_SELECT_MEMORY_MODEL
221 def_bool y
222 depends on 64BIT
223
Dave Hansen3f22ab22005-06-23 00:07:43 -0700224config ARCH_DISCONTIGMEM_ENABLE
Kyle McMartina2ba82c2006-01-27 23:59:36 -0700225 def_bool y
226 depends on 64BIT
227
228config ARCH_FLATMEM_ENABLE
229 def_bool y
230
231config ARCH_DISCONTIGMEM_DEFAULT
232 def_bool y
233 depends on ARCH_DISCONTIGMEM_ENABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700235config NODES_SHIFT
236 int
237 default "3"
238 depends on NEED_MULTIPLE_NODES
239
Kyle McMartin50a34db2006-03-24 21:24:21 -0700240source "kernel/Kconfig.preempt"
Grant Grundler8b631342005-10-21 22:52:46 -0400241source "kernel/Kconfig.hz"
Dave Hansen3f22ab22005-06-23 00:07:43 -0700242source "mm/Kconfig"
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244config COMPAT
245 def_bool y
246 depends on 64BIT
247
248config HPUX
249 bool "Support for HP-UX binaries"
250 depends on !64BIT
251
252config NR_CPUS
253 int "Maximum number of CPUs (2-32)"
254 range 2 32
255 depends on SMP
256 default "32"
257
258endmenu
259
260
261source "drivers/parisc/Kconfig"
262
263
264menu "Executable file formats"
265
266source "fs/Kconfig.binfmt"
267
268endmenu
269
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700270source "net/Kconfig"
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272source "drivers/Kconfig"
273
274source "fs/Kconfig"
275
Mathieu Desnoyers09caded2007-10-18 23:41:05 -0700276source "kernel/Kconfig.instrumentation"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278source "arch/parisc/Kconfig.debug"
279
280source "security/Kconfig"
281
282source "crypto/Kconfig"
283
284source "lib/Kconfig"