Kconfig 17 KB

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