blob: aacf11d33723edc80aa3638ba5256e83d0c74bf2 [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
Sam Ravnborgec7748b2008-02-09 10:46:40 +010010 select HAVE_IDE
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -050011 select HAVE_OPROFILE
Kyle McMartin9eb16862008-09-10 14:24:07 +000012 select RTC_CLASS
13 select RTC_DRV_PARISC
Rusty Russell98a79d62008-12-13 21:19:41 +103014 select INIT_ALL_POSSIBLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 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
21config MMU
22 def_bool y
23
24config STACK_GROWSUP
25 def_bool y
26
Nick Piggin95c354f2008-01-30 13:31:20 +010027config GENERIC_LOCKBREAK
28 bool
29 default y
30 depends on SMP && PREEMPT
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032config RWSEM_GENERIC_SPINLOCK
33 def_bool y
34
35config RWSEM_XCHGADD_ALGORITHM
36 bool
37
David Howellsf0d1b0b2006-12-08 02:37:49 -080038config ARCH_HAS_ILOG2_U32
39 bool
40 default n
41
42config ARCH_HAS_ILOG2_U64
43 bool
44 default n
45
Akinobu Mita59e18a22006-03-26 01:39:31 -080046config GENERIC_FIND_NEXT_BIT
47 bool
48 default y
49
Helge Deller6891f8a2006-12-16 16:16:50 +010050config GENERIC_BUG
51 bool
52 default y
53 depends on BUG
54
Akinobu Mita59e18a22006-03-26 01:39:31 -080055config GENERIC_HWEIGHT
56 bool
57 default y
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059config GENERIC_CALIBRATE_DELAY
60 bool
61 default y
62
Helge Deller12df29b2007-01-02 23:54:16 +010063config GENERIC_TIME
64 bool
65 default y
66
Ingo Molnar06027bd2006-02-14 13:53:15 -080067config TIME_LOW_RES
68 bool
69 depends on SMP
70 default y
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072config GENERIC_HARDIRQS
73 def_bool y
74
75config GENERIC_IRQ_PROBE
76 def_bool y
77
Ingo Molnar0d7012a2006-06-29 02:24:43 -070078config IRQ_PER_CPU
79 bool
80 default y
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082# unless you want to implement ACPI on PA-RISC ... ;-)
83config PM
84 bool
85
Al Viro5cae8412005-05-04 05:39:22 +010086config ISA_DMA_API
87 bool
Al Viro5cae8412005-05-04 05:39:22 +010088
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010089config ARCH_MAY_HAVE_PC_FDC
90 bool
Grant Grundler8b631342005-10-21 22:52:46 -040091 depends on BROKEN
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010092 default y
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094source "init/Kconfig"
95
Matt Helsleydc52ddc2008-10-18 20:27:21 -070096source "kernel/Kconfig.freezer"
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99menu "Processor type and features"
100
101choice
102 prompt "Processor type"
103 default PA7000
104
105config PA7000
106 bool "PA7000/PA7100"
107 ---help---
108 This is the processor type of your CPU. This information is
109 used for optimizing purposes. In order to compile a kernel
110 that can run on all 32-bit PA CPUs (albeit not optimally fast),
111 you can specify "PA7000" here.
112
113 Specifying "PA8000" here will allow you to select a 64-bit kernel
114 which is required on some machines.
115
116config PA7100LC
117 bool "PA7100LC"
118 help
119 Select this option for the PCX-L processor, as used in the
120 712, 715/64, 715/80, 715/100, 715/100XC, 725/100, 743, 748,
121 D200, D210, D300, D310 and E-class
122
123config PA7200
124 bool "PA7200"
125 help
126 Select this option for the PCX-T' processor, as used in the
127 C100, C110, J100, J110, J210XC, D250, D260, D350, D360,
128 K100, K200, K210, K220, K400, K410 and K420
129
130config PA7300LC
131 bool "PA7300LC"
132 help
133 Select this option for the PCX-L2 processor, as used in the
134 744, A180, B132L, B160L, B180L, C132L, C160L, C180L,
135 D220, D230, D320 and D330.
136
137config PA8X00
138 bool "PA8000 and up"
139 help
140 Select this option for PCX-U to PCX-W2 processors.
141
142endchoice
143
144# Define implied options from the CPU selection here
145
146config PA20
147 def_bool y
148 depends on PA8X00
149
150config PA11
151 def_bool y
152 depends on PA7000 || PA7100LC || PA7200 || PA7300LC
153
154config PREFETCH
155 def_bool y
Kyle McMartin32104b22006-08-13 20:37:26 -0400156 depends on PA8X00 || PA7200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158config 64BIT
159 bool "64-bit kernel"
160 depends on PA8X00
161 help
162 Enable this if you want to support 64bit kernel on PA-RISC platform.
163
164 At the moment, only people willing to use more than 2GB of RAM,
165 or having a 64bit-only capable PA-RISC machine should say Y here.
166
167 Since there is no 64bit userland on PA-RISC, there is no point to
168 enable this option otherwise. The 64bit kernel is significantly bigger
169 and slower than the 32bit one.
170
Helge Deller2fd83032006-04-20 20:40:23 +0000171choice
172 prompt "Kernel page size"
173 default PARISC_PAGE_SIZE_4KB if !64BIT
174 default PARISC_PAGE_SIZE_4KB if 64BIT
175# default PARISC_PAGE_SIZE_16KB if 64BIT
176
177config PARISC_PAGE_SIZE_4KB
178 bool "4KB"
179 help
180 This lets you select the page size of the kernel. For best
181 performance, a page size of 16KB is recommended. For best
182 compatibility with 32bit applications, a page size of 4KB should be
183 selected (the vast majority of 32bit binaries work perfectly fine
184 with a larger page size).
185
186 4KB For best 32bit compatibility
187 16KB For best performance
188 64KB For best performance, might give more overhead.
189
190 If you don't know what to do, choose 4KB.
191
192config PARISC_PAGE_SIZE_16KB
193 bool "16KB (EXPERIMENTAL)"
194 depends on PA8X00 && EXPERIMENTAL
195
196config PARISC_PAGE_SIZE_64KB
197 bool "64KB (EXPERIMENTAL)"
198 depends on PA8X00 && EXPERIMENTAL
199
200endchoice
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202config SMP
203 bool "Symmetric multi-processing support"
Jens Axboedbcf4782008-06-10 20:50:56 +0200204 select USE_GENERIC_SMP_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 ---help---
206 This enables support for systems with more than one CPU. If you have
207 a system with only one CPU, like most personal computers, say N. If
208 you have a system with more than one CPU, say Y.
209
210 If you say N here, the kernel will run on single and multiprocessor
211 machines, but will use only one CPU of a multiprocessor machine. If
212 you say Y here, the kernel will run on many, but not all,
213 singleprocessor machines. On a singleprocessor machine, the kernel
214 will run faster if you say N here.
215
Adrian Bunk03502fa2008-02-03 15:50:21 +0200216 See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
217 available at <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 If you don't know what to do here, say N.
220
221config HOTPLUG_CPU
222 bool
223 default y if SMP
224 select HOTPLUG
225
Kyle McMartina2ba82c2006-01-27 23:59:36 -0700226config ARCH_SELECT_MEMORY_MODEL
227 def_bool y
228 depends on 64BIT
229
Dave Hansen3f22ab22005-06-23 00:07:43 -0700230config ARCH_DISCONTIGMEM_ENABLE
Kyle McMartina2ba82c2006-01-27 23:59:36 -0700231 def_bool y
232 depends on 64BIT
233
234config ARCH_FLATMEM_ENABLE
235 def_bool y
236
237config ARCH_DISCONTIGMEM_DEFAULT
238 def_bool y
239 depends on ARCH_DISCONTIGMEM_ENABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700241config NODES_SHIFT
242 int
243 default "3"
244 depends on NEED_MULTIPLE_NODES
245
Kyle McMartin50a34db2006-03-24 21:24:21 -0700246source "kernel/Kconfig.preempt"
Grant Grundler8b631342005-10-21 22:52:46 -0400247source "kernel/Kconfig.hz"
Dave Hansen3f22ab22005-06-23 00:07:43 -0700248source "mm/Kconfig"
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250config COMPAT
251 def_bool y
252 depends on 64BIT
253
254config HPUX
255 bool "Support for HP-UX binaries"
256 depends on !64BIT
257
258config NR_CPUS
259 int "Maximum number of CPUs (2-32)"
260 range 2 32
261 depends on SMP
262 default "32"
263
264endmenu
265
266
267source "drivers/parisc/Kconfig"
268
269
270menu "Executable file formats"
271
272source "fs/Kconfig.binfmt"
273
274endmenu
275
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700276source "net/Kconfig"
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278source "drivers/Kconfig"
279
280source "fs/Kconfig"
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282source "arch/parisc/Kconfig.debug"
283
284source "security/Kconfig"
285
286source "crypto/Kconfig"
287
288source "lib/Kconfig"