Kconfig 18 KB

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