Kconfig 18 KB

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