Kconfig 18 KB

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