blob: d1d724447826bd3f587482497b0409a4430b9e45 [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
11 help
12 The SuperH is a RISC processor targeted for use in embedded systems
13 and consumer electronics; it was also used in the Sega Dreamcast
14 gaming console. The SuperH port has a home page at
15 <http://www.linux-sh.org/>.
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017config RWSEM_GENERIC_SPINLOCK
18 bool
19 default y
20
21config RWSEM_XCHGADD_ALGORITHM
22 bool
23
Akinobu Mitae2268c72006-03-26 01:39:35 -080024config GENERIC_FIND_NEXT_BIT
25 bool
26 default y
27
28config GENERIC_HWEIGHT
29 bool
30 default y
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032config GENERIC_HARDIRQS
33 bool
34 default y
35
36config GENERIC_IRQ_PROBE
37 bool
38 default y
39
40config GENERIC_CALIBRATE_DELAY
41 bool
42 default y
43
Paul Mundtcad82442006-01-16 22:14:19 -080044config GENERIC_IOMAP
45 bool
46
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010047config ARCH_MAY_HAVE_PC_FDC
48 bool
viro@ZenIV.linux.org.uka08b6b72005-09-06 01:48:42 +010049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050source "init/Kconfig"
51
52menu "System type"
53
54choice
55 prompt "SuperH system type"
56 default SH_UNKNOWN
57
58config SH_SOLUTION_ENGINE
59 bool "SolutionEngine"
60 help
61 Select SolutionEngine if configuring for a Hitachi SH7709
62 or SH7750 evaluation board.
63
64config SH_7751_SOLUTION_ENGINE
65 bool "SolutionEngine7751"
Paul Mundtcad82442006-01-16 22:14:19 -080066 select CPU_SUBTYPE_SH7751
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 help
68 Select 7751 SolutionEngine if configuring for a Hitachi SH7751
69 evaluation board.
70
71config SH_7300_SOLUTION_ENGINE
72 bool "SolutionEngine7300"
Paul Mundtcad82442006-01-16 22:14:19 -080073 select CPU_SUBTYPE_SH7300
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 help
75 Select 7300 SolutionEngine if configuring for a Hitachi SH7300(SH-Mobile V)
76 evaluation board.
77
78config SH_73180_SOLUTION_ENGINE
79 bool "SolutionEngine73180"
Paul Mundtcad82442006-01-16 22:14:19 -080080 select CPU_SUBTYPE_SH73180
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 help
82 Select 73180 SolutionEngine if configuring for a Hitachi SH73180(SH-Mobile 3)
83 evaluation board.
84
85config SH_7751_SYSTEMH
86 bool "SystemH7751R"
Paul Mundtcad82442006-01-16 22:14:19 -080087 select CPU_SUBTYPE_SH7751R
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 help
89 Select SystemH if you are configuring for a Renesas SystemH
90 7751R evaluation board.
91
92config SH_STB1_HARP
93 bool "STB1_Harp"
94
95config SH_STB1_OVERDRIVE
96 bool "STB1_Overdrive"
97
Paul Mundtcad82442006-01-16 22:14:19 -080098config SH_HP6XX
99 bool "HP6XX"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 help
Paul Mundtcad82442006-01-16 22:14:19 -0800101 Select HP6XX if configuring for a HP jornada HP6xx.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 More information (hardware only) at
103 <http://www.hp.com/jornada/>.
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105config SH_CQREEK
106 bool "CqREEK"
107 help
108 Select CqREEK if configuring for a CqREEK SH7708 or SH7750.
109 More information at
110 <http://sources.redhat.com/ecos/hardware.html#SuperH>.
111
112config SH_DMIDA
113 bool "DMIDA"
114 help
115 Select DMIDA if configuring for a DataMyte 4000 Industrial
116 Digital Assistant. More information at <http://www.dmida.com/>.
117
118config SH_EC3104
119 bool "EC3104"
120 help
121 Select EC3104 if configuring for a system with an Eclipse
122 International EC3104 chip, e.g. the Harris AD2000.
123
124config SH_SATURN
125 bool "Saturn"
Paul Mundtcad82442006-01-16 22:14:19 -0800126 select CPU_SUBTYPE_SH7604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 help
128 Select Saturn if configuring for a SEGA Saturn.
129
130config SH_DREAMCAST
131 bool "Dreamcast"
Paul Mundtcad82442006-01-16 22:14:19 -0800132 select CPU_SUBTYPE_SH7091
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 help
134 Select Dreamcast if configuring for a SEGA Dreamcast.
135 More information at
136 <http://www.m17n.org/linux-sh/dreamcast/>. There is a
137 Dreamcast project is at <http://linuxdc.sourceforge.net/>.
138
139config SH_CAT68701
140 bool "CAT68701"
141
142config SH_BIGSUR
143 bool "BigSur"
144
145config SH_SH2000
146 bool "SH2000"
Paul Mundtcad82442006-01-16 22:14:19 -0800147 select CPU_SUBTYPE_SH7709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 help
149 SH-2000 is a single-board computer based around SH7709A chip
150 intended for embedded applications.
151 It has an Ethernet interface (CS8900A), direct connected
152 Compact Flash socket, three serial ports and PC-104 bus.
153 More information at <http://sh2000.sh-linux.org>.
154
155config SH_ADX
156 bool "ADX"
157
158config SH_MPC1211
Paul Mundtcad82442006-01-16 22:14:19 -0800159 bool "Interface MPC1211"
160 help
161 CTP/PCI-SH02 is a CPU module computer that is produced
162 by Interface Corporation.
163 More information at <http://www.interface.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165config SH_SH03
Paul Mundtcad82442006-01-16 22:14:19 -0800166 bool "Interface CTP/PCI-SH03"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 help
Paul Mundtcad82442006-01-16 22:14:19 -0800168 CTP/PCI-SH03 is a CPU module computer that is produced
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 by Interface Corporation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 More information at <http://www.interface.co.jp>
171
172config SH_SECUREEDGE5410
173 bool "SecureEdge5410"
Paul Mundtcad82442006-01-16 22:14:19 -0800174 select CPU_SUBTYPE_SH7751R
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 help
176 Select SecureEdge5410 if configuring for a SnapGear SH board.
177 This includes both the OEM SecureEdge products as well as the
178 SME product line.
179
180config SH_HS7751RVOIP
181 bool "HS7751RVOIP"
Paul Mundtcad82442006-01-16 22:14:19 -0800182 select CPU_SUBTYPE_SH7751R
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 help
184 Select HS7751RVOIP if configuring for a Renesas Technology
185 Sales VoIP board.
186
187config SH_RTS7751R2D
188 bool "RTS7751R2D"
Paul Mundtcad82442006-01-16 22:14:19 -0800189 select CPU_SUBTYPE_SH7751R
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 help
191 Select RTS7751R2D if configuring for a Renesas Technology
192 Sales SH-Graphics board.
193
Paul Mundtcad82442006-01-16 22:14:19 -0800194config SH_R7780RP
195 bool "R7780RP-1"
196 select CPU_SUBTYPE_SH7780
197 help
198 Select R7780RP-1 if configuring for a Renesas Solutions
199 HIGHLANDER board.
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201config SH_EDOSK7705
202 bool "EDOSK7705"
Paul Mundtcad82442006-01-16 22:14:19 -0800203 select CPU_SUBTYPE_SH7705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205config SH_SH4202_MICRODEV
206 bool "SH4-202 MicroDev"
Paul Mundtcad82442006-01-16 22:14:19 -0800207 select CPU_SUBTYPE_SH4_202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 help
209 Select SH4-202 MicroDev if configuring for a SuperH MicroDev board
210 with an SH4-202 CPU.
211
Paul Mundtcad82442006-01-16 22:14:19 -0800212config SH_LANDISK
213 bool "LANDISK"
214 select CPU_SUBTYPE_SH7751R
215 help
216 I-O DATA DEVICE, INC. "LANDISK Series" support.
217
218config SH_TITAN
219 bool "TITAN"
220 select CPU_SUBTYPE_SH7751R
221 help
222 Select Titan if you are configuring for a Nimble Microsystems
223 NetEngine NP51R.
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225config SH_UNKNOWN
226 bool "BareCPU"
227 help
228 "Bare CPU" aka "unknown" means an SH-based system which is not one
229 of the specific ones mentioned above, which means you need to enter
230 all sorts of stuff like CONFIG_MEMORY_START because the config
231 system doesn't already know what it is. You get a machine vector
232 without any platform-specific code in it, so things like the RTC may
233 not work.
234
235 This option is for the early stages of porting to a new machine.
236
237endchoice
238
Paul Mundtcad82442006-01-16 22:14:19 -0800239source "arch/sh/mm/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241config MEMORY_START
Paul Mundtcad82442006-01-16 22:14:19 -0800242 hex "Physical memory start address"
243 default "0x08000000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 ---help---
245 Computers built with Hitachi SuperH processors always
246 map the ROM starting at address zero. But the processor
247 does not specify the range that RAM takes.
248
249 The physical memory (RAM) start address will be automatically
Paul Mundtcad82442006-01-16 22:14:19 -0800250 set to 08000000. Other platforms, such as the Solution Engine
251 boards typically map RAM at 0C000000.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Paul Mundtcad82442006-01-16 22:14:19 -0800253 Tweak this only when porting to a new machine which does not
254 already have a defconfig. Changing it from the known correct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 value on any of the known systems will only lead to disaster.
256
257config MEMORY_SIZE
Paul Mundtcad82442006-01-16 22:14:19 -0800258 hex "Physical memory size"
259 default "0x00400000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 help
261 This sets the default memory size assumed by your SH kernel. It can
262 be overridden as normal by the 'mem=' argument on the kernel command
263 line. If unsure, consult your board specifications or just leave it
264 as 0x00400000 which was the default value before this became
265 configurable.
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267config CF_ENABLER
268 bool "Compact Flash Enabler support"
269 depends on SH_ADX || SH_SOLUTION_ENGINE || SH_UNKNOWN || SH_CAT68701 || SH_SH03
270 ---help---
271 Compact Flash is a small, removable mass storage device introduced
272 in 1994 originally as a PCMCIA device. If you say `Y' here, you
273 compile in support for Compact Flash devices directly connected to
274 a SuperH processor. A Compact Flash FAQ is available at
275 <http://www.compactflash.org/faqs/faq.htm>.
276
277 If your board has "Directly Connected" CompactFlash at area 5 or 6,
278 you may want to enable this option. Then, you can use CF as
279 primary IDE drive (only tested for SanDisk).
280
281 If in doubt, select 'N'.
282
283choice
284 prompt "Compact Flash Connection Area"
285 depends on CF_ENABLER
286 default CF_AREA6
287
288config CF_AREA5
289 bool "Area5"
290 help
291 If your board has "Directly Connected" CompactFlash, You should
292 select the area where your CF is connected to.
293
294 - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
295 - "Area6" if it is connected to Area 6 (0x18000000)
296
297 "Area6" will work for most boards. For ADX, select "Area5".
298
299config CF_AREA6
300 bool "Area6"
301
302endchoice
303
304config CF_BASE_ADDR
305 hex
306 depends on CF_ENABLER
307 default "0xb8000000" if CF_AREA6
308 default "0xb4000000" if CF_AREA5
309
Paul Mundtcad82442006-01-16 22:14:19 -0800310menu "Processor features"
311
312config CPU_LITTLE_ENDIAN
313 bool "Little Endian"
314 help
315 Some SuperH machines can be configured for either little or big
316 endian byte order. These modes require different kernels. Say Y if
317 your machine is little endian, N if it's a big endian machine.
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319# The SH7750 RTC module is disabled in the Dreamcast
320config SH_RTC
321 bool
Paul Mundtcad82442006-01-16 22:14:19 -0800322 depends on !SH_DREAMCAST && !SH_SATURN && !SH_7300_SOLUTION_ENGINE && \
323 !SH_73180_SOLUTION_ENGINE && !SH_LANDISK && \
324 !SH_R7780RP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 default y
326 help
327 Selecting this option will allow the Linux kernel to emulate
328 PC's RTC.
329
330 If unsure, say N.
331
332config SH_FPU
333 bool "FPU support"
334 depends on !CPU_SH3
335 default y
336 help
337 Selecting this option will enable support for SH processors that
338 have FPU units (ie, SH77xx).
339
340 This option must be set in order to enable the FPU.
341
342config SH_DSP
343 bool "DSP support"
344 depends on !CPU_SH4
345 default y
346 help
347 Selecting this option will enable support for SH processors that
348 have DSP units (ie, SH2-DSP and SH3-DSP). It is safe to say Y here
349 by default, as the existance of the DSP will be probed at runtime.
350
351 This option must be set in order to enable the DSP.
352
353config SH_ADC
354 bool "ADC support"
355 depends on CPU_SH3
356 default y
357 help
358 Selecting this option will allow the Linux kernel to use SH3 on-chip
359 ADC module.
360
361 If unsure, say N.
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363config SH_STORE_QUEUES
364 bool "Support for Store Queues"
365 depends on CPU_SH4
366 help
367 Selecting this option will enable an in-kernel API for manipulating
368 the store queues integrated in the SH-4 processors.
369
Paul Mundtcad82442006-01-16 22:14:19 -0800370config CPU_HAS_INTEVT
371 bool
372
373config CPU_HAS_PINT_IRQ
374 bool
375
376config CPU_HAS_INTC2_IRQ
377 bool
378
379config CPU_HAS_SR_RB
380 bool "CPU has SR.RB"
381 depends on CPU_SH3 || CPU_SH4
382 default y
383 help
384 This will enable the use of SR.RB register bank usage. Processors
385 that are lacking this bit must have another method in place for
386 accomplishing what is taken care of by the banked registers.
387
388 See <file:Documentation/sh/register-banks.txt> for further
389 information on SR.RB and register banking in the kernel in general.
390
391endmenu
392
393menu "Timer support"
394
395config SH_TMU
396 bool "TMU timer support"
397 default y
398 help
399 This enables the use of the TMU as the system timer.
400
401endmenu
402
Paul Mundte8fb67f2006-09-27 13:56:28 +0900403source "arch/sh/boards/renesas/hs7751rvoip/Kconfig"
Paul Mundtcad82442006-01-16 22:14:19 -0800404
Paul Mundt36efc352006-09-27 14:02:09 +0900405source "arch/sh/boards/renesas/rts7751r2d/Kconfig"
Paul Mundtcad82442006-01-16 22:14:19 -0800406
Paul Mundt5283ecb2006-09-27 15:59:17 +0900407source "arch/sh/boards/renesas/r7780rp/Kconfig"
408
Paul Mundtcad82442006-01-16 22:14:19 -0800409config SH_PCLK_FREQ
410 int "Peripheral clock frequency (in Hz)"
Paul Mundtcad82442006-01-16 22:14:19 -0800411 default "50000000" if CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7780
412 default "60000000" if CPU_SUBTYPE_SH7751
413 default "33333333" if CPU_SUBTYPE_SH7300 || CPU_SUBTYPE_SH7770 || CPU_SUBTYPE_SH7760
414 default "27000000" if CPU_SUBTYPE_SH73180
415 default "66000000" if CPU_SUBTYPE_SH4_202
416 help
417 This option is used to specify the peripheral clock frequency.
418 This is necessary for determining the reference clock value on
419 platforms lacking an RTC.
420
421menu "CPU Frequency scaling"
422
423source "drivers/cpufreq/Kconfig"
424
425config SH_CPU_FREQ
426 tristate "SuperH CPU Frequency driver"
427 depends on CPU_FREQ
428 select CPU_FREQ_TABLE
429 help
430 This adds the cpufreq driver for SuperH. At present, only
431 the SH-4 is supported.
432
433 For details, take a look at <file:Documentation/cpu-freq>.
434
435 If unsure, say N.
436
437endmenu
438
439source "arch/sh/drivers/dma/Kconfig"
440
441source "arch/sh/cchips/Kconfig"
442
443config HEARTBEAT
444 bool "Heartbeat LED"
445 depends on SH_MPC1211 || SH_SH03 || SH_CAT68701 || \
446 SH_STB1_HARP || SH_STB1_OVERDRIVE || SH_BIGSUR || \
447 SH_7751_SOLUTION_ENGINE || SH_7300_SOLUTION_ENGINE || \
448 SH_73180_SOLUTION_ENGINE || SH_SOLUTION_ENGINE || \
449 SH_RTS7751R2D || SH_SH4202_MICRODEV || SH_LANDISK
450 help
451 Use the power-on LED on your machine as a load meter. The exact
452 behavior is platform-dependent, but normally the flash frequency is
453 a hyperbolic function of the 5-minute load average.
454
455endmenu
456
457config ISA_DMA_API
458 bool
Adrian Bunk05efc672006-02-17 13:52:42 -0800459 depends on SH_MPC1211
Paul Mundtcad82442006-01-16 22:14:19 -0800460 default y
461
462menu "Kernel features"
463
464config KEXEC
465 bool "kexec system call (EXPERIMENTAL)"
466 depends on EXPERIMENTAL
467 help
468 kexec is a system call that implements the ability to shutdown your
469 current kernel, and to start another kernel. It is like a reboot
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400470 but it is independent of the system firmware. And like a reboot
Paul Mundtcad82442006-01-16 22:14:19 -0800471 you can start any kernel with it, not just Linux.
472
Matt LaPlante1f1332f2006-06-29 01:32:47 -0400473 The name comes from the similarity to the exec system call.
Paul Mundtcad82442006-01-16 22:14:19 -0800474
475 It is an ongoing process to be certain the hardware in a machine
476 is properly shutdown, so do not be surprised if this code does not
477 initially work for you. It may help to enable device hotplugging
478 support. As of this writing the exact hardware interface is
479 strongly in flux, so no good recommendation can be made.
480
481config PREEMPT
482 bool "Preemptible Kernel (EXPERIMENTAL)"
483 depends on EXPERIMENTAL
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485config SMP
486 bool "Symmetric multi-processing support"
487 ---help---
488 This enables support for systems with more than one CPU. If you have
489 a system with only one CPU, like most personal computers, say N. If
490 you have a system with more than one CPU, say Y.
491
492 If you say N here, the kernel will run on single and multiprocessor
493 machines, but will use only one CPU of a multiprocessor machine. If
494 you say Y here, the kernel will run on many, but not all,
495 singleprocessor machines. On a singleprocessor machine, the kernel
496 will run faster if you say N here.
497
498 People using multiprocessor machines who say Y here should also say
499 Y to "Enhanced Real Time Clock Support", below.
500
501 See also the <file:Documentation/smp.txt>,
502 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available
503 at <http://www.tldp.org/docs.html#howto>.
504
505 If you don't know what to do here, say N.
506
507config NR_CPUS
508 int "Maximum number of CPUs (2-32)"
509 range 2 32
510 depends on SMP
511 default "2"
512 help
513 This allows you to specify the maximum number of CPUs which this
514 kernel will support. The maximum supported value is 32 and the
515 minimum value which makes sense is 2.
516
517 This is purely to save memory - each supported CPU adds
518 approximately eight kilobytes to the kernel image.
519
Paul Mundtcad82442006-01-16 22:14:19 -0800520config CPU_HAS_SR_RB
521 bool "CPU has SR.RB"
522 depends on CPU_SH3 || CPU_SH4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 default y
524 help
Paul Mundtcad82442006-01-16 22:14:19 -0800525 This will enable the use of SR.RB register bank usage. Processors
526 that are lacking this bit must have another method in place for
527 accomplishing what is taken care of by the banked registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Paul Mundtcad82442006-01-16 22:14:19 -0800529 See <file:Documentation/sh/register-banks.txt> for further
530 information on SR.RB and register banking in the kernel in general.
531
Yasunori Gotoc80d79d2006-04-10 22:53:53 -0700532config NODES_SHIFT
533 int
534 default "1"
535 depends on NEED_MULTIPLE_NODES
536
Paul Mundtcad82442006-01-16 22:14:19 -0800537endmenu
538
539menu "Boot options"
540
541config ZERO_PAGE_OFFSET
542 hex "Zero page offset"
543 default "0x00004000" if SH_MPC1211 || SH_SH03
544 default "0x00001000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 help
Paul Mundtcad82442006-01-16 22:14:19 -0800546 This sets the default offset of zero page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Paul Mundtcad82442006-01-16 22:14:19 -0800548config BOOT_LINK_OFFSET
549 hex "Link address offset for booting"
550 default "0x00800000"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 help
Paul Mundtcad82442006-01-16 22:14:19 -0800552 This option allows you to set the link address offset of the zImage.
553 This can be useful if you are on a board which has a small amount of
554 memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Paul Mundtcad82442006-01-16 22:14:19 -0800556config UBC_WAKEUP
557 bool "Wakeup UBC on startup"
558 help
559 Selecting this option will wakeup the User Break Controller (UBC) on
560 startup. Although the UBC is left in an awake state when the processor
561 comes up, some boot loaders misbehave by putting the UBC to sleep in a
562 power saving state, which causes issues with things like ptrace().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 If unsure, say N.
565
Paul Mundtcad82442006-01-16 22:14:19 -0800566config CMDLINE_BOOL
567 bool "Default bootloader kernel arguments"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Paul Mundtcad82442006-01-16 22:14:19 -0800569config CMDLINE
570 string "Initial kernel command string"
571 depends on CMDLINE_BOOL
572 default "console=ttySC1,115200"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574endmenu
575
Paul Mundtcad82442006-01-16 22:14:19 -0800576menu "Bus options"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578# Even on SuperH devices which don't have an ISA bus,
579# this variable helps the PCMCIA modules handle
580# IRQ requesting properly -- Greg Banks.
581#
582# Though we're generally not interested in it when
583# we're not using PCMCIA, so we make it dependent on
584# PCMCIA outright. -- PFM.
585config ISA
586 bool
Paul Mundtcad82442006-01-16 22:14:19 -0800587 default y if PCMCIA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 help
589 Find out whether you have ISA slots on your motherboard. ISA is the
590 name of a bus system, i.e. the way the CPU talks to the other stuff
591 inside your box. Other bus systems are PCI, EISA, MicroChannel
592 (MCA) or VESA. ISA is an older system, now being displaced by PCI;
593 newer boards don't support it. If you have ISA, say Y, otherwise N.
594
595config EISA
596 bool
597 ---help---
598 The Extended Industry Standard Architecture (EISA) bus was
599 developed as an open alternative to the IBM MicroChannel bus.
600
601 The EISA bus provided some of the features of the IBM MicroChannel
602 bus while maintaining backward compatibility with cards made for
603 the older ISA bus. The EISA bus saw limited use between 1988 and
604 1995 when it was made obsolete by the PCI bus.
605
606 Say Y here if you are building a kernel for an EISA-based machine.
607
608 Otherwise, say N.
609
610config MCA
611 bool
612 help
613 MicroChannel Architecture is found in some IBM PS/2 machines and
614 laptops. It is a bus system similar to PCI or ISA. See
615 <file:Documentation/mca.txt> (and especially the web page given
616 there) before attempting to build an MCA bus kernel.
617
618config SBUS
619 bool
620
Paul Mundtcad82442006-01-16 22:14:19 -0800621config SUPERHYWAY
622 tristate "SuperHyway Bus support"
623 depends on CPU_SUBTYPE_SH4_202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625source "arch/sh/drivers/pci/Kconfig"
626
627source "drivers/pci/Kconfig"
628
629source "drivers/pcmcia/Kconfig"
630
631source "drivers/pci/hotplug/Kconfig"
632
633endmenu
634
635menu "Executable file formats"
636
637source "fs/Kconfig.binfmt"
638
639endmenu
640
Andriy Skulysh3aa770e2006-09-27 16:20:22 +0900641menu "Power management options (EXPERIMENTAL)"
642depends on EXPERIMENTAL
643
644source kernel/power/Kconfig
645
646config APM
647 bool "Advanced Power Management Emulation"
648 depends on PM
649endmenu
650
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700651source "net/Kconfig"
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653source "drivers/Kconfig"
654
655source "fs/Kconfig"
656
657source "arch/sh/oprofile/Kconfig"
658
659source "arch/sh/Kconfig.debug"
660
661source "security/Kconfig"
662
663source "crypto/Kconfig"
664
665source "lib/Kconfig"