Kconfig 18 KB

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