Merge branches 'sh/pci-express-integration', 'sh/rsk-updates', 'sh/platform-updates...
[linux-2.6] / arch / sh / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
4 #
5
6 mainmenu "Linux/SuperH Kernel Configuration"
7
8 config SUPERH
9         def_bool y
10         select EMBEDDED
11         select HAVE_CLK
12         select HAVE_IDE
13         select HAVE_OPROFILE
14         select HAVE_GENERIC_DMA_COHERENT
15         select HAVE_IOREMAP_PROT if MMU
16         select HAVE_ARCH_TRACEHOOK
17         select HAVE_DMA_API_DEBUG
18         select HAVE_PERF_COUNTER
19         select RTC_LIB
20         select GENERIC_ATOMIC64
21         help
22           The SuperH is a RISC processor targeted for use in embedded systems
23           and consumer electronics; it was also used in the Sega Dreamcast
24           gaming console.  The SuperH port has a home page at
25           <http://www.linux-sh.org/>.
26
27 config SUPERH32
28         def_bool ARCH = "sh"
29         select HAVE_KPROBES
30         select HAVE_KRETPROBES
31         select HAVE_FUNCTION_TRACER
32         select HAVE_FTRACE_MCOUNT_RECORD
33         select HAVE_DYNAMIC_FTRACE
34         select HAVE_ARCH_KGDB
35         select ARCH_HIBERNATION_POSSIBLE if MMU
36
37 config SUPERH64
38         def_bool ARCH = "sh64"
39
40 config ARCH_DEFCONFIG
41         string
42         default "arch/sh/configs/shx3_defconfig" if SUPERH32
43         default "arch/sh/configs/cayman_defconfig" if SUPERH64
44
45 config RWSEM_GENERIC_SPINLOCK
46         def_bool y
47
48 config RWSEM_XCHGADD_ALGORITHM
49         bool
50
51 config GENERIC_BUG
52         def_bool y
53         depends on BUG && SUPERH32
54
55 config GENERIC_CSUM
56         def_bool y
57         depends on SUPERH64
58
59 config GENERIC_FIND_NEXT_BIT
60         def_bool y
61
62 config GENERIC_HWEIGHT
63         def_bool y
64
65 config GENERIC_HARDIRQS
66         def_bool y
67
68 config GENERIC_HARDIRQS_NO__DO_IRQ
69         def_bool y
70
71 config GENERIC_IRQ_PROBE
72         def_bool y
73
74 config GENERIC_GPIO
75         def_bool n
76
77 config GENERIC_CALIBRATE_DELAY
78         bool
79
80 config GENERIC_IOMAP
81         bool
82
83 config GENERIC_TIME
84         def_bool y
85
86 config GENERIC_CLOCKEVENTS
87         def_bool y
88
89 config GENERIC_CLOCKEVENTS_BROADCAST
90         bool
91
92 config GENERIC_CMOS_UPDATE
93         def_bool y
94         depends on SH_SH03 || SH_DREAMCAST
95
96 config GENERIC_LOCKBREAK
97         def_bool y
98         depends on SMP && PREEMPT
99
100 config SYS_SUPPORTS_PM
101         bool
102         depends on !SMP
103
104 config ARCH_SUSPEND_POSSIBLE
105         def_bool n
106
107 config ARCH_HIBERNATION_POSSIBLE
108         def_bool n
109
110 config SYS_SUPPORTS_APM_EMULATION
111         bool
112         select ARCH_SUSPEND_POSSIBLE
113
114 config SYS_SUPPORTS_SMP
115         bool
116
117 config SYS_SUPPORTS_NUMA
118         bool
119
120 config SYS_SUPPORTS_PCI
121         bool
122
123 config SYS_SUPPORTS_CMT
124         bool
125
126 config SYS_SUPPORTS_MTU2
127         bool
128
129 config SYS_SUPPORTS_TMU
130         bool
131
132 config STACKTRACE_SUPPORT
133         def_bool y
134
135 config LOCKDEP_SUPPORT
136         def_bool y
137
138 config HAVE_LATENCYTOP_SUPPORT
139         def_bool y
140         depends on !SMP
141
142 config ARCH_HAS_ILOG2_U32
143         def_bool n
144
145 config ARCH_HAS_ILOG2_U64
146         def_bool n
147
148 config ARCH_NO_VIRT_TO_BUS
149         def_bool y
150
151 config ARCH_HAS_DEFAULT_IDLE
152         def_bool y
153
154 config IO_TRAPPED
155         bool
156
157 source "init/Kconfig"
158
159 source "kernel/Kconfig.freezer"
160
161 menu "System type"
162
163 #
164 # Processor families
165 #
166 config CPU_SH2
167         bool
168
169 config CPU_SH2A
170         bool
171         select CPU_SH2
172
173 config CPU_SH3
174         bool
175         select CPU_HAS_INTEVT
176         select CPU_HAS_SR_RB
177         select SYS_SUPPORTS_TMU
178
179 config CPU_SH4
180         bool
181         select CPU_HAS_INTEVT
182         select CPU_HAS_SR_RB
183         select CPU_HAS_FPU if !CPU_SH4AL_DSP
184         select SYS_SUPPORTS_TMU
185
186 config CPU_SH4A
187         bool
188         select CPU_SH4
189
190 config CPU_SH4AL_DSP
191         bool
192         select CPU_SH4A
193         select CPU_HAS_DSP
194
195 config CPU_SH5
196         bool
197         select CPU_HAS_FPU
198         select SYS_SUPPORTS_TMU
199
200 config CPU_SHX2
201         bool
202
203 config CPU_SHX3
204         bool
205
206 config ARCH_SHMOBILE
207         bool
208         select ARCH_SUSPEND_POSSIBLE
209
210 if SUPERH32
211
212 choice
213         prompt "Processor sub-type selection"
214
215 #
216 # Processor subtypes
217 #
218
219 # SH-2 Processor Support
220
221 config CPU_SUBTYPE_SH7619
222         bool "Support SH7619 processor"
223         select CPU_SH2
224         select SYS_SUPPORTS_CMT
225
226 # SH-2A Processor Support
227
228 config CPU_SUBTYPE_SH7201
229         bool "Support SH7201 processor"
230         select CPU_SH2A
231         select CPU_HAS_FPU
232         select SYS_SUPPORTS_MTU2
233  
234 config CPU_SUBTYPE_SH7203
235         bool "Support SH7203 processor"
236         select CPU_SH2A
237         select CPU_HAS_FPU
238         select SYS_SUPPORTS_CMT
239         select SYS_SUPPORTS_MTU2
240
241 config CPU_SUBTYPE_SH7206
242         bool "Support SH7206 processor"
243         select CPU_SH2A
244         select SYS_SUPPORTS_CMT
245         select SYS_SUPPORTS_MTU2
246
247 config CPU_SUBTYPE_SH7263
248         bool "Support SH7263 processor"
249         select CPU_SH2A
250         select CPU_HAS_FPU
251         select SYS_SUPPORTS_CMT
252         select SYS_SUPPORTS_MTU2
253
254 config CPU_SUBTYPE_MXG
255         bool "Support MX-G processor"
256         select CPU_SH2A
257         select SYS_SUPPORTS_MTU2
258         help
259           Select MX-G if running on an R8A03022BG part.
260
261 # SH-3 Processor Support
262
263 config CPU_SUBTYPE_SH7705
264         bool "Support SH7705 processor"
265         select CPU_SH3
266
267 config CPU_SUBTYPE_SH7706
268         bool "Support SH7706 processor"
269         select CPU_SH3
270         help
271           Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU.
272
273 config CPU_SUBTYPE_SH7707
274         bool "Support SH7707 processor"
275         select CPU_SH3
276         help
277           Select SH7707 if you have a  60 Mhz SH-3 HD6417707 CPU.
278
279 config CPU_SUBTYPE_SH7708
280         bool "Support SH7708 processor"
281         select CPU_SH3
282         help
283           Select SH7708 if you have a  60 Mhz SH-3 HD6417708S or
284           if you have a 100 Mhz SH-3 HD6417708R CPU.
285
286 config CPU_SUBTYPE_SH7709
287         bool "Support SH7709 processor"
288         select CPU_SH3
289         help
290           Select SH7709 if you have a  80 Mhz SH-3 HD6417709 CPU.
291
292 config CPU_SUBTYPE_SH7710
293         bool "Support SH7710 processor"
294         select CPU_SH3
295         select CPU_HAS_DSP
296         help
297           Select SH7710 if you have a SH3-DSP SH7710 CPU.
298
299 config CPU_SUBTYPE_SH7712
300         bool "Support SH7712 processor"
301         select CPU_SH3
302         select CPU_HAS_DSP
303         help
304           Select SH7712 if you have a SH3-DSP SH7712 CPU.
305
306 config CPU_SUBTYPE_SH7720
307         bool "Support SH7720 processor"
308         select CPU_SH3
309         select CPU_HAS_DSP
310         select SYS_SUPPORTS_CMT
311         help
312           Select SH7720 if you have a SH3-DSP SH7720 CPU.
313
314 config CPU_SUBTYPE_SH7721
315         bool "Support SH7721 processor"
316         select CPU_SH3
317         select CPU_HAS_DSP
318         select SYS_SUPPORTS_CMT
319         help
320           Select SH7721 if you have a SH3-DSP SH7721 CPU.
321
322 # SH-4 Processor Support
323
324 config CPU_SUBTYPE_SH7750
325         bool "Support SH7750 processor"
326         select CPU_SH4
327         help
328           Select SH7750 if you have a 200 Mhz SH-4 HD6417750 CPU.
329
330 config CPU_SUBTYPE_SH7091
331         bool "Support SH7091 processor"
332         select CPU_SH4
333         help
334           Select SH7091 if you have an SH-4 based Sega device (such as
335           the Dreamcast, Naomi, and Naomi 2).
336
337 config CPU_SUBTYPE_SH7750R
338         bool "Support SH7750R processor"
339         select CPU_SH4
340
341 config CPU_SUBTYPE_SH7750S
342         bool "Support SH7750S processor"
343         select CPU_SH4
344
345 config CPU_SUBTYPE_SH7751
346         bool "Support SH7751 processor"
347         select CPU_SH4
348         help
349           Select SH7751 if you have a 166 Mhz SH-4 HD6417751 CPU,
350           or if you have a HD6417751R CPU.
351
352 config CPU_SUBTYPE_SH7751R
353         bool "Support SH7751R processor"
354         select CPU_SH4
355
356 config CPU_SUBTYPE_SH7760
357         bool "Support SH7760 processor"
358         select CPU_SH4
359
360 config CPU_SUBTYPE_SH4_202
361         bool "Support SH4-202 processor"
362         select CPU_SH4
363
364 # SH-4A Processor Support
365
366 config CPU_SUBTYPE_SH7723
367         bool "Support SH7723 processor"
368         select CPU_SH4A
369         select CPU_SHX2
370         select ARCH_SHMOBILE
371         select ARCH_SPARSEMEM_ENABLE
372         select SYS_SUPPORTS_CMT
373         help
374           Select SH7723 if you have an SH-MobileR2 CPU.
375
376 config CPU_SUBTYPE_SH7724
377         bool "Support SH7724 processor"
378         select CPU_SH4A
379         select CPU_SHX2
380         select ARCH_SHMOBILE
381         select ARCH_SPARSEMEM_ENABLE
382         select SYS_SUPPORTS_CMT
383         help
384           Select SH7724 if you have an SH-MobileR2R CPU.
385
386 config CPU_SUBTYPE_SH7763
387         bool "Support SH7763 processor"
388         select CPU_SH4A
389         help
390           Select SH7763 if you have a SH4A SH7763(R5S77631) CPU.
391
392 config CPU_SUBTYPE_SH7770
393         bool "Support SH7770 processor"
394         select CPU_SH4A
395
396 config CPU_SUBTYPE_SH7780
397         bool "Support SH7780 processor"
398         select CPU_SH4A
399
400 config CPU_SUBTYPE_SH7785
401         bool "Support SH7785 processor"
402         select CPU_SH4A
403         select CPU_SHX2
404         select ARCH_SPARSEMEM_ENABLE
405         select SYS_SUPPORTS_NUMA
406
407 config CPU_SUBTYPE_SH7786
408         bool "Support SH7786 processor"
409         select CPU_SH4A
410         select CPU_SHX3
411         select CPU_HAS_PTEAEX
412         select ARCH_SPARSEMEM_ENABLE
413         select SYS_SUPPORTS_NUMA
414
415 config CPU_SUBTYPE_SHX3
416         bool "Support SH-X3 processor"
417         select CPU_SH4A
418         select CPU_SHX3
419         select ARCH_SPARSEMEM_ENABLE
420         select SYS_SUPPORTS_NUMA
421         select SYS_SUPPORTS_SMP
422         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
423
424 # SH4AL-DSP Processor Support
425
426 config CPU_SUBTYPE_SH7343
427         bool "Support SH7343 processor"
428         select CPU_SH4AL_DSP
429         select ARCH_SHMOBILE
430         select SYS_SUPPORTS_CMT
431
432 config CPU_SUBTYPE_SH7722
433         bool "Support SH7722 processor"
434         select CPU_SH4AL_DSP
435         select CPU_SHX2
436         select ARCH_SHMOBILE
437         select ARCH_SPARSEMEM_ENABLE
438         select SYS_SUPPORTS_NUMA
439         select SYS_SUPPORTS_CMT
440
441 config CPU_SUBTYPE_SH7366
442         bool "Support SH7366 processor"
443         select CPU_SH4AL_DSP
444         select CPU_SHX2
445         select ARCH_SHMOBILE
446         select ARCH_SPARSEMEM_ENABLE
447         select SYS_SUPPORTS_NUMA
448         select SYS_SUPPORTS_CMT
449
450 endchoice
451
452 endif
453
454 if SUPERH64
455
456 choice
457         prompt "Processor sub-type selection"
458
459 # SH-5 Processor Support
460
461 config CPU_SUBTYPE_SH5_101
462         bool "Support SH5-101 processor"
463         select CPU_SH5
464
465 config CPU_SUBTYPE_SH5_103
466         bool "Support SH5-103 processor"
467         select CPU_SH5
468
469 endchoice
470
471 endif
472
473 source "arch/sh/mm/Kconfig"
474  
475 source "arch/sh/Kconfig.cpu"
476
477 source "arch/sh/boards/Kconfig"
478
479 menu "Timer and clock configuration"
480
481 config SH_TIMER_TMU
482         bool "TMU timer driver"
483         depends on SYS_SUPPORTS_TMU
484         default y
485         help
486           This enables the build of the TMU timer driver.
487
488 config SH_TIMER_CMT
489         bool "CMT timer driver"
490         depends on SYS_SUPPORTS_CMT
491         default y
492         help
493           This enables build of the CMT timer driver.
494
495 config SH_TIMER_MTU2
496         bool "MTU2 timer driver"
497         depends on SYS_SUPPORTS_MTU2
498         default y
499         help
500           This enables build of the MTU2 timer driver.
501
502 config SH_PCLK_FREQ
503         int "Peripheral clock frequency (in Hz)"
504         default "27000000" if CPU_SUBTYPE_SH7343
505         default "31250000" if CPU_SUBTYPE_SH7619
506         default "32000000" if CPU_SUBTYPE_SH7722
507         default "33333333" if CPU_SUBTYPE_SH7770 || CPU_SUBTYPE_SH7723 || \
508                               CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \
509                               CPU_SUBTYPE_SH7203 || CPU_SUBTYPE_SH7206 || \
510                               CPU_SUBTYPE_SH7263 || CPU_SUBTYPE_MXG    || \
511                               CPU_SUBTYPE_SH7786 || CPU_SUBTYPE_SH7724
512         default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
513         default "66000000" if CPU_SUBTYPE_SH4_202
514         default "50000000"
515         help
516           This option is used to specify the peripheral clock frequency.
517           This is necessary for determining the reference clock value on
518           platforms lacking an RTC.
519
520 config SH_CLK_CPG
521         def_bool y
522
523 config SH_CLK_CPG_LEGACY
524         depends on SH_CLK_CPG
525         def_bool y if !CPU_SUBTYPE_SH7785 && !ARCH_SHMOBILE
526
527 config SH_CLK_MD
528         int "CPU Mode Pin Setting"
529         depends on CPU_SH2
530         default 6 if CPU_SUBTYPE_SH7206
531         default 5 if CPU_SUBTYPE_SH7619
532         default 0
533         help
534           MD2 - MD0 pin setting.
535
536 source "kernel/time/Kconfig"
537
538 endmenu
539
540 menu "CPU Frequency scaling"
541
542 source "drivers/cpufreq/Kconfig"
543
544 config SH_CPU_FREQ
545         tristate "SuperH CPU Frequency driver"
546         depends on CPU_FREQ
547         select CPU_FREQ_TABLE
548         help
549           This adds the cpufreq driver for SuperH. Any CPU that supports
550           clock rate rounding through the clock framework can use this
551           driver. While it will make the kernel slightly larger, this is
552           harmless for CPUs that don't support rate rounding. The driver
553           will also generate a notice in the boot log before disabling
554           itself if the CPU in question is not capable of rate rounding.
555
556           For details, take a look at <file:Documentation/cpu-freq>.
557
558           If unsure, say N.
559
560 endmenu
561
562 source "arch/sh/drivers/Kconfig"
563
564 endmenu
565
566 menu "Kernel features"
567
568 source kernel/Kconfig.hz
569
570 config KEXEC
571         bool "kexec system call (EXPERIMENTAL)"
572         depends on SUPERH32 && EXPERIMENTAL && MMU
573         help
574           kexec is a system call that implements the ability to shutdown your
575           current kernel, and to start another kernel.  It is like a reboot
576           but it is independent of the system firmware.  And like a reboot
577           you can start any kernel with it, not just Linux.
578
579           The name comes from the similarity to the exec system call.
580
581           It is an ongoing process to be certain the hardware in a machine
582           is properly shutdown, so do not be surprised if this code does not
583           initially work for you.  It may help to enable device hotplugging
584           support.  As of this writing the exact hardware interface is
585           strongly in flux, so no good recommendation can be made.
586
587 config CRASH_DUMP
588         bool "kernel crash dumps (EXPERIMENTAL)"
589         depends on SUPERH32 && EXPERIMENTAL
590         help
591           Generate crash dump after being started by kexec.
592           This should be normally only set in special crash dump kernels
593           which are loaded in the main kernel with kexec-tools into
594           a specially reserved region and then later executed after
595           a crash by kdump/kexec. The crash dump kernel must be compiled
596           to a memory address not used by the main kernel using
597           MEMORY_START.
598
599           For more details see Documentation/kdump/kdump.txt
600
601 config KEXEC_JUMP
602         bool "kexec jump (EXPERIMENTAL)"
603         depends on SUPERH32 && KEXEC && HIBERNATION && EXPERIMENTAL
604         help
605           Jump between original kernel and kexeced kernel and invoke
606           code via KEXEC
607
608 config SECCOMP
609         bool "Enable seccomp to safely compute untrusted bytecode"
610         depends on PROC_FS
611         help
612           This kernel feature is useful for number crunching applications
613           that may need to compute untrusted bytecode during their
614           execution. By using pipes or other transports made available to
615           the process as file descriptors supporting the read/write
616           syscalls, it's possible to isolate those applications in
617           their own address space using seccomp. Once seccomp is
618           enabled via prctl, it cannot be disabled and the task is only
619           allowed to execute a few safe syscalls defined by each seccomp
620           mode.
621
622           If unsure, say N.
623
624 config SMP
625         bool "Symmetric multi-processing support"
626         depends on SYS_SUPPORTS_SMP
627         select USE_GENERIC_SMP_HELPERS
628         ---help---
629           This enables support for systems with more than one CPU. If you have
630           a system with only one CPU, like most personal computers, say N. If
631           you have a system with more than one CPU, say Y.
632
633           If you say N here, the kernel will run on single and multiprocessor
634           machines, but will use only one CPU of a multiprocessor machine. If
635           you say Y here, the kernel will run on many, but not all,
636           singleprocessor machines. On a singleprocessor machine, the kernel
637           will run faster if you say N here.
638
639           People using multiprocessor machines who say Y here should also say
640           Y to "Enhanced Real Time Clock Support", below.
641
642           See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
643           available at <http://www.tldp.org/docs.html#howto>.
644
645           If you don't know what to do here, say N.
646
647 config NR_CPUS
648         int "Maximum number of CPUs (2-32)"
649         range 2 32
650         depends on SMP
651         default "4" if CPU_SHX3
652         default "2"
653         help
654           This allows you to specify the maximum number of CPUs which this
655           kernel will support.  The maximum supported value is 32 and the
656           minimum value which makes sense is 2.
657
658           This is purely to save memory - each supported CPU adds
659           approximately eight kilobytes to the kernel image.
660
661 source "kernel/Kconfig.preempt"
662
663 config GUSA
664         def_bool y
665         depends on !SMP && SUPERH32
666         help
667           This enables support for gUSA (general UserSpace Atomicity).
668           This is the default implementation for both UP and non-ll/sc
669           CPUs, and is used by the libc, amongst others.
670
671           For additional information, design information can be found 
672           in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
673
674           This should only be disabled for special cases where alternate
675           atomicity implementations exist.
676
677 config GUSA_RB
678         bool "Implement atomic operations by roll-back (gRB) (EXPERIMENTAL)"
679         depends on GUSA && CPU_SH3 || (CPU_SH4 && !CPU_SH4A)
680         help
681           Enabling this option will allow the kernel to implement some
682           atomic operations using a software implementation of load-locked/
683           store-conditional (LLSC). On machines which do not have hardware
684           LLSC, this should be more efficient than the other alternative of
685           disabling interrupts around the atomic sequence.
686
687 config SPARSE_IRQ
688         bool "Support sparse irq numbering"
689         depends on EXPERIMENTAL
690         help
691           This enables support for sparse irqs. This is useful in general
692           as most CPUs have a fairly sparse array of IRQ vectors, which
693           the irq_desc then maps directly on to. Systems with a high
694           number of off-chip IRQs will want to treat this as
695           experimental until they have been independently verified.
696
697           If you don't know what to do here, say N.
698
699 endmenu
700
701 menu "Boot options"
702
703 config ZERO_PAGE_OFFSET
704         hex
705         default "0x00010000" if PAGE_SIZE_64KB || SH_RTS7751R2D || \
706                                 SH_7751_SOLUTION_ENGINE
707         default "0x00004000" if PAGE_SIZE_16KB || SH_SH03
708         default "0x00002000" if PAGE_SIZE_8KB
709         default "0x00001000"
710         help
711           This sets the default offset of zero page.
712
713 config BOOT_LINK_OFFSET
714         hex
715         default "0x00210000" if SH_SHMIN
716         default "0x00400000" if SH_CAYMAN
717         default "0x00810000" if SH_7780_SOLUTION_ENGINE
718         default "0x009e0000" if SH_TITAN
719         default "0x01800000" if SH_SDK7780
720         default "0x02000000" if SH_EDOSK7760
721         default "0x00800000"
722         help
723           This option allows you to set the link address offset of the zImage.
724           This can be useful if you are on a board which has a small amount of
725           memory.
726
727 config ENTRY_OFFSET
728         hex
729         default "0x00001000" if PAGE_SIZE_4KB
730         default "0x00002000" if PAGE_SIZE_8KB
731         default "0x00004000" if PAGE_SIZE_16KB
732         default "0x00010000" if PAGE_SIZE_64KB
733         default "0x00000000"
734
735 config UBC_WAKEUP
736         bool "Wakeup UBC on startup"
737         depends on CPU_SH4 && !CPU_SH4A
738         help
739           Selecting this option will wakeup the User Break Controller (UBC) on
740           startup. Although the UBC is left in an awake state when the processor
741           comes up, some boot loaders misbehave by putting the UBC to sleep in a
742           power saving state, which causes issues with things like ptrace().
743
744           If unsure, say N.
745
746 config CMDLINE_BOOL
747         bool "Default bootloader kernel arguments"
748
749 config CMDLINE
750         string "Initial kernel command string"
751         depends on CMDLINE_BOOL
752         default "console=ttySC1,115200"
753
754 endmenu
755
756 menu "Bus options"
757
758 config SUPERHYWAY
759         tristate "SuperHyway Bus support"
760         depends on CPU_SUBTYPE_SH4_202
761
762 config MAPLE
763         bool "Maple Bus support"
764         depends on SH_DREAMCAST
765         help
766          The Maple Bus is SEGA's serial communication bus for peripherals
767          on the Dreamcast. Without this bus support you won't be able to
768          get your Dreamcast keyboard etc to work, so most users
769          probably want to say 'Y' here, unless you are only using the
770          Dreamcast with a serial line terminal or a remote network
771          connection.
772
773 source "arch/sh/drivers/pci/Kconfig"
774
775 source "drivers/pci/pcie/Kconfig"
776
777 source "drivers/pci/Kconfig"
778
779 source "drivers/pcmcia/Kconfig"
780
781 source "drivers/pci/hotplug/Kconfig"
782
783 endmenu
784
785 menu "Executable file formats"
786
787 source "fs/Kconfig.binfmt"
788
789 endmenu
790
791 menu "Power management options (EXPERIMENTAL)"
792 depends on EXPERIMENTAL
793
794 source "kernel/power/Kconfig"
795
796 source "drivers/cpuidle/Kconfig"
797
798 endmenu
799
800 source "net/Kconfig"
801
802 source "drivers/Kconfig"
803
804 source "fs/Kconfig"
805
806 source "arch/sh/Kconfig.debug"
807
808 source "security/Kconfig"
809
810 source "crypto/Kconfig"
811
812 source "lib/Kconfig"