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