Kconfig 17 KB

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