Merge tag 'v3.14.25' into backport/v3.14.24-ltsi-rc1+v3.14.25/snapshot-merge.wip
[platform/adaptation/renesas_rcar/renesas_kernel.git] / arch / sh / Kconfig
1 config SUPERH
2         def_bool y
3         select ARCH_MIGHT_HAVE_PC_PARPORT
4         select EXPERT
5         select CLKDEV_LOOKUP
6         select HAVE_IDE if HAS_IOPORT_MAP
7         select HAVE_MEMBLOCK
8         select HAVE_MEMBLOCK_NODE_MAP
9         select ARCH_DISCARD_MEMBLOCK
10         select HAVE_OPROFILE
11         select HAVE_GENERIC_DMA_COHERENT
12         select HAVE_ARCH_TRACEHOOK
13         select HAVE_DMA_API_DEBUG
14         select HAVE_DMA_ATTRS
15         select HAVE_PERF_EVENTS
16         select HAVE_DEBUG_BUGVERBOSE
17         select ARCH_HAVE_CUSTOM_GPIO_H
18         select ARCH_HAVE_NMI_SAFE_CMPXCHG if (GUSA_RB || CPU_SH4A)
19         select PERF_USE_VMALLOC
20         select HAVE_DEBUG_KMEMLEAK
21         select HAVE_KERNEL_GZIP
22         select HAVE_KERNEL_BZIP2
23         select HAVE_KERNEL_LZMA
24         select HAVE_KERNEL_XZ
25         select HAVE_KERNEL_LZO
26         select HAVE_UID16
27         select ARCH_WANT_IPC_PARSE_VERSION
28         select HAVE_SYSCALL_TRACEPOINTS
29         select HAVE_REGS_AND_STACK_ACCESS_API
30         select MAY_HAVE_SPARSE_IRQ
31         select IRQ_FORCED_THREADING
32         select RTC_LIB
33         select GENERIC_ATOMIC64
34         select GENERIC_IRQ_SHOW
35         select GENERIC_SMP_IDLE_THREAD
36         select GENERIC_IDLE_POLL_SETUP
37         select GENERIC_CLOCKEVENTS
38         select GENERIC_CMOS_UPDATE if SH_SH03 || SH_DREAMCAST
39         select GENERIC_STRNCPY_FROM_USER
40         select GENERIC_STRNLEN_USER
41         select HAVE_MOD_ARCH_SPECIFIC if DWARF_UNWINDER
42         select MODULES_USE_ELF_RELA
43         select OLD_SIGSUSPEND
44         select OLD_SIGACTION
45         help
46           The SuperH is a RISC processor targeted for use in embedded systems
47           and consumer electronics; it was also used in the Sega Dreamcast
48           gaming console.  The SuperH port has a home page at
49           <http://www.linux-sh.org/>.
50
51 config SUPERH32
52         def_bool ARCH = "sh"
53         select HAVE_KPROBES
54         select HAVE_KRETPROBES
55         select HAVE_IOREMAP_PROT if MMU && !X2TLB
56         select HAVE_FUNCTION_TRACER
57         select HAVE_FTRACE_MCOUNT_RECORD
58         select HAVE_DYNAMIC_FTRACE
59         select HAVE_FUNCTION_TRACE_MCOUNT_TEST
60         select HAVE_FTRACE_NMI_ENTER if DYNAMIC_FTRACE
61         select ARCH_WANT_IPC_PARSE_VERSION
62         select HAVE_FUNCTION_GRAPH_TRACER
63         select HAVE_ARCH_KGDB
64         select HAVE_HW_BREAKPOINT
65         select HAVE_MIXED_BREAKPOINTS_REGS
66         select PERF_EVENTS
67         select ARCH_HIBERNATION_POSSIBLE if MMU
68         select SPARSE_IRQ
69         select HAVE_CC_STACKPROTECTOR
70
71 config SUPERH64
72         def_bool ARCH = "sh64"
73         select KALLSYMS
74
75 config ARCH_DEFCONFIG
76         string
77         default "arch/sh/configs/shx3_defconfig" if SUPERH32
78         default "arch/sh/configs/cayman_defconfig" if SUPERH64
79
80 config RWSEM_GENERIC_SPINLOCK
81         def_bool y
82
83 config RWSEM_XCHGADD_ALGORITHM
84         bool
85
86 config GENERIC_BUG
87         def_bool y
88         depends on BUG && SUPERH32
89
90 config GENERIC_CSUM
91         def_bool y
92         depends on SUPERH64
93
94 config GENERIC_HWEIGHT
95         def_bool y
96
97 config GENERIC_CALIBRATE_DELAY
98         bool
99
100 config GENERIC_LOCKBREAK
101         def_bool y
102         depends on SMP && PREEMPT
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_HUGETLBFS
115         bool
116
117 config SYS_SUPPORTS_SMP
118         bool
119
120 config SYS_SUPPORTS_NUMA
121         bool
122
123 config SYS_SUPPORTS_PCI
124         bool
125
126 config SYS_SUPPORTS_CMT
127         bool
128
129 config SYS_SUPPORTS_MTU2
130         bool
131
132 config SYS_SUPPORTS_TMU
133         bool
134
135 config STACKTRACE_SUPPORT
136         def_bool y
137
138 config LOCKDEP_SUPPORT
139         def_bool y
140
141 config HAVE_LATENCYTOP_SUPPORT
142         def_bool y
143
144 config ARCH_HAS_ILOG2_U32
145         def_bool n
146
147 config ARCH_HAS_ILOG2_U64
148         def_bool n
149
150 config NO_IOPORT_MAP
151         def_bool !PCI
152         depends on !SH_CAYMAN && !SH_SH4202_MICRODEV && !SH_SHMIN && \
153                    !SH_HP6XX && !SH_SOLUTION_ENGINE
154
155 config IO_TRAPPED
156         bool
157
158 config SWAP_IO_SPACE
159         bool
160
161 config DMA_COHERENT
162         bool
163
164 config DMA_NONCOHERENT
165         def_bool !DMA_COHERENT
166
167 config NEED_DMA_MAP_STATE
168         def_bool DMA_NONCOHERENT
169
170 config NEED_SG_DMA_LENGTH
171         def_bool y
172
173 source "init/Kconfig"
174
175 source "kernel/Kconfig.freezer"
176
177 menu "System type"
178
179 #
180 # Processor families
181 #
182 config CPU_SH2
183         bool
184         select SH_INTC
185
186 config CPU_SH2A
187         bool
188         select CPU_SH2
189         select UNCACHED_MAPPING
190
191 config CPU_SH3
192         bool
193         select CPU_HAS_INTEVT
194         select CPU_HAS_SR_RB
195         select SH_INTC
196         select SYS_SUPPORTS_TMU
197
198 config CPU_SH4
199         bool
200         select CPU_HAS_INTEVT
201         select CPU_HAS_SR_RB
202         select CPU_HAS_FPU if !CPU_SH4AL_DSP
203         select SH_INTC
204         select SYS_SUPPORTS_TMU
205         select SYS_SUPPORTS_HUGETLBFS if MMU
206
207 config CPU_SH4A
208         bool
209         select CPU_SH4
210
211 config CPU_SH4AL_DSP
212         bool
213         select CPU_SH4A
214         select CPU_HAS_DSP
215
216 config CPU_SH5
217         bool
218         select CPU_HAS_FPU
219         select SYS_SUPPORTS_TMU
220         select SYS_SUPPORTS_HUGETLBFS if MMU
221
222 config CPU_SHX2
223         bool
224
225 config CPU_SHX3
226         bool
227         select DMA_COHERENT
228         select SYS_SUPPORTS_SMP
229         select SYS_SUPPORTS_NUMA
230
231 config ARCH_SHMOBILE
232         bool
233         select ARCH_SUSPEND_POSSIBLE
234         select PM
235         select PM_RUNTIME
236
237 config CPU_HAS_PMU
238        depends on CPU_SH4 || CPU_SH4A
239        default y
240        bool
241
242 if SUPERH32
243
244 choice
245         prompt "Processor sub-type selection"
246
247 #
248 # Processor subtypes
249 #
250
251 # SH-2 Processor Support
252
253 config CPU_SUBTYPE_SH7619
254         bool "Support SH7619 processor"
255         select CPU_SH2
256         select SYS_SUPPORTS_CMT
257
258 # SH-2A Processor Support
259
260 config CPU_SUBTYPE_SH7201
261         bool "Support SH7201 processor"
262         select CPU_SH2A
263         select CPU_HAS_FPU
264         select SYS_SUPPORTS_MTU2
265  
266 config CPU_SUBTYPE_SH7203
267         bool "Support SH7203 processor"
268         select CPU_SH2A
269         select CPU_HAS_FPU
270         select SYS_SUPPORTS_CMT
271         select SYS_SUPPORTS_MTU2
272         select ARCH_WANT_OPTIONAL_GPIOLIB
273         select PINCTRL
274
275 config CPU_SUBTYPE_SH7206
276         bool "Support SH7206 processor"
277         select CPU_SH2A
278         select SYS_SUPPORTS_CMT
279         select SYS_SUPPORTS_MTU2
280
281 config CPU_SUBTYPE_SH7263
282         bool "Support SH7263 processor"
283         select CPU_SH2A
284         select CPU_HAS_FPU
285         select SYS_SUPPORTS_CMT
286         select SYS_SUPPORTS_MTU2
287
288 config CPU_SUBTYPE_SH7264
289         bool "Support SH7264 processor"
290         select CPU_SH2A
291         select CPU_HAS_FPU
292         select SYS_SUPPORTS_CMT
293         select SYS_SUPPORTS_MTU2
294         select PINCTRL
295
296 config CPU_SUBTYPE_SH7269
297         bool "Support SH7269 processor"
298         select CPU_SH2A
299         select CPU_HAS_FPU
300         select SYS_SUPPORTS_CMT
301         select SYS_SUPPORTS_MTU2
302         select PINCTRL
303
304 config CPU_SUBTYPE_MXG
305         bool "Support MX-G processor"
306         select CPU_SH2A
307         select SYS_SUPPORTS_MTU2
308         help
309           Select MX-G if running on an R8A03022BG part.
310
311 # SH-3 Processor Support
312
313 config CPU_SUBTYPE_SH7705
314         bool "Support SH7705 processor"
315         select CPU_SH3
316
317 config CPU_SUBTYPE_SH7706
318         bool "Support SH7706 processor"
319         select CPU_SH3
320         help
321           Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU.
322
323 config CPU_SUBTYPE_SH7707
324         bool "Support SH7707 processor"
325         select CPU_SH3
326         help
327           Select SH7707 if you have a  60 Mhz SH-3 HD6417707 CPU.
328
329 config CPU_SUBTYPE_SH7708
330         bool "Support SH7708 processor"
331         select CPU_SH3
332         help
333           Select SH7708 if you have a  60 Mhz SH-3 HD6417708S or
334           if you have a 100 Mhz SH-3 HD6417708R CPU.
335
336 config CPU_SUBTYPE_SH7709
337         bool "Support SH7709 processor"
338         select CPU_SH3
339         help
340           Select SH7709 if you have a  80 Mhz SH-3 HD6417709 CPU.
341
342 config CPU_SUBTYPE_SH7710
343         bool "Support SH7710 processor"
344         select CPU_SH3
345         select CPU_HAS_DSP
346         help
347           Select SH7710 if you have a SH3-DSP SH7710 CPU.
348
349 config CPU_SUBTYPE_SH7712
350         bool "Support SH7712 processor"
351         select CPU_SH3
352         select CPU_HAS_DSP
353         help
354           Select SH7712 if you have a SH3-DSP SH7712 CPU.
355
356 config CPU_SUBTYPE_SH7720
357         bool "Support SH7720 processor"
358         select CPU_SH3
359         select CPU_HAS_DSP
360         select SYS_SUPPORTS_CMT
361         select ARCH_WANT_OPTIONAL_GPIOLIB
362         select USB_OHCI_SH if USB_OHCI_HCD
363         select PINCTRL
364         help
365           Select SH7720 if you have a SH3-DSP SH7720 CPU.
366
367 config CPU_SUBTYPE_SH7721
368         bool "Support SH7721 processor"
369         select CPU_SH3
370         select CPU_HAS_DSP
371         select SYS_SUPPORTS_CMT
372         select USB_OHCI_SH if USB_OHCI_HCD
373         help
374           Select SH7721 if you have a SH3-DSP SH7721 CPU.
375
376 # SH-4 Processor Support
377
378 config CPU_SUBTYPE_SH7750
379         bool "Support SH7750 processor"
380         select CPU_SH4
381         help
382           Select SH7750 if you have a 200 Mhz SH-4 HD6417750 CPU.
383
384 config CPU_SUBTYPE_SH7091
385         bool "Support SH7091 processor"
386         select CPU_SH4
387         help
388           Select SH7091 if you have an SH-4 based Sega device (such as
389           the Dreamcast, Naomi, and Naomi 2).
390
391 config CPU_SUBTYPE_SH7750R
392         bool "Support SH7750R processor"
393         select CPU_SH4
394
395 config CPU_SUBTYPE_SH7750S
396         bool "Support SH7750S processor"
397         select CPU_SH4
398
399 config CPU_SUBTYPE_SH7751
400         bool "Support SH7751 processor"
401         select CPU_SH4
402         help
403           Select SH7751 if you have a 166 Mhz SH-4 HD6417751 CPU,
404           or if you have a HD6417751R CPU.
405
406 config CPU_SUBTYPE_SH7751R
407         bool "Support SH7751R processor"
408         select CPU_SH4
409
410 config CPU_SUBTYPE_SH7760
411         bool "Support SH7760 processor"
412         select CPU_SH4
413
414 config CPU_SUBTYPE_SH4_202
415         bool "Support SH4-202 processor"
416         select CPU_SH4
417
418 # SH-4A Processor Support
419
420 config CPU_SUBTYPE_SH7723
421         bool "Support SH7723 processor"
422         select CPU_SH4A
423         select CPU_SHX2
424         select ARCH_SHMOBILE
425         select ARCH_SPARSEMEM_ENABLE
426         select SYS_SUPPORTS_CMT
427         select ARCH_WANT_OPTIONAL_GPIOLIB
428         select PINCTRL
429         help
430           Select SH7723 if you have an SH-MobileR2 CPU.
431
432 config CPU_SUBTYPE_SH7724
433         bool "Support SH7724 processor"
434         select CPU_SH4A
435         select CPU_SHX2
436         select ARCH_SHMOBILE
437         select ARCH_SPARSEMEM_ENABLE
438         select SYS_SUPPORTS_CMT
439         select ARCH_WANT_OPTIONAL_GPIOLIB
440         select PINCTRL
441         help
442           Select SH7724 if you have an SH-MobileR2R CPU.
443
444 config CPU_SUBTYPE_SH7734
445         bool "Support SH7734 processor"
446         select CPU_SH4A
447         select CPU_SHX2
448         select ARCH_WANT_OPTIONAL_GPIOLIB
449         select PINCTRL
450         help
451           Select SH7734 if you have a SH4A SH7734 CPU.
452
453 config CPU_SUBTYPE_SH7757
454         bool "Support SH7757 processor"
455         select CPU_SH4A
456         select CPU_SHX2
457         select ARCH_WANT_OPTIONAL_GPIOLIB
458         select PINCTRL
459         help
460           Select SH7757 if you have a SH4A SH7757 CPU.
461
462 config CPU_SUBTYPE_SH7763
463         bool "Support SH7763 processor"
464         select CPU_SH4A
465         select USB_OHCI_SH if USB_OHCI_HCD
466         help
467           Select SH7763 if you have a SH4A SH7763(R5S77631) CPU.
468
469 config CPU_SUBTYPE_SH7770
470         bool "Support SH7770 processor"
471         select CPU_SH4A
472
473 config CPU_SUBTYPE_SH7780
474         bool "Support SH7780 processor"
475         select CPU_SH4A
476
477 config CPU_SUBTYPE_SH7785
478         bool "Support SH7785 processor"
479         select CPU_SH4A
480         select CPU_SHX2
481         select ARCH_SPARSEMEM_ENABLE
482         select SYS_SUPPORTS_NUMA
483         select ARCH_WANT_OPTIONAL_GPIOLIB
484         select PINCTRL
485
486 config CPU_SUBTYPE_SH7786
487         bool "Support SH7786 processor"
488         select CPU_SH4A
489         select CPU_SHX3
490         select CPU_HAS_PTEAEX
491         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
492         select ARCH_WANT_OPTIONAL_GPIOLIB
493         select USB_OHCI_SH if USB_OHCI_HCD
494         select USB_EHCI_SH if USB_EHCI_HCD
495         select PINCTRL
496
497 config CPU_SUBTYPE_SHX3
498         bool "Support SH-X3 processor"
499         select CPU_SH4A
500         select CPU_SHX3
501         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
502         select ARCH_REQUIRE_GPIOLIB
503         select PINCTRL
504
505 # SH4AL-DSP Processor Support
506
507 config CPU_SUBTYPE_SH7343
508         bool "Support SH7343 processor"
509         select CPU_SH4AL_DSP
510         select ARCH_SHMOBILE
511         select SYS_SUPPORTS_CMT
512
513 config CPU_SUBTYPE_SH7722
514         bool "Support SH7722 processor"
515         select CPU_SH4AL_DSP
516         select CPU_SHX2
517         select ARCH_SHMOBILE
518         select ARCH_SPARSEMEM_ENABLE
519         select SYS_SUPPORTS_NUMA
520         select SYS_SUPPORTS_CMT
521         select ARCH_WANT_OPTIONAL_GPIOLIB
522         select PINCTRL
523
524 config CPU_SUBTYPE_SH7366
525         bool "Support SH7366 processor"
526         select CPU_SH4AL_DSP
527         select CPU_SHX2
528         select ARCH_SHMOBILE
529         select ARCH_SPARSEMEM_ENABLE
530         select SYS_SUPPORTS_NUMA
531         select SYS_SUPPORTS_CMT
532
533 endchoice
534
535 endif
536
537 if SUPERH64
538
539 choice
540         prompt "Processor sub-type selection"
541
542 # SH-5 Processor Support
543
544 config CPU_SUBTYPE_SH5_101
545         bool "Support SH5-101 processor"
546         select CPU_SH5
547
548 config CPU_SUBTYPE_SH5_103
549         bool "Support SH5-103 processor"
550         select CPU_SH5
551
552 endchoice
553
554 endif
555
556 source "arch/sh/mm/Kconfig"
557  
558 source "arch/sh/Kconfig.cpu"
559
560 source "arch/sh/boards/Kconfig"
561
562 menu "Timer and clock configuration"
563
564 config SH_TIMER_TMU
565         bool "TMU timer driver"
566         depends on SYS_SUPPORTS_TMU
567         default y
568         help
569           This enables the build of the TMU timer driver.
570
571 config SH_TIMER_CMT
572         bool "CMT timer driver"
573         depends on SYS_SUPPORTS_CMT
574         default y
575         help
576           This enables build of the CMT timer driver.
577
578 config SH_TIMER_MTU2
579         bool "MTU2 timer driver"
580         depends on SYS_SUPPORTS_MTU2
581         default y
582         help
583           This enables build of the MTU2 timer driver.
584
585 config SH_PCLK_FREQ
586         int "Peripheral clock frequency (in Hz)"
587         depends on SH_CLK_CPG_LEGACY
588         default "31250000" if CPU_SUBTYPE_SH7619
589         default "33333333" if CPU_SUBTYPE_SH7770 || \
590                               CPU_SUBTYPE_SH7760 || \
591                               CPU_SUBTYPE_SH7705 || \
592                               CPU_SUBTYPE_SH7203 || \
593                               CPU_SUBTYPE_SH7206 || \
594                               CPU_SUBTYPE_SH7263 || \
595                               CPU_SUBTYPE_MXG
596         default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
597         default "66000000" if CPU_SUBTYPE_SH4_202
598         default "50000000"
599         help
600           This option is used to specify the peripheral clock frequency.
601           This is necessary for determining the reference clock value on
602           platforms lacking an RTC.
603
604 config SH_CLK_CPG
605         def_bool y
606
607 config SH_CLK_CPG_LEGACY
608         depends on SH_CLK_CPG
609         def_bool y if !CPU_SUBTYPE_SH7785 && !ARCH_SHMOBILE && \
610                       !CPU_SHX3 && !CPU_SUBTYPE_SH7757 && \
611                       !CPU_SUBTYPE_SH7734 && !CPU_SUBTYPE_SH7264 && \
612                       !CPU_SUBTYPE_SH7269
613
614 endmenu
615
616 menu "CPU Frequency scaling"
617 source "drivers/cpufreq/Kconfig"
618 endmenu
619
620 source "arch/sh/drivers/Kconfig"
621
622 endmenu
623
624 menu "Kernel features"
625
626 source kernel/Kconfig.hz
627
628 config KEXEC
629         bool "kexec system call (EXPERIMENTAL)"
630         depends on SUPERH32 && MMU
631         help
632           kexec is a system call that implements the ability to shutdown your
633           current kernel, and to start another kernel.  It is like a reboot
634           but it is independent of the system firmware.  And like a reboot
635           you can start any kernel with it, not just Linux.
636
637           The name comes from the similarity to the exec system call.
638
639           It is an ongoing process to be certain the hardware in a machine
640           is properly shutdown, so do not be surprised if this code does not
641           initially work for you.  As of this writing the exact hardware
642           interface is strongly in flux, so no good recommendation can be
643           made.
644
645 config CRASH_DUMP
646         bool "kernel crash dumps (EXPERIMENTAL)"
647         depends on SUPERH32 && BROKEN_ON_SMP
648         help
649           Generate crash dump after being started by kexec.
650           This should be normally only set in special crash dump kernels
651           which are loaded in the main kernel with kexec-tools into
652           a specially reserved region and then later executed after
653           a crash by kdump/kexec. The crash dump kernel must be compiled
654           to a memory address not used by the main kernel using
655           PHYSICAL_START.
656
657           For more details see Documentation/kdump/kdump.txt
658
659 config KEXEC_JUMP
660         bool "kexec jump (EXPERIMENTAL)"
661         depends on SUPERH32 && KEXEC && HIBERNATION
662         help
663           Jump between original kernel and kexeced kernel and invoke
664           code via KEXEC
665
666 config PHYSICAL_START
667         hex "Physical address where the kernel is loaded" if (EXPERT || CRASH_DUMP)
668         default MEMORY_START
669         ---help---
670           This gives the physical address where the kernel is loaded
671           and is ordinarily the same as MEMORY_START.
672
673           Different values are primarily used in the case of kexec on panic
674           where the fail safe kernel needs to run at a different address
675           than the panic-ed kernel.
676
677 config SECCOMP
678         bool "Enable seccomp to safely compute untrusted bytecode"
679         depends on PROC_FS
680         help
681           This kernel feature is useful for number crunching applications
682           that may need to compute untrusted bytecode during their
683           execution. By using pipes or other transports made available to
684           the process as file descriptors supporting the read/write
685           syscalls, it's possible to isolate those applications in
686           their own address space using seccomp. Once seccomp is
687           enabled via prctl, it cannot be disabled and the task is only
688           allowed to execute a few safe syscalls defined by each seccomp
689           mode.
690
691           If unsure, say N.
692
693 config SMP
694         bool "Symmetric multi-processing support"
695         depends on SYS_SUPPORTS_SMP
696         ---help---
697           This enables support for systems with more than one CPU. If you have
698           a system with only one CPU, say N. If you have a system with more
699           than one CPU, say Y.
700
701           If you say N here, the kernel will run on uni- and multiprocessor
702           machines, but will use only one CPU of a multiprocessor machine. If
703           you say Y here, the kernel will run on many, but not all,
704           uniprocessor machines. On a uniprocessor machine, the kernel
705           will run faster if you say N here.
706
707           People using multiprocessor machines who say Y here should also say
708           Y to "Enhanced Real Time Clock Support", below.
709
710           See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
711           available at <http://www.tldp.org/docs.html#howto>.
712
713           If you don't know what to do here, say N.
714
715 config NR_CPUS
716         int "Maximum number of CPUs (2-32)"
717         range 2 32
718         depends on SMP
719         default "4" if CPU_SUBTYPE_SHX3
720         default "2"
721         help
722           This allows you to specify the maximum number of CPUs which this
723           kernel will support.  The maximum supported value is 32 and the
724           minimum value which makes sense is 2.
725
726           This is purely to save memory - each supported CPU adds
727           approximately eight kilobytes to the kernel image.
728
729 config HOTPLUG_CPU
730         bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
731         depends on SMP
732         help
733           Say Y here to experiment with turning CPUs off and on.  CPUs
734           can be controlled through /sys/devices/system/cpu.
735
736 source "kernel/Kconfig.preempt"
737
738 config GUSA
739         def_bool y
740         depends on !SMP && SUPERH32
741         help
742           This enables support for gUSA (general UserSpace Atomicity).
743           This is the default implementation for both UP and non-ll/sc
744           CPUs, and is used by the libc, amongst others.
745
746           For additional information, design information can be found 
747           in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
748
749           This should only be disabled for special cases where alternate
750           atomicity implementations exist.
751
752 config GUSA_RB
753         bool "Implement atomic operations by roll-back (gRB) (EXPERIMENTAL)"
754         depends on GUSA && CPU_SH3 || (CPU_SH4 && !CPU_SH4A)
755         help
756           Enabling this option will allow the kernel to implement some
757           atomic operations using a software implementation of load-locked/
758           store-conditional (LLSC). On machines which do not have hardware
759           LLSC, this should be more efficient than the other alternative of
760           disabling interrupts around the atomic sequence.
761
762 config HW_PERF_EVENTS
763         bool "Enable hardware performance counter support for perf events"
764         depends on PERF_EVENTS && CPU_HAS_PMU
765         default y
766         help
767           Enable hardware performance counter support for perf events. If
768           disabled, perf events will use software events only.
769
770 source "drivers/sh/Kconfig"
771
772 endmenu
773
774 menu "Boot options"
775
776 config ZERO_PAGE_OFFSET
777         hex
778         default "0x00010000" if PAGE_SIZE_64KB || SH_RTS7751R2D || \
779                                 SH_7751_SOLUTION_ENGINE
780         default "0x00004000" if PAGE_SIZE_16KB || SH_SH03
781         default "0x00002000" if PAGE_SIZE_8KB
782         default "0x00001000"
783         help
784           This sets the default offset of zero page.
785
786 config BOOT_LINK_OFFSET
787         hex
788         default "0x00210000" if SH_SHMIN
789         default "0x00400000" if SH_CAYMAN
790         default "0x00810000" if SH_7780_SOLUTION_ENGINE
791         default "0x009e0000" if SH_TITAN
792         default "0x01800000" if SH_SDK7780
793         default "0x02000000" if SH_EDOSK7760
794         default "0x00800000"
795         help
796           This option allows you to set the link address offset of the zImage.
797           This can be useful if you are on a board which has a small amount of
798           memory.
799
800 config ENTRY_OFFSET
801         hex
802         default "0x00001000" if PAGE_SIZE_4KB
803         default "0x00002000" if PAGE_SIZE_8KB
804         default "0x00004000" if PAGE_SIZE_16KB
805         default "0x00010000" if PAGE_SIZE_64KB
806         default "0x00000000"
807
808 config ROMIMAGE_MMCIF
809         bool "Include MMCIF loader in romImage (EXPERIMENTAL)"
810         depends on CPU_SUBTYPE_SH7724
811         help
812           Say Y here to include experimental MMCIF loading code in
813           romImage. With this enabled it is possible to write the romImage
814           kernel image to an MMC card and boot the kernel straight from
815           the reset vector. At reset the processor Mask ROM will load the
816           first part of the romImage which in turn loads the rest the kernel
817           image to RAM using the MMCIF hardware block.
818
819 choice
820         prompt "Kernel command line"
821         optional
822         default CMDLINE_OVERWRITE
823         help
824           Setting this option allows the kernel command line arguments
825           to be set.
826
827 config CMDLINE_OVERWRITE
828         bool "Overwrite bootloader kernel arguments"
829         help
830           Given string will overwrite any arguments passed in by
831           a bootloader.
832
833 config CMDLINE_EXTEND
834         bool "Extend bootloader kernel arguments"
835         help
836           Given string will be concatenated with arguments passed in
837           by a bootloader.
838
839 endchoice
840
841 config CMDLINE
842         string "Kernel command line arguments string"
843         depends on CMDLINE_OVERWRITE || CMDLINE_EXTEND
844         default "console=ttySC1,115200"
845
846 endmenu
847
848 menu "Bus options"
849
850 config SUPERHYWAY
851         tristate "SuperHyway Bus support"
852         depends on CPU_SUBTYPE_SH4_202
853
854 config MAPLE
855         bool "Maple Bus support"
856         depends on SH_DREAMCAST
857         help
858          The Maple Bus is SEGA's serial communication bus for peripherals
859          on the Dreamcast. Without this bus support you won't be able to
860          get your Dreamcast keyboard etc to work, so most users
861          probably want to say 'Y' here, unless you are only using the
862          Dreamcast with a serial line terminal or a remote network
863          connection.
864
865 config PCI
866         bool "PCI support"
867         depends on SYS_SUPPORTS_PCI
868         select PCI_DOMAINS
869         select GENERIC_PCI_IOMAP
870         select NO_GENERIC_PCI_IOPORT_MAP
871         help
872           Find out whether you have a PCI motherboard. PCI is the name of a
873           bus system, i.e. the way the CPU talks to the other stuff inside
874           your box. If you have PCI, say Y, otherwise N.
875
876 config PCI_DOMAINS
877         bool
878
879 source "drivers/pci/pcie/Kconfig"
880
881 source "drivers/pci/Kconfig"
882
883 source "drivers/pcmcia/Kconfig"
884
885 source "drivers/pci/hotplug/Kconfig"
886
887 endmenu
888
889 menu "Executable file formats"
890
891 source "fs/Kconfig.binfmt"
892
893 endmenu
894
895 menu "Power management options (EXPERIMENTAL)"
896
897 source "kernel/power/Kconfig"
898
899 source "drivers/cpuidle/Kconfig"
900
901 endmenu
902
903 source "net/Kconfig"
904
905 source "drivers/Kconfig"
906
907 source "fs/Kconfig"
908
909 source "arch/sh/Kconfig.debug"
910
911 source "security/Kconfig"
912
913 source "crypto/Kconfig"
914
915 source "lib/Kconfig"