blob: 496d635f89b216722df77895005ab35698ec4e8f [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/SuperH Kernel Configuration"
7
8config SUPERH
9 bool
10 default y
Paul Mundt7a440c92006-09-27 18:18:31 +090011 select EMBEDDED
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 help
13 The SuperH is a RISC processor targeted for use in embedded systems
14 and consumer electronics; it was also used in the Sega Dreamcast
15 gaming console. The SuperH port has a home page at
16 <http://www.linux-sh.org/>.
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018config RWSEM_GENERIC_SPINLOCK
19 bool
20 default y
21
22config RWSEM_XCHGADD_ALGORITHM
23 bool
24
Paul Mundtfa691512007-03-08 19:41:21 +090025config GENERIC_BUG
26 def_bool y
27 depends on BUG
28
Akinobu Mitae2268c72006-03-26 01:39:35 -080029config GENERIC_FIND_NEXT_BIT
30 bool
31 default y
32
33config GENERIC_HWEIGHT
34 bool
35 default y
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037config GENERIC_HARDIRQS
38 bool
39 default y
40
41config GENERIC_IRQ_PROBE
42 bool
43 default y
44
45config GENERIC_CALIBRATE_DELAY
46 bool
47 default y
48
Paul Mundtcad82442006-01-16 22:14:19 -080049config GENERIC_IOMAP
50 bool
51
Paul Mundt45882142006-10-04 13:21:45 +090052config GENERIC_TIME
53 def_bool n
54
Paul Mundt57be2b42007-05-09 17:33:24 +090055config GENERIC_CLOCKEVENTS
56 def_bool n
57
Paul Mundt357d5942007-06-11 15:32:07 +090058config SYS_SUPPORTS_PM
59 bool
60
Paul Mundt0a9b0db2007-01-24 21:56:20 +090061config SYS_SUPPORTS_APM_EMULATION
62 bool
Paul Mundt357d5942007-06-11 15:32:07 +090063 select SYS_SUPPORTS_PM
64
65config SYS_SUPPORTS_SMP
66 bool
67
68config SYS_SUPPORTS_NUMA
69 bool
70
71config SYS_SUPPORTS_PCI
72 bool
Paul Mundt0a9b0db2007-01-24 21:56:20 +090073
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010074config ARCH_MAY_HAVE_PC_FDC
75 bool
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010076
Paul Mundtafbfb522006-12-04 18:17:28 +090077config STACKTRACE_SUPPORT
78 bool
79 default y
80
81config LOCKDEP_SUPPORT
82 bool
83 default y
84
David Howellsf0d1b0b2006-12-08 02:37:49 -080085config ARCH_HAS_ILOG2_U32
86 bool
87 default n
88
89config ARCH_HAS_ILOG2_U64
90 bool
91 default n
92
Paul Mundte257ad02007-07-25 11:18:00 +090093config ARCH_NO_VIRT_TO_BUS
94 def_bool y
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096source "init/Kconfig"
97
98menu "System type"
99
Paul Mundtcad82442006-01-16 22:14:19 -0800100source "arch/sh/mm/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Paul Mundtcad82442006-01-16 22:14:19 -0800102menu "Processor features"
103
Paul Mundt53644082006-11-21 11:12:19 +0900104choice
105 prompt "Endianess selection"
106 default CPU_LITTLE_ENDIAN
Paul Mundtcad82442006-01-16 22:14:19 -0800107 help
108 Some SuperH machines can be configured for either little or big
Paul Mundt53644082006-11-21 11:12:19 +0900109 endian byte order. These modes require different kernels.
110
111config CPU_LITTLE_ENDIAN
112 bool "Little Endian"
113
114config CPU_BIG_ENDIAN
115 bool "Big Endian"
116
117endchoice
Paul Mundtcad82442006-01-16 22:14:19 -0800118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119config SH_FPU
120 bool "FPU support"
Paul Mundt1db4e9b2007-09-11 18:10:23 +0900121 depends on CPU_HAS_FPU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 default y
123 help
124 Selecting this option will enable support for SH processors that
125 have FPU units (ie, SH77xx).
126
127 This option must be set in order to enable the FPU.
128
Takashi YOSHII4b565682006-09-27 17:15:32 +0900129config SH_FPU_EMU
130 bool "FPU emulation support"
131 depends on !SH_FPU && EXPERIMENTAL
132 default n
133 help
134 Selecting this option will enable support for software FPU emulation.
135 Most SH-3 users will want to say Y here, whereas most SH-4 users will
136 want to say N.
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138config SH_DSP
139 bool "DSP support"
Paul Mundtac79fd52007-07-25 16:26:10 +0900140 depends on CPU_HAS_DSP
141 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 help
143 Selecting this option will enable support for SH processors that
Paul Mundte5723e02006-09-27 17:38:11 +0900144 have DSP units (ie, SH2-DSP, SH3-DSP, and SH4AL-DSP).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 This option must be set in order to enable the DSP.
147
148config SH_ADC
149 bool "ADC support"
150 depends on CPU_SH3
151 default y
152 help
153 Selecting this option will allow the Linux kernel to use SH3 on-chip
154 ADC module.
155
156 If unsure, say N.
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158config SH_STORE_QUEUES
159 bool "Support for Store Queues"
160 depends on CPU_SH4
161 help
162 Selecting this option will enable an in-kernel API for manipulating
163 the store queues integrated in the SH-4 processors.
164
Paul Mundt45ed2852007-03-08 18:12:17 +0900165config SPECULATIVE_EXECUTION
166 bool "Speculative subroutine return"
167 depends on CPU_SUBTYPE_SH7780 && EXPERIMENTAL
168 help
169 This enables support for a speculative instruction fetch for
170 subroutine return. There are various pitfalls associated with
171 this, as outlined in the SH7780 hardware manual.
172
173 If unsure, say N.
174
Paul Mundtcad82442006-01-16 22:14:19 -0800175config CPU_HAS_INTEVT
176 bool
177
Paul Mundtba463932006-09-27 18:01:16 +0900178config CPU_HAS_MASKREG_IRQ
179 bool
180
Jamie Lenehanea0f8fe2006-12-06 12:05:02 +0900181config CPU_HAS_IPR_IRQ
182 bool
183
Paul Mundtcad82442006-01-16 22:14:19 -0800184config CPU_HAS_SR_RB
Paul Mundtc81134b2007-10-31 15:22:45 +0900185 bool
Paul Mundtcad82442006-01-16 22:14:19 -0800186 help
187 This will enable the use of SR.RB register bank usage. Processors
188 that are lacking this bit must have another method in place for
189 accomplishing what is taken care of by the banked registers.
190
191 See <file:Documentation/sh/register-banks.txt> for further
192 information on SR.RB and register banking in the kernel in general.
193
Stuart Menefy9b3a53a2006-11-24 11:42:24 +0900194config CPU_HAS_PTEA
195 bool
196
Paul Mundtac79fd52007-07-25 16:26:10 +0900197config CPU_HAS_DSP
198 bool
199
Paul Mundt1db4e9b2007-09-11 18:10:23 +0900200config CPU_HAS_FPU
201 bool
202
Paul Mundtcad82442006-01-16 22:14:19 -0800203endmenu
204
Paul Mundtf3d22292007-05-14 17:29:12 +0900205menu "Board support"
206
207config SOLUTION_ENGINE
208 bool
209
210config SH_SOLUTION_ENGINE
211 bool "SolutionEngine"
212 select SOLUTION_ENGINE
Magnus Damm56386f62007-07-20 18:44:49 +0900213 select CPU_HAS_IPR_IRQ
Nobuhiro Iwamatsua8199072007-11-05 07:44:41 +0900214 depends on CPU_SUBTYPE_SH7705 || CPU_SUBTYPE_SH7709 || CPU_SUBTYPE_SH7710 || \
215 CPU_SUBTYPE_SH7712 || CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7750S || \
216 CPU_SUBTYPE_SH7750R
Paul Mundtf3d22292007-05-14 17:29:12 +0900217 help
Nobuhiro Iwamatsua8199072007-11-05 07:44:41 +0900218 Select SolutionEngine if configuring for a Hitachi SH7705, SH7709,
219 SH7710, SH7712, SH7750, SH7750S or SH7750R evaluation board.
Paul Mundtf3d22292007-05-14 17:29:12 +0900220
221config SH_7206_SOLUTION_ENGINE
222 bool "SolutionEngine7206"
223 select SOLUTION_ENGINE
224 depends on CPU_SUBTYPE_SH7206
225 help
226 Select 7206 SolutionEngine if configuring for a Hitachi SH7206
227 evaluation board.
228
229config SH_7619_SOLUTION_ENGINE
230 bool "SolutionEngine7619"
231 select SOLUTION_ENGINE
232 depends on CPU_SUBTYPE_SH7619
233 help
234 Select 7619 SolutionEngine if configuring for a Hitachi SH7619
235 evaluation board.
236
237config SH_7722_SOLUTION_ENGINE
238 bool "SolutionEngine7722"
239 select SOLUTION_ENGINE
240 depends on CPU_SUBTYPE_SH7722
241 help
242 Select 7722 SolutionEngine if configuring for a Hitachi SH772
243 evaluation board.
244
245config SH_7751_SOLUTION_ENGINE
246 bool "SolutionEngine7751"
247 select SOLUTION_ENGINE
Magnus Damm56386f62007-07-20 18:44:49 +0900248 select CPU_HAS_IPR_IRQ
Paul Mundtf3d22292007-05-14 17:29:12 +0900249 depends on CPU_SUBTYPE_SH7751
250 help
251 Select 7751 SolutionEngine if configuring for a Hitachi SH7751
252 evaluation board.
253
254config SH_7780_SOLUTION_ENGINE
255 bool "SolutionEngine7780"
256 select SOLUTION_ENGINE
Paul Mundt357d5942007-06-11 15:32:07 +0900257 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900258 depends on CPU_SUBTYPE_SH7780
259 help
260 Select 7780 SolutionEngine if configuring for a Renesas SH7780
261 evaluation board.
262
Paul Mundtf3d22292007-05-14 17:29:12 +0900263config SH_7343_SOLUTION_ENGINE
264 bool "SolutionEngine7343"
265 select SOLUTION_ENGINE
266 depends on CPU_SUBTYPE_SH7343
267 help
268 Select 7343 SolutionEngine if configuring for a Hitachi
269 SH7343 (SH-Mobile 3AS) evaluation board.
270
Paul Mundtf3d22292007-05-14 17:29:12 +0900271config SH_7751_SYSTEMH
272 bool "SystemH7751R"
273 depends on CPU_SUBTYPE_SH7751R
274 help
275 Select SystemH if you are configuring for a Renesas SystemH
276 7751R evaluation board.
277
278config SH_HP6XX
279 bool "HP6XX"
280 select SYS_SUPPORTS_APM_EMULATION
Paul Mundt357d5942007-06-11 15:32:07 +0900281 select HD6446X_SERIES
Paul Mundtf3d22292007-05-14 17:29:12 +0900282 depends on CPU_SUBTYPE_SH7709
283 help
284 Select HP6XX if configuring for a HP jornada HP6xx.
285 More information (hardware only) at
286 <http://www.hp.com/jornada/>.
287
Paul Mundtf3d22292007-05-14 17:29:12 +0900288config SH_DREAMCAST
289 bool "Dreamcast"
Paul Mundt357d5942007-06-11 15:32:07 +0900290 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900291 depends on CPU_SUBTYPE_SH7091
292 help
293 Select Dreamcast if configuring for a SEGA Dreamcast.
Adrian McMenaminad07b102007-10-15 10:38:31 +0900294 More information at <http://www.linux-sh.org>
Paul Mundtf3d22292007-05-14 17:29:12 +0900295
296config SH_MPC1211
297 bool "Interface MPC1211"
298 depends on CPU_SUBTYPE_SH7751 && BROKEN
299 help
300 CTP/PCI-SH02 is a CPU module computer that is produced
301 by Interface Corporation.
302 More information at <http://www.interface.co.jp>
303
304config SH_SH03
305 bool "Interface CTP/PCI-SH03"
Magnus Dammd59645d2007-08-03 14:23:35 +0900306 depends on CPU_SUBTYPE_SH7751
Magnus Damm56386f62007-07-20 18:44:49 +0900307 select CPU_HAS_IPR_IRQ
Paul Mundt357d5942007-06-11 15:32:07 +0900308 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900309 help
310 CTP/PCI-SH03 is a CPU module computer that is produced
311 by Interface Corporation.
312 More information at <http://www.interface.co.jp>
313
314config SH_SECUREEDGE5410
315 bool "SecureEdge5410"
316 depends on CPU_SUBTYPE_SH7751R
Magnus Damm56386f62007-07-20 18:44:49 +0900317 select CPU_HAS_IPR_IRQ
Paul Mundt357d5942007-06-11 15:32:07 +0900318 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900319 help
320 Select SecureEdge5410 if configuring for a SnapGear SH board.
321 This includes both the OEM SecureEdge products as well as the
322 SME product line.
323
324config SH_HS7751RVOIP
325 bool "HS7751RVOIP"
326 depends on CPU_SUBTYPE_SH7751R
327 help
328 Select HS7751RVOIP if configuring for a Renesas Technology
329 Sales VoIP board.
330
331config SH_7710VOIPGW
332 bool "SH7710-VOIP-GW"
333 depends on CPU_SUBTYPE_SH7710
334 help
335 Select this option to build a kernel for the SH7710 based
336 VOIP GW.
337
338config SH_RTS7751R2D
339 bool "RTS7751R2D"
340 depends on CPU_SUBTYPE_SH7751R
Paul Mundt357d5942007-06-11 15:32:07 +0900341 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900342 help
343 Select RTS7751R2D if configuring for a Renesas Technology
344 Sales SH-Graphics board.
345
346config SH_HIGHLANDER
347 bool "Highlander"
348 depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785
Paul Mundt357d5942007-06-11 15:32:07 +0900349 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900350
351config SH_EDOSK7705
352 bool "EDOSK7705"
353 depends on CPU_SUBTYPE_SH7705
354
355config SH_SH4202_MICRODEV
356 bool "SH4-202 MicroDev"
357 depends on CPU_SUBTYPE_SH4_202
358 help
359 Select SH4-202 MicroDev if configuring for a SuperH MicroDev board
360 with an SH4-202 CPU.
361
362config SH_LANDISK
363 bool "LANDISK"
364 depends on CPU_SUBTYPE_SH7751R
Paul Mundt357d5942007-06-11 15:32:07 +0900365 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900366 help
367 I-O DATA DEVICE, INC. "LANDISK Series" support.
368
369config SH_TITAN
370 bool "TITAN"
371 depends on CPU_SUBTYPE_SH7751R
Magnus Damm56386f62007-07-20 18:44:49 +0900372 select CPU_HAS_IPR_IRQ
Paul Mundt357d5942007-06-11 15:32:07 +0900373 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900374 help
375 Select Titan if you are configuring for a Nimble Microsystems
376 NetEngine NP51R.
377
378config SH_SHMIN
379 bool "SHMIN"
380 depends on CPU_SUBTYPE_SH7706
Magnus Damm56386f62007-07-20 18:44:49 +0900381 select CPU_HAS_IPR_IRQ
Paul Mundtf3d22292007-05-14 17:29:12 +0900382 help
383 Select SHMIN if configuring for the SHMIN board.
384
385config SH_LBOX_RE2
386 bool "L-BOX RE2"
387 depends on CPU_SUBTYPE_SH7751R
Paul Mundt357d5942007-06-11 15:32:07 +0900388 select SYS_SUPPORTS_PCI
Paul Mundtf3d22292007-05-14 17:29:12 +0900389 help
390 Select L-BOX RE2 if configuring for the NTT COMWARE L-BOX RE2.
391
Paul Mundt94807a32007-08-08 15:22:04 +0900392config SH_X3PROTO
393 bool "SH-X3 Prototype board"
394 depends on CPU_SUBTYPE_SHX3
395
Markus Brunnerded54312007-09-12 11:54:58 +0900396config SH_MAGIC_PANEL_R2
397 bool "Magic Panel R2"
398 depends on CPU_SUBTYPE_SH7720
399 help
400 Select Magic Panel R2 if configuring for Magic Panel R2.
401
Paul Mundtf3d22292007-05-14 17:29:12 +0900402endmenu
403
404source "arch/sh/boards/renesas/hs7751rvoip/Kconfig"
405source "arch/sh/boards/renesas/rts7751r2d/Kconfig"
406source "arch/sh/boards/renesas/r7780rp/Kconfig"
Markus Brunnerded54312007-09-12 11:54:58 +0900407source "arch/sh/boards/magicpanelr2/Kconfig"
Paul Mundtf3d22292007-05-14 17:29:12 +0900408
Paul Mundt32351a22007-03-12 14:38:59 +0900409menu "Timer and clock configuration"
410
Paul Mundtcad82442006-01-16 22:14:19 -0800411config SH_TMU
412 bool "TMU timer support"
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900413 depends on CPU_SH3 || CPU_SH4
Paul Mundt57be2b42007-05-09 17:33:24 +0900414 select GENERIC_TIME
415 select GENERIC_CLOCKEVENTS
Paul Mundtcad82442006-01-16 22:14:19 -0800416 default y
417 help
418 This enables the use of the TMU as the system timer.
419
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900420config SH_CMT
421 bool "CMT timer support"
422 depends on CPU_SH2
423 default y
424 help
425 This enables the use of the CMT as the system timer.
426
427config SH_MTU2
428 bool "MTU2 timer support"
429 depends on CPU_SH2A
430 default n
431 help
432 This enables the use of the MTU2 as the system timer.
433
Paul Mundt417528a2006-11-20 11:18:30 +0900434config SH_TIMER_IRQ
435 int
Paul Mundt32351a22007-03-12 14:38:59 +0900436 default "28" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785
Paul Mundt417528a2006-11-20 11:18:30 +0900437 default "86" if CPU_SUBTYPE_SH7619
438 default "140" if CPU_SUBTYPE_SH7206
439 default "16"
440
Paul Mundtcad82442006-01-16 22:14:19 -0800441config SH_PCLK_FREQ
442 int "Peripheral clock frequency (in Hz)"
Magnus Damm870e8a22007-07-25 10:49:21 +0900443 default "27000000" if CPU_SUBTYPE_SH7343
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900444 default "31250000" if CPU_SUBTYPE_SH7619
Paul Mundt05627482007-05-15 16:25:47 +0900445 default "32000000" if CPU_SUBTYPE_SH7722
Magnus Dammd89ddd12007-07-25 11:42:56 +0900446 default "33333333" if CPU_SUBTYPE_SH7770 || \
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900447 CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \
448 CPU_SUBTYPE_SH7206
Paul Mundt05627482007-05-15 16:25:47 +0900449 default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
Paul Mundtcad82442006-01-16 22:14:19 -0800450 default "66000000" if CPU_SUBTYPE_SH4_202
Paul Mundt05627482007-05-15 16:25:47 +0900451 default "50000000"
Paul Mundtcad82442006-01-16 22:14:19 -0800452 help
453 This option is used to specify the peripheral clock frequency.
454 This is necessary for determining the reference clock value on
455 platforms lacking an RTC.
456
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900457config SH_CLK_MD
458 int "CPU Mode Pin Setting"
459 depends on CPU_SUBTYPE_SH7619 || CPU_SUBTYPE_SH7206
Paul Mundt357d5942007-06-11 15:32:07 +0900460 default 6 if CPU_SUBTYPE_SH7206
461 default 5 if CPU_SUBTYPE_SH7619
462 default 0
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900463 help
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900464 MD2 - MD0 pin setting.
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900465
Paul Mundt57be2b42007-05-09 17:33:24 +0900466source "kernel/time/Kconfig"
467
Paul Mundt32351a22007-03-12 14:38:59 +0900468endmenu
469
Paul Mundtcad82442006-01-16 22:14:19 -0800470menu "CPU Frequency scaling"
471
472source "drivers/cpufreq/Kconfig"
473
474config SH_CPU_FREQ
475 tristate "SuperH CPU Frequency driver"
Paul Mundtcb5ec752007-07-20 13:38:19 +0900476 depends on CPU_FREQ
Paul Mundtcad82442006-01-16 22:14:19 -0800477 select CPU_FREQ_TABLE
478 help
479 This adds the cpufreq driver for SuperH. At present, only
480 the SH-4 is supported.
481
482 For details, take a look at <file:Documentation/cpu-freq>.
483
484 If unsure, say N.
485
486endmenu
487
Paul Mundt9f5e8ee2006-11-24 11:22:57 +0900488source "arch/sh/drivers/Kconfig"
489
Paul Mundtcad82442006-01-16 22:14:19 -0800490endmenu
491
492config ISA_DMA_API
493 bool
Adrian Bunk05efc672006-02-17 13:52:42 -0800494 depends on SH_MPC1211
Paul Mundtcad82442006-01-16 22:14:19 -0800495 default y
496
497menu "Kernel features"
498
Paul Mundt91b91d02006-09-27 18:08:33 +0900499source kernel/Kconfig.hz
500
Paul Mundtcad82442006-01-16 22:14:19 -0800501config KEXEC
502 bool "kexec system call (EXPERIMENTAL)"
503 depends on EXPERIMENTAL
504 help
505 kexec is a system call that implements the ability to shutdown your
506 current kernel, and to start another kernel. It is like a reboot
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400507 but it is independent of the system firmware. And like a reboot
Paul Mundtcad82442006-01-16 22:14:19 -0800508 you can start any kernel with it, not just Linux.
509
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400510 The name comes from the similarity to the exec system call.
Paul Mundtcad82442006-01-16 22:14:19 -0800511
512 It is an ongoing process to be certain the hardware in a machine
513 is properly shutdown, so do not be surprised if this code does not
514 initially work for you. It may help to enable device hotplugging
515 support. As of this writing the exact hardware interface is
516 strongly in flux, so no good recommendation can be made.
517
Paul Mundt4d5ade52007-04-27 11:25:57 +0900518config CRASH_DUMP
519 bool "kernel crash dumps (EXPERIMENTAL)"
520 depends on EXPERIMENTAL
521 help
522 Generate crash dump after being started by kexec.
523 This should be normally only set in special crash dump kernels
524 which are loaded in the main kernel with kexec-tools into
525 a specially reserved region and then later executed after
526 a crash by kdump/kexec. The crash dump kernel must be compiled
527 to a memory address not used by the main kernel using
528 MEMORY_START.
529
530 For more details see Documentation/kdump/kdump.txt
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532config SMP
533 bool "Symmetric multi-processing support"
Paul Mundt357d5942007-06-11 15:32:07 +0900534 depends on SYS_SUPPORTS_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ---help---
536 This enables support for systems with more than one CPU. If you have
537 a system with only one CPU, like most personal computers, say N. If
538 you have a system with more than one CPU, say Y.
539
540 If you say N here, the kernel will run on single and multiprocessor
541 machines, but will use only one CPU of a multiprocessor machine. If
542 you say Y here, the kernel will run on many, but not all,
543 singleprocessor machines. On a singleprocessor machine, the kernel
544 will run faster if you say N here.
545
546 People using multiprocessor machines who say Y here should also say
547 Y to "Enhanced Real Time Clock Support", below.
548
549 See also the <file:Documentation/smp.txt>,
550 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available
551 at <http://www.tldp.org/docs.html#howto>.
552
553 If you don't know what to do here, say N.
554
555config NR_CPUS
556 int "Maximum number of CPUs (2-32)"
557 range 2 32
558 depends on SMP
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900559 default "4" if CPU_SHX3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 default "2"
561 help
562 This allows you to specify the maximum number of CPUs which this
563 kernel will support. The maximum supported value is 32 and the
564 minimum value which makes sense is 2.
565
566 This is purely to save memory - each supported CPU adds
567 approximately eight kilobytes to the kernel image.
568
Paul Mundt91b91d02006-09-27 18:08:33 +0900569source "kernel/Kconfig.preempt"
570
Paul Mundt83662462007-09-28 16:04:49 +0900571config GUSA
572 def_bool y
573 depends on !SMP
574 help
575 This enables support for gUSA (general UserSpace Atomicity).
576 This is the default implementation for both UP and non-ll/sc
577 CPUs, and is used by the libc, amongst others.
578
579 For additional information, design information can be found
580 in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
581
582 This should only be disabled for special cases where alternate
583 atomicity implementations exist.
584
Paul Mundtcad82442006-01-16 22:14:19 -0800585endmenu
586
587menu "Boot options"
588
589config ZERO_PAGE_OFFSET
590 hex "Zero page offset"
591 default "0x00004000" if SH_MPC1211 || SH_SH03
Paul Mundt7a847f82006-12-26 15:29:19 +0900592 default "0x00010000" if PAGE_SIZE_64KB
593 default "0x00002000" if PAGE_SIZE_8KB
Paul Mundtcad82442006-01-16 22:14:19 -0800594 default "0x00001000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 help
Paul Mundtcad82442006-01-16 22:14:19 -0800596 This sets the default offset of zero page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Paul Mundtcad82442006-01-16 22:14:19 -0800598config BOOT_LINK_OFFSET
599 hex "Link address offset for booting"
600 default "0x00800000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 help
Paul Mundtcad82442006-01-16 22:14:19 -0800602 This option allows you to set the link address offset of the zImage.
603 This can be useful if you are on a board which has a small amount of
604 memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Paul Mundtcad82442006-01-16 22:14:19 -0800606config UBC_WAKEUP
607 bool "Wakeup UBC on startup"
Paul Mundt0e3a9aa2007-11-06 15:55:36 +0900608 depends on CPU_SH4 && !CPU_SH4A
Paul Mundtcad82442006-01-16 22:14:19 -0800609 help
610 Selecting this option will wakeup the User Break Controller (UBC) on
611 startup. Although the UBC is left in an awake state when the processor
612 comes up, some boot loaders misbehave by putting the UBC to sleep in a
613 power saving state, which causes issues with things like ptrace().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 If unsure, say N.
616
Paul Mundtcad82442006-01-16 22:14:19 -0800617config CMDLINE_BOOL
618 bool "Default bootloader kernel arguments"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Paul Mundtcad82442006-01-16 22:14:19 -0800620config CMDLINE
621 string "Initial kernel command string"
622 depends on CMDLINE_BOOL
623 default "console=ttySC1,115200"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625endmenu
626
Paul Mundtcad82442006-01-16 22:14:19 -0800627menu "Bus options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629# Even on SuperH devices which don't have an ISA bus,
630# this variable helps the PCMCIA modules handle
631# IRQ requesting properly -- Greg Banks.
632#
633# Though we're generally not interested in it when
634# we're not using PCMCIA, so we make it dependent on
635# PCMCIA outright. -- PFM.
636config ISA
Paul Mundt357d5942007-06-11 15:32:07 +0900637 def_bool y
638 depends on PCMCIA && HD6446X_SERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 help
640 Find out whether you have ISA slots on your motherboard. ISA is the
641 name of a bus system, i.e. the way the CPU talks to the other stuff
642 inside your box. Other bus systems are PCI, EISA, MicroChannel
643 (MCA) or VESA. ISA is an older system, now being displaced by PCI;
644 newer boards don't support it. If you have ISA, say Y, otherwise N.
645
646config EISA
647 bool
648 ---help---
649 The Extended Industry Standard Architecture (EISA) bus was
650 developed as an open alternative to the IBM MicroChannel bus.
651
652 The EISA bus provided some of the features of the IBM MicroChannel
653 bus while maintaining backward compatibility with cards made for
654 the older ISA bus. The EISA bus saw limited use between 1988 and
655 1995 when it was made obsolete by the PCI bus.
656
657 Say Y here if you are building a kernel for an EISA-based machine.
658
659 Otherwise, say N.
660
661config MCA
662 bool
663 help
664 MicroChannel Architecture is found in some IBM PS/2 machines and
665 laptops. It is a bus system similar to PCI or ISA. See
666 <file:Documentation/mca.txt> (and especially the web page given
667 there) before attempting to build an MCA bus kernel.
668
669config SBUS
670 bool
671
Paul Mundtcad82442006-01-16 22:14:19 -0800672config SUPERHYWAY
673 tristate "SuperHyway Bus support"
674 depends on CPU_SUBTYPE_SH4_202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Adrian McMenamin17be2d22007-09-21 15:55:55 +0900676config MAPLE
677 bool "Maple Bus support"
678 depends on SH_DREAMCAST
679 help
680 The Maple Bus is SEGA's serial communication bus for peripherals
681 on the Dreamcast. Without this bus support you won't be able to
682 get your Dreamcast keyboard etc to work, so most users
683 probably want to say 'Y' here, unless you are only using the
684 Dreamcast with a serial line terminal or a remote network
685 connection.
686
Paul Mundt824e55f2007-06-20 18:01:52 +0900687config CF_ENABLER
688 bool "Compact Flash Enabler support"
689 depends on SOLUTION_ENGINE || SH_SH03
690 ---help---
691 Compact Flash is a small, removable mass storage device introduced
692 in 1994 originally as a PCMCIA device. If you say `Y' here, you
693 compile in support for Compact Flash devices directly connected to
694 a SuperH processor. A Compact Flash FAQ is available at
695 <http://www.compactflash.org/faqs/faq.htm>.
696
697 If your board has "Directly Connected" CompactFlash at area 5 or 6,
698 you may want to enable this option. Then, you can use CF as
699 primary IDE drive (only tested for SanDisk).
700
701 If in doubt, select 'N'.
702
703choice
704 prompt "Compact Flash Connection Area"
705 depends on CF_ENABLER
706 default CF_AREA6
707
708config CF_AREA5
709 bool "Area5"
710 help
711 If your board has "Directly Connected" CompactFlash, You should
712 select the area where your CF is connected to.
713
714 - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
715 - "Area6" if it is connected to Area 6 (0x18000000)
716
717 "Area6" will work for most boards.
718
719config CF_AREA6
720 bool "Area6"
721
722endchoice
723
724config CF_BASE_ADDR
725 hex
726 depends on CF_ENABLER
727 default "0xb8000000" if CF_AREA6
728 default "0xb4000000" if CF_AREA5
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730source "arch/sh/drivers/pci/Kconfig"
731
732source "drivers/pci/Kconfig"
733
734source "drivers/pcmcia/Kconfig"
735
736source "drivers/pci/hotplug/Kconfig"
737
738endmenu
739
740menu "Executable file formats"
741
742source "fs/Kconfig.binfmt"
743
744endmenu
745
Andriy Skulysh3aa770e2006-09-27 16:20:22 +0900746menu "Power management options (EXPERIMENTAL)"
Paul Mundt357d5942007-06-11 15:32:07 +0900747depends on EXPERIMENTAL && SYS_SUPPORTS_PM
Andriy Skulysh3aa770e2006-09-27 16:20:22 +0900748
749source kernel/power/Kconfig
750
Andriy Skulysh3aa770e2006-09-27 16:20:22 +0900751endmenu
752
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700753source "net/Kconfig"
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755source "drivers/Kconfig"
756
757source "fs/Kconfig"
758
Mathieu Desnoyers09caded2007-10-18 23:41:05 -0700759source "kernel/Kconfig.instrumentation"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761source "arch/sh/Kconfig.debug"
762
763source "security/Kconfig"
764
765source "crypto/Kconfig"
766
767source "lib/Kconfig"