Kconfig 20.4 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
Linus Torvalds's avatar
Linus Torvalds committed
2
config SUPERH
3
	def_bool y
4
	select ARCH_HAS_BINFMT_FLAT if !MMU
5
	select ARCH_HAS_PTE_SPECIAL
6
	select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
7
	select ARCH_MIGHT_HAVE_PC_PARPORT
8
	select HAVE_PATA_PLATFORM
9
	select CLKDEV_LOOKUP
10
	select DMA_DECLARE_COHERENT
11
	select HAVE_IDE if HAS_IOPORT_MAP
Mathieu Desnoyers's avatar
Mathieu Desnoyers committed
12
	select HAVE_OPROFILE
13
	select HAVE_ARCH_TRACEHOOK
14
	select HAVE_PERF_EVENTS
15
	select HAVE_DEBUG_BUGVERBOSE
16
	select HAVE_FAST_GUP if MMU
17
	select ARCH_HAVE_CUSTOM_GPIO_H
18
	select ARCH_HAVE_NMI_SAFE_CMPXCHG if (GUSA_RB || CPU_SH4A)
19
	select ARCH_HAS_GCOV_PROFILE_ALL
20
	select PERF_USE_VMALLOC
21
	select HAVE_DEBUG_KMEMLEAK
22
	select HAVE_KERNEL_GZIP
23
	select CPU_NO_EFFICIENT_FFS
Paul Mundt's avatar
Paul Mundt committed
24 25
	select HAVE_KERNEL_BZIP2
	select HAVE_KERNEL_LZMA
Paul Mundt's avatar
Paul Mundt committed
26
	select HAVE_KERNEL_XZ
27
	select HAVE_KERNEL_LZO
28
	select HAVE_UID16
29
	select ARCH_WANT_IPC_PARSE_VERSION
30
	select HAVE_SYSCALL_TRACEPOINTS
31
	select HAVE_REGS_AND_STACK_ACCESS_API
32
	select MAY_HAVE_SPARSE_IRQ
Paul Mundt's avatar
Paul Mundt committed
33
	select IRQ_FORCED_THREADING
34
	select RTC_LIB
35
	select GENERIC_ATOMIC64
36
	select GENERIC_IRQ_SHOW
37
	select GENERIC_SMP_IDLE_THREAD
Thomas Gleixner's avatar
Thomas Gleixner committed
38
	select GENERIC_IDLE_POLL_SETUP
39 40
	select GENERIC_CLOCKEVENTS
	select GENERIC_CMOS_UPDATE if SH_SH03 || SH_DREAMCAST
41
	select GENERIC_PCI_IOMAP if PCI
42
	select GENERIC_SCHED_CLOCK
43
	select GENERIC_STRNCPY_FROM_USER
44
	select GENERIC_STRNLEN_USER
45 46
	select HAVE_MOD_ARCH_SPECIFIC if DWARF_UNWINDER
	select MODULES_USE_ELF_RELA
47
	select NO_GENERIC_PCI_IOPORT_MAP if PCI
48
	select OLD_SIGSUSPEND
49
	select OLD_SIGACTION
50
	select PCI_DOMAINS if PCI
51
	select HAVE_ARCH_AUDITSYSCALL
52
	select HAVE_FUTEX_CMPXCHG if FUTEX
53
	select HAVE_NMI
54
	select NEED_SG_DMA_LENGTH
55
	select ARCH_HAS_GIGANTIC_PAGE
56

Linus Torvalds's avatar
Linus Torvalds committed
57 58 59 60 61 62
	help
	  The SuperH is a RISC processor targeted for use in embedded systems
	  and consumer electronics; it was also used in the Sega Dreamcast
	  gaming console.  The SuperH port has a home page at
	  <http://www.linux-sh.org/>.

Paul Mundt's avatar
Paul Mundt committed
63
config SUPERH32
64
	def_bool "$(ARCH)" = "sh"
65
	select ARCH_32BIT_OFF_T
66
	select GUP_GET_PTE_LOW_HIGH if X2TLB
Chris Smith's avatar
Chris Smith committed
67 68
	select HAVE_KPROBES
	select HAVE_KRETPROBES
69
	select HAVE_IOREMAP_PROT if MMU && !X2TLB
70
	select HAVE_FUNCTION_TRACER
Matt Fleming's avatar
Matt Fleming committed
71 72
	select HAVE_FTRACE_MCOUNT_RECORD
	select HAVE_DYNAMIC_FTRACE
73
	select ARCH_WANT_IPC_PARSE_VERSION
74
	select HAVE_FUNCTION_GRAPH_TRACER
Paul Mundt's avatar
Paul Mundt committed
75
	select HAVE_ARCH_KGDB
76
	select HAVE_HW_BREAKPOINT
77
	select HAVE_MIXED_BREAKPOINTS_REGS
78
	select PERF_EVENTS
79
	select ARCH_HIBERNATION_POSSIBLE if MMU
Paul Mundt's avatar
Paul Mundt committed
80
	select SPARSE_IRQ
81
	select HAVE_STACKPROTECTOR
82 83

config SUPERH64
84
	def_bool "$(ARCH)" = "sh64"
Jiri Slaby's avatar
Jiri Slaby committed
85
	select HAVE_EXIT_THREAD
86
	select KALLSYMS
Paul Mundt's avatar
Paul Mundt committed
87

Paul Mundt's avatar
Paul Mundt committed
88 89
config GENERIC_BUG
	def_bool y
90
	depends on BUG && SUPERH32
Paul Mundt's avatar
Paul Mundt committed
91

92 93 94 95
config GENERIC_CSUM
	def_bool y
	depends on SUPERH64

96
config GENERIC_HWEIGHT
97
	def_bool y
98

Linus Torvalds's avatar
Linus Torvalds committed
99
config GENERIC_CALIBRATE_DELAY
100
	bool
Linus Torvalds's avatar
Linus Torvalds committed
101

Paul Mundt's avatar
Paul Mundt committed
102 103
config GENERIC_LOCKBREAK
	def_bool y
104
	depends on SMP && PREEMPTION
Paul Mundt's avatar
Paul Mundt committed
105

Magnus Damm's avatar
Magnus Damm committed
106 107 108 109 110
config ARCH_SUSPEND_POSSIBLE
	def_bool n

config ARCH_HIBERNATION_POSSIBLE
	def_bool n
111

112 113
config SYS_SUPPORTS_APM_EMULATION
	bool
Magnus Damm's avatar
Magnus Damm committed
114
	select ARCH_SUSPEND_POSSIBLE
115

116 117 118
config SYS_SUPPORTS_HUGETLBFS
	bool

119 120 121 122 123 124
config SYS_SUPPORTS_SMP
	bool

config SYS_SUPPORTS_NUMA
	bool

125
config STACKTRACE_SUPPORT
126
	def_bool y
127 128

config LOCKDEP_SUPPORT
129
	def_bool y
130

131
config ARCH_HAS_ILOG2_U32
132
	def_bool n
133 134

config ARCH_HAS_ILOG2_U64
135
	def_bool n
136

137
config NO_IOPORT_MAP
Paul Mundt's avatar
Paul Mundt committed
138
	def_bool !PCI
139 140
	depends on !SH_CAYMAN && !SH_SH4202_MICRODEV && !SH_SHMIN && \
		   !SH_HP6XX && !SH_SOLUTION_ENGINE
141

Magnus Damm's avatar
Magnus Damm committed
142 143 144
config IO_TRAPPED
	bool

145 146 147
config SWAP_IO_SPACE
	bool

148 149 150 151 152
config DMA_COHERENT
	bool

config DMA_NONCOHERENT
	def_bool !DMA_COHERENT
153
	select ARCH_HAS_SYNC_DMA_FOR_DEVICE
154

155 156 157 158
config PGTABLE_LEVELS
	default 3 if X2TLB
	default 2

Linus Torvalds's avatar
Linus Torvalds committed
159 160
menu "System type"

161 162 163 164 165
#
# Processor families
#
config CPU_SH2
	bool
166
	select SH_INTC
167 168 169 170

config CPU_SH2A
	bool
	select CPU_SH2
Paul Mundt's avatar
Paul Mundt committed
171
	select UNCACHED_MAPPING
172

173 174 175 176 177 178
config CPU_J2
	bool
	select CPU_SH2
	select OF
	select OF_EARLY_FLATTREE

179 180 181 182
config CPU_SH3
	bool
	select CPU_HAS_INTEVT
	select CPU_HAS_SR_RB
183
	select SH_INTC
184
	select SYS_SUPPORTS_SH_TMU
185 186 187 188 189 190

config CPU_SH4
	bool
	select CPU_HAS_INTEVT
	select CPU_HAS_SR_RB
	select CPU_HAS_FPU if !CPU_SH4AL_DSP
191
	select SH_INTC
192
	select SYS_SUPPORTS_SH_TMU
193
	select SYS_SUPPORTS_HUGETLBFS if MMU
194 195 196 197 198 199 200 201 202 203

config CPU_SH4A
	bool
	select CPU_SH4

config CPU_SH4AL_DSP
	bool
	select CPU_SH4A
	select CPU_HAS_DSP

204 205 206
config CPU_SH5
	bool
	select CPU_HAS_FPU
207
	select SYS_SUPPORTS_SH_TMU
208
	select SYS_SUPPORTS_HUGETLBFS if MMU
209

210 211 212 213 214
config CPU_SHX2
	bool

config CPU_SHX3
	bool
215
	select DMA_COHERENT
216 217
	select SYS_SUPPORTS_SMP
	select SYS_SUPPORTS_NUMA
218

219 220
config ARCH_SHMOBILE
	bool
221
	select ARCH_SUSPEND_POSSIBLE
222
	select PM
223

224 225 226 227 228
config CPU_HAS_PMU
       depends on CPU_SH4 || CPU_SH4A
       default y
       bool

229 230
if SUPERH32

231 232 233 234 235 236 237 238 239 240 241 242
choice
	prompt "Processor sub-type selection"

#
# Processor subtypes
#

# SH-2 Processor Support

config CPU_SUBTYPE_SH7619
	bool "Support SH7619 processor"
	select CPU_SH2
243
	select SYS_SUPPORTS_SH_CMT
244

245 246 247
config CPU_SUBTYPE_J2
	bool "Support J2 processor"
	select CPU_J2
Rich Felker's avatar
Rich Felker committed
248 249
	select SYS_SUPPORTS_SMP
	select GENERIC_CLOCKEVENTS_BROADCAST if SMP
250

251 252
# SH-2A Processor Support

253 254 255 256
config CPU_SUBTYPE_SH7201
	bool "Support SH7201 processor"
	select CPU_SH2A
	select CPU_HAS_FPU
257
	select SYS_SUPPORTS_SH_MTU2
258
 
Paul Mundt's avatar
Paul Mundt committed
259 260 261
config CPU_SUBTYPE_SH7203
	bool "Support SH7203 processor"
	select CPU_SH2A
Paul Mundt's avatar
Paul Mundt committed
262
	select CPU_HAS_FPU
263 264
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_MTU2
265
	select PINCTRL
Paul Mundt's avatar
Paul Mundt committed
266

267 268 269
config CPU_SUBTYPE_SH7206
	bool "Support SH7206 processor"
	select CPU_SH2A
270 271
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_MTU2
272

Paul Mundt's avatar
Paul Mundt committed
273 274 275
config CPU_SUBTYPE_SH7263
	bool "Support SH7263 processor"
	select CPU_SH2A
Paul Mundt's avatar
Paul Mundt committed
276
	select CPU_HAS_FPU
277 278
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_MTU2
Paul Mundt's avatar
Paul Mundt committed
279

Phil Edworthy's avatar
Phil Edworthy committed
280 281 282 283
config CPU_SUBTYPE_SH7264
	bool "Support SH7264 processor"
	select CPU_SH2A
	select CPU_HAS_FPU
284 285
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_MTU2
286
	select PINCTRL
Phil Edworthy's avatar
Phil Edworthy committed
287

Phil Edworthy's avatar
Phil Edworthy committed
288 289 290 291
config CPU_SUBTYPE_SH7269
	bool "Support SH7269 processor"
	select CPU_SH2A
	select CPU_HAS_FPU
292 293
	select SYS_SUPPORTS_SH_CMT
	select SYS_SUPPORTS_SH_MTU2
294
	select PINCTRL
Phil Edworthy's avatar
Phil Edworthy committed
295

296 297 298
config CPU_SUBTYPE_MXG
	bool "Support MX-G processor"
	select CPU_SH2A
299
	select SYS_SUPPORTS_SH_MTU2
300 301 302
	help
	  Select MX-G if running on an R8A03022BG part.

303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
# SH-3 Processor Support

config CPU_SUBTYPE_SH7705
	bool "Support SH7705 processor"
	select CPU_SH3

config CPU_SUBTYPE_SH7706
	bool "Support SH7706 processor"
	select CPU_SH3
	help
	  Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU.

config CPU_SUBTYPE_SH7707
	bool "Support SH7707 processor"
	select CPU_SH3
	help
	  Select SH7707 if you have a  60 Mhz SH-3 HD6417707 CPU.

config CPU_SUBTYPE_SH7708
	bool "Support SH7708 processor"
	select CPU_SH3
	help
	  Select SH7708 if you have a  60 Mhz SH-3 HD6417708S or
	  if you have a 100 Mhz SH-3 HD6417708R CPU.

config CPU_SUBTYPE_SH7709
	bool "Support SH7709 processor"
	select CPU_SH3
	help
	  Select SH7709 if you have a  80 Mhz SH-3 HD6417709 CPU.

config CPU_SUBTYPE_SH7710
	bool "Support SH7710 processor"
	select CPU_SH3
	select CPU_HAS_DSP
	help
	  Select SH7710 if you have a SH3-DSP SH7710 CPU.

config CPU_SUBTYPE_SH7712
	bool "Support SH7712 processor"
	select CPU_SH3
	select CPU_HAS_DSP
	help
	  Select SH7712 if you have a SH3-DSP SH7712 CPU.

config CPU_SUBTYPE_SH7720
	bool "Support SH7720 processor"
	select CPU_SH3
	select CPU_HAS_DSP
352
	select SYS_SUPPORTS_SH_CMT
353
	select USB_OHCI_SH if USB_OHCI_HCD
354
	select PINCTRL
355 356 357
	help
	  Select SH7720 if you have a SH3-DSP SH7720 CPU.

358 359 360 361
config CPU_SUBTYPE_SH7721
	bool "Support SH7721 processor"
	select CPU_SH3
	select CPU_HAS_DSP
362
	select SYS_SUPPORTS_SH_CMT
363
	select USB_OHCI_SH if USB_OHCI_HCD
364 365 366
	help
	  Select SH7721 if you have a SH3-DSP SH7721 CPU.

367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
# SH-4 Processor Support

config CPU_SUBTYPE_SH7750
	bool "Support SH7750 processor"
	select CPU_SH4
	help
	  Select SH7750 if you have a 200 Mhz SH-4 HD6417750 CPU.

config CPU_SUBTYPE_SH7091
	bool "Support SH7091 processor"
	select CPU_SH4
	help
	  Select SH7091 if you have an SH-4 based Sega device (such as
	  the Dreamcast, Naomi, and Naomi 2).

config CPU_SUBTYPE_SH7750R
	bool "Support SH7750R processor"
	select CPU_SH4

config CPU_SUBTYPE_SH7750S
	bool "Support SH7750S processor"
	select CPU_SH4

config CPU_SUBTYPE_SH7751
	bool "Support SH7751 processor"
	select CPU_SH4
	help
	  Select SH7751 if you have a 166 Mhz SH-4 HD6417751 CPU,
	  or if you have a HD6417751R CPU.

config CPU_SUBTYPE_SH7751R
	bool "Support SH7751R processor"
	select CPU_SH4

config CPU_SUBTYPE_SH7760
	bool "Support SH7760 processor"
	select CPU_SH4

config CPU_SUBTYPE_SH4_202
	bool "Support SH4-202 processor"
	select CPU_SH4

# SH-4A Processor Support

411 412 413 414
config CPU_SUBTYPE_SH7723
	bool "Support SH7723 processor"
	select CPU_SH4A
	select CPU_SHX2
415
	select ARCH_SHMOBILE
416
	select ARCH_SPARSEMEM_ENABLE
417
	select SYS_SUPPORTS_SH_CMT
418
	select PINCTRL
419 420 421
	help
	  Select SH7723 if you have an SH-MobileR2 CPU.

422 423 424 425
config CPU_SUBTYPE_SH7724
	bool "Support SH7724 processor"
	select CPU_SH4A
	select CPU_SHX2
426
	select ARCH_SHMOBILE
427
	select ARCH_SPARSEMEM_ENABLE
428
	select SYS_SUPPORTS_SH_CMT
429
	select PINCTRL
430 431 432
	help
	  Select SH7724 if you have an SH-MobileR2R CPU.

433 434 435 436
config CPU_SUBTYPE_SH7734
	bool "Support SH7734 processor"
	select CPU_SH4A
	select CPU_SHX2
437
	select PINCTRL
438 439 440
	help
	  Select SH7734 if you have a SH4A SH7734 CPU.

441 442 443 444
config CPU_SUBTYPE_SH7757
	bool "Support SH7757 processor"
	select CPU_SH4A
	select CPU_SHX2
445
	select PINCTRL
446 447 448
	help
	  Select SH7757 if you have a SH4A SH7757 CPU.

449 450 451
config CPU_SUBTYPE_SH7763
	bool "Support SH7763 processor"
	select CPU_SH4A
452
	select USB_OHCI_SH if USB_OHCI_HCD
453 454 455
	help
	  Select SH7763 if you have a SH4A SH7763(R5S77631) CPU.

456 457 458 459 460 461 462 463 464 465 466 467
config CPU_SUBTYPE_SH7770
	bool "Support SH7770 processor"
	select CPU_SH4A

config CPU_SUBTYPE_SH7780
	bool "Support SH7780 processor"
	select CPU_SH4A

config CPU_SUBTYPE_SH7785
	bool "Support SH7785 processor"
	select CPU_SH4A
	select CPU_SHX2
468 469
	select ARCH_SPARSEMEM_ENABLE
	select SYS_SUPPORTS_NUMA
470
	select PINCTRL
471 472 473 474

config CPU_SUBTYPE_SH7786
	bool "Support SH7786 processor"
	select CPU_SH4A
475
	select CPU_SHX3
476
	select CPU_HAS_PTEAEX
Paul Mundt's avatar
Paul Mundt committed
477
	select GENERIC_CLOCKEVENTS_BROADCAST if SMP
478 479
	select USB_OHCI_SH if USB_OHCI_HCD
	select USB_EHCI_SH if USB_EHCI_HCD
480
	select PINCTRL
481 482 483 484 485

config CPU_SUBTYPE_SHX3
	bool "Support SH-X3 processor"
	select CPU_SH4A
	select CPU_SHX3
486
	select GENERIC_CLOCKEVENTS_BROADCAST if SMP
487
	select GPIOLIB
488
	select PINCTRL
489 490 491 492 493 494

# SH4AL-DSP Processor Support

config CPU_SUBTYPE_SH7343
	bool "Support SH7343 processor"
	select CPU_SH4AL_DSP
495
	select ARCH_SHMOBILE
496
	select SYS_SUPPORTS_SH_CMT
497 498 499 500 501

config CPU_SUBTYPE_SH7722
	bool "Support SH7722 processor"
	select CPU_SH4AL_DSP
	select CPU_SHX2
502
	select ARCH_SHMOBILE
503 504
	select ARCH_SPARSEMEM_ENABLE
	select SYS_SUPPORTS_NUMA
505
	select SYS_SUPPORTS_SH_CMT
506
	select PINCTRL
507 508 509 510 511

config CPU_SUBTYPE_SH7366
	bool "Support SH7366 processor"
	select CPU_SH4AL_DSP
	select CPU_SHX2
512
	select ARCH_SHMOBILE
513 514
	select ARCH_SPARSEMEM_ENABLE
	select SYS_SUPPORTS_NUMA
515
	select SYS_SUPPORTS_SH_CMT
516

517 518 519 520 521 522 523 524 525
endchoice

endif

if SUPERH64

choice
	prompt "Processor sub-type selection"

526 527 528 529 530 531 532 533
# SH-5 Processor Support

config CPU_SUBTYPE_SH5_101
	bool "Support SH5-101 processor"
	select CPU_SH5

config CPU_SUBTYPE_SH5_103
	bool "Support SH5-103 processor"
534
	select CPU_SH5
535

536 537
endchoice

538 539
endif

540
source "arch/sh/mm/Kconfig"
541
 
542
source "arch/sh/Kconfig.cpu"
543

544
source "arch/sh/boards/Kconfig"
545 546 547

menu "Timer and clock configuration"

548 549
config SH_PCLK_FREQ
	int "Peripheral clock frequency (in Hz)"
550
	depends on SH_CLK_CPG_LEGACY
551
	default "31250000" if CPU_SUBTYPE_SH7619
552 553 554 555 556 557
	default "33333333" if CPU_SUBTYPE_SH7770 || \
			      CPU_SUBTYPE_SH7760 || \
			      CPU_SUBTYPE_SH7705 || \
			      CPU_SUBTYPE_SH7203 || \
			      CPU_SUBTYPE_SH7206 || \
			      CPU_SUBTYPE_SH7263 || \
558
			      CPU_SUBTYPE_MXG
Paul Mundt's avatar
Paul Mundt committed
559
	default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
560
	default "66000000" if CPU_SUBTYPE_SH4_202
Paul Mundt's avatar
Paul Mundt committed
561
	default "50000000"
Linus Torvalds's avatar
Linus Torvalds committed
562
	help
563 564 565
	  This option is used to specify the peripheral clock frequency.
	  This is necessary for determining the reference clock value on
	  platforms lacking an RTC.
Linus Torvalds's avatar
Linus Torvalds committed
566

567 568 569
config SH_CLK_CPG
	def_bool y

570
config SH_CLK_CPG_LEGACY
571
	depends on SH_CLK_CPG
572
	def_bool y if !CPU_SUBTYPE_SH7785 && !ARCH_SHMOBILE && \
Phil Edworthy's avatar
Phil Edworthy committed
573
		      !CPU_SHX3 && !CPU_SUBTYPE_SH7757 && \
574 575
		      !CPU_SUBTYPE_SH7734 && !CPU_SUBTYPE_SH7264 && \
		      !CPU_SUBTYPE_SH7269
576

577 578
endmenu

579 580 581 582
menu "CPU Frequency scaling"
source "drivers/cpufreq/Kconfig"
endmenu

583 584
source "arch/sh/drivers/Kconfig"

585
endmenu
Linus Torvalds's avatar
Linus Torvalds committed
586

587 588
menu "Kernel features"

589
source "kernel/Kconfig.hz"
Paul Mundt's avatar
Paul Mundt committed
590

591 592
config KEXEC
	bool "kexec system call (EXPERIMENTAL)"
593
	depends on SUPERH32 && MMU
594
	select KEXEC_CORE
Linus Torvalds's avatar
Linus Torvalds committed
595
	help
596 597
	  kexec is a system call that implements the ability to shutdown your
	  current kernel, and to start another kernel.  It is like a reboot
598
	  but it is independent of the system firmware.  And like a reboot
599 600
	  you can start any kernel with it, not just Linux.

601
	  The name comes from the similarity to the exec system call.
602 603 604

	  It is an ongoing process to be certain the hardware in a machine
	  is properly shutdown, so do not be surprised if this code does not
605 606 607
	  initially work for you.  As of this writing the exact hardware
	  interface is strongly in flux, so no good recommendation can be
	  made.
608

Paul Mundt's avatar
Paul Mundt committed
609 610
config CRASH_DUMP
	bool "kernel crash dumps (EXPERIMENTAL)"
611
	depends on SUPERH32 && BROKEN_ON_SMP
Paul Mundt's avatar
Paul Mundt committed
612 613 614 615 616 617 618
	help
	  Generate crash dump after being started by kexec.
	  This should be normally only set in special crash dump kernels
	  which are loaded in the main kernel with kexec-tools into
	  a specially reserved region and then later executed after
	  a crash by kdump/kexec. The crash dump kernel must be compiled
	  to a memory address not used by the main kernel using
Simon Horman's avatar
Simon Horman committed
619
	  PHYSICAL_START.
Paul Mundt's avatar
Paul Mundt committed
620

621
	  For more details see Documentation/admin-guide/kdump/kdump.rst
Paul Mundt's avatar
Paul Mundt committed
622

Magnus Damm's avatar
Magnus Damm committed
623 624
config KEXEC_JUMP
	bool "kexec jump (EXPERIMENTAL)"
625
	depends on SUPERH32 && KEXEC && HIBERNATION
Magnus Damm's avatar
Magnus Damm committed
626 627 628 629
	help
	  Jump between original kernel and kexeced kernel and invoke
	  code via KEXEC

Simon Horman's avatar
Simon Horman committed
630 631 632 633 634 635 636 637 638 639 640
config PHYSICAL_START
	hex "Physical address where the kernel is loaded" if (EXPERT || CRASH_DUMP)
	default MEMORY_START
	---help---
	  This gives the physical address where the kernel is loaded
	  and is ordinarily the same as MEMORY_START.

	  Different values are primarily used in the case of kexec on panic
	  where the fail safe kernel needs to run at a different address
	  than the panic-ed kernel.

Paul Mundt's avatar
Paul Mundt committed
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
config SECCOMP
	bool "Enable seccomp to safely compute untrusted bytecode"
	depends on PROC_FS
	help
	  This kernel feature is useful for number crunching applications
	  that may need to compute untrusted bytecode during their
	  execution. By using pipes or other transports made available to
	  the process as file descriptors supporting the read/write
	  syscalls, it's possible to isolate those applications in
	  their own address space using seccomp. Once seccomp is
	  enabled via prctl, it cannot be disabled and the task is only
	  allowed to execute a few safe syscalls defined by each seccomp
	  mode.

	  If unsure, say N.

Linus Torvalds's avatar
Linus Torvalds committed
657 658
config SMP
	bool "Symmetric multi-processing support"
659
	depends on SYS_SUPPORTS_SMP
Linus Torvalds's avatar
Linus Torvalds committed
660 661
	---help---
	  This enables support for systems with more than one CPU. If you have
662 663
	  a system with only one CPU, say N. If you have a system with more
	  than one CPU, say Y.
Linus Torvalds's avatar
Linus Torvalds committed
664

665
	  If you say N here, the kernel will run on uni- and multiprocessor
Linus Torvalds's avatar
Linus Torvalds committed
666 667
	  machines, but will use only one CPU of a multiprocessor machine. If
	  you say Y here, the kernel will run on many, but not all,
668
	  uniprocessor machines. On a uniprocessor machine, the kernel
Linus Torvalds's avatar
Linus Torvalds committed
669 670 671 672 673
	  will run faster if you say N here.

	  People using multiprocessor machines who say Y here should also say
	  Y to "Enhanced Real Time Clock Support", below.

674
	  See also <file:Documentation/admin-guide/lockup-watchdogs.rst> and the SMP-HOWTO
Adrian Bunk's avatar
Adrian Bunk committed
675
	  available at <http://www.tldp.org/docs.html#howto>.
Linus Torvalds's avatar
Linus Torvalds committed
676 677 678 679 680 681 682

	  If you don't know what to do here, say N.

config NR_CPUS
	int "Maximum number of CPUs (2-32)"
	range 2 32
	depends on SMP
Paul Mundt's avatar
Paul Mundt committed
683
	default "4" if CPU_SUBTYPE_SHX3
Linus Torvalds's avatar
Linus Torvalds committed
684 685 686 687 688 689 690 691 692
	default "2"
	help
	  This allows you to specify the maximum number of CPUs which this
	  kernel will support.  The maximum supported value is 32 and the
	  minimum value which makes sense is 2.

	  This is purely to save memory - each supported CPU adds
	  approximately eight kilobytes to the kernel image.

Paul Mundt's avatar
Paul Mundt committed
693 694
config HOTPLUG_CPU
	bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
695
	depends on SMP
Paul Mundt's avatar
Paul Mundt committed
696 697 698 699
	help
	  Say Y here to experiment with turning CPUs off and on.  CPUs
	  can be controlled through /sys/devices/system/cpu.

Paul Mundt's avatar
Paul Mundt committed
700 701
config GUSA
	def_bool y
702
	depends on !SMP && SUPERH32
Paul Mundt's avatar
Paul Mundt committed
703 704 705 706 707 708 709 710 711 712 713
	help
	  This enables support for gUSA (general UserSpace Atomicity).
	  This is the default implementation for both UP and non-ll/sc
	  CPUs, and is used by the libc, amongst others.

	  For additional information, design information can be found 
	  in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.

	  This should only be disabled for special cases where alternate
	  atomicity implementations exist.

714 715 716 717 718
config GUSA_RB
	bool "Implement atomic operations by roll-back (gRB) (EXPERIMENTAL)"
	depends on GUSA && CPU_SH3 || (CPU_SH4 && !CPU_SH4A)
	help
	  Enabling this option will allow the kernel to implement some
719
	  atomic operations using a software implementation of load-locked/
720 721
	  store-conditional (LLSC). On machines which do not have hardware
	  LLSC, this should be more efficient than the other alternative of
722
	  disabling interrupts around the atomic sequence.
723

724 725 726 727 728 729 730 731
config HW_PERF_EVENTS
	bool "Enable hardware performance counter support for perf events"
	depends on PERF_EVENTS && CPU_HAS_PMU
	default y
	help
	  Enable hardware performance counter support for perf events. If
	  disabled, perf events will use software events only.

Paul Mundt's avatar
Paul Mundt committed
732 733
source "drivers/sh/Kconfig"

734
endmenu
Linus Torvalds's avatar
Linus Torvalds committed
735

736
menu "Boot options"
Linus Torvalds's avatar
Linus Torvalds committed
737

738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
config USE_BUILTIN_DTB
	bool "Use builtin DTB"
	default n
	depends on SH_DEVICE_TREE
	help
	  Link a device tree blob for particular hardware into the kernel,
	  suppressing use of the DTB pointer provided by the bootloader.
	  This option should only be used with legacy bootloaders that are
	  not capable of providing a DTB to the kernel, or for experimental
	  hardware without stable device tree bindings.

config BUILTIN_DTB_SOURCE
	string "Source file for builtin DTB"
	default ""
	depends on USE_BUILTIN_DTB
	help
	  Base name (without suffix, relative to arch/sh/boot/dts) for the
	  a DTS file that will be used to produce the DTB linked into the
	  kernel.

758
config ZERO_PAGE_OFFSET
759 760 761 762
	hex
	default "0x00010000" if PAGE_SIZE_64KB || SH_RTS7751R2D || \
				SH_7751_SOLUTION_ENGINE
	default "0x00004000" if PAGE_SIZE_16KB || SH_SH03
763
	default "0x00002000" if PAGE_SIZE_8KB
764
	default "0x00001000"
Linus Torvalds's avatar
Linus Torvalds committed
765
	help
766
	  This sets the default offset of zero page.
Linus Torvalds's avatar
Linus Torvalds committed
767

768
config BOOT_LINK_OFFSET
769 770
	hex
	default "0x00210000" if SH_SHMIN
771
	default "0x00400000" if SH_CAYMAN
772 773 774 775
	default "0x00810000" if SH_7780_SOLUTION_ENGINE
	default "0x009e0000" if SH_TITAN
	default "0x01800000" if SH_SDK7780
	default "0x02000000" if SH_EDOSK7760
776 777 778 779 780
	default "0x00800000"
	help
	  This option allows you to set the link address offset of the zImage.
	  This can be useful if you are on a board which has a small amount of
	  memory.
Linus Torvalds's avatar
Linus Torvalds committed
781

782 783 784 785 786 787 788 789
config ENTRY_OFFSET
	hex
	default "0x00001000" if PAGE_SIZE_4KB
	default "0x00002000" if PAGE_SIZE_8KB
	default "0x00004000" if PAGE_SIZE_16KB
	default "0x00010000" if PAGE_SIZE_64KB
	default "0x00000000"

790 791
config ROMIMAGE_MMCIF
	bool "Include MMCIF loader in romImage (EXPERIMENTAL)"
792
	depends on CPU_SUBTYPE_SH7724
793 794 795 796 797 798 799 800
	help
	  Say Y here to include experimental MMCIF loading code in
	  romImage. With this enabled it is possible to write the romImage
	  kernel image to an MMC card and boot the kernel straight from
	  the reset vector. At reset the processor Mask ROM will load the
	  first part of the romImage which in turn loads the rest the kernel
	  image to RAM using the MMCIF hardware block.

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
choice
	prompt "Kernel command line"
	optional
	default CMDLINE_OVERWRITE
	help
	  Setting this option allows the kernel command line arguments
	  to be set.

config CMDLINE_OVERWRITE
	bool "Overwrite bootloader kernel arguments"
	help
	  Given string will overwrite any arguments passed in by
	  a bootloader.

config CMDLINE_EXTEND
	bool "Extend bootloader kernel arguments"
	help
	  Given string will be concatenated with arguments passed in
	  by a bootloader.

endchoice
Linus Torvalds's avatar
Linus Torvalds committed
822

823
config CMDLINE
824 825
	string "Kernel command line arguments string"
	depends on CMDLINE_OVERWRITE || CMDLINE_EXTEND
826
	default "console=ttySC1,115200"
Linus Torvalds's avatar
Linus Torvalds committed
827 828 829

endmenu

830
menu "Bus options"
Linus Torvalds's avatar
Linus Torvalds committed
831

832 833 834
config SUPERHYWAY
	tristate "SuperHyway Bus support"
	depends on CPU_SUBTYPE_SH4_202
Linus Torvalds's avatar
Linus Torvalds committed
835

836
config MAPLE
837 838 839 840 841 842 843 844 845
	bool "Maple Bus support"
	depends on SH_DREAMCAST
	help
	 The Maple Bus is SEGA's serial communication bus for peripherals
	 on the Dreamcast. Without this bus support you won't be able to
	 get your Dreamcast keyboard etc to work, so most users
	 probably want to say 'Y' here, unless you are only using the
	 Dreamcast with a serial line terminal or a remote network
	 connection.
846

Linus Torvalds's avatar
Linus Torvalds committed
847 848
endmenu

Andriy Skulysh's avatar
Andriy Skulysh committed
849
menu "Power management options (EXPERIMENTAL)"
Johannes Berg's avatar
Johannes Berg committed
850

Magnus Damm's avatar
Magnus Damm committed
851 852 853
source "kernel/power/Kconfig"

source "drivers/cpuidle/Kconfig"
Andriy Skulysh's avatar
Andriy Skulysh committed
854 855

endmenu